@media screen and (max-width: 699px){
	
/* ----------base---------- */
html{
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	overflow-x: hidden;
	font-size: 62.5%;
	position: relative;
}
 body{
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	background-color: #fff;
	color: #666; 
 	font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Verdana , sans-serif;
	 font-weight: 400;
	 font-size: 1.4rem;
	-webkit-text-size-adjust: 100%;
}
img{
	border: none; 
	max-width: 100%;
	height: auto;
	width /***/:auto;　
}
a{
	outline: none;
	transition: 0.3s ease;
}
a:link,
a:visited{
	color: #333;
	text-decoration: none;
 	transition: 0.3s ease;
}
a:hover,
a:active{
	color: #000;
	text-decoration: none;
}
.clear{
	clear: both;
}
p{
	line-height: 1.6;
}
a.non{
	pointer-events: none;
	opacity: 0.6;
}




/* ----------loading---------- */
.loadingWrap{
	width: 100%;
	height: 100%;
	background-color: #5B3914;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20001;
	display: flex;
	justify-content: center;
	align-items: center;
}
.loadingWrap img{
	margin: -100px 0 0;
	width: 90%;
	max-width: 380px; 
}

/* ----------pagescroll---------- */
.pagescroll {
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 11;
	width: 100%;
}
.pagescroll a{
	display: block;
	margin: 0;
	font-size: 1rem;
	color: #fff;
	text-align: center;
	text-decoration: none;
	width: 100%;
	padding: 5px;
	background-color: rgba(91,57,20,0.8);
 	transition: 0.3s;
}
.pagescroll a:hover{
	background-color: #eee;
	color: #5B3914;
	transform: translate(0,2px);
	border: 1px solid rgba(255,255,255,0.8);
}



/* ----------header---------- */
.header{
	width: 100%;
	height: 40px;
	background-color: rgba(91,57,20,0.8);
	margin: -40px 0 0;
	position: relative;
	z-index: 100;
	display: flex;
	justify-content: center;
	align-items: center;
	position: -webkit-sticky; /* Safari */
	position: sticky;
 	top: 0;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);	
	font-family: 'Noto Serif JP', serif;
}
.header .inner{
	width: 94%;
}

/* title */
.header .title{
}
.header .title img{
	width: 60px;
	transition: 0.3s ease;
	position: relative;
	z-index: 10000;
}
.header .title img:hover{
	opacity: 0.8;
}

/* navi */
.header .navi{
	display: none;
}


/* ----------intro---------- */
.intro{
	width: 100%;
	height: 100%;
	position: relative;
   	z-index: 1;
	background-attachment: fixed;
}
.intro h1{
	color: #fff;
	font-weight: 400;	
	font-size: 1rem;
	text-align: center;
	margin: 0;
	padding: 5px 0;
	font-family: 'Noto Serif JP', serif;
}
.intro h1 span{
	display: block;
}
.intro .inner{
	width: 100%;
	height: 100%;
	background-image: url(../img/comm/alpha.png);
	background-position: center center; 	
	background-repeat: no-repeat;	
	background-size: cover;
}

/* copy */
.intro .copy{
	width: 100%;
	height: 100%;
	position: relative;	
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.intro .copy img:hover{
	transform: translate(0,2px);
}
.intro .copy img.logomark{
	display: block;
	width: 90%;
	max-width: 380px; 
	margin: -100px auto 0;
    filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.2)); 
}
.intro .copy img.catchcopy{
	display: block;
	width: 96%;
	max-width: 500px;
	margin: 20px auto 0;
    filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.2)); 
}
.intro .copy img{
	transition: 0.3s ease;
}
.intro .copy img:hover{
	opacity: 0.8;
}
.intro .copy h1{
	font-size: 1.3rem;
}

/* scroll */
.intro .scroll{
	position: relative;
	bottom: 150px;
	text-align: center;
	margin: 0 auto ;
	padding: 0 0 60px;
	display: block;
	width: 100px;
    color: rgba(255,255,255,0.9);
	font-family: 'Noto Serif JP', serif;
	font-size: 1.3rem;
	animation: fuwa 4s linear ;
}
.intro .scroll:after{
    content: '';
    display: block;
    background: rgba(255,255,255,0.6);
    height: 50px;
    width: 1px;
    position: absolute;
    top: 25px;
	left: 50px;
}

.intro .scroll:hover{
	transform: translate(0,2px);
}
@keyframes fuwa{
	0%	{transform:translate(0,0);}
	5%	{transform:translate(0,-2px);}
	10%	{transform:translate(0,0);}
	15%	{transform:translate(0,2px);}
	20%	{transform:translate(0,0);}
	25%	{transform:translate(0,-2px);}
	30%	{transform:translate(0,0);}
	35%	{transform:translate(0,2px);}
	40%	{transform:translate(0,0);}
	45%	{transform:translate(0,-2px);}
	50%	{transform:translate(0,0);}
	55%	{transform:translate(0,2px);}
	60%	{transform:translate(0,0);}
	65%	{transform:translate(0,-2px);}
	70%	{transform:translate(0,0);}
	75%	{transform:translate(0,2px);}
	80%	{transform:translate(0,0);}
	85%	{transform:translate(0,-2px);}
	90%	{transform:translate(0,0);}
	95%	{transform:translate(0,2px);}
	100%	{transform:translate(0,0);}
}


/* ----------footer---------- */
.footer{
	clear: both;
	width: 100%;
	margin: 0;
	padding: 20px 0;
	z-index: 6;
	position: relative;
	background-color: #5B3914;
	color: #fff;
	font-size: 1.3rem;
	text-align: center;
}
.footer .inner{
	margin: 0 auto;
	width: 92%;
}
.footer a{
	color: #fff;
}
.footer a:hover{
	text-decoration: underline;
}

/* info */
.footer .info{
	width: 100%;
}
.footer .info img{
	width: 280px;
	transition: 0.3s ease;
}
.footer .info img:hover{
	opacity: 0.8;
}
.footer .info h2{
	font-size: 1.6rem;
	margin: 10px 0;
}
.footer .info h2 span{
	display: block;
	font-size: 1.2rem;
}
.footer .info p span{
	width: 100%;
	display: inline-block;
}

/* sub */
.footer .sub{
	font-size: 1.2rem;
	width: 100%;
	font-family: 'Noto Sans JP', sans-serif;
	margin-top: 20px;
}
.footer .sub p a{
	color: #fff;
}
.footer .sub .links{
	width: 180px;
	margin: 10px auto;
}
.footer .sub .links a{
	text-align: center;
	display: block;
	width: 100%;
	box-sizing: border-box;
	height: 30px;
	background-color: #fff;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 2px 0;
}
.footer .sub .links a img{
	max-height: 26px;
	max-width: 70%;
}
.footer .sub .links a:hover{
	background-color: #ccc;
	text-decoration: none;
}
.footer .sub .copyright{
	font-family: 'Noto Serif JP', serif;
}


/* -------section------- */
.section{
	clear: both;
	width: 100%;
	margin: 0;
	padding: 40px 20px;
	box-sizing: border-box;
	position: relative;
	text-align: center;
	background-color: #fff;
   	z-index: 0;
}
.home .section{
	padding: 60px 20px;
}
.section .inner{
	clear: both;
	width: 94%;
	margin: 0 auto;
	padding: 0;
	position: relative;	
}
.section .midashi img{
	height: 40px;
	margin: 0 auto 10px;
}
.section .more a{
	width: 50px;
	height: 50px;
	line-height: 50px;
	display: block;
	margin: 30px auto 0;
	text-align: center;
	font-size: 1.2rem;
	font-family: 'Noto Serif JP', serif;
	border-radius: 50%;
	background-color: #5B3914;
	color: #fff;
}
.section .more a:hover{
	background-color: #eee;
	color: #5B3914;
	box-shadow: 0 0 5px rgba(0,0,0,0.15) inset;
}
.section p{
	text-align: left;
}
.section .none{
	display: none;
}





/* -------section concept------- */
.section.concept{
}	
	
/* -------section bg-img------- */
.section.bg-img{
	height: 130px;
	padding: 0;
	margin: 0;
	background-color: #ccc;
	background-position: center center; 	
	background-repeat: no-repeat;	
	background-size: cover;
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.2) inset;
}
.section.bg-img .inner{
	width: 100%;
	max-width: 100% !important;
	height: 100%;
	padding: 0;
	margin: 0;
	display: block;
	background-color: rgba(0,0,0,0.2);
}
.section.bg-img.p1{
	background-image: url(../img/intro/1.jpg);
}
.section.bg-img.p2{
	background-image: url(../img/intro/2.jpg);
}
.section.bg-img.p3{
	background-image: url(../img/intro/3.jpg);
}
.section.bg-img.p4{
	background-image: url(../img/intro/4.jpg);
}
.section.bg-img.p5{
	background-image: url(../img/intro/5.jpg);
}
.section.bg-img.p6{
	background-image: url(../img/intro/6.jpg);
}




/* -------section service------- */
.section.service{
	background-color: #fafafa;
}

.panels{
	width: 100%;
	margin: 20px auto;
}
.panels div{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: 0.6s ease;
	overflow: hidden;
} 
.panels div .inner{
	padding: 0 20px;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.3);
}
.panels div .inner:hover{
	background-color: rgba(0,0,0,0);	
}
.panels div p{
	text-align: center;
	color: #fff;
    filter: drop-shadow(0px 0px 3px rgba(0,0,0,0.7)); 
	margin: -10px 0 0;
}	
.panels div:hover{
	opacity: 0.8;
}
.panels .left{
	width: 100%;
	display: flex;
	flex-direction: column;
}
.panels .right{
	width: 100%;
}
.panels .facial{
	width: 100%;
	height: 150px;
	background-color: #eee;
	border-bottom: 1px solid #fafafa;
	background-image: url(../img/page/panel-facial.jpg);
	background-position: center center; 	
	background-repeat: no-repeat;	
	background-size: cover;
}
.panels .removal{
	width: 100%;
	height: 150px;
	background-color: #eee;
	border-bottom: 1px solid #fafafa;
	background-image: url(../img/page/panel-removal.jpg);
	background-position: center center; 	
	background-repeat: no-repeat;	
	background-size: cover;
}
.panels .relax{
	width: 100%;
	height: 150px;
	background-color: #ccc;
	border-bottom: 1px solid #fafafa;
	background-image: url(../img/page/panel-relaxation.jpg);
	background-position: center center; 	
	background-repeat: no-repeat;	
	background-size: cover;
}
.panels .original{
	background-color: #999;
	width: 100%;
	height: 150px;
	background-image: url(../img/page/panel-originalitem.jpg);
	background-position: center center; 	
	background-repeat: no-repeat;	
	background-size: cover;
}

.panels img{
    filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.5)); 
}
.panels .left img,
.panels .right img{
	height: 60px;
}


/* -------section contact------- */
.section.contact{
}
.section.contact .number{
	margin: 30px auto 0;
	font-size: 1.8rem;
	font-family: 'Noto Serif JP', serif;
	color: #5B3914;
}
.section.contact .number a{
	color: #5B3914;
}
.section.contact .number a:hover{
	text-decoration: underline;
}






/* -------comm parts------- */
.p-img{
	width: 100%;
	height: 220px;
	margin: 0 0 -40px;
	position: relative;
   	z-index: 1;
   	text-align: center;
   	color: #fff;
   	background-position: center center; 	
	background-repeat: no-repeat;	
	background-size: cover;
}
.p-img .inner{
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.2);
	background-image: url(../img/page/page-gr.png);
   	background-position: left bottom -2px; 	
	background-repeat: repeat-x;	
   	z-index: 10;
}
.p-img img{
	height: 50px;
	margin: 70px auto -5px;
    filter: drop-shadow(0px 0px 8px rgba(0,0,0,0.4)); 
}
.p-img h1{
	font-size: 1.2rem;
	font-weight: 400;
	margin: 0;
    filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.4)); 
}

.page-concept .p-img {
	background-image: url(../img/page/page-concept.jpg);
}
.page-facial .p-img {
	background-image: url(../img/page/page-facial.jpg);
}
.page-removal .p-img {
	background-image: url(../img/page/page-removal.jpg);
}
.page-relaxation .p-img {
	background-image: url(../img/page/page-relaxation.jpg);
}
.page-original .p-img {
	background-image: url(../img/page/page-original-asc.jpg);
}
.page-school .p-img {
	background-image: url(../img/page/page-school.jpg);
}
.page-shop .p-img {
	background-image: url(../img/page/page-shop.jpg);
}
.page-company .p-img {
	background-image: url(../img/page/page-company.jpg);
}
.error .p-img {
	background-image: url(/img/page/page-shop.jpg);
}




/* p-midashi */
.pages .midashi h2{
	font-size: 2.4rem;
	font-family: 'Noto Serif JP', serif;
	color: #5B3914;
	font-weight: 400;
}
.pages .midashi h3{
	font-size: 1.6rem;
	font-family: 'Noto Serif JP', serif;
	color: #5B3914;
	font-weight: 400;
}




/* -------pages------- */

/* -----concept----- */
.page-concept{
}

.page-concept .section h1{
	font-size: 5.8vw;
	font-family: 'Noto Serif JP', serif;
	color: #EA6B9B;
	font-weight: 400;
	margin: 0 auto;
}

.page-concept .sanmen{
	background-image: url(../img/page/bg-concept.jpg);
   	background-position: center right 	
	background-repeat: no-repeat;	
	background-size: cover;
}
.page-concept .sanmen .lead{
	margin: 10px 0 0;
	font-size: 1.5rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
}
.page-concept .sanmen h2{
	margin: 50px 0 -10px;
}
.page-concept .sanmen h3{
	font-size: 2rem;
	margin-top: 30px;
}
.page-concept .sanmen img{
	width: 98%;
	max-width: 480px;
}
.page-concept .sanmen p{
	width: 96%;
	margin: 10px auto;
	text-align: left;
}
.page-concept .sanmen p br{
	display: none;
}

.page-concept .flex{
	width: 100%;
	margin: 0 auto;
}
.page-concept .flex .ex{
	width: 100%;
	margin: 10px auto;
}
.page-concept .flex .ex img{
}
.page-concept .flex .ex p{
	text-align: left;
	margin-bottom: 40px;
}





/* -----facial----- */
.page-facial{
}

.page-facial .photorf .rf{
	width: 280px;
}
.page-facial .photorf h2{
	font-size: 2rem;
}

.page-facial .photorf .flex{
	display: flex;
	width: 98%;
	margin: 30px auto 0;
	justify-content: space-between;
}
.page-facial .photorf .flex div{
	width: 49%;
}
.page-facial .photorf .flex div img{
	width: 110px;
}
.page-facial .photorf .flex div p{
	text-align: center;
}
.page-facial .flex div span{
	font-size: 1rem;
	display: block;
}

.page-facial .explain{
	background-color: #FEF2F8;
}
.page-facial .explain .flex{
	width: 100%;
	margin: 0 auto;
	justify-content: space-between;
}
.page-facial .explain .flex .ex{
	width: 100%;	
}
.page-facial .explain .flex .ex p{
	text-align: left;
}
.page-facial .midashi h2{
	color: #E4007F;
}
.page-facial .explain .flex .ex img{
	max-width: 280px;
	margin-top: 5px;
	border-radius: 10px;
}


.page-facial .lumix{
	width: 100%;
	margin: 0 auto;
}
.page-facial .lumix h2{
	color: #845f36;
	font-size: 2.6rem;
}
.page-facial .lumix h3,
.page-facial .lumix strong{
	font-feature-settings: "palt";
	color: #845f36;
}
.page-facial .lumix h4{
	margin-top: -10px;
	font-family: serif;
	color: #666;
}
.page-facial .lumix p{
	text-align: left;
}
.page-facial .lumix ul{
	text-align: left;
	margin: 30px 0 0;
	padding: 15px;
	border: 5px solid #eee;
	border-radius: 10px;
	background: rgb(175,146,114);
	background: linear-gradient(0deg, rgba(175,146,114,1) 0%, rgba(211,191,168,1) 100%);
}
.page-facial .lumix ul li{
	margin: 15px 20px 15px 30px;
	padding: 0;
	color: #fff;
	filter: drop-shadow(0px 0px 3px rgba(0,0,0,0.3));
}
.page-facial .lumix img{
	border-radius: 10px;
}
.page-facial .lumix .flex{
	width: 80%;
	margin: 0 auto;
}
.page-facial .lumix .flex .item{
	width: 100%;
}
.page-facial .lumix .ex{
	font-family: serif;
	margin: 40px auto 0;
	background:linear-gradient(transparent 60%, #ede6de 60%);
}
.page-facial .lumix .center{
	text-align: center;
}


.page-facial .grotti{
	background-color: #f9f8f1;
}
.page-facial .grotti .inner{
	width: 100%;
	margin: 0 auto;
}
.page-facial .grotti .midashi{
	position: relative;
}
.page-facial .grotti .point{
	color: #fff;
	background-color: #E4007F;
	width: 50px;
	height: 50px; 
	font-size: 1.2rem;
	line-height: 14px;
	font-family: 'Noto Serif JP', serif;
	text-align: center;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
    animation: down 2s ease 0s 1 normal;
    position: relative;
    z-index: 10;
}
@keyframes down {
    0% { top: 0px ; opacity: 0;}
    50% { top: 0px ; opacity: 0;}
    80% {top: 5px ; opacity: 0.8;}
    100% {top: 0 ; opacity: 1;}
}

.page-facial .grotti h3,
.page-facial .grotti h4,
.page-facial .grotti strong{
	color: #E4007F;
}
.page-facial .grotti h4{
	margin-top: -10px;
	font-family: serif;
	color: #666;
}
.page-facial .grotti img{
	border-radius: 10px;
}

.page-facial .grotti .flex{
}
.page-facial .grotti .flex .item{
	width: 100%;
	margin: 50px 0 0;
}
.page-facial .grotti .flex .item h3{
	background-color: #eee;
	padding: 5px;
	box-sizing: border-box: 
	border-radius: 10px;
}
.page-facial .grotti .flex .item p{
	text-align: left;
}

.page-facial .photos{
}
.page-facial .photos ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.page-facial .course{
	background-color: #FEF2F8;
}
.page-facial .price{
	border-collapse: collapse;
	width: 96%;
	margin: 30px auto;
	padding: 0;
	border: 1px solid #E4007F;
	background-color: #fafafa;
	box-sizing: border-box;
	text-align: left;
}
.page-facial .price th{
	font-size: 1.6rem;
	color: #666;
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
	padding: 10px;
	box-sizing: border-box;
	border-bottom: 1px dotted #ddd;
	width: 100%;
	display: block;
}
.page-facial .price td{
	text-align: right;
	width: 100%;
	display: block;
	font-size: 1.6rem;
	color: #E4007F;
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
	margin: 0;
	padding: 7px 10px;
	box-sizing: border-box;
	border-bottom: 1px dotted #ddd;
	background-color: #fff;
}
.page-facial .price.option th{
	font-size: 1.4rem;
}






/* -----removal----- */
.page-removal{
}

.page-removal .lumix{
	width: 90%;
	margin: 30px auto 0;
}
.page-removal .lumix div.left img{
	max-width: 180px;
	display: block;
	margin: 5px auto;
}
.page-removal .lumix div p{
	font-size: 1.6rem;
	font-weight: 400;
	text-align: center;
}
.page-removal .lumix div small{
	font-size: 1.2rem;
	display: block;
	margin: 20px 0 10px;
}
.page-removal .lumix div h2{
	font-size: 2rem;
	font-weight: 400;
	margin: 0 0 30px;
}
.page-removal .lumix div.right img{
	max-width: 280px;
	display: block;
	margin: 5px auto;
}

.page-removal .explain{
	background-color: #f9efea;
	padding: 20px 0 30px;
	margin-bottom: -15px;
}
.page-removal .explain .flex{
	width: 90%;
	margin: 0 auto;
	justify-content: space-between;
}
.page-removal .explain .flex div{
	width: 100%;
	background-color: #fff;
	border-radius: 10px;
	padding: 10px;
	box-sizing: border-box;
	margin: 0 0 10px;
}
.page-removal .explain .flex div img{
	width: 90%;
	max-width: 300px;
	margin: 10px auto;
	display: block;
}
.page-removal .explain .flex div h3{
	color: #eb6877;
	font-size: 2rem;
	font-weight: 600;
	font-family: 'Noto Serif JP', serif;	
	margin: 20px 0;
}
.page-removal .explain .flex div p{
	text-align: left;
	width: 90%;
	margin: 0 auto;
}
.page-removal .explain .flex div ul{
	list-style: none;
	margin: 0 auto;
	padding: 0;
	width: 100%;
}
.page-removal .explain .flex div ul li{
	text-align: left;
	color: #eb6877;
	font-size: 1.6rem;
	font-weight: 600;
	position: relative;
	margin: 0 0 20px;
	padding: 0;
}
.page-removal .explain .flex div ul li span{
	display: block;
	padding-left: 18px;
}
.page-removal .explain .flex div ul p{
	font-size: 1.4rem;
	color: #666;
	font-weight: 400;
}
.page-removal .explain .flex div ul li:before{
	content: "○";
}

.page-removal .price{
	background-color: #fbe2d8;
}
.page-removal .price .midashi h2{
	color: #eb6877;
}
.page-removal .price p{
	text-align: center;
}

.page-removal .price .t-scroll{
	width: 100%;
	overflow-x: auto;
}
.page-removal .price table{
	width: 100%;
	margin: 30px auto;
	padding: 0;
	background-color: #fafafa;
	box-sizing: border-box;
	text-align: left;
	font-family: 'Noto Serif JP', serif;
	border: none;
	font-size: 1.6rem;
	border-collapse: collapse;
}
.page-removal .price table thead{
	background-color: #ee808a;
	color: #fff;
	text-align: center;
}
.page-removal .price table thead th{
	padding: 10px;
	white-space: nowrap;
}
.page-removal .price table tbody{
	color: #666;
}
.page-removal .price table tbody th{
	text-align: left;
	font-weight: 400;
	padding: 10px 20px;
	border-bottom: 1px dotted #ddd;
	border-right: 1px dotted #ddd;
	white-space: nowrap;
}
.page-removal .price table tbody td{
	text-align: right;
	font-weight: 400;
	padding: 10px 20px;
	border-bottom: 1px dotted #ddd;
	border-right: 1px dotted #ddd;
	color: #ee808a;
	white-space: nowrap;
}
.page-removal .price tr:nth-child(even){
	background-color: #fff;
}

.page-removal .voice{
} 
.page-removal .voice .midashi h2{
	color: #eb6877;
}
.page-removal .voice .midashi h2 span{
	display: block;
}
.page-removal .voice p{
}
.page-removal .voice p.msg{
	width: 96%;
	margin: 20px auto;
	font-family: 'Noto Serif JP', serif;
}
.page-removal .voice p.msg br{
	display: none;l
}

.page-removal .voice .cause{
	width: 96%;
	margin: 40px auto 20px;
	border: 6px solid #fbe2d8;
	position: relative;
	text-align: left;
	padding: 0 0 20px;
}
.page-removal .voice .cause h3{
	font-size: 1.8rem;
	color: #fff;
	display: block;
	width: 200px;
	height: 60px;
	line-height: 60px;
	border-radius: 50%;
	background-color: #ee808a;
	margin: -30px auto 10px;
	text-align: center;
}
.page-removal .voice .cause .list{
	width: 90%;
	margin: 0 auto;
	font-size: 1.6rem;
	color: #eb6877;
	font-style: italic;
	line-height: 1.8;
}









/* -----relaxation----- */
.page-relaxation{
}

.page-relaxation .liferesonanse{
	background-image: url(../img/page/bg-relaxation.jpg);
   	background-position: top -150px center; 	
	background-repeat: no-repeat;	
	background-size: cover;
}
.page-relaxation .liferesonanse .lr{
	width: 270px;
}
.page-relaxation .liferesonanse h2{
	font-size: 1.6rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	margin: 0;
}
.page-relaxation .liferesonanse .title-area{
	position: relative;
	width: 98%;
	margin: 0 auto;
}
.page-relaxation .liferesonanse .point{
	color: #fff;
	background-color: #B466A6;
	width: 50px;
	height: 50px; 
	font-size: 1.2rem;
	line-height: 14px;
	font-family: 'Noto Serif JP', serif;
	text-align: center;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
    animation: down 2s ease 0s 1 normal;
    position: relative;
}
@keyframes down {
    0% { top: 0px ; opacity: 0;}
    50% { top: 0px ; opacity: 0;}
    80% {top: 5px ; opacity: 0.8;}
    100% {top: 0 ; opacity: 1;}
}

.page-relaxation .liferesonanse .lead{
	margin: 30px auto;
}
.page-relaxation .liferesonanse .lead strong{
	color: #CC66C2;
}
.page-relaxation .liferesonanse .born{
	text-align: left;
	width: 98%;
	margin: 0 auto;
	color: #333;
}

.page-relaxation .liferesonanse .flex{
	width: 98%;
	margin: 360px auto 0;
}
.page-relaxation .liferesonanse .flex .ex{
	width: 100%;
}
.page-relaxation .liferesonanse .flex .ex img{
	margin: 10px 0 30px;
	border-radius: 10px;
}
.page-relaxation .liferesonanse .flex .ex img.face{
	max-width: 280px;
}
.page-relaxation .liferesonanse .flex .ex .midashi h2{
	font-size: 2rem;
	font-family: 'Noto Serif JP', serif;
	color: #CC66C2;
	font-weight: 400;
	margin: 0;
	padding: 0 0 10px;
	border-bottom: 1px solid #CC66C2;
}
.page-relaxation .liferesonanse .flex .ex strong{
	font-size: 1.45rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	text-align: center;
	margin: 10px auto 0;
	display: block;
}
.page-relaxation .liferesonanse .flex .ex p{
	text-align: left;
}

.page-relaxation .course{
	background-color: #FAEFF9;	
}
.page-relaxation .course h2{
	color: #CC66C2;	
}

.page-relaxation .scroll{
	width: 100%;
	height: 40px;
}
.page-relaxation .scroll a{
	display: block;
	margin: 20px auto 0;
	font-size: 1.8rem;
	color: #fff;
	text-decoration: none;
	width: 32px;
	height: 32px;
	line-height: 32px;
	border-radius: 50%;
	background-color: #CC66C2;
 	transition: 0.3s;
}
.page-relaxation .scroll a:hover{
	background-color: #fff;
	color: #CC66C2;
	border: 1px solid #fff;
}

.page-relaxation .price{
	border-collapse: collapse;
	width: 96%;
	margin: 30px auto;
	padding: 0;
	border: 1px solid #BF4AB5;
	background-color: #fafafa;
	box-sizing: border-box;
	text-align: left;
}

.page-relaxation .price th{
	font-size: 1.6rem;
	color: #666;
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
	padding: 10px;
	box-sizing: border-box;
	border-bottom: 1px dotted #ddd;
	width: 100%;
	display: block;
}

.page-relaxation .price td{
	text-align: right;
	width: 100%;
	display: block;
	font-size: 1.6rem;
	color: #CC66C2;
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
	margin: 0;
	padding: 7px 10px;
	box-sizing: border-box;
	border-bottom: 1px dotted #ddd;
	background-color: #fff;
}
.page-relaxation .price.option th{
	font-size: 1.4rem;
}
.page-relaxation .point{
	text-align: right;
	font-size: 1.2rem;
	width: 96%;
	margin: 0 auto -20px;
}





/* -----original----- */
.page-original{
}


.page-original .midashi{
	margin-top: 10px;
}

.page-original .birth{
	padding-bottom: 60px;
}
.page-original .birth .inner{
	padding: 0;
	margin: 20px auto 0;
}
.page-original .birth .inner{
	text-align: left;
}
.page-original .birth .inner strong{ 
	color: #e080a4;
	font-family: serif;
	font-size: 110%;
}

.page-original .about{
	padding: 30px 20px;
	box-sizing: border-box;
	background: rgb(255,255,255);
	background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(251,242,242,1) 100%);
}
.page-original .about h1{
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 8vw;
	font-weight: 400;
	color: #e080a4;	
	margin: 20px 0;
}
.page-original .about h1 span{
	display: inline;
	font-size: 1.5rem;
	font-weight: 400;
	color: #666;	
	margin: 0 10px;
}
.page-original .about h2{
	font-size: 1.5rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	margin: 10px 0 0;
}
.page-original .about p br{
	display: none;
}
.page-original .image{
	position: relative;
	width: 80%;
	margin: 50px auto 20px;
}
.page-original .image .logo{
	display: block;
	margin: 0 auto 0 -3%;
}
.page-original .bottle-big{
	width: 80%;
	display: block;
	margin: 0 auto;
	border-radius: 15px;
}
.page-original .image .bottle{
	position: absolute;
	top: -22%;
	right: -10%;
	width: 23%;
}
.page-original .midashi h2{
	color: #e080a4;	
	font-size: 1.8rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}

.page-original .explain{
	padding: 0;
	background-color: #fafafa;
}
.page-original .explain .point{
	color: "#fff";
	background-color: #e080a4;
	width: 100%;
	margin: 0;
	padding: 15px;
	box-sizing: border-box;
	color: #fff;
	font-size: 1.5rem;
}
.page-original .explain .point p{
	text-align: center;
}
.page-original .explain .point strong{
	text-decoration: underline;
}
.page-original .explain .flex{;
	margin: 0 auto;
	width: 90%;
	padding-bottom: 30px;
}
.page-original .explain .flex div{
	width: 100%;
}
.page-original .explain .flex div p{
	text-align: left;
}
.page-original .explain h3{
	color: #e080a4;	
	font-size: 1.8rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}
.page-original .explain h3 a{
	text-decoration: underline;
	color: #e080a4;	
}

.page-original .ad{
	padding: 30px 0;
	margin: 0 auto;
	width: 94%;
	background-color: #fff;
}
.page-original .ad h3{
	color: #e080a4;	
	font-size: 1.8rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}
.page-original .ad p{
	text-align: left;
}

.page-original .sgp{
	width: 94%;
	margin: 0 auto;
}
.page-original .sgp .photos{
	width: 100%;
	margin: -50px auto 10px;
	display: flex;
	flex-wrap: wrap;
}
.page-original .sgp .photos div{
	width: 48%;
	margin: 0 1%;
}
.page-original .sgp .photos div:last-child{
	width: 98%;
}
.page-original .sgp .photos img{
	border-radius: 6px;
}

.page-original .ex{
	background-color: #e1edf7;
}
.page-original .ex h2{
	color: #6D9EC7;
	font-size: 2.4rem;
}
.page-original .ex strong{
	color: #6D9EC7;
	text-decoration: underline;
}




.page-original .cream{
	width: 100%;
	margin: 0;
	padding-bottom: 60px;
	background-color: #f7e5f3;
	overflow-x: hidden;
}
.page-original .cream h2 {
	color: #e274a3;
	font-size: 2.4rem;
}
.page-original .cream .point{
	color: "#fff";
	background-color: #e274a3;
	width: 112%;
	margin: 0 -6%;
	padding: 15px 12%;
	box-sizing: border-box;
	color: #fff;
	font-size: 1.5rem;
	overflow-x: hidden;
}
.page-original .cream .point strong{
	text-decoration: underline;
}

.page-original .cream .image{
	position: relative;
	width: 80%;
	margin: 50px auto 30px;
}
.page-original .cream .image .logo{
	display: block;
	margin: 0 auto;
}
.page-original .cream .image .bottle{
	position: absolute;
	top: 5%;
	right: -15%;
	width: 35%;
}

.page-original .cream .flex{
	margin: 30px auto 0;
	width: 94%;
}
.page-original .cream .flex div{
	clear: both;
	width: 100%;
	position: relative;
	background-color: #fff;
	border-radius: 6px;
	margin: 10px auto;
	padding: 10px 20px 15px;
	box-sizing: border-box;
}
.page-original .cream .flex div.wide{
	width: 100%;
}
.page-original .cream .flex div p{
	text-align: left;
	margin: 0 auto;
}
.page-original .cream .flex div h3{
	color: #e080a4;	
	font-size: 1.8rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}
.page-original .cream .flex div h3 small{
	display: block;
}
.page-original .cream .flex div img{
	float: right;
	margin: 0 0 10px 15px;
	width: 130px;
}



.page-original .buy{
}
.page-original .buy br{
	display: none;
}
.page-original .buy .flex{
	margin: 0 auto;
	width: 100%;
}
.page-original .buy .flex .item{
	width: 220px;
	margin: 0 auto;
	font-size: 1.3rem;
}
.page-original .buy .flex .item p{
	text-align: center;
}
.page-original .buy .flex .item img{
	width: 250px;
	margin: 20px auto 0;
	transition: 0.3s ease;
}
.page-original .buy .flex .item img:hover{
		opacity: 0.7;
}
.asc .layout_a,
.asc .layout_b{
	background-color: #e080a4 !important;
}


/* -----shop----- */
.page-shop{
}

.page-shop .shopinfo{
}
.page-shop .shopinfo span{
	display: block;
	border-bottom: 1px solid #eee;
	padding: 0 0 5px;
	margin: 10px 0 5px;
}

.page-shop .panel{
	width: 96%;
	margin: 20px auto -60px;
	display: flex;
}
.page-shop .panel .wide{
	width: 60%;
	margin-right: 1px;
}
.page-shop .panel .narrow{
	width: 41%;
}
.page-shop .panel .narrow img{
	display: block;
	margin: 0;
}
.page-shop .panel .narrow img:first-child{
	border-bottom: 1px solid #fff;
}

.page-shop .gmap{
	width: 100%;
	margin: 10px auto 0;
	height: 300px;
}

.page-shop .flex{
	width: 100%;
	margin: 20px auto;
}
.page-shop .flex .ex{
	width: 100%;
}
.page-shop .flex .ex p{
	text-align: left;
}
.page-shop .flex .ex iframe{
	margin: 20px 0 0;
	height: 200px;
}


/* ---company--- */
.page-company{
}

.page-company table{
	width: 98%;
	margin: 30px auto 0;
	border-collapse: collapse;
	box-sizing: border-box;
	line-height: 1.8;
}
.page-company table th{
	text-align: left;
	padding: 10px;
	box-sizing: border-box;
	width: 100%;
	display: block;
	background-color: #fafafa;
	border-bottom: 1px solid #eee;
}
.page-company table td{
	text-align: left;
	padding: 10px;
	box-sizing: border-box;
	width: 100%;
	display: block;
}	

.page-company .gray{
	background-color: #fafafa;
}
.page-company ul{
	text-align: left;
	width: 94%;
	margin: 30px auto 0;
	padding: 0 0 0 20px;
}
.page-company ul li{
	margin: 10px 0;
}




}





@media screen and (max-width: 390px){

.page-facial .photorf .flex{
	display: flex;
	flex-wrap: wrap;
}
.page-facial .photorf .flex div{
	width: 100%;
}


}


@media screen and (max-width: 350px){
	
.intro h1{
	font-size: 2.6vw;
}	

.page-facial .photorf h2{
	font-size: 1.1rem;
}

.page-relaxation .liferesonanse .flex .ex strong{
	font-size: 1.3rem;
	font-weight: bold;
}

.page-facial .midashi h2{
	font-size: 2rem;
}

.page-original .midashi h2{
	font-size: 1.6rem;
}

	
}


@media screen and (orientation: landscape) {
.intro .scroll{
	display: none;
}

}
