#time .inner_table{
    text-align: center;
}

/* TOP切り替え */

.mainvisual {
    position: relative;
    width: 100%; /* 親要素の幅に基づく */
    max-width: 1200px; /* 最大横幅を1200pxに制限 */
    aspect-ratio: 2500 / 1230; /* 元画像のアスペクト比を指定 */
    margin: auto; /* センター揃え */
    overflow: hidden; /* 画像がはみ出た場合に隠す */
}

.mainvisual img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* 親要素に幅をフィット */
    height: 100%; /* アスペクト比を維持して高さを調整 */
    object-fit: cover; /* 必要に応じて画像を切り抜き */
    opacity: 0; /* 初期状態で非表示 */
    transition: opacity 1.5s ease-in-out; /* フェード効果 */
}

.mainvisual img.active {
    opacity: 1; /* 表示する画像 */
    z-index: 1; /* 前面に配置 */
}

.topimg{
    position: relative;
}

.miki{
    position: absolute;
    max-width: 1200px;
    width:100%;
    top:0;
    left: 50%; /* 水平中央揃え */
    transform: translateX(-50%); /* 中央揃えのための調整 */
    z-index: 2; /* 前面に配置 */
}


/*PC用*/
@media print, screen and (min-width: 641px){

    .mainvisual {
        max-width: 1200px; /* 最大横幅を1200pxに制限 */
        aspect-ratio: 2500 / 1230; /* 元画像のアスペクト比を指定 */
    }
    
}


/*SP用*/
@media screen and (max-width:640px) {

    .mainvisual {
        max-width: 100%; /* スマホでは画面幅いっぱいに表示 */
        aspect-ratio: 1380 / 1563; /* スマホ版画像のアスペクト比を指定 */
    }
    
}



/* 企業健診バナー */

.kigyou{
    text-align: center;
}

/*PC用*/
@media print, screen and (min-width: 641px){

    .kigyou img{
        width:600px;
        margin:auto;
    }
}

/*SP用*/
@media screen and (max-width:640px) {}


/* 予約ボタン（途中） */


/*PC用*/
@media print, screen and (min-width: 641px){

    .reserve_btn img{
        width:500px;
        margin-bottom:1.5rem;
    }

    .kids_bana img{
        width: 75%;
    }
}

/*SP用*/
@media screen and (max-width:640px) {

    .reserve_btn img{
        width:100%;
        margin-bottom:1.5rem;
    }

    .pickup .pickup__text a{
        margin:0;
        padding:0;
    }
}



/* 予約ボタン（フッター） */

.footer-fixed-bg{
    /* display: flex; */
}

.footer-copy-line{
    padding-bottom:80px;
}

.page-top-line {
    bottom: 140px;
    z-index: 9999 !important;
}

.modalContents .pickup{
    background:white;
}


#modalArea-web11 {
    z-index: 99999;
}

#modalArea-reserve{
    z-index: 3;
}

.choice_reserve {
    height: 50%;
    overflow: auto;
}

/*SP用*/
@media screen and (max-width:640px) {

.modalContents .pickup .pickup__text .pickup__text--title {
    font-size: 4.5vw;
}


/* ---------SP空きあり吹き出し -----------------*/


  /* 空き状況がないときのスタイル */
  .footer-copy-line.hidden {
    height: 0;
    padding: 10px 5px 110px; /* 高さを低くする */
    overflow: hidden;
  }


  /* 吹き出し全体のスタイル */
  .availability-bubble {
    position: relative;
    display: flex; /* 横並びにする */
    align-items: center; /* 中央揃え */
    justify-content: center; /* 中央配置 */
    background-color: #ff891f; /* 吹き出しの背景色（青） */
    color: #ffffff; /* テキストの色（白） */
    padding: 10px 20px; /* 内側の余白 */
    border-radius: 10px; /* 吹き出しの角を丸くする */
    max-width: 300px; /* 吹き出しの最大幅 */
    text-align: center; /* テキストを中央揃え */
    margin: 10px auto 9px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 吹き出しに影を追加 */
    font-size: 16px; /* フォントサイズ */
    line-height: 1.5; /* 行間 */
    gap: 15px; /* ラベル間の間隔 */
    top: -4px;
  }

  /* 吹き出しの下に三角形を追加 */
  .availability-bubble::after {
    content: '';
    position: absolute;
    bottom: -20px; /* 吹き出しの下に三角形を配置 */
    left: 70%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: #ff891f transparent transparent transparent; /* 三角形の色 */
  }

  /* 吹き出し内のラベル（今日・明日空き） */
  .availability-label {
    display: inline-block; /* 横並びにする */
    font-weight: bold; /* 太字にする */
    border-radius: 5px;
  }

  /* 空きあり情報の非表示 */
  .availability-bubble.hidden {
    display: none; /* 完全に非表示 */
  }
  .footer-fixed-line-iiasu {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    -webkit-align-items: center;
    align-items: center;
    height: 71px;
    /* padding-right: 15px; */
    /* padding-left: 15px; */
    text-align: center;
}

}

/* こどもとママバナー */


/*PC用*/
@media print, screen and (min-width: 641px){

    .kodomama img{
        width:400px;
    }

    /* 20250320追加　遷移ボタン*/
    .seni-btn{
        display: flex;
        justify-content: center; /* 中央配置 */
        align-items: center; /* 中央揃え */
}

    .seni-btn img{
        width:15%;
        margin: 2rem 1rem;    
}

    /* 20250321追加　本日来院 */
    .today-reserve-btn{
        position:absolute;
        top: 40%;
        left:16%;
        z-index: 3; /* 前面に配置 */
}

    .today-reserve-btn img{
        width:50%;
        margin: 1rem 1rem;    
}


    .recommend{
        display: flex;
        justify-content: center; /* 中央配置 */
        align-items: center; /* 中央揃え */
        max-width: 1200px;
        margin: 0 auto;
}

    .recommend img{
        width:30%;
        padding: 0 10px;
}

     
}

/*SP用*/
@media screen and (max-width:640px) {


    .seni-btn img{
        width:30%;
        margin: 0 3px;

}


/* 20250320追加　遷移ボタン*/
    .today-reserve-btn{
        position:absolute;
        top:45%;
        left:13px;
        width:25%;
        z-index: 3; /* 前面に配置 */

}

    /* .recommend{
        display: flex;
        justify-content: center; 
        align-items: center; 
    } */

    /* .recommend img{
        width:50%;
        margin: 0 3px;

    } */

        /* .recommend {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            gap: 10px; 
            padding: 10px;
    } */
    
        /* .recommend a {
            flex: 0 0 auto;
            scroll-snap-align: start;
    } */

  

    /* .slider-container {
        position: relative;
        width: 100%;
        overflow: hidden;
    }
    
    .recommend {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        gap: 10px;
        padding: 10px;
    }
    
    .recommend a {
        flex: 0 0 auto;
    }
    
    .recommend img {
        width: 75vw;
        height: auto;
        border-radius: 8px;
        display: block;
    }
    
   
    .arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0,0,0,0.5);
        color: white;
        border: none;
        font-size: 24px;
        padding: 10px;
        cursor: pointer;
        z-index: 10;
        border-radius: 50%;
    }
    
    .arrow.left {
        left: 0px;
    }
    
    .arrow.right {
        right: 0px;
    } */
  


  
  /* .slider-container.inner に中央揃え */
  .slider-container.inner {
    display: flex;
    justify-content: center; /* 横方向中央揃え */
  }

  /* スライダーコンテナ */
  .slider-container {
    width: 100%;
    position: relative;
}
  
/* スライダーラッパー（矢印を含む） */
.slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* スライド全体 */
#slider {
  display: flex;
  transition: transform 0.4s ease;
}

 /* 表示枠（1枚分だけ見せる） */
  .slider-view {
      overflow: hidden;
      width: 90vw;  /* 表示する幅 */
      margin: 0 auto;
  }


  /* スライド全体を横並びに */
  .recommend {
    transition: transform 0.4s ease;
    transform: translateX(0); /* 必要に応じて-86.5vwや-100vwなどに変更 */
  }

  .recommend#slider,
    #slider {
        display: flex;
        transition: transform 0.4s ease;
    }

  
/* 各スライドのリンク */
#slider a {
  flex: 0 0 75vw;  /* 表示枠と同じ幅 */
  width: 90vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

  /* スライダー内のバナー画像 */
  .recommend #slider img,
  #slider img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }


.recommend #slider a {
  flex: 0 0 auto;
  min-width: 250px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

  /* 矢印（画像で表示） */
  .arrow {
    background: transparent;
    border: none;
    /* padding: 0 8px;  */
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }
  
  .arrow img {
    width: 15px;
    height: auto;
    }
  
}





/* 料金ボックスのスタイル */
.fee-box {
  border-radius: 10px;
  padding: 0px 0px 5px;
  display: flex; /* 横並び */
  align-items: flex-start; /* 上揃え */
  gap: 15px; /* 間隔 */
}

.fee-box-title {
  background-color: #ffe1de;
  color: #ff717b;
  font-size: 15px;
  padding: 5px 15px;
  border-radius: 20px;
  white-space: nowrap; /* 改行させない */
  flex-shrink: 0; /* 縮小させない */
  margin-top: 15px;
}

.fee-box-content {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.fee-box-content strong {
  font-size: 18px;
  color: #ff717b;
}


.fee-box-border .w63 {
  position: relative;
  padding-left: 60px; /* 線との間隔 */
  border-left: none; /* デフォルトのボーダーを削除 */
}

.fee-box-border .w63::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%; /* 上下中央 */
  transform: translateY(-50%); /* 中央揃え */
  width: 2px;
  height: 80%; /* 線の長さ（60%、お好みで調整可能） */
  background-color: #e0e0e0;
}

/* スマホ版：横線に変更 */
@media (max-width: 768px) {
  .fee-box-border .w63 {
    padding-left: 0;
    padding-top: 30px;
    margin-top: 20px;
  }
  
  .fee-box-border .w63::before {
    left: 50%; /* 左右中央 */
    top: 0;
    transform: translateX(-50%); /* 中央揃え */
    width: 80%; /* 線の長さ（60%、お好みで調整可能） */
    height: 2px;
  }
  
  .fee-box-border .w33 {
    padding-right: 0;
  }

   /* スマホ版でfee-boxを縦並びに */
   .fee-box {
    display: block; /* flexを解除 */
  }
  
  .fee-box-title {
    display: inline-block; /* タイトルの長さに合わせる */
    width: auto; /* 自動幅 */
    margin-top: 0;
    margin-bottom: 10px; /* タイトルとテキストの間隔 */
  }
}





/* 症例紹介 20251121追加 */

/*PC用*/
@media print, screen and (min-width: 641px){
    .syourei {
        width: 100%;
        max-width: 1000px;
        margin: auto;
        padding: 0px 40px;
    }
}

/*SP用*/
@media screen and (max-width:640px){
    .syourei{
        width: 100%;
        max-width: 1000px;
        margin: auto;
        padding: 0px 30px;
    }
}



/* 院内・設備紹介セクション 20251124追加 */

.facility-slider-section {
    width: 100%;
    padding: 60px 0 80px 0;
    background: #fff4d7;
    overflow: hidden;
  }
  
  .facility-slider-section .inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  
  .facility-slider-section .headline02 {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
  }
  
  /* Swiperコンテナ - 重要 */
  .facilitySwiper {
    width: 100%;
    padding: 0; /* paddingは0に */
    position: relative;
    overflow: visible;
    padding-bottom: 0 !important; /* Swiperのデフォルトpaddingを削除 */
  }
  
  /* スライド設定 */
  .facilitySwiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
    margin-bottom: 60px; /* スライドとページネーションの間隔 */
  }
  
  .facilitySwiper .swiper-slide {
    width: 450px;
    height: auto;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
    opacity: 0.6;
  }
  
  .facilitySwiper .swiper-slide-prev,
  .facilitySwiper .swiper-slide-next {
    opacity: 0.85;
  }
  
  .facilitySwiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
    z-index: 3;
  }
  
  /* 画像 - 比率3:2を維持 */
  .facilitySwiper .swiper-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
  }
  
  /* キャプション */
  .slide-caption {
    padding: 22px;
    background: #fff;
    flex: 1;
  }
  
  .slide-caption p {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin: 0;
    text-align: left;
  }
  
  /* ナビゲーションボタン */
  .facilitySwiper .swiper-button-next,
  .facilitySwiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 113, 123, 0.9);
    border-radius: 50%;
    color: #fff;
    z-index: 10;
    top: 40%; /* 位置調整 */
  }
  
  .facilitySwiper .swiper-button-next:after,
  .facilitySwiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
  }
  
  .facilitySwiper .swiper-button-next:hover,
  .facilitySwiper .swiper-button-prev:hover {
    background: rgba(255, 113, 123, 1);
  }
  
  /* ページネーション - 重要 */
  .facilitySwiper .swiper-pagination {
    position: relative !important; /* absoluteをrelativeに変更 */
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px;
    margin-top: 0; /* wrapperのmargin-bottomで間隔確保 */
  }
  
  .facilitySwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
    margin: 0 !important;
    transition: all 0.3s;
    cursor: pointer;
  }
  
  .facilitySwiper .swiper-pagination-bullet:hover {
    background: #ffb3b8;
  }
  
  .facilitySwiper .swiper-pagination-bullet-active {
    background: #ff717b;
    width: 16px;
    height: 16px;
  }
  
  /* PCレスポンシブ（大画面 1440px以上） */
  @media (min-width: 1440px) {
    .facility-slider-section {
      padding: 60px 0 100px 0;
    }
    
    .facilitySwiper .swiper-wrapper {
      margin-bottom: 70px;
    }
    
    .facilitySwiper .swiper-slide {
      width: 500px;
    }
    
    .slide-caption {
      padding: 25px;
    }
    
    .slide-caption p {
      font-size: 15px;
      line-height: 1.8;
    }
    
    .facilitySwiper .swiper-pagination {
      gap: 10px;
    }
    
    .facilitySwiper .swiper-pagination-bullet {
      width: 14px;
      height: 14px;
    }
    
    .facilitySwiper .swiper-pagination-bullet-active {
      width: 18px;
      height: 18px;
    }
  }
  
  /* PCレスポンシブ（通常 1200-1439px） */
  @media (min-width: 1200px) and (max-width: 1439px) {
    .facilitySwiper .swiper-slide {
      width: 450px;
    }
    
    .slide-caption {
      padding: 22px;
    }
    
    .slide-caption p {
      font-size: 14px;
      line-height: 1.8;
    }
  }
  
  /* PCレスポンシブ（小画面 1024-1199px） */
  @media (min-width: 1024px) and (max-width: 1199px) {
    .facilitySwiper .swiper-slide {
      width: 400px;
    }
    
    .slide-caption {
      padding: 20px;
    }
    
    .slide-caption p {
      font-size: 14px;
    }
  }
  
  /* PC全般の共通設定 */
  @media (min-width: 1024px) {
    .facility-slider-section {
      padding: 60px 0 90px 0;
    }
    
    .facilitySwiper .swiper-wrapper {
      margin-bottom: 65px;
    }
    
    .facilitySwiper .swiper-pagination {
      gap: 10px;
    }
    
    .facilitySwiper .swiper-pagination-bullet {
      width: 14px;
      height: 14px;
    }
    
    .facilitySwiper .swiper-pagination-bullet-active {
      width: 18px;
      height: 18px;
    }
  }
  
  /* タブレットレスポンシブ */
  @media (max-width: 1023px) and (min-width: 768px) {
    .facility-slider-section {
      padding: 60px 0 80px 0;
    }
    
    .facilitySwiper .swiper-wrapper {
      margin-bottom: 55px;
    }
    
    .facilitySwiper .swiper-slide {
      width: 360px;
    }
    
    .slide-caption {
      padding: 20px;
    }
    
    .slide-caption p {
      font-size: 14px;
    }
  }
  
  /* SPレスポンシブ */
  @media (max-width: 767px) {
    .facility-slider-section {
      padding: 25px 0 25px 0;
    }
    
    .facilitySwiper .swiper-wrapper {
      margin-bottom: 45px;
    }
    
    .facilitySwiper .swiper-slide {
      width: 280px;
    }
    
    .facilitySwiper .swiper-slide img {
      height: auto;
      aspect-ratio: 3 / 2;
    }
    
    .slide-caption {
      padding: 15px;
    }
    
    .slide-caption p {
      font-size: 13px;
      line-height: 1.6;
    }
    
    .facilitySwiper .swiper-button-next,
    .facilitySwiper .swiper-button-prev {
      width: 40px;
      height: 40px;
    }
    
    .facilitySwiper .swiper-button-next:after,
    .facilitySwiper .swiper-button-prev:after {
      font-size: 16px;
    }
    
    .facilitySwiper .swiper-pagination {
      gap: 6px;
    }
    
    .facilitySwiper .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
    }
    
    .facilitySwiper .swiper-pagination-bullet-active {
      width: 14px;
      height: 14px;
    }
    
    .facilitySwiper .swiper-slide-active {
      transform: scale(1.02);
    }
  }

  /* pictureタグのスタイル調整 */
.facilitySwiper .swiper-slide picture {
    width: 100%;
    display: block;
  }
  
  .facilitySwiper .swiper-slide picture img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
  }



  /* 法人実績 */
/* Bootstrapアコーディオンのカスタマイズ */
.statistics-card {
  max-width: 800px;
  margin: 0 auto 15px;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.statistics-card .card-header {
  background: #ff717b;
  border: none;
  padding: 0;
}

.statistics-button {
  width: 100%;
  text-align: center;
  color: white !important;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
  text-decoration: none !important;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.statistics-button:hover {
  opacity: 0.8;
  color: white !important;
}

.statistics-button .toggle-icon {
  font-size: 32px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.statistics-button.collapsed .toggle-icon {
  transform: rotate(0deg);
}

.statistics-button:not(.collapsed) .toggle-icon {
  content: '−';
  transform: rotate(180deg);
}

.statistics-content {
  background: #fff;
  padding: 0;
}

.statistics-table {
  width: 100%;
}

.statistics-row {
  display: grid;
  grid-template-columns: 200px 150px 1fr;
  align-items: center;
  padding: 25px 40px;
  border-bottom: 1px solid rgba(255, 113, 123, 0.2);
  gap: 40px;
  font-size: 20px;
  color: #333;
}

.statistics-row:last-child {
  border-bottom: none;
}


.treatment-name {
  font-size: 20px;
  font-weight: 600;
}

.stat-label {
  font-size: 20px;
  font-weight: 500;
}

.stat-value {
  color: #ff717b;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
}

/* レスポンシブ対応 */
@media (max-width: 480px) {
  .statistics-button {
      font-size: 22px;
      padding: 15px 20px;
  }

  .statistics-row {
      grid-template-columns: 1fr;
      padding: 20px;
      font-size: 16px;
      gap: 10px;
  }

  .stat-value {
      font-size: 22px;
  }

  .treatment-name {
      font-size: 16px;
  }

  .stat-label {
      font-size: 16px;
  }

}

/* SP版：アコーディオンの横の余白を消す */
/* SP版：アコーディオンを完全に画面幅いっぱいに */
@media screen and (max-width:640px) {
    
  #accordionStatistics {
      width: 90vw;
      position: relative;
      left: 50%;
      right: 50%;
      margin-left: -45vw;
      margin-right: -50vw;
  }
  
  .statistics-card {
      max-width: 100%;
      border-radius: 0;
  }
  
  .statistics-button {
      padding: 0px !important;
  }
  
  .statistics-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

/* 治療名は1行目に単独で配置 */
.statistics-row .treatment-name {
    width: 100%;
}

/* 総来院数と年間〇〇人を横並び */
.statistics-row .stat-label {
    flex: 0 0 auto;
}

.statistics-row > span:last-child {
    flex: 0 0 auto;
    margin-left: auto;
}

}
/* 拠点数・歯科医師数のレイアウト */
.keni-container {
  display: flex;
  gap: 40px;
}

.keni-item {
  display: flex;
  flex: 1;
  align-items: center;
}

/* SP版：縦並びに */
@media screen and (max-width:640px) {
  .keni-container {
      flex-direction: column !important;
      gap: 0px !important;
  }
  
  .keni-item {
      width: 100% !important;
      gap: 20px;
  }

}


/* ============================================
   コラム紹介セクション（2列グリッド、画像左・テキスト右）
   ============================================ */
   .column-section {
    width: 100%;
    padding: 60px 0;
    background: #fff;
  }
  
  .column-section .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .column-section .headline02 {
    text-align: center;
    margin-bottom: 40px;
  }
  
  /* コラムグリッド（2列） */
  .column-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 20px;
  }
  
  /* コラムカード */
  .column-card {
    display: flex;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow 0.3s, transform 0.3s;
  }
  
  .column-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
  }
  
  /* 画像エリア（左側） */
  .column-card-image {
    width: 180px;
    height: 140px;
    flex-shrink: 0;
    overflow: hidden;
    background: #f5f5f5;
  }
  
  .column-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
  }
  
  .column-card:hover .column-card-image img {
    transform: scale(1.05);
  }
  
  /* コンテンツエリア（右側） */
  .column-card-content {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .column-card-title {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .column-card-excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .column-card-date {
    font-size: 12px;
    color: #999;
    font-weight: 500;
  }
  
  /* 読み込み中 */
  .column-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 0;
    color: #999;
  }
  
  /* もっと見るボタン */
  .column-more {
    text-align: center;
    margin-top: 20px;
  }
  
  .btn-more {
    display: inline-block;
    padding: 15px 50px;
    background: #ff717b;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s;
  }
  
  .btn-more:hover {
    background: #ff5a66;
  }
  
  /* ============================================
     タブレット対応（768px〜1023px）
     ============================================ */
  @media (max-width: 1023px) and (min-width: 768px) {
    .column-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    
    .column-card-image {
      width: 150px;
      height: 120px;
    }
    
    .column-card-content {
      padding: 12px;
    }
    
    .column-card-title {
      font-size: 14px;
    }
    
    .column-card-excerpt {
      font-size: 12px;
    }
  }
  
  /* ============================================
     スマホ対応（767px以下）
     ============================================ */
  @media (max-width: 767px) {
    .column-section {
      padding: 40px 0;
    }
    
    /* スマホでも2列グリッド（小さく） */
    .column-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }
    
    /* 画像左・テキスト右を維持 */
    .column-card {
      flex-direction: row;
    }
    
    .column-card-image {
      width: 100px;
      height: 80px;
    }
    
    .column-card-content {
      padding: 10px;
    }
    
    .column-card-title {
      font-size: 12px;
      margin-bottom: 5px;
      -webkit-line-clamp: 2;
    }
    
    .column-card-excerpt {
      font-size: 11px;
      margin-bottom: 5px;
      -webkit-line-clamp: 1;
    }
    
    .column-card-date {
      font-size: 10px;
    }
    
    .btn-more {
      padding: 12px 40px;
      font-size: 14px;
    }
  }
  
  /* ============================================
     超小型スマホ対応（420px以下）
     ============================================ */
  @media (max-width: 420px) {
    /* さらに小さい画面では1列に */
    .column-grid {
      grid-template-columns: 1fr;
      gap: 15px;
    }
    
    .column-card-image {
      width: 120px;
      height: 90px;
    }
    
    .column-card-content {
      padding: 12px;
    }
    
    .column-card-title {
      font-size: 13px;
    }
    
    .column-card-excerpt {
      font-size: 12px;
    }
  }


  /* ============================
   共通 FAQスタイル（PC・SP）
============================ */

/* FAQ全体をスコープ化 */
#qa .faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

#qa .faq-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  color: #333;
}

/* FAQ item */
#qa .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0 !important;
  border-radius: 8px;
  overflow: hidden;
  background: #fff !important;
  box-shadow: none !important;
}

/* 質問 */
#qa .faq-question {
  width: 100%;
  padding: 20px !important;
  background: #fff !important;
  border: none !important;
  outline: none !important;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #666 !important;
  transition: background-color 0.3s ease;
  box-shadow: none !important;
}

/* テーマ特有の “focusで青枠” を無効化 */
#qa .faq-question:focus {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

#qa .faq-question:hover {
  background-color: #f8f8f8;
}

/* Qアイコン */
#qa .faq-question dt {
  display: flex;
  align-items: center;
  min-height: 45px;
  padding-left: 55px !important;
  font-size: 20px;
  font-weight: bold;
  background: url("../../../images/common/icon_qa_q.png") no-repeat left top !important;
  background-size: 40px auto !important;
}

/* プラスアイコン */
#qa .faq-icon {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  transition: transform 0.3s ease;
}

#qa .faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* 回答 */
#qa .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  background: #fafafa !important;
}

#qa .faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px;
}

/* Aアイコン */
#qa .faq-answer dd {
  min-height: 41px;
  padding-left: 50px !important;
  margin: 0 30px 0px;
  background: url("../../../images/common/icon_qa_a.png") no-repeat left top !important;
  background-size: 36px auto !important;
}

#qa .faq-answer p {
  margin: 0;
  color: #666 !important;
  line-height: 1.6;
}

/* ========= SP調整 ========= */
@media screen and (max-width:640px) {

  #qa .faq-section {
    padding: 0px 15px;
  }

  #qa .faq-question {
    padding: 18px !important;
  }

  #qa .faq-question dt {
    font-size: 15px !important;
    padding-left: 45px !important;
  }

  #qa .faq-answer dd {
    padding-left: 40px !important;
    margin: 0 15px;
  }
}
/* FAQアイコンの重複記号を完全に無効化 */
#qa .faq-icon::before,
#qa .faq-icon::after,
#qa .faq-question::before,
#qa .faq-question::after {
    content: none !important;
    background: none !important;
    display: none !important;
}
/* ===== Bootstrapのアコーディオン矢印を完全無効化 ===== */

/* ボタンに自動生成される矢印（これが残ってる「ー」の正体） */
#qa .faq-question::after {
  content: none !important;
  background: none !important;
  border: none !important;
  display: none !important;
}

/* Bootstrap / Theme が使う可能性のあるパターンをまとめて潰す */
#qa .faq-question:not(.collapsed)::after,
#qa .faq-question.collapsed::after,
#qa .faq-item .faq-question::after,
#qa button.faq-question::after {
  content: none !important;
  background: none !important;
  border: none !important;
  display: none !important;
}

/* さらに、before も保険で無効化 */
#qa .faq-question::before {
  content: none !important;
  display: none !important;
}


/* ============================================
   おすすめの治療 Swiperスライダー（SP版）
   ============================================ */
   @media screen and (max-width:640px) {

    /* 既存の自作スライダー関連を無効化 */
    .slider-container,
    .slider-wrapper,
    .slider-view,
    #slider,
    .recommend .arrow {
        display: none !important;
    }

    /* Swiperコンテナ */
    .recommendSwiper {
        width: 100%;
        padding-bottom: 50px;
        position: relative;
    }

    /* スライド */
    .recommendSwiper .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .recommendSwiper .swiper-slide a {
        display: block;
        width: 85%;
        max-width: 350px;
    }

    .recommendSwiper .swiper-slide img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    /* ナビゲーションボタン */
    .recommendSwiper .swiper-button-next,
    .recommendSwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
        background: rgba(255, 113, 123, 0.9);
        border-radius: 50%;
        color: #fff;
        top: 45%;
    }

    .recommendSwiper .swiper-button-next:after,
    .recommendSwiper .swiper-button-prev:after {
        font-size: 16px;
        font-weight: bold;
    }

    .recommendSwiper .swiper-button-next:hover,
    .recommendSwiper .swiper-button-prev:hover {
        background: rgba(255, 113, 123, 1);
    }

    /* ページネーション */
    .recommendSwiper .swiper-pagination {
      position: relative !important;
      bottom: auto !important;
      margin-top: 15px;
    }
    .recommendSwiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background: #ddd;
        opacity: 1;
    }

    .recommendSwiper .swiper-pagination-bullet-active {
        background: #ff717b;
        width: 12px;
        height: 12px;
    }
}

@media screen and (max-width:640px) {
  /* ページネーションを画像の下に配置 */
  .recommendSwiper .swiper-pagination {
      position: relative !important;
      bottom: auto !important;
      top: auto !important;
      margin-top: 15px;
  }
}