body{
	font-family: "kozuka-gothic-pro", sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size:22px;
	line-height: 2;
	letter-spacing: 0.1em;
	color: #2e2e2e;
}
#wrapper{
	width: 100%;
	overflow-x: hidden;
}
.inlineC{
	text-align: center;
}
a{
	transition: all 0.6s ease;
}
@media (min-width: 751px) {
	.pchidden{ display: none; }
	a.effect{
		
	}
	a.effect:hover{
		animation: opacity 0.6s;
	}
	a:hover{
		opacity: 0.7;
	}
}
@media (max-width: 750px) {
	body{
		overflow-x:hidden;
		font-size:12px;
	}
	img{
		width:100%;
		height: auto;
	}
	.sphidden{ display: none; }
}
.slick-slide:focus{
	outline: none;
}

/*********************************************
	header
*********************************************/
:root {
	--header-height:240px;
	--header-fixed-height:80px;
}
#head{
	width: 100%;
	height: var(--header-height);
	background: #FFF;
	position: relative;
	z-index: 10;
	transition: all 0.5s cubic-bezier(0.78, 0.07, 0, 1);
}
.head__inner{
	width: 100%;
	height: var(--header-height);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	top: 0;
	left: 0;
	transition: all 0.5s cubic-bezier(0.78, 0.07, 0, 1);
}
.head__inner h1 a{
	display: block;
	width: 130px;
	height: 130px;
	background: url(../images/logo.png) no-repeat center;
	background-size: cover;
	font-size: 0;
	text-indent: -99999px;
	transition: width 0.5s cubic-bezier(0.78, 0.07, 0, 1);
	transition: height 0.5s cubic-bezier(0.78, 0.07, 0, 1);
}

#icon__menu{
	position: absolute;
	bottom:10%;
	right:10%;
	width:50px;
	height: 45px;
	cursor: pointer;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	transition: all 0.5s cubic-bezier(0.78, 0.07, 0, 1);
}
#icon__menu small{
	font-size: 0.7rem;
	letter-spacing: -0.05em;
	text-align: center;
}
#icon__menu span{
	position: absolute;
	top:10px;
	left:10%;
	width:80%;
	height: 3px;
	border-radius: 10px;
	background:#2e2e2e;
	transition: all 0.5s cubic-bezier(0.78, 0.07, 0, 1);
}
#icon__menu span:before,
#icon__menu span:after{
	content:"";
	display:block;
	position: absolute;
	left:0%;
	width:100%;
	height: 3px;
	border-radius: 10px;
	background:#2e2e2e;
	transform: rotate(0deg);
	transition: all 0.5s cubic-bezier(0.78, 0.07, 0, 1);
}
#icon__menu span:before{
	top:-10px;
}
#icon__menu span:after{
	bottom:-10px;
}
.active #icon__menu span{
    width: 100%;
	height:0;
}
.active #icon__menu span:before{
	left: -4px;
	top: -2px;
	transform: rotate(45deg);
    width: 100%;
    height: 3px;
}
.active #icon__menu span:after{
	left: -4px;
	bottom: 0;
	transform: rotate(-45deg);
    width: 100%;
    height: 3px;
}

#heade__menu nav{
	position: absolute;
	top: var(--header-height);
	left: 0;
	width: 100%;
	height: calc( 100vh - var(--header-height) );
	background: rgba(255,255,255,.9);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	justify-content: center;
	transition: all 0.5s cubic-bezier(0.78, 0.07, 0, 1);
	transform: translateX(100%);
}
#heade__menu.active nav{
	transform: translateX(0);
}
#heade__menu nav ul{
	width: 100%;
	text-align: center;
}
#heade__menu nav .menu__list{
	margin-bottom: 20px;
}
#heade__menu nav .menu__list li{
	padding-bottom: 10px;
}



#head.fixed .head__inner{
	height: var(--header-fixed-height);
	position: fixed;
	background: #FFF;
}
#head.fixed .head__inner h1 a{
	width: 70px;
	height: 70px;
	opacity:0;
	animation:0.5s 0.2s cubic-bezier(0.78, 0.07, 0, 1) forwards opacity;
}
@keyframes opacity{
  0%{ opacity:0;}
  100%{ opacity:1; }
}
#head.fixed #icon__menu{
	bottom:14%;
}
#head.fixed #heade__menu nav{
    top: var(--header-fixed-height);
    height: calc(100vh - var(--header-fixed-height));
}

@media (max-width: 750px) {
	:root {
		--header-height:70px;
		--header-fixed-height:50px;
	}
	.head__inner{
		padding: 0 5%;
		justify-content: space-between;
	}
	.head__inner h1 a{
		width: 45px;
		height: 45px;
	}

	#icon__menu{
		position: relative;
		width:40px;
		height: 50px;
	}
	#icon__menu small{
		font-size: 0.5rem;
	}
	#icon__menu span{
		top:15px;
		left:10%;
		width:80%;
	}
	#icon__menu span:before{
		top:-8px;
	}
	#icon__menu span:after{
		bottom:-8px;
	}
	
	#head.fixed .head__inner{
		padding: 0 2%;
	}
	#head.fixed .head__inner h1 a{
		width: 45px;
		height: 45px;
	}
	#head.fixed #icon__menu{
		bottom:12%;
		height: 45px;
	}
}


/*********************************************
	footer
*********************************************/
footer{
	background: #94a59d;
	color: #fcfaf3;
	text-align: center;
	padding: 45px 0 0;
	height: 560px;
}
footer a{
	color: #fcfaf3;
}
footer .menu__list{
	display: flex;
	justify-content: center;
	font-size: 18px;
	margin-bottom: 140px;
}
footer .menu__list li::after{
	content: "/";
	margin: 0 5px;
}
.sns__list{
	display: flex;
	justify-content: center;
}
.sns__list li{
	margin: 0 20px;
}

.foot__bottom .logo__area{
	text-align: center;
}
.foot__bottom .logo__area .circle{
	margin: 100px 0 20px;
}
.foot__bottom .logo__area .circle img{
	max-width: 130px;
}

@media (max-width: 750px) {
	footer{
		padding: 10vw 0 0;
		height: 70vw;
	}
	footer a{
		color: #fcfaf3;
	}
	footer .menu__list{
		font-size: 9px;
		margin-bottom: 12vw;
	}
	footer .menu__list li::after{
		margin: 0 2px;
	}
	.sns__list li{
		margin: 0 8px;
	}
	.sns__list li.icon__insta img{
		width: 18px;
	}
	.sns__list li.icon__facebook img{
		width: 9px;
	}

	.foot__bottom .logo__area{
		font-size: 9px;
		line-height: 1.3;
	}
	.foot__bottom .logo__area .circle{
		margin: 12vw 0 3vw;
	}
	.foot__bottom .logo__area .circle img{
		max-width: 20vw;
	}
}

