/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Montserrat', 'Zen Kaku Gothic New', 'Noto Sans JP';
    background-color: #e2e6e8;
    color: #4a291f;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 1.5px;  
    font-weight: 500;
    margin: 0 auto;
    /* 固定ヘッダー分のパディングを追加 */
    padding-top: 64px;
  }
  
  .wrapper {
      max-width: 500px;
      margin: 0 auto;
      width: 100%;
  }
  

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

  /* 固定ヘッダー */
  .fixed-header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 64px;
    background-color: #110d0d;
    z-index: 10000;
    /* ブラウザのセーフエリア対応 */
    padding-top: env(safe-area-inset-top);
    /* セーフエリア分の高さを調整 */
    height: calc(64px + env(safe-area-inset-top));
  }

  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    max-width: 500px;
    width: 500px;
    margin: 0 auto;
    padding: 0 16px;
    /* セーフエリア分の調整 */
    margin-top: env(safe-area-inset-top);
  }

  .header-logo {
    flex-shrink: 0;
  }

  .header-catch {
    flex-shrink: 0;
  }

  .logo-img,
  .catch-img {
    height: 48px;
    width: auto;
    display: block;
    /* クリック領域を確保 */
    min-height: 48px;
    min-width: 48px;
  }

  .logo-img {
    /* ロゴの最大幅を制限 */
    max-width: 200px;
  }

  .catch-img {
    /* キャッチ画像の最大幅を制限 */
    max-width: 300px;
  }
  
  section {
    background-color: #fff;
    margin: 0;
    padding: 0;
  }


  hr {
    border: none;
    border-top: 1.5px solid #b4a194;
    height: 0;
    margin: 16px 0;
  }
  /* Hero Section */
  .hero {
    width: 100%;
      margin: 0 auto;
      color: #e5e0d8;
  }
 
  /* CTA Area */
  .case-top {
     margin: 0 auto;
     padding-bottom: 60px;
     background-color: #e5e0d8;
  }

  .case-top h1 {
    text-align: center;
    color: #845a53;
    font-size: 1.8rem;
    font-family: 'Noto Serif JP', serif;
    padding: 60px 0;
  }

.case-top img[src="img/2.webp"] {
  width: 75%;
  display: block;
  margin: 0 auto;
  padding: 0 0 20px 0;
}

.box {
  margin: 0 0 0 65px;
}

.box h2.jyoge {
  font-size: 1.3rem;
  text-align: left;
  font-family: 'Noto Serif JP', serif;
  padding: 0 10px;/*上下 左右の余白*/
  color: #56423e;/*文字色*/
  background: transparent;/*背景透明に*/
  border-left: solid 7px #b09f94;/*左線*/
  height: 1.2em;/*文字の高さに合わせる*/
  line-height: 1.2em;/*行の高さ*/
  display: block;
  margin: 0;
  width: fit-content;
}





  .cases-slider-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0 20px 0;
    padding: 0 20px;
  }

  
/* 症例一覧 */

  .case_list {
    background-color: #bea6a1;
    padding: 60px 0;
  }

  .case_header {
    text-align: center;
    margin-bottom: 7px;
  }

  .case_title {
    font-size: 3rem;
    font-weight: 500;
    color: #fff;
    margin: 0 auto 10px auto;
    font-family: 'Montserrat';
    letter-spacing: 2px;
    text-align: center;
    border-left: none;
    display: block;
  }

  .case_subtitle {
    font-size: 1.2rem;
    color: #fff;
    margin: -20px 0 75px 0;
    font-family: 'Montserrat', 'Zen Kaku Gothic New', 'Noto Sans JP';
    font-weight: 400;
  }

  .case_dots {
    width: 460px;
    height: 2px;
    margin: 0 auto;
    position: relative;
    background: transparent;
  }
  
  .case_dots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 8px 4px;
    background-repeat: repeat-x;
  }

  .case_description {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 50px;
    max-width: 500px;
    margin-left: 17px;
    margin-right: auto;
  }

  .case_number {
    font-family: 'Montserrat';
    font-weight: 300;
    font-size: 2.3rem;
    color: #fff;
  }

  .case_text {
    width: 250px;
    text-align: left;
    font-size: 13px;
    color: #fff;
    line-height: 1.6;
  }

  .case_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 20px;
    padding: 0 20px;
  }





  .cases-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
  }

  .slider-images {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }

  .slider-image {
    max-width: 100%;
    height: auto;
    display: none;
    transition: opacity 0.5s ease-in-out;
  }
  .hohobone-image {
    max-width: 80%;
    height: auto;
    display: none;
    transition: opacity 0.5s ease-in-out;
  }

  .hohobone-image.active {
    display: block;
    opacity: 1;
  }




  .slider-image.active {
    display: block;
    opacity: 1;
  }

  .slider-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease;
  }

  .slider-btn:hover {
    transform: scale(1.1);
  }

  .slider-btn:active {
    transform: scale(0.95);
  }

  .slider-btn img {
    width: 85px;
    height: auto;
    display: block;
  }

/* top症例　5パターン用 */


.cases-detail-row {
  margin: 0 auto;
  width: 370px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 3px;
  gap: 10px;
}

  .cases-detail-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #56423e;
    min-width: 60px;
    flex-shrink: 0;
  }

  .cases-detail-content {
    font-size: 0.9rem;
    color: #56423e;
    flex: 1;
  }



/* top症例　5パターン用ここまで */

  .cases-p-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    min-width: 60px;
    flex-shrink: 0;
  }
  
  .cases-p-content {
    font-size: 0.9rem;
    color: #fff;
    flex: 1;
  }


  .cases-p {
    margin: 0 auto;
    width: 370px;
    display: flex;
    align-items: center;
    margin-bottom: 3px;
    gap: 10px;
  }



  .cases-p-row {
    margin: 0 auto;
    width: 370px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 3px;
    gap: 10px;
  }
  .cases-sideeffects {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: inline-block;
  }

.cases-text {
    background-color: #bea6a1;
    margin: 26px auto 60px;
}

.cases-text img {
    margin: 0 auto;
    width: 90%;
}

.cases-link {
    margin: 0 auto;
    padding: 100px 0 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cases-link p {
    margin: 0;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
}

.cases-link img {
    max-width: 200px;
    width: 100%;
    height: auto;
}

.cases-img {
    position: relative;
    margin: 20px auto;
    max-width: 500px;
}

.cases-img img {
    width: 85px;
    height: auto;
    position: absolute;
    bottom: -30px;
    right: 45px;
    display: block;
}






/* linkボタン */






.link {
  background-color: #b09f94;
  background-image: url('../../img/3.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* padding: 60px 16px; */
  margin: 0 auto;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 300px;
}




.link-text p {
  color: #f5f5f5;
  font-size: 1.1rem;
  line-height: 1.8;
  font-family: 'Noto Serif JP', serif;
}

.link-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  margin-top: 60px;
}

.link-buttons img {
  max-width: 300px;
  width: 100%;
  height: auto;
  transition: transform 0.2s ease;
}

.link-buttons img:hover {
  transform: scale(1.02);
}

.buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 11px;
  margin: 0 auto;
  margin-top: 118px;
  padding: 0 0 50px;
  max-width: 500px;
}

.button-link {
  color: #aa9898;
  font-size: 16px;
  font-weight: bold;
  background: #e5e0d8;
  padding: 10px 30px;
  border-radius: 50px;
  transition: .3s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 300px;
  min-width: 200px;
  gap: 10px;
}

.button-link img {
  width: 124px;
  object-fit: contain;
  flex-shrink: 0;
}

/* .button-web img {
  width: 124px;
  object-fit: contain;
  flex-shrink: 0;
}

.button-tel img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
} */

.button-link:hover {
  background: #bea6a1;
  color: #fff;
}

/* タッチデバイス用のホバー効果 */
.button-link:active {
  background: #bea6a1;
  color: #fff;
  transform: scale(1.05);
  transition: all 0.1s ease;
}

/* iPhone/iPad用のタッチ効果 */
@media (hover: none) and (pointer: coarse) {
  .button-link:active {
    background: #bea6a1;
    color: #fff;
    transform: scale(1.05);
    transition: all 0.1s ease;
  }
}






  /* about */
  .about {
    padding-top: 80px;
    padding-bottom: 70px;
    background-color: #bea6a1;
    margin: 0 auto;
}


  .about_top h1 {
    margin: 0 auto;
    text-align: center;
    color: #fff;
    font-size: 1.6rem;
    font-family: 'Noto Serif JP', serif;
    margin-bottom: 30px;
padding-left: 15px;
    text-align-last: center;
  }


  .what_ark img {
    width: 90%;
    display: block;
    margin: 0 auto;
    text-align: center;
  }


  .point_1,
  .point_2,
  .point_3 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }

  .point_1.fade-in,
  .point_2.fade-in,
  .point_3.fade-in {
    opacity: 1;
    transform: translateY(0);
  }

  .point_1 img,
.point_2 img,
.point_3 img {
  margin: 0 auto;
  width: 90%;
  padding: 20px 0;
  margin-bottom: 0;
}
 



/* doctor */

.doctor {
    max-width: 500px;
    background-color: #e5e0d8;
    margin: 0 auto;
    padding-top: 90px;
    padding-bottom: 90px;
}



.doctor_top {
    width: 60%;
    display: block;
    margin: 0 auto;
    padding-bottom: 40px;
}


.doctor_title {
  font-size: 3rem;
  font-weight: 600;
  color: #56423e;
  font-family: 'Montserrat';
  letter-spacing: 2px;
  text-align: center;
  display: block;
}

.doctor_subtitle,
.price_subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #56423e;
  margin: -20px 0 70px 0;
  font-weight: 500;
}

.doctor-sns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 0 20px;
}

.doctor-sns a {
    display: block;
    transition: transform 0.2s ease;
}

.doctor-sns a:hover {
    transform: scale(1.1);
}

.doctor-sns img {
    width: 50px;
    height: auto;
    display: block;
}

/* インスタグラムとティックトックの画像を大きくする */
.doctor-sns a:nth-child(2) img,
.doctor-sns a:nth-child(3) img {
    width: 60px;
    height: auto;
}


.doctor-profile {
   text-align: center;
   margin-bottom: 33px;
}

.doctor-profile img {
    width: 30%;
    display: block;
    margin: 0 auto;
}

.profile-text {
  width: 450px;
  margin: 0 auto;
  padding: 30px;
}

.profile-list {
    width: 400px;
    margin: 16px auto 0 auto;
    margin-bottom: 0;
    padding-left: 1.2em;
}


.p-text {
    margin: 0 auto;
    text-align: left;
    max-width: 440px;
    width: 100%;
}







/* Price */

.price {
    background-color: #e5e0d8;
    padding-bottom: 70px;
}

.price_h2 {
  padding: 70px 0 0;
  font-size: 3rem;
  font-weight: 600;
  color: #56423e;
  font-family: 'Montserrat';
  letter-spacing: 2px;
  text-align: center;
  display: block;
}


.price_List {
        margin: 0 auto;
        max-width: 500px;
    padding: 20px;
}

.price_section {
    margin-bottom: 30px;
    background: transparent;
}

.price_title {
    font-family: 'Noto Serif JP', serif;
    padding: 0.25em 0.5em;
    color: #845a53;
    border-left: solid 5px #b09f94;
    height: 1.3em;
    line-height: 1.2em;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.price-divider {
    border: none;
    border-top: 1px solid #bea6a1;
    margin: 10px 0 15px 0;
    width: 100%;
}

.price_items {
  margin: 0 auto;
   width: 450px;
}

.price_item {
  width: 450px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 14px;
    background-color: #ffffff63;
}

.price_item:nth-child(2n) {
    background-color: #bea6a145;
}

.price_items .price_item:nth-child(4) {
    background-color: #bea6a145;
}



.price_label {
    font-size: 1rem;
    color: #897572;
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP';
    font-weight: 500;
}

.price_value {
    font-size: 1.2rem;
    font-weight: 500;
    color: #897572;
    font-family: 'Montserrat', 'Zen Kaku Gothic New', 'Noto Sans JP';
    text-align: right;
    flex: 1;
}

.price_List img {
    width: 90%;
    display: block;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 30px;
}

.price_section p {
  color: #b09f94;
  margin-top: 28px;
  font-size: 14px;
}

/* Loan Section */
.loan {
  margin: 0 0 90px 0;
  padding: 0 20px;
}

.loan-images-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  gap: 10px;
  flex-wrap: nowrap;
}

.loan-images-row img {
  flex: 1 1 0;
  max-width: calc(25% - 7.5px);
  min-width: 0;
  height: auto;
  object-fit: contain;
}

.loan-images-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 20px;
}

.loan-images-column img {
  margin: 0 auto;
  width: 95%;
  height: auto;
}

.loan-disclaimer {
  text-align: center;
  margin-top: 20px;
}

.loan-disclaimer p {
  padding-left: 12px;
  text-align: left;
  color: #4a291f;
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}














/* access */

.access {
    margin: 0 auto;
    max-width: 500px;
    padding-top: 60px;
    background-color: #bea6a1;
}

.access img {
    margin: 0 auto;
    width: 100%;
}

.clinic_name img {
    margin-left: -10px;
    padding-bottom: 40px;
    width: 95%; 
}



.access-hr {
  border: none;
  border-top: 1px solid #bea6a1;
  margin: 10px 0 15px 0;
  width: 100%;
}




.access-container {
  padding: 30px 0;
  margin: 0 auto;
  width: 450px;
    background: #fff;
    border-radius: 10px;

}

.access_title {
  font-size: 3rem;
  font-weight: 600;
  color: #56423e;
  font-family: 'Montserrat';
  letter-spacing: 2px;
  text-align: center;
  display: block;
}

.access_subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #56423e;
  margin: -20px 0 30px;
  font-weight: 500;
}


.clinic_header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding-right: 20px;
}




.access-map-image {
    margin: 0 auto;
  }

.access-map-image iframe {
  width: 350px;
  height: 350px;
  display: block;
  margin: 0 auto;
}

.access-map-image img {
    width: 100%;
    max-width: 360px;
    margin: 0 auto 32px auto;
    display: block;

}

.access-info {
    margin: 0 auto;
    margin-top: 36px;
    width: 400px;
    text-align: left;
}



.access-address {
    color: #000;
    margin-bottom: 8px;
}

.access-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.access-label {
    color: #000;
    min-width: 80px;
}

.access-value {
    font-size: 14px;
    color: #000;
    flex: 1;
    margin-left: 12px;
}


    .footer-copyright {
      font-family: 'Montserrat', 'Zen Kaku Gothic New', 'Noto Sans JP';
        display: flex;
        align-items: center;
        justify-content: center;
        background: #bea6a1;
        color: #fff;
        text-align: center;
        max-width: 500px;
        margin: 0 auto 20px;
        font-size: 20px;
        border-radius: 0;
        min-height: 80px;
        padding-top: 30px;
        padding-bottom: 140px;
      }

      .site-footer {
        max-width: 500px;
      }

 /* ページトップボタン - PC表示 */
  .scroll-to-top-text {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    right: calc(50% - 250px + 20px);
    bottom: 143px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    border: 0;
    background: none;
    transition: .2s;
    z-index: 9999;
  }

  .scroll-to-top-text p {
    writing-mode: vertical-rl;
    text-decoration: none;
    text-transform: uppercase;
    height: 85px;
    margin: 0;
    letter-spacing: 5px;
    text-align: right;
    position: relative;
    font-size: 11px;
    font-weight: 600;
    color: #56423e;
  }

  .scroll-to-top-text p:before {
      content: "";
      position: absolute;
      top: 26px;
      right: -6px;
      width: 1px;
      height: 20px;
      background: #56423e;
      transform: skewX(-150deg);
  }

  .scroll-to-top-text p:after {
      content: "";
      position: absolute;
      bottom: 0px;
      right: 0px;
      width: 1px;
      height: 60px;
      background: #56423e;
  }

  .scroll-to-top-text.is-active {
    opacity: 1;
    visibility: visible;
  } 


/* 固定予約ボタン */
.fixed-buttons-container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }



.fixed-buttons {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
}

/* 固定バナー画像 */
.fixed-banner {
    width:500px;
    margin: 0 auto;
}

.fixed-banner img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.fixed-buttons-container {
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;

}

.fixed-btn {
    display: block;
    margin: 0;
    padding: 0;
    text-decoration: none;
    transition: transform 0.2s ease;
    position: relative;
    z-index: 10000;
}

.fixed-btn:hover {
    transform: scale(1.05);
}

  .fixed-btn img {
   width: 100%;
    display: block;
    margin: 0;
    position: relative;
    z-index: 10001;
}

/* レスポンシブ対応 - タブレット（600px〜1023px） */
@media (max-width: 1023px) and (min-width: 600px) {
  .fixed-header {
    height: 60px;
    height: calc(60px + env(safe-area-inset-top));
    left: 50%;
    transform: translateX(-50%);
  }

  .header-container {
    height: 60px;
    width: 500px;
    padding: 0 12px;
  }

  .logo-img,
  .catch-img {
    height: 44px;
    min-height: 44px;
    min-width: 44px;
  }

  .logo-img {
    max-width: 180px;
  }

  .catch-img {
    max-width: 250px;
  }

  body {
    padding-top: 60px;
  }
}

/* レスポンシブ対応 - モバイル（600px未満） */
@media (max-width: 599px) {
  .fixed-header {
    height: 56px;
    height: calc(56px + env(safe-area-inset-top));
    left: 50%;
    transform: translateX(-50%);
  }

  .header-container {
    height: 56px;
    width: 500px;
    padding: 0 8px;
  }

  .logo-img,
  .catch-img {
    height: 40px;
    min-height: 40px;
    min-width: 40px;
  }

  .logo-img {
    max-width: 150px;
  }

  /* モバイルでも右画像を表示する */
  .catch-img {
    max-width: 200px;
  }

  body {
    padding-top: 56px;
  }
}

/* レスポンシブ対応 - 480px以下 */
@media (max-width: 480px) {
  /* ベーススタイル */
  
  .wrapper {
    max-width: 100%;
    padding: 0;
    width: 100%;
  }

  /* ヘッダーコンテナの幅を画面幅に合わせる */
  .fixed-header {
    width: 100%;
    left: 0;
    transform: none;
  }
  .header-container {
    width: 100%;
    max-width: 100%;
    padding: 0 10px;  /* 左右に適切なpaddingを追加 */
    box-sizing: border-box;
  }
  
  .logo-img {
    max-width: 150px;  /* ロゴの最大幅を制限 */
  }
  
  .catch-img {
    max-width: 200px;  /* キャッチ画像の最大幅を制限 */
  }

  .what_ark {
    padding-bottom: 40px;
  }



  /* 固定バナーのレスポンシブ対応 */


  .fixed-banner img {
    width: 100%;
  }

  /* ヒーローセクション */
  .hero img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* ケーストップ */


  .case-top img[src="img/2.webp"] {
    width: 82%;
  }

  .box {
    margin: 0px 0 0 47px;
  }

  .box h2.jyoge {
    font-size: 1.1rem;
  }

  .cases-detail-row {
   
    width: 100%;
    max-width: 340px;
   
  }


  /* スライダー */
  .cases-slider-wrapper {
    margin: 15px 0;
    padding: 0 10px;
  }

  .cases-slider {
    gap: 8px;
    max-width: 100%;
  }

  .slider-btn img {
    height: auto;
  }

  .slider-image {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .hohobone-image {
    max-width: 83%;
  }

  /* 症例詳細 */


  .case_wrapper {
    padding: 10px;
    padding: 0 10px;
  }

  .case_description {
    gap:13px;
  }
  .cases-p-row {
    gap: 20px;
    width: 77%;
  }

  .cases-p-label {
    min-width: 50px;
  }

 
  /* 症例一覧 */
  .case_list {
    width: 100%;
    padding: 85px 0;
  }

  .case_title {
    margin-bottom: 8px;
  }

  .case_subtitle {
    margin-bottom: 90px;
  }

  .case_dots {
    width: 100%;
    max-width: 390px;
    margin: 0 auto;
    height: 2px;
    position: relative;
    background: transparent;
  }
  
  .case_dots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 8px 4px;
    background-repeat: repeat-x;
  }

  .cases-text img {
    width: 90%;
    margin: 30px auto 0;
  }
 

  /* 症例詳細情報 */
  .cases-p {
    margin: 0 auto;
    width: 90%;
  }

  .case_text {
    /* width: 100%; */
    max-width: 210px;
    font-size: 11px;
  }
  
  .case_number {
    font-size: 2rem;
  }
  .cases-text {
    margin: 20px auto 70px;
  }

  .cases-p-content {
    font-size: 13px;
  }
 

  /* 症例リンク */
  .cases-link {
    padding: 100px 0 10px;
  }

  .cases-img img {
    right: 13px;
  }

  .cases-link p {
   font-size: 17px;
  }
  

  .cases-img {
    margin: 15px auto;
    max-width: 100%;
  }

  .cases-detail-content {
    font-size: 13px;
  }



 

  /* ボタンコンテナのレスポンシブ対応 */
  .buttons {
    flex-direction: column;
    gap: 14px;
    padding: 0 0 40px;
  }

  .button-link {
    width: 92%;
    min-width: auto;
    padding: 7px 60px;
    font-size: 14px;
  }

  /* モバイル用の.link設定 */
  .link {
    background-image: url('../../img/3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 200px;
  }

  /* About */
  .about {
    width: 100%;
  }

  .about_top h1 {
    font-size: 1.35rem;
   
    margin-bottom: 30px;
    letter-spacing: 0.1em;
  }

  .point_1 img,
  .point_2 img,
  .point_3 img {
    width: 90%;
    padding: 20px 0;
  }

  /* Doctor */
  .doctor {
    max-width: 100%;
    width: 100%;
  }

  .doctor_title {
    margin-bottom: 10px;
  }

  .doctor_subtitle {
    margin-bottom: 90px;
  }
  .price_subtitle {
    margin-bottom: 90px;
  }



  .profile-text {
    width: 100%;
    max-width: 400px;
    padding: 0;
  }
  /* .doctor_top {
    width: 80%;
    padding-bottom: 15px;
  } */

  .doctor-sns {
    gap: 15px;
    margin-bottom: 40px;
    padding: 0 15px;
  }

  .doctor-sns img {
    width: clamp(35px, 10vw, 45px);
  }

  /* インスタグラムとティックトックの画像を大きくする（モバイル） */
  .doctor-sns a:nth-child(2) img,
  .doctor-sns a:nth-child(3) img {
    width: clamp(40px, 12vw, 55px);
  }

  .doctor-profile {
    margin-bottom: 60px;
  }

  .doctor-profile img {
    width: 36%;
  }

  .p-text {
    line-height: 1.9;
    padding: 0 15px;
    max-width: 100%;
  }

  /* Price */
  .price {
    width: 100%;
    padding-bottom: 75px;
  }

  .price_h2 {
    padding: 90px 0 0;
  }

  .price_List {
    padding: 15px;
  }

  /* Loan Section - モバイル版 */
  .loan-images-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 5px;
    flex-wrap: nowrap;
  }

  .loan-images-row img {
    flex: 1 1 0;
    max-width: calc(25% - 3.75px);
    min-width: 0;
    height: auto;
    object-fit: contain;
  }

  .price_section {
    margin-bottom: 20px;
  }

  .price_title {
    margin: 0 0 10px 0;
  }

  .price-divider {
    margin: 8px 0 10px 0;
  }

  .price_item {
    width: 100%;
    max-width: 380px;
  }

.price_items {
  width: 100%;
  max-width: 380px;
  margin: 20px auto 60px;
}

.last_items {
  width: 100%;
  max-width: 390px;
  margin: 20px 0 10px;
}

.price_section p {
  margin-top: 5px;
}




 Access */
  .access {
    max-width: 100%;
    width: 100%;
  }

  .access_title {
  padding: 70px 0 0;
  }

  .access_subtitle {
  padding: 0 0 70px;
  }

  .access-container {
    width: 90%;
    max-width: 450px;
    padding: 20px;
    padding-bottom: 90px;
    margin: 0 auto;
  }

  .access-map-image iframe {
    width: 100%;
    height: 250px;
  }

  .access-info {
    width: 100%;
    max-width: 400px;
    margin: 20px auto 0;
  }

  .access-address {
    font-size: clamp(0.8rem, 3.5vw, 0.9rem);
  }

  .access-label {

    min-width: 60px;
  }

  .access-value {
    font-size: clamp(0.75rem, 3.2vw, 0.8rem);
  }

  .access-hr {
    width: 100%;
    margin: 8px 0 10px 0;
  }

  /* クリニックヘッダー */
  .clinic_header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    margin-right: 20px;
  }



  .clinic_name_en {
    font-size:1.7rem;
  }

  .clinic_name_jp {
  text-align: center;
    font-size:0.9rem;
  }



  .scroll-to-top-text {
    right: 15px;
    bottom: 138px;
  }
  
  .scroll-to-top-text p {
    height: 70px;
    font-size: 11px;
    letter-spacing: 3px;
  }
  
  .scroll-to-top-text p:before {
    top: 0;
    right: -8px;
  }


  .scroll-to-top-text p:after {
    height: 70px;
    right: -2px;
  }

  .fixed-banner {
    width: 100%;
  }

  .fixed-buttons {
    max-width: 100%;
    width: 100%;
  }
  
  .fixed-buttons-container {
    max-width: 100%;
    width: 100%;
  }

  .fixed-btn img {
    width: 100%;
  }

 

  /* フッター */
  .footer-copyright {
    font-family: 'Montserrat', 'Zen Kaku Gothic New', 'Noto Sans JP';
    display: flex;
    align-items: center;
    justify-content: center;
    background: #bea6a1;
    color: #fff;
    text-align: center;
    max-width: 500px;
    margin: 0 auto 20px;
    font-size: 16px;
    padding-top: 40px;
    margin-bottom: 30px;
  }



}



 