@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500&display=swap');
:root :is(.sp, .tab, .pc) {
/* font */
	--main-font:'Quicksand', sans-serif;
/* Height */
	--footerH:2rem; /* Footer */
	--btns-close:40px; /* Map close button */
	--iframeH: calc(var(--p-bottomH) - var(--mapLabelH) - var(--btns-close) - var(--margin) * 2);

/*----- area radius -----*/
	--borderR:100px;
/*----- margin -----*/
	--margin:16px;
/*----- padding -----*/
	--padding:16px;
/*----- background image -----*/
	--back-img-port:url(../images/backimg-port.jpg);
	--back-img-land:url(../images/backimg-land.jpg);

/*----- color -----*/
	--base-color: #202B1A;

/*----- page top -----*/
	/* background */ --top-back:#091701D9;
	/* text color */ --top-text:#DCD6C5;

/*----- page bottom -----*/
	/* background */ --bottom-back:#DCD6C5BF;
	/* text color */ --bottom-text:#112406;
}

body {
	background: var(--base-color);
	font-size: 100%;
	font-family: var(--main-font);
	letter-spacing: 0.05rem;
	overflow-y: hidden;
}

/* a, label */
a, label {
 -webkit-tap-highlight-color: rgba(0,0,0,0);
}

/* details */
details summary {
	display: inline-block;
	list-style-type: none;
}
details summary::-webkit-details-marker {
	display:none;
}

/* z-index  */
#Wrapper::before {z-index: 1;}
#p-top {z-index: 2;}
#p-bottom {z-index: 3;}


/*----- animation -----*/
@keyframes fadeIn { /*animetion-nameで設定した値を書く*/
	0% {opacity: 0} /*アニメーション開始時は不透明度0%*/
	100% {opacity: 1} /*アニメーション終了時は不透明度100%*/
}
@keyframes slideTop { /*animetion-nameで設定した値を書く*/
	0% {top: -50vh; opacity: 0;} /*アニメーション開始時は不透明度0%*/
	100% {top: 0; opacity: 1;} /*アニメーション終了時は不透明度100%*/
}
/* フェードイン表示にする場合は↓を追加
	animation: slideTop 2s ease 0s 1 normal;
	animation: fadeIn 2s ease 0s 1 normal;
*/
@keyframes fadeBack {
  from {opacity: 0;}
  to {opacity: 1;}
}
@keyframes fadeTop {
  from {opacity: 0; transform: translateY(-50vh);}
  to {opacity: 1; transform: translateY(0);}
}
@keyframes fadeBottom {
  from {opacity: 0; transform: translateY(50vh);}
  to {opacity: 1; transform: translateY(0);}
}
#Wrapper::before {
	animation-name: fadeBack;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	animation-timing-function: ease-in;
	animation-delay: 0.5s;
	opacity: 0;
}
#p-top {
	animation-name: fadeTop;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	animation-delay: 1.5s;
	opacity: 0;
}
#p-bottom {
	animation-name: fadeBottom;
	animation-duration: 1.75s;
	animation-fill-mode: forwards;
	animation-delay: 2.5s;
	opacity: 0;
}
.map-open #p-top {z-index: 2;}
.map-open #p-bottom {z-index: 3;}

/*----- #Wrapper -----*/
#Wrapper {
	min-width: 100%;
}
#Wrapper::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: auto 100%;
	background-position: center;
	background-repeat: no-repeat;
}

/*========================
	Modal window
--------------------------*/

/*モーダルを開くボタン*/
[class*="modal-open"] {
	cursor: pointer;
}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
[class*="modal-container"] {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0, 0, 0, 0.7);
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	box-sizing: border-box;
	cursor: pointer;
}
/*モーダル本体の擬似要素の指定*/
[class*="modal-container"]:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
[class*="modal-container"].active {
	opacity: 1;
	visibility: visible;
}
/*モーダル枠の指定*/
[class*="modal-body"] {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: 90%;
	max-width: 600px;
}
/*モーダルを閉じるボタンの指定*/
[class*="modal-close"] {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	bottom: -10px;
	right: 0;
	width: 40px;
	height: 40px;
	font-size: 1.75rem;
	color: #fff;
	cursor: pointer;
}
[class*="modal-close"]::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	mask-position: center center;
	-webkit-mask-position: center center;
	mask-size: contain;
	-webkit-mask-size: contain;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-image:url("../images/ic-close.svg");
	mask-image: url("../images/ic-close.svg");
	background-color: var(--bottom-back);
}

/*モーダル内のコンテンツの指定*/
[class*="modal-content"] {
	background-color: var(--entry-back);
	border-radius: var(--borderR);
	margin: 25px 0;
	color: var(--entry-text);
	text-align: left;
	transition: 0.3s;
	opacity: 0;
}
.active [class*="modal-content"] {
	opacity: 1;
}

[class*="modal-content"] a {
	color: var(--entry-link);
}
[class*="modal-content"] a:hover {
	color: var(--entry-link-h);
}
[class*="modal-content"] .cornertitle {
	background: var(--entry-title-back);
	margin-bottom: 1rem !important;
	padding: 0 0.3rem;
	color: var(--entry-title-text);
}
[class*="modal-content"] input:is([type="radio"], [type="checkbox"]) {
	accent-color: var(--entry-link);
}

/*----- Menu -----*/
.modal-body-menu {
	max-width: 800px;
}
.modal-content-menu {
	color: var(--bottom-text);
	text-align: center;
}
.modal-content-menu iframe {
	width: 100%;
	height: 92vh;
	margin: 0;
	border: none;
	border-radius: calc(5px + 0.5rem);
}
.modal-content-menu img {
	border-radius: calc(5px + 0.5rem);
}

/*----- coming soon -----*/
.modal-content-reserv {
	border-radius: 30px;
	background: var(--top-text);
	color: var(--bottom-text);
	padding: 3rem;
	text-align: center;
}



/*========================
	Page Top: #p-top
--------------------------*/
#p-top {
	position: fixed;
	top: 0;
	right: 0;
	width: 85%;
	border-radius: 0 0 0 var(--borderR);
	background: var(--top-back);
	padding-top: calc(var(--padding) * 2);
	padding-right: calc(var(--padding) * 2);
	padding-bottom: calc(var(--padding) * 2);
	padding-left: calc(var(--padding) * 3);
	color: var(--top-text);
}
#opHours,
#iconMenu {
	transition: 1.5s;
}
/*----- #header (Logo) -----*/
#header h1 {
	margin: var(--margin) 0 calc(var(--margin) * 1.5) 0;
}
#header h1 span {
	display: block;
	height: 100px;
	margin: 0 auto;
	text-align: center;
	line-height: 75px;
}

#header .open-day {
	text-align: center;
	margin-bottom: var(--margin);
	opacity: 0.7;
}

/*----- opening hours:#opHours -----*/
#opHours {
	text-align: center;
	max-width: calc(75px * 3 + var(--margin) * 6);
	margin: 0 auto;
}
#opHours h2 {
	display: flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 0;
	margin-bottom: var(--margin);
	font-size: 1rem;
	letter-spacing: 0.1rem;
}
#opHours h2 span {
	opacity: 0.75;
}
#opHours h2::before,
#opHours h2::after {
	content: "";
	display: block;
	width: 100%;
	border-bottom: 1px solid var(--top-text);
	opacity: 0.3;
}
#opHours h2::before {
	margin-right: calc(var(--margin) + 0.1rem);
}
#opHours h2::after {
	margin-left: var(--margin);
}

#opHours dl {
	display: inline-block;
	margin-bottom: var(--margin);
	font-size: 1.1rem;
}
#opHours dl::after {
	content: "";
	display: block;
	clear: both;
}
#opHours dl:has(dt:only-of-type) {
	margin-top: 0.5rem;
	margin-bottom: 0;
}
#opHours dl :is(dt, dd):first-of-type {
	margin-bottom: 16px;
}
#opHours dl dt {
	clear: both;
	float: left;
	width: 5rem;
	text-align: left;
}
#opHours dl dd {
	float: left;
}
#opHours dl dd span {
	display: inline-block;
	width: 4.4rem;
	text-align: left;
	letter-spacing: 0.1rem;
}
#opHours dl dd span.hyphen {
	width: 0.7rem;
	letter-spacing: 0;
	text-align: center;
}
#opHours dl dd span:nth-of-type(3) {
	margin-left: 0.5rem;
}
.close-time {
	display:block;
	width: 100%;
	margin-top: 0;
	font-size: 0.85rem;
	text-align: right;
}
.close-time span {
	display: block;
	margin-right: 0.5rem;
}

.close-time::after {
	content: "";
	display: block;
	height: 1px;
	width: 100%;
	border-bottom: 1px solid var(--top-text);
	margin-top: 1rem;
	opacity: 0.3;
}


/*----- Icon Menu -----*/
#iconMenu {
	margin-top: 1.5rem;
}
#iconMenu ul {
	display: flex;
	justify-content: center;
}
#iconMenu ul li {
	margin-bottom: var(--margin);
	text-align: center;
}
#iconMenu ul li:not(:last-child) {
	margin-right: calc(var(--margin) * 1.5);
}
#iconMenu ul li .menu-link span::before {
	content: "";
	width: 40px;
	height: 40px;
	display: block;
	margin: 4px auto;
	mask-position: center center;
	-webkit-mask-position: center center;
	mask-size: contain;
	-webkit-mask-size: contain;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	background-color: var(--top-text);
	opacity: 0.8;
}
/* Menu icon */
#iconMenu ul li.mn-menu .menu-link span::before {
	-webkit-mask-image:url("../images/mn-menu.svg");
	mask-image: url("../images/mn-menu.svg");
}
#iconMenu ul li.mn-reserv .menu-link span::before {
	-webkit-mask-image:url("../images/mn-reserv.svg");
	mask-image: url("../images/mn-reserv.svg");
}
#iconMenu ul li.mn-instagram .menu-link span::before {
	-webkit-mask-image:url("../images/mn-instagram.svg");
	mask-image: url("../images/mn-instagram.svg");
	width: 35px;
	height: 35px;
	margin: 6px auto;
}

/* Menu text */
#iconMenu ul li .menu-link span {
	display: block;
	width: 75px;
	font-size: 10px;
	text-align: center;
	letter-spacing: 0.1rem;
}
#iconMenu ul li.mn-instagram .menu-link span {
	letter-spacing: 0;
}
/*========================
	Page Bottom: #p-bottom
--------------------------*/
#p-bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	border-radius: 0 var(--borderR) 0 0;
	background: var(--bottom-back);
	color: var(--bottom-text);
	text-align: center;
}
#btmWrapper {
	display: flex;
	flex-direction: column;
	height: 100%;
	margin: 0;
}
#footer {
	position: absolute;
	width: 100%;
	height: var(--footerH);
	bottom: 0;
}

/*----- Map Accordion -----*/
/* Access title */
input#accordion {
}
input#accordion + label {
	height: var(--mapLabelH);
	cursor: pointer;
	display: inline-block;
	font-size: 1.5rem;
	font-weight: 500;
	padding: 2rem var(--padding) 0 0;
}
#p-bottom {
	transition: 0.75s;
}

/* Google Map */
#access {
	position: relative;
}
input#accordion + label::before {
	content: "";
	width: 1.5rem;
	height: 1.5rem;
	display: inline-block;
	mask-position: center center;
	-webkit-mask-position: center center;
	mask-size: contain;
	-webkit-mask-size: contain;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-image:url("../images/mn-access.svg");
	mask-image: url("../images/mn-access.svg");
	margin-right: 0.3rem;
	background-color: var(--bottom-text);
	vertical-align: bottom;
}
input#accordion + label + #accMap {
	width: calc(100% - var(--margin) * 2);
	margin: 0 auto;
	height: 0;
	border: 5px solid #FFF;
	border-radius: 15px;
	transition: 0.75s;
	overflow: hidden;
}
input#accordion:checked + label + #accMap {
	opacity: 1;
}
#accMap iframe {
	width: 100%;
	height: calc(var(--iframeH) - 10px);
	border: none;
	background: #FFF;
	filter: hue-rotate(190deg);
	-webkit-filter: hue-rotate(190deg);
}
/* Access close button */
input#accordion + label .close {
	content: "";
	position: absolute;
	bottom: -40px;
	right: var(--margin);
	z-index: 5;
	display: inline-block;
	mask-position: center center;
	-webkit-mask-position: center center;
	mask-size: contain;
	-webkit-mask-size: contain;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-image:url("../images/ic-close.svg");
	mask-image: url("../images/ic-close.svg");
	width: var(--btns-close);
	height: 0;
	background-color: var(--bottom-text);
	opacity: 0;
	transition: 0.3s;
}
input#accordion:checked + label .close {
	opacity: 1;
	width: var(--btns-close);
	height: var(--btns-close);
}


/*----- #footer: copyright -----*/
#footer {
}











