@charset "utf-8";
/* CSS Document */
@import url("html5doctor_reset.css");

* { 
    margin: 0px; 
    padding: 0px; 
}

body{
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	line-height: 1.5;
  -webkit-text-size-adjust: 100%;
	background-image: url("../images/backgroundImg.png");
}
#mainimg .pc{
	max-width: 100vw;
    height: auto;
	vertical-align: bottom;
}
#mainimg .sp{
	max-width: 100vw;
	height: auto;
	display: none;
}
.green{
	height: 5px;
	background-color: #569880;
}
#contents{
	width: 80%;
	margin: 0 auto;
}
h2{
	text-align: center;
	font-size: 180%;
	color: #569880;
}
.space80{
	height: 80px;
}
.space40{
	height: 40px;
}
/*リンクの形状ページトップリンクー－－－－－－－－－－－－－－－－－－－－－－－－－*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#8EC1A6;
	border-radius: 5px;
	width: 60px;
	height: 60px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
}
/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

/*====================header=====================================*/


header{
	height: auto;
	text-align: center;
	font-family: 'Cormorant Infant', serif;
}
header img{
	width: 15%;
	height: auto;
	margin: 20px 0;
}
header li{
	display: block;
	font-size: 120%;
	margin-bottom: 25px;
}
header ul{
	width: 70%;
	margin: 0 auto;
	display: flex;
	justify-content: space-evenly;
	
}
header li a{
	text-decoration: none;
	color: #808080;
	padding-bottom: 10px;
}
.current{
	color: #569880;
}
/*==================================================
　5-3-8 円が線に変化
===================================*/
.gnavi li a{
    /*円の基点とするためrelativeを指定*/
	position: relative;
}

.gnavi li.current a,
.gnavi li a:hover{
	color:#569880;
}

.gnavi li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 0;
    /*線になる丸の形状*/
    width: 100%;
    height: 5px;
    border-radius: 50%;
    background:#569880;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0.04, 1);/*X方向0.04、Y方向1*/
    transform-origin:center bottom;/*中央下部基点*/
}

/*現在地とhoverの設定*/
.gnavi li.current a::after,
.gnavi li a:hover::after {
    height: 2px;/*縦幅を変化*/
    border-radius: 0;/*丸みをなくす*/    
    transform: scale(1, 1);/*X方向0.8、Y方向1にスケール拡大*/
}

.Hamburger{
	display: none;
}
#g-nav ul li a{
	color: #569880;
	font-family: 'Cormorant Infant', serif;
}
/*========= ナビゲーションのためのCSS ===============*/

/*アクティブになったエリア*/
#g-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 99999;
	top: 0;
	width:100%;
    height: 100vh;
}

/*丸の拡大*/
.circle-bg{
    position: fixed;
	z-index:3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background:#fff;
    /*丸のスタート位置と形状*/
	transform: scale(0);/*scaleをはじめは0に*/
    top:calc(50% - 50px);/*50%から円の半径を引いた値*/
    left:calc(50% - 50px);/*50%から円の半径を引いた値*/
    transition: all 1s;/*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive{
	transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
     display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
	opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
    opacity:1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;/*0.2 秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}

/*リストのレイアウト設定*/
#g-nav li{
	text-align: center; 
	list-style: none;
}

#g-nav li a{
	color: #569880;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}


/*========= ボタンのためのCSS ===============*/
.openbtn1{
	position:fixed;
	top:10px;
	right: 10px;
	z-index: 9999;/*ボタンを最前面に*/
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #569880;
  	width: 45%;
  }

.openbtn1 span:nth-of-type(1) {
	top:15px;	
}

.openbtn1 span:nth-of-type(2) {
	top:23px;
}

.openbtn1 span:nth-of-type(3) {
	top:31px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
/*====================footer=====================================*/
footer{
	text-align: center;
	width: 80%;
	margin: 0 auto;
}
footer img{
	display: block;
	margin:40px auto 10px auto;
	width: 15%;
	height: auto;
}
footer small{
	font-size: 80%;
	color: #808080;
}
/*=================HOME==================================*/
.onlineshop{
	background-color: #569880;
	color: #fff;
	text-align: center;
	padding: 10px;
}
#mainimg a{
	text-decoration: none;
}

#gallery{
	margin-top: 80px;
	padding: 50px 0;
	background-color: #569880;
}
.kaisha .underline{
    border-bottom: 1px solid #808080;
}
/*==================================================
スライダーのためのcss
===================================*/
.slider img {
    width:85%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin:0px;/*スライド左右の余白調整*/
}
/*news===============================================================*/
.news-list{
  list-style: none outside;
  margin:40px 50px 0 50px;
  padding: 0;
}
.news-list .item a{
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  text-decoration: none;
  color: #808080;
  border-bottom: 1px solid #808080;
  padding: 25px 40px;
}
.news-list .item:first-child a{
  border-top: 1px solid #808080;
}
.news-list .item .date{
  margin: 0;
  min-width: 120px;
  font-size: 16px;
  color: #569880;
  padding: 0 20px 0 0;
}
.news-list .item .title{
  margin: 0;
  width: 100%;
}
.news-list .item a:hover .title{
  color: #569880;
}

@media screen and (max-width: 767px){
.news-list .item a{
  flex-wrap: wrap;
}
.news-list .item .date{
  min-width: 100px;
}
.news-list .item .title{
  margin-top: 10px;
}
.news-list .item .title, .news-list .item .date{
	font-size:90%;		
}
}
.news .more{
	text-align: right;
	color: #569880;
	text-decoration: none;
	margin: 30px 50px 0 0;
}
.news a{
	text-decoration: none
}

/*About=====================================*/
.about h3 {
	color: #569880;
	text-align: center;
	margin-top: 40px;
	font-size: 120%;
}
.about img{
	display: block;
	margin: 20px auto;
}
.about .text{
	margin: 30px 100px;
	color: #808080;
}

ul.introduction{
    margin: 30px 100px;
    color: #808080;
    font-size: 90%;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.introduction li{
    padding: 2px 10px;
    display: flex;
    align-items: center;
}
.introduction .small{
    font-size: 50%;
}


/*ボタン＝＝＝＝＝＝＝＝*/
a.btn_23 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	margin:20px 100px;
	padding: 1rem;
	border: 1px solid #569880;
	color: #569880;
	cursor: pointer;
	position: relative;
 	overflow: hidden;
 	z-index: 1;
}
a.btn_23::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(86, 152, 128);
	transform: translateX(-100%);
	transition: all .7s;
	z-index: -1;
}
a.btn_23:hover::before {
	transform: translateX(0);
}
a.btn_23:hover {
	color: #fff;
}
/*menu==========================*/
.p_menu h2{
	color: #fff;
}
.p_menu{
	color: #fff;
	background: #569880;
	margin: 80px calc(50% - 50vw) 0;
	width: 100vw;
}
.box29 {
    margin:0 15%;
    background: #569880;
	text-align: center;
	border: 1px solid #fff;
}
.box29 .box-title {
	border-bottom: 1px solid #fff;
    background: #569880;
    padding: 15px;
    text-align: center;
    color: #FFF;
    letter-spacing: 0.05em;
}
.box29 p {
    padding: 20px 10px;
}
.box29 a{
	text-decoration: none;
	color: #fff;
}
/*info==========================*/
.kaisha {
min-width: 90%;
margin: 30px auto 0;
color: #808080;
}

.kaisha th,
.kaisha td {
border: 1px solid #8EC1A6;
padding: 10px;
}

.kaisha th {
background-color: #569880;
color: #fff;
}
.kaisha td{
	background-color: #fff;
}
.kaisha a{
	color: #808080;
	text-decoration: none;
}
@media screen and (max-width: 1000px) {
.kaisha,
.kaisha tr,
.kaisha td,
.kaisha th {display:block;}
.kaisha th {width:auto;}
}
iframe{
	display: block;
	margin: 40px auto;
	width: 90%;
}
/*背景葉っぱ＝＝＝＝＝＝＝＝*/
main{
    background-image: url("../images/leaf_r.png"), url("../images/leaf_l.png");
    background-repeat: no-repeat;
    background-position: right -2% top 20%, left -4% top 50%;
    background-size:18% auto;
}

/*about==========================================================*/
#underlayerTop{
	background-color: #569880;
	text-align: center;
}
#underlayerTop h1{
	font-size: 250%;
	color: #fff;
	padding: 30px;
}
.thought{
	text-align: center;
	
}
.thought h3 {
	color: #569880;
	text-align: center;
	margin: 40px 0 20px 0;
	font-size: 130%;
}
.thought p, .thought .text{
	color: #808080;
	margin-top: 20px;
	text-align-last: left;
	margin: 0px 100px;
}
.thought img, .aromaoil img{
	display: block;
	margin: 0 auto;
	max-width: 70%;
}
.Therapist h3{
	text-align: center;
	font-size: 120%;
	color: #569880;
}
.Therapist .katagaki{
	text-align: center;
	font-size: 80%;
	color: #569880;
}
.Therapist img, .aromaoil .oil{
	display:block;
	margin: 40px auto;
	width: 25%;
}
.Therapist p{
	margin: 20px 100px 0;
	color: #808080;
}
.salon .text{
	color: #808080;
	margin: 40px 100px 0;
}
/*==================================================
スライダーのためのcss
===================================*/

/*画像の横幅を100%にしてレスポンシブ化*/
.shisetsu img{
	width: 100%;
	height: auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/
}

/*メイン画像下に余白をつける*/
.gallery{
	margin:0 0 5px 0;
}

.gallery li{
list-style:none;
}
/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
	z-index: 3;
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #ccc;/*矢印の色*/
    border-right: 2px solid #ccc;/*矢印の色*/
    height: 25px;
    width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}

/*選択するサムネイル画像の設定*/

.choice-btn li{
	cursor: pointer;
	outline: none;
	background:#333;
list-style:none;
}

.choice-btn li img{
	opacity: 0.4;/*選択されていないものは透過40%*/
}

.choice-btn li.slick-current img{
	opacity: 1;/*選択されているものは透過しない*/
}
.shisetsu{
	width: 50%;
	margin: 40px auto 10px;
}
.aromaoil h2{
	margin: 40px 0 20px;
}
.aromaoil p{
	color: #808080;
	margin: 0 100px;
}
.aromaoil h3{
	text-align: center;
	font-size: 120%;
	color: #569880;
	margin: 40px 0 15px;
}
/*news======================================================*/
/* 共通 */
.changeCard ul {
    padding: 0;
    list-style: none;
    border: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0;
    margin: 20px 100px 0;
}
.changeItemTxt {
    width: 62%;
    color: #808080;
}
.changeItemTxt p.itemTitle {
    font-size: 1.1rem;
    line-height: 1.56;
    margin: 0;
    color: #569880;
    margin-bottom: 10px;
}
/* 共通ここまで */

/* List */
li.changeItem.defaultList {
    width: 100%;
    padding: 0 0 20px 0;
}
li.changeItem.defaultList a {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border-radius: 2px;
    background: #fff;
    cursor: pointer;
    transition: 0.2s ease-in-out;
    padding: 20px;
    position: relative;
    align-items: center;
    text-decoration: none;
    border-top: solid 1px #eee;
    padding-right: 10px;
    cursor: pointer;
}
li.changeItem.defaultList:last-child a {
    border-bottom: solid 1px #EEE;
}
li.changeItem.defaultList a:hover {
    background: #fafafa;
}
li.changeItem.defaultList a img {
    width: 30%;
	height: auto;
    margin-right: 3%;
}

@media screen and (max-width: 767px) {
/* （ここにモバイル用スタイルを記述） */
li.changeItem.defaultList a {
    flex-direction: column;
}
li.changeItem.defaultList a img {
    width: 100%;
    margin: 0 0 15px;
}
li.changeItem.defaultList a .changeItemTxt {
    width: 100%;
}
}
.news-page{
    background: #fff;
    box-shadow: 0 0 1px #808080;
    text-align: center;
    margin: 0 100px;
}
.news-page h3{
    color: #569880;
    padding: 50px 10px;
    font-size: 120%;
}
.news-page .page_text p{
    text-align-last: left;
    padding: 0 50px 40px;
    color: #808080;
    font-size: 95%;
    line-height: 2;
}
.news-page .btn_23{
    margin-left: 70px;
    margin-right: 70px;
    
}
.news-page time{
    display: block;
    text-align: right;
    padding-right: 60px;
    padding-bottom: 15px;
    color: #569880;
    font-size: 90%;
}

.menuWrap {
  width: 100%;
  max-width: 740px;
  text-align: center;
  margin: 0 auto ;
  
}
.menuWrap .tabItem {
  padding: 0.5rem 2rem;
  color: #fff;
  text-align: center;
  background: #8EC1A6;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  box-shadow: 0 0 1px #808080;
}
.menuWrap .tabItem:hover { background: #569880 }
.menuWrap input[name="tabItem"] { display: none }
.menuWrap .tabContent {
  width: 100%;
  max-width: 740px;
  text-align: left;
  margin-top: 60px;
  display: none;
  overflow: hidden;
  background: #569880;
  box-shadow: 0 0 1px #808080;
}
.menuWrap #head + label,
.menuWrap #face + label, 
.menuWrap #stomach + label, 
.menuWrap #foot + label{
  margin-left: 20px
}
.menuWrap #body:checked ~ #bodyContent,
.menuWrap #head:checked ~ #headContent,
.menuWrap #stomach:checked ~ #stomachContent, 
.menuWrap #face:checked ~ #faceContent, 
.menuWrap #foot:checked ~ #footContent{
  display: block
}
.menuWrap input:checked + .tabItem { background: #569880 }
.menuWrap .tabContent h4 {
  font-size: 180%;
  padding: 40px 50px 0;
  color: #fff;
}
.menuWrap input:checked + .tabItem { background: #569880 }
.menuWrap .tabContent h4 span {
     border-bottom: 2px solid #fff;
}
.menuWrap input:checked + .tabItem { background: #569880 }
.menuWrap .tabContent .text {
    color: #fff;
    padding: 10px 50px;
}

.menuWrap .tabContent dl {
  padding: 10px 50px;
  border-bottom: 1px dashed #fff;
  color: #fff;
  display: flex;
  justify-content:space-between;
}
.menuWrap .tabContent dt {
  font-size: 140%;
}
.menuWrap .tabContent dd {
  font-size: 140%;
  text-align: right;
}


/*ページネーション*/
.page-numbers{
    list-style-type: none;
    text-align: center;
    
}
.page-numbers li{
    display: inline;
    padding: 5px;
}
.page-numbers li a{
    color: #808080;
}

h3.space-cancel{
	margin-top:0!important;
}