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

body{
	margin: 0;
}

/* 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;
	}
}


/*プライベート空間*/
h2{
	margin-top: 70px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;
	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: 5px;
	width: 50%;
}

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

h3{
	text-align: center;
	font-size: 18px;
	padding-top: 30px;
	font-weight: normal;
}

div.private{
	width: 65%;
	margin-left: auto;
	margin-right: auto;
	font-family: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-size: 15px;
}



.auto-slider {
  position: relative;
  width: 80%;
  padding-top: 56.25%; /* 16:9比率（必要に応じて変更OK） */
  margin: 2em auto;
  overflow: hidden;
}

.auto-slider .slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out;
	z-index: 0;
}

.auto-slider .slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}


div.haircut{
	width: 65%;
	margin-left: auto;
	margin-right: auto;
	font-family: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-size: 15px;
}	

img.haircut{
	width: 80%;
	padding-left: 9%;
	padding-right: 5%;
	margin-top: 15px;
}


div.saisei{
	width: 65%;
	margin-left: auto;
	margin-right: auto;
	font-family: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-size: 15px;
}

p.saisei{
	margin-bottom: 25px;
}

img.saisei{
	width: 40%;
	margin: 0 30% 15px 30%;
}

@media screen and (max-width: 768px) {
	h2{
		margin-top: 130px;
		margin-bottom: 30px;
		font-size: 25px;
		letter-spacing: 2px;
	}
	
	h2:before{
		height: 1px;
		width: 25px;
	}

	h4{
		font-size: 16px;
	}	
	
	div.private{
		width: 90%;
	}
	
	.cp_cssslider {
		width: 95%;
		padding-top: 65%; /* 画像の高さ */
	}
	
	div.haircut{
		width: 90%;
	}
	
	img.haircut{
		width: 100%;
		padding-left: 0px;
		padding-right: 0px;
	}

	div.saisei{
		width: 90%;	
	}
	img.saisei{
		width: 70%;
		display: flex;
		margin-left: 20%;
		margin-right: 15%;
		max-width: 390px;
	}
}

#subtitle1{
	width: 230px;
	background: linear-gradient(transparent 50%, #FFE4E1 50%);
	margin-bottom: 10px;
}

#subtitle2{
	width: 170px;
	background: linear-gradient(transparent 50%, #FFE4E1 50%);
	margin-bottom: 10px;
}

#subtitle3{
	width: 215px;
	background: linear-gradient(transparent 50%, #FFE4E1 50%);
	margin-bottom: 10px;
}

#subtitle4{
	width: 115px;
	background: linear-gradient(transparent 50%, #FFE4E1 50%);
	margin-bottom: 10px;
}

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: 665px) {
		p.footer{
	}
}