  /* ----------------------------------------
  --------------------フッター------------------ */
  footer {
    width: 100%;
    margin: 0 auto;
    background: url("http://nakaya-shika.jp/wp-content/uploads/2025/11/footer-bg.png") center / cover no-repeat;
    padding-top: 80px;
  }

  .footer-top-bg {
    width: 100%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.50);

  }

  /* 均等2カラム + 余白 */
  .footer-top-flex {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    /* 右≈53% */
    align-items: center;
    gap: 40px;
    padding: 50px 20px;
  }

  /* 左カラム */
  .footer-pc-left {
    display: grid;
    gap: 0;
    place-items: center;
    text-align: center;
  }

  /* 右カラム */
  .footer-pc-right {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    aspect-ratio: 10 / 8;
  }

  .footer-pc-right iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  /* ロゴ */
  .ft-logo img {
    width: 200px;
    height: auto;
  }

  /* 電話予約ボタン */
  .ft-tel-btn {
    width: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    padding: 15px;
    margin: 16px auto;
    transform-origin: center;
    transform: translateZ(0);
    /* ちらつき防止 */
    will-change: transform;
    transition: transform .28s ease, box-shadow .28s ease;
  }

  /* 擬似要素がホバーを邪魔しないように */
  .ft-tel-btn::before,
  .ft-tel-btn::after {
    pointer-events: none;
  }

  .ft-tel-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(113, 183, 174, 0.80);
    filter: blur(2.549999952316284px);
    z-index: -1;
  }

  .ft-tel-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 97%;
    height: 90%;
    border: 1px solid rgba(255, 255, 255, 0.50);
    z-index: 1;
    transform: translate(-50%, -50%);
  }

  /* 電話番号 */
  .tf-tel-number {
    color: #FFF;
    font-family: "Noto Serif";
    font-size: 32px;
    font-weight: 400;
    line-height: normal;
    position: relative;
    z-index: 2;
    /* アニメーション */
    transition: opacity .25s ease, transform .25s ease, filter .25s ease;
  }

  /* ホバーで一回り大きく */
  .ft-tel-btn:hover {
    transform: scale(1.06);
  }

  /* キーボード操作でも拡大（アクセシビリティ） */
  .ft-tel-btn:focus-within {
    transform: scale(1.06);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
  }

  /* タップ時の手触り（任意） */
  .ft-tel-btn:active {
    transform: scale(1.03);
  }

  /* 電話アイコン */
  .tf-tel-number i {
    font-size: 28px;
    margin-right: 15px;
  }

  /* 郵便番号 */
  .font-size15 {
    font-size: 15px;
  }

  .ft-add {
    margin-bottom: 10px;
  }

  .ft-add i {
    font-size: 20px;
    margin-right: 15px;
  }

  /* フッターの表 */
  .time-table {
    width: 90%;
    border-collapse: collapse;
    margin: 10px auto 0 auto;
    border: 1px solid #ddd;
    border-collapse: separate;
    overflow: hidden;
    border-spacing: 0;
    text-align: center;
    background: #fcfcfc;
    margin-bottom: 15px;
    font-family: serif;
    color: #6A8DC7;
    font-size: 15px;
  }

  .time-table th,
  .time-table td {
    padding: 15px 5px;
    vertical-align: middle;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    line-height: 1;
    font-weight: normal;
  }

  .time-table th:last-child,
  .time-table td:last-child {
    border-right: none;
  }

  .time-table tr:last-child th,
  .time-table tr:last-child td {
    border-bottom: none;
  }

  .time-table th {
    background: #6A8DC7;
    color: #fff;
  }

  .time-table th.bg01 {
    color: #2b2b2b;
    background: #fcfcfc;
  }

  .time-table th:first-child {
    width: 33%;
  }

  .time-table th:last-child {
    width: 12%;
  }

  .time-table td {
    width: calc(55% / 6);
    color: #6A8DC7;
  }

  /* 土曜は17:00まで */
  .Saturday p {
    text-align: center;
    font-size: 15px;
  }


  /* フッターのメニュー */

  .footer-lists {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(560px, 2.5fr) minmax(0, 1fr);
    align-items: flex-start;
    column-gap: 50px;
    /* 横だけ余白 */
    row-gap: 0;
    color: #fff;
    font-size: 15px;
    line-height: 200%;
  }

  .footer-lists a {
    color: #fff;
  }

  .footer-lists a:hover {
    opacity: .5;
    text-decoration: underline;
  }

  /* 真ん中はさらに横並び */
  .category-2-grid {
    display: grid;
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    column-gap: 40px;
    margin: 0;
    padding: 0;
  }

  /* 白い下線 */
  .cg-title {
    font-weight: 600;
    letter-spacing: .04em;
    padding-bottom: 10px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    color: #fff;
  }

  /* 文字は消し、線だけ残して高さを合わせる */
  .cg-title.opacity {
    color: transparent;
    user-select: none;
  }

  /* コピーライト */
  .small {
      text-align: center;
      color: rgba(255, 255, 255, 0.70);
      font-size: 14px;
      padding: 10px 0;
      background: #3a5a95;
  }

  /* タブレット フッター */
  @media screen and (max-width: 768px) {

    .footer-top-flex {
      max-width: 100%;
      grid-template-columns: 1fr;
      /* 縦並び */
      column-gap: 0;
      row-gap: 24px;
      padding: 28px 16px;
    }

    /* フッターのメニュー */
    .footer-lists {
      width: 100%;
      max-width: 100%;
      grid-template-columns: 1fr;
      /* 1カラム */
      column-gap: 0;
      /* 横の余白なし */
      row-gap: 32px;
      /* 縦だけ余白 */
      padding: 32px 20px;
    }
  }

  /* スマホ フッター */
  @media screen and (max-width: 480px) {
  footer {
    width: 100%;
    margin: 0 auto;
    background: url("http://nakaya-shika.jp/wp-content/uploads/2025/11/footer-bg-sp.png") center / cover no-repeat;
    padding-top: 50px;
  padding-bottom: 80px;	
  }

    .ft-tel-btn {
      width: 80%;
    }

  .time-table {
      width: 100%;
  } 

    .category-2-grid{
      grid-auto-flow: row;                 
      grid-template-rows: none;        
      grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2列を均等 */
      column-gap: 24px;                    /* 横の余白を少し詰める（任意） */
      row-gap: 8px;                        /* 縦の余白を追加 */
    }

  .category-2 {
    margin-top: 25px;
  }

  }

  /* TOPに戻るボタン */
  .back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 48px;
    height: 48px;
    background-color: #6A8DC7;
    color: #fff;
    text-align: center;
    line-height: 48px;
    /* border-radius: 50%; */
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
  /*   opacity: 0;
    pointer-events: none; */
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .back-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  @media screen and (max-width: 768px) {

    /* TOPに戻るボタン */
    .back-to-top {
      bottom: 10px;
      right: 3%;
      border-radius: 50%;
      font-size: 20px;
      width: 45px;
      height: 45px;
      font-size: 18px;
      line-height: 43px;
    }
  }

  /* 下に固定 */
  .sp-tel-reserve {
    position: fixed;
    bottom: 3px;
    right: 6%;
    display: flex;
    flex-direction: column;
    align-items: center;
  z-index: 9999; 
    padding: 10px 20px;
    /* 最初は隠す */
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s;
  }

  .sp-tel-reserve::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(106, 141, 199, 0.80);
    filter: blur(2.549999952316284px);
    z-index: 0;
  }

  .sp-tel-reserve::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 97%;
    height: 90%;
    border: 1px solid rgba(255, 255, 255, 0.50);
    z-index: 1;
    transform: translate(-50%, -50%);
  }

  .sp-tel-reserve::before,
  .header-tel-box::after {
    pointer-events: none;
  }

  /* ホバーで一回り大きく */
  .sp-tel-reservex:hover {
    transform: scale(1.06);
  }

  /* キーボード操作でも拡大（アクセシビリティ） */
  .sp-tel-reserve:focus-within {
    transform: scale(1.06);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
  }

  /* タップ時の手触り（任意） */
  .sp-tel-reserve:active {
    transform: scale(1.03);
  }

  .sp-tel-reserve-text {
    color: #FFF;
    font-family: "Noto Serif";
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    position: relative;
    z-index: 999;
  }

  /* 電話番号 */
  .sp-tel-reserve-number {
    color: #FFF;
    font-family: "Noto Serif";
    font-size: 32px;
    font-weight: 400;
    line-height: normal;
    position: relative;
    z-index: 999; 
  }

  /* 電話アイコン */
  .sp-tel-reserve-number i {
    font-size: 32px;
    margin-right: 10px;
      position: relative;
    z-index: 999;
  }

  /* 出現状態 */
  .sp-tel-reserve.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity .25s ease, transform .25s ease;
  }

  @media screen and (max-width: 768px) {
    .sp-tel-reserve {
      right: auto;
      left: 2%;
      width: 300px;
    }

    .sp-tel-reserve-text {
      font-size: 12px;
    }

    /* 電話番号 */
    .sp-tel-reserve-number {
      font-size: 25px;
    }

    /* 電話アイコン */
    .sp-tel-reserve-number i {
      font-size: 25px;
      margin-right: 10px;
    }

  }

