/* max-width 1120px
   header max 280px
   height auto

   コンテンツmax-width 930px

   【スマホ切り替え】
   ヘッダー、ナビ、フッター　768px
   メイン　600px

   z-index
   1  body .site
   4  .top-slider
   5  .img-balloon（タイトルの吹き出し下部分）
   10 nav.drawer-nav（スマホ版メニュー一覧）
   15 .main-header-all（ヘッダー）
   20 button.drawer--right .drawer-hamburger（スマホ版メニューボタン）

*/

/*********** Bootstrap印刷時の調整 **********************************/
@media print {
  a[href]:after {
    content: "" !important;
  }
  abbr[title]:after {
    content: "" !important;
  }
}

/*****************************************************************************
****************** 共通 ******************************************************
*****************************************************************************/
body {
	-webkit-print-color-adjust: exact;
}
body.custom-font-enabled{
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 'メイリオ' , Meiryo , Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
body .site a{
	outline: none;
	text-decoration:none;
}
body *:focus {
	outline: none;
}
body img {
	width:100%;
}

/* html,bodyタグの設定 */
html, body{
    margin: 0;         /* 余白の削除 */
    padding: 0;        /* 余白の削除 */
    width:100%;
    height:100%;
}

body .site{
	box-shadow:none;
	max-width:100%;
	width:auto;
	padding:0;
	margin:0 auto;
	background:none;
	z-index:1;
}

.sub-breadcrumb{		/*パンくず*/
	border-bottom: 1px solid #000000;
	padding: 0 2%;
	padding-bottom: 1%;
	padding-top: 2%;
	overflow: hidden;
}
.breadcrumbs a:hover{
	text-decoration:underline;
}



/*************************************************** トップページ ***************************************************/


/*****************************************************************************
****************** ヘッダー **************************************************
*****************************************************************************/
.site-header{
	padding-top:0;
	padding-bottom:0;
	width:auto;
	margin:0 auto;
}
.main-header-all{
  max-width:280px;
  height: 2000px;
  float: left;
  background-color: #ce4948;
  position: fixed;            /* ヘッダーの固定 */
  top: 0px;                   /* 位置(上0px) */
  left: 0px;                  /* 位置(右0px) */
  width: 100%;                /* 横幅100%　*/
  z-index: 15;
}
.main-header{
	width:auto;
	margin:0 auto;
  padding-bottom: 1%;
}
.main-header-con {
  height: 100%;
  margin: auto;
}
.main-header-top{
  overflow: hidden;
}
.main-header-top p{
  width: 75%;
  margin: auto;
}
.main-header-top p img,
.main-header-top h1 img{
  vertical-align: bottom;
}
.main-header-top h1{
  width: 80%;
  margin: auto;
}
/*********** ナビゲーション **********************************/
.main-navi{
	font-weight:bold;
	overflow: hidden;
  width: 100%;
  margin: auto;
}
.main-navi ul{
  width: 72%;
	margin: 0 auto;
  /*background-image: url("../img/img-menu-back.png");
  background-size: 100%;*/
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center top,center bottom;
	padding: 7% 0;
	list-style: none;
}
.main-navi li{
  width: 100%;
  margin: 0 auto;
  font-size: 1rem;
  text-align: right;
  padding: 5% 0;
}

.main-navi li a{
	color:#ffffff;
  display: block;
}

.main-navi li a span{
	color:#faf1dd;
  display: inline-block;
  margin-right:10px;
font-size: 0.6rem;
}

.main-navi li a img{
  width: 90%;
  padding-bottom: 5%;
	-webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.main-navi li a:hover img{
  text-decoration: none;
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}
@media screen and (max-width: 767px) {
  .main-header-all{
    float: none;
    height: auto;
    max-width: unset;
    background-position: 15% 15%;
    background-size: 150%;
	}
  .main-header-top{
    padding: 1% 0;
  }
  .main-header-top h1{
    width: 43%;
  }
  .main-header-top p,
	.main-navi{
		display:none;
	}
  .main-navi-con{
  	border-top: none;
  }
}

/* アコーディオン */
/* reset */
.main-navi-con button{background:transparent;border:none;cursor:pointer;outline:none;padding:0;appearance:none;}ul{list-style-type:none;margin:0;padding:0;}li,p{margin: 0;}
/* reset */

.main-navi-con button {
  display: block;
  cursor: pointer;
  color: #ffffff!important;
}

.main-navi-con button:hover {
	color: #ffffff!important;
}

.main-navi-con button:active{
	background-color: #ffffff;
	background-image: none;
	box-shadow: none;
	border-color: none;
}
.main-navi-con ul {
  padding: 0;
  width: 100%;
  background-image: none;
}
.main-navi-con li {
  width: 100%;
  font-size: 100%;
  padding-bottom: 0;
}
.main-navi-con p {
  line-height: 1.5;
  opacity: 1;
  visibility: visible;
}
.main-navi-con p a:hover {
  color: #5e5e5e;
}
@media screen and (max-width: 767px) {
  .drawer-nav ul li.adjustment{
    width: 100%;
  }
  .drawer-nav ul li.adjustment button{
    margin: 0 auto;
    cursor: auto;
  }
  .main-navi-con button:hover {
    color: #000000;
  }
  .drawer-nav ul li.adjustment ul{
    display: flex;
  }
}

/*****************************************************************************
****************** メイン ****************************************************
*****************************************************************************/
.site-content{
	width:100%;
	float:none;
	margin: auto;
  float: right;
  padding-left: 280px;
}
#content{
  background-color: #efe9e3;
}
@media screen and (max-width: 767px) {
  .site-content{
    padding-left: 0;
    padding-top: 200px;
  }
}

/*********** スライド **********************************/
.main-slider{
	width:auto;
	margin:0 auto;
}
.top-slider{
	z-index:4;
}
.top-slider li a {
  display: block;
	-webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.top-slider li a:hover {
  text-decoration: none;
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}

.news-con-all{
  background-color: #ffffff;
}
.news-con{
  max-width: 930px;
  width: auto;
  margin: auto;
}
/*********** お知らせ **********************************/
.news-con .news{
  margin: auto;
  width: 100%;
  padding: 3% 1.5%;
  font-weight: bold;
}
.news-con .news .box{
  width: 88%;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  padding: 0.8% 0;
}
.news-con .news .title{
  width: 17%;
  float: left;
  color: #ffffff;
}
.news-con .news .contents{
  width: 83%;
  float: right;
  color: #634028;
  font-weight: normal;
}
.news-con .news .contents a{
  color: #000000;
}
.news-con .news .contents a:hover{
  color: #ffffff;
}
.news-con .news .list{
  width: 10%;
  border: 2px solid #fff;
  border-radius: 8px;
  text-align: center;
  margin-left: 2%;
}
.news-con .news .list a {
	-webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #ffffff;
  padding: 10% 0;
  display: block;
}
.news-con .news .list a:hover {
	background-color: #ffffff;
  color: #f19db5;
}
@media screen and (min-width: 768px) {
  .news-con .news .box{
    float: left;
  }
  .news-con .news .list{
    float: right;
  }
}
@media screen and (max-width: 767px) {
  .news-con .news{
    padding: 5% 1.5%;
  }
  .news-con .news .box{
    width: 100%;
    overflow: hidden;
    padding: 2% 0;
  }
  .news-con .news .title{
    width: 20%;
    font-size: 4.5vw;
  }
  .news-con .news .contents{
    width: 78%;
    font-size: 4vw;
    padding-top: 0.4%;
  }
  .news-con .news .list{
    width: 20%;
    margin: 0 auto;
    margin-top: 3%;
  }
  .news-con .news .list a{
    padding: 5% 0;
  }
}

/*********** 学びにもっと自由を **********************************/
.news-con .care{
  clear: both;
  padding: 2% 4%;
  text-align: center;
  color: #000000;
}
.news-con .care .title{
  font-weight: bold;
  font-size: 150%;
  padding: 20px 0;
}

.h3_concept{
  width: 240px;
  font-size: 2.4rem;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  margin: 20px auto 0 auto;
  border-bottom: 1px solid #000;
}

.h4_title{
  width: 240px;
  font-size: 2.4rem;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  margin: 20px auto 0 auto;
  border-bottom: 1px solid #000;
  text-align: center;
  font-weight: normal;
}

.h4_subtitle{
  width: 240px;
  font-weight: normal;
  font-size: 150%;
  padding: 10px 0;
  text-align: center;
  margin: 0 auto;
}

.news-con .care p{
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .news-con .care .title{
    font-size: 4.5vw;
  }
  .news-con .care p{
    font-size: 2.8vw;
    line-height: 150%;
  }
}


/*********** 探す **********************************/
.search-con-all{
  background-size: 100%;
  background-repeat: no-repeat;
  overflow: hidden;
  background-color: #ffffff;
  padding-bottom: 3%;
}
.search-con{
  max-width: 930px;
  width: auto;
  margin: auto;
  padding-top: 4%;
}
.search-con .title{
  width: 30%;
  margin: auto;
  padding-bottom: 2%;
}
.search-con .search{
  width: 85%;
  margin: auto;
  overflow: hidden;
}
.search-con .search div{
  float: left;
  width: 33.3333333%;
}
.search-con .search .or{
  padding: 10% 5%;
}
.search-con .search a:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}
@media screen and (max-width: 767px) {
  .search-con .title{
    width: 40%;
  }
}

/*****************************************************************************
****************** フッター **************************************************
*****************************************************************************/
.footer-all{
  background-color: #ffffff;
}
footer[role="contentinfo"]{
	border:0;
	margin:0 auto;
	padding: 0;
  font-weight: bold;
  max-width: unset;
}
.site-info{
	max-width:930px;
	width:auto;
	margin:0 auto;
}

.site-info-wrap{
	width:100%;
	margin:0 auto;
  background-color: #faf1dd;
}

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

/*********** 情報部分 **********************************/
.footer-office{
	padding-right: 8%;
  color: #000000;
  padding: 2.5% 0;
  padding-left: 4%;
}
.footer-office .site-title{
  font-size: 170%;
}
.footer-office .footer-con-address{
  line-height: 140%;
  padding-bottom: 3%;
}
.footer-office .tel{
  width: 92%;
}
.footer-con .container-fluid{
  padding-top: 1%;
  padding-bottom: 3%;
}
.footer-con .list01{
  padding: 0;
}
.footer-con .list02{
  padding-right: 0;
}
.footer-con .container-fluid ul{
	list-style-type: none;
	margin-left:14px;/* マーカーを1文字寄せた分、ULにマージンを設定*/
}
.footer-con .container-fluid ul li:before {
	content: '> '; /* ←ここにリストマーカーにしたい文字列を設定 */
	margin-left:-14px; /* 1文字分、左に寄せる */
}
.footer-con .container-fluid ul li ul{
  list-style-type: disc;
}
.footer-con .container-fluid ul li ul li:before{
  content: none;
}
footer[role="contentinfo"] .footer-con .container-fluid ul li a,
footer[role="contentinfo"] .footer-con .container-fluid ul li span{
  color: #000000;
  padding-left: 5%;
}
footer[role="contentinfo"] .footer-con .container-fluid ul li a:hover{
  text-decoration: underline;
}
.footer-con .receptionist{
  display: none;
}
@media screen and (max-width: 1090px) {
	.footer-con-address,
  .footer-con .container-fluid ul li{
		font-size: 1.25vw;
	}
  .footer-con .ban{
    font-size: 1.05vw;
  }
}
@media screen and (max-width: 767px) {
  .footer-office .site-title{
    font-size: 6vw;
  }
  .footer-con .container-fluid{
    display: none;
  }
  .footer-con-address{
		font-size: 3vw;
	}
  .footer-office .tel{
    padding-bottom: 1%;
  }
  .footer-con .receptionist{
    display: block;
  }
  .footer-con .receptionist{
    display: block;
  }
  .footer-con .receptionist .notes{
    font-size: 2.7vw;
    line-height: 130%;
  }
  .footer-con .receptionist .tel{
    line-height: 120%;
    border: 1px solid;
    border-radius: 5px;
    margin: 5% 0;
    font-size: 3.4vw;
    padding: 3%;
  }
  .footer-con .receptionist .tel span{
    font-size: 2.7vw;
  }
}

/*********** マップ **********************************/
.map-con{
  padding: 0;
}
.map{
  overflow: hidden;
  max-height: 230px;
  border-radius: 150px 0 0 150px;
}
.map-con .ban{
  text-align: right;
  color: #ffffff;
  line-height: 140%;
  padding-top: 3%;
}
@media screen and (max-width: 767px) {
  .map-con .ban{
    font-size: 1.9vw;
  }
}

/*************************************************** サブページ ***************************************************/
.contents-top{
  background-color: #f19db5;
  text-align: center;
  padding-bottom: 1%;
}
.page-newslist .contents-top p.title{
  width: 30%;
  margin: auto;
  background-image:url("../img/news/img-contents-top-back.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position-y: 100%;
  padding: 1.5%;
  color: #634028;
  font-size: 130%;
  font-weight: bold;
  max-width: 320px;
  padding-top: 5%;
}
.page-contents-all{
  position: relative;
  padding: 10% 0;
}
.page-contents-all .img-balloon{
  position: absolute;
  top: 0;
  z-index: 5;
}
.page-contents{
	max-width: 930px;
	margin: 0 auto;
}

/***************************************** お知らせ 一覧 *****************************************/
.page-newslist .page-contents-all{
  background-color: #f6f6f5;
}
.page-contents .box{
	overflow: hidden;
  padding-bottom: 4%;
}
.page-contents .box h3{
  border-bottom: 2px dashed #f19db5;
  padding-bottom: 1%;
  font-weight: bold;
  font-size: 110%;
}
.page-contents .box p{
  padding-top: 1%;
}
@media screen and (max-width: 767px) {
	.page-newslist .contents-top p.title{
    width: 40%;
    font-size: 3.8vw;
	}
  .page-contents .box h3 {
    font-size: 3.8vw;
    padding-bottom: 2%;
  }
  .page-contents .box p {
    font-size: 3.4vw;
    padding-top: 2%;
  }
}

/***************************************** はじめての方へ *****************************************/
/***************************************** スタッフ紹介 *****************************************/
.page-beginner .page-contents-all,
.page-staff .page-contents-all{
  background-color: #ffffff;
  padding-bottom: 0;
}
.contents-top p{
  max-width: 1065px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contents-top{
    padding-bottom: 3%;
  }
}



/***************************************** はじめての方へ *****************************************/
.page-beginner .contents-top p.img,
.page-beginner .contents-top p.title{
  width: 25%;
  min-width: 270px;
}
.contents-top p.img{
  padding-top: 3%;
}
.contents-top p.title{
  padding-top: 1%;
  color: #634028;
}
.first-words{         /* 取り扱い化粧品ページでも使用 */
  text-align: center;
  line-height: 160%;
  letter-spacing: 1px;
  padding-bottom: 5%;
}
.page-beginner .page-contents{
  background-image:url("../img/beginner/img-content-back.png");
  background-size: 100%;
  background-repeat: no-repeat;
}
.page-contents .point-all{
  width: 60%;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  padding: 4% 0;
}
.page-contents .point-all p{
  line-height: 160%;
  padding-top: 3%;
  letter-spacing: 1px;
}
.page-contents .point-all p.img{
  width: 70%;
  margin: 0 auto;
}
.page-contents .point-all > div{
  padding: 2% 0;
}
.page-contents .consultation-step{
  padding: 10% 0;
}
.page-contents .consultation-step .consultation-step-top{
  width: 75%;
  margin: 0 auto;
}
.page-contents .consultation-step h3{
  text-align: center;
  font-size: 130%;
  color: #634028;
  padding-bottom: 5%;
}
.page-contents .consultation-step h3 span{
  color: #ea5972;
}
.page-contents .consultation-step .consultation-step-top .sentence{
  line-height: 160%;
  padding-top: 1%;
}
.page-contents .consultation-step .consultation-step-top > div{
	overflow: hidden;
  padding-bottom: 10%;
}
.page-contents .consultation-step .step01{
  background-image:url("../img/beginner/img-arrow.png");
  background-size: 4%;
  background-repeat: no-repeat;
  background-position: center 85%;
}
.page-contents .consultation-step .step02{
  background-image:url("../img/beginner/img-arrow.png"),url("../img/beginner/img-arrow.png");
  background-size: 4%;
  background-repeat: no-repeat;
  background-position: 25% 85%,75% 85%;
}
.page-contents .consultation-step .step03{
	overflow: hidden;
}
.page-contents .consultation-step .step03 > div{
	background-color: #fadae0;
  padding: 3% 5%;
  margin: 1%;
}
.page-contents .consultation-step .step03 .sentence{
  line-height: 160%;
  padding-top: 5%;
  padding-bottom: 10%;
}
.page-contents .consultation-step .step03 .box{
  background-image:url("../img/beginner/img-step03-l-back.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  padding: 6% 8%;
}
.page-contents .consultation-step .step03 .box .title{
  padding-bottom: 6%;
  font-weight: bold;
  font-size: 110%;
}
.page-contents .consultation-step .step03 .box ul{
  text-align: left;
}
.page-contents .consultation-step .step03 .box ul li{
  padding-bottom: 2%;
}
.page-contents .consultation-step .step03 .caution{
  font-size: 82%;
  line-height: 140%;
  padding-top: 20%;
}

/******* クレジットカード *******/
.page-contents-all .credit-card{
	background-color: #f1eee9;
  padding: 4% 0;
}
.page-contents-all .page-about .credit-card{
	background-color: #ffffff;
  padding: 4% 0;
}
.page-contents-all .credit-card .title{
  text-align: center;
  font-weight: bold;
  font-size: 120%;
  letter-spacing: 5px;
  padding-bottom: 2%;
}
.page-contents-all .credit-card .credit{
	width: 35%;
  margin: auto;
}
.question-list{
	text-align: center;
  padding: 4% 0;
}
.question-list .sentence{
  padding-bottom: 2%;
  font-size: 120%;
}
.question-list .link{
  width: 30%;
  margin: auto;
  background-image:url("../img/beginner/img-link-back.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  letter-spacing: 3px;
  font-weight: bold;
  padding: 1% 0;
}
.question-list .link a{
  color: #ffffff;
  padding: 3% 0;
  display: block;
}
.question-list .link a:hover{
  color: #000000;
}
@media screen and (min-width: 768px) {
  .page-contents .consultation-step .step02{
    background-image:url("../img/beginner/img-arrow.png"),url("../img/beginner/img-arrow.png");
    background-size: 4%;
    background-repeat: no-repeat;
    background-position: 25% 85%,75% 85%;
  }
  .page-contents .consultation-step .step03{
    display: flex;
  }
  .page-contents .consultation-step .step03 > div{
    width: 48%;
  }
  .question-list .adjustment{
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .page-beginner .contents-top p.img,
  .page-beginner .contents-top p.title {
    width: 40%;
    min-width: unset;
  }
  .first-words,
  .page-contents .point-all {
    font-size: 3.6vw;
    width: 80%;
    margin: 0 auto;
  }
  .page-contents .consultation-step .consultation-step-top > div > div {
    padding: 0;
  }
  .page-contents .consultation-step .consultation-step-top .img{
    width: 20%;
    margin: 0 auto;
  }
  .page-contents .consultation-step .consultation-step-top .sentence{
    font-size: 3.6vw;
  }
  .page-contents .consultation-step .consultation-step-top > div {
    padding-bottom: 15%;
  }
  .page-contents .consultation-step .step01,
  .page-contents .consultation-step .step02{
    background-image:url("../img/beginner/img-arrow.png");
    background-size: 7%;
    background-repeat: no-repeat;
    background-position: center 95%;
  }
  .page-contents .consultation-step .step03 {
    width: 80%;
    margin: 0 auto;
    font-size: 3.6vw;
  }
  .page-contents .consultation-step .step03 > div {
    padding: 8% 5%;
    margin: 3% auto;
  }
  .page-contents .consultation-step .step03 .sentence {
    padding-bottom: 5%;
  }
  .page-contents .consultation-step .step03 .box {
    padding: 5%;
  }
  .page-contents .consultation-step .step03 .caution {
    padding-top: 5%;
  }
  .page-contents-all .credit-card .title{
    font-size: 3.5vw;
  }
  .page-contents-all .credit-card .credit{
    width: 70%;
  }
  .page-contents-all .question-list .link{
    width: 50%;
    font-size: 3.6vw;
  }
  .page-contents-all .question-list .sentence{
    font-size: 3.6vw;
  }
  .question-list .sentence.adjustment{
    padding-top: 4%;
    letter-spacing: 5px;
  }
}

/***************************************** スタッフ紹介 *****************************************/
.page-staff .page-contents-all {
  padding-top:0;
}
.page-staff .page-contents {
  max-width: 1065px;
}
.page-staff .contents-top p.img,
.page-staff .contents-top p.title{
  width: 14%;
  min-width: 150px;
}
.beauty-therapist{
  position: relative;
}
.beauty-therapist img{
  vertical-align: bottom;
}
.beauty-therapist .box{
  position: absolute;
  top: 8%;
  left: 0;
  right: 0;
  text-align: center;
}
.beauty-therapist .box .title{
  text-align: center;
  color: #634028;
  font-size: 150%;
  padding-bottom: 2%;
}
.beauty-therapist .box .sentence{
  font-size: 110%;
  letter-spacing: 3px;
  line-height: 160%;
  display: inline-block;
  text-align: left;
}
.doctor-profile{
  background-image:url("../img/staff/img-doctor-back.jpg");
	background-size:100%;
	background-repeat: no-repeat;
}
.doctor-profile .profile-title{
  text-align: center;
  color: #634028;
  font-size: 150%;
  padding-top: 5%;
  padding-bottom: 4%;
  letter-spacing: 10px;
}
.doctor-profile .greeting{
  padding-top: 2%;
  padding-bottom: 3%;
  padding-right: 5%;
  padding-left: 1%;
}
.doctor-profile .greeting .title{
  text-align: center;
  letter-spacing: 3px;
  font-size: 110%;
}
.doctor-profile .greeting .sentence{
  padding: 5% 0;
  letter-spacing: 2px;
  line-height: 200%;
}
.doctor-profile .greeting .name{
  width: 25%;
  margin-left: auto;
}
.doctor-profile .qualification .title,
.doctor-profile .employment-history .title{
  text-align: center;
  background-image:url("../img/staff/img-title-back.png");
	background-size:100%;
	background-repeat: no-repeat;
  background-position: center;
  font-size: 120%;
  padding: 4% 0;
  letter-spacing: 2px;
  color: #634028;
}
.doctor-profile .qualification .sentence,
.doctor-profile .employment-history .sentence{
  max-width: 930px;
  margin: 0 auto;
  line-height: 160%;
  letter-spacing: 1px;
}
@media screen and (min-width: 768px) {
  .page-staff .page-contents-all{
    padding-bottom: 10%;
  }
  .page-staff .question-list{
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .page-staff .contents-top p.img,
  .page-staff .contents-top p.title{
    width: 32%;
    min-width: unset;
  }
  .beauty-therapist .box {
    position: unset;
    width: 92%;
    margin: 0 auto;
  }
  .beauty-therapist .box .title {
    font-size: 4vw;
    padding-bottom: 0;
  }
  .beauty-therapist .box .sentence {
    font-size: 3.2vw;
  }
  .doctor-profile .profile-title {
    padding-top: 67%;
    font-size: 4vw;
  }
  .doctor-profile .greeting{
    padding-top: 0;
    padding-bottom: 2%;
    padding-right: 5%;
    padding-left: 5%;
  }
  .doctor-profile .greeting .title {
    font-size: 3.6vw;
  }
  .doctor-profile .greeting .sentence{
    font-size: 3.2vw;
    padding-top: 2%;
    padding-bottom: 0;
  }
  .doctor-profile .qualification .title,
  .doctor-profile .employment-history .title {
    background-size: 150%;
    font-size: 3.6vw;
  }
  .doctor-profile .qualification .sentence,
  .doctor-profile .employment-history .sentence {
    width: 92%;
    font-size: 3.2vw;
  }
}

/***************************************** 診察メニューから探す *****************************************/
.page-menu #content,
.page-menu .contents-top {
  background-color: #ffffff;
}
.page-menu .contents-top {
  position: relative;
}
.page-menu .contents-top p.img,
.page-menu .contents-top p.title{
  width: 15%;
  min-width: 160px;
}
.page-menu .contents-top .absolute-menu {
  position: absolute;
  bottom: 5%;
  right: 10%;
  width: 15%;
}
.page-menu .page-contents-all {
  background-color: #f8cad3;
  padding-top: 5%;
  padding-bottom: 0;
  margin-bottom: 5%;
}
.menu-contents{
  padding-bottom: 5%;
}
.menu-contents p{
  text-align: center;
  line-height: 160%;
}
.menu-contents p span{
  color: #ea5972;
}
.menu-contents .container-fluid > div > div{
  background-image: url("../img/menu/img-menu-back.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
  margin-top: 5%;
  margin-right: 2%;
  padding: 0;
}
.menu-contents .container-fluid > div > div a{
  color: #000000;
}
.menu-contents .container-fluid > div > div a:hover{
  color: #ea5972;
}
.menu-contents p.title{
  padding-bottom: 5%;
  font-size: 120%;
  font-weight: bold;
  letter-spacing: 2px;
}
.menu-contents p img{
  width: 85%;
}
.menu-contents p.sentence{
  text-align: left;
  padding-top: 3%;
  letter-spacing: 1px;
}
.page-menu .page-contents-all.adjustment {
  background-image: none;
  background-color: rgba(248, 202, 202, 0.5);
  padding-top: 5%;
  padding-bottom: 0;
}
.page-menu .page-contents-all.adjustment .menu-contents .menu-skin{
  font-size: 125%;
  color: #634028;
  background-image: url("../img/menu/img-wave.png");
  background-size: 16%;
  background-repeat: no-repeat;
  background-position: 51.5% bottom;
}
.page-menu .page-contents-all.adjustment .menu-contents .menu-skin a{
  color: #000000;
}
.page-menu .page-contents-all.adjustment .menu-contents .menu-skin a:hover{
  color: #ea5972;
}
.page-menu .page-contents-all.adjustment .menu-contents .container-fluid > div > div{
  background-image: url("../img/menu/img-menu-back2.jpg");
}
.page-menu .question-list {
  background-color: #ffffff;
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .menu-contents .container-fluid > div > div{
    width: 32%;
  }
  .menu-contents .container-fluid > div > div:nth-child(3n){
    margin-right: 0;
  }
  .menu-contents .container-fluid > div > div a{
    padding: 6.3% 15px;
    display: block;
  }
  .page-menu .question-list{
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .page-menu .contents-top p.img{
    width: 40%;
    min-width: unset;
  }
  .page-menu .contents-top p.title{
    width: 50%;
    min-width: unset;
  }
  .page-menu .contents-top .absolute-menu {
    position: static;
    width: 40%;
    padding-top: 4%;
  }
  .page-menu .page-contents-all {
    padding-top: 10%;
  }
  .page-menu .menu-contents {
    width: 92%;
    margin: 0 auto;
  }
  .page-menu .menu-contents p {
    font-size: 3.2vw;
  }
  .menu-contents .container-fluid > div > div{
    background-color: #ffffff;
    width: 49%;
    padding: 3%;
  }
  .menu-contents .container-fluid > div > div:nth-child(2n){
    margin-right: 0;
  }
  .page-menu .page-contents-all.adjustment {
    margin-bottom: 0;
  }
  .page-menu .page-contents-all.adjustment .menu-contents .menu-skin {
    font-size: 3.4vw;
    background-size: 27%;
    background-position: 53.5% bottom;
  }
  .page-contents-all.adjustment .menu-contents p.sentence {
    letter-spacing: normal;
  }
}

/***************************************** お悩みから探す *****************************************/
.page-worries .page-contents {
  max-width: none;
}
.page-worries .menu-contents {
  padding-bottom: 0;
}
.page-worries .menu-contents .menu-title{
  text-align: center;
  background-image:url("../img/worries/img-title-back.png");
	background-size:100%;
	background-repeat: no-repeat;
  background-position: center;
  font-size: 120%;
  padding: 4% 0;
  letter-spacing: 2px;
  color: #634028;
}
.page-worries .page-contents .box {
  max-width: 930px;
  margin: 0 auto;
  padding-bottom: 0;
}
.page-worries .page-contents .box ul {
  text-align: center;
}
.page-worries .page-contents .box li {
  display: inline-block;
  width: 21%;
  margin-right: 4%;
  margin-bottom: 4%;
}
.page-worries .page-contents .box li:nth-child(4n){
  margin-right: 0;
}
.page-worries .page-contents .box li a img {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-worries .page-contents .box li a:hover img {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}
@media screen and (max-width: 767px) {
  .page-worries .page-contents-all {
    margin-bottom: 0;
  }
  .page-worries .menu-contents .menu-title {
    background-size: 150%;
    font-size: 3.6vw;
  }
}
/**** モーダル用 *****/
#cboxLoadedContent .menu-list-box {
  width: 92%;
  margin: 0 auto;
  text-align: left;
}
#cboxLoadedContent h2 {
  text-align: center;
  font-size: 150%;
  letter-spacing: 5px;
  font-weight: bold;
  padding-top: 5%;
  margin-bottom: 7%;
}
#cboxLoadedContent .menu-details{
  margin-bottom: 7%;
  position: relative;
  overflow: hidden;
}
#cboxLoadedContent .menu-details ul.absolute{
  position: absolute;
  bottom: 26%;
  right: 0;
  width: 55%;
}
/******* シミ *******/
#cboxLoadedContent #inline_content01 .menu-details ul.absolute.adjustment{
  width: 80%;
  margin-left: auto;
  margin-right: 0px;
}
/******* しわ・たるみ *******/
#cboxLoadedContent #inline_content04 .menu-details ul.absolute.adjustment{
  position: static;
  overflow: hidden;
  margin-left: auto;
  margin-right: 0px;
}
/******* しわ・たるみ（たるみ） *******/
#cboxLoadedContent .menu-details.four ul.absolute{
  bottom: 5%;
}
#cboxLoadedContent .menu-details ul li{
  float: left;
  background-image:url("../img/worries/img-list-style.png");
	background-size:2.3rem;
	background-repeat: no-repeat;
  background-position: left;
  padding: 1rem 0;
  padding-left: 2.5rem;
  font-weight: bold;
  color: #634028;
}
#cboxLoadedContent .menu-details ul li:last-child{
  float: right;
}
#cboxLoadedContent .menu-details ul li a{
  color: #634028;
}
#cboxLoadedContent .menu-details ul li a:hover{
  color: #f19aa8;
  text-decoration: none;
}
#cboxLoadedContent .question-list .adjustment {
  font-size: 100%;
}
@media screen and (min-width: 768px) {
  #cboxLoadedContent .question-list {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #cboxLoadedContent h2 {
    font-size: 4vw;
  }
  #cboxLoadedContent .menu-details ul.absolute {
    font-size: 2.1vw;
    width: 65%;
  }
  /******* シミ *******/
  #cboxLoadedContent #inline_content01 .menu-details ul.absolute.adjustment{
    width: 100%;
  }
  #cboxLoadedContent .menu-details ul li {
    background-size: 0.8rem;
    padding: 0.3rem;
    padding-left: 1rem;
  }
  #cboxLoadedContent .question-list .adjustment {
    font-size: 3.2vw;
  }
  #cboxLoadedContent .question-list .link {
    width: 50%;
    font-size: 3.2vw;
  }
  #cboxLoadedContent .question-list .link a:hover{
    text-decoration: none;
  }
}

/***************************************** お悩みから探す（モーダル文字のみ用） *****************************************/
#cboxLoadedContent h3 {
  text-align: center;
  background-color: #f19aa8;
  padding: 1% 0;
  border-radius: 20px;
  margin-bottom: 1%;
  font-weight: bold;
}
#cboxLoadedContent .menu-list-box.adjustment .menu-details p{
  line-height: 160%;
  font-weight: bold;
}
#cboxLoadedContent .menu-list-box.adjustment .menu-details ul.absolute{
  position: static;
  width: 100%;
  text-align: right;
  margin-top: 3%;
}
#cboxLoadedContent .menu-list-box.adjustment .menu-details ul.absolute li {
  display: inline-block;
  float: none;
  margin-left: 4%;
}
#cboxLoadedContent .menu-list-box.adjustment .menu-details ul.absolute li:last-child {
  float: none;
}
@media screen and (max-width: 767px) {
  #cboxLoadedContent h3 {
    font-size: 3.4vw;
    padding: 2% 0;
  }
  #cboxLoadedContent .menu-list-box.adjustment .menu-details p,
  #cboxLoadedContent .menu-list-box.adjustment .menu-details ul.absolute{
    font-size: 3.2vw;
  }
  #cboxLoadedContent .menu-list-box.adjustment .menu-details ul.absolute li {
    margin-bottom: 3%;
    line-height: 120%;
    text-align: left;
  }
}

/***************************************** 料金一覧 *****************************************/
.page-price .contents-top {
  position: relative;
}
.page-price .contents-top p.img,
.page-price .contents-top p.title{
  width: 14%;
  min-width: 150px;
}
.page-price .contents-top .absolute-text {
  position: absolute;
  top: 40%;
  right: 10%;
  color: #ffffff;
}
.page-price .page-contents-all {
  padding-top:0;
  background-color: #ffffff;
}
.page-price .page-contents {
  background-color: rgba(176, 212, 218, 0.7);
  padding-top: 10%;
}
.price-box {
  padding-bottom: 6%;
}
.price-box .title{
  text-align: center;
  font-size: 150%;
  padding-bottom: 2%;
  color: #634028;
}
.price-box .title span{
  color: #ffffff;
}
.price-box table{
  width: 80%;
  margin: 0 auto;
  border-collapse: collapse; /* 隣り合うセルの線を結合 */
  border: 2px solid #4d4d4d;    /* 外側は青色の実線2px */
  background-color: #ffffff;
}
.price-box table th,
.price-box table td{
  width: 50%;
  border: 2px solid #4d4d4d;
  padding: 3% 0;
  padding-left: 5%;
  padding-right: 3%;
  color: #7bab34;
  font-weight: bold;
  line-height: 160%;
  vertical-align: middle;
}
.price-box table th{
  color: #634028;
  background-color: #e6e6e6;
  padding: 3% 1%;
}
.price-box.adjustment table th:first-child{
  padding-left: 5%;
  padding-right: 3%;
}
.price-box.adjustment table th,
.price-box.adjustment table td{
  width: 25%;
  text-align: center;
  padding: 3% 0;
}
.price-box.adjustment table th:first-child,
.price-box.adjustment table td:first-child,
.price-box.adjustment table td:nth-child(4n){
  width: 50%;
}
.price-box.adjustment table td:first-child,
.price-box.adjustment table td:nth-child(4n){
  text-align: left;
  padding-left: 5%;
  padding-right: 3%;
}
.price-box .caution{
  width: 80%;
  margin: 0 auto;
  text-align: right;
  font-size: 80%;
  padding-top: 1%;
}
.page-price .page-contents.adjustment {
    background-color: rgba(123, 171, 52, 0.5);
    padding-top: 5%;
    margin-top: 5%;
}
.page-price .page-contents.adjustment .caution{
  width: 80%;
  margin: 0 auto;
  text-align: center;
  font-size: 125%;
  color: #634028;
  background-image: url("../img/price/img-wave.png");
  background-size: 19%;
  background-repeat: no-repeat;
  background-position: 50.5% bottom;
  padding-bottom: 0.8%;
  margin-bottom: 5%;
}
.page-price .page-contents.adjustment .caution a{
  color: #000000;
}
.page-price .page-contents.adjustment .caution a:hover{
  color: #ea5972;
}
@media screen and (min-width: 768px) {
  .page-price .question-list{
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .page-price .contents-top p.img,
  .page-price .contents-top p.title{
    width: 32%;
    min-width: unset;
  }
  .page-price .contents-top .absolute-text {
    position: static;
    font-size: 3.2vw;
    padding-top: 2%;
  }
  .page-price .page-contents-all {
    padding-bottom: 0;
  }
  .price-box .title {
    font-size: 4.2vw;
  }
  .price-box table {
    width: 92%;
  }
  .price-box table th,
  .price-box table td {
    font-size: 3.2vw;
  }
  .price-box .caution {
    width: 92%;
    font-size: 2.4vw;
  }
  .page-price .page-contents.adjustment .caution{
    font-size: 3.4vw;
    background-size: 30%;
  }
}

/***************************************** アクセス *****************************************/
.page-access .contents-top p.img,
.page-access .contents-top p.title{
  width: 20%;
  min-width: 200px;
}
.page-access .page-contents-all {
  background-color: #ffffff;
}
.page-access .page-contents .title{
  text-align: center;
  font-size: 130%;
  color: #634028;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 5%;
}
.page-access .page-contents .map-img{
  width: 70%;
  margin: 0 auto;
}
.page-access .link {
  width: 50%;
  margin: 0 auto;
  text-align: center;
  margin-top: 5%;
}
.page-access .link a {
  display: block;
  color: #000000;
  padding: 3% 0;
  background-color: #f19db5;
  border-radius: 20px;
  font-weight: bold;
  letter-spacing: 2px;
}
.page-access .link a:hover {
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .page-access .contents-top p.img,
  .page-access .contents-top p.title{
    width: 40%;
    min-width: unset;
  }
  .page-access .page-contents{
    width: 92%;
  }
  .page-access .page-contents .title{
    font-size: 4vw;
    margin-bottom: 0;
  }
  .page-access .page-contents .map-img{
    width: 80%;
    padding-top: 5%;
  }
  .page-access .link {
    width: 60%;
  }
  .page-access .link a {
    font-size: 3.2vw;
  }
}

/***************************************** キャンペーン *****************************************/
.page-campaign .page-contents-all {
  background-color: #ffffff;
  padding: 0;
}
.page-campaign .page-contents {
  max-width: none;
}
.page-campaign .page-contents .img {
  vertical-align: bottom;
}
.page-campaign .question-list {
  padding-top: 0;
}

/***************************************** よくある質問 *****************************************/
.page-question .contents-top p.img,
.page-question .contents-top p.title{
  width: 15%;
  min-width: 150px;
}
.page-question .page-contents-all {
  background-color: #ffffff;
  padding-top: 5%;
}
.page-question .page-contents .title{
  text-align: center;
}
.question-con{
  padding-top: 0;
}
.question-category{
  padding-top: 3%;
}
.question-category .category-title{
  border-left: 2px solid #634028;
  border-bottom: 2px solid #634028;
  font-size: 130%;
  padding: 1%;
  font-weight: bold;
  margin-bottom: 2%;
  color: #f19db5;
}
@media screen and (min-width: 768px) {
  .page-question .question-list{
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .page-question .contents-top p.img,
  .page-question .contents-top p.title{
    width: 33%;
    min-width: unset;
  }
  .page-question .page-contents-all {
    padding-bottom: 0;
  }
  .page-question .page-contents{
    width: 92%;
  }
  .page-question .page-contents .title{
    font-size: 3.2vw;
  }
  .page-question .question-list {
    padding-top: 0;
  }
}
/* アコーディオン */
.category-con{
  padding: 0 1%;
  margin-bottom: 2%;
}
.category-con label{
  position: relative;
  display: block;
  cursor: pointer;
  padding: 1% 0px;
  padding-left: 2%;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
}
.category-con label:hover{
  background-color: #f19db5;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.category-con input{
  display: none;
}
.category-con div{
  overflow: hidden;
  height: 0px;
  position: relative;
}
.category-con .answer{
  padding: 1%;
  padding-bottom: 4%;
  line-height: 160%;
}
.category-con .answer a:hover{
  color: #f19db5;
}
/* 高さの定義 */
.category-con input:checked ~ div.ac-small{
  height: auto;
}
.category-con input:checked ~ div.ac-medium{
  height: 200px;
}
.category-con input:checked ~ div.ac-large{
  height: 300px;
}
@media screen and (max-width: 767px) {
  .question-con .sentence,
  .category-con label,
  .category-con .answer{
    font-size: 2.6vw;
  }
  .question-category .category-title{
    font-size: 3vw;
  }
  .question-con .question-top{
    top: -22%;
  }
}

/***************************************** 取り扱い化粧品 *****************************************/
.page-product .contents-top p.img,
.page-product .contents-top p.title{
  width: 26%;
  min-width: 260px;
}
.page-product .page-contents-all {
  background-color: #ffffff;
}
.page-product .page-contents {
  max-width: 1065px;
}
.page-product .box {
  position: relative;
  padding-bottom: 0;
}
.page-product .box .absolute {
  width: 33%;
  position: absolute;
  top: 10%;
  right: 2%;
}
.page-product .box .title {
  font-size: 140%;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5%;
}
.page-product .box .title span {
  font-size: 80%;
}
.page-product .box .sentence {
  line-height: 160%;
  letter-spacing: 2px;
}
.page-product .box .link {
  color: #634028;
  position: absolute;
  bottom: 10%;
  right: 2%;
  background-image:url("../img/product/img-link-style.png");
	background-size:17%;
	background-repeat: no-repeat;
  background-position: left;
  padding: 2% 0;
  padding-left: 3rem;
  font-size: 130%;
  letter-spacing: 2px;
}
.page-product .box .link a {
  color: #634028;
}
.page-product .box .link a:hover {
  text-decoration: underline;
}
.page-product .caution {
  color: #ea5972;
  font-weight: bold;
  border: 2px solid #ea5972;
  text-align: center;
  padding: 1% 0;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 1344px) {
  .page-product .box .title {
    font-size: 1.5vw;
  }
  .page-product .box .link {
    font-size: 1.65vw;
  }
}
@media screen and (min-width: 768px) {
  .page-product .box .img {
    width: 64%;
  }
  .page-product .question-list{
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .page-product .contents-top p.img,
  .page-product .contents-top p.title{
    width: 40%;
    min-width: unset;
  }
  .page-product .page-contents-all {
    padding-bottom: 0;
  }
  .page-product .box .absolute {
    width: 92%;
    margin: 0 auto;
    position: static;
  }
  .page-product .box .title {
    font-size: 5vw;
    margin-bottom: 1%;
  }
  .page-product .box .link {
    position: static;
    font-size: 4vw;
    width: 55%;
    margin-top: 3%;
    margin-left: auto;
    margin-right: 0;
    padding-left: 9%;
    background-size: 13%;
  }
  .page-product .caution {
    font-size: 3.2vw;
    line-height: 140%;
    margin-top: 3%;
  }
}

/***************************************** 治療メニュー（個別） *****************************************/
.page-menu-individual .page-contents-all {
  background-color: #ffffff;
  padding-top: 0;
  padding-bottom: 0;
}
.page-menu-individual .individual-box{
  padding: 5% 0;
}
.page-menu-individual .menu-title{
  text-align: center;
  font-size: 150%;
  padding-bottom: 2%;
  color: #634028;
  margin-bottom: 2%
}
.page-menu-individual .menu-title span{
  color: #b0d4da;
}
.page-menu-individual .menu-img{
  width: 60%;
  margin: 0 auto;
  margin-bottom: 2%
}
.page-menu-individual .menu-sentence{
  text-align: center;
  line-height: 160%;
  letter-spacing: 2px
}
.page-menu-individual .menu-sentence span{
  color: #ea5972;
}
.page-menu-individual .box{
  margin-top: 3%;
  background-color: #b0d4da;
  padding: 5% 10%;
}
.page-menu-individual .box h3 {
  border-bottom: none;
  padding-bottom: 1%;
  font-weight: bold;
  font-size: 130%;
  text-align: center;
  color: #634028;
  margin-bottom: 2%;
  letter-spacing: 2px;
}
.page-menu-individual .box ul {
  padding-top: 1%;
  padding-bottom: 8%;
  overflow: hidden;
  text-align: center;
}
.page-menu-individual .box ul li {
  display: inline-block;
  padding-right: 6%;
  padding-bottom: 2%;
  font-weight: bold;
}
.page-menu-individual .box ul li:last-child {
  padding-right: 0;
}
.page-menu-individual .box table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid #4d4d4d;
  background-color: #ffffff;
}
.page-menu-individual .box table td {
  width: 50%;
  border: 2px solid #4d4d4d;
  padding: 3% 0;
  padding-left: 5%;
  padding-right: 3%;
  color: #f19db5;
  font-weight: bold;
  line-height: 160%;
  vertical-align: middle;
}
.page-menu-individual .box p.caution {
  padding-bottom: 0;
  text-align: right;
  color: #4d4d4d;
  line-height: 160%;
}
.page-menu-individual .question-list {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .page-menu-individual .question-list{
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .page-menu-individual .menu-title{
    font-size: 3.9vw;
  }
  .page-menu-individual .menu-sentence{
    font-size: 3.2vw;
    width: 92%;
    margin: 0 auto;
  }
  .page-menu-individual .box {
    padding: 5% 0;
  }
  .page-menu-individual .box h3 {
    font-size: 4.2vw;
  }
  .page-menu-individual .box ul,
  .page-menu-individual .box p,
  .page-menu-individual .box table {
    width: 92%;
    margin: 0 auto;
  }
  .page-menu-individual .box ul li,
  .page-menu-individual .box table td {
    font-size: 3.2vw;
  }
  .page-menu-individual .box p.caution {
    font-size: 2.8vw;
  }
}

/***************************************** 治療メニュー（医療レーザー脱毛） *****************************************/
.page-menu-individual .box table {
  margin-top: 5%;
}
.page-menu-individual .box table.adjustment2 {
  margin-top: 0;
}
.page-menu-individual .box table.adjustment th {
  background-color: #e6e6e6;
  border: 2px solid #4d4d4d;
  padding: 3% 0;
  font-weight: bold;
  line-height: 160%;
  vertical-align: middle;
}
.page-menu-individual .box table.adjustment td:first-child,
.page-menu-individual .box table.adjustment td:nth-child(4n) {
  text-align: left;
  padding-left: 5%;
  padding-right: 3%;
}
.page-menu-individual .box table.adjustment th:first-child,
.page-menu-individual .box table.adjustment td:first-child,
.page-menu-individual .box table.adjustment td:nth-child(4n) {
  width: 50%;
}
.page-menu-individual .box table.adjustment th,
.page-menu-individual .box table.adjustment td {
  width: 25%;
  text-align: center;
  padding: 3% 0;
}
@media screen and (max-width: 767px) {
  .page-menu-individual .box table.adjustment th {
    font-size: 3.2vw;
  }
}



/*****************************************************************************
****************** パソコン時非表示 *******************************************
*****************************************************************************/
.clear-pc{
  display: none;
}
@media screen and (max-width: 767px) {
  .clear-pc{
  	display: block;
  }
}

/*****************************************************************************
****************** スマホ時非表示 *********************************************
*****************************************************************************/
@media screen and (max-width: 767px) {
  .clear{
  	display: none;
  }
}

/*****************************************************************************
****************** bootstrap調整 *********************************************
*****************************************************************************/
ul{
	margin-bottom:0;
}

/*****************************************************************************
****************** slick調整 *************************************************
*****************************************************************************/

/* 読み込み時に画像が縦並びで一瞬表示されるのを防ぐ */
.top-slider{
  display: none;
}
.top-slider.slick-initialized{
  display: block; /*slick-initializedが付与されたら表示*/
}
/* 読み込み時に画像が縦並びで一瞬表示されるのを防ぐ end */

.slick-dotted.slick-slider{
  margin: auto;
  margin-bottom: 10%;
  max-width: 1065px;
}
.slick-dots{
  bottom: -20%;
  background-color: #efe9e3;
  padding: 1% 0;
}
.slick-dots li{
  width: 30%;
}
.slick-dots li img{
  width: 80%;
  opacity: 0.5;
}
.slick-dots li:hover img,
.slick-dots li.slick-active img{
	opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha(opacity=100)";
}
.slick-dots li.slick-active button::before {
    color: #bed54e;
}
.slick-dots li button::before{
  font-size: 10px;
}

/***** アロー部分修正 *****/
.slick-prev::before,
.slick-next::before {
  content: none;
}
.slick-prev, .slick-next{
  width: 25px;
  height: 34px;
  top: 45%;
}
.slick-prev{
  left: 4%;
}
.slick-next{
  right: 4%;
}
.slick-arrow:hover{
  opacity: 0.5;
	filter: alpha(opacity=50);
	-ms-filter: "alpha(opacity=50)";
}
.slick-arrow:active{
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .slick-prev, .slick-next{
    width: 5%;
    height: auto;
  }
}

/*****************************************************************************
****************** drawer調整 ************************************************
*****************************************************************************/
.drawer--right .drawer-hamburger{
  z-index: 20;
}
.drawer--right .drawer-nav {
  right: -100%;
}
@media screen and (min-width: 768px) {
  .drawer-hamburger {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .drawer-nav{
    z-index: 10;
    width: 100%;
  }
  .drawer-nav ul li{
    text-align: center;
    width: 100%;
    display: inline-block;
    border-bottom: 1px solid #ce4948;
  }
  .drawer-nav ul li a{
    padding: 10px 0;
    display: block;
    color: #ce4948;
  }
  .drawer-nav ul li img{
    width: 30%;
  }
  .drawer--right.drawer-open .drawer-hamburger {
    right: 0;
    z-index: 25;
    border-radius: 0;
  }
  button:hover{
    background-image: unset;
  }
  .drawer--right.drawer-open .drawer-nav{
    padding-top: 200px;
  }
}
