/* Josh's Custom CSS Reset --- more customized */
*,*::before,*::after{box-sizing:border-box}*{margin:0;padding:0}html,body{height:100%}body{line-height:1.0;-webkit-font-smoothing:antialiased}img,picture,video,canvas,svg{display:inline-block;max-width:100%}input,button,textarea,select{font:inherit}p,h1,h2,h3,h4,h5,h6{overflow-wrap:break-word;font-size:100%}#root,#__next{isolation:isolate}

/* Basic settings */
br {letter-spacing:0;}
ul, li {list-style:none;}
img, a img {border:0; text-decoration:none;}
mark {background:#ff0; color:#000;}
b, strong {font-weight:bold;}
table {border-collapse:collapse; border-spacing:0;}

/* Base Set */
html {
-ms-text-size-adjust:100%;
-webkit-text-size-adjust:100%;
font-size: 62.5%;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Noto Sans JP", Arial, sans-serif;
font-size: 1.6rem;
line-height: 1.0;
letter-spacing: .1rem;
}
a {
background-color:transparent;
outline:0;
text-decoration:none;
transition: all .5s;
}
a:link    {color:#645a46;}
a:visited {color:#645a46;}
a:hover   {color:#ccc;}
a:active  {color:#ccc;}

@media screen and (min-width:600px){
  a[href^="tel:"] {
    pointer-events: none;
  }
}

:root{
  --fwn: 400;
  --fwm: 600;
  --fwb: 700;
  --ffen: "Arsenal", sans-serif;
  --wd-a: 1368px;
  --wd-b: 1216px;
  --bgc: #f7fafa;
}

/* -------------------------------------------------------
Layout
---------------------------------------------------------- */
html,
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #f7fafa;
  color: #645a46;
}
.footer {
  margin-top: auto;
}

h1, h2, h3, h4 {
  font-weight: normal;
}
.list_disc li {
  list-style: disc;
}

.mgt1{
  margin-top: 1em;
}
.mgt2{
  margin-top: 2em;
}

a.btn_c {
  position: relative;
  display: inline-block;
  width: 400px;
  height: 64px;
  border: 1px solid #c7c4be;
  font-size: 15px;
  letter-spacing: .1em;
  line-height: 64px;
  text-align: center;
}
a.btn_c::before,
a.btn_c::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.arrow::before {
  right: 32px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #948e80;
  border-right: 1px solid #948e80;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media (max-width: 767px){
  .pc, .tab, .tabpc{display: none;}
}
@media (min-width: 768px) and (max-width: 1023px){
  .sp, .pc{display: none;}
  .sp_footer_btn{display: none;}
}
@media (min-width: 1024px){
  .sp, .mob, .tab{display: none;}
  .sp_menu_title{display: none;}
  .sp_footer_btn{display: none;}
}

/* ---------------------------------
** header
--------------------------------- */
.header_inner{
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: var(--wd-a);
  margin: 32px auto;
}
.header_inner .logo{
  width: 232px;
  text-align: center;
}
.header_inner .logo img{
  width: auto;
  height: 138px;
}
@media screen and (max-width: 1023px){
  .header_inner .logo{
    display: flex;
    align-items: center;
    width: 100%;
    height: 60px;
    padding-left: 16px;
  }
  .header_inner .logo img{
    width: auto;
    height: 40px;
  }
}
.header_inner .nav_wrap{
  display: flex;
  flex-direction: column;
}
.nav_wrap .head_tel{
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.nav_wrap .head_tel .tel_num{
  padding-bottom: 2px;
  font-size: 30px;
  font-family: var(--ffen);
  letter-spacing: .1em;
  text-align: right;
}
.nav_wrap .head_tel .tel_num span{
  font-size: 16px;
}
.nav_wrap .head_tel .sns_icon{
  margin-left: 32px;
}
.nav_wrap .head_tel .sns_icon img{
  width: auto;
  height: 28px;
}

.nav{
  margin-top: 32px;
}
.nav ul{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  letter-spacing: .1em;
}
.nav ul li + li{
  margin-left: 50px;
}
.nav ul li a{
  font-weight: var(--fwb);
}
.nav ul li a span{
  display: inline-block;
  margin-right: 10px;
  color: #b1aca2;
  font-size: 14px;
}
.nav li.reserve_btn a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 68px;
  background-color: #e6beb0;
  color: #fff;
}
.nav li.reserve_btn a:hover{
  background-color: #b1aca2;
}
@media screen and (min-width: 1024px){
  .navbar{
    display: none;
  }
  .sidemenu{
    display: none;
  }
}
@media screen and (max-width: 1023px){
  .header_inner{
    align-items: center;
    width: 100%;
    height: 60px;
    margin: 0;
  }
  .header_inner .nav_wrap{
    display: block;
  }
  .nav_wrap .head_tel{
    display: none;
  }
  .navbar{
    position: fixed;
    top: 8px;
    right: 8px;
    z-index: 9999;
  }
  .drawer_btn{
    position: relative;
    width: 44px;
    height: 44px;
    background-color: #e6beb0;
    border-radius: 6px;
    border: none;
    cursor: pointer;
  }
  .drawer_btn > span{
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background-color: #fff;
    transform: translateX(-50%);
  }
  .drawer_btn > span:first-child{
    transform: translate(-50%, calc(-50% - 0.5rem));
    transition: transform 0.3s ease;
  }
  .drawer_btn > span:nth-child(2){
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
  }
  .drawer_btn > span:last-child{
    transform: translate(-50%, calc(-50% + 0.5rem));
    transition: transform 0.3s ease;
  }

  .drawer_btn.active > span:first-child{
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .drawer_btn.active > span:nth-child(2){
    opacity: 0;
  }
  .drawer_btn.active > span:last-child{
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    margin-top: 0;
    background-color: var(--bgc);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    z-index: 9998;
  }
  .nav.active{
    opacity: 1;
    visibility: visible;
  }
  .nav .sp_menu_title{
    display: flex;
    align-items: center;
    width: 100%;
    height: 60px;
    padding-left: 16px;
  }
  .nav .sp_menu_title img{
    width: auto;
    height: 40px;
  }
  .nav ul{
    display: block;
    margin-top: 16px;
    padding-right: 16px;
    padding-left: 16px;
  }
  .nav li{
    padding-top: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e6beb0;
    text-align: left;
  }
  .nav ul li + li{
    margin-left: 0;
  }
  .nav li a{
    color: #645a46;
    font-size: 18px;
  }
  .nav .sidemenu{
    margin-top: 40px;
    padding-right: 16px;
    padding-left: 16px;
  }
  .sidemenu_title{
    margin-bottom: 16px;
    font-size: 15px;
    font-weight: var(--fwm);
  }
  .sidemenu_title span{
    display: inline-block;
    color: #e6beb0;
  }
  .side_tel_btn + .side_reserve_btn{
    margin-top: 16px;
  }
  .side_tel_btn a,
  .side_reserve_btn a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    border: 1px solid #948e80;
  }
  .contact_aleart{
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.4;
  }
  .contact_aleart p + p{
    margin-top: 1em;
  }

  body.active {
    height: 100%;
    overflow: hidden;
  }
}


/* ---------------------------------
** top
--------------------------------- */
.top_first{
  width: 100%;
  background-image: url(images/fv_bg.png);
  background-repeat: repeat-x;
  background-position: left top;
}
@media (min-width: 1024px){
  .top_first{
    min-height: 820px;
    overflow-x: hidden;
  }
}

.fv_posi{
  position: relative;
  width: var(--wd-a);
  height: 800px;
  margin: 0 auto;
}
.fv_cahra{
  position: absolute;
  right: 16px;
  bottom: -16px;
  z-index: 100;
}
.fv_cahra img{
  width: 200px;
  height: auto;
}
.fv_cahra .mobimg{
  display: none;
}
.fv_wrap{
  position: relative;
  display: flex;
  justify-content: space-between;
  width: var(--wd-a);
  height: 800px;
  margin: 0 auto;
}
.fv_wrap .catch_wrap{
  flex: 1;
}
.catch_wrap .logo_title{
  position: relative;
  padding-top: 16px;
  z-index: 100;
}
.catch_wrap .logo_title img{
  width: 232px;
  height: auto;
}
.catch_wrap .catch{
  position: absolute;
  bottom: 140px;
  left: 0;
  z-index: 10;
}
.catch_wrap .catch .line1{
  margin-bottom: 32px;
  font-size: 24px;
  font-weight: var(--fwm);
  line-height: 1.6;
}
.catch_wrap .catch .line2{
  display: inline-block;
  padding-bottom: 16px;
  border-bottom: 5px solid #e6beb0;
  font-size: 30px;
  font-weight: var(--fwm);
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
}
.catch_wrap .catch .line2 span{
  letter-spacing: normal;
}

.fv_wrap .fv{
  width: 1074px;
  height: 800px;
  overflow: visible;
  position: relative;
}
.fv::before {
  content: "";
  position: absolute;
  top: 0;
  left: -9999px;
  width: 9999px;
  height: 100%;
  background-image: url(images/top_first_bg.png);
  background-repeat: repeat-x;
  background-position: 0 bottom;
  z-index: 2;
  pointer-events: none;
}
.fv-slider.swiper{
  overflow: visible;
}
.fv-slider{
  width: 100%;
  height: 100%;
}
.fv-slider .swiper-wrapper{
  width: 100%;
  height: 100%;
}
.fv-slider .swiper-slide{
  width: 100%;
  height: 100%;
}
.fv-slider .swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider_control_wrap{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  z-index: 100;
}
.swiper-controls{
  width: 160px;
  height: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.swiper-controls .swiper-button-prev,
.swiper-controls .swiper-button-next,
.swiper-controls .swiper-pagination{
  position: static !important;
  flex-shrink: 0;
}
.swiper-controls .swiper-button-prev,
.swiper-controls .swiper-button-next {
  width: 32px;
  height: 32px;
  margin: 0;
}
.swiper-controls .swiper-pagination{
  flex: 1;
  text-align: center;
}
.swiper-controls .swiper-pagination-bullet{
  width: 10px;
  height: 10px;
}
.swiper-controls .swiper-pagination-bullet-active{
  background-color: #fff;
}
.swiper-controls .swiper-button-prev img,
.swiper-controls .swiper-button-next img{
  width: 100%;
  height: auto;
  display: block;
  opacity: 1;
}

.swiper-controls .swiper-button-prev::after,
.swiper-controls .swiper-button-next::after{
  display: none;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled{
  opacity: 1 !important;
}
@media (min-width: 768px) and (max-width: 1023px){
  .fv_wrap{
    position: relative;
    display: block;
    width: 100%;
    height: 50vh;
  }
  .fv_posi{
    width: 100%;
    height: 100%;
  }
  .fv_wrap .fv{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .fv-slider.swiper{
    width: 100%;
    overflow: hidden;
  }
  .fv-slider,
  .fv-slider .swiper-wrapper,
  .fv-slider .swiper-slide{
    width: 100%;
    height: 100%;
  }
  .fv-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .catch_wrap .logo_title{
    display: none;
  }
  .catch_wrap .catch{
    left: 40px;
    bottom: 140px;
  }
  .catch_wrap .catch .line1{
    font-size: 20px;
    text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  }
  .catch_wrap .catch .line2{
    font-size: 28px;
  }
  .slider_control_wrap{
    width: 162px;
    bottom: -48px;
    left: 50%;
    transform: translateX(-50%);
  }
  .fv_cahra .mobimg{
    display: block;
  }
  .fv_cahra{
    position: absolute;
    right: 16px;
    bottom: -40px;
    z-index: 100;
  }
  .fv_cahra img{
    width: 140px;
    height: auto;
  }
}
@media (max-width: 767px){
  .fv_wrap{
    position: relative;
    display: block;
    width: 100%;
    height: 30vh;
  }
  .fv_posi{
    width: 100%;
    height: 100%;
    padding-top: 140px;
    box-shadow: inset 0 -30px 0 0 #e0deda;
  }
  .fv_wrap .fv{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .fv-slider.swiper{
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
    overflow: hidden;
  }
  .fv-slider,
  .fv-slider .swiper-wrapper,
  .fv-slider .swiper-slide{
    width: 100%;
    height: 100%;
  }
  .fv-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .catch_wrap .logo_title{
    display: none;
  }
  .catch_wrap .logo_title img{
    width: 100%;
    height: auto;
  }
  .catch_wrap .catch{
    top: -130px;
    left: 16px;
  }
  .catch_wrap .catch .line1{
    margin-bottom: 16px;
    font-size: 16px;
    text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  }
  .catch_wrap .catch .line2{
    font-size: 18px;
  }
  .slider_control_wrap{
    bottom: -40px;
    left: 10px;
  }
  .fv_cahra .mobimg{
    display: block;
  }
  .fv_cahra{
    position: absolute;
    right: 16px;
    bottom: -20px;
    z-index: 100;
  }
  .fv_cahra img{
    width: 100px;
    height: auto;
  }
}


.top_second{
  width: 100%;
  padding-top: 64px;
  background-image: url(images/top_second_bg.png);
  background-repeat: repeat-x;
}
@media (min-width: 768px) and (max-width: 1023px){
  .top_second{
    padding-top: 80px;
    padding-right: 16px;
    padding-left: 16px;
  }
}
@media (max-width: 767px){
  .top_second{
    padding-right: 16px;
    padding-left: 16px;
  }
}

.news_ticker_wrap{
  width: 100%;
  max-width: var(--wd-a);
  margin-right: auto;
  margin-left: auto;
  padding: 8px 0;
  background-color: #f7fafa;
  font-size: 15px;
}
.news_ticker{
  display: flex;
  align-items: center;
}
.news_ticker .news_item{
  width: 199px;
  padding-top: 24px;
  padding-bottom: 24px;
  border-right: 1px solid #cbc8c1;
  font-weight: var(--fwm);
  text-align: center;
  flex-shrink: 0;
}
.news_ticker .news_title_wrap{
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
}
.news_ticker .news_title_wrap .date{
  width: 140px;
  font-family: var(--ffen);
  text-align: center;
  flex-shrink: 0;
}
.news_ticker .news_title_wrap .news_title{
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
}
.news_ticker .news_title_wrap .news_title .topics_title{
  flex: 1;
  min-width: 0;
}
.news_ticker .news_title_wrap .news_title .topics_title a{
  display: block;
  padding-right: 24px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: var(--fwm);
}
.news_ticker .news_title_wrap .news_title .arrow{
  position: relative;
  width: 54px;
  flex-shrink: 0;
}
.chevron-right {
  transform: translateY(-50%);
  display: inline-block;
  color: #333;
  line-height: 1;
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: translateX(-25%) rotate(45deg);
}

@media (min-width: 768px) and (max-width: 1023px){
  .news_ticker_wrap .news_ticker{
    display: block;
    padding-right: 16px;
    padding-left: 16px;
  }
  .news_ticker .news_item{
    width: 100%;
    padding-top: 16px;
    border-right: 0;
    text-align: left;
  }
  .news_ticker .news_title_wrap{
    padding-bottom: 24px;
  }
  .news_ticker .news_title_wrap .date{
    width: 120px;
    text-align: left;
  }
  .news_ticker .news_title_wrap .news_title .arrow{
    width: 32px;
  }
}
@media (max-width: 767px){
  .news_ticker_wrap .news_ticker{
    display: block;
    padding-right: 16px;
    padding-left: 16px;
  }
  .news_ticker .news_item{
    width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
    border-right: 0;
    text-align: left;
  }
  .news_ticker .news_title_wrap{
    display: block;
    padding-bottom: 24px;
  }
  .news_ticker .news_title_wrap .date{
    width: 100%;
    margin-bottom: 10px;
    text-align: left;
  }
  .news_ticker .news_title_wrap .news_title .topics_title a{
    padding-right: 8px;
  }
  .news_ticker .news_title_wrap .news_title .arrow{
    width: 16px;
  }
}

.top_infomation_wrap{
  position: relative;
  width: 100%;
  max-width: var(--wd-a);
  margin-top: 64px;
  margin-right: auto;
  margin-bottom: 64px;
  margin-left: auto;
  padding: 64px;
  background-color: #f7fafa;
  box-shadow: 0 0 16px rgba(0,0,0,.1);
}
.top_infomation_wrap .inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 96px;
  row-gap: 16px;
  position: relative;
  align-items: stretch;
}
.top_infomation_wrap .inner::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-left: 1px solid #cbc8c1;
}
@media (min-width: 768px) and (max-width: 1023px){
  .top_infomation_wrap{
    margin-top: 32px;
    padding: 40px 40px;
  }
  .top_infomation_wrap .inner{
    display: block;
  }
  .top_infomation_wrap .inner::before{
    border-left: 0;
  }
}
@media (max-width: 767px){
  .top_infomation_wrap{
    margin-top: 32px;
    padding: 40px 16px;
  }
  .top_infomation_wrap .inner{
    display: block;
  }
  .top_infomation_wrap .inner::before{
    border-left: 0;
  }
}

.biz_hours_wrap .heading{
  text-align: center;
}
.biz_hours_wrap .heading h2{
  font-size: 20px;
  font-weight: var(--fwm);
}
.biz_hours_wrap .heading .en{
  margin-top: 10px;
  font-family: var(--ffen);
  font-size: 14px;
}
.biz_hours_wrap .consultation_hours{
  margin-top: 16px;
}
.biz_hours_wrap .consultation_hours table{
  font-size: 15px;
}
.biz_hours_wrap .consultation_hours th{
  background-color: #645a46;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #fff;
  font-weight: var(--fwm);
  text-align: center;
}
.biz_hours_wrap .consultation_hours td{
  border-bottom: 1px solid #e1dfdb;
}
.biz_hours_wrap p{
  margin-top: 16px;
  font-size: 15px;
}
.biz_hours_wrap p .closed{
  display: inline-block;
  margin-right: 10px;
  padding: 10px;
  border: 1px solid #999387;
}
@media (min-width: 768px) and (max-width: 1023px){
  .top_biz_contact{
    margin-top: 40px;
  }
}
@media (max-width: 767px){
  .top_biz_contact{
    margin-top: 40px;
  }
  .biz_hours_wrap p{
    font-size: 14px;
    line-height: 1.4;
  }
  .top_biz_contact .contact_wrap .contact{
    display: block;
  }
  .top_biz_contact .contact_wrap .contact .c_btn{
    width: 100%;
  }
  .top_biz_contact .contact_wrap .contact .c_btn + .c_btn{
    margin-top: 10px;
  }
}

.top_biz_contact .contact_wrap .contact .c_btn a{
  border: 1px solid #999387;
}
.top_biz_contact .contact_wrap p{
  font-size: 15px;
  line-height: 1.4;
}

.top_biz_contact .medical_subject{
  margin-top: 32px;
  width: 100%;
  padding: 16px;
  background-color: #e0deda;
}
.medical_subject .heading{
  font-weight: var(--fwm);
  text-align: center;
}
.medical_subject .m_s_inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
.medical_subject .m_s_inner .item a{
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 24px;
  padding-bottom: 24px;
  background-color: #f7fafa;
  text-align: center;
}
/* 1/1/2の表示
.medical_subject .m_s_inner .item.m1{
  grid-column: 1/2;
  grid-row: 1/2;
}
.medical_subject .m_s_inner .item.m2{
  grid-column: 2/3;
  grid-row: 1/2;
}
.medical_subject .m_s_inner .item.m3{
  grid-column: 1/3;
  grid-row: 2/3;
}
*/
.medical_subject .m_s_inner .item a.no-link{
  cursor: default;
  color: #645a46;
}

.top_infomation_wrap .chara{
  position: absolute;
  bottom: -48px;
  left: -32px;
}
.top_infomation_wrap .chara img{
  width: auto;
  height: 150px;
}
@media (min-width: 768px) and (max-width: 1023px){
  .top_infomation_wrap .chara{
    left: -8px;
  }
  .top_infomation_wrap .chara img{
    width: auto;
    height: 100px;
  }
}
@media (max-width: 767px){
  .medical_subject .m_s_inner{
    display: block;
  }
  .medical_subject .m_s_inner .item + .item{
    margin-top: 16px;
  }
  .top_infomation_wrap .chara{
    left: -8px;
  }
  .top_infomation_wrap .chara img{
    width: auto;
    height: 80px;
  }
}


.lead_img_wrap{
  position: relative;
  width: 100%;
  height: 800px;
}
.lead_img_wrap .lead_img{
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(247, 250, 250, 0) 55%, rgba(247, 250, 250, 1) 100%), url(images/home/lead_img.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.lead_img_wrap .lead_item{
  position: absolute;
  right: 20%;
  bottom: -64px;
}
.lead_img_wrap .lead_item img{
  width: auto;
  height: 230px;
}
@media (min-width: 768px) and (max-width: 1023px){
  .lead_img_wrap{
    height: 400px;
  }
  .lead_img_wrap .lead_item{
    right: 10%;
  }
  .lead_img_wrap .lead_item img{
    width: auto;
    height: 140px;
  }
}
@media (max-width: 767px){
  .lead_img_wrap{
    height: 300px;
  }
  .lead_img_wrap .lead_item{
    right: 10%;
  }
  .lead_img_wrap .lead_item img{
    width: auto;
    height: 100px;
  }
}

.lead_body{
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: var(--wd-b);
  margin-top: 128px;
  margin-right: auto;
  margin-left: auto;
  letter-spacing: .1rem;
}
.lead_body .lead_catch{
  flex: 1;
}
.lead_desc{
  width: 650px;
}
@media (min-width: 768px) and (max-width: 1023px){
  .lead_body{
    display: block;
    padding-right: 40px;
    padding-left: 40px;
  }
  .lead_desc{
    width: 100%;
    margin-top: 48px;
  }
}
@media (max-width: 767px){
  .lead_body{
    display: block;
    padding-right: 24px;
    padding-left: 24px;
  }
  .lead_catch{
    width: 100%;
  }
  .lead_desc{
    width: 100%;
  }
  .lead_desc a.btn_c{
    width: 100%;
  }
}

.lead_catch .en{
  display: flex;
  align-items: center;
  font-size: 12px;
  font-family: var(--ffen);
}
.lead_catch .en::after {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background-color: #999387;
  margin-left: 20px;
}
.lead_catch h2{
  margin-top: 48px;
  font-size: clamp(28px,3vw,48px);
  font-weight: var(--fwm);
  line-height: 2;
}
.lead_desc p{
  font-size: 18px;
  line-height: 2.2;
}
.lead_desc p + p{
  margin-top: 1.5em;
}
.about_link{
  margin-top: 56px;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1023px){
  .lead_catch h2{
    font-size: 40px;
  }
  .lead_desc p{
    font-size: 1em;
  }
}
@media (max-width: 767px){
  .lead_catch h2{
    margin-top: 24px;
    font-size: 30px;
  }
  .lead_desc p{
    margin-top: 32px;
    font-size: 16px;
  }
}


.facility_info_wrap{
  position: relative;
  width: 100%;
  background-color: #faf2ef;
  margin-top: 164px;
  padding-bottom: 64px;
}

.facility_info{
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 64px;
  width: 100%;
  margin: 0 auto;
}
.facility_info .f_gallery_wrap{
  flex: 1;
  width: 100%;
  height: 670px;
  margin-top: -64px;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 1023px){
  .facility_info{
    gap: 10px;
  }
}
@media (min-width: 768px){
  .facility_info .f_gallery_wrap{
    max-width: 60%;
  }
}
@media (max-width: 767px){
  .facility_info_wrap{
    margin-top: 80px;
  }
}
.fcl-slider.swiper{
  width: 100%;
}
.fcl-slider.swiper .swiper-wrapper {
  display: flex;
}
.fcl-slider.swiper .swiper-slide{
  width: 670px;
  height: 670px;
  flex-shrink: 0;
}
.fcl-slider.swiper .swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility_info .top_facility{
  width: 400px;
  padding-top: 128px;
}
.top_facility p{
  margin-top: 64px;
}
.top_facility .facility_link{
  margin-top: 64px;
}

.facility_slider_controls_wrap{
  position: relative;
  width: 60%;
  display: flex;
  justify-content: flex-end;
}
.facility_slider_controls{
  width: 200px;
  height: 32px;
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 5;
}
.facility_slider_controls .swiper-button-prev,
.facility_slider_controls .swiper-button-next,
.facility_slider_controls .swiper-pagination{
  position: static !important;
  flex-shrink: 0;
}
.facility_slider_controls .swiper-button-prev,
.facility_slider_controls .swiper-button-next {
  width: 32px;
  height: 32px;
  margin: 0;
}
.facility_slider_controls .swiper-pagination{
  flex: 1;
  text-align: center;
}
.facility_slider_controls .swiper-pagination-bullet{
  width: 10px;
  height: 10px;
}
.facility_slider_controls .swiper-pagination-bullet{
  background-color: #deddd9;
  opacity: 1;
}
.facility_slider_controls .swiper-pagination-bullet-active{
  background-color: #b1aca2;
}
.facility_slider_controls .swiper-button-prev img,
.facility_slider_controls .swiper-button-next img{
  width: 100%;
  height: auto;
  display: block;
  opacity: 1;
}

.facility_slider_controls .swiper-button-prev::after,
.facility_slider_controls .swiper-button-next::after{
  display: none;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled{
  opacity: 1 !important;
}
@media (min-width: 768px) and (max-width: 1023px){
  .facility_info .top_facility{
    width: 36%;
    padding-top: 80px;
  }
  .top_facility p{
    padding-left: 40px;
    line-height: 1.8;
  }
  .top_facility .facility_link{
    padding-left: 40px;
  }
  .top_facility .facility_link a{
    width: 100%;
  }
  .facility_info .f_gallery_wrap{
    height: 540px;
    overflow: hidden;
  }
  .fcl-slider.swiper .swiper-slide{
    width: 100%;
    height: 540px;
    flex-shrink: 0;
  }
}
@media (max-width: 767px){
  .facility_info{
    display: block;
  }
  .facility_info .f_gallery_wrap{
    width: 100% !important;
    height: auto;
    margin-top: 40px;
  }
  .fcl-slider.swiper .swiper-slide{
    width: 100%;
    max-height: 300px;
  }
  .facility_slider_controls_wrap{
    width: 100%;
    justify-content: center;
  }
  .facility_info .top_facility{
    width: 100%;
    padding-top: 80px;
  }
  .facility_info .top_facility p,
  .top_facility .facility_link{
    padding-right: 24px;
    padding-left: 24px;
  }
  .facility_info .top_facility p{
    line-height: 1.6;
  }
  .top_facility .facility_link{
    margin-top: 24px;
  }
  .top_facility .facility_link a.btn_c{
    width: 100%;
  }
}


.top_treatment_info{
  margin-top: 128px;
  width: 100%;
  max-width: var(--wd-b);
  margin-right: auto;
  margin-left: auto;
}
.top_treatment_box{
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin-top: 64px;
}
.top_permanent_makeup{
  margin-top: 64px;
  text-align: center;
}
.top_permanent_makeup img{
  width: 100%;
  height: auto;
}
@media (min-width: 768px) and (max-width: 1023px){
  .top_treatment_box{
    display: block;
    margin-top: 100px;
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media (max-width: 767px){
  .top_treatment_box{
    display: block;
    margin-top: 100px;
    padding-right: 24px;
    padding-left: 24px;
  }
  .top_permanent_makeup{
    padding-right: 16px;
    padding-left: 16px;
  }
}

.top_treatment_box .tt_img{
  position: relative;
  width: 420px;
  aspect-ratio: 3/2;
  margin-top: 20px;
  background-repeat: no-repeat;
  background-size: contain;
}
.top_treatment_box .tt_img.tr1{
  background-image: url(images/treatment/tr_1.png);
}
.top_treatment_box .tt_img.tr2{
  background-image: url(images/treatment/tr_2.png);
}
.top_treatment_box .tt_img.tr3{
  background-image: url(images/treatment/tr_3.png);
}
.tt_img .tt_img_title{
  position: absolute;
  top: -20px;
  left: 20px;
  z-index: 1;
  box-shadow: 0 0 16px rgba(0,0,0,0.1);
}
.tt_img .tt_img_title img{
  width: 96px;
  height: auto;
}
.top_treatment_box .tt_desc{
  flex: 1;
}
.tt_desc p{
  font-size: 20px;
  font-weight: var(--fwm);
  letter-spacing: .1em;
}
.tt_desc_item{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.tt_desc_item li{
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
@media (min-width: 768px) and (max-width: 1023px){
  .top_treatment_box .tt_desc{
    width: 100%;
    margin-top: 40px;
  }
}
@media (max-width: 767px){
  .top_treatment_box .tt_img{
    width: 100%;
  }
  .top_treatment_box .tt_desc{
    width: 100%;
    margin-top: 32px;
  }
  .top_treatment_box .tt_desc p{
    font-size: 16px;
  }
  .tt_desc_item{
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
}

.visitor_btn_wrap{
  width: 100%;
  max-width: var(--wd-b);
  margin-top: 128px;
  margin-right: auto;
  margin-bottom: 128px;
  margin-left: auto;
  padding-right: 16px;
}
.visitor_btn{
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: var(--wd-b);
  height: 196px;
}
.visitor_btn .link_btn{
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 98px;
  background: #fff;
  border: 10px solid #f3dfd7;
  color: #645a46;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: none;
  z-index: 1;
}
.visitor_btn .link_btn_shadow{
  position: absolute;
  left: 10px;
  top: 10px;
  width: 100%;
  height: 100%;
  border-radius: 98px;
  background: rgba(0,0,0,.1);
  pointer-events: none;
  z-index: 0;
}
.visitor_btn .link_btn:hover,
.visitor_btn .link_btn:focus-visible{
  transform: translate(10px, 10px);
}
.visitor_btn_title{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: var(--fwm);
}
.visitor_btn_title .icon{
  margin-right: 10px;
}
.visitor_btn_title .icon img{
  width: auto;
  height: 32px;
}
.visitor_btn .link_btn .inner p{
  margin-top: 24px;
  line-height: 2;
  text-align: center;
}
img.visitor_btn_chara{
  display: block;
  position: absolute;
  right: 32px;
  bottom: -32px;
  z-index: 10;
  width: auto;
  height: 170px;
}


@media (min-width: 768px) and (max-width: 1023px){
  .visitor_btn_wrap{
    padding-right: 40px;
    padding-left: 40px;
  }
  .visitor_btn{
    height: 240px;
  }
  .visitor_btn .link_btn,
  .visitor_btn .link_btn_shadow{
    border-radius: 120px;
  }
  img.visitor_btn_chara{
    right: 16px;
    bottom: -48px;
    width: auto;
    height: 140px;
  }
}
@media (max-width: 767px){
  .visitor_btn_wrap{
    padding-right: 20px;
    padding-left: 10px;
  }
  .visitor_btn{
    height: 260px;
  }
  .visitor_btn .link_btn,
  .visitor_btn .link_btn_shadow{
    padding-bottom: 40px;
    border-radius: 20px;
  }
  .visitor_btn .link_btn .inner p{
    padding-right: 2em;
    padding-left: 2em;
    font-size: 14px;
    text-align: center;
  }
  .visitor_btn_title{
    font-size: 20px;
  }
  .visitor_btn .link_btn .inner p{
    margin-top: 8px;
  }
  img.visitor_btn_chara{
    display: block;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: 100px;
  }
}


/* ---------------------------------
** contents
--------------------------------- */
.content_header{
  width: 100%;
  max-width: var(--wd-a);
  margin-right: auto;
  margin-left: auto;
}
.content_header .inner{
  display: flex;
  justify-content: space-between;
}
.content_header .inner .site_logo{
  width: 17%;
  padding-top: 16px;
}
.content_header .inner .site_logo img{
  width: 100%;
  max-width: 232px;
  height: auto;
}
.content_header .inner .header_img{
  width: 78%;
  max-height: 500px;
}
.content_header .inner .header_img img{
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
}
@media (min-width: 768px) and (max-width: 1023px){
  .content_header .inner .site_logo{
    display: none;
  }
  .content_header .inner .header_img{
    width: 100%;
    height: auto;
  }
}
@media (max-width: 767px){
  .content_header{
    position: relative;
  }
  .content_header .inner{
    position: relative;
    width: 100%;
    height: 240px;
  }
  .content_header .inner .site_logo{
    display: none;
  }
  .content_header .inner .header_img{
    width: 100%;
    height: auto;
  }
}


.container{
  padding-top: 128px;
  padding-bottom: 128px;
}
@media (min-width: 768px) and (max-width: 1023px){
  .container{
    padding-top: 80px;
  }
}
@media (max-width: 767px){
  .container{
    padding-top: 80px;
  }
}

.breadcrumb{
  width: 100%;
  max-width: var(--wd-a);
  margin-top: 16px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 76px;
}
.breadcrumb ul{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.breadcrumb ul li{
  color: #b1aca2;
  font-size: 14px;
}
.breadcrumb ul li a{
  text-decoration: underline;
}
.breadcrumb ul li::after{
  content: "／";
  margin-right: 16px;
  margin-left: 16px;
  color: #645a46;
}
.breadcrumb ul li:last-child::after{
  content: "";
  margin: 0;
}
@media (min-width: 768px) and (max-width: 1023px){
  .breadcrumb{
    padding-right: 24px;
  }
}
@media (max-width: 767px){
  .breadcrumb{
    padding-right: 10px;
  }
  .breadcrumb ul li{
    font-size: 12px;
  }
  .breadcrumb ul li::after{
    margin-right: 8px;
    margin-left: 8px;
  }
}

.section_title_wrap{
  letter-spacing: .1em;
}
.section_title_en{
  display: flex;
  align-items: center;
  font-size: 12px;
  font-family: var(--ffen);
}
.section_title_en::after {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background-color: #999387;
  margin-left: 20px;
}
.section_title{
  margin-top: 1em;
  font-size: 30px;
  font-weight: var(--fwm);
}
@media (min-width: 768px) and (max-width: 1023px){
  .section_title_wrap{
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media (max-width: 767px){
  .section_title_wrap{
    padding-right: 24px;
    padding-left: 24px;
  }
}

.block_title{
  padding: 4px 0 4px 10px;
  border-left: 5px solid #e6beb0;
  color: #e6beb0;
  font-size: 20px;
  font-weight: var(--fwm);
}
@media (max-width: 767px){
  .block_title{
    line-height: 1.4;
  }
}


/* about --------------------------------- */
.about_wrap,
.facility_wrap,
.equipment_wrap{
  width: 100%;
  max-width: var(--wd-b);
  margin-right: auto;
  margin-left: auto;
}
.facility_wrap,
.equipment_wrap{
  margin-top: 128px;
}

.greeting_wrap{
  margin-top: 64px;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: stretch;
  gap: 64px;
}
@media (min-width: 768px) and (max-width: 1023px){
  .greeting_wrap{
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media (max-width: 767px){
  .greeting_wrap{
    display: block;
    padding-right: 24px;
    padding-left: 24px;
  }
}

.greeting_wrap .greeting_desc{
  flex: 1;
}
.greeting_title .status{
  font-size: 14px;
}
.greeting_title .name{
  margin-top: 24px;
  font-size: 30px;
}
.greeting_title .name .en{
  display: inline-block;
  margin-left: 24px;
  color: #e6beb0;
  font-size: 14px;
}
.greeting_desc .desc{
  margin-top: 64px;
}
.greeting_desc .desc p{
  font-size: 18px;
  letter-spacing: .1em;
  line-height: 2;
}
.greeting_desc .desc p + p{
  margin-top: 1.5em;
}

.greeting_wrap .greeting_img{
  flex: 1;
  display: flex;
  align-items: stretch;
  max-width: 400px;
  overflow: hidden;
}
.greeting_wrap .greeting_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) and (max-width: 1023px){
  .greeting_desc .desc p{
    font-size: 16px;
  }
}
@media (max-width: 767px){
  .greeting_desc .desc p{
    font-size: 16px;
  }
  .greeting_wrap .greeting_img{
    width: 100%;
    margin-top: 24px;
  }
}

.history_wrap{
  display: flex;
  justify-content: space-between;
  gap: 64px;
  margin-top: 64px;
}
.history_wrap .history_box{
  flex: 1;
  padding: 48px;
  background-color: #f8ece7;
}
@media (min-width: 768px) and (max-width: 1023px){
  .history_wrap{
    display: block;
    padding-right: 40px;
    padding-left: 40px;
  }
  .history_wrap .history_box{
    padding: 32px;
  }
  .history_wrap .history_box + .history_box{
    margin-top: 16px;
  }
}
@media (max-width: 767px){
  .history_wrap{
    display: block;
    padding-right: 24px;
    padding-left: 24px;
  }
  .history_wrap .history_box{
    padding: 20px;
    line-height: 1.4;
  }
  .history_wrap .history_box + .history_box{
    margin-top: 16px;
  }
}

.history_title{
  padding-bottom: 1em;
  border-bottom: 1px solid #948e80;
  font-size: 18px;
}
.history{
  margin-top: 32px;
}
.history .line{
  display: flex;
  font-size: 14px;
}
.history .line + .line{
  margin-top: 18px;
}
.history .line .gy{
  width: 120px;
}
.history .line .desc{
  flex: 1;
}
.qualification{
  margin-top: 32px;
}
.qualification li{
  font-size: 14px;
}
.qualification li::before{
  content: "●";
  margin-right: 4px;
  color: #e6beb0;
}
.qualification li + li{
  margin-top: 16px;
}
@media (max-width: 767px){
  .history,
  .qualification{
    margin-top: 24px;
  }
}

.no-slider{
  margin-top: 40px;
  padding: 24px;
  background-color: #fff;
  text-align: center;
}
@media (max-width: 767px){
  .no-slider{
    margin-right: 24px;
    margin-left: 24px;
  }
}

.facility_gallery{
  margin-top: 64px;
}
.slider-wrapper{
  position: relative;
  max-width: 1216px;
  margin: auto;
}
.slider_container{
  position: relative;
  width: 100%;
}

.main-slider{
  position: relative;
  width: 100%;
  max-width: 1074px;
  aspect-ratio: 3 / 2;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 32px;
  margin-left: auto;
}

.main-slider img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* サムネイル */
.thumb-slider{
  height: 200px;
  box-sizing: border-box;
}
.thumb-slider .swiper-slide{
  width: 25%;
  opacity: 1;
}
.thumb-slider img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) and (max-width: 1023px){
  .thumb-slider{
    height: 140px;
  }
}
@media (max-width: 767px){
  .thumb-slider{
    height: 60px;
  }
  .thumb-slider .swiper-slide{
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
    overflow: hidden;
  }
}

/* 矢印 */
.custom-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  cursor: pointer;
}
.swiper-button-prev{
  left: 0 !important;
}
.swiper-button-next{
  right: 0 !important;
}
.swiper-button-next,
.swiper-button-prev{
  color: #645a46 !important;
}
.swiper-button-next::after,
.swiper-button-prev::after{
  display: none;
}
.custom-arrow svg{
  width: 60px;
  height: 120px;
  display: block;
}
@media (max-width: 767px){
  .custom-arrow svg{
    margin-top: 60px;
  }
}

.equipment_list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 32px;
  row-gap: 64px;
  margin-top: 64px;
}
@media (min-width: 768px) and (max-width: 1023px){
.equipment_list{
  grid-template-columns: repeat(2, 1fr);
  padding-right: 40px;
  padding-left: 40px;
}
}
@media (max-width: 767px){
  .equipment_list{
    display: block;
    padding-right: 24px;
    padding-left: 24px;
  }
  .equipment_list li + li{
    margin-top: 48px;
  }
}

.equipment_list .equipment_img{
  aspect-ratio: 3/2;
  overflow: hidden;
}
.equipment_list .equipment_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.equipment_name{
  margin-top: 32px;
}
.equipment_name .maker{
  font-size: 14px;
  font-weight: var(--fwb);
}
.equipment_name h3{
  margin-top: 10px;
  font-size: 18px;
  font-weight: var(--fwb);
}
.equipment_list li .desc{
  margin-top: 24px;
  font-size: 14px;
  line-height: 2;
}


/* treatment --------------------------------- */
.treatment_wrap{
  width: 100%;
  max-width: var(--wd-b);
  margin-right: auto;
  margin-left: auto;
}

.anchors_wrap{
  margin-top: 80px;
}
@media (min-width: 768px) and (max-width: 1023px){
  .anchors_wrap{
    margin-top: 48px;
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media (max-width: 767px){
  .anchors_wrap{
    margin-top: 40px;
    padding-right: 24px;
    padding-left: 24px;
  }
}

.anchors_box{
  padding-top: 48px;
  padding-right: 48px;
  padding-bottom: 48px;
  padding-left: 58px;
  background-color: #fff;
  border-left: 10px solid #cadcac;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.anchors_box.ttm2{border-color: #f3dfd7;}
.anchors_box.ttm3{border-color: #c1d2dc;}
.anchors_box + .anchors_box{
  margin-top: 16px;
}
.anchors_title{
  font-size: 30px;
  font-weight: var(--fwm);
  letter-spacing: .1em;
}
.anchors_desc{
  margin-top: 32px;
}
.anchors_desc ul{
  display: grid;
  grid-template-columns: 174px 174px 174px 174px 1fr;
  gap: 48px;
}
.anchors_desc ul li{
  border-bottom: 1px solid #948e80;
}
.anchors_desc ul li a{
  position: relative;
  display: inline-block;
  width: 100%;
  font-size: 15px;
  font-weight: var(--fwm);
}
.anchors_desc ul li a::after{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(images/arrow-down.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.anchors_desc ul li.cat_link{
  padding-bottom: 0;
  border-bottom: none;
}
.anchors_desc ul li.cat_link a{
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 40px;
  padding-left: 28px;
  background-color: #645a46;
  border-radius: 20px;
  color: #fff;
}
.anchors_desc ul li.cat_link a::after{
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}
.anchors_desc ul li a{opacity: 1;}
.anchors_desc ul li a:hover{opacity: .5;}

@media (min-width: 768px) and (max-width: 1023px){
  .anchors_box{
    padding-top: 24px;
    padding-right: 16px;
    padding-bottom: 24px;
    padding-left: 24px;
  }
  .anchors_box + .anchors_box{
    margin-top: 24px;
  }
  .anchors_title{
    font-size: 20px;
  }
  .anchors_desc ul{
    display: block;
  }
  .anchors_desc ul li + li{
    margin-top: 16px;
  }
  .anchors_desc ul li a{
    padding-bottom: 16px;
  }
  .anchors_desc ul li.cat_link a{
    padding-bottom: 0;
  }
}
@media (max-width: 767px){
  .anchors_box{
    padding-top: 24px;
    padding-right: 16px;
    padding-bottom: 24px;
    padding-left: 24px;
  }
  .anchors_title{
    font-size: 20px;
  }
  .anchors_desc ul{
    display: block;
  }
  .anchors_desc ul li + li{
    margin-top: 16px;
  }
  .anchors_desc ul li a{
    padding-bottom: 16px;
  }
  .anchors_desc ul li.cat_link a{
    padding-bottom: 0;
  }
}



.treatment_section{
  padding-top: 64px;
  padding-bottom: 80px;
}
.treatment_section.first,
.treatment_section.second{
  margin-top: 64px;
  padding-bottom: 160px;
}
@media (min-width: 768px) and (max-width: 1023px){
  .treatment_section{
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media (max-width: 767px){
  .treatment_section{
    padding-right: 16px;
    padding-left: 16px;
  }
}

.treatment_intro{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 64px;
}
.treatment_intro .desc{
  flex: 1;
}
.treatment_intro .desc h2{
  margin-bottom: 48px;
  padding-bottom: 1em;
  border-bottom: 1px solid #948e80;
  font-size: 24px;
  font-weight: var(--fwm);
  letter-spacing: .1em;
}
.treatment_intro .desc p{
  font-size: 15px;
  line-height: 2;
}
.treatment_intro .desc p + p{
  margin-top: 1.5em;
}
.treatment_intro .treatment_img{
  width: 420px;
  overflow: hidden;
}
.treatment_intro .treatment_img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 768px) and (max-width: 1023px){
  .treatment_intro .treatment_img{
    width: 240px;
  }
}
@media (max-width: 767px){
  .treatment_intro{
    display: block;
    padding: 0 10px;
  }
  .treatment_intro .treatment_img{
    width: 100%;
    margin-top: 24px;
  }
}

.treatment_body{
  margin-top: 64px;
  padding: 48px;
  background-color: #fff;
}
@media (max-width: 767px){
  .treatment_body{
    padding: 40px 16px;
  }
}

.treatment_body_title{
  text-align: center;
}

.treatment_body_title h3{
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: var(--fwm);
}
.treatment_body_title h3::after{
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background-color: #948e80;
  margin-top: 24px;
  margin-right: auto;
  margin-left: auto;
}

.treatment_box{
  /*margin-top: 48px;*/
  padding-top: 48px;
  border-top: 1px solid #cbc8c1;
}
.treatment_box:first-child{
  margin-top: 0;
  padding-top: 24px;
  border-top: 0;
}
.treatment_box h4{
  margin-bottom: 32px;
  font-size: 20px;
  font-weight: var(--fwm);
}
.treatment_box .desc{
  font-size: 15px;
  line-height: 2;
}

.fee_wrap{
  margin-top: 32px;
}
.fee_title{
  margin-bottom: 1em;
  font-size: 15px;
  font-weight: var(--fwm);
}
.fee_title .dot{
  color: #e7c1b4;
}
.fee_wrap .inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 8px;
}
.fee_wrap .inner .first_visit,
.fee_wrap .inner .follow_up{
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #e7c1b4;
  font-size: 15px;
  text-align: center;
}
.fee_wrap .inner .first_visit .item,
.fee_wrap .inner .follow_up .item{
  background-color: #e7c1b4;
  color: #fff;
  letter-spacing: .1em;
}
.fee_wrap .inner .first_visit .fee,
.fee_wrap .inner .follow_up .fee{
  background-color: #fff;
}
.fee_wrap .inner .first_visit .item,
.fee_wrap .inner .first_visit .fee,
.fee_wrap .inner .follow_up .item,
.fee_wrap .inner .follow_up .fee{
  padding-top: 1em;
  padding-bottom: 1em;
}
.fee_wrap p{
  font-size: 15px;
  line-height: 2;
}

@media (max-width: 767px){
  .fee_wrap .inner{
    display: block;
  }
  .fee_wrap .inner .follow_up{
    margin-top: 8px;
  }
}

.method{
  margin-top: 32px;
  padding-bottom: 40px;
}
.method.nopad{
  padding-bottom: 0;
}
.method + .method{
  margin-top: 0;
}
.method.nonline{
  padding-bottom: 24px;
  border-bottom: 0;
}
.method_title{
  margin-bottom: 16px;
  padding: 1em 0 1em 1.5em;
  background-color: #f8ece7;
  border-left: 5px solid #e7c1b4;
  font-size: 15px;
  font-weight: var(--fwm);
}
.method p{
  font-size: 15px;
  line-height: 2;
}
.method p .dot,
.method_att .dot{
  display: inline-block;
  color: #e6beb0;
}
.method p em{
  color: #e7c1b4;
  font-weight: var(--fwm);
  font-style: normal;
}

.method_2col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 96px;
  row-gap: 16px;
  position: relative;
  align-items: stretch;
  margin-bottom: 16px;
}
.method_2col::before{
  content: "";
  position: absolute;
  top: 32px;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 1px solid #cbc8c1;
}
.method_2col_last{
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 96px;
  row-gap: 16px;
  position: relative;
  align-items: stretch;
}
.method_2col .method + .method{
  margin-top: 32px;
}
@media (min-width: 768px) and (max-width: 1023px){
  .method_2col,
  .method_2col_last{
    display: block;
  }
  .method_2col::before{
    border-left: 0;
  }
}
@media (max-width: 767px){
  .method_2col,
  .method_2col_last{
    display: block;
  }
  .method_2col::before{
    border-left: 0;
  }
}

.method_2col .method,
.method_2col_last .method{
  border-bottom: 1px solid #cbc8c1;
}
.method_2col .method.nonline,
.method_2col_last .method{
  padding-bottom: 0;
  border-bottom: 0;
}
@media (max-width: 767px){
  .method_2col .method,
  .method_2col_last .method{
    border-bottom: 0;
  }
}

.no-fee{
  margin-top: 8px;
  padding: .8em;
  background-color: #f5f5f5;
  font-size: 15px;
}
.cost_2col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  position: relative;
  align-items: stretch;
}
.cost_2col::before{
  content: "";
  position: absolute;
  top: 16px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-left: 1px dashed #e6beb0;
}
@media (max-width: 767px){
  .cost_2col{
    display: block;
  }
  .cost_2col::before{
    border-left: 0;
  }
}

.cost_2col .female,
.cost_2col .male{
  margin-top: 16px;
}
.cost_2col .female .female_item,
.cost_2col .male .male_item{
  display: inline-block;
  padding: 4px 16px;
  color: #fff;
  font-size: 15px;
  letter-spacing: .1em;
}
.cost_2col .female .female_item{
  background-color: #e6beb0;
}
.cost_2col .male .male_item{
  background-color: #82a5b9;
}

.cost_wrap{
  margin-bottom: 8px;
}
.cost_wrap .unit{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: .6em;
  padding-bottom: .6em;
  border-bottom: 1px solid #efd6cd;
  font-size: 15px;
  line-height: 1.8;
}
.cost_wrap .unit .item{
  font-weight: var(--fwm);
}
.cost_wrap .unit .cost{
  text-align: right;
}

.unit.multi .item,
.unit.multi .cost{
  width: 50%;
}
.unit.multi .cost li{
  padding-top: 1em;
  padding-bottom: 1em;
  background-image: linear-gradient(to right, #efd6cd, #efd6cd 6px, transparent 6px);
  background-size: 10px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
}
.unit.multi .cost li:first-child{
  padding-top: 0;
}
.unit.multi .cost li:last-child{
  padding-bottom: 0;
  background: none;
}

.method_att{
  font-size: 15px;
  line-height: 2;
}
.method_att.padb{
  padding-bottom: 40px;
}

.treatment_info{
  position: relative;
  width: 100%;
  margin-top: 48px;
  padding: 32px;
  background-color: #dff3f5;
  border-radius: 16px;
  text-align: center;
}
.treatment_info h3{
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px dashed #46b8c8;
  color: #46b8c8;
  font-size: 20px;
  font-weight: var(--fwm);
}
.treatment_info p{
  font-size: 15px;
  font-weight: var(--fwm);
  line-height: 2;
}
.treatment_info .chara{
  position: absolute;
  bottom: -90px;
  left: 50%;
  transform: translateX(-50%);
}
.treatment_info .chara img{
  width: auto;
  height: 110px;
}
@media (max-width: 767px){
  .treatment_info_wrap{
    padding-right: 8px;
    padding-left: 8px;
  }
  .treatment_info{
    padding: 32px 24px;
  }
}

.aleart_wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.aleart_wrap .aleart{
  position: relative;
  flex: 1;
  margin-right: 16px;
}
.aleart .fukidasi{
  position: relative;
  padding: 16px;
  background-color: #5dc1cf;
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  line-height: 2;
}
.aleart .fukidasi::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -16px;
  border: 16px solid transparent;
  border-left: 16px solid #5dc1cf;
}
.aleart_wrap .aleart_img{
  text-align: right;
}
.aleart_img img{
  width: 112px;
  height: auto;
}
@media (max-width: 767px){
  .aleart_wrap{
    display: block;
  }
  .aleart_wrap .aleart{
    margin-right: 0;
  }
  .aleart .fukidasi::before{
    border: 0;
  }
  .aleart .fukidasi::after{
    content: "";
    position: absolute;
    bottom: -16px; /* 吹き出しの下に出す */
    left: 50%;     /* 中央寄せ */
    transform: translateX(-50%);
    border-width: 16px 16px 0 16px; /* 三角形のサイズ */
    border-style: solid;
    border-color: #5dc1cf transparent transparent transparent;
  }
  .aleart_wrap .aleart_img{
    margin-top: 32px;
    text-align: center;
  }
}

/* visitor --------------------------------- */
.visitor_wrap{
  max-width: var(--wd-b);
  margin-right: auto;
  margin-left: auto;
}

.firstvisit_items{
  margin-top: 64px;
}
.firstvisit_items ul{
  margin-top: 32px;
}
.firstvisit_items ul li + li{
  margin-top: 1em;
}
.firstvisit_items ul li::before{
  content: "●";
  color: #b1aca2;
  margin-right: 4px;
}
@media (min-width: 768px) and (max-width: 1023px){
  .firstvisit_items{
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media (max-width: 767px){
  .firstvisit_items{
    padding-right: 24px;
    padding-left: 24px;
  }
  .firstvisit_items ul li{
    line-height: 1.4;
  }
}

.flow_wrap{
  margin-top: 64px;
}
@media (min-width: 768px) and (max-width: 1023px){
  .flow_wrap{
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media (max-width: 767px){
  .flow_wrap{
    padding-right: 24px;
    padding-left: 24px;
  }
}

.flow_box{
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 32px;
  margin-top: 32px;
}
.flow_img{
  width: 420px;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.flow_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.flow_desc{
  flex: 1;
  /*padding-left: 32px;*/
}
.flow_title{
  position: relative;
  display: inline-block;
  margin-bottom: 32px;
}
.flow_title::after {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  background-color: #948e80;
  margin-top: 32px;
}
.flow_title .num{
  font-size: 18px;
  font-family: var(--ffen);
}
.flow_title h3{
  margin-top: 10px;
  font-size: 18px;
  font-weight: var(--fwm);
}
.flow_desc p{
  line-height: 2;
}
@media (min-width: 768px) and (max-width: 1023px){
  .flow_img{
    width: 240px;
    aspect-ratio: 3/2;
    overflow: hidden;
  }
}
@media (max-width: 767px){
  .flow_box{
    display: block;
    margin-top: 48px;
  }
  .flow_img{
    width: 100%;
    margin-top: 24px;
  }
  .flow_desc{
    padding-left: 0;
  }
}


.reservation_wrap{
  margin-top: 128px;
}
@media (min-width: 768px) and (max-width: 1023px){
  .reservation_wrap{
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media (max-width: 767px){
  .reservation_wrap{
    padding-right: 24px;
    padding-left: 24px;
  }
}

.reservation_desc{
  margin-top: 32px;
  line-height: 2;
}

.app_reservation_wrap{
  margin-top: 32px;
  padding: 48px;
  background-color: #efeeec;
}
.app_reservation_wrap h3{
  font-size: 20px;
  font-weight: var(--fwm);
  text-align: center;
}
.app_desc_box{
  margin-top: 32px;
}

.app_desc_title{
  display: flex;
  align-items: center;
  padding: 1em;
  background-color: #fff;
  line-height: 1.4;
}
.app_desc_title .num{
  width: 2em;
  font-family: var(--ffen);
}
.app_desc_title .item{
  flex: 1;
}

.app_desc_box p{
  margin-top: 10px;
  font-size: 15px;
  line-height: 2;
}

@media (max-width: 767px){
  .app_reservation_wrap{
    padding: 32px 20px;
  }
  .app_reservation_wrap h3{
    line-height: 1.4;
  }
  .app_desc_title{
    align-items: flex-start;
  }
}

.app_download_wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.app_btn_box{
  display: flex;
  align-items: center;
  flex: 1;
}
.app_btn_box:last-child{
  width: 50%;
  padding-left: 32px;
  border-left: 1px solid #948e80;
}
.app_btn_box .app_name{
  display: inline-block;
  font-size: 20px;
  font-weight: var(--fwm);
}
.app_btn_box .arrow{
  display: inline-block;
  padding-right: 16px;
  padding-left: 16px;
}
.app_btn_box img{
  width: auto;
  height: 64px;
}
@media (min-width: 768px) and (max-width: 1023px){
  .app_download_wrap{
    display: block;
  }
  .app_btn_box{
    justify-content: flex-start;
  }
  .app_btn_box,
  .app_btn_box:last-child{
    width: 100%;
    padding: 0;
    border: 0;
  }
  .app_btn_box + .app_btn_box{
    margin-top: 16px;
  }
  .app_btn_box .app_name{
    font-size: 16px;
  }
  .app_btn_box img{
    width: auto;
    height: 48px;
  }
}
@media (max-width: 767px){
  .app_download_wrap{
    display: block;
  }
  .app_btn_box{
    justify-content: flex-start;
  }
  .app_btn_box,
  .app_btn_box:last-child{
    width: 100%;
    padding: 0;
    border: 0;
  }
  .app_btn_box + .app_btn_box{
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #cbc8c1;
  }
  .app_btn_box .app_name{
    font-size: 15px;
    line-height: 1.2;
  }
  .app_btn_box img{
    width: auto;
    height: 40px;
  }
}



/* news --------------------------------- */
.news_wrap{
  width: 100%;
  max-width: var(--wd-b);
  margin-right: auto;
  margin-left: auto;
}

.news_body{
  margin-top: 64px;
}
.news_body article + article{
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid #999387;
}
.post_header .date{
  font-size: 14px;
}
.post_header .post_title{
  margin-top: 1em;
  font-size: 20px;
  font-weight: var(--fwm);
  line-height: 1.4;
}
.post_body{
  margin-top: 32px;
  line-height: 2;
}
@media (min-width: 768px) and (max-width: 1023px){
  .news_body{
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media (max-width: 767px){
  .news_body{
    padding-right: 24px;
    padding-left: 24px;
  }
}


/* access --------------------------------- */
.accessmap,
.info_container{
  max-width: var(--wd-b);
  margin-right: auto;
  margin-left: auto;
}
.accessmap iframe{
  width: 100%;
  height: 600px;
}
@media (min-width: 768px) and (max-width: 1023px){
  .accessmap iframe{
    width: 100%;
    height: 400px;
  }
}
@media (max-width: 767px){
  .accessmap iframe{
    width: 100%;
    height: 300px;
  }
}

.info_container{
  margin-top: 64px;
}
.info_container .inner{
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  gap: 64px;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1023px){
  .info_container .inner{
    display: block;
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media (max-width: 767px){
  .info_container .inner{
    display: block;
  }
}

.info_container .inner .photo_wrap{
  flex: 1;
  max-width: 488px;
  display: flex;
  align-items: stretch;
}
.photo_wrap .gallery{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  max-height: 100%;
}
.photo_wrap .cell{
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.photo_wrap .cell img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo_wrap .item1{/* 1枚目：1～3列、1～2行 */
  grid-column: 1 / 4;
  grid-row: 1 / 3;
}
.photo_wrap .item2{/* 2枚目：1～2列、3行目 */
  grid-column: 1 / 3;
  grid-row: 3;
}
.photo_wrap .item3{/* 3枚目：3列、3行目 */
  grid-column: 3;
  grid-row: 3;
}
@media (min-width: 768px) and (max-width: 1023px){
  .info_container .inner .photo_wrap{
    margin-top: 48px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 767px){
  .info_container .inner .photo_wrap{
    margin-top: 48px;
    padding-right: 24px;
    padding-left: 24px;
  }
}

.info_container .inner .access_info_wrap{
  flex: 1;
}
@media (max-width: 767px){
  .info_container .inner .access_info_wrap{
    padding-right: 24px;
    padding-left: 24px;
  }
  .photo_wrap .cell .no-photo{
    display: none;
  }
}

.access_detail .address{
  font-weight: var(--fwb);
  text-align: center;
}
.access_detail .access{
  position: relative;
  width: 100%;
  margin-top: 20px;
  padding-top: 32px;
  padding-bottom: 32px;
  background-color: #dff3f5;
  border-radius: 20px;
  text-align: center;
}
.access_detail .access{
  font-weight: var(--fwb);
}
.access_detail .access .push{
  margin-bottom: 20px;
  color: #35b2c3;
  font-size: 20px;
}
.access_detail .chara_img{
  position: absolute;
  bottom: -94px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.access_detail .chara_img img{
  width: auto;
  height: 112px;
}
@media (max-width: 767px){
  .access_detail .access p{
    padding-right: 16px;
    padding-left: 16px;
    line-height: 1.6;
  }
  .access_detail .access .push{
    line-height: 1.8;
  }
}

.business_info{
  margin-top: 130px;
}
.business_info_title{
  margin-bottom: 16px;
  font-weight: var(--fwb);
}
.business_info_title span{
  display: inline-block;
  margin-right: 8px;
  color: #e6beb0;
}

.contact_wrap .contact{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}
.contact_wrap .contact .c_btn{
  width: 48%;
}
.contact_wrap .contact .c_btn a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 72px;
  background-color: inherit;
  border: 1px solid #999387;
  color: #645a46;
  cursor: pointer;
}
.contact_wrap .contact .c_btn a:hover{
  background-color: #645a46;
  color: #fff;
}
.contact_wrap p{
  margin-top: 16px;
  font-size: 14px;
}
@media (max-width: 767px){
  .business_info .contact_wrap .contact{
    flex-direction: column;
    gap: 16px;
  }
  .business_info .contact_wrap .contact .c_btn{
    width: 100%;
  }
  .contact_wrap p{
    line-height: 1.4;
  }
}

.business_info .consultation_hours{
  margin-top: 48px;
}
.business_info .consultation_hours th{
  background-color: #645a46;
  color: #fff;
}
.business_info .consultation_hours td{
  border-color: #999387;
}
.business_info .consultation p{
  margin-top: 16px;
  font-size: 14px;
}
.business_info .consultation p .closed{
  display: inline-block;
  margin-right: 16px;
  padding: 10px;
  border: 1px solid #999387;
}



/* ---------------------------------
** footer
--------------------------------- */
/* slider gallery --------------------------------- */
.slider_auto_gallery{
  position: relative;
  width: 100%;
  margin-bottom: 64px;
}
.auto_slider{
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.slider_track{
  display: flex;
  gap: 20px;
  height: 100%;
}
.slider_track .slide{
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  width: 400px; /* auto_sliderと数値を合わせると正方形 */
  height: 100%;
}
.slider_track .slide img{
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.no-slider_pagetop{
  position: relative;
  width: 100%;
  height: 60px;
  margin-top: 64px;
}
@media (min-width: 1024px) {
  .slider_auto_gallery{
    height: 400px;
  }
  .slider_auto_gallery .pagetop{
    position: absolute;
    bottom: -80px;
    right: 20px;
  }
  .slider_auto_gallery .pagetop img{
    width: 60px;
    height: 60px;
  }
  .no-slider_pagetop .pagetop{
    position: absolute;
    bottom: -20px;
    right: 20px;
  }
  .no-slider_pagetop .pagetop img{
    width: 60px;
    height: 60px;
  }
}
@media (min-width: 768px) and (max-width: 1023px){
  .slider_auto_gallery{
    height: 200px;
  }
  .slider_auto_gallery .pagetop{
    position: absolute;
    bottom: -60px;
    right: 20px;
  }
  .slider_auto_gallery .pagetop img{
    width: 40px;
    height: 40px;
  }
  .auto_slider{
    height: 200px;
  }
  .slider_track .slide{
    width: 200px;
  }
  .no-slider_pagetop .pagetop{
    position: absolute;
    bottom: -20px;
    right: 20px;
  }
  .no-slider_pagetop .pagetop img{
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width:767px){
  .slider_auto_gallery{
    height: 160px;
  }
  .slider_auto_gallery .pagetop{
    display: none;
  }
  .auto_slider{
    height: 160px;
  }
  .slider_track .slide{
    width: 160px;
  }
  .no-slider_pagetop{
    display: none;
  }
}

/* sp_footer_btn --------------------------------- */
.sp_footer_btn{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 999;
}
.sp_footer_btn .inner{
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.sp_footer_btn .inner .sp_f_reserve{
  flex: 1;
}
.sp_footer_btn .inner .sp_f_reserve a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  background-color: #e5beaf;
  color: #fff;
}
.sp_footer_btn .inner .sp_f_insta{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 100%;
  background-color: #645a46;
}
.sp_footer_btn .inner .sp_f_insta img{
  width: 28px;
  height: auto;
}
.sp_footer_btn .inner .sp_f_pagetop{
  width: 60px;
}
.sp_footer_btn .inner .sp_f_pagetop a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  background-color: #faf2ef;
}
.sp_footer_btn .inner .sp_f_pagetop a img{
  width: 100%;
  height: auto;
}

/* footer --------------------------------- */
.footer_logo{
  text-align: center;
}
.footer_logo img{
  width: auto;
  height: 150px;
}
.footer_sns_icon{
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.footer_sns_icon .insta img{
  width: auto;
  height: 32px;
}
.footer_nav{
  margin-top: 56px;
}
.footer_nav ul{
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_nav ul li + li{
  margin-left: 50px;
}
.footer_nav ul li a{
  font-weight: var(--fwb);
}
.footer_nav ul li a span{
  display: inline-block;
  margin-right: 10px;
  color: #b1aca2;
  font-size: 14px;
}
@media (min-width: 768px) and (max-width: 1023px){
  .footer_logo img{
    width: 240px;
    height: auto;
  }
}
@media (max-width: 767px){
  .footer_logo img{
    width: 220px;
    height: auto;
  }
  .footer_nav{
    margin-top: 24px;
  }
  .footer_nav ul{
    display: block;
    padding-right: 24px;
    padding-left: 24px;
  }
  .footer_nav ul li{
    padding-top: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e6beb0;
  }
  .footer_nav ul li + li{
    margin-left: 0;
  }
}

.footer_info_wrap{
  width: 100%;
  max-width: var(--wd-a);
  margin-top: 64px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 64px;
  padding-right: 64px;
  padding-bottom: 16px;
  padding-left: 64px;
  background-color: #b1aca2;
  color: #fff;
}
.footer_info_wrap .inner{
  display: flex;
  justify-content: space-between;
  gap: 64px;
}
@media (min-width: 768px) and (max-width: 1023px){
  .footer_info_wrap{
    padding-right: 40px;
    padding-left: 40px;
  }
  .footer_info_wrap .inner{
    display: block;
  }
}
@media (max-width: 767px){
  .footer_info_wrap{
    padding-right: 16px;
    padding-left: 16px;
  }
  .footer_info_wrap .inner{
    display: block;
  }
}

.footer_info_wrap .consultation_hours_wrap{
  flex: 1;
  max-width: 664px;
}
.consultation_hours table{
  width: 100%;
  font-size: 14px;
}
.consultation_hours th{
  background-color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #645a46;
  font-weight: var(--fwb);
  text-align: center;
}
.consultation_hours th.day{
  width: 10%;
}
.consultation_hours th.daynon{
  width: 6%;
}
.consultation_hours td{
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e1dfdb;
  text-align: center;
}
.consultation_hours .time{
  font-family: var(--ffen);
  font-weight: var(--fwb);
}
.consultation_hours_wrap p{
  margin-top: 16px;
  font-size: 14px;
}
.consultation_hours_wrap p .closed{
  display: inline-block;
  margin-right: 16px;
  padding: 10px;
  border: 1px solid #e1dfdb;
}
@media (max-width: 767px){
  .consultation_hours th.day{
    /*width: 40px;*/
    width: 10%;
  }
  .c_h_aleat{
    font-size: 12px !important;
  }
}

.footer_info_wrap .footer_info{
  flex: 1;
  max-width: 514px;
}
.footer_info .address{
  font-size: 14px;
}
.footer_info .address a{
  color: #fff;
  text-decoration: underline;
}
.footer_info .address a:hover{
  color: #ccc;
  text-decoration: none;
}
.footer_info .footer_contact_wrap{
  margin-top: 32px;
}
.footer_contact_wrap .footer_contact_title{
  font-weight: var(--fwb);
}
.footer_contact{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.footer_contact .f_c_btn{
  width: 252px;
}
.footer_contact .f_c_btn a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 72px;
  background-color: inherit;
  border: 1px solid #e1dfdb;
  color: #fff;
  cursor: pointer;
}
.footer_contact .f_c_btn a:hover{
  background-color: #fff;
  color: #645a46;
}
.footer_contact_wrap p{
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.4;
}
.cp{
  margin-top: 32px;
  font-size: 14px;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1023px){
  .footer_info_wrap .consultation_hours_wrap{
    width: 100%;
    max-width: 100%;
  }
  .footer_info_wrap .footer_info{
    max-width: 100%;
    margin-top: 40px;
  }
  .footer_contact_wrap{
    width: 100%;
  }
  .footer_contact .f_c_btn{
    width: 50%;
  }
  .cp{
    font-size: 12px;
    line-height: 1.4;
  }
}
@media (max-width: 767px){
  .footer_info_wrap{
    padding-bottom: 80px;
  }
  .footer_info{
    margin-top: 40px;
  }
  .footer_info .address{
    line-height: 1.4;
  }
  .footer_contact{
    flex-direction: column;
    gap: 16px;
  }
  .footer_contact .f_c_btn{
    width: 100%;
  }
  .footer_contact .f_c_btn a{
    height: 60px;
  }
  .cp{
    font-size: 12px;
    line-height: 1.4;
  }
}




