@charset "UTF-8";

/* =========================
  base
========================= */
html {
  scroll-behavior: smooth;
  font-size: 62.5%; /* 1rem = 10px */
  -webkit-text-size-adjust:100%;
  text-size-adjust: 100%;
  box-sizing: border-box;
}

body {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
}

a{
    color: inherit;
    text-decoration: none;
}

*, *::before, *::after {
    box-sizing: inherit;
  }

img{
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================
  common
========================= */
/* PCのみ表示 */
.pc-only {
    display: block;
  }
  
  @media screen and (max-width: 959px) {
    .pc-only {
      display: none;
    }
  }

 /* タブレットのみ表示 */
 .tb-only {
    display: none;
  }
  
  @media screen and (min-width: 640px) and (max-width: 959px) {
    .tb-only {
      display: block;
    }
  }

  /* スマホのみ表示 */
  .sp-only {
    display: none;
  }
  
  @media screen and (max-width: 639px) {
    .sp-only {
      display: block;
    }
  }

  /* PCとタブレットで表示（スマホ非表示） */
  .pc-tb-only {
    display: block;
  }
  
  @media screen and (max-width: 639px) {
    .pc-tb-only {
      display: none;
    }
  }

  /* タブレットとスマホで表示（PC非表示） */
  .tb-sp-only {
    display: none;
  }
  
  @media screen and (max-width: 959px) {
    .tb-sp-only {
      display: block;
    }
  }

  .js-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
  }
  
  .js-fade-up.is-show {
    opacity: 1;
    transform: translateY(0);
  }


/* =========================
  header
========================= */
.header {
    position: fixed;
    top: 0;
  z-index: 100;
  height: 90px;
  display: flex;
    justify-content: space-between;
    width: 100%;
}
.header__logo{
    background-color: #fff;
  border-radius: 0 0 20px 0;
  padding: 15px 48px 15px 30px;
    display: flex;
  align-items: center;
}
.header_logo{
    width: 230px;
    display: block;
    margin-right: 14px;
}
.header_ad{
    font-size: 12px;
    line-height: 1.17;
    letter-spacing: 0.03em;
    margin-left: 14px;
    display: block;
}
.header_divider{
    width: 1px;
    height: 20px;
    background-color: #B4B4B4;
}

.fixed_btnarea{
    display: flex;
    gap: 10px;
    padding: 11px 40px 0 0;
}
.fixed_btnarea .btn_line{
    width: 280px;
}
.fixed_btnarea .btn_tel{
    width: 240px;
}

@media screen and (min-width: 640px) and (max-width: 959px) {
    .header {
      height: 80px;
    }
    .header__logo{
      padding: 8px 14px 8px 20px;
    }
    .header_logo{
        width: 200px;
    }
    .fixed_btnarea{
        gap: 5px;
        padding: 11px 10px 0 0;
    }
    .fixed_btnarea .btn_line{
        width: 186px;
    }
    .fixed_btnarea .btn_tel{
        width: 170px;
    }
  
  }

@media screen and (max-width: 639px) {
    .header {
      height: 76px;
    }
    .header__logo{
      border-radius: 0 0 0px 0;
      padding: 8px 20px 8px 20px;
      width: 100vw;
    }
    .header_logo{
        width: 210px;
        margin-right: 8px;
    }
    .header_ad{
        font-size: 12px;
        margin-left: 8px;
    }
    .header_divider{
        width: 1px;
        height: 20px;
        background-color: #B4B4B4;
    }
    
    .fixed_btnarea{
        z-index: 100;
        position: fixed;
        bottom: 0;
        width: 100%;
        padding: 8px 14px 8px;
        background-color: rgba(255, 255, 255, 0.7);
        flex-direction: column;
        gap: 0px;
        
        opacity: 0;
        pointer-events: none;
        transition: 0.3s;
    }
    .fixed_btnarea.is-show {
        opacity: 1;
        pointer-events: auto;
    }
    .fixed_btnarea_inner{
        display: flex;
        gap: 6px;
    }
    .fixed_btnarea .btn_line{
        width: 52%;
    }
    .fixed_btnarea .btn_tel{
        width: 47%;
    }
    .fixed_bot_text{
        font-size: 1.1rem;
        line-height: 1.2;
        text-align: center;
    }
  
  }

/* =========================
  fv
========================= */
.fv {
  width: 100%;
  height: 810px;
  background-image: url(../images/fv_bg.webp);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}
.fv_content{
    width: 50%;
    margin-left: auto;
}
.fv_right{
    max-width: 640px;
    width: auto;
    padding-right: 10px;
    padding-top: 166px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.fv_right a {
    display: block;
  }

  @media screen and (min-width: 640px) and (max-width: 959px) {
    .fv {
        width: 100%;
        height: 550px;
      }
      .fv_right{
        padding-top: 130px;
        gap: 12px;
    }
  
  }

  @media screen and (max-width: 639px) {
    .fv {
        width: 100%;
        height: auto;
        background-image: none;
        background-color: #eceae7;
      }
      .fv_content{
          width: auto;
          margin-left: auto;
      }
      .fv_bg_sp{
        display: block;
      }
      .fv_right{
          padding: 6px 20px 24px;
          gap: 6px;
      }
      .fv_right_img{
        position: relative;
        left: 2%;
      }
      .fv_right a {
          display: block;
        }
  
  }

/* =========================
  お悩み
========================= */
.onayami{
    height: 737px;
    width: 100%;
    background-color: #E7F3F0;
    background-image: url(../images/onayami_bg.png);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
}
.onayami_inner{
    width: 790px;
    margin: 0 auto;
    position: relative;
}
.onayami_h2{
    margin: 0 auto;
    width: 322px;
    padding: 70px 0 65px;
}
.onayami_imgs{
    width: 275px;
    display: block;
    position: absolute;
    top: 39px;
    left: -220px;
}
.onayami_list{
    width: 708px;
    margin: 0 auto;
}
.onayami_list .col{
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.onayami_list .col_{
    width: 343px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.onayami_list .li{
    width: 160px;
    display: inline-block;
    padding-left: 1.1em;
    padding-bottom: 0.2em;
    margin-bottom: 12px;
    color: #fff;
    line-height: 1.3;
    border-bottom: 1px dotted #fff;
    font-weight: 700;
    font-size: 19px;
    position: relative;
}
.onayami_list .li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 1em;
    height: 1em;
    background-image: url("../images/onayami_check.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
  .li_bot{
    display: flex;
    justify-content: space-between;
  }
  .onayami_bot_text{
    width: 260px;
    display: block;
    margin: 40px auto 0;
    animation: pulseDouble 2.2s infinite;
    transform-origin: center;
  }
  @keyframes pulseDouble {
    0% {
      transform: scale(1);
    }
  
    /* 1回目 ちょい大きく */
    10% {
      transform: scale(1.08);
    }
    18% {
      transform: scale(1);
    }
  
    /* 2回目 もう一回 */
    26% {
      transform: scale(1.08);
    }
    34% {
      transform: scale(1);
    }
  
    /* 少し間を空ける（余韻） */
    100% {
      transform: scale(1);
    }
  }
  .onayami_bot_line{
    position: absolute;
    display: block;
    bottom: 7px;
    left: 49.8%;
    transform-origin: top;
    animation: arrowDrop 1.6s ease-out infinite;
  }
  @keyframes arrowDrop {
    0% {
      transform: scaleY(0);
      opacity: 0;
    }
  
    30% {
      transform: scaleY(1);
      opacity: 1;
    }
  
    70% {
      transform: scaleY(1);
      opacity: 1;
    }
  
    100% {
      transform: scaleY(1);
      opacity: 0;
    }
  }

  @media screen and (min-width: 640px) and (max-width: 959px){
    .onayami{
        height: 479px;
      }
    
      .onayami_inner{
        width: 514px;
      }
    
      .onayami_h2{
        width: 230px;
        padding: 28px 0 34px;
    }
    .onayami_imgs{
        width: 180px;
        top: 16px;
        left: -120px;
    }
    .onayami_list{
        width: 460px;
    }
    .onayami_list .col_{
        width: 220px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
      }
    
      .onayami_list .li{
        width: 102px;
        padding-left: 1.1em;
        padding-bottom: 0.2em;
        margin-bottom: 8px;
        font-size: 12.5px;
        line-height: 1.3;
      }
    
      .onayami_bot_text{
        width: 170px;
        margin: 20px auto 0;
      }

      .onayami_bot_line{
        bottom: -22px;
        left: 49.6%;
        position: relative;
        z-index: 2;
      }
    
  
  }

  @media screen and (max-width: 639px) {
    .onayami{
        height: auto;
        width: 100%;
        background-color: #333;
        background-image: none;
        position: relative;
        z-index: 1;
        padding-bottom: 40px;
    }
    .onayami::after {
        content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) translateY(100%);

    width: 0;
    height: 0;

    border-left: 50vw solid transparent;
    border-right: 50vw solid transparent;
    border-top: 40px solid #333;

    z-index: 1;
    pointer-events: none;
      }
    .onayami_inner{
        position: relative;
    z-index: 2;
    width: auto;
    padding: 0 6px;
    }
    .onayami_h2{
        width:  auto;
        padding: 16px 0;
    }
    .onayami_imgs{
        display: none;
    }
    .onayami_list{
        width: auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
    }

    .onayami_list .li{
        width: 48%;
        display: inline-block;
        padding-left: 1.1em;
        padding-bottom: 0.2em;
        margin-bottom: 0px;
        font-size: 1.6rem;
    }
    .onayami_list .li::before {
        top: 0.2em;
        width: 1em;
        height: 1em;
        background-image: url("../images/onayami_check.svg");
      }
      .onayami_bot_text{
        width: 52%;
        margin: 40px auto 0;
      }
      .onayami_bot_line{
        position: absolute;
        bottom: -91px;
        left: 49%;
        z-index: 2;
      }
  
  }

/* =========================
  根本ケア
========================= */
.root_care{
    background-color: #E7F3F0;
    background-image: url(../images/root_bg.webp);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 1400px auto;
    position: relative;
}
.root_intro{
    text-align: center;
    position: relative;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.8;
    color: #333;
    padding: 12px 20px;
    margin: 0 auto;
    width: 550px;
}
.root_intro::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-100%, -50%);
  
    width: 94px;     /* SVGの横幅に合わせる */
    height: 200px;    /* 指定どおり */
  
    background: url("../images/root_intro_l.svg") no-repeat center / contain;
  }
  .root_intro::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(100%, -50%);
  
    width: 94px;
    height: 200px;
  
    background: url("../images/root_intro_r.svg") no-repeat center / contain;
  }
  .root_mid_text{
    font-weight: 600;
    text-align: center;
    margin: 20px auto 4px;
  }
  .root_mid_ttl{
    max-width: 740px;
    padding: 0 20px;
    margin: 0 auto;
    display: block;
  }
  .root_content{
    display: flex;
    justify-content: space-around;
    max-width: 1062px;
    padding: 0 10px;
    margin: -180px auto 90px;
  }
  .root_list{
    width: 340px;
    border: 2px solid transparent;
    border-radius: 12px;
    position: relative;
  }
  .rl1{
    background: url("../images/root_GOODS.svg") no-repeat bottom / 98% auto, linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #0ABAAB, #0ABA77) border-box;
  }
  .rl2{
    background: url("../images/root_OVERALL.svg") no-repeat bottom / 98% auto, linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #0ABAAB, #0ABA77) border-box;
  }
  .rl3{
    background: url("../images/root_MASSAGE.svg") no-repeat bottom / 98% auto, linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #0ABAAB, #0ABA77) border-box;
  }

  .root_list_ttl{
    color: #fff;
    background: linear-gradient(to right, #0ABAAB, #0ABA77) border-box;
    border-radius:10px 10px 0 0;
    padding: 12px 10px;
    line-height: 1.4;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
  }
  .root_li_img{
    width: 154px;
    display: block;
    margin: 30px auto 4px;
  }
  .root_list_sub{
    font-size: 20px;
    font-weight: 700;
    color: #0ABAB5;
    text-align: center;
    margin-bottom: 6px;
  }
  .root_y_yajirushi{
    margin: 0 auto 4px;
    width: 37px;
    height: 25px;
  }

  .root_li_text{
    font-size: 19px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    padding: 0 8px 10px;
  }
  .root_bot_massage{
    width: 829px;
    padding-bottom: 90px;
    margin: 0 auto;
    display: block;
  }
  .root_care .triangle {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-top: 70px solid #FFE500;
  
    position: absolute;
    left: 50%;
    bottom: -20px;
  
    transform: translateX(-50%);
    animation: triangleBounce 1s ease-in-out infinite;

  z-index: 2;
  }
  @keyframes triangleBounce {
    0%, 100% {
      transform: translateX(-50%) translateY(0);
    }
  
    50% {
      transform: translateX(-50%) translateY(6px);
    }
  }

  @media screen and (min-width: 640px) and (max-width: 959px) {
    .root_list{
        width: 32%;
      }
      .root_mid_ttl{
        max-width: 570px;
        padding: 0 20px;
      }
      .root_list_sub{
        font-size: 20px;
        padding: 0 18px;
        margin-bottom: 6px;
      }
      .root_content{
        padding: 0 10px;
        margin: -106px auto 100px;
      }
      .root_bot_massage{
        width: 665px;
        padding: 0 20px;
        padding-bottom: 70px;
      }
  }

  @media screen and (max-width: 639px) {
    .root_care{
        background-image: url(../images/root_bg.webp);
        background-size: 100vw auto;
        padding-top: 86px;
    }
    .root_intro{
        font-size: 1.5rem;
        padding: 12px 8px;
        margin: 0 auto;
        width: 80vw;
        z-index: 2;
    }
    .root_intro::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(-30%, -50%);
      
        width: 22vw;
        height: 190px;
      
        background: url("../images/root_intro_l.svg") no-repeat center / contain;
      }
      .root_intro::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        transform: translate(30%, -50%);
      
        width: 22vw;
        height: 190px;
      
        background: url("../images/root_intro_r.svg") no-repeat center / contain;
      }
      .root_mid_text{
        font-size: 1.3rem;
        margin: 14px auto 4px;
      }
      .root_mid_ttl{
        width: 100%;
        padding: 0 10px;
      }
      .root_content{
        flex-direction: column;
        gap: 12px;
        width: auto;
        padding: 0 20px;
        margin: -84px auto 30px;
      }
      .root_list{
        width: auto;
      }
    
      .root_list_ttl{
        padding: 12px 10px;
        font-size: 20px;
      }
      .root_li_img{
        width: 44%;
        margin: 18px auto 4px;
      }
      .root_list_sub{
        font-size: 20px;
        margin-bottom: 6px;
      }
      .root_y_yajirushi{
        margin: 0 auto 4px;
        width: 37px;
        height: 25px;
      }
    
      .root_li_text{
        font-size: 1.6rem;
        padding: 0 12px 16px;
      }
      .root_bot_massage{
        width: auto;
        padding: 0 20px;
        padding-bottom: 90px;
      }
      .root_care .triangle {
        border-left: 42px solid transparent;
        border-right: 42px solid transparent;
        border-top: 49px solid #FFE500;
    
        bottom: -14px;
      }
  
  }

/* =========================
  4つのこだわり
========================= */
.kodawari{
    background-color: #48BCB9;
    padding: 20px 0 100px;
    position: relative;
}
.kodawari::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
  
    width: 429px;
    height: 746px;
  
    background: url("../images/kodawari_bgimg.png") no-repeat left top / contain;
  }
  .kodawari .right-deco{
    content: "";
    position: absolute;
    right: 0;
    top: 804px;
  
    width: 428px;
    height: 746px;
  
    background: url("../images/kodawari_bgimg_r.png") no-repeat center / contain;
  }
  .kodawari::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
  
    width: 429px;
    height: 746px;
  
    background: url("../images/kodawari_bgimg.png") no-repeat left bottom / contain;
  }
.kodawari_ttl{
    max-width: 925px;
    padding: 0 20px;
    margin: 0 auto 50px;
}

.kodawari_list{
    max-width: 1260px;
    width: auto;
    height: 400px;
    padding: 0 20px;
    margin: 0 auto 20px;
    position: relative;
    background-size: 800px 400px;
    background-repeat: no-repeat;
    overflow: hidden;
}
    /* アニメーション ※js-step-itemは施術の流れと共通 */
    /* 左から */
    .js-step-item.from-left {
      transform: translateX(-20px) translateY(30px) scale(0.9);
    }
    
    /* 右から */
    .js-step-item.from-right {
      transform: translateX(20px) translateY(30px) scale(0.9);
    }
    /* アニメーションここまで */
.kodawari .bg_r1{
    background-image: url(../images/kodawari1.png);
    background-position: right center;
}
.kodawari .bg_l1{
    background-image: url(../images/kodawari2.png);
    background-position: left center;
}
.kodawari .bg_r2{
    background-image: url(../images/kodawari3.png);
    background-position: right center;
}
.kodawari .bg_l2{
    background-image: url(../images/kodawari4.png);
    background-position: left center;
}

.kodawari .text_l{
    width: 630px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    position: relative;
}
.kodawari .text_r{
    width: 630px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    margin: 0 0 0 auto;
}

.kodawari .p1bg{
    background-image: url(../images/kodawari_point1_RIB.svg);
    background-size: 137px 110px;
    background-repeat: no-repeat;
    background-position: top left;
}
.kodawari .p2bg{
    background-image: url(../images/kodawari_point2_WHOLEBODY.svg);
    background-size: 474px 110px;
    background-repeat: no-repeat;
    background-position: top right;
}
.kodawari .p3bg{
    background-image: url(../images/kodawari_point3_NUMBER.svg);
    background-size: 319px 110px;
    background-repeat: no-repeat;
    background-position: top left;
}
.kodawari .p4bg{
    background-image: url(../images/kodawari_point4_TECHNIQUE.svg);
    background-size: 407px 110px;
    background-repeat: no-repeat;
    background-position: top right;
}
.kodawari .textarea{
    background-color: #fff;
    background-image: url(../images/kodawari_point_bg.svg);
    background-repeat: no-repeat;
    background-position: right;
    border-radius: 8px;
    width: 450px;
    height: 240px;
    display: block;
    position: relative;
    top: 70px;
    padding: 30px 40px;
    box-shadow: 4px 4px 15px 0 rgba(0, 0, 0, 0.15);
}
.kodawari .text_l .textarea{
    position: relative;
    left: 10px;
}
.kodawari .text_r .textarea{
    position: relative;
    right: 10px;
}

.kodawari .point_ttl{
    display: flex;
    border-bottom: 1px solid rgba(135, 135, 135, 0.5);
}
.kodawari .point_ttl img{
    display: block;
    width: 62px;
    margin-right: 26px;
}
.kodawari .point_ttl p{
    flex: 1;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.3;
    color: #333;
}
.kodawari_text{
    line-height: 2;
    padding-top: 10px;
}

@media screen and (min-width: 640px) and (max-width: 959px) {
    .kodawari{
        padding: 20px 0 60px;
    }
    .kodawari_ttl{
        max-width: 82vw;
        margin: 0 auto 30px;
    }
    .kodawari_list{
        height: 250px;
        padding: 0 20px;
        margin: 0 auto 20px;
        background-size: 500px 250px;
    }
    .kodawari .text_l{
        width: 400px;
    }
    .kodawari .text_r{
        width: 400px;
    }
    .kodawari .p1bg{
        background-size: 96px 77px;
      }
    
      .kodawari .p2bg{
        background-size: 332px 77px;
      }
    
      .kodawari .p3bg{
        background-size: 223px 77px;
      }
    
      .kodawari .p4bg{
        background-size: 285px 77px;
      }
    
    
    
    .kodawari .textarea{
        width: 380px;
        height: 160px;
        top: 38px;
        padding: 16px 20px;
    }
    .kodawari .text_l .textarea{
        position: relative;
        left: 10px;
    }
    .kodawari .text_r .textarea{
        position: relative;
        right: 10px;
    }
    .kodawari .point_ttl{
        padding-bottom: 8px;
    }
    .kodawari .point_ttl img{
        width: 40px;
        margin-right: 12px;
    }
    .kodawari .point_ttl p{
        font-size: 24px;
    }
    .kodawari_text{
        line-height: 1.7;
        padding-top: 6px;
        font-size: 1.5rem;
    }
    
  
  }

@media screen and (max-width: 639px) {
    .kodawari{
        padding: 20px 0 50px;
    }
    .kodawari::before{
        width: 50vw;
        height: 86.9vw;
      }
      .kodawari .right-deco{
        content: "";
        position: absolute;
        right: 0;
        top: 804px;
      
        width: 50vw;
        height: 86.9vw;
      }
      .kodawari::after{
         width: 50vw;
        height: 86.9vw;
      }
    .kodawari_ttl{
        padding: 0 26px;
        margin: 0 auto 10px;
    }

    
    .kodawari_list{
        width: 100vw;
        height: auto;
        padding: 0 20px;
        margin: 0 auto 10px;
        background: none;
    }
    
    .kodawari_li_img{
        width: auto;
        display: block;
    }
    
    .kodawari .text_center{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        position: relative;
        top: 0;
    }
    
    .kodawari .p1bg{
        background-size: calc(137 / 474 * 90vw) auto;
      }
      .kodawari .p2bg{
        background-size: 90vw auto;
      }
      .kodawari .p3bg{
        background-size: calc(319 / 474 * 90vw) auto;
      }
      .kodawari .p4bg{
        background-size: calc(407 / 474 * 90vw) auto;
      }
 
    .kodawari .textarea{
        border-radius: 8px;
        width: 90vw;
        height: 48vw;
        top: 0px;
        padding: 20px;
        box-shadow: 4px 4px 15px 0 rgba(0, 0, 0, 0.15);
        margin: 40px auto 12px;
    }
   
    .kodawari .point_ttl img{
        display: block;
        width: 46px;
        margin-right: 14px;
    }
    .kodawari .point_ttl p{
        font-size: 2.2rem;
    }

  
  }

/* =========================
  施術の流れ
========================= */
.flow{
    background-color: #C0C0C0;
    position: relative;
}
.flow::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
  
    width: 100vw;
    height: 41.632vw;
  
    background: url("../images/flow_bg_top.webp") no-repeat center top / contain;
  }
  .flow::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
  
    width: 100vw;
    height: 31.007vw;
  
    background: url("../images/flow_bg_bottom.webp") no-repeat center bottom / contain;
  }
.flow_h2{
    max-width: 675px;
    width: auto;
    padding: 40px 20px 0;
    margin: 0 auto 50px;
    position: relative;
    z-index: 2;
    left: -40px;
}
.flow_content{
    max-width: 1140px;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
/* アニメーション */
.js-step-item {

    opacity: 0;
  
    transform: translateY(30px) scale(0.9);
  
    transition:
  
      opacity 0.7s ease,
  
      transform 0.7s ease;
  
    will-change: opacity, transform;
  
  }
  
  .js-step-item.is-show {
  
    opacity: 1;
  
    transform: translateX(0) translateY(0) scale(1);
  
  }
  
  /* 少しだけ順番感を残す */
  
  .step-delay-1 {
  
    transition-delay: 0s;
  
  }
  
  .step-delay-2 {
  
    transition-delay: 0.06s;
  
  }
  
  .step-delay-3 {
  
    transition-delay: 0.12s;
  
  }
  
  .step-delay-4 {
  
    transition-delay: 0.18s;
  
  }
  
  .step-delay-5 {
  
    transition-delay: 0.24s;
  
  }
  /* アニメーションここまで */
.flow_list{
    width: 200px;
    display: flex;
    flex-direction: column;
    position: relative;
}
.flow_list img{
    display: block;
}
.flow_text{
    background-color: #fff;
    border-radius: 0 0 12px 12px;
    padding: 15px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    font-size: 1.56rem;
    flex: 1;
}
.flow_text_bold{
    display: block;
    color: #0ABAB5;
    text-align: center;
    font-weight: 700;
    font-size: 23px;
    line-height: 1.4;
    padding-bottom: 12px;
    border-bottom: 1px #0ABAB5 solid;
    margin-bottom: 14px;
}
.flow_content .next::after{
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;

    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 15px solid #FFE500;
}
.flow_cta{
    padding: 50px 20px;
    position: relative;
    z-index: 2;
}
.flow_cta_inner{
    max-width: 1100px;
    width: auto;
    height: 280px;
    padding: 0 130px;
    margin: 0 auto;
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    background-color: #818181;
    border-radius: 200px;
    position: relative;
}
.flow_cta_img1{
    /* width: 330px; */
    flex: 0.84;
    min-width: 0;
    display: block;
    position: relative;
    top: -7px;
}
.flow_cta_btnarea{
    flex: 1.4;
    margin-left: -40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

@media screen and (min-width: 640px) and (max-width: 959px) {
    .flow_content{
       width: auto;
        padding: 0 20px;
    }
    .flow_list{
        width: 18.4%;
    }
    .flow_text{
        font-size: 1.4rem;
        flex: 1;
        padding: 8px 10px 12px;
    }
    .flow_text_bold{
        font-size: 1.64rem;
        padding-bottom: 8px;
        margin-bottom: 8px;
    }
    .flow_content .next::after{
        right: -14px;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 10px solid #FFE500;
    }

    .flow_cta{
        padding: 24px 10px 40px;
    }
    .flow_cta_inner{
        width: 620px;
        height: 166px;
        padding: 0 70px;
    }
    .flow_cta_img1{
        flex: 0.78;
        min-width: 0;
        display: block;
        position: relative;
        bottom: 0;
    }
    .flow_cta_btnarea{
        flex: 1.2;
        margin-left: -30px;
        gap: 10px;
        z-index: 3;
    }
  }

@media screen and (max-width: 639px) {
    .flow_h2{
        padding: 16px 20px 0;
        margin: 0 auto 30px;
        left: 0px;
    }
    .flow_content{
        flex-direction: column;
        gap: 22px;
    }
    .flow_list{
        width: 84%;
        margin: 0 auto;
    }
    .flow_text{
        border-radius: 0 0 12px 12px;
        padding: 15px;
        font-size: 1.4rem;
    }
    .flow_text_bold{
        font-size: 2rem;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    .flow_content .next::after{
        content: "";
        position: absolute;
    
        left: 50%;
        bottom: -20px;
        top: auto;
    
        transform: translateX(-50%);
    
        width: 0;
        height: 0;
    
        border-left: 14px solid transparent;
        border-right: 14px solid transparent;
        border-top: 15px solid #FFE500;
        border-bottom: none;
      }
    
    .flow_cta{
        padding: 30px 20px;
    }
    .flow_cta_inner{
        height: auto;
        padding: 0px 20px 14px;
        border-radius: 40px;
        flex-direction: column;
        align-items: center;
    }
    .flow_cta_img1{
        flex: none;
        top: -16px;
        width: 74%;
        margin: 0 auto -10px;
    }
    .flow_cta_btnarea{
        flex: 1;
        margin-left: 0px;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
  
  }

/* =========================
  変化の声
========================= */
.change{
    background-image: url(../images/change_bg.webp);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 100px;
}
.change_sec1,.change_sec2{
    position: relative;
    width: 100vw;
}

.change_ttl{
    max-width: 640px;
    width: auto;
    padding: 0 20px;
    margin: 0 auto;
}

.line_anim {
    position: absolute;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);

    background-repeat: no-repeat;

  background-position: center;

  background-size: 100% 100%;
  }
 

  .line_anim1 {
    top: 0;
    height: 26.161vw;
    background-image: url("../images/change_line1.svg");
  }
  
  /* .line_anim1::before {
    background-image: url("../images/change_line1.svg");
  } */
  .line_anim2 {
    top: 0;
    height: 27.151vw;
    background-image: url("../images/change_line2.svg");
  }
  
  /* .line_anim2::before {
    background-image: url("../images/change_line2.svg");
  } */

  /* スライド */
  .gallery-flow {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
  }
  
  .gallery-flow__track {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    animation: galleryLoop 40s linear infinite reverse;
    will-change: transform;
  }
  
  .gallery-flow__track:hover {
    animation-play-state: paused;
  }
  
  .gallery-card {
    flex-shrink: 0;
    width: calc((100% - 72px) / 4); /* 4列 */
    max-width: 320px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
  }
  
  .gallery-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
  }
  
  @keyframes galleryLoop {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }
  /* modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .modal.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  
  .modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
  }
  
  .modal__content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(90vw, 900px);
    max-height: 90vh;
    transform: translate(-50%, -50%);
  }
  
  .modal__image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 16px;
  }
  
  .modal__close {
    position: absolute;
    top: -44px;
    right: 0;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}
.change_sec2{
    position: relative;
    width: 100vw;
}
.change_ttl2{
    max-width: 235px;
    width: auto;
    padding: 0 20px;
    margin:0 auto 20px;
    position: relative;
    z-index: 2;
}

.change_sec2_content{
    max-width: 920px;
    width: auto;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 20px;
    position: relative;
    z-index: 2;
}
.change_sec2_content .koe{
    width: 430px;
    background-color: #fff;
    display: flex;
    padding: 20px 16px;
    align-items: center;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}
.koe_icon{
    display: block;
    width: 70px;
    margin-right: 15px;
}
.change_sec2_text{
    flex: 1;
    line-height: 1.36;
}
.change_sec2_content .person{
    display: block;
    color: #909090;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
}
.change_sec2_content .person::before{
    content: "";
    display: inline-block;

    width: 1em;
    height: 1em;

    background: url("../images/change_koe_pe_icon.svg") no-repeat center / contain;

    margin-right: 0.3em;
    vertical-align: middle;
}

.change_sec2_more {
    margin-top: 20px;
    margin-bottom: 10px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease;
  }
  
  .change_sec2_more.is-open {
    max-height: 2000px;
  }

  .koe_under_area{
    max-width: 920px;
    width: auto;
    padding: 0 20px;
    margin: 0 auto;
  }
  .koe_under{
    font-size: 1.3rem;
    line-height: 1;
    text-align: right;
    font-weight: 400;
    color: #333333;
  }
  
  .change_more_btn {
    display: block;
    width: 330px;
    height: 70px;
    margin: 20px auto 0;
    padding: 16px 20px;
    border: none;
    border-radius: 9999px;
    background-color: #fff;
    color: #0ABAB5;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
  }

  @media screen and (min-width: 640px) and (max-width: 959px) {
    .change_ttl{
        width: 70vw;
    }
    .gallery-flow__track {
        gap: 12px;
    }
    .gallery-card {
        flex-shrink: 0;
        width: calc((100vw - 24px) / 3);
        max-width: 320px;
        padding: 0;
        border: none;
        background: transparent;
        cursor: pointer;
    }

    .change_ttl2{
        width: 26vw;
    }
    .change_sec2_content .koe{
        width: 48.6%;
        padding: 16px 16px;
    }
    .koe_icon{
        width: 60px;
        margin-right: 15px;
    }
  
  }

  @media screen and (max-width: 639px) {
    .change{
        background-image: url(../images/change_bg_sp.webp);
        background-position: bottom center;
        padding-bottom: 60px;
    }
    .change_ttl{
        width: 93vw;
        position: relative;
        left: -1%;
        top: 10px;
    }
    
    .line_anim {
        position: absolute;
        left: 50%;
        width: 100vw;
        transform: translateX(-50%);
      }
      
      .line_anim::before {
        content: "";
        position: absolute;
        inset: 0;
      
        background: no-repeat left center / 100% 100%;
      
        -webkit-mask: linear-gradient(to right, #000 0%, transparent 0%);
        mask: linear-gradient(to right, #000 0%, transparent 0%);
      
        transition: 1s ease;
      }
      
      .line_anim.is-show::before {
        -webkit-mask: linear-gradient(to right, #000 100%, transparent 100%);
        mask: linear-gradient(to right, #000 100%, transparent 100%);
      }
    
      .line_anim1 {
        top: 0;
        height: 300px;
      }
      
      .line_anim1::before {
        background-image: url("../images/change_line1.svg");
      }
      .line_anim2 {
        top: 0;
        height: 280px;
      }
      
      .line_anim2::before {
        background-image: url("../images/change_line2.svg");
      }
    
      /* スライド */
      .gallery-flow {
        overflow: hidden;
        width: 100%;
        padding: 20px 0;
      }
      
      .gallery-flow__track {
        display: flex;
        align-items: center;
        gap: 10px;
        width: max-content;
      }
      
      .gallery-card {
        width: calc((100vw - 10px) / 2);
      }
      
      .gallery-card img {
        border-radius: 10px;
      }

    .change_ttl2{
        width: 50%;
        margin:0 auto 20px;
    }
    
    .change_sec2_content{
        gap: 14px;
    }
    .change_sec2_content .koe{
        width: auto;
        padding: 16px 12px;
        box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
    }
    .koe_icon{
        display: block;
        width: 60px;
        margin-right: 10px;
    }
    .change_sec2_content .person{
        line-height: 1.5;
        margin-bottom: 6px;
    }
    
    .change_sec2_more {
        margin-top: 14px;
        margin-bottom: 10px;
      }
      .koe_under{
        font-size: 1.2rem;
      }
      
      .change_more_btn {
        width: 84%;
        height: 60px;
        margin: 20px auto 0;
        padding: 16px 20px;
        font-size: 1.7rem;
      }
  
  }

/* =========================
  推薦
========================= */
.recommended{
    background-image: url(../images/recommended_bg.jpg);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.recommended_ttl{
    max-width: 1140px;
    width: auto;
    padding: 40px 20px 0;
    margin: 0 auto;
}
.recommended_content{
    max-width: 1140px;
    width: auto;
    padding: 40px 20px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.recommended_dr{
    max-width: 540px;
    width: 48%;
    background-color: #fff;
    background-image: url(../images/recommended_card_bg.svg);
    background-position: right top;
    background-size: contain;
    background-repeat: no-repeat;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
}
.recommended_dr{
    padding: 20px 40px 34px;
}
.dr_info{
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #0ABAB5;
}
.dr_ph{
    display: block;
    width: 110px;
    margin-right: 12px;
}
.dr_name{
    flex: 1;
}
.dr_cl_area{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.dr_cl_area2 p{
    font-size: 1.33rem;
}
.dr_cl{
    font-size: 14px;
    line-height: 1.36;
    color: #fff;
    padding: 5px 12px;
    background-color: #F28200;
    border-radius: 100px;
    display: inline-block;
}
.dr{
    font-size: 2rem;
    line-height: 1.3;
    margin-top: 12px;
}
.dr span{
    font-size: 1.6rem;
    display: inline-block;
}
.dr_text span{
    color: #0ABAB5;
    font-size: 2rem;
    line-height: 1.3;
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
}
.dr_text{
    margin-top: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

.recommended_line{
    max-width: 713px;
    width: auto;
    padding: 0 20px 190px;
    margin: 0 auto;
    display: block;
}

@media screen and (min-width: 640px) and (max-width: 959px) {
    .recommended_ttl{
        width: 67vw;
        padding: 50px 20px 0;
    }
    .recommended_dr{
        width: 48.6%;
    }
    .recommended_dr{
        padding: 18px 26px 28px;
    }
    .dr_ph{
        width: 80px;
        margin-right: 8px;
    }
    .dr_text{
        margin-top: 12px;
        font-size: 1.5rem;
    }
    
    .recommended_line{
        width: 66%;
        padding: 0 20px 140px;
    }
  
  }

@media screen and (max-width: 639px) {
    .recommended{
        background-image: url(../images/recommended_bg.jpg);
        background-position: top center;
        background-size: cover;
    }
    
    .recommended_ttl{
        padding: 40px 6px 0;
    }
    .recommended_content{
        padding: 30px 20px;
        gap: 12px;
    }
    .recommended_dr{
        width: auto;
        background-image: url(../images/recommended_card_bg.svg);
        box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
    }
    .recommended_dr{
        padding: 20px 20px 28px;
    }
    .dr_ph{
        width: 80px;
        margin-right: 8px;
    }

    .dr_cl_area2 p{
        font-size: 1.24rem;
    }
    .dr_cl{
        line-height: 1.3;
        padding: 5px 10px;
        border-radius: 100px;
    }
    .dr{
        font-size: 1.8rem;
        margin-top: 10px;
    }
    .dr span{
        font-size: 1.4rem;
    }
    .dr_text span{
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    .dr_text{
        margin-top: 10px;
    }
    
    .recommended_line{
        padding: 0 20px 50px;
    }
  
  }

/* =========================
  多くの患者様に選ばれています
========================= */
.chosen{
    background-image: url(../images/chosen_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    padding: 40px;
}
.chosen_inner{
    border: 1px solid #C7A95A;
}
.chosen_h2{
    max-width: 594px;
    width: auto;
    padding: 0 20px;
    margin: 100px auto 20px;
}
.rated{
    max-width: 572px;
    width: auto;
    padding: 0 20px;
    margin: 0 auto;
    display: block;
}

.chosen_content{
    max-width: 951px;
    width: auto;
    padding: 0 20px;
    margin: -30px auto 80px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.chosen_list{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.chosen_icon{
    width: 100px;
}
.chosen_content .fuki_r{
    margin-left: 20px;
    position: relative;
    background: #fff;
    border-radius: 9999px;
    padding: 30px 70px;

    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);

    max-width: 772px;
    font-weight: 400;
    line-height: 1.2;
}
.chosen_content .fuki_r::before{
    content: "";
    position: absolute;

    top: 50%;
    left: -20px;
    transform: translateY(-50%);

    width: 0;
    height: 0;

    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 20px solid #fff;
}
.chosen_content .fuki_l{
    margin-right: 20px;
    position: relative;
    background: #fff;
    border-radius: 9999px;
    padding: 30px 70px;

    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);

    max-width: 772px;
    font-weight: 400;
    line-height: 1.2;
}
.chosen_content .fuki_l::before{
    content: "";
    position: absolute;

    top: 50%;
    right: -20px;
    transform: translateY(-50%);

    width: 0;
    height: 0;

    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 20px solid #fff;
}

.chosen_content .star{
    width: 92px;
    margin-bottom: 6px;
}
.chosen_content .fuki_text{
    font-weight: 400;
    line-height: 1.2;
}

@media screen and (min-width: 640px) and (max-width: 959px) {
    .chosen_h2{
        width: 60vw;
        padding: 0 20px;
        margin: 60px auto 20px;
    }
    .rated{
        width: 58vw;
    }
    .chosen_content{
        margin: -40px auto 50px;
        gap: 24px;
    }
    .chosen_icon{
        width: 80px;
    }
    .chosen_content .fuki_r{
        padding: 20px 50px;
    }
    .chosen_content .fuki_l{
        padding: 20px 50px;
    }
    .chosen_content .fuki_text{
        font-size: 1.5rem;
    }
  }

@media screen and (max-width: 639px) {
    .chosen{
        background-image: url(../images/chosen_bg.jpg);
        background-size: cover;
        padding: 14px;
    }
    .chosen_h2{
        max-width: 594px;
        width: auto;
        padding: 0 20px;
        margin: 50px auto 20px;
    }
    .rated{
        width: 94vw;
        padding: 0 14px;
    }
    
    .chosen_content{
        padding: 0 12px;
        margin: -30px auto 40px;
        gap: 16px;
    }
    .chosen_icon{
        width: 60px;
    }
    .chosen_content .fuki_r{
        margin-left: 4px;
        border-radius: 20px;
        padding: 20px;
        flex: 1;
    
        box-shadow: 0 0 14px rgba(0, 0, 0, 0.1);
    }
    .chosen_content .fuki_r::before{
        content: "";
        position: absolute;
    
        top: 50%;
        left: -20px;
        transform: translateY(-50%);
    
        width: 0;
        height: 0;
    
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-right: 20px solid #fff;
    }
    .chosen_content .fuki_l{
        margin-right: 4px;
        border-radius: 20px;
        padding: 20px;
        flex: 1;
    
        box-shadow: 0 0 14px rgba(0, 0, 0, 0.1);
    }
    .chosen_content .fuki_l::before{
        content: "";
        position: absolute;
    
        top: 50%;
        right: -20px;
        transform: translateY(-50%);
    
        width: 0;
        height: 0;
    
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-left: 20px solid #fff;
    }
    
    .chosen_content .star{
        width: 92px;
        margin-bottom: 6px;
    }
  
  }


/* =========================
  よくあるご質問
========================= */
.faq{
    background:
    url("../images/faq_bg_top.webp") no-repeat left top / min(80%, 800px) auto,
    url("../images/faq_bg_bottom.webp") no-repeat right bottom / min(80%, 750px) auto,
    #DBD0BE;
}
.faq_h2{
    max-width: 600px;
    width: auto;
    padding: 70px 20px 40px;
    margin: 0 auto;
}

.faq_content{
    max-width: 940px;
    width: auto;
    padding: 0 20px 100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq_list{
    background-color: #fff;
    border-radius: 12px;
    padding: 20px 40px 24px;
    color: #333;
}
.faq_q{
    display: flex;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #AEC0BF;
    font-size: 1.8rem;
    line-height: 1.36;
    font-weight: 700;
    position: relative;
    cursor: pointer;
}
.faq_q::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
  
    width: 10px;
    height: 10px;
  
    border-right: 2px solid #0ABAB5;
    border-bottom: 2px solid #0ABAB5;
  
    transform: translateY(-50%) rotate(45deg);
    transform-origin: center;
  
    transition: transform 0.3s ease;
  }
  .faq_list.is-open .faq_q::after {
    transform: translateY(-50%) rotate(-135deg);
  }

.faq_q::before {
    content: "";
    display: block;
  
    width: 50px;
    height: 50px;
  
    background: url("../images/faq_q.svg") no-repeat center / contain;
  
    margin-right: 16px;
  
    flex-shrink: 0;
}
.faq_a{
    display: none;
    margin-top: 20px;
    line-height: 1.36;
}
.faq_list.is-open .faq_a {
    display: block;
}

@media screen and (min-width: 640px) and (max-width: 959px) {
    .faq{
        background:
        url("../images/faq_bg_top.webp") no-repeat left top / min(80%, 800px) auto,
        url("../images/faq_bg_bottom.webp") no-repeat right bottom / min(54%, 680px) auto,
        #DBD0BE;
    }
    .faq_h2{
        width: 63vw;
        padding: 40px 20px 14px;
    }
    .faq_content{
        padding: 0 20px 140px;
    }
  
  }

@media screen and (max-width: 639px) {
    .faq_h2{
        padding: 36px 4px 16px;
    }
    
    .faq_content{
        padding: 0 20px 100px;
        gap: 12px;
    }
    .faq_list{
        padding: 12px 10px 18px;
    }
    .faq_q{
        padding-bottom: 10px;
        font-size: 1.5rem;
    }
    .faq_q::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 10px;
      
        width: 10px;
        height: 10px;
      }
    
    .faq_q::before {
        width: 30px;
        height: 30px;
        margin-right: 8px;
    }
    .faq_a{
        margin-top: 12px;
    }
  
  }

/* =========================
  本気で治したいあなたへ
========================= */
.cta{
    background:
    url("../images/cta_bg_l.webp") no-repeat left top / 800px auto,
    url("../images/cta_bg_r.webp") no-repeat right top / 800px auto,
    url("../images/cta_bg_bot.png") no-repeat center bottom / 1600px 400px,
    #FCF9F5;
    position: relative;
    z-index: 0;
}
.cta_h2{
    width: auto;
    max-width: 557px;
    margin: 0 auto;
    padding: 100px 20px 20px;
    z-index: 2;
    position: relative;
}
.cta_mas_bg{
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 29.798vw;
    background-image: url(../images/cta_bg_line.svg);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}
.cta_message{
    max-width: 772px;
    width: auto;
    margin: 20px auto;
    padding: 0 20px;
    text-align: center;
    color: #333;
    z-index: 2;
    position: relative;
}
.cta_message1{
    font-size: 2.4rem;
    font-weight: 600;
    padding-bottom: 20px;
}
.cta_message2{
    font-size: 2.4rem;
  font-weight: 600;
  color: #0ABAB5;

  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;

  background: #fff;
}
.cta_message3{
    font-size: 1.8rem;
    line-height: 2;
    display: inline-block;
    font-weight: 600;
    color: #333;
}
.cta_message .space{
    margin-top: 20px;
}

#cta_banner{
  scroll-margin-top: 100px;
}

.cta_content{
    max-width: 940px;
    width: auto;
    padding: 0 20px 87px;
    margin: 30px auto 0;
}
.cta_content_inner{
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
}
.cta_limited{
    font-size: 2.4rem;
    text-align: center;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 0.34em;
    color: #fff;
    height: 48px;
    background: linear-gradient(to right, #EB6200, #FFBF00);
    border-radius: 12px 12px 0 0;
}
.cta_infoarea{
    background:
    url("../images/cta_content_bg.png") no-repeat right bottom / 229px auto,
    #fff;
    border-radius: 0 0 12px 12px;
    padding: 20px 86px 20px 25px;
    display: flex;
    justify-content: space-between;
}
.cta_content_img{
    width: 280px;
    margin-right: 67px;
}
.cta_info{
    flex: 1;
}
.cta_info .corse{
    font-size: 2rem;
    color: #F28200;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    position: relative;
    display: block;
    padding: 7px;
    background: #fff;
    border: 1px solid #F28200;
}
.cta_info .corse::before {
    content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%) rotate(45deg);

  width: 7px;
  height: 7px;
  background: #fff;

  border-right: 1px solid #F28200;
  border-bottom: 1px solid #F28200;
  }
  
  .cta_info .corse::after {
    content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);

  width: 9px;
  height: 2px;
  background: #fff;
  }
  .cta_info .price{
    width: auto;
    margin-top: 4px;
    display: block;
    border-bottom: 1px dashed #C0C0C0;
    padding-bottom: 6px;
  }
  .ctainfo_line{
    width: auto;
    padding: 8px 0;
    display: block;
  }

  .cta_telinfo_area_sp{
    display: none;
  }

  .cta_telinfo{
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    margin-left: 0.7em;
  }
  .cta_telinfo::before{
    content: "";
    display: block;
  
    width: 20px;
    height: 20px;
  
    background: url("../images/cta_telephone.svg") no-repeat center / contain;
  
    margin-right: 8px;
  
    flex-shrink: 0;
  }
  .cta_telinfo .gray_line{
    display: inline-block;
    color: #C0C0C0;
    padding: 0 8px;
  }
  .cta_telnum{
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 2rem;
  }
  .cta_info_sub{
    font-size: 1.2rem;
    line-height: 1.38;
    margin-top: 5px;
    margin-left: 1em;
    font-weight: 400;
  }

  @media screen and (min-width: 640px) and (max-width: 959px) {
    .cta{
        background:
        url("../images/cta_bg_l.webp") no-repeat left top / 40vw auto,

        url("../images/cta_bg_r.webp") no-repeat right top / 40vw auto,
  
        url("../images/cta_bg_bot.png") no-repeat center bottom / 100% auto,

      #FCF9F5;

    }

    .cta_h2{
        width: 50vw;
        padding: 50px 20px 20px;
    }
    .cta_mas_bg{
        position: absolute;
        top: 100px;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        height: 29.798vw;
    }

    .cta_message1{
        font-size: 2rem;
    }
    .cta_message2{
        font-size: 2rem;
    }
    .cta_message3{
        font-size: 1.6rem;
    }

    .cta_content{
        padding: 0 20px 70px;
    }

    .cta_limited{
        font-size: 2.3rem;
    }
    .cta_infoarea{
        padding: 20px 25px 20px 25px;
    }
    .cta_content_img{
        width: 280px;
        margin-right: 40px;
    }

  
      .cta_telinfo .gray_line{
        display: inline-block;
        color: #C0C0C0;
        padding: 0 8px;
      }
      .cta_telnum{
        font-family: 'Oswald', sans-serif;
        font-weight: 400;
        font-size: 2rem;
      }

    }
    


  @media screen and (max-width: 639px) {
    .cta{
        background:
        url("../images/cta_bg_l.webp") no-repeat left top / 42vw auto,
        url("../images/cta_bg_r.webp") no-repeat right top / 42vw auto,
        url("../images/cta_bg_bot.png") no-repeat center bottom / 100vw 25vw,
        #FCF9F5;
    }
    .cta_h2{
        padding: 50px 26px 16px;
    }

    .cta_message{
        margin: 20px auto;
    }
    .cta_message1{
        font-size: 2rem;
        padding-bottom: 20px;
    }
    .cta_message2{
        font-size: 2rem;
        line-height: 1.4;
    }
    .cta_message3{
        font-size: 1.4rem;
    }
    .cta_message .space{
        margin-top: 20px;
    }

    .cta_content{
        padding: 0 14px 50px;
        margin: 30px auto 0;
    }
    .cta_content_inner{
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
        border-radius: 12px;
    }
    .cta_limited{
        font-size: 2rem;
        line-height: 48px;
        height: 48px;
        border-radius: 12px 12px 0 0;
    }
    .cta_infoarea{
        background:
        url("../images/cta_content_bg.png") no-repeat right bottom / 150px auto,
        #fff;
        border-radius: 0 0 12px 12px;
        padding: 20px;
        display: block;
    }
    .cta_content_img{
        width: 74%;
        margin: 0 auto 10px;
    }
    .cta_info{
        flex: 1;
    }
    .cta_info .corse{
        font-size: 1.8rem;
        padding: 7px;
    }
    .cta_info .corse::before {
        width: 12.6px;
        height: 12.6px;
        bottom: -7px;
      }
      
      .cta_info .corse::after {
        width: 16px;
        height: 3.6px;
      }
      .cta_info .price{
        margin-top: 7px;
        padding-bottom: 6px;
      }
      .ctainfo_line{
        padding: 8px 0;
      }

      .cta_telinfo_area_sp{
        display: flex;
        flex-direction: column;
      }
    
      .cta_telinfo{
        font-size: 1.4rem;
        /* margin-left: 0.7em; */
        margin: 0 auto;
        text-align: center;
      }
      .cta_telinfo::before{
        width: 20px;
        height: 20px;
        margin-right: 8px;
      }
      
      .cta_telnum{
        font-size: 2.6rem;
        position: relative;
        left: 1em;
        left: 0em;
        text-align: center;
      }
      .cta_info_sub{
        font-size: 1.2rem;
        margin-top: 5px;
        /* margin-left: 1em; */
        margin-left: 0;
        text-align: center;
      }
  
  }

  /* =========================
  院長あいさつ
========================= */

  .dr_message{
    position: relative;
    background:
    url("../images/dr_bg_l.png") no-repeat left top / 600px auto,
    url("../images/dr_bg_r.png") no-repeat right top / 600px auto,
    #EEF5F5;
  }
  .dr_message::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  
    width: 100vw;
    height: 180px;
    background: #CEE5E5;
  
    z-index: 0;
  }
  .dr_ttl{
    max-width: 276px;
    width: auto;
    padding: 100px 20px 0;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .dr_message .dr_inform{
    display: flex;
    align-items: start;
    max-width: 1440px;
    width: auto;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
  }

  .dr_message .dr_photo{
    width: 50%;
  }
  .dr_message .dr_message_text{
    max-width: 32%;
    margin-left: clamp(0px, 4vw, 80px);
    margin-top: 40px;
    padding-bottom: 34px;
    font-weight: 600;
    line-height: 2.3;
    color: #403D3D;
  }
  .dr_message_text1{
    font-size: 3rem;
    font-weight: 600;
    line-height: 2;
    color: #0ABAB5;
    display: block;
    margin-bottom: 8px;
  }
  .dr_message_text2{
    font-size: 2rem;
    font-weight: 600;
    line-height: 2;
    display: block;
    margin: 8px auto;
  }

  @media screen and (min-width: 640px) and (max-width: 959px) {
    .dr_message{
        background:
        url("../images/dr_bg_l.png") no-repeat left top / 47vw auto,
        url("../images/dr_bg_r.png") no-repeat right top / 47vw auto,
        #EEF5F5;
      }
    .dr_ttl{
        width: 27vw;
        padding: 70px 20px 0;
      }
    .dr_message .dr_inform{
        flex-direction: column;
        align-items: center;
      }
    
      .dr_message .dr_photo{
        width: 70vw;
        position: relative;
        right: 2%;
      }
      .dr_message .dr_message_text{
        max-width: 100%;
        margin-top: 0px;
        padding-bottom: 34px;
        line-height: 1.8;
      }
  
  }

  @media screen and (max-width: 639px) {
    .dr_message{
        background:
        url("../images/dr_bg_l.png") no-repeat left top / 46vw auto,
        url("../images/dr_bg_r.png") no-repeat right top / 46vw auto,
        #EEF5F5;
      }

      .dr_ttl{
        padding: 30px 20px 10px;
         width: 52vw;
      }

      .dr_message .dr_inform{
        flex-direction: column;
        align-items: center;
      }

      .dr_message .dr_photo{
        width: auto;
      }
      .dr_message .dr_message_text{
        max-width: 100%;
        margin-top: 0px;
        padding-bottom: 34px;
        line-height: 1.8;
      }

      .dr_message_text1{
        font-size: 2.4rem;
        margin-bottom: 8px;
      }
      .dr_message_text2{
        font-size: 1.7rem;
        margin: 8px auto;
      }
  
  }

/* =========================
  下部インフォメーション
========================= */
.bottom_info_inner{
    max-width: 1140px;
    width: auto;
    padding: 102px 20px 72px;
    margin: 0 auto;
}
.bottom_info_inner .photo_map{
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}
.bottom_info_img{
    width: 55%;
    height: 310px;
    display: block;
    border-radius: 12px;
    background-image: url(../images/bottom_info_img.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.g_map{
    width: 40%;
}
.bottom_info_inner .open_ad{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.open_cal{
    width: 46%;
    display: block;
}
.ad_contact{
    width: 48%;
}
.ad_ttl{
    font-weight: 700;
    line-height: 1.36;
    color: #0ABAB5;
    padding-bottom: 10px;
    border-bottom: 1px solid #E6E6E6;
}
.ad__ad{
    line-height: 1.7;
    margin-top: 8px;
    color: #333;
}
.ad_contact .direction{
    font-size: 1.4rem;
    line-height: 1.36;
    color: #2B2B2B;
    margin-top: 14px;
}
.contact_ttl{
    font-weight: 700;
    line-height: 1.36;
    color: #0ABAB5;
    margin-top: 30px;
}
.bottomcontact_btnarea{
    display: flex;
    justify-content: space-between;
}
.linebtn__bottom{
    width: 54.4%;
}
.telbtn__bottom{
    width: 44.6%;
}

.footer{
    height: 140px;
    background-color: #0ABAB5;
    position: relative;
}
.footer_logo{
    padding: 25px;
    margin: 0 auto;
    width: 270px;
}
.footer_cr{
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.36;
    position: absolute;
    bottom: 11px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
}

@media screen and (min-width: 640px) and (max-width: 959px) {
    .bottom_info_inner{
        padding: 50px 20px 40px;
    }
    .bottom_info_inner .photo_map{
        margin-bottom: 40px;
    }

    .open_cal{
        width: 64%;
        display: block;
    }
    .ad_contact{
        width: 100%;
        margin-top: 30px;
    }
    .ad_ttl{
        font-size: 1.8rem;
    }
    .contact_ttl{
        font-size: 1.8rem;
    }
    .bottomcontact_btnarea{
       width: 70vw;
    }

    .footer{
        height: auto;
    }
    .footer_logo{
        padding: 18px 20px 24px;
        margin: 0 auto;
        width: 270px;
    }
    .footer_cr{
        position: relative; 
        left: auto;
        transform: none;
        display: block;
        width: fit-content;
        margin: 0 auto;

        padding-bottom: 11px; 
    }
  
  }

@media screen and (max-width: 639px) {
    .bottom_info_inner{
        padding: 50px 20px 40px;
    }
    .bottom_info_inner .photo_map{
        flex-direction: column;
        gap: 10px;
        margin-bottom: 30px;
    }
    .bottom_info_img{
        width: auto;
        height: 310px;
        border-radius: 12px;
    }
    .g_map{
        width: auto;
    }

    .open_cal{
        width: auto;
        margin-bottom: 30px;
    }
    .ad_contact{
        width: auto;
    }
    .ad_ttl{
        font-size: 1.6rem;
        padding-bottom: 10px;
    }
    .ad_contact .direction{
        font-size: 1.24rem;
        margin-top: 8px;
    }
    .contact_ttl{
        font-size: 1.6rem;
        margin-top: 30px;
    }

    .footer{
        height: auto;
    }
    .footer_logo{
        padding: 14px 20px 12px;
        width: 270px;
    }
    .footer_cr{
        font-size: 1.14rem;
        position: relative;
        bottom: 0px;
        left: 0%;
        transform: translateX(0%);
        padding-bottom: 14px;
        text-align: center;
        display: block;
    }
  
  }

/* --- タブレット --- */
@media screen and (max-width: 959px) {
  body {
    min-width: 100%;
  }

}

/* --- スマホ --- */
@media screen and (max-width: 639px) {
  body {
    font-size: 1.4rem;
  }

}

/* --- 640〜753px : 2カラムが折り返して1列になる範囲のセンタリング --- */
@media screen and (min-width: 640px) and (max-width: 753px) {
  .change_sec2_content {
    justify-content: center;
  }
  .change_sec2_content .koe {
    width: 100%;
    max-width: 500px;
  }

  .recommended_content {
    justify-content: center;
  }
  .recommended_dr {
    width: 100%;
    max-width: 500px;
  }
}