@charset 'UTF-8';

/* custom-overlay ---------------------------------------*/

#custom-overlay {
	transform: translate(-50%, 0px);
}

#custom-overlay .overlay-content{
	padding: 10px 15px;
	border-radius: 999px;
	background: #500;
	display: inline-block;
}

#custom-overlay h3 {
	color: #FFF;
	font-weight: bold;
	font-size: 15px;
	line-height: 1;
	letter-spacing: .04em;
}


/* kv ---------------------------------------*/

.storekv-image {
	width: 100%;
	margin: 0 auto;
	padding: 32px 0;
	position: relative;
}

.storekv-image-logo {
	display: inline-block;
	position: absolute;
	top: 53.5%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 100%;
	width: 45.9vw;
	text-align: center;
}

.storekv-image-logo img {
	width: 100%;
}

.storekv-image-cloud img {
	width: 100%;
}

/* store ---------------------------------------*/

.store {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
}

.storemap {
	flex: 1;
}

.storemap .map {
	width: 100%;
	height: 100%;
	min-height: 620px;
	max-height: 100vh;
}

.storeinfo {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	width: 480px;
	max-height: 100vh;
	padding-top: 30px;
	overflow-y: auto;
	background: #DA0000;
}

.storeinfo-head {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 50px;
	padding: 0 50px;
}

.storeinfo-head-btn {
	opacity: .5;
	position: relative;
	width: 50%;
	padding: 10px 20px;
	color: #FFF;
	font-weight: bold;
	font-size: 18px;
	text-align: center;
	cursor: pointer;
	background-color: transparent;
}

.is-btn-active {
	opacity: 1;
}

.storeinfo-head-btn::before {
	display: block;
	opacity: .5;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: #FFF;
	content: '';
}

.storeinfo-head-btn.is-btn-active::before {
	opacity: 1;
}

.storeinfo-head-btn::after {
	display: none;
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translate(-50%, 0);
	width: 0;
	height: 0;
	border-style: solid;
	content: '';

	border-right: 6px solid transparent;
	border-left: 6px solid transparent;
	border-top: 8px solid #FFF;
	border-bottom: 0;
}

.storeinfo-head-btn.is-btn-active::after {
	display: block;
}

.storeinfo-head-btn:hover {
	opacity: .7;
}

.storeinfo-body {
	flex: 1;
	margin-bottom: 30px;
	padding-top: 35px;
}

.storeinfo-body-item {
	display: none;
}

.is-contents-active {
	display: block;
}

.storeinfo-body-btn-wrapper {
	padding: 0 50px;
}

.storeinfo-body-btn {
	display: block;
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
	margin-bottom: 20px;
	padding: 20px 20px;
	border-radius: 999px;
	box-shadow: 0 4px 0 0 rgba(217, 208, 204, 1);
	color: #DA0000;
	font-weight: bold;
	font-size: 18px;
	letter-spacing: .08em;
	cursor: pointer;
	transition: all .25s ease;

	background-color: #FFF;
}

.storeinfo-body-btn:hover {
	opacity: .7;
}

.storeinfo-body-notfound {
	padding: 10px 50px;
}

.storeinfo-body-notfound-text {
	font-size: 16px;
	line-height: 1.9;
	letter-spacing: .08em;
	color: #fff;
	font-weight: bold;
}

.storeinfo-body-list {
	height: 360px;
	margin-top: 10px;
	padding: 0 50px;
	overflow-y: auto;
}

.storeinfo-body-list::-webkit-scrollbar {
	width: 10px;
	height: 10px;

	-webkit-appearance: none;
}

.storeinfo-body-list::-webkit-scrollbar-track {
	border-radius: 10px;

	background-color: rgba(255, 255, 255, .4);
}

.storeinfo-body-list::-webkit-scrollbar-thumb {
	border-radius: 10px;

	background-color: rgba(255, 255, 255, .6);
}

.storeinfo-body-list-item {
	border-bottom: 1px solid rgba(255, 255, 255, .4);
}

.storeinfo-body-list-item a {
	display: block;
	position: relative;
	padding: 20px 25px 20px 0;
	color: #FFF;
	line-height: 1.6;
	letter-spacing: .04em;
}

.storeinfo-body-list-item a:hover {
	opacity: .7;
}

.storeinfo-body-list-item a::after {
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0, -50%);
	width: 18px;
	height: 16px;
	background: url('../img/common/icon_arrow.svg') no-repeat center center;
	background-size: 18px;
	content: '';
}

.storeinfo-body-list-distance {
	color: #FFF;
	font-weight: bold;
	font-size: 14px;
	display: none;
}

#nearstorelist.on .storeinfo-body-list-distance{display:block;}

.storeinfo-body-list-name {
	font-weight: bold;
	font-size: 18px;
	letter-spacing: .06em;
}

.storeinfo-body-list-address {
	margin-top: 6px;
	font-size: 13px;
	letter-spacing: .06em;
}

.storeinfo-body-sort {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	margin-bottom: 10px;
	padding: 0 50px;
}

.storeinfo-body-sort select {
	width: calc(50% - 10px);
	height: 66px;
	padding: 10px 20px;
	border: none;
	border-radius: 0;
	border-radius: 8px;
	box-shadow: 0 4px 0 0 rgba(217, 208, 204, 1);
	background: url('../img/common/icon_arrow_bottom.svg') #FFF no-repeat right 20px top 50%;
	background-size: 16px 9px;
	color: #DA0000;
	font-weight: bold;
	font-size: 18px;
	line-height: 1.1;
	letter-spacing: .04em;
	outline: none;
	cursor: pointer;

	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
}

/* .storeinfo-body-sort #sortMunicipalities option:not(.noselect){display: none;}
 */

.storenotice {
	padding: 15px 0 20px 20px;
}

.storenotice-list li {
	font-size: 12px;
	line-height: 1.65;
	letter-spacing: .04em;
	padding-left: 1em;
	text-indent: -1em;
}

.totop {
	padding: 0 20px;
	text-align: center;
}

.totop-detail {
	padding-bottom: 22px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	gap: 37px;
}

.totop-btn {
	display: inline-block;
	transition: all .25s ease;
}

.totop-btn:hover {
	opacity: .7;
}


/* store detail ---------------------------------------*/

.storedetail-wrapper {
	margin-bottom: 47px;
	padding: 0 24px;
}

.storedetail {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	max-width: 980px;
	margin: 0 auto;
}

.storedetailmap .map {
	min-height: 500px;
}

.storedetailinfo {
	position: relative;
	width: 360px;
	padding: 30px 0 130px 50px;
}

.storeinfo-detail-name {
	margin-bottom: 22px;
	font-weight: bold;
	font-size: 24px;
	line-height: 1.45;
	letter-spacing: .09em;
}

.storeinfo-detail-addresstitle {
	margin-bottom: 3px;
	color: #DA0000;
	font-weight: 700;
	font-size: 17px;
	line-height: 1.6;
	letter-spacing: .09em;
}

.storeinfo-detail-addresstitle::before {
	display: inline-block;
	position: relative;
	top: -2px;
	width: 13px;
	height: 16px;
	margin-right: 5px;
	background: url('../img/common/icon_address.svg') no-repeat center center;
	background-size: 13px;
	vertical-align: middle;
	content: '';
}

.storeinfo-detail-address {
	margin-bottom: 12px;
	font-size: 15px;
	line-height: 1.6;
	letter-spacing: .02em;
}

.storeinfo-detail-datetitle {
	margin-bottom: 3px;
	color: #DA0000;
	font-weight: 700;
	font-size: 17px;
	line-height: 1.6;
	letter-spacing: .09em;
	margin-top: 20px;
}

.storeinfo-detail-datetitle::before {
	display: inline-block;
	position: relative;
	top: -2px;
	width: 16px;
	height: 16px;
	margin-right: 5px;
	background: url(../img/common/icon_date.svg) no-repeat center center;
	background-size: 16px;
	vertical-align: middle;
	content: '';
}

.storeinfo-detail-date {
	margin-bottom: 12px;
	font-size: 15px;
	line-height: 1.6;
	letter-spacing: .02em;
}


.storeinfo-detail-map a {
	color: #00A1FE;
	font-size: 14px;
	line-height: 1.6;
	letter-spacing: .02em;
}

.storeinfo-detail-btn a::before {
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url('../img/common/icon_map.svg') no-repeat center center;
	background-size: 20px;
	content: '';
}

.storedetailinfo-share {
	position: absolute;
	bottom: 20px;
	left: 50px;
}

.storedetailinfo-share-text {
	margin-bottom: 10px;
	color: #DA0000;
	font-weight: bold;
	font-size: 14px;
	line-height: 1.6;
	letter-spacing: .04em;
	text-align: center;
}

.storedetailinfo-share-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	gap: 13px;
}

.storedetailinfo-share-list-item img {
	width: 50px;
	height: 50px;
}


/* storemodal ---------------------------------------*/

/* .storemodal-wrapper {} */

.storemodal {
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 999;
	transform: translate(-50%, -50%);
	width: 60%;
	max-width: 584px;
	padding: 26px 20px;
	border-radius: 16px;
	background: #FFF;
	z-index: 200;
}

.storemodal-text {
	font-size: 15px;
	line-height: 1.8;
	letter-spacing: .08em;
	text-align: center;
}

.storedetailmodal-wrapper {
	/* position: fixed;
	left:0;
	top:0;
	width:100vw;
	height:100vh;
	z-index:1000;
	background: rgba(0, 0, 0, .2); */
}

.storedetailmodal {
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 999;
	transform: translate(-50%, -50%);
	width: 60%;	max-width: 400px;
	padding: 32px 20px 37px;
	border-radius: 16px;
	color: #fff;
	background: rgba(0, 0, 0, .8);
	z-index: 200;
}

.storedetailmodal-text {
	font-size: 16px;
	line-height: 1.9;
	letter-spacing: .08em;
	text-align: center;
}


/* store 404 ---------------------------------------*/

.storenotfound {
	padding: 50px 20px 77px;
	text-align: center;
}

.storenotfound-image {
	margin-bottom: 30px;
}

.storenotfound-text {
	font-weight: bold;
	font-size: 16px;
	line-height: 2;
	letter-spacing: .04em;
}

.period-caution{
	position: relative;
}
.period-caution-txt{
	position: absolute;
	top: 280px;
	left: 0;
	right: 0;
	margin: auto;
	width: 740px;
	background: rgba(83, 9, 14, 0.9);
	z-index: 10;
	border-radius: 40px;
	padding: 50px 20px 55px;
}
.period-caution-txt p{
	color: #fff;
	line-height: 1.83333333333em;
	font-size: 24px;
	text-align: center;
	font-weight: 500;
	letter-spacing: -0.02em;
}


/* small pc */
@media screen and (max-width: 1024px) {

	.store {
		flex-direction: column;
	}

	.storemap {
		flex: unset;
		width: 100%;
	}

	.storeinfo {
		width: 100%;
	}

	.storemodal {
		width: 80%;
	}

	.storedetailmodal {
		width: 80%;
	}


}


@media screen and (max-width: 767px) {

	/* custom-overlay ---------------------------------------*/

	#custom-overlay {
		transform: translate(-50%, 0);
	}

	#custom-overlay .overlay-content{
		padding: 8px 10px;
	}

	#custom-overlay h3 {
		font-size: 13px;
	}


	/* kv ---------------------------------------*/

	.storekv-image {
		max-width: 400px;
		padding: 10px 45px;
	}


	.storekv-image {
		width: 100%;
		margin: 0 auto;
		padding: 15px 24px;
		position: relative;
		text-align: center;
	}
	
	.storekv-image-logo {
		display: inline-block;
		position: static;
		top: unset;
		left: unset;
		transform: unset;
		max-width: 100%;
		width: auto;
		margin: 0 auto;
		position: relative;
	}

	.storemap .map {
		height: 100vw;
		min-height: unset;
		max-height: 100vh;
	}

	.storedetailmap .map {
		height: calc(100vw - 48px);
	}


	/* store ---------------------------------------*/

	.storeinfo {
		max-height: unset;
		padding-top: 17px;
		overflow-y: unset;
	}

	.storeinfo-head {
		padding: 0 24px;
	}

	.storeinfo-head-btn {
		padding: 10px 10px;
		font-size: 16px;
	}
	
	.storeinfo-head-btn:hover {
		opacity: 1;
	}

	.storeinfo-body {
		margin-bottom: 33px;
		padding-top: 7px;
	}

	.storeinfo-body-btn-wrapper {
		padding: 0 24px;
	}

	.storeinfo-body-btn {
		padding: 15px 10px;
		font-size: 16px;
	}

	.storeinfo-body-item {
		padding: 20px 0 0;
	}

	.storeinfo-body-notfound {
		padding: 10px 24px 0;
	}

	.storeinfo-body-notfound-text {
		font-size: 14px;
	}

	.storeinfo-body-list {
		height: auto;
		max-height: 320px;
		padding: 0 24px;
	}

	.storeinfo-body-list-item a {
		padding: 16px 25px 16px 0;
	}

	.storeinfo-body-list-item a::after {
		width: 15px;
		height: 14px;
		background-size: 15px;
	}

	.storeinfo-body-list-name {
		font-size: 16px;
		line-height: 1.5;
	}

	.storeinfo-body-list-address {
		font-size: 12px;
	}

	.storeinfo-body-sort {
		margin-bottom: 14px;
		padding: 0 24px;
	}

	.storeinfo-body-sort select {
		height: 56px;
		padding: 10px 10px;
		font-size: 16px;
	}

	.storenotice {
		padding: 13px 24px 5px 24px;
	}
	
	.storenotice-list li {
		font-size: 11px;
		line-height: 1.65;
		letter-spacing: .02em;
		padding-left: 1em;
		text-indent: -1em;
	}

	.totop {
		padding: 20px 0 15px;
	}

	.totop-detail {
		padding-top: 15px;
		padding-bottom: 15px;
		gap: 27px;
	}

	.totop-btn:hover {
		opacity: 1;
	}


	/* store detail ---------------------------------------*/

	.storedetail-wrapper {
		margin-bottom: 5px;
	}

	.storedetailinfo {
		padding-top: 25px;
		padding-bottom: 20px;
		padding-left: 0;
	}

	.storeinfo-detail-name {
		margin-bottom: 15px;
		font-size: 20px;
	}

	.storeinfo-detail-addresstitle {
		margin-bottom: 2px;
	}

	.storeinfo-detail-address {
		margin-bottom: 15px;
	}

	.storedetailinfo-share {
		position: static;
		margin-top: 50px;
	}

	.storedetailinfo-share-text {
		margin-bottom: 10px;
		font-weight: 700;
		font-size: 16px;
	}

	.storedetailinfo-share-list {
		justify-content: center;
		gap: 20px;
	}

	.storedetailinfo-share-list-item img {
		width: 64px;
		height: 64px;
	}


	/* store 404 ---------------------------------------*/

	.storenotfound {
		padding: 37px 20px 13px;
	}

	.storenotfound-image {
		margin-bottom: 25px;
	}

	.storenotfound-image img {
		width: 147px;
	}

	.storenotfound-text {
		font-size: 15px;
		line-height: 2.1;
	}


	/* storemodal ---------------------------------------*/

	.storemodal {
		width: calc(100% - 48px);
	}

	.storemodal-text {
		font-size: 14px;
		line-height: 1.8;
	}

	.storedetailmodal {
		padding: 28px 20px;
		width: 82.5%;
	}

	.storedetailmodal-text {
		font-size: 14px;
		line-height: 1.8;
	}

	.period-caution-txt {
		position: absolute;
		top: 44vw;
		left: 0;
		right: 0;
		margin: auto;
		width: 83%;
		background: rgba(83, 9, 14, 0.9);
		z-index: 10;
		border-radius: 30px;
		padding: 20px 0px 30px;
	}
	.period-caution-txt p {
		color: #fff;
		line-height: 1.64em;
		font-size: 16px;
		text-align: center;
		letter-spacing: -0.01em;
	}


}