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

html{
	font-size: 62.5%;
	/*	10px=1rem  */
}
body{	
	font-family: 'Lato','Noto Sans JP',  sans-serif;
	font-size: 1.4rem;
	color: #333;
	line-height: 2;
}
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:#fff;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity .5s ease;
  transition: opacity .5s ease;
}
body.fadeout::after {
  opacity: 1;
}
img{
	max-width: 100%;
	height: auto;
}
a{
	cursor: pointer;
}

/*-----------------

utility

------------------*/
.wrap{
	margin: 0 24px;
}
.inner{
	padding: 0 24px;
}
.br-sp{
	display: block;
}
.kv__logo{
	position: absolute;
	top: 24px;
	left: 24px;
	width: 74px;
}
.content__title{
	position: relative;
	margin-bottom: 32px;
	padding-left: 63px;
	font-size: 2.4rem;
	letter-spacing: 0.1em;
	line-height: 1;
}
.content__title::before{
	content: '';
    display: block;
    position: absolute;
    width: 48px;
    height: 1px;
    left: 0;
    top: 50%;
    background: #333;
}
.text__box__content{
	margin-bottom: 32px;
}
.sns__list{
	display: flex;
	flex-wrap: wrap;
}
.sns__item{
	width: 50%;
	box-sizing: border-box;
}
.sns__link{
	display: inline-block;
	text-align: center;
	font-size: 1rem;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #fff;
}
.sns__link span{
	margin-right: 8px;
}

/*-----------------

btn

------------------*/
.btn-wrap{
	padding-top: 6px;
	text-align: center;
}
.btn{
	position: relative;
	display: inline-block;
	padding: 15px 30px;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.btn__text{
	position: relative;
	z-index: 1;
	letter-spacing: 0.05em;
	color: #333;
}
.btn__text::after{
	position: relative;
	z-index: 1;
	padding-left: 16px;
	content: "\e900";
	font-family: "icomoon";
	vertical-align: top;
}
.btn-border-shadow {
	padding: calc(15px - 12px) 30px 15px;
	background: #555;
}
.btn-border-shadow:before {
	content: "";
	position: absolute;
	top: -6px;
	left: -6px;
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border: 1px solid #333;
	background-color: #fff;
}
.btn-border-shadow:hover {
	padding: calc(15px - 6px) 30px;
}
.btn-border-shadow:hover:before {
	top: 0;
	left: 0;
}

/*-----------------

header

------------------*/
header{
	position: fixed;
	z-index: 100;
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
}
.reserve__btn{
	display: block;
	padding: 8px 16px;
	font-size: 1.3rem;
	color: #fff;
	line-height: 1;
	background-color: #555;
}

/*-----------------

navi

------------------*/
.menu{
	position: relative;
	padding: 31px 24px;
	box-sizing: border-box;
	z-index: 1000;
}
.menu:hover{
	opacity: 0.7;
}
.menu__inner{
	position: relative;
	width: 24px;
	height: 8px;
}
.menu__inner span {
	position: absolute;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 1px;
	box-sizing: border-box;
	background-color: #333;
}
.menu__inner span:nth-of-type(1) {
	top: 0;
}
.menu__inner span:nth-of-type(2) {
	bottom: 0;
}
.menu.active .menu__inner span:nth-of-type(1) {
	-webkit-transform: translateY(3.5px) rotate(45deg);
	transform: translateY(3.5px) rotate(45deg);
	background-color: #fff;
}
.menu.active .menu__inner span:nth-of-type(2) {
	-webkit-transform: translateY(-3.5px) rotate(-45deg);
	transform: translateY(-3.5px) rotate(-45deg);
	background-color: #fff;
}
#nav {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 100;
	width: 100%;
	height: 100vh;
	opacity: 0;
	background-color: #555;
	transition: all 0.3s ease-in-out;
	visibility: hidden;
	text-align: center;
	overflow-y: scroll;
}
#nav.active {
	right: 0;
	opacity: 1;
	-moz-transform: translateX(0);
	-webkit-transform: translateX(0);
	transform: translateX(0);
	visibility: visible;
}
.navi__list{
	padding: 100px 0 72px;
}
.navi__item{
	margin-bottom: 56px;
}
.navi__item:last-of-type{
	margin-bottom: 0;
}
.navi__item a {
	display: inline-block;
	transition: all 0.2s ease-in-out;
	font-size: 2.4rem;
	line-height: 1;
	letter-spacing: 0.05em;
	text-align: center;
	color: #fff;
}
.navi__reserve__btn{
	display: inline-block;
	margin-bottom: 72px;
	padding: 15px 42px;
	font-size: 2.4rem;
	line-height: 1;
	letter-spacing: 0.05em;
	background-color: #fff;
	color: #555;
}
.navi__sns__list{
	justify-content: space-between;
	max-width: 169px;
	margin: auto;
}
.navi__sns__item{
	line-height: 1;
	margin-bottom: 28px;
}

/*-----------------

footer

------------------*/
footer{
	padding: 48px 24px 32px;
	background-color: #555;
}
.footer__logo{
	width: 23%;
	margin: 0 auto 32px;
}
.footer__list{
	margin: 0 -24px 8px 0;
}
.footer__item{
	padding-right: 24px;
	margin-bottom: 24px;
}
.footer__link{
	width: calc(50% - 12px);
	padding: 16px 42px;
	border: solid 1px #fff;
}
small{
	display: block;
	text-align: center;
	font-size: 0.9rem;
	color: #fff;
	letter-spacing: 0.05em;
}
#pageTop {
	position: fixed;
	z-index: 10;
	bottom: 10px;
	right: 10px;
}
#pageTop a{
	position: relative;
	display: block;
	box-sizing: border-box;
	padding: 14px 0;
	width: 40px;
	height: 40px;
	background-color: #555;
	color: #fff;
	text-align: center;
	line-height: 1;
	-webkit-text-stroke: 1px #555;
}
#pageTop a::after{
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	font-family: "icomoon";
	content: '\ea3a';
	color: #fff;
}

/*-----------------

top

------------------*/
.top__kv{
	position: relative;
	height: 140vw;
	width: 100vw;
	background-image: url("../images/top_sp.jpg");
	background-size: cover;
	background-position: bottom;
}
.top__kv__text{
	position: absolute;
	top: 30%;
	left: 50%;
	transform: translate(0,-50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	width: 100%;
	font-family: 'Kristi', cursive;
	font-size: 4.7rem;
	line-height: 1;
	color: #fff;
	text-align: center;
}
.ef{
  opacity : 0;
}
.ef span {
    position: relative;
    top: -10px;
    left: -10px;
    opacity: 0;
}
.top__section{
	padding: 60px 0;
}
.top__section:first-of-type{
	padding: 80px 0 60px;
}

/*-----------------

top-about

------------------*/
#top__about{
	background-color: #eee;
	position: relative;
}
.about__area{
	position: relative;
}
.about__area::before {
	content: "";
    display: block;
	position: absolute;
	top: 0;
    right: calc(24 / 375 * 100%);
    margin-top: 48px;
    width: calc(327 / 375 * 100%);
    height: 97%;
	background-color: #fff;
}
.about__img{
	position: relative;
	z-index: 1;
	width: calc(330 / 375 * 100%);
	margin-bottom: 32px;
}
.about__content{
	position: relative;
	z-index: 1;
}

/*-----------------

top-menu

------------------*/
.top__menu__item{
	position: relative;
	margin-bottom: 70px;
}
.top__menu__item__box{
	position: absolute;
	right: 0;
	bottom: -17%;
	z-index: 1;
	width: 75%;
	padding: 16px;
	background-color: #fff;
}
.top__menu__heading{
	margin-bottom: 11px;
	font-size: 1.8rem;
	line-height: 1;
	letter-spacing: 0.1em;
}
.top__menu__text{
	font-size: 1.2rem;
	line-height: 1.5;
}

/*-----------------

top-instructor

------------------*/
#top__instructor{
	background-color: #F3F6F9;
}
.instructor__area{
	position: relative;
	margin-top: 177px;
	padding: calc(87.2vw - 150px) 0 32px;
	background-color: #fff;
}
.instructor__img{
	position: absolute;
	top: -145px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	width: 68%;
}
.instructor__heading{
	margin-bottom: 32px;
	font-size: 1.8rem;
	letter-spacing: 0.1em;
	line-height: 1;
	text-align: center;
}
.instructor__info:first-of-type{
	margin-bottom: 32px;
}
.instructor__info__heading{
	position: relative;
	padding-left: 35px;
	margin-bottom: 5px;
	font-size: 1.5rem;
	letter-spacing: 0.05em;
	line-height: 1.5;
}
.instructor__info__heading::before{
	content: '';
    display: block;
    position: absolute;
    width: 25px;
    height: 1px;
    left: 0;
    top: 50%;
    background: #333;
}
.instructor__info__text{
	display: block;
	margin-bottom: 5px;
	font-size: 1.2rem;
	line-height: 1.5;
}
.instructor__info__text:last-of-type{
	margin-bottom: 0;
}

/*-----------------

top-contact

------------------*/
.top__contact__box{
	padding: 32px 0;
	text-align: center;
	background-color: #F6F6F6;
}
.top__contact__text{
	margin-bottom: 32px;
}
.icon-mail{
	display: inline-block;
	margin-bottom: 32px;
	font-size: 1.5em;
}

/*-----------------

lower page

------------------*/
.lower__kv{
	position: relative;
	height: 80vw;
	width: 100vw;
	background-size: contain;
}
.page__title{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
	letter-spacing: 0.1em;
	font-size: 3.2rem;
	font-weight: bold;
}

/*-----------------

menu

------------------*/
.menu__kv{
	background-image: url("../images/menu_sp.jpg");
}
.menu__navi{
	position: absolute;
	bottom: 24px;
	left: 0;
	right: 0;
}
.menu__list{
	margin: 0 24px;
	display: flex;
	justify-content: space-between;
}
.menu__item{
	padding-right: 13px;
	font-size: 1.2rem;
	line-height: 1;
	border-right: solid 1px #333;
}
.menu__item:last-of-type{
	padding-right: 0;
	border: none;
}
.menu__item a{
	color: #333;
}
.menu__bg{
	background-color: #F3F6F9;
}
.menu__section{
	padding: 60px 0;
}
.menu__section:last-of-type{
	padding-bottom: 120px;
}
.menu__img{
	margin-bottom: 32px;
}
.menu__text{
	margin-bottom: 40px;
}
.price{
	padding: 8px 24px;
	margin-bottom: 40px;
	background-color: #fff;
}
#ayurveda-therapy .price{
	margin-bottom: 32px;
}
.price__box__content{
	padding: 16px 0;
	border-bottom: solid 1px #EEE;
}
.price__box__content:nth-of-type(4){
	border-bottom: dashed 1px #EEE;
}
.price__box__content:last-of-type{
	border-bottom: 0;
}
.price__heading{
	margin-bottom: 10px;
	font-size: 1.8rem;
	line-height: 1.7;
}
.price__list{
	display: flex;
	justify-content: space-between;
	font-size: 1.6rem;
	line-height: 1.7;
}
.tax{
	font-size: 1.2rem;
}
.menu__note{
	margin-bottom: 24px;
	line-height: 1.5;
}
.menu__note:first-of-type{
	margin-top: -8px;
}
.menu__note:last-of-type{
	margin-bottom: 40px;
}

/*-----------------

contact

------------------*/
.contact__kv{
	background-image: url("../images/contact_sp.jpg");
}
.contact__bg{
	 padding: 60px 0;
}
.contact__text{
	margin-bottom: 40px;
}
.form{
	padding: 40px 0;
	background-color: #F6F6F6;
}
.form__title{
	margin-bottom: 40px;
	text-align: center;
	font-size: 2.4rem;
	letter-spacing: 0.1em;
	line-height: 1;
}
.form__content{
	margin-bottom: 32px;
}
.form__content:last-of-type{
	margin-bottom: 40px;
}
label{
	display: block;
	margin-bottom: 8px;
}
.input__text{
	width: 100%;
	box-sizing: border-box;
	padding: 10px;
	background-color: #fff;
	border: solid 1px #555; 
}
.notice{
	margin-left: 12px;
	padding: 2px 6px;
	font-size: 1.2rem;
	color: #fff;
	background-color: #E64E54;
	border-radius: 4px;
}
.contents{
	height: 200px;	
}
.send{
	width: 60%;
	margin: auto;
	padding: 15px 0;
	display: block;
	text-align: center;
	font-size: 1.4rem;
	line-height: 1;
	letter-spacing: 0.05em;
	border: 1px solid #333;
	background-color: #fff;
}

@media screen and (min-width: 767px) {
	body{	
		font-size: 1.6rem;
	}
	
	/*-----------------

	utility

	------------------*/
	.wrap{
		margin: auto;
	}
	.inner{
		padding: 0;
	}
	.br-sp{
		display: none;
	}
	.kv__logo{
		position: absolute;
		top: 36px;
		left: 60px;
		width: 120px;
	}
	.kv__logo:hover{
		opacity: 0.7;
	}
	.content__title{
		margin-bottom: 48px;
		padding-left: 88px;
		font-size: 3rem;
		letter-spacing: 0.15em;
	}
	.content__title::before{
		width: 64px;
	}
	.text__box__content{
		margin-bottom: 40px;
	}
	.sns__list{
		flex-wrap: nowrap;
		width: 100%;
	}
	.sns__item{
		width: auto;
	}
	.sns__link{
		font-size: 1.2rem;
	}

	/*-----------------

	btn

	------------------*/
	.btn{
		padding: 20px 60px;
	}
	.btn__text{
		font-size: 1.8rem;
		letter-spacing: 0.1em;
	}
	.btn-border-shadow {
		padding: calc(20px - 14px) 60px 20px;
	}
	.btn-border-shadow:hover {
		padding: calc(20px - 6px) 60px;
	}

	/*-----------------

	header

	------------------*/
	header{
		top: 0;
		right: 60px;
	}
	.reserve__btn{
		padding: 12px 23px;
		margin-right: 20px;
		font-size: 2rem;
		line-height: 1;
	}
	.reserve__btn:hover{
		color: #555;
		background-color: #fff;
		border: solid 1px #555;
		box-sizing: border-box;
	}

	/*-----------------

	navi

	------------------*/
	.menu{
		padding: 52px 44px;
	}
	.menu__inner{
		width: 32px;
		height: 16px;
	}
	.menu__inner span {
		height: 2px;
}
	.menu.active .menu__inner span:nth-of-type(1) {
		-webkit-transform: translateY(7px) rotate(45deg);
		transform: translateY(7px) rotate(45deg);
	}
	.menu.active .menu__inner span:nth-of-type(2) {
		-webkit-transform: translateY(-7px) rotate(-45deg);
		transform: translateY(-7px) rotate(-45deg);
	}
	.navi__list{
		padding: 120px 0 72px;
		box-sizing: border-box
	}
	.navi__item a{
		display: inline-block;
		position: relative;
	}
	.navi__item a::before{
		content: "";
		position: absolute;
		left: 0;
		bottom: -7px;
		width: 100%;
		height: 1px;
		background-color: #fff;
		transform: scale(0, 1);
		transform-origin: left;
		transition: 0.4s;
	}
	.navi__item a:hover::before{
		transform: scale(1);
	}
	.navi__reserve__btn{
		padding: 15px 54px;
		color: #fff;
		background-color: #555;
		border: solid 1px #fff;
	}
	.navi__reserve__btn:hover{
		color: #555;
		background-color: #fff;
	}
	.navi__sns__list{
		max-width: 404px;
		padding-bottom: 93px;
	}
	.navi__sns__item{
		margin-bottom: 0;
	}
	.navi__sns__item:hover{
		opacity: 0.7;
	}
	
	/*-----------------

	footer

	------------------*/
	footer{
		padding: 72px 8% 32px;
	}
	.footer__logo{
		width: 120px;
		margin: 0 auto 64px;
	}
	.footer__list{
		max-width: 760px;
		justify-content: space-around;
		margin: 0 auto 72px;
		text-align: center;
	}
	.footer__item{
		padding-right: 0;
		margin-bottom: 0px;
	}
	.footer__link{
		width: auto;
		padding: 16px 46px;
		box-sizing: border-box;
	}
	.footer__link:hover{
		color: #555;
		background-color: #fff;
		border: #555;
	}
	small{
		font-size: 1rem;
	}
	#pageTop{
		bottom: 36px;
		right: 60px;
	}
	#pageTop a{
		padding: 18px 0;
		width: 50px;
		height: 50px;
	}
	#pageTop a:hover::after{
		bottom: -1px;
	}

	/*-----------------

	top

	------------------*/
	.top__kv{
		height: 100vh;
		background-image: url("../images/top_pc.jpg");
		background-repeat: no-repeat;
	}
	.top__kv__text{
		top: 25.5%;
		font-size: 8.8rem;
	}
	.top__section{
		padding: 140px 8%;
	}
	.top__section:first-of-type{
		padding: 160px 0 140px;
	}

	/*-----------------

	top-about

	------------------*/
	.about__area{
		display: flex;
	}
	.about__area::before {
		right: 0;
		margin: 40px calc(120 / 1280*100%) 0 0;
		width: calc(660 / 1280 * 100%);
		height: calc(100% - 40px);
	}
	.about__img{
		width: calc(620 / 1280 * 100%);
		margin-bottom: 0;
	}
	.about__content{
		max-width: calc(540 / 1280 * 100%);
		padding: 112px 40px 32px;
		box-sizing: border-box;
	}

	/*-----------------

	top-menu

	------------------*/
	.top__menu__list{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin: 0 -40px 40px 0;
	}
	.top__menu__item{
		width: 50%;
		margin-bottom: 90px;
		padding-right: 40px;
		box-sizing: border-box;
	}
	.top__menu__item__box{
		bottom: -14%;
		width: 80%;
		padding: 20px 32px;
		box-sizing: border-box;
	}
	.top__menu__heading{
		font-size: 2.4rem;
		letter-spacing: 0.05em;
	}
	.top__menu__text{
		font-size: 1.4rem;
		line-height: 2;
	}

	/*-----------------

	top-instructor

	------------------*/
	.instructor__area{
		position: relative;
		display: flex;
		justify-content: space-between;
		margin-top: 0;
		padding: 0;
		box-sizing: border-box;
		background-color: #F3F6F9;
	}
	.instructor__area::before {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		margin-top: 40px;
		width: calc(753 / 1040 * 100%);
		height: calc(100% - 40px);
		background-color: #fff;
	}
	.instructor__img{
		position: relative;
		top: 0;
		left: 0;
		transform: translateX(0%);
		-webkit-transform: translateX(0%);
		-ms-transform: translateX(0%);
		width: 38%;
	}
	.instructor__box{
		max-width: calc(500 / 1040 *100%);
		padding: 112px 70px 72px;
	}
	.instructor__heading{
		margin-bottom: 40px;
		font-size: 2.4rem;
		letter-spacing: 0.05em;
	}
	.instructor__info:first-of-type{
		margin-bottom: 40px;
	}
	.instructor__info__heading{
		padding-left: 48px;
		margin-bottom: 10px;
		font-size: 1.8rem;
		line-height: 1;
	}
	.instructor__info__heading::before{
		width: 33px;
	}
	.instructor__info__text{
		margin-bottom: 10px;
		font-size: 1.4rem;
	}

	/*-----------------

	top-contact

	------------------*/
	.pc__contact__wrap{
		max-width: 560px;
		margin: auto;
	}
	.top__contact__box{
		padding: 76px 0;
	}
	.top__contact__text{
		margin-bottom: 48px;
	}
	.icon-mail{
		margin-bottom: 48px;
		font-size: 1.75em;
	}

	/*-----------------

	lower page

	------------------*/
	.lower__kv{
		height: 47vw;
	}
	.page__title{
		font-size: 5.2rem;
	}

	/*-----------------

	menu

	------------------*/
	.menu__kv{
		background-image: url("../images/menu_pc.jpg");
	}
	.menu__navi{
		bottom: 32px;
	}
	.menu__list{
		max-width: 632px;
		margin: auto;
	}
	.menu__item{
		padding-right: 36px;
		font-size: 1.6rem;
	}
	.menu__item:hover{
		opacity: 0.7;
	}
	.menu__section{
		padding: 80px 8%;
	}
	.menu__section:first-of-type{
		padding: 140px 8% 80px;
	}
	.menu__section:last-of-type{
		padding-bottom: 160px;
	}
	.menu__flex{
		display: flex;
		justify-content: space-between;
	}
	.menu__img{
		width: 50%;
		margin-bottom: 64px;
		padding-right: 80px;
		box-sizing: border-box;
	}
	.menu__text{
		width: 50%;
		margin-bottom: 64px;
	}
	.price{
		padding: 16px 56px;
		margin-bottom: 64px;
	}
	.price__box__content{
		display: flex;
		justify-content: space-between;
		padding: 24px 0;
	}
	.price__heading{
		margin-bottom: 0;
		line-height: 2;
	}
	.price__list{
		width:37%; 
		font-size: 1.8rem;
		line-height: 2;
	}
	.menu__note:first-of-type{
		margin-top: 0;
	}
	.menu__note:last-of-type{
		margin-bottom: 64px;
	}

	/*-----------------

	contact

	------------------*/
	.contact__kv{
		background-image: url("../images/contact_pc.jpg");
	}
	.contact__bg{
		 padding: 140px 8% 160px;
	}
	.contact__text{
		margin-bottom: 80px;
		text-align: center;
	}
	.form{
		max-width: 961px;
		margin: auto;
		padding: 80px 0;
	}
	.form__title{
		margin-bottom: 64px;
		font-size: 3rem;
		letter-spacing: 0.05em;
	}
	.form__content{
		max-width: 800px;
		display: flex;
		justify-content: space-between;
		margin: 0 auto 56px;
	}
	.form__content:last-of-type{
		margin-bottom: 64px;
	}
	label{
		display: inline-block;
		margin-bottom: 0;
	}
	.input__text{
		width: 70%;
		padding: 15px;
	}
	.notice{
		margin-left: 16px;
		font-size: 1.4rem;
	}
	.send{
		width: 22.5%;
		padding: 20px 0;
		font-size: 1.6rem;
	}
	.send:hover{
		color: #fff;
		background-color: #555;
		border: solid 1px #555;
	}
	
}