@charset "UTF-8";
/* ===================================
共通
=================================== */
.menu_h2{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.menu_h2 span{
  font-size: 14px;
  display: block;
  text-align: center;
  margin-top: 5px;
}

/* ===================================
archive
=================================== */
.inner{
  padding: 0 20px;
}
/* タブ */
.tab {
  max-width: 1160px;
  width: 100%;
  margin: 60px auto 100px;
}
/* タブメニュー */
.tab__menu {
  display: flex;
  align-items: flex-end; /* メニューを下揃え&高さを調整 */
  min-height: 68px; /* メニュー切替時にタブがズレないように */
  padding: 0;
  margin: 0;
}
.tab__menu-item {
  width: 160px;
  height: 55px;
  font-size: 14px;
  list-style: none;
  padding: 17px 66px 17px 0;
  text-align: center;
  color: #fff;
  background-color: #C5BCB7;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  cursor: pointer;
  transition: 0.3s; 
}
.tab__menu-item:hover {
  opacity: 0.7;
}
.tab__menu-item:last-of-type {
  margin-right: 0px;
  width: 160px;
  height: 55px;
}
.tab__menu-item:last-of-type:hover{
  opacity: 0.7;
}

/* is-activeがついている時のスタイル */
.tab__menu-item.is-active:last-of-type {
  width: 160px;
  height: 55px;
  color: #484242;
}
.tab__menu-item.is-active {
  width: 160px;
  height: 55px;
  color: #484242;
  background-color: #F4F1EF;
  padding: 17px 66px 17px 0;
}
/* タブ中身 */
.tab__panel {
  width: 100%;
 }
 .tab__panel-box {
   padding: 10px 30px;
   border-radius: 0 0 5px 5px;
   border: 3px solid #F4F1EF;
 }
 .tab__panel-box001 {
   background-color: #F4F1EF;
   display: none;
 }
 .tab__panel-box002 {
   background-color: #F4F1EF;
   display: none;
 }
 /* is-showがついている時のスタイル */
 .tab__panel-box.is-show {
   display: block;
   padding: 38px 7px 0px 58px;
   border-radius: 0 12px 12px 12px;
 }

 /* 内容 */
 .menu h3{
  font-size: 50px;
  width: 22.5%;
 }
 .pickup_box{
    display: flex;
 }
 .other_box{
    display: flex;
    margin: 10px 0 60px;
 }
 .pickup_list {
  width: 77%;
  padding-top: 37px;
}
.double_item{
  margin-bottom: 6px;
}
_::-webkit-full-page-media, _:future, :root .double_item {
	margin-bottom: 50px;
}
.small-face_item {
  margin-bottom: 3px;
}
 .double_item ul,.small-face_item ul{
  display: flex;
  flex-wrap: wrap;
 }
 .double_item ul li,.small-face_item ul li{
  font-size: 14px;
  position: relative;
  width: 30%;
  border-bottom: 1px solid #C9C7C7;
  margin-bottom: 22px;
  margin-right: 22px;
 }
 .double_item ul li a::before,.small-face_item ul li a::before{
  content: "";
  background-image: url(../img/arrow_black.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  display: block;
  width: 13px;
  height: 13px;
  top: 8px;
  right: 10px;
  transition: 0.3s;
 }
 .double_item ul li a:hover::before,.small-face_item ul li a:hover::before{
  transform: translateX(10px);
  transition: 0.3s;
 }

 .pick_ttl_link{
  position: relative;
 }
 .pick_ttl_link::before{
  content: "";
  background-image: url(../img/arrow_black.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  display: block;
  width: 13px;
  height: 13px;
  top: 8px;
  right: -25px;
  transition: 0.3s;
 }
 .pick_ttl_link:hover::before{
  transform: translateX(10px);
  transition: 0.3s;
 }
 .relative {
  padding-bottom: 30px;
 }

 .double_item a,.small-face_item a{
  display: block;
  padding: 0 0 10px 10px;
 }
 .pickup_list h4{
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  margin-left: 55px;
  margin-bottom: 28px;
  border-bottom: 1px solid;
 }
 .double_ttl::before{
  content: "";
  background-image: url(../img/ico_double.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  display: block;
  width: 50px;
  height: 50px;
  top: -8px;
  left: -63px;
 }
 .small-face_ttl::before{
  content: "";
  background-image: url(../img/ico_face.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  display: block;
  width: 50px;
  height: 50px;
  top: -8px;
  left: -63px;
 }


.other_menu_item{
  display: flex;
  align-items: center;
  margin-bottom: 7px;
}
.other_menu_item ul{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.other_menu_item ul li{
  font-size: 14px;
  margin-right: 40px;
}
.other_menu_item ul li a{
  text-decoration: underline;
}
.other_menu_item h4{
  font-size: 14px;
  font-weight: 700;
  width: 110px;
  flex-shrink: 0;
}
.other_list{
  padding-top: 35px;
  padding-bottom: 0px;
}

/* 美容皮膚科タブ */
.menu_item_02{
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.menu_item_02 h4{
  font-size: 14px;
  font-weight: 700;
  width: 110px;
  flex-shrink: 0;
}
.menu_item_02 ul{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.menu_item_02 ul li {
  font-size: 14px;
  margin-right: 40px;
}
.menu_item_02 ul li a {
  text-decoration: underline;
}


@media screen and (max-width: 1165px) {
  .double_item ul li,.small-face_item ul li{
    font-size: 14px;
    position: relative;
    width: 42%;
    border-bottom: 1px solid #C9C7C7;
    padding-bottom: 10px;
    padding-left: 10px;
    margin-bottom: 22px;
    margin-right: 22px;
   }
   .pickup_box{
     display: block;
   }
   .pickup_list {
      width: 100%;
      padding-top: 27px;
    }
    .pickup{
      width: 100% !important;
   } 
}

@media screen and (max-width: 1024px) {
.other_box{
  display: block;
}
}

@media screen and (max-width: 768px) {
  .ttl_h1{
    width: 110px !important;
  }
 .menu h3{
    font-size: 30px;
 }
  .other_box{
    display: block;
 }
 .other_menu_item{
  display: block;
  margin-bottom: 20px;
}
.double_item a,.small-face_item a{
  display: block;
  padding: 0 30px 13px 10px;
 }
 .tab__menu-item.is-active {
  width: 120px;
  height: 42px;
  padding: 11px 3px 17px 0;
}
.tab__menu-item:last-of-type {
  margin-right: 0px;
  width: 120px;
  height: 42px;
}
.tab__menu-item {
  width: 120px;
  height: 42px;
  font-size: 14px;
  padding: 11px 3px 17px 0;
}
.tab__menu-item.is-active:last-of-type {
  width: 120px;
  height: 42px;
}
.pickup_list h4{
  font-size: 14px;
  margin-left: 52px;
  margin-bottom: 24px;
}
.tab__panel-box.is-show {
  padding: 18px 3px 56px 20px;
}
.tab {
  margin: -13px auto 50px;
}
.double_item ul li,.small-face_item ul li{ 
  font-size: 12px;
  width: 46%;
  padding-bottom: 0px;
  padding-left: 0px;
  margin-bottom: 13px;
  margin-right: 13px;
}
.double_ttl::before{
  width: 45px;
  height: 45px;
  left: -52px;
 }
 .small-face_ttl::before{
  width: 45px;
  height: 45px;
  left: -52px;
 }
 .other_list{
  padding-top: 0px;
  padding-bottom: 0px;
}
.other_menu_item ul li{
  font-size: 12px;
  margin-right: 20px;
}
.menu_item_02{
  display: block;
  margin-bottom: 20px;
}
}
@media screen and (max-width: 393px) {
  .double_item ul li,.small-face_item ul li{ 
    width: 100%;
  }
}


/* ===================================
single
=================================== */
.menu_flex{
  display: flex;
  max-width: 1200px;
  margin: 80px auto 100px;
  padding: 0 20px;
}
.menu_left{
  width: 33%;
}
.menu_left p{
  font-size: 12px;
  color: #DFA3A3;
  margin-top: -10px;
}
.menu_left h1{
  font-size: 24px;
  font-weight: 700;
  margin: -8px 0 17px;
}

.menu_right{
  width: 80%;
}
.menu_right .dl01{
 display: flex;
 flex-wrap: wrap; 
}
.menu_right .dl01 dt{
  font-size: 16px;
  font-weight: 700;
  width: 20%;
}
.menu_right .dl01 dd{
  font-size: 14px;
  width: 80%;
  line-height: 1.6;
}

.overview_txt p{
  font-size: 14px;
  line-height: 1.6;
}
.overview_txt p img{
  display: inline-block;
  margin: 20px 20px 0 0;
}
.overview_txt h3{
  font-size: 16px;
  color: #DFA3A3;
  margin-top: 5px;
  margin-bottom: 10px;
  font-weight: 700;
}
.overview_txt h4{
  font-size: 14px;
  margin-top: 30px;
  margin-bottom: 7px;
  font-weight: 700;
  position: relative;
  text-indent: 1.2em;
}
.overview_txt h4::before{
  content: "";
  position: absolute;
  left: 0.1em;
  top: 50%;
  transform: translate(0px, -50%);
  width: 5px;
  height: 65%;
  background: #484242;
}
.overview_txt h4:first-child{
  margin-top: 5px;
}
.overview_txt ul{
  margin: 20px 0 10px;
}
.overview_txt li{
  position: relative;
  text-indent: 0em;
  margin-left: 1em;
  margin-bottom: 10px;
  line-height: 1.8;
}
.overview_txt li::before{
  width: 6px;
  height: 6px;
  display: block;
  position: absolute;
  left: -1em;
  top: 0.7em;
  content: "";
  background: #DFA3A3;
  border-radius: 50%;
}
.m-case-list{
  display: flex;
  flex-wrap: wrap;
}
.m-case-list li{
  width: 30%;
  margin-right: 5%;
  margin-bottom: 20px;
}
.m-case-list li:nth-of-type(3n){
  margin-right: 0;
}
.m-price dt{
  font-size: 14px !important;
  font-weight: 400 !important;
}
.m-after-surgery{
  margin-top: 30px;  
}
.after-surgery_txt{
  margin-top: 30px;  
}
.m-risk{
  margin-top: 60px;
}
.risk_txt{
  margin-top: 60px;
}
.m-free{
  margin-top: 55px;
}
.free_txt{
  margin-top: 55px;
}
.m-case{
  margin-top: 55px;
}
.case_img{
  margin-top: 55px;
}
dt.m-price {
  margin-top: 45px;
}

/* 料金表 */
.c-textarea_box{
  border-radius: 6px;
  background-color: #F4F1EF;
}
.c-textarea {
  margin-bottom: 53px;
}
.c-textarea h2{
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: -60px;
  padding-top: 60px;
}
.price-table-box{
  padding: 6px 22px 16px 35px; 
}
.price-table-box:first-of-type{
  padding: 16px 22px 16px 35px; 
} 
.price-table-line{
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #C5BCB7;
  padding-bottom: 8px;
}
.price-table-box:last-of-type .price-table-line{
  border-bottom: none;
}

h3.c-ttl {
  font-size: 20px;
  font-weight: 700;
  margin: 45px 0 20px;
}
.m-price{
  display: flex;
  flex-wrap: wrap;
  width: 190px;
}
.m-price01{
  font-size: 14px;
  font-weight: 700;
}
.m-price02{
  font-size: 14px;
  width: 50% !important;
  margin-bottom: 7px;
}
.m-price03{
  font-size: 14px;
  width: 50% !important;
  text-align: end;
}
.m-note{
  font-size: 12px;
  margin-top: 5px;
}


.p-icon{
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: -22px;
  margin-right: 5px;
  transform: translateY(2px);
}

@media screen and (max-width: 1300px) {
.menu_left{
  margin-left: 80px;
}
}
@media screen and (max-width: 768px) {
  .menu_h2{
    width: 110px;
  }
  .menu_h2 span{
    font-size: 12px;
  }
  .menu_flex{
    display: block;
    margin: 50px auto 50px;
  }
  .menu_left{
    width: 100%;
    margin-bottom: 30px;
  }
  .menu_left h1{
    margin: 0px 0 8px;
  }
  
  .menu_left h2{
    font-size: 20px;
  }

  .menu_right{
    width: 100%;
  }
  .menu_right .dl01{
   display: block;
  }
  .menu_right .dl01 dt{
    font-size: 16px;
    width: 100%;
    margin-bottom: 15px;
  }
  .menu_right .dl01 dd{
    font-size: 14px;
    width: 100%;
  }

  .overview_txt p{
    font-size: 14px;
  }
  .overview_txt h4{
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 5px;
  }
  .overview_txt ul{
    margin: 10px 0 7px;
  }
  .overview_txt li{
    margin-left: 1.1em;
  }
  .m-case-list{
    display: block;
  }
  .m-case-list li{
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .m-after-surgery{
    margin-top: 30px;  
  }
  .after-surgery_txt{
    margin-top: 0px;  
  }
  .m-risk{
    margin-top: 30px;
  }
  .risk_txt{
    margin-top: 0px;
  }
  .m-free{
    margin-top: 30px;
  }
  .free_txt{
    margin-top: 0px;
  }
  .m-case{
    margin-top: 30px;
  }
  .case_img{
    margin-top: 0px;
  }
  .m-price {
    margin-top: 30px;
  }
  .menu_left{
    margin-left: 0px;
  }
  

  /* 料金表 */
.c-textarea_box{
  margin-top: 0px;
}
.c-textarea_box:nth-of-type(n+2) {
  margin-top: 30px;
}
.c-textarea {
  margin-bottom: 53px;
}
.price-table-line{
  display: block;
}

h3.c-ttl {
  font-size: 18px;
  margin: 25px 0 15px;
}
.m-price{
  display: flex;
  width: 100%;
}
.m-price01{
  font-size: 14px;
}
.m-price02{
  font-size: 14px;
  width: 50% !important;
}
.m-price03{
  font-size: 14px;
  width: 50% !important;
}
.m-case-list li img{
  margin: 0 auto;
}
}


/* ===================================
eye
=================================== */
.eye_inner,.face_inner{
  max-width: 1200px;
  margin: 75px auto 100px;
  padding: 0 20px;
}
.eye_inner dl,.face_inner dl{
  display: flex;
  flex-wrap: wrap;
  line-height: 1.6;
}
.eye_inner dt,.face_inner dt{
  width: 43%;
  font-size: 24px;
  font-weight: 700;
}
.eye_inner dd,.face_inner dd{
  width: 57%;
  font-size: 14px;
  margin-bottom: 80px;
}
.eye_menu, .face_menu{
  background-color: #F4F1EF;
  border-radius: 12px;
  padding: 40px 100px 20px;
  margin: 10px 0 0;  
}
.eye_menu h2,.face_menu h2{
  text-align: center;
  font-size: 50px;
  font-weight: 300;
  margin-bottom: 33px;
}
.eye_menu .double_item ul li,.face_menu .double_item ul li{
  width: 29%;
  margin-right: 6%;
}
.eye_menu .double_item ul li:nth-child(3n),.face_menu .double_item ul li:nth-child(3n){
  margin-right: 0;
}

/* インタビューボタン */
.int_btn{
  display: inline-block;
  font-size: 12px;
  position: relative;
  border: 1px solid #C5BCB7;
  border-radius: 30px;
  padding: 8px 50px 8px 35px;
  margin-top: 18px;
}
.int_btn::before{
  content: "";
  background-image: url(../img/ico_blank.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
}

@media screen and (max-width: 768px) {
  .ttl_h1_eye img{
    width: 65px !important;
    margin: 0 auto;
  }
  .ttl_h1_face img{
    width: 85px !important;
    margin: 0 auto;
  }
  .eye_inner,.face_inner{
    margin: 40px auto 50px;
  }
  .eye_menu h2,.face_menu h2{
    font-size: 35px;
    margin-bottom: 10px;
  }
  .eye_inner dl,.face_inner dl{
    display: block;
  }
  .eye_inner dt,.face_inner dt{
    width: 100%;
    font-size: 20px;
    margin-bottom: 10px;
  }
  .eye_inner dd,.face_inner dd{
    width: 100%;
    margin-bottom: 50px;
  }
  .eye_menu,.face_menu{
    padding: 20px;
    margin: 10px 0 0;  
  }
  
}
@media screen and (max-width: 600px) {
  .eye_menu .double_item ul li,.face_menu .double_item ul li{
    width: 45%;
    margin-right: 6%;
  }
  .eye_menu .double_item ul li:nth-child(3n),.face_menu .double_item ul li:nth-child(3n){
    margin-right: 6%;
  }
  .eye_menu .double_item ul li:nth-child(2n),.face_menu .double_item ul li:nth-child(2n){
    margin-right: 0 !important;
  }
}

/* ===================================
face
=================================== */
.face_caseImg {
  width: 100%;
  margin-top: 25px;
}
.face_caseImg.max-w {
  max-width: 415px;
}