@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500&display=swap');
:root {
/* font */
	--main-font:'Quicksand', sans-serif;
	
/*----- 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;
}

/*========================
	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: 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) * 2) 0;
}
#header h1 span {
	display: block;
	height: 100px;
	margin: 0 auto;
	text-align: center;
	line-height: 75px;
}

/*----- opening hours:#opHours -----*/
#opHours {
	text-align: center;
}
#opHours h2 {
	display: flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 0;
	margin-bottom: var(--margin);
	font-size: 1.2rem;
}
#opHours h2::before,
#opHours h2::after {
	content: "";
	display: block;
	width: 50px;
	height: 1px;
	border-radius: 10px;
	background: var(--top-text);
	opacity: 0.5;
	margin: 0 var(--margin);
}
#opHours dl {
	display: inline-block;
	margin-bottom: calc(var(--margin) * 2);
}
#opHours dl::after {
	content: "";
	display: block;
	clear: both;
}
#opHours dl :is(dt, dd):first-of-type {
	margin-bottom: 16px;
}
#opHours dl dt {
	clear: both;
	float: left;
	width: 7.5rem;
	text-align: left;
}
#opHours dl dd {
	float: left;
}
#opHours dl dt span {
	display: inline-block;
	width: 2.5rem;
	text-align: left
}
#opHours dl dt span:nth-of-type(2) {
	margin-left: 0.5rem;
}

/*----- Icon Menu -----*/
#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);
}
/* Menu icon */
#iconMenu ul li a span::before {
	content: "";
	width: 40px;
	height: 40px;
	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;
	background-color: var(--top-text);
	margin-bottom: 7px;
	opacity: 0.8;
}
#iconMenu ul li.mn-menu a span::before {
	-webkit-mask-image:url("/images/mn-menu.svg");
	mask-image: url("/images/mn-menu.svg");
}
#iconMenu ul li.mn-reserv a span::before {
	-webkit-mask-image:url("/images/mn-reserv.svg");
	mask-image: url("/images/mn-reserv.svg");
}
#iconMenu ul li.mn-instagram a span::before {
	width: 30px;
	height: 30px;
	-webkit-mask-image:url("/images/mn-instagram.svg");
	mask-image: url("/images/mn-instagram.svg");
	margin-bottom: 10px;
}

/* Menu text */
#iconMenu ul li a span {
	display: block;
	width: 75px;
	font-size: 10px;
	text-align: center;
	letter-spacing: 0.1rem;
}
#iconMenu ul li.mn-instagram a span {
	letter-spacing: 0;
	margin-top: 7px;
}

/*========================
	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: 2rem;
	bottom: 0;
}

/*----- Map Accordion -----*/
/* Access title */
input#accordion {
}
input#accordion + label {
	cursor: pointer;
	display: inline-block;
	height: 5rem;
	font-size: 1.5rem;
	font-weight: 500;
	padding: 2rem var(--padding) 0 var(--padding);
}
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: -0.1rem;
}

/* Google Map */
#access {
	position: relative;
}
input#accordion + label + #accMap {
	width: 100%;
	height: 0;
	padding: 0 var(--padding);
	transition: 0.75s;
	overflow: hidden;
}
input#accordion:checked + label + #accMap {
	opacity: 1;
}
#accMap iframe {
	width: 100%;
	height: calc(100% - 40px);
	border: 5px solid #FFF;
	border-radius: 10px;
	background: #FFF;
	filter: hue-rotate(190deg);
	-webkit-filter: hue-rotate(190deg);
}
/* Access close button */
input#accordion + label .close {
	content: "";
	position: absolute;
	bottom: 0;
	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: 40px;
	height: 0;
	background-color: var(--bottom-text);
	opacity: 0;
	transition: 0.3s;
}
input#accordion:checked + label .close {
	opacity: 1;
	width: 40px;
	height: 40px;
}


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











