@charset "utf-8";
/* CSS Document */

html{
	scroll-behavior: smooth;
}

body{
	margin: 0;
	background-color: white;
	font-family: 'Kozuka Gothic Pr6N', sans-serif;
	font-family: 'Noto Sans JP', sans-serif;
	text-decoration-color: #706b6d;
}

/* navigation pc */
div.navigation{
	position: fixed;
	top: 10px;
	width: 98%;
	height: 7%;
	font-size: 15px;
	text-align: left;
	font-family: 'segoe UI', 'Helvetica';
	background-color: whitesmoke;
	border-radius: 300px;
	z-index: 99;
	opacity: 0;	
	transform: translateY(-10%);
	transition: transform 0.8s ease, opacity 1.5s ease;
	margin-left: 1%;
	margin-right: 1%;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

/* スクロール時に表示 */
div.navigation.active {
	transform: translateY(0);
	opacity: 0.8;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1); /* ここでも影を維持 */
	height: auto;
}

ul.navigation-container{
	list-style: none;
	margin: 0px;
	float: left;
	display: flex;
}

li.nav-logo{
	width: 50%;
}

img.logo{
	max-width: 80px;
	max-height: 80px;
	padding-top: 14px;
	padding-bottom: 10px;
}

li.nav-btn{
	letter-spacing: 1px;
	padding-left: 50px;
	padding-top: 8%;
	font-size: small;
}

a.nav-link{
	color: #5f4e45;
	text-decoration-line: none;
}

	
/* header ph 375以下の場合 */ 
@media screen and (max-width: 769px) {
	div.navigation{
		display: none;
	}
	div.navigation img{
		text-align: center;
		top: 13px;
		object-fit: cover;
	}
}

/* navigation drawer pcでは非表示 */
div.nav-drawer{
	display: none;
} 

/* ここから下を各ページにコピペ */
/* navigation drawer */
@media screen and (max-width: 769px) {
	div.nav-drawer{
		top: 2%;
		left: 2%;
		width: 15%;
		opacity: 0.8;
		display: block;
		position: fixed;
		z-index: 99;
	}
	#drawer-checkbox {
  		display: none;
	}
	#drawer-icon {
		cursor: pointer;
		display: inline-block;
		height: 50px;
		position: relative;
		width: 55px;
		top: 3px;
	}
	/* menu */
	#drawer-icon span {
		background: #ae8686;
		border-radius: 1px;
		display: block;
		height: 4%;
		left: 70%;
		margin: -8% 0 0 -42%;
		position: absolute;
		top: 60%;
		transition: all 0.3s ease-in-out;
		width: 47%;
	}
	#drawer-icon span::before,
	#drawer-icon span::after {
		-webkit-transform: rotate(0);
		background: #ae8686;
		border-radius: 1px;
		content: "";
		display: block;
		height: 100%;
		left: 50%;
		margin: -8% 0 0 -50%;
		position: absolute;
		top: 50%;
		transform: rotate(0);
		transition: all 0.3s ease-in-out;
		width: 100%;
	}
	#drawer-icon span::before {
		margin-top: -44%;
		width: 135%;
	}
	#drawer-icon span::after {
		margin-top: 36%;
		width: 60%;
	}
	#drawer-checkbox:checked ~ #drawer-icon span {
		background: rgba(51, 51, 51, 0);
	}
	#drawer-checkbox:checked ~ #drawer-icon span::before,
	#drawer-checkbox:checked ~ #drawer-icon span::after {
  		content: "";
		display: block;
		height: 100%;
		left: 50%;
		margin: -8% 0 0 -42%;
		position: absolute;
		top: 50%;
		width: 100%;
		z-index: 9;
	}
	#drawer-checkbox:checked ~ #drawer-icon span::before {
  		-webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
	}
	#drawer-checkbox:checked ~ #drawer-icon span::after {
  		-webkit-transform: rotate(45deg);
   		transform: rotate(45deg);
	}
	#drawer-content {
  		overflow: auto;
  		position: fixed;
  		top: 0;
  		left: 0;
  		z-index: 40;
  		width: 70%;
		height: 350px;
		background-color: whitesmoke;
		transition: all 0.3s ease-in-out 0s;
  		transform: translateX(-100%);
		}
	#drawer-checkbox:checked ~ #drawer-content {
  		transform: translateX(0);
  		box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
		}
	#drawer-close {
  		display: none;
  		position: fixed;
  		z-index: 39;
  		top: 0;
  		left: 0;
  		width: 100%;
  		height: 100%;
	  	background: #000;
  		opacity: 0;
  		transition: all 0.8s ease-in-out 0s;
	}
	#drawer-checkbox:checked ~ #drawer-close {
  		display: block;
  		opacity: 0.3;
	}
	div.drawer-content{
	}
	p.nav-drawer{
		font-size: 15px;
		letter-spacing: 1px;
		text-align: center;
		margin-top: 15%;
		width: 70%;
		margin-left: auto;
		margin-right: auto;
	}
	li.check{
		width: 60%;
		margin-left: auto;
		margin-right: auto;
		padding-top: 3px;
		padding-bottom: 3px;
		letter-spacing: 1px;
		}
	ul.nav-drawer{
		list-style: none;
		font-size: 17px;
		letter-spacing: 2px;
		text-align: center;
		padding-left: 0;
		margin-top: 70px;
	}
	li.nav-drawer{
		margin: 20px auto 10px auto;
		padding-top: 2%;
		padding-bottom: 2%;
		width: 42%;
	}
	a.nav-drawer{
		text-decoration-line: none;
		color: #3A312E;
	}
}



/* title */
h1{
	margin: 100px auto 90px auto;
	text-align: center;
	font-size: 30px;
	font-weight: normal;
	position: relative;
	color: #3A312E;
	font-family: "MS Serif", "New York", "serif";
	font-stretch:extra-expanded;
	letter-spacing: 6px;
}

h1:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom:-15px;
	display: inline-block;
	width: 50px;
	height: 1px;
	transform: translate(-50%); /*位置調整*/
	background-color: #3A312E;
	opacity: 0.6;
}

p.top-memo{
	font-size: 15px;
	margin-bottom: 35px;
	text-align: center;
}


.menu-item h2{
	font-size: 16px;
	margin: 10px 25% 20px 25%;
	padding-bottom: 10px;
	padding-left: 5px;
	letter-spacing: 2px;
	border-bottom: 2px solid #706b6d;
	font-family: 'Kozuka Gothic Pr6N', sans-serif;
	font-weight: normal;
	position: relative;
	cursor: pointer;
}

h3 {
	font-size: 16px;
	margin: 20px 0 10px 0;
	padding-bottom: 10px;
	padding-left: 5px;
	letter-spacing: 2px;
	border-bottom: 2px solid #706b6d;
	font-family: 'Kozuka Gothic Pr6N', sans-serif;
	font-weight: normal;
	position: relative;
	cursor: pointer;
}

span.toggle-icon{
	position: absolute;
	top: 0;
	right: 0;
	padding-right: 5px;
}

.menu-container{
	text-align: left;
	margin: 0% 25% 0% 25%;
	padding-left: 10px;
	padding-bottom: 10px;
	width: 49%;
	display: none;
}

.menu-container ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.menu-container div.menu-container{
	width: 98%;
	margin-left: 0;
}

p.describe{
	font-size: 15px;
	margin-bottom: 35px;
}

p.color-describe{
	margin-bottom: 30px;
	width: 100%;
}

/* menu title */
ul.menu {
	margin: 15px auto 30px auto;
	padding-left: 0px;
	list-style: none;
	display: flex;
	flex-flow: row wrap;
	font-size: 16px;
	letter-spacing: 1px;
}

.menu-container ul.menu{
	margin-bottom: 7px;
}

hr.line {
	position: relative;
	top: calc(50% - 1px);
	margin: 0 10px;
	border: none;
	border-top: dotted 2px #CCC;
}
	
li.line{
	flex: auto;
}

p.comm{
	margin-top: -5px;
	font-size: 12px;
}

li.price{
	font-family: "Future", "Century Gothic", sans-serif;
}

@media screen and (max-width: 1000px) {
	h1{
		font-size: 28px;
		margin-top: 130px;
		margin-bottom: 20%;
	}
	
	.menu-item h2{
		margin: 23px auto 0px 0px;
		width: 100%;
	}
	
	h3{
		width: 100%;
	}
	
	div.menu-item{
		margin: auto 7% auto 7%;
		width: 86%;
	}
	
	div.menu-container{
		width: 97%;
		margin-left: 0px;
		padding-bottom: 0
	}
	
	p.color-describe{
		margin-top: 0px;
	}
	
	/* menu title */
	ul.menu {
		margin: 20px 5% 5px 0;
		padding-left: 0px;
		width: 99%;
		list-style: none;
		display: flex;
		flex-flow: row wrap;
		font-size: 15px;
		text-align: left;
		letter-spacing: 0;
	}
	
	hr.line {
		position: relative;
		top: calc(50% - 1px);
		margin: 0 10px;
		border: none;
		border-top: dotted 2px #CCC;
	}

	li.line{
		flex: auto;
	}

	p.describe{
		margin-bottom: 30px;
		font-size: 15px;
	}
	
	p.comm{
		width: 98%;
		text-align: left;
		margin: 0 auto 25px 0;
		font-size: 13px;
	}
}

div.footer{
	text-align: center;
	margin-top: 15%;
	padding-top: 30px;
	padding-bottom: 20px;
	background-color:#5f4e45;
	filter: opacity(0.9);
	bottom: 0px;
	opacity: 0.7;
}

li.footer{
	float: left;
	padding: 0px 13px 0px 13px;
}

img.footer{
	width: 25px;
	height: 25px;
	padding-left: 15px;
	padding-right: 15px;
}

a.footer{
	text-decoration-line: none;
}

p.footer{
	font-size: 13px;
	font-family: 'segoe UI', 'Helvetica';
	text-align: center;
	letter-spacing: 1px;
	font-weight: 100;
	color: #ffffff;
}

@media screen and (max-width: 1000px) {
	div.footer{
		margin-top: 30%;
	}
}