@layer pages {

  /* ----------------------------------------
     MARK: LANG-BOX
  ---------------------------------------- */

  .lang-box {
    width: 100vw;
    height: 100vh;
    overflow: auto;
  }

  .lang-box-container {
    height: auto;
    padding: 76px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    gap: 32px;
    position: relative;
    flex-wrap: wrap;
    row-gap: 120px;
    z-index: 100;
    background: url('../images/bg_lang.webp') no-repeat center center;

    @media (max-width: 768px) {
      flex-direction: column;
      gap: 20px;
      flex-wrap: nowrap;
    }
  }

  .lang-box-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-shrink: 0;

    & .logo-item {
      width: auto;
      height: 200px;
      --logo-fill: #727272;

      @media (max-width: 768px) {
        height: 80px;
        margin-bottom: 56px;
      }
    }
  }

  .lang-box-item {
    border: 1px solid var(--color);
    border-radius: var(--radius-btn);
    padding: 16px 40px;

    &:hover {
      background: var(--color);
      cursor: pointer;
      color: var(--color-white);
      transform: translateY(-3px);
      transition: all var(--duration-base) ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
  }

  /* ----------------------------------------
     MARK: HEADER
  ---------------------------------------- */

  @keyframes borderAnimation {
    from { width: 0; }
    to   { width: 100%; }
  }

  @keyframes slideInFromRight {
    0%   { transform: translateX(100%); opacity: 0; }
    100% { transform: translateX(0);    opacity: 1; }
  }

  .header {
    position: relative;
  }

  .header-container {
    padding: 28px 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-header);
    z-index: 2;
    justify-content: space-between;

    @media (max-width: 768px) {
      padding: 14px 20px;
    }
  }

  /* ----------------------------------------
     WordPress管理バー対応（ログイン時）
     管理バーは 783px以上で height: 32px
     783px未満では非表示になるため補正不要
  ---------------------------------------- */
  body.admin-bar .header-container {
    top: 32px;
  }

  body.admin-bar .menu-btn {
    top: calc(37px + 32px);

    @media (max-width: 782px) {
      top: 16.5px;
    }
  }

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

  /* Figma 334:61: row, gap 16px, アイコン 68×58 + Reem Kufi Medium 32px / 134% / 6% / #67A3BB */
  .header-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
  }

  .header-brand-icon {
    display: block;
    width: 68px;
    height: 58px;
    object-fit: cover;
    flex-shrink: 0;

    @media (max-width: 768px) {
      width: 52px;
      height: 44px;
    }
  }

  .header-brand-wordmark {
    font-family: 'Reem Kufi', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.34;
    letter-spacing: 0.06em;
    color: #67a3bb;
    white-space: nowrap;

    @media (max-width: 768px) {
      font-size: 22px;
    }
  }

  /* グローバルナビは .menu-nav（ハンバーガー内）のみ。PC は Language / ご予約を右寄せ */
  .header-lang {
    position: relative;
    margin-left: auto;
  }

  .lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-large);
    color: var(--color-header-text);

    &:hover {
      position: relative;

      &::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 1px;
        background-color: var(--color-white);
        animation: borderAnimation var(--duration-base) forwards;
      }
    }
  }

  .header-lang-box {
    display: none;
    position: absolute;
    bottom: -48px;
    left: 50%;
    transform: translate(-50%, 100%);
    width: max-content;
    font-size: 18px;
    flex-direction: column;
    gap: 16px;
    background-color: var(--color-bg);
  }

  @media (min-width: 769px) {
    .header-lang > .header-lang-box {
      padding: 24px;
    }
  }

  #check-lang:checked ~ .main-wrapper .header-lang-box {
    display: flex;
  }

  #check-lang:checked ~ .main-wrapper .arrow {
    rotate: 180deg;
    transition: rotate var(--duration-base) ease;
  }

  .arrow {
    transition: rotate var(--duration-base) ease;
  }

  .header-lang-item {
    display: inline-block;
    position: relative;

    &:hover {
      cursor: pointer;
      opacity: 0.64;
    }
  }

  .header-lang-active {
    color: rgba(34, 34, 34, 0.64);

    &::after {
      content: '';
      display: block;
      width: 4px;
      height: 4px;
      background-color: var(--color);
      border-radius: 50%;
      position: absolute;
      bottom: -4px;
      left: 50%;
      transform: translate(-50%, 50%);
    }
  }

  .header-lang-bar {
    margin: 0 16px;
  }

  /* ヘッダー予約ボタン（Figma: border/text = #222222） */
  .header-reservation {
    margin: 0 96px 0 64px;
    padding: 12px 24px;
    border: 1px solid #222222;
    position: relative;
    overflow: hidden;
    transition: color var(--duration-base) ease, border-color var(--duration-base) ease;
    color: #222222;
    border-radius: 64px;

    &::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background-color: #67A3BB;
      transition: all 0.4s ease;
      z-index: -1;
    }

    &:hover {
      color: var(--color-white);
      border-color: #67A3BB;

      &::before {
        left: 0;
      }
    }
  }

  .header-menu {
    position: absolute;
  }

  .menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 40px;
    padding: 5px;
    position: fixed;
    z-index: 13;
    right: 80px;
    top: 37px;

    @media (max-width: 768px) {
      right: 20px;
      top: 16.5px;
    }
  }

  .bar {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-text);
  }

  .bar-1 { height: 2px; }
  .bar-2 { width: 66.6%; }

  /* .on-top は z-index:10。メニュー開時はオーバーレイ・パネル・menu-btn をその上に */
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-overlay);
    z-index: 11;
    display: none;
  }

  #check-menu:checked ~ .main-wrapper .overlay {
    display: block;
  }

  #check-menu:checked ~ .main-wrapper .menu-btn .bar-1 {
    transform: translateY(14px) rotate(45deg);
    transition: transform var(--duration-base) ease;
    background: var(--color);
  }

  #check-menu:checked ~ .main-wrapper .menu-btn .bar-2 {
    opacity: 0;
    transition: opacity 0.2s ease;
    background: var(--color);
  }

  #check-menu:checked ~ .main-wrapper .menu-btn .bar-3 {
    transform: translateY(-14px) rotate(-45deg);
    transition: transform var(--duration-base) ease;
    background: var(--color);
  }

  .header-box {
    display: flex;
    flex-direction: column;
    width: 400px;
    padding: 150px 60px 140px;
    position: fixed;
    top: 0;
    right: 0;
    background-color: var(--color-bg);
    z-index: 12;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--color-main) transparent;
    /* 閉じた状態：右外に隠す */
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition:
      transform var(--duration-base) ease-out,
      opacity   var(--duration-base) ease-out,
      visibility var(--duration-base) ease-out;

    &::-webkit-scrollbar { width: 8px; }

    &::-webkit-scrollbar-thumb {
      background-color: var(--color-main);
      border-radius: 4px;
    }

    &::-webkit-scrollbar-track {
      background-color: transparent;
    }

    @media (max-width: 768px) {
      width: 100%;
      padding: 16.5px 20px 48px;
    }
  }

  /* 開いた状態：スライドイン */
  #check-menu:checked ~ .main-wrapper .header-box {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .menu-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border: none;
  }

  .menu-nav-item {
    font-size: var(--text-medium);

    &:hover {
      opacity: 0.64;
    }
  }

  .menu-reservation {
    width: 100%;
    margin-top: 48px;
  }

  .menu-tel {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 28px;
    margin-top: 16px;
    transition: transform var(--duration-base) ease;

    &:hover {
      transform: translateY(-5px);
    }
  }

  .menu-tel-time {
    font-size: var(--text-base);
  }

  .menu-lang {
    margin-top: 40px;
    display: flex;
    position: unset;
    transform: unset;
  }

  .menu-logo {
    @media (max-width: 768px) {
      & .logo-item {
        display: block;
        height: 40px;
        width: auto;
        --logo-fill: var(--color);
        position: relative;
        z-index: 4;
        margin-bottom: 56px;
      }
    }
  }

  /* ----------------------------------------
     MARK: TOP
  ---------------------------------------- */

  .top {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

    &::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0.32;
      background: radial-gradient(50% 50% at 50% 50%, #002E3B 42.47%, rgba(0, 124, 161, 0.00) 100%);
    }

    @media (max-width: 768px) {
      aspect-ratio: unset;
    }
  }

  .top-logo {
    --logo-fill: var(--color-bg);
    position: absolute;
    z-index: 1;

    & .logo-item {
      @media (max-width: 768px) {
        width: 295px;
        height: auto;
      }
    }
  }

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

  /* ----------------------------------------
     MARK: LEAD
  ---------------------------------------- */

  .lead-container {
    padding: 120px 0;
    text-align: center;
    position: relative;

    @media (max-width: 768px) {
      padding: 56px 0 82px;
    }
  }

  .lead-left {
    width: 500px;
    position: absolute;
    top: 0;
    left: 0;

    @media (max-width: 768px) {
      width: 172px;
      top: 72px;
      left: 10px;
    }
  }

  .lead-right {
    width: 500px;
    position: absolute;
    bottom: 0;
    right: 0;

    @media (max-width: 768px) {
      width: 172px;
      bottom: 20px;
      right: 10px;
    }
  }

  /* ----------------------------------------
     MARK: NOTIFICATION
  ---------------------------------------- */

  .notification {
    padding-top: 100px;
    text-align: center;
  }

  /* 投稿一覧（page-hero 直下）。TOP の notification より上余白を詰める */
  .notification.notification--archive {
    padding-top: 64px;

    @media (max-width: 768px) {
      padding-top: 40px;
    }
  }

  .notification-list {
    display: grid;
    grid-template-rows: auto;
    text-align: left;
    max-width: 658px;
    width: 100%;
    margin: 0 auto;
  }

  .notification-item {
    display: grid;
    grid-template-columns: 224px 1fr;
    padding: 20px 24px;
    text-align: left;
    border-top: 1px solid var(--color-border);

    &:hover {
      background: #F0F0F0;
    }

    &:last-child {
      border-bottom: 1px solid var(--color-border);
    }

    @media (max-width: 768px) {
      grid-template-columns: 1fr;
      padding: 16px 0;
      gap: 6px;
    }
  }

  .notification-date {
    color: var(--color-muted);
  }

  .notification-item-title {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all var(--duration-base) ease;
    position: relative;

    @media (max-width: 768px) {
      width: 100%;
      white-space: normal;
      word-break: break-all;
    }
  }

  /* ----------------------------------------
     MARK: GUEST ROOM
  ---------------------------------------- */

  .guest-room {
    padding-top: 128px;

    @media (max-width: 768px) {
      padding-top: 64px;
    }
  }

  .guest-room-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;

    @media (max-width: 768px) {
      display: flex;
      flex-direction: column;
      gap: 40px;
      overflow: hidden;
    }
  }

  .guest-room-title {
    @media (max-width: 768px) {
      padding: 0 20px;
    }
  }

  .guest-room-intro {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: flex-end;

    @media (max-width: 768px) {
      padding: 0 20px;
      width: 100%;
      gap: 40px;
    }
  }

  /* 客室スライダー: .swiper-wrapper に justify-content / gap を付けない（Swiper の transform と競合し表示が白抜けすることがある）
     PC は幅 904px（280×3 + 32×2）を維持し、margin-left: auto で右寄せして左に余白を取る */
  .guest-room-slider {
    width: 100%;
    grid-column: span 2;
    overflow: hidden;
    margin-right: -32px;

    @media (min-width: 768px) {
      width: 904px;
      max-width: 100%;
      margin-left: auto;
    }
  }

  /* Swiper のアンレイヤードCSSに勝つため !important を使用 */
  .guest-room-slider .swiper-pagination {
    display: none !important;
  }

  @media (max-width: 768px) {
    .guest-room-slider .swiper-pagination {
      display: block !important;
      position: relative !important;
      text-align: left !important;
      margin-left: 20px !important;
      margin-bottom: 8px !important;
    }

    .guest-room-slider .swiper-pagination-bullet {
      width: 4px !important;
      height: 4px !important;
    }

    .guest-room-slider .swiper-pagination-bullet-active {
      background: var(--color-main) !important;
      opacity: 1 !important;
    }
  }

  .guest-room-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 280px;

    &:hover .guest-room-item-img {
      transform: scale(1.2);
      transition: transform var(--duration-slow) ease;
    }

    &:hover .guest-room-item-title,
    &:hover .guest-room-item-text {
      opacity: 0.64;
    }

    @media (max-width: 768px) {
      width: 256px;
    }
  }

  .guest-room-item-figure {
    width: 100%;
    aspect-ratio: 28/37;
    overflow: hidden;
  }

  .guest-room-item-img {
    width: 100%;
    aspect-ratio: 28/37;
    transition: transform var(--duration-slow) ease;
  }

  .guest-room-item-title {
    font-weight: 400;
  }

  /* ----------------------------------------
     MARK: BOOKING SEARCH（489ban 埋め込み）
     searchjs が生成する form / dl / button を上書き
     template: template-parts/booking-search.php／URL は inc/theme-config.php
  ---------------------------------------- */
  .booking-search {
    padding: 64px 0 24px;
  }

  .booking-search-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px 28px;
    max-width: var(--container-max);
    padding: 32px 32px;
    background: var(--color-white);

    @media (max-width: 900px) {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  }

  .booking-search-title {
    margin: 0;
    padding-right: 24px;
    border-right: 1px solid var(--color-border);
    font-family: var(--font-serif);
    font-size: var(--text-large);
    font-weight: 500;
    letter-spacing: var(--tracking-base);
    color: var(--color-muted);
    line-height: var(--leading-140);
    white-space: nowrap;

    @media (max-width: 900px) {
      padding-right: 0;
      border-right: none;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--color-border);
      width: 100%;
      white-space: normal;
    }
  }

  .booking-search-embed-wrap {
    min-width: 0;
  }

  .booking-search-embed {
    width: 100%;
  }

  /* 右列：カンプのゴールドリンク */
  .booking-search-links {
    flex-shrink: 0;
  }

  .booking-search-links-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .booking-search-links-list a {
    font-family: var(--font-serif);
    font-size: var(--text-small);
    color: var(--color-muted);
    text-decoration: none;
    line-height: var(--leading-140);
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
  }

  .booking-search-links-list a::before {
    content: '—';
    flex-shrink: 0;
    font-family: var(--font-sans-ja);
    color: var(--color-muted);
    opacity: 0.85;
  }

  .booking-search-links-list a:hover {
    opacity: 0.78;
  }

  @media (max-width: 900px) {
    .booking-search-links-list {
      flex-direction: column;
    }
  }

  /* 489ban が吐く要素 */
  #search_489ban {
    font-family: var(--font-sans-ja);
    font-size: var(--text-small);
    color: var(--color-text);
  }

  #search_489ban form[name='searchForm489ban'] {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 16px 20px;
    margin: 0;
    justify-content: center;
  }

  #search_489ban dl {
    margin: 0;
  }

  #search_489ban dl.date_489ban {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    max-width: 100%;
  }

  #search_489ban .date_489ban dt label {
    color: var(--color-muted);
    font-size: var(--text-small);
    font-weight: 400;
  }

  #search_489ban .date_489ban dd {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    margin: 0;
  }

  #search_489ban .date_489ban dd > label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text);
    font-size: var(--text-small);
    cursor: pointer;
    white-space: nowrap;
  }

  #search_489ban .inbox_489ban {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 12px 16px;
  }

  #search_489ban dl.stay_489ban {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 120px;
  }

  #search_489ban .stay_489ban dt label {
    color: var(--color-muted);
    font-size: var(--text-small);
    font-weight: 400;
  }

  #search_489ban .stay_489ban dd {
    margin: 0;
  }

  /* 旧 table レイアウトのウィジェットにも効かせる */
  #search_489ban table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
  }

  #search_489ban td,
  #search_489ban th {
    padding: 4px 8px 4px 0;
    vertical-align: middle;
    font-weight: 400;
    text-align: left;
  }

  #search_489ban label,
  #search_489ban .search_label,
  #search_489ban span[class*='label'] {
    color: var(--color-muted);
    font-size: var(--text-small);
  }

  #search_489ban input[type='text'],
  #search_489ban input[type='date'],
  #search_489ban input[type='number'],
  #search_489ban select {
    font-family: var(--font-sans-ja);
    font-size: var(--text-small);
    color: var(--color-text);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 10px 12px;
    min-height: 44px;
    box-sizing: border-box;
    max-width: 100%;
  }

  #search_489ban select {
    min-width: 7.5em;
    padding-right: 32px;
    appearance: auto;
    cursor: pointer;
  }

  /* 日付未定チェック時：宿泊日の表示・泊数セレクトの選択テキストをボーダー色に（disabled 時も同じ色を維持） */
  #search_489ban form[name='searchForm489ban']:has(input[name='unspecifiedDate']:checked) input[name='date'] {
    color: var(--color-border);
  }

  #search_489ban form[name='searchForm489ban']:has(input[name='unspecifiedDate']:checked) select[name='numberOfNights'] {
    color: var(--color-border) !important;
    -webkit-text-fill-color: var(--color-border);
    cursor: not-allowed;
    opacity: 1;
  }

  #search_489ban input[type='checkbox'] {
    accent-color: var(--color-main);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  #search_489ban input[type='submit'],
  #search_489ban button[type='submit'],
  #search_489ban button[name='searchButton489ban'],
  #search_489ban .search_submit,
  #search_489ban a[class*='submit'] {
    font-family: var(--font-sans-ja);
    font-size: var(--text-small);
    font-weight: 600;
    color: var(--color-white) !important;
    background: var(--color-main) !important;
    border: none !important;
    border-radius: var(--radius-btn-inner);
    padding: 12px 28px !important;
    cursor: pointer;
    transition: opacity var(--duration-base) ease;
    align-self: flex-end;
  }

  #search_489ban input[type='submit']:hover,
  #search_489ban button[type='submit']:hover,
  #search_489ban button[name='searchButton489ban']:hover {
    opacity: 0.92;
  }

  #search_489ban a {
    font-family: var(--font-serif);
    font-size: var(--text-small);
    color: var(--color-main);
    text-decoration: none;
  }

  #search_489ban a:hover {
    opacity: 0.75;
  }

  /* ----------------------------------------
     MARK: PLAN
  ---------------------------------------- */

  .plan {
    padding-top: 128px;

    @media (max-width: 768px) {
      padding-top: 80px;
    }
  }

  .plan-container {
    display: flex;
    flex-direction: column;
    gap: 60px;

    @media (max-width: 768px) {
      gap: 40px;
    }
  }

  .plan-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;

    @media (max-width: 768px) {
      grid-template-columns: 1fr;
    }
  }

  .plan-item {
    display: flex;
    flex-direction: column;
    gap: 20px;

    &:hover .plan-item-img {
      transform: scale(1.2);
      transition: transform var(--duration-slow) ease;
    }

    &:hover .plan-item-title,
    &:hover .plan-item-text {
      opacity: 0.64;
    }

    @media (max-width: 768px) {
      gap: 8px;
    }
  }

  .plan-item-figure {
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
  }

  .plan-item-img {
    width: 100%;
    aspect-ratio: 3/2;
  }

  .plan-item-title {
    margin-top: 8px;
    font-weight: 400;
  }

  .plan-u1 {
    align-self: center;

    @media (max-width: 768px) {
      margin: 24px auto 0;
    }
  }

  /* ----------------------------------------
     MARK: RESTAURANT
  ---------------------------------------- */

  .restaurant {
    padding-top: 196px;
  }

  .restaurant-container {
    display: grid;
    background: var(--color-white);
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    padding: 0 40px 64px;
    grid-template-areas:
      "images title"
      "images intro";

    @media (max-width: 768px) {
      grid-template-areas:
        "title"
        "intro"
        "images";
      grid-template-columns: 1fr;
      padding-inline: 20px;
    }
  }

  .restaurant-title {
    grid-area: title;
    transform: translateY(-20%);
  }

  .restaurant-intro {
    grid-area: intro;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: flex-end;

    @media (max-width: 768px) {
      margin-bottom: 0;
    }
  }

  .restaurant-u1 {
    @media (max-width: 768px) {
      z-index: 1;
    }
  }

  .restaurant-images {
    grid-area: images;
    position: relative;

    @media (max-width: 768px) {
      padding-bottom: 40px;
    }
  }

  .restaurant-figure {
    display: block;
  }

  .restaurant-figure_i1 {
    width: 282px;
    aspect-ratio: 282/373;
    margin-top: -56px;

    @media (max-width: 768px) {
      width: 246px;
      transform: translateY(0);
      margin-top: 0;
    }
  }

  .restaurant-figure_i2 {
    margin: -130px 0 0 auto;
    width: 159px;
    aspect-ratio: 159/211;
    position: relative;
    z-index: 1;

    @media (max-width: 768px) {
      width: 144px;
      margin: -90px 0 0 auto;
    }
  }

  /* ----------------------------------------
     MARK: HOT SPRING
  ---------------------------------------- */

  .hot-spring {
    margin-top: 156px;
    background: var(--color-white);
  }

  .hot-spring-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    grid-template-areas:
      "title images"
      "intro images";

    @media (max-width: 768px) {
      grid-template-columns: 1fr;
      grid-template-areas:
        "title"
        "intro"
        "images";
      gap: 40px;
      padding-bottom: 40px;
    }
  }

  .hot-spring-title {
    grid-area: title;
    transform: translateY(-20%);
  }

  .hot-spring-intro {
    grid-area: intro;
    margin-bottom: 64px;

    @media (max-width: 768px) {
      margin-bottom: 8px;
    }
  }

  .hot-spring-link {
    margin-top: 48px;

    @media (max-width: 768px) {
      margin: 48px auto 0;
    }
  }

  .hot-spring-images {
    grid-area: images;
    position: relative;
    display: flex;
    align-items: center;
  }

  .hot-spring-figure {
    width: 472px;
    position: relative;
    overflow: hidden;

    @media (max-width: 768px) {
      width: 100%;
    }
  }

  .hot-spring_i1 {
    width: 100%;
    aspect-ratio: 472/315;
  }

  /* ----------------------------------------
     MARK: FACILITIES
  ---------------------------------------- */

  .facilities {
    padding-top: 128px;

    @media (max-width: 768px) {
      padding-top: 80px;
    }
  }

  .facilities-slider {
    margin: 56px 0;

    @media (max-width: 768px) {
      margin: 40px 0;
    }
  }

  .facilities-figure {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

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

  .facilities-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;

    @media (max-width: 768px) {
      padding: 0 20px;
      font-size: var(--text-small);
      text-align: left;
    }
  }

  /* ----------------------------------------
     MARK: BLOG
  ---------------------------------------- */

  .blog {

    & .short-arrow {
      @media (max-width: 768px) {
        flex-direction: column;
        gap: 0;
        justify-content: space-between;
      }
    }

    @media (max-width: 768px) {
      padding-top: 0;
    }
  }

  .blog-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 56px 0;

    @media (max-width: 768px) {
      grid-template-columns: 1fr;
    }
  }

  .blog-item {
    display: flex;
    flex-direction: column;
    gap: 20px;

    &:hover .blog-item-img {
      transform: scale(1.2);
      transition: transform var(--duration-slow) ease;
    }

    &:hover .blog-item-title {
      opacity: 0.64;
    }

    @media (max-width: 768px) {
      flex-direction: row;
      gap: 16px;
      font-size: var(--text-small);
    }
  }

  .blog-item-figure {
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
  }

  .blog-item-img {
    width: 100%;
    aspect-ratio: 3/2;
  }

  .blog-item-title {
    flex-grow: 1;
  }

  .blog-u1 {
    margin: 0 auto;
  }

  /* ----------------------------------------
     MARK: SNS
  ---------------------------------------- */

  .sns {
    padding: 128px 0 80px;

    @media (max-width: 768px) {
      padding: 80px 20px;
    }
  }

  .sns-container {
    padding: 64px 40px;
    border: solid var(--color-muted);
    border-width: 1px 0;
    display: grid;
    grid-template-areas:
      "title images"
      "list  images";
    justify-content: space-between;

    @media (max-width: 768px) {
      padding: 40px 20px;
      grid-template-areas:
        "title list"
        "images images";
      gap: 24px;
    }
  }

  .sns-title {
    grid-area: title;

    @media (max-width: 768px) {
      align-self: center;
    }
  }

  .sns-list {
    grid-area: list;
    display: flex;
    gap: 24px;

    @media (max-width: 768px) {
      gap: 12px;
      justify-content: end;
    }
  }

  .sns-item {
    display: block;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform var(--duration-base) ease, opacity var(--duration-base) ease;

    &:hover {
      transform: scale(1.2);
      opacity: 0.8;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      width: 32px;
      height: 32px;
    }
  }

  /* background-image のみ指定し background-size 等を上書きしない */
  .sns-insta { background-image: url('../icon/icon_insta.svg'); }
  .sns-x     { background-image: url('../icon/icon_x.svg'); }
  .sns-fb    { background-image: url('../icon/icon_fb.svg'); }

  .sns-images {
    grid-area: images;
    display: flex;
    gap: 24px;

    @media (max-width: 768px) {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
  }

  .sns-images-box {
    width: 200px;
    aspect-ratio: 1/1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    max-width: calc((100vw - 248px) / 4);

    &:hover .sns-image {
      transform: scale(1.1);
    }

    @media (max-width: 768px) {
      width: 100%;
      max-width: none;
    }
  }

  .sns-figure {
    position: relative;
    overflow: hidden;

    &::before {
      content: '';
      display: block;
      width: 24px;
      height: 24px;
      background: url('../icon/icon_gallery.svg') no-repeat;
      position: absolute;
      top: 16px;
      right: 16px;
      z-index: 1;
      transition: transform var(--duration-base) ease, opacity var(--duration-base) ease;
      filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
    }

    &:hover::before {
      transform: rotate(15deg);
      opacity: 0.8;
    }
  }

  .sns-image {
    transition: transform var(--duration-base) ease, filter var(--duration-base) ease;
  }

  /* ----------------------------------------
     MARK: CONTACT
  ---------------------------------------- */

  .contact {
    padding: 112px 0;
    background: url('../images/bg_contact.webp');
    color: var(--color-white);

    @media (max-width: 768px) {
      padding: 64px 20px 80px;
    }
  }

  .contact-container {
    display: flex;
    justify-content: space-between;
    align-items: end;

    @media (max-width: 768px) {
      flex-direction: column;
      gap: 64px;
    }
  }

  .contact-title {
    color: var(--color-white);

    @media (max-width: 768px) {
      align-self: start;
    }
  }

  .contact-ja-title {
    &::before {
      background: var(--color-white);
    }
  }

  /* 電話番号リンク（CONTACTセクション） */
  .gu-contact-tel {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-decoration: none;
    color: #ffffff;

    &:hover .gu-contact-tel-number {
      text-decoration: underline;
    }
  }

  .gu-contact-tel-label {
    font-family: 'Noto Serif JP', serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.06em;
    opacity: 0.8;
  }

  .gu-contact-tel-number {
    font-family: 'Noto Serif JP', serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
  }

  @media (max-width: 768px) {
    .gu-contact-tel-number {
      font-size: 22px;
    }
  }

  /* ----------------------------------------
     MARK: ACCESS
  ---------------------------------------- */

  .access {
    padding: 100px 0 0;
    background: url('../images/bg_access.webp') ;
    background-size: contain;
  }

  @media (max-width: 768px) {
    .access {
      background: url('../images/bg_access.webp') no-repeat center center;
      background-size: cover;
    }
  }

  .access-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    grid-template-areas:
      "title   title"
      "address images";
    margin-bottom: 100px;

    @media (max-width: 768px) {
      margin: 0 20px;
      width: auto;
      grid-template-areas:
        "title"
        "images"
        "address";
      grid-template-columns: 1fr;
      gap: 40px;
    }
  }

  .access-title {
    grid-area: title;
    color: var(--color-white);
  }

  .access-ja-title {
    &::before {
      background: var(--color-white);
    }
  }

  .access-address {
    grid-area: address;
    height: fit-content;
    color: var(--color-white);
    border-spacing: 0 16px;

    & tbody {
      @media (max-width: 768px) {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
    }

    & tr {
      @media (max-width: 768px) {
        display: flex;
        flex-direction: column;
        gap: 4px;
        font-size: var(--text-small);
      }
    }
  }

  .access-info-name {
    display: inline-block;
    max-width: 120px;
    border-left: 1px solid var(--color-white);
    padding: 0 16px 0 10px;
  }

  .access-images {
    grid-area: images;
  }

  .access-image {
    width: 100%;
    aspect-ratio: 1/1;
  }

  .access-map {
    display: block;
    width: 100%;
    aspect-ratio: 144/37;

    @media (max-width: 768px) {
      margin-top: 56px;
      aspect-ratio: 1/1;
    }
  }

  /* ----------------------------------------
     MARK: COPYRIGHT
  ---------------------------------------- */

  .copyright {
    padding: 56px 32px;
    background: var(--color-main);

    @media (max-width: 768px) {
      padding: 40px 0 16px;
    }
  }

  .copyright-container {
    position: relative;

    @media (max-width: 768px) {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 32px;
      text-align: center;
    }
  }

  .bottom-logo {
    /* フッターロゴはヘッダーより少し小さめに表示 */
    & .logo-item {
      display: block;
      height: 36px;
      width: auto;

      @media (max-width: 768px) {
        height: 32px;
      }
    }
  }

  .copyright-text {
    color: var(--color-white);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);

    @media (max-width: 768px) {
      all: initial;
      color: var(--color-white);
    }
  }

  /* ----------------------------------------
     MARK: ON TOP
  ---------------------------------------- */

  .on-top {
    position: fixed;
    bottom: 56px;
    right: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: rotate(90deg) translate(0, 100%);
    transform-origin: bottom right;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration-base) ease, visibility var(--duration-base) ease;
    z-index: 10;
    cursor: pointer;

    &::before {
      content: '';
      display: block;
      width: 53px;
      height: 16px;
      background: url('../icon/icon_long_arrow.svg') no-repeat;
      background-position: bottom;
      transform: scaleX(-1);
    }

    &.visible {
      opacity: 1;
      visibility: visible;
    }

    &:hover {
      opacity: 0.8;
      transform: rotate(90deg) translate(-20px, 100%);
      transition: transform var(--duration-base) ease, opacity var(--duration-base) ease;
    }

    @media (max-width: 768px) {
      bottom: 32px;
      right: 24px;
      gap: 16px;
    }
  }

  /* ----------------------------------------
     MARK: ROOM ARCHIVE
  ---------------------------------------- */

  .page-hero {
    position: relative;
    height: 520px;
    overflow: hidden;
  }

  .page-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .page-hero-overlay {
    position: absolute;
    inset: 0;
    background: color-mix(in srgb, var(--color-muted) 60%, transparent);
    z-index: 1;
  }

  .page-hero-title {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;

    & h1 {
      color: var(--color-white);
      font-size: 40px;
      font-weight: 700;
      letter-spacing: 0.15em;
      line-height: var(--leading-160);
      font-family: var(--font-ja);
      text-align: center;
    }
  }

  /* パンくず（page-hero 直下・本文エリア上） */
  .page-breadcrumb {
    padding: 16px 20px 12px;
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
  }

  .page-breadcrumb .breadcrumb {
    width: 100%;
  }

  .page-breadcrumb .breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-family: var(--font-serif);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.5;
  }

  .page-breadcrumb .breadcrumb-item {
    display: inline-flex;
    align-items: center;
    color: var(--color-muted);
    gap: 8px;
  }

  .page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    opacity: 0.65;
    font-size: 12px;
    font-weight: 400;
    color: var(--color-text);
  }

  .page-breadcrumb .breadcrumb-link {
    color: var(--color-muted);
    transition: color var(--duration-base) ease;

    &:hover {
      color: var(--color-text);
    }
  }

  .page-breadcrumb .breadcrumb-current {
    color: var(--color-text);
    font-weight: 600;
  }

  .page-lead-container {
    padding: 100px 20px 80px;
    @media (max-width: 768px) {
      padding: 64px 20px 0px;
    }
  }

  .lead-catch {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: var(--tracking-base);
    line-height: var(--leading-160);
    margin-bottom: 24px;
  }

  .lead-text {
    font-size: var(--text-base);
    line-height: var(--leading-200);
    letter-spacing: var(--tracking-base);
  }

  .room-info {
    background: var(--color-main);
    padding: 80px 0;
    color: var(--color-white);
  }

  .room-info-container {
    padding: 0 20px;
  }

  .room-info-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: var(--tracking-base);
    text-align: center;
    margin-bottom: 48px;
  }

  .room-info-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .room-info-item {
    display: flex;
    align-items: flex-start;
    gap: 32px;
  }

  .room-info-label {
    border: 1px solid var(--color-white);
    padding: 6px 20px;
    border-radius: 3px;
    font-size: var(--text-base);
    white-space: nowrap;
    min-width: 164px;
    text-align: center;
    flex-shrink: 0;
  }

  .room-info-detail {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .room-info-value {
    font-size: var(--text-base);
    line-height: var(--leading-160);
    padding: 6px 0;
  }

  .room-info-note {
    font-size: var(--text-small);
    opacity: 0.8;
  }

  .room-archive {
    padding: 80px 0;
  }

  .room-archive-heading {
    padding-bottom: 56px;
  }

  .room-archive-line {
    display: block;
    margin-top: 24px;
    width: 80px;
    height: 1px;
    background-color: var(--color-muted);
  }

  

  .room-archive-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: var(--tracking-base);
    color: var(--color-muted);
    font-family: var(--font-ja);
  }

  .room-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 32px;
    margin-bottom: 60px;
  }

  .room-card-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--color-text);
  }

  .room-card-item:hover .room-card-img {
    transform: scale(1.2);
    transition: transform var(--duration-slow) ease;
  }

  .room-card-item:hover .room-card-title,
  .room-card-item:hover .room-card-text {
    opacity: 0.64;
  }

  .room-card-figure {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
  }

  .room-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) ease;
  }

  .room-card-title {
    font-size: var(--text-base);
    letter-spacing: var(--tracking-base);
  }

  .room-card-text {
    font-size: var(--text-small);
    line-height: var(--leading-160);
    color: var(--color-muted);
    letter-spacing: var(--tracking-base);
  }

  @media (max-width: 768px) {
    .room-list {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .room-card-item {
      flex-direction: column;
      gap: 16px;
    }

    .room-card-figure {
      width: 100%;
      aspect-ratio: 3 / 2;
    }
  }

  @media (max-width: 768px) {
    .page-hero {
      height: 300px;
    }

    .page-hero-title h1 {
      font-size: 28px;
    }

    .page-breadcrumb .breadcrumb-list {
      font-size: 12px;
    }

    .page-breadcrumb {
      padding: 12px 20px 8px;
    }

    .lead-catch {
      font-size: 22px;
    }

    .room-info-item {
      flex-direction: column;
      gap: 12px;
    }

    .room-info-label {
      min-width: unset;
      width: 100%;
    }

    .room-list {
      grid-template-columns: 1fr;
    }
  }

  /* ----------------------------------------
     MARK: ROOM SINGLE
  ---------------------------------------- */

  /* 客室単体：リード〜詳細をまとめる（onsen-section + onsen-section-container 相当） */
  .room-single-section {
    padding-bottom: 80px;
  }

  .room-single-container {
    display: flex;
    flex-direction: column;
  }

  /* キャッチ・スライダーなしで本文のみ先頭のとき */
  .room-single-container > .room-single-description-block:first-child {
    padding-top: 48px;
  }

  .room-single-description {
    font-size: var(--text-base);
    line-height: var(--leading-200);
    letter-spacing: var(--tracking-base);
  }

  .slider-prev,
  .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--duration-base) ease;
  }

  .slider-prev:hover,
  .slider-next:hover {
    background: rgba(255, 255, 255, 1);
  }

  .slider-prev {
    left: 16px;
  }

  .slider-next {
    right: 16px;
  }

  .slider-prev::before,
  .slider-next::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--color-text);
    border-right: 2px solid var(--color-text);
  }

  .slider-prev::before {
    transform: rotate(-135deg) translate(-2px, 2px);
  }

  .slider-next::before {
    transform: rotate(45deg) translate(-2px, 2px);
  }

  /* Swiper のアンレイヤードCSSに勝つため !important を使用 */
  .slider-pagination {
    position: relative !important;
    inset: auto !important;
    display: flex !important;
    justify-content: center !important;
    margin-top: 16px !important;
    gap: 6px !important;
    width: 100% !important;
  }

  .slider-pagination .swiper-pagination-bullet {
    width: 6px !important;
    height: 6px !important;
    background: var(--color-muted) !important;
    opacity: 0.5 !important;
    border-radius: 50% !important;
  }

  .slider-pagination .swiper-pagination-bullet-active {
    background: var(--color-main) !important;
    opacity: 1 !important;
  }

  /* 詳細エリア（ブロック間余白は .room-single-container の gap、下余白は .room-single-section） */
  .room-single-container > .room-single-detail:first-child {
    padding-top: 40px;
  }

  /* 客室詳細・他ページ共通：詳細ブロックの横幅コンテナ */
  .page-detail-wrap {
    width: 900px;
    margin-inline: auto;
  }

  .room-single-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  /* スペック情報（左カラム） */
  .room-single-specs {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .room-spec-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
  }

  .room-spec-label {
    border: 1px solid var(--color-text);
    padding: 6px 0;
    border-radius: 3px;
    font-size: var(--text-base);
    line-height: var(--leading-160);
    width: 164px;
    min-width: 164px;
    text-align: center;
    flex-shrink: 0;
  }

  .room-spec-value {
    font-size: var(--text-base);
    line-height: var(--leading-160);
    letter-spacing: var(--tracking-base);
    padding: 6px 0;
  }

  /* 右カラム */
  .room-single-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  /* 注意書き */
  .room-single-notes {
    background: var(--color-white);
    border-radius: 3px;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .room-single-notes-title {
    font-size: var(--text-small);
    font-weight: 700;
    color: var(--color-text);
    line-height: var(--leading-160);
  }

  .room-single-notes-item {
    display: flex;
    gap: 4px;
    align-items: flex-start;
  }

  .room-single-notes-marker {
    color: var(--color-primary);
    font-size: var(--text-small);
    flex-shrink: 0;
    line-height: var(--leading-160);
  }

  .room-single-notes-item p {
    font-size: var(--text-small);
    line-height: var(--leading-160);
    color: var(--color-text);
  }

  /* 360度ビュー */
  .room-single-360 {
    width: 100%;
    aspect-ratio: 433 / 293;
    border-radius: 3px;
    overflow: hidden;
  }

  .room-single-360-iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  /* CTAボタン */
  .room-single-cta {
    display: flex;
    justify-content: center;
    padding-top: 40px;
  }

  /* SP対応 */
  @media (max-width: 768px) {
    .page-content-wrap,
    .page-detail-wrap {
      width: 100%;
    }

    .room-single-container {
      gap: 24px;
    }

    .room-single-container > .room-single-description-block:first-child {
      padding-top: 32px;
    }

    .slider-prev,
    .slider-next {
      width: 36px;
      height: 36px;
    }

    .room-single-body {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .room-spec-item {
      flex-direction: column;
      gap: 8px;
    }

    .room-spec-label {
      min-width: unset;
      width: 100%;
      padding: 6px 20px;
    }

    .room-single-360 {
      aspect-ratio: 1 / 1;
    }
  }

  /* ============================================================
     MARK: SHARED INNER PAGE STYLES
     温泉・料理など各ページ間で共通して使用するスタイル
  ============================================================ */

  /* 背景画像帯（2重オーバーレイ） */
  .page-bg-band {
    width: 100%;
    overflow: hidden;
    height: 339px;
    position: relative;
  }

  .page-bg-band::before,
  .page-bg-band::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
  }

  .page-bg-band::before {
    background: rgba(0, 0, 0, 0.4);
  }

  .page-bg-band::after {
    background: rgba(77, 61, 31, 0.6);
  }

  .page-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* コンテンツ幅 900px 中央揃え（スライダー・本文・説明文 共通） */
  .page-content-wrap {
    width: min(900px, 100%);
    margin-inline: auto;
    margin-bottom: 64px;
    @media (max-width: 768px) {
      margin-bottom: 0px;
    }
  }

  /* スライダー（温泉・料理・客室単体 共通） */
  .page-slider-wrap {
    width: min(900px, 100%);
    margin-inline: auto;
    position: relative;
    margin-bottom: 24px;
    @media (max-width: 768px) {
      margin-bottom: 0px;
    }
  }

  .page-slider {
    border-radius: 16px;
    overflow: hidden;
  }

  .page-slide-img {
    width: 100%;
    height: 506px;
    object-fit: cover;
    display: block;
  }

  /* セクション見出しタイトル（28px 中央寄せ） */
  .page-section-lead-title {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.6;
    color: var(--color-text);
    text-align: center;
  }

  /* 中央見出し + グレー下線（固定ページで共通利用可） */
  .page-section-heading--center-rule {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-bottom: 48px;
  }

  .page-section-heading--center-rule .page-section-lead-title {
    width: 100%;
    text-align: center;
  }

  .page-section-heading--center-rule::after {
    content: '';
    display: block;
    width: 80px;
    height: 1px;
    background: #9e9e9e;
    align-self: center;
  }

  /* 本文ブロックの横幅（アクセス等） */
  .page-content-section {
    padding-bottom: 80px;
    max-width: 1080px;
    margin-inline: auto;
    width: min(1080px, 100%);
  }

  /* ヒーロー画像なし（ニュース・ブログ詳細／一覧） */
  .page-hero--no-image {
    background: linear-gradient(
      155deg,
      color-mix(in srgb, var(--color-main) 75%, #2a2218) 0%,
      var(--color-main) 55%,
      color-mix(in srgb, var(--color-main) 90%, #000) 100%
    );
  }

  /* ニュース・ブログ詳細（single.php / single-blog.php） */
  .article-single {
    padding: 64px 20px 96px;
  }

  .article-single-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .article-single-header {
    text-align: center;
  }

  .article-single-date {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--color-muted);
  }

  .article-single-body {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1.85;
    color: var(--color-text);
  }

  .article-single-body > *:first-child {
    margin-top: 0;
  }

  .article-single-body > * + * {
    margin-top: 1.25em;
  }

  .article-single-body h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.55;
    margin-top: 2em;
    margin-bottom: 0.75em;
  }

  .article-single-body h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-top: 1.75em;
    margin-bottom: 0.5em;
  }

  .article-single-body ul,
  .article-single-body ol {
    padding-left: 1.5em;
  }

  .article-single-body li + li {
    margin-top: 0.35em;
  }

  .article-single-body a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .article-single-body a:hover {
    opacity: 0.85;
  }

  .article-single-body img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
  }

  .article-single-body .wp-block-image {
    margin: 2em 0;
  }

  .article-single-body .wp-block-quote {
    margin: 1.5em 0;
    padding: 1em 1.25em;
    border-left: 3px solid var(--color-text);
    background: color-mix(in srgb, var(--color-bg) 50%, #fff);
  }

  .article-single-body .wp-block-separator {
    margin: 2em 0;
    border: none;
    border-top: 1px solid var(--color-border);
  }

  .article-single-pages {
    margin-top: 2em;
    margin-bottom: 0;
    font-family: var(--font-serif);
    font-size: 14px;
  }

  .article-single-pages-label {
    display: inline;
    margin: 0 0.5em 0 0;
  }

  /* 前後記事（コアの the_post_navigation は空セル・見出し表示の問題があるためテーマで組み立て） */
  .article-single-pager {
    margin-top: 8px;
    padding-top: 32px;
  }

  .article-single-pager-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
  }

  .article-single-pager-links > :only-child {
    max-width: 560px;
  }

  .article-single-pager-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 18px 20px;
    min-height: 100%;
    font-family: var(--font-serif);
    color: var(--color-text);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: 0 2px 12px color-mix(in srgb, var(--color-main) 8%, transparent);
    transition:
      border-color var(--duration-base) var(--ease-btn),
      box-shadow var(--duration-base) var(--ease-btn),
      transform var(--duration-base) var(--ease-btn);
  }

  .article-single-pager-link:hover {
    border-color: color-mix(in srgb, var(--color-main) 35%, var(--color-border));
    box-shadow: 0 6px 20px color-mix(in srgb, var(--color-main) 12%, transparent);
    transform: translateY(-2px);
  }

  .article-single-pager-link:focus-visible {
    outline: 2px solid var(--color-main);
    outline-offset: 3px;
  }

  .article-single-pager-link--next {
    align-items: flex-end;
    text-align: right;
  }

  .article-single-pager-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-muted);
  }

  .article-single-pager-title {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: 0.04em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }

  .article-single-back {
    display: flex;
    justify-content: center;
    padding-top: 28px;
  }

  .blog-archive {
    padding-bottom: 96px;
  }

  .blog-archive-empty {
    font-family: var(--font-serif);
    text-align: center;
    color: var(--color-muted);
    margin: 48px 0;
  }

  .article-single-pagination {
    margin-top: 48px;
    display: flex;
    justify-content: center;
  }

  .article-single-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 16px;
    font-family: var(--font-serif);
    font-size: 15px;
  }

  .article-single-pagination a.page-numbers,
  .article-single-pagination span.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    padding: 8px 12px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    color: var(--color-text);
    transition: background var(--duration-base) ease;
  }

  .article-single-pagination a.page-numbers:hover {
    background: rgba(0, 0, 0, 0.04);
  }

  .article-single-pagination span.page-numbers.current {
    background: var(--color-text);
    border-color: var(--color-text);
    color: var(--color-white);
    font-weight: 700;
  }

  @media (max-width: 768px) {
    .article-single {
      padding: 40px 20px 72px;
    }

    .article-single-inner {
      gap: 28px;
    }

    .article-single-body {
      font-size: 15px;
    }

    .article-single-pager-links {
      grid-template-columns: 1fr;
    }

    .article-single-pager-links > :only-child {
      max-width: none;
    }

    .article-single-pager-link--next {
      align-items: flex-start;
      text-align: left;
    }
  }

  /* ============================================================
     VK ExUnit シェアボタン（サイトトーンに合わせたリニューアル）
     白ベースのピル＋サービス色はアイコン円のみ／遷移先はプラグイン既定
  ============================================================ */

  .veu_socialSet {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    padding: 1.25rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
  }

  .veu_socialSet ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: stretch;
    justify-content: flex-start;
  }

  .veu_socialSet li {
    flex: 1 1 200px;
    min-width: 0;
    max-width: 100%;
  }

  .veu_socialSet .sb_icon .sb_icon_inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    min-height: 48px;
    padding: 8px 18px 8px 10px !important;
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: var(--tracking-base);
    line-height: 1.4;
    color: var(--color-text) !important;
    background: var(--color-white) !important;
    border: 1px solid var(--color-border) !important;
    border-radius: var(--radius-btn) !important;
    box-shadow: 0 2px 12px color-mix(in srgb, var(--color-main) 8%, transparent) !important;
    transition:
      border-color var(--duration-base) var(--ease-btn),
      box-shadow var(--duration-base) var(--ease-btn),
      transform var(--duration-base) var(--ease-btn);
  }

  .veu_socialSet .sb_icon .sb_icon_inner:hover {
    opacity: 1;
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--color-main) 35%, var(--color-border)) !important;
    box-shadow: 0 6px 24px color-mix(in srgb, var(--color-main) 14%, transparent) !important;
  }

  .veu_socialSet .sb_icon .sb_icon_inner:focus-visible {
    outline: 2px solid var(--color-main);
    outline-offset: 3px;
  }

  .veu_socialSet .sb_icon .sb_icon_inner .sns_txt {
    flex: 1;
    position: static;
    color: var(--color-text) !important;
    margin-left: 16px;
  }

  /* アイコン：円形バッジ＋白グリフ（各サービス色はここだけ） */
  .veu_socialSet .sb_icon .sb_icon_inner .icon_sns {
    flex-shrink: 0;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 16px !important;
    line-height: 1 !important;
    color: var(--color-white) !important;
    border-radius: 50%;
    box-sizing: border-box;
  }

  .veu_socialSet .sb_facebook .sb_icon_inner .icon_sns {
    background: #1877f2;
  }

  .veu_socialSet .sb_x_twitter .sb_icon_inner .icon_sns {
    background: #0f1419;
  }

  .veu_socialSet .sb_bluesky .sb_icon_inner .icon_sns {
    background: #1185fe;
  }

  .veu_socialSet .sb_hatena .sb_icon_inner .icon_sns {
    background: #00a4de;
  }

  .veu_socialSet .sb_line .sb_icon_inner .icon_sns {
    background: #06c755;
  }

  .veu_socialSet .sb_google .sb_icon_inner .icon_sns {
    background: #ea4335;
  }

  /* コピー：サイトのアクセントで統一 */
  .veu_socialSet .sb_copy .sb_icon_inner {
    cursor: pointer;
  }

  .veu_socialSet .sb_copy .sb_icon_inner .icon_sns {
    background: var(--color-main);
    color: var(--color-white) !important;
  }

  /* Font Awesome 未読込時：コピーは SVG マスク（アイコン円内） */
  .veu_socialSet .sb_copy .vk_icon_w_r_sns_copy.icon_sns i {
    display: none !important;
  }

  .veu_socialSet .sb_copy .vk_icon_w_r_sns_copy.icon_sns {
    position: relative;
    font-family: inherit !important;
  }

  .veu_socialSet .sb_copy .vk_icon_w_r_sns_copy.icon_sns::before {
    display: none !important;
  }

  .veu_socialSet .sb_copy .vk_icon_w_r_sns_copy.icon_sns::after {
    content: '';
    display: block;
    width: 17px;
    height: 17px;
    background-color: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z'/%3E%3C/svg%3E")
      center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z'/%3E%3C/svg%3E")
      center / contain no-repeat;
  }

  @media (max-width: 768px) {
    .veu_socialSet li {
      flex: 1 1 100%;
    }

    .veu_socialSet .sb_icon .sb_icon_inner {
      padding: 8px 16px 8px 8px;
    }
  }

  /* 営業時間バッジ行 */
  .page-section-hours {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  /* 注意書きボックス（白背景・ボーダー） */
  .page-notice {
    background: #fff;
    border: 1px solid var(--color-text);
    border-radius: 3px;
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .page-notice-text {
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1.8;
    color: var(--color-text);
    padding-left: 1.2em;
    text-indent: -1.2em;
  }

  .page-notice-text::before {
    content: '※';
  }

  @media (max-width: 768px) {
    .page-bg-band {
      height: 200px;
    }

    .page-slide-img {
      height: 240px;
    }

    .page-section-lead-title {
      font-size: 22px;
    }

    .page-section-hours {
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }

    .page-notice {
      padding: 24px 20px;
    }
  }

  /* ============================================================
     MARK: HOT SPRING PAGE
  ============================================================ */

  /* リードコンテナ（page-lead-container を流用、flex レイアウト追加） */
  .onsen-lead-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
  }

  /* 各温泉セクション（ryori-meal-section 相当） */
  .onsen-section {
    padding-block: 80px;
  }

  .onsen-section-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

    /* SP対応 */
    @media (max-width: 768px) {
      .onsen-section-container {
        gap: 24px;
      }
    }

  /* セクション見出しエリア（ryori-meal-header 相当） */
  .onsen-section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  /* セクション本文 */
  .onsen-section-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .onsen-section-text {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.6;
    color: var(--color-text);
  }

  /* 情報テーブル（泉質・効能） */
  .onsen-info-table {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
  }

  .onsen-info-heading {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--color-text);
  }

  .onsen-info-row {
    display: flex;
    align-items: flex-start;
    gap: 24px;
  }

  /* 共通バッジ（営業時間・泉質・効能・料金ラベルで共用） */
  .onsen-info-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 0;
    width: 164px;
    min-width: 164px;
    border: 1px solid var(--color-text);
    border-radius: 3px;
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
    text-align: center;
    flex-shrink: 0;
  }

  .onsen-info-value {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.6;
    color: var(--color-text);
    padding-top: 6px;
  }

  /* 日帰り入浴 */
  .onsen-daytrip {
    padding-block: 80px;
    background: var(--color-bg);
  }

  .onsen-daytrip-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  .onsen-daytrip-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
  }

  .onsen-daytrip-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.6;
    color: var(--color-text);
  }

  /* 料金表（2カラムグリッド） */
  .onsen-price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 48px;
  }

  .onsen-price-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .onsen-price-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }

  .onsen-price-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 6px;
  }

  .onsen-price-value {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.6;
    color: var(--color-text);
    display: block;
  }

  .onsen-price-note {
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--color-text);
  }

  /* モバイル対応 */
  @media (max-width: 768px) {
    .onsen-section {
      padding-block: 48px;
    }

    .onsen-section-container,
    .onsen-daytrip-container,
    .room-single-container {
      padding-inline: 20px;
    }

    .onsen-info-row {
      flex-direction: column;
      gap: 8px;
    }

    .onsen-info-badge {
      width: 100%;
      min-width: unset;
      padding: 6px 20px;
    }

    .onsen-price-grid {
      grid-template-columns: 1fr;
    }

    .onsen-price-item {
      flex-direction: column;
      gap: 8px;
    }

    .onsen-price-content {
      padding-top: 0;
    }

    .onsen-daytrip {
      padding-block: 48px;
    }
  }

  /* ============================================================
     MARK: CUISINE PAGE
  ============================================================ */

  /* リードコンテナ（page-lead-container を流用、センタリング追加） */
  .ryori-lead-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
  }

  /* catch テキスト（font-weight を 500 に上書き） */
  .ryori-lead-catch {
    font-weight: 500;
  }

  /* リード本文（センタリング） */
  .ryori-lead-text {
    text-align: center;
  }

  /* 食事セクション共通（ご夕食・ご朝食） */
  .ryori-meal-section {
    padding-block: 80px;
  }

  .ryori-meal-section--breakfast {
    background: var(--color-bg);
  }

  .ryori-meal-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  /* セクション見出しエリア */
  .ryori-meal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  /* 朝食 説明テキスト */
  .ryori-breakfast-desc {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.6;
    color: var(--color-text);
  }

  /* おしながきセクション */
  .ryori-shinagaki-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  /* おしながき リード文 */
  .ryori-shinagaki-intro {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.6;
    color: var(--color-text);
  }

  /* おしながき 見出し */
  .ryori-shinagaki-title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 2.2;
    color: var(--color-text);
  }

  /* メニューリスト（onsen-info-badge / onsen-info-value を流用） */
  .ryori-menu-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .ryori-menu-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
  }

  .ryori-menu-item .onsen-info-value {
    padding-top: 6px;
  }

  /* CTAボタンエリア */
  .ryori-cta {
    padding-block: 80px;
  }

  .ryori-cta-container {
    display: flex;
    justify-content: center;
  }

  /* モバイル対応 */
  @media (max-width: 768px) {
    .ryori-meal-section {
      padding-bottom: 24px;
    }

    .ryori-meal-container {
      padding-inline: 20px;
    }

    .ryori-menu-item {
      flex-direction: column;
      gap: 8px;
    }

    .ryori-menu-item .onsen-info-badge {
      width: auto;
      min-width: unset;
      padding: 6px 20px;
    }

    .ryori-cta {
      padding-block: 48px;
    }
  }

  /* ============================================================
     MARK: FACILITIES PAGE
  ============================================================ */

  .facilities-page-lead-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
  }

  .facilities-page-lead-catch {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.6;
    color: var(--color-text);
  }

  .facilities-page-section {
    padding-bottom: 80px;
  }

  .facilities-page-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 1080px;
    margin-inline: auto;
    width: min(1080px, 100%);
  }

  .facilities-page-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .facilities-page-card-figure {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 527 / 300;
  }

  .facilities-page-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .facilities-page-card-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.06em;
    color: var(--color-text);
  }

  .facilities-page-card-text {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.06em;
    color: var(--color-text);
  }

  .facilities-page-cta {
    padding-block: 80px;
  }

  .facilities-page-cta-container {
    display: flex;
    justify-content: center;
  }

  @media (max-width: 768px) {
    .facilities-page-lead-catch {
      font-size: 22px;
    }

    .facilities-page-grid {
      grid-template-columns: 1fr;
      gap: 24px;
      padding-inline: 20px;
    }

    .facilities-page-section {
      padding-bottom: 48px;
    }

    .facilities-page-cta {
      padding-block: 48px;
    }
  }

  /* ============================================================
     MARK: ACCESS PAGE
     カンプ: 宿泊施設_アクセス_PC 266:1173
  ============================================================ */

  /* リード：薄グレー帯（page-lead-container は館内施設と同系） */
  .access-lead {
    background: var(--color-bg);
  }

  .access-lead-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
    padding: 80px 20px 40px;
  }

  .access-lead-catch-second {
    margin-top: 8px;
  }

  .access-lead-container .line {
    width: 80px;
    margin: 28px auto 0;
    background-color: var(--color-text);
  }

  /* ページ内ナビ（アクセス以外でも流用可） */
  .page-nav {
    padding: 0 0 48px;
  }

  .page-nav-list {
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
    max-width: 1080px;
  }

  .page-nav-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 75px;
    padding: 12px 32px;
    border-radius: 6px;
    background: #8b8478;
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.6;
    text-align: center;
    transition: opacity var(--duration-base) ease;
  }

  .page-nav-link__text {
    display: block;
  }

  /* 下向き矢印（二等辺三角形） */
  .page-nav-link__mark {
    display: block;
    width: 10px;
    height: 6px;
    flex-shrink: 0;
    background-color: var(--color-white);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }

  .page-nav-link:hover {
    opacity: 0.88;
  }

  .page-content-section--shuttle {
    padding-top: 8px;
  }

  /* 白ボックス＋カンプ幅（ラベル左端に注意書きを揃える） */
  .access-shuttle-section {
    margin-inline: auto;
    padding: 64px 40px;
    background: var(--color-white);
  }

  /* 注意書き：ボードと同じ幅で中央配置し、ラベル左端にテキストを揃える */
  .access-shuttle-notes {
    max-width: 736px;
    width: 100%;
    margin: 36px auto 0;
    padding-left: 0;
    text-align: left;
  }

  /* Group 865：左ラベル列（固定幅）+ 右テキスト（ブロック全体を中央寄せ） */
  .access-shuttle-board {
    display: grid;
    grid-template-columns: 164px minmax(0, 1fr);
    column-gap: 38px;
    row-gap: 24px;
    align-items: start;
    width: 100%;
    max-width: 736px;
    margin-inline: auto;
  }

  .access-shuttle-badge {
    padding: 6px 0;
    justify-self: stretch;
    width: 100%;
    max-width: 164px;
    border: 1px solid var(--color-text);
    border-radius: 3px;
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.06em;
    text-align: center;
    color: var(--color-text);
  }

  .access-shuttle-lines {
    padding: 8px 0;
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.04em;
    color: var(--color-text);
  }

  .access-shuttle-lines p + p {
    margin-top: 8px;
  }

  .page-content-section--shuttle .page-inline-cta.access-reservation {
    margin-top: 56px;
  }

  .page-inline-cta {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .page-content-section--shuttle .page-inline-cta-label {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.06em;
  }

  .page-inline-cta-label {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.06em;
  }

  .page-inline-cta.access-reservation .long-arrow {
    border: 1px solid var(--color-text);
    border-radius: 40px;
    padding: 16px 32px 16px 40px;
    max-width: min(420px, 100%);
    width: 100%;
  }

  .page-content-section--shuttle .page-inline-cta.access-reservation .long-arrow .btn-text {
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: 0.06em;
  }

  .access-page-intro {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.6;
    color: var(--color-text);
    margin: 0 0 40px;
    max-width: 610px;
  }

  /* JR・バスセクション：中央見出し下のリード（ゴシック・中央） */
  .access-page-intro--jr {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.85;
    text-align: center;
    margin: 0 auto 40px;
    color: color-mix(in srgb, var(--color-text) 92%, transparent);
  }

  .access-jr-inner {
    max-width: 1080px;
    margin-inline: auto;
  }

  .page-content-section--jr {
    padding-top: 24px;
    padding-bottom: 88px;
  }

  .access-route-block + .access-route-block {
    margin-top: 48px;
  }

  /* 地図・本文の左端を千歳／札幌で一致させる（flex 中央寄せだと列幅差でズレる） */
  .access-route-grid {
    display: grid;
    grid-template-columns: minmax(0, 512px) minmax(0, 324px);
    column-gap: 56px;
    align-items: center;
    width: 100%;
    max-width: 892px;
    margin-inline: auto;
  }

  .access-route-map {
    min-width: 0;
    width: 100%;
    max-width: 512px;
  }

  .access-route-map-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 512 / 300;
    background: #e8e8e8;
    border: 1px solid var(--color-border);
    border-radius: 0;
    overflow: hidden;
  }

  .access-route-map-inner iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  .access-route-map .page-notice-text {
    margin-top: 12px;
  }

  .access-route-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .access-route-title-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--color-white);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.04em;
    color: var(--color-text);
  }

  /* 縦線＋黒丸のタイムライン（番号なし） */
  .access-route-steps {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.04em;
    color: var(--color-text);
  }

  .access-route-steps li {
    position: relative;
    padding: 0 0 12px 26px;
  }

  .access-route-steps li:last-child {
    padding-bottom: 0;
  }

  .access-route-steps li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 0.62em;
    width: 6px;
    height: 6px;
    background: var(--color-text);
    border-radius: 50%;
    transform: translate(-50%, -15%);
    z-index: 1;
  }

  .access-route-steps li::after {
    content: '';
    position: absolute;
    left: 4px;
    top: calc(0.62em + 5px);
    bottom: 0;
    width: 1px;
    background: var(--color-text);
    transform: translateX(-50%);
    opacity: 0.9;
  }

  .access-route-steps li:last-child::after {
    display: none;
  }

  .page-content-section--car {
    padding-bottom: 96px;
  }

  .page-content-section--car .access-car-parking {
    margin-top: 0;
  }

  .access-car-parking-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.6;
    margin: 0 0 32px;
    text-align: center;
    color: var(--color-text);
  }

  /* 2カラム同幅で中央にまとめる（左右が離れすぎない） */
  .access-car-parking-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
    row-gap: 24px;
    align-items: start;
    width: 100%;
  }

  .access-car-parking-cell {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 16px;
    min-width: 0;
  }

  @media (max-width: 768px) {
    .access-car-parking-cell {
      flex-direction: column;
    }
  }

  .access-car-parking-capacity {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0;
    padding: 8px 0;
    color: var(--color-text);
  }

  .access-car-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 164px;
    min-height: 44px;
    padding: 6px 12px;
    border: 1px solid var(--color-text);
    border-radius: 3px;
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: center;
    color: var(--color-text);
  }

  @media (max-width: 768px) {
    .access-car-badge {
      width: 100%;
    }
  }

  .access-car-highway-text {
    font-family: var(--font-serif);
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.02em;
    color: var(--color-text);
  }

  .access-car-highway-text strong {
    font-weight: 700;
  }

  @media (max-width: 1200px) {
    .page-nav-list {
      flex-wrap: wrap;
    }
  }

  @media (max-width: 768px) {
    .access-lead-container .facilities-page-lead-catch {
      font-size: 22px;
    }

    .access-lead-container .line {
      width: 56px;
      margin-top: 28px;
    }

    .access-lead-container {
      padding: 56px 20px 28px;
    }

    .page-nav-list {
      flex-direction: column;
      flex-wrap: wrap;
      align-items: stretch;
      padding-inline: 20px;
    }

    .page-nav-link {
      width: 100%;
      min-height: auto;
      font-size: 16px;
      padding: 12px 20px;
    }

    .page-content-section {
      padding-bottom: 48px;
      padding-inline: 20px;
    }

    .page-nav-link__mark {
      width: 8px;
      height: 5px;
    }

    .access-shuttle-section {
      padding: 32px 20px 40px;
    }

    .access-shuttle-board {
      grid-template-columns: 1fr;
      row-gap: 16px;
    }

    .access-shuttle-badge {
      max-width: none;
    }

    .access-shuttle-notes {
      padding-left: 0;
      margin-top: 28px;
    }

    .access-route-grid {
      grid-template-columns: 1fr;
      row-gap: 24px;
      column-gap: 0;
      max-width: none;
    }

    .access-route-map {
      max-width: none;
    }

    .access-route-body {
      width: 100%;
    }

    .access-page-intro {
      font-size: 18px;
    }

    .access-page-intro--jr {
      font-size: 15px;
      line-height: 1.8;
      margin-bottom: 36px;
    }

    .access-car-parking-row {
      grid-template-columns: 1fr;
    }

    .access-car-parking-title {
      margin-bottom: 24px;
      font-size: 18px;
    }
  }

  /* ============================================================
     MARK: G-UMBRELLA — HERO
     Figma: 249:1392 / left col 604px / image x:604 y:140 w:836 h:498
  ============================================================ */

  body.home .gu-hero {
    background: var(--color-bg);
    position: relative;
  }

  /*
    2カラム：左 604px（最大） / 右 残り全幅
    - max-width / margin: auto を廃止し width: 100% で全幅展開 → 右ビューポート端まで画像が届く
    - 左列 min(41.94vw, 604px)：604/1440 = 41.94%、1440px超では604px固定
    - 右列 1fr：残り全幅
    - align-items: start で各カラムを上揃えにし、画像の自然サイズが高さを決める
  */
  body.home .gu-hero-inner {
    display: grid;
    grid-template-columns: min(41.94vw, 604px) 1fr;
    width: 100%;
    align-items: center;
    padding: 120px 0 80px;

    @media (max-width: 768px) {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto;
      padding: 0;
    }
  }

  body.home .gu-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding: 16px 32px 16px 80px;

    @media (max-width: 768px) {
      padding: 80px 20px 40px;
      gap: 20px;
      justify-content: flex-start;
    }
  }

  /* ラベル共通（Noto Serif JP Black） */
  body.home .gu-hero-label {
    font-family: var(--font-serif);
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1.4;
    white-space: nowrap;
    margin-left: -2.5em;
    letter-spacing: 2.5px;
    @media (max-width: 768px) {
      margin-left: -2em;
    }
  }

  /* 根拠・基：64px アンバー（Figma fill_C381N1 = #67A3BB） */
  body.home .gu-label-big {
    font-size: clamp(3rem, 4.44vw, 4rem);
    color: #67A3BB;
  }

  /* に・づいた：40px ダーク */
  body.home .gu-label-small {
    font-size: clamp(1.25rem, 2.78vw, 2.5rem);
    color: #222222;
  }

  /* 装飾クォート「 」：68px アンバー（Figma fill_C381N1 = #67A3BB） */
  body.home .gu-hero-quote {
    font-size: clamp(3.5rem, 4.72vw, 4.25rem);
    color: #67A3BB;
  }

  /* タイトル（ベース 24px Black） */
  body.home .gu-hero-title {
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: clamp(1.5rem, 1.67vw, 1.5rem);
    line-height: 1.6;
    letter-spacing: 0.1em;
    color: var(--color-dark);
    margin-left: 1.5em;
    
    
    
    
    
    
    
    
    @media (max-width: 768px) {
      margin-left: 0;
    }
  }

  /* 療育：48px グリーン（Figma ts15 = #F897C4） */
  body.home .gu-title-accent-pink {
    font-size: clamp(1.75rem, 3.33vw, 3rem);
    color: #F897C4;
  }

  /* 可能性：48px アンバー（Figma ts17 / fill_C381N1 = #67A3BB） */
  body.home .gu-title-accent-blue {
    font-size: clamp(1.75rem, 3.33vw, 3rem);
    color: #67A3BB;
  }

  /* バッジエリア */
  body.home .gu-hero-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  body.home .gu-hero-badge-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    @media (max-width: 769px) {
      flex-direction: column;
    }
  }

  /* バッジ本体（青・ピンク共通） */
  body.home .gu-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: var(--font-serif);
    font-size: 0.875rem;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.8;
  }

  /* バッジ幅：Figma 128px を基準に両方同幅（テキストが収まる最小値） */
  body.home .gu-badge--blue {
    background: #67A3BB;
    min-width: 128px;
    @media (max-width: 769px) {
      min-width: 100%;
    }
  }

  body.home .gu-badge--pink {
    background: #F897C4;
    min-width: 128px;
    @media (max-width: 769px) {
      min-width: 100%;
    }
  }

  /* バッジ右テキスト（複数行）Figma layout_TAKZXH: width=347px */
  body.home .gu-badge-desc {
    font-family: var(--font-serif);
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.6;
    color: var(--color-dark);
    max-width: 347px;
  }

  body.home .gu-badge-desc--small {
    font-size: 0.75rem;
  }

  /* バッジ右テキスト（1行） */
  body.home .gu-badge-desc-inline {
    font-family: var(--font-serif);
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.8;
    color: var(--color-dark);
  }

  /* ロケーションピル Figma layout_2SXSXP: w=468 h=41 padding=7px 61px 8px 60px */
  body.home .gu-hero-location {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: min(468px, 100%);
    padding: 8px 0px 8px 0px;
    background: #fff;
    border: 1px solid var(--color-dark);
    border-radius: 64px;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--color-dark);
  }

  /*
    右カラム：画像
    Figma: x=604 y=140 w=836 h=498 / borderRadius 16px 0px 0px 16px
    - margin-top: 140px → Figmaと同じ y=140 からスタート（固定ヘッダー100px + ギャップ40px）
    - height: auto（base.css 継承）で画像の自然サイズ (836×498) を保持
    - position: absolute + inset: 0 を廃止し、画像自身がサイズを決める
  */
  body.home .gu-hero-image {
    overflow: hidden;
    border-radius: 16px 0 0 16px;
    max-width: 1200px;
    margin-left: auto;

    @media (max-width: 768px) {
      border-radius: 12px 12px 0 0;
      margin-top: 0;
      margin: 16px 0 16px 16px;
    }
  }

  /* 画像は width:100% height:auto（base.css）で自然な縦横比（836:498）を維持 */
  body.home .gu-hero-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
  }

  /* アーチ型シェイプ (Figma 249:1420 / 1440×156px) */
  body.home .gu-hero-wave {
    width: 100%;
    line-height: 0;
    margin-top: -1px; /* ヒーロー背景との隙間を防ぐ */
    background-color: #fff;

    & svg {
      width: 100%;
      height: auto;
      display: block;
    }
  }

  /* ─── ニュースセクション (Figma 249:1423) ─── */

  /*
    ニュースセクション：ウェーブ要素に重ねる
    Figma: ニュースカード y=702 / ウェーブ y=715 h=156
    → margin-top のネガティブ値でウェーブの上に引き上げ
    → z-index:1 でヒーローセクションより前面に表示
  */
  body.home .gu-news-section {
    margin-top: -120px;          /* ウェーブ(156px)に100px重なる */
    position: relative;
    z-index: 1;
  }

  /* カード：800px固定幅・中央寄せ・白背景・角丸4px・padding 24/40px */
  body.home .gu-news-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 4px;
    padding: 24px 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  /* タイトル「お知らせ」：Noto Sans JP 20px Regular #222222 letterSpacing 6% */
  body.home .gu-news-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 160%;
    letter-spacing: 0.06em;
    color: #222222;
    margin: 0;
    padding: 0;
  }

  /* ニュースリスト */
  body.home .gu-news-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  /* 各ニュースアイテム（セパレーター付き） */
  body.home .gu-news-item {
    padding: 14px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.25);
  }

  /* リンク行：日付 + タイトル + アイコン を横並び */
  body.home .gu-news-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    text-decoration: none;
    color: inherit;

    &:hover .gu-news-item-title {
      text-decoration: underline;
    }
  }

  /* 日付：Noto Sans JP 14px Medium #7C7C7C 100px固定幅 */
  body.home .gu-news-date {
    flex-shrink: 0;
    width: 100px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0.06em;
    color: #7C7C7C;
  }

  /* タイトルテキスト：残り幅を埋める */
  body.home .gu-news-item-title {
    flex: 1;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0.04em;
    color: #222222;
  }

  /* 外部リンクアイコン */
  body.home .gu-news-external-icon {
    flex-shrink: 0;
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
    color: #7C7C7C;
  }

  /* モバイル対応 */
  @media (max-width: 768px) {
    body.home .gu-news-section {
      margin-top: 0;
      padding: 76px 16px 48px; /* padding-top = 重ね量60px + 余白16px */
    }

    body.home .gu-news-card {
      padding: 20px 20px;
      border-radius: 4px;
    }

    body.home .gu-news-date {
      width: 80px;
      font-size: 12px;
    }

    body.home .gu-news-item-title {
      font-size: 13px;
    }
  }

  /* ─── About セクション (Figma 249:1642 / 249:1654) ─── */

  /* セクション：白背景 → アーチで #F9F9F9 へ移行 */
  body.home .gu-about-section {
    background-color: #ffffff;
    position: relative;
  }

  /* コンテンツ幅：1080px中央 / column / gap:48px (Figma layout_1H5L89) */
  body.home .gu-about-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 120px 40px 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }

  /* タイトルグループ：column / center / gap:32px (Figma layout_ZD7XKN) */
  body.home .gu-about-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  /* タイトル：Noto Serif JP 40px Medium #222222 letterSpacing 6% (Figma style_DYLG1Z) */
  body.home .gu-about-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 134%;
    letter-spacing: 0.06em;
    color: #222222;
    text-align: center;
    margin: 0;
  }

  /* 装飾ライン：width 40px / 2px / #67A3BB (Figma layout_USXT4S / fill_031ZRJ) */
  body.home .gu-about-rule {
    display: block;
    width: 40px;
    height: 2px;
    background-color: #67A3BB;
  }

  /* テキストコンテンツ：column / stretch / gap:32px (Figma layout_QTZSCA) */
  body.home .gu-about-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  /* リードテキスト：Noto Serif JP 24px Medium 140% lineHeight (Figma style_4DXLCR) */
  body.home .gu-about-lead {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0.06em;
    color: #222222;
    text-align: center;
    margin: 0;
  }

  /* 本文：Noto Serif JP 16px Regular 200% lineHeight (Figma style_P1XJV0) */
  body.home .gu-about-body {
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 200%;
    letter-spacing: 0.06em;
    color: #222222;
    text-align: center;
    margin: 0;
  }

  /* ── 画像×テキスト行 (Figma 315:43 / column / gap:80px) ── */

  /* 行コンテナ：1080px中央・横padding なし */
  body.home .gu-about-rows {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    padding: 60px 0 80px;
    display: flex;
    flex-direction: column;
    gap: 80px;

    /* 100vw 幅の #F9F9F9 背景を擬似要素で全幅に拡張 */
    &::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100vw;
      background-color: #F9F9F9;
      z-index: 0;
    }
  }

  /* 各行：横並び / gap:56px (Figma layout_OH0YA6) */
  body.home .gu-about-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 56px;
    position: relative;
    z-index: 1;
  }

  /* 画像カラム：512px固定・角丸4px */
  body.home .gu-about-row-figure {
    flex: 0 0 512px;
    margin: 0;

    & img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 4px;
      object-fit: cover;
    }
  }

  /* テキストカラム：残り幅 / column / gap:32px (Figma layout_HDK4PY) */
  body.home .gu-about-row-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  /* 行タイトル：Noto Serif JP 32px Medium #67A3BB (style_L1TTWC / style_QUB7FW) */
  body.home .gu-about-row-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 134%;
    letter-spacing: 0.06em;
    color: #67A3BB;
    text-align: left;
    margin: 0;
  }

  /* 行本文：Noto Serif JP 16px Regular 200% (style_J3VJFK / style_XCI0SS) */
  body.home .gu-about-row-body {
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 200%;
    letter-spacing: 0.06em;
    color: #222222;
    text-align: left;
    margin: 0;
  }

  /* アーチ型シェイプ (Figma 249:1654 / ドーム型 1440×156px) */
  body.home .gu-about-wave {
    width: 100%;
    line-height: 0;
    margin-top: -1px;

    & svg {
      width: 100%;
      height: auto;
      display: block;
    }
  }

  @media (max-width: 768px) {
    body.home .gu-about-inner {
      padding: 60px 24px 60px;
      gap: 32px;
    }

    body.home .gu-about-title {
      font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    body.home .gu-about-lead {
      font-size: clamp(1rem, 4vw, 1.5rem);
    }

    body.home .gu-about-body {
      font-size: 14px;
      text-align: left;
    }

    body.home .gu-about-rows {
      padding: 0 24px 60px;
      gap: 56px;
    }

    body.home .gu-about-row {
      flex-direction: column;
      gap: 32px;
    }

    body.home .gu-about-row-figure {
      flex: none;
      width: 100%;
    }

    body.home .gu-about-row-title {
      font-size: clamp(1.25rem, 5vw, 2rem);
    }

    body.home .gu-about-row-body {
      font-size: 14px;
    }
  }

  /* ─── Reasons セクション (Figma 315:38) ─── */

  /* セクション：#F9F9F9 背景（about アーチからの連続） */
  body.home .gu-reasons-section {
    background-color: #F9F9F9;
    padding: 80px 20px;
  }

  /* コンテナ：1081px中央 / column / gap:48px (Figma layout_V4B538) */
  body.home .gu-reasons-inner {
    max-width: 1081px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }

  /* タイトルグループ：column / center / gap:32px (Figma layout_1CUYHR) */
  body.home .gu-reasons-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  /* タイトル：Noto Serif JP 40px Medium #222222 (Figma style_W4Q95G) */
  body.home .gu-reasons-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 134%;
    letter-spacing: 0.06em;
    color: #222222;
    text-align: center;
    margin: 0;
  }

  /* 装飾ライン：40px / 2px / #67A3BB (Figma layout_WS6DH0) */
  body.home .gu-reasons-rule {
    display: block;
    width: 40px;
    height: 2px;
    background-color: #67A3BB;
  }

  /*
    カードグリッド：flex wrap / gap:32px / 3列+2列(センタリング)
    Figma: 339px × 3 + 32px × 2 = 1081px ちょうど
    (Figma layout_ZF8G47)
  */
  body.home .gu-reasons-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
  }

  /* カード：339px固定 / column / gap:16px (Figma layout_O72AA2) */
  body.home .gu-reasons-card {
    flex: 0 0 339px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* カード画像：339×336px / 角丸4px */
  body.home .gu-reasons-card-figure {
    margin: 0;
    flex-shrink: 0;

    & img {
      display: block;
      width: 100%;
      aspect-ratio: 339 / 336;
      object-fit: cover;
      border-radius: 4px;
    }
  }

  /* カードテキスト：column / gap:16px (Figma layout_NRL6YT) */
  body.home .gu-reasons-card-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* カードタイトル：Noto Serif JP 24px SemiBold #67A3BB (Figma style_P06Y2E) */
  body.home .gu-reasons-card-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 160%;
    letter-spacing: 0.06em;
    color: #67A3BB;
    text-align: left;
    margin: 0;
  }

  /* カード本文：Noto Serif JP 16px Medium #222222 (Figma style_2W7OWH) */
  body.home .gu-reasons-card-body {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0.06em;
    color: #222222;
    text-align: left;
    margin: 0;
  }

  @media (max-width: 768px) {
    body.home .gu-reasons-section {
      padding: 60px 20px;
    }

    body.home .gu-reasons-title {
      font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    body.home .gu-reasons-card {
      flex: 0 0 calc(50% - 16px); /* 2列 */
    }

    body.home .gu-reasons-card-title {
      font-size: 1.125rem;
    }

    body.home .gu-reasons-card-body {
      font-size: 14px;
    }
  }

  @media (max-width: 480px) {
    body.home .gu-reasons-card {
      flex: 0 0 100%; /* 1列 */
    }
  }

  /* ─── Flow セクション (Figma 319:44) ─── */

  /* セクション背景 */
  body.home .gu-flow-section {
    background-color: #F9F9F9;
    padding: 80px 20px;
  }

  /* コンテナ：1081px中央 / column / gap:48px (Figma layout_9P643Q) */
  body.home .gu-flow-inner {
    max-width: 1081px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }

  /* タイトルグループ (Figma layout_JPMG90 / column / center / gap:32px) */
  body.home .gu-flow-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  /* タイトル：Noto Serif JP 40px SemiBold #222222 (Figma style_028MFP) */
  body.home .gu-flow-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0.06em;
    color: #222222;
    text-align: center;
    margin: 0;
  }

  /* 装飾ライン：40px / 2px / #67A3BB */
  body.home .gu-flow-rule {
    display: block;
    width: 40px;
    height: 2px;
    background-color: #67A3BB;
  }

  /*
    ステップ行：row / center / gap:8px (Figma layout_5NSN10)
    カードは flex:1 で等幅に / 矢印は shrink:0 で固定36px
  */
  body.home .gu-flow-steps {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    width: 100%;
  }

  /* 矢印アイコン：36×36px固定 (Figma Group 230/232/233) */
  body.home .gu-flow-arrow {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;

    & svg {
      display: block;
      width: 36px;
      height: 36px;
    }
  }

  /* カード：flex:1 / white / pad:16px / col / gap:10px / 等高 (Figma layout_5I9HQY) */
  body.home .gu-flow-card {
    flex: 1;
    align-self: stretch;
    background-color: #ffffff;
    border-radius: 4px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  /* カード画像：fill幅 / 固定高120px / object-fit:cover (Figma layout_C5WIRW h=119.55) */
  body.home .gu-flow-card-figure {
    margin: 0;
    flex-shrink: 0;

    & img {
      display: block;
      width: 100%;
      height: 120px;
      object-fit: cover;
      border-radius: 4px;
    }
  }

  /* カードテキスト：column / gap:16px (Figma layout_UMXOI9) */
  body.home .gu-flow-card-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
  }

  /* カードタイトル：Noto Serif JP 18px Medium #222222 (Figma style_WLE1ZV) */
  body.home .gu-flow-card-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0.06em;
    color: #222222;
    margin: 0;
  }

  /* カード本文：Noto Serif JP 16px Medium #222222 (Figma style_2MW57E) */
  body.home .gu-flow-card-body {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0.06em;
    color: #222222;
    margin: 0;
    flex: 1;
  }

  /* 電話番号リンク（相談・見学カード） */
  body.home .gu-flow-card-tel {
    display: block;
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0.04em;
    color: #67A3BB;
    text-decoration: none;
    margin-top: 4px;

    &:hover {
      text-decoration: underline;
    }
  }

  /* CTA：row / center / gap:16px (Figma layout_41NFK2) */
  body.home .gu-flow-card-cta {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #222222;
    margin-top: auto;
  }

  /* CTAラベル：Bold 16px underline (Figma style_H893FA) */
  body.home .gu-flow-cta-label {
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0.06em;
    text-decoration: underline;
  }

  /* CTAアイコン：24×24px circle（矢印を下向きに回転） */
  body.home .gu-flow-cta-icon {
    flex-shrink: 0;
    display: inline-flex;

    & svg {
      display: block;
      width: 24px;
      height: 24px;
      transform: rotate(90deg);
    }
  }

  @media (max-width: 900px) {
    body.home .gu-flow-steps {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
    }

    body.home .gu-flow-arrow {
      align-self: center;
      transform: rotate(90deg);
      margin: 4px 0;
    }

    body.home .gu-flow-card {
      align-self: auto;
    }

    body.home .gu-flow-card-figure img {
      height: 160px;
    }
  }

  @media (max-width: 768px) {
    body.home .gu-flow-section {
      padding: 60px 16px;
    }

    body.home .gu-flow-title {
      font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
  }

  /* ============================================================
     Fullwidth Image — プログラム直下 (Figma 249:1529 / 1440×398px)
  ============================================================ */

  body.home .gu-fullwidth-image {
    width: 100%;
    line-height: 0;

    & img {
      display: block;
      width: 100%;
      height: 398px;
      object-fit: cover;
      object-position: center;
    }
  }

  @media (max-width: 768px) {
    body.home .gu-fullwidth-image img {
      height: 220px;
    }
  }

  /* ============================================================
     Program Section — プログラム紹介 (Figma 320:48)
     背景: #FFFFFF / 上下にアーチ(#F9F9F9)
  ============================================================ */

  body.home .gu-program-section {
    background-color: #ffffff;
    position: relative;
  }

  /* アーチ共通 */
  body.home .gu-program-arch {
    width: 100%;
    line-height: 0;

    & svg {
      display: block;
      width: 100%;
      height: auto;
    }
  }

  body.home .gu-program-arch--top {
    margin-bottom: -1px;
  }

  body.home .gu-program-arch--bottom {
    margin-top: -1px;
  }

  /* インナー */
  body.home .gu-program-inner {
    max-width: 1083px;
    margin: 0 auto;
    padding: 64px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }

  /* タイトル */
  body.home .gu-program-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  body.home .gu-program-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 134%;
    letter-spacing: 0.06em;
    text-align: center;
    color: #222222;
  }

  body.home .gu-program-rule {
    display: block;
    width: 40px;
    height: 2px;
    background-color: #67A3BB;
  }

  /* アンカーナビ（各カードへスクロール） */
  body.home .gu-program-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  body.home .gu-program-nav-header {
    background-color: #67A3BB;
    color: #ffffff;
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 160%;
    letter-spacing: 0.06em;
    text-align: center;
    padding: 8px 16px;
    border-radius: 8px 8px 0 0;
  }

  body.home .gu-program-anchor-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 32px;
    padding: 24px;
    background-color: #ffffff;
    border: 2px dashed #67A3BB;
    border-top: none;
    border-radius: 0 0 8px 8px;
  }

  body.home .gu-program-anchor {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background-color: #ffffff;
    border: 1px solid #444444;
    border-radius: 40px;
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0.06em;
    color: #444444;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;

    /* アイコン：通常状態（ダーク円 + 白矢印） */
    & .gu-anchor-circle { fill: #444444; }
    & .gu-anchor-arrow  { fill: #ffffff; }

    &:hover {
      background-color: #444444;
      color: #ffffff;

      /* ホバー時：白円 + ダーク矢印 */
      & .gu-anchor-circle { fill: #ffffff; }
      & .gu-anchor-arrow  { fill: #444444; }
    }
  }

  body.home .gu-program-anchor-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;

    & svg {
      width: 24px;
      height: 24px;
    }
  }

  /* パネル（全件常時表示） */
  body.home .gu-program-contents {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  /* プログラムカード */
  body.home .gu-program-card {
    background-color: #F9F9F9;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  body.home .gu-program-card-top {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  body.home .gu-program-card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  body.home .gu-program-card-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 160%;
    letter-spacing: 0.06em;
    color: #222222;
  }

  /* title + title_suffix: PC は1行（語の間にスペース）、SP のみ <br class="sp-only"> で改行 */
  @media (min-width: 769px) {
    body.home .gu-program-card-title .gu-program-card-title-suffix::before {
      content: ' ';
    }
  }

  body.home .gu-program-card-desc {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 160%;
    letter-spacing: 0.06em;
    color: #67A3BB;
  }

  body.home .gu-program-card-figure {
    flex: 0 0 50%;
    max-width: 480px;

    & img {
      display: block;
      width: 100%;
      height: 342px;
      object-fit: cover;
      border-radius: 4px;
    }
  }

  /* 支援内容 / 指導方法 共通ボックス */
  body.home .gu-program-box-header {
    padding: 4px 8px;
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 180%;
    background-color: #ffffff;
    border-radius: 8px 8px 0 0;
    text-align: center;
  }

  body.home .gu-program-box--blue .gu-program-box-header {
    border: 1px solid #67A3BB;
    color: #67A3BB;
  }

  body.home .gu-program-box--pink .gu-program-box-header {
    border: 1px solid #F897C4;
    color: #F897C4;
  }

  body.home .gu-program-box-body {
    padding: 24px;
    border-radius: 0 0 8px 8px;
  }

  body.home .gu-program-box--blue .gu-program-box-body {
    background-color: #67A3BB;
    /* 支援内容：3カラムグリッド (Figma x:0 / 339.67 / 679.33) */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
  }

  body.home .gu-program-box--pink .gu-program-box-body {
    background-color: #F897C4;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  /* 支援内容アイテム：ラベル(上) + 説明(下) の縦積み */
  body.home .gu-program-shien-item {
    display: flex;
    flex-direction: column;
  }

  /* ラベルバッジ：白背景 × 青テキスト × 幅いっぱい */
  body.home .gu-program-shien-label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #ffffff;
    color: #67A3BB;
    font-family: 'Shippori Mincho', serif;
    font-weight: 800;
    font-size: 14px;
    line-height: 180%;
    padding: 4px 8px;
    border-radius: 4px;
    text-align: left;
  }

  /* 説明テキスト */
  body.home .gu-program-shien-body {
    color: #ffffff;
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 160%;
    padding: 6px 0;
  }

  /* 指導方法アイテム */
  body.home .gu-program-shidou-item {
    color: #ffffff;
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 160%;
  }

  /* ============================
     レスポンシブ
  ============================ */

  @media (max-width: 900px) {
    body.home .gu-program-card-top {
      flex-direction: column;
    }

    body.home .gu-program-card-figure {
      flex: 0 0 auto;
      width: 100%;
      max-width: none;

      & img {
        height: 260px;
      }
    }
  }

  @media (max-width: 768px) {
    body.home .gu-program-inner {
      padding: 48px 20px;
      gap: 32px;
    }

    body.home .gu-program-title {
      font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    body.home .gu-program-nav-header {
      font-size: 20px;
    }

    body.home .gu-program-anchor-list {
      gap: 12px 16px;
      padding: 16px;
    }

    body.home .gu-program-anchor {
      font-size: 16px;
      padding: 12px 16px;
      gap: 12px;
    }

    body.home .gu-program-card {
      padding: 16px;
      gap: 24px;
    }

    body.home .gu-program-card-title {
      font-size: 24px;
    }

    body.home .gu-program-card-desc {
      font-size: 16px;
    }

    body.home .gu-program-card-figure img {
      height: 200px;
    }

    body.home .gu-program-box--blue .gu-program-box-body {
      grid-template-columns: 1fr;
    }
  }

  /* ============================================================
     FAQ Section — よくある質問 (Figma 321:49)
  ============================================================ */

  body.home .gu-faq-section {
    padding: 80px 0;
    background-color: #F9F9F9;
  }

  body.home .gu-faq-inner {
    max-width: 1080px;
    margin-inline: auto;
    padding-inline: 24px;
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  /* ---- Head ---- */
  body.home .gu-faq-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  body.home .gu-faq-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 134%;
    letter-spacing: 0.06em;
    color: #222222;
    text-align: center;
    margin: 0;
  }

  body.home .gu-faq-rule {
    display: block;
    width: 40px;
    height: 2px;
    background-color: #67A3BB;
  }

  /* ---- List ---- */
  body.home .gu-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
    padding: 0;
  }

  /* ---- Item ---- */
  body.home .gu-faq-item {
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    overflow: hidden;
  }

  /* ---- Question (toggle button) ---- */
  body.home .gu-faq-question {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 32px;
    cursor: pointer;
    user-select: none;
    list-style: none;

    &::-webkit-details-marker { display: none; }
  }

  /* Q badge */
  body.home .gu-faq-q-badge {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #67A3BB;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
  }

  /* Question text */
  body.home .gu-faq-q-text {
    flex: 1;
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0.06em;
    color: #222222;
  }

  /* Toggle icon */
  body.home .gu-faq-toggle-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;

    & .gu-faq-icon-v {
      transition: opacity 0.3s ease;
    }
  }

  /* Expanded state */
  body.home .gu-faq-question[aria-expanded="true"] .gu-faq-toggle-icon .gu-faq-icon-v {
    opacity: 0;
  }

  /* ---- Answer (アニメーションコンテナ) ---- */
  body.home .gu-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin: 0;
    padding: 0;
  }

  body.home .gu-faq-answer-inner {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 20px 32px 24px;
    border-top: 1px solid #e8e8e8;
  }

  /* A badge */
  body.home .gu-faq-a-badge {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #67A3BB;
    background-color: #ffffff;
    color: #67A3BB;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
  }

  body.home .gu-faq-answer-text {
    flex: 1;
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0.04em;
    color: #444444;
    margin: 0;
    padding-top: 8px;
  }

  /* ============================================================
     Contact CTA Section — 見学予約・お問合せ (Figma 323:56)
     背景: #67A3BB / 高さ: 513px
  ============================================================ */

  body.home .gu-contact-cta-section {
    background-color: #67A3BB;
    padding: 64px 24px;
    display: flex;
    justify-content: center;
  }

  body.home .gu-contact-cta-inner {
    width: 100%;
    max-width: 963px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  /* ---- Head ---- */
  body.home .gu-contact-cta-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  body.home .gu-contact-cta-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0.06em;
    color: #ffffff;
    text-align: center;
    margin: 0;
  }

  body.home .gu-contact-cta-rule {
    display: block;
    width: 40px;
    height: 1px;
    background-color: #ffffff;
  }

  /* ---- Body text ---- */
  body.home .gu-contact-cta-body {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 200%;
    letter-spacing: 0.06em;
    color: #ffffff;
    text-align: center;
    margin: 0;
  }

  /* ---- CTA row ---- */
  body.home .gu-contact-cta-row {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
    flex-wrap: wrap;
  }

  /* ---- Each button group (badge + button) ---- */
  body.home .gu-contact-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 340px;
  }

  /* ---- Speech bubble badge ---- */
  body.home .gu-contact-cta-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 4px;
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.06em;
    color: #ffffff;
    margin-bottom: 10px;

    /* Triangle pointer (pointing downward) */
    &::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 0;
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
    }
  }

  body.home .gu-contact-cta-badge--pink {
    background-color: #F897C4;

    &::after {
      border-top: 9px solid #F897C4;
    }
  }

  body.home .gu-contact-cta-badge--blue {
    background-color: #6186C2;

    &::after {
      border-top: 9px solid #6186C2;
    }
  }

  /* ---- Button ---- */
  body.home .gu-contact-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
    padding: 20px 24px;
    background-color: #ffffff;
    border-radius: 40px;
    text-decoration: none;
    transition: opacity 0.2s ease;

    &:hover {
      opacity: 0.85;
    }
  }

  body.home .gu-contact-cta-btn-text {
    flex: 1;
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0.06em;
    text-align: center;
  }

  body.home .gu-contact-cta-btn--tel .gu-contact-cta-btn-text {
    color: #F897C4;
  }

  body.home .gu-contact-cta-btn--form .gu-contact-cta-btn-text {
    color: #6186C2;
  }

  body.home .gu-contact-cta-btn-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
  }

  /* ---- Responsive ---- */
  @media (max-width: 768px) {
    body.home .gu-contact-cta-title {
      font-size: 28px;
    }

    body.home .gu-contact-cta-body {
      font-size: 14px;
      text-align: left;
    }

    body.home .gu-contact-cta-row {
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }

    body.home .gu-contact-cta-group {
      width: 100%;
      max-width: 340px;
    }

    body.home .gu-contact-cta-btn {
      width: 100%;
    }
  }

  /* ============================================================
     Contact Form Section — お問い合わせフォーム (CF7)
  ============================================================ */

  .gu-contact-form-section {
    padding: 80px 0;
    background-color: #f9f9f9;
  }

  .gu-contact-form-inner {
    max-width: 800px;
    margin-inline: auto;
    padding-inline: 24px;
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  /* ---- Head ---- */
  .gu-contact-form-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .gu-contact-form-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 120%;
    letter-spacing: 0.06em;
    color: #222222;
    margin: 0;
  }

  .gu-contact-form-rule {
    display: block;
    width: 40px;
    height: 1px;
    background-color: #67A3BB;
  }

  .gu-contact-form-note {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    line-height: 180%;
    color: #555555;
    margin: 0;
  }

  /* ---- CF7 グループ（セクション区切り） ---- */
  .gu-cf7-wrapper .wpcf7 {
    width: 100%;
  }

  .gu-cf7-wrapper .gu-cf7-group {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 28px 32px;
    margin-bottom: 16px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  }

  .gu-cf7-wrapper .gu-cf7-group-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    font-size: 16px;
    color: #222222;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #67A3BB;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  /* 必須 / 任意 バッジ */
  .gu-cf7-wrapper .gu-cf7-badge--required {
    display: inline-block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    background-color: #E05A5A;
    padding: 2px 8px;
    border-radius: 3px;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .gu-cf7-wrapper .gu-cf7-badge--optional {
    display: inline-block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #ffffff;
    background-color: #999999;
    padding: 2px 8px;
    border-radius: 3px;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  /* ---- フィールド行 ---- */
  .gu-cf7-wrapper .gu-cf7-field {
    margin-bottom: 20px;

    &:last-child {
      margin-bottom: 0;
    }
  }

  .gu-cf7-wrapper .gu-cf7-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #444444;
    margin-bottom: 8px;
  }

  /* ---- テキスト / メール / 電話 / 日付入力 ---- */
  .gu-cf7-wrapper .gu-cf7-input,
  .gu-cf7-wrapper input.gu-cf7-input {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    color: #222222;
    background-color: #ffffff;
    border: 1px solid #CCCCCC;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
    appearance: none;

    &:focus {
      border-color: #67A3BB;
      box-shadow: 0 0 0 3px rgba(103, 163, 187, 0.15);
    }

    &.wpcf7-not-valid {
      border-color: #E05A5A;
      box-shadow: 0 0 0 3px rgba(224, 90, 90, 0.12);
    }
  }

  /* ---- セレクトボックス ---- */
  .gu-cf7-wrapper .gu-cf7-select,
  .gu-cf7-wrapper select.gu-cf7-select {
    display: block;
    width: 100%;
    padding: 12px 40px 12px 16px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    color: #222222;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2367A3BB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    border: 1px solid #CCCCCC;
    border-radius: 6px;
    outline: none;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;

    &:focus {
      border-color: #67A3BB;
      box-shadow: 0 0 0 3px rgba(103, 163, 187, 0.15);
    }
  }

  /* ---- ラジオボタン ----
     CF7 既定: input + span（label なし）→ クリックできず装飾も付かない
     use_label_element 使用時: span.wpcf7-list-item > label > input + span.wpcf7-list-item-label
     外側は .wpcf7-form-control-wrap > .wpcf7-radio に子が並ぶ
  */
  .gu-cf7-wrapper .gu-cf7-radio-group .wpcf7-radio {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }

  .gu-cf7-wrapper .gu-cf7-radio-group .wpcf7-list-item {
    margin: 0;
    padding: 0;
  }

  .gu-cf7-wrapper .gu-cf7-radio-group .wpcf7-list-item label {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 8px 18px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #444444;
    cursor: pointer;
    border: 1px solid #CCCCCC;
    border-radius: 40px;
    background-color: #ffffff;
    transition: border-color 0.2s, background-color 0.2s, color 0.2s;
    user-select: none;
  }

  /* ネイティブの丸は隠し、ラベル全面をタップ領域に（透明 input を上に重ねる） */
  .gu-cf7-wrapper .gu-cf7-radio-group .wpcf7-list-item input[type="radio"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
    appearance: none;
  }

  .gu-cf7-wrapper .gu-cf7-radio-group .wpcf7-list-item-label {
    position: relative;
    z-index: 0;
    pointer-events: none;
  }

  .gu-cf7-wrapper .gu-cf7-radio-group .wpcf7-list-item label:has(input[type="radio"]:checked) {
    border-color: #67A3BB;
    background-color: #67A3BB;
    color: #ffffff;
  }

  /* ---- チェックボックス ---- */
  .gu-cf7-wrapper .gu-cf7-checkbox-group .wpcf7-checkbox {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }

  .gu-cf7-wrapper .gu-cf7-checkbox-group .wpcf7-list-item {
    margin: 0;
    padding: 0;
  }

  .gu-cf7-wrapper .gu-cf7-checkbox-group .wpcf7-list-item label {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 8px 18px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #444444;
    cursor: pointer;
    border: 1px solid #CCCCCC;
    border-radius: 40px;
    background-color: #ffffff;
    transition: border-color 0.2s, background-color 0.2s, color 0.2s;
    user-select: none;
  }

  .gu-cf7-wrapper .gu-cf7-checkbox-group .wpcf7-list-item input[type="checkbox"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
    appearance: none;
  }

  .gu-cf7-wrapper .gu-cf7-checkbox-group .wpcf7-list-item-label {
    position: relative;
    z-index: 0;
    pointer-events: none;
  }

  .gu-cf7-wrapper .gu-cf7-checkbox-group .wpcf7-list-item label:has(input[type="checkbox"]:checked) {
    border-color: #67A3BB;
    background-color: rgba(103, 163, 187, 0.18);
    color: #3a7f9a;
    font-weight: 700;
  }

  /* ---- テキストエリア ---- */
  .gu-cf7-wrapper .gu-cf7-textarea,
  .gu-cf7-wrapper textarea.gu-cf7-textarea {
    display: block;
    width: 100%;
    min-height: 160px;
    padding: 12px 16px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    color: #222222;
    background-color: #ffffff;
    border: 1px solid #CCCCCC;
    border-radius: 6px;
    outline: none;
    resize: vertical;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;

    &:focus {
      border-color: #67A3BB;
      box-shadow: 0 0 0 3px rgba(103, 163, 187, 0.15);
    }
  }

  /* ---- バリデーションエラーメッセージ ---- */
  .gu-cf7-wrapper .wpcf7-not-valid-tip {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    color: #E05A5A;
    margin-top: 4px;
    display: block;
  }

  /* ---- 送信ボタン ---- */
  .gu-cf7-wrapper .gu-cf7-submit-wrap {
    text-align: center;
    margin-top: 8px;
  }

  .gu-cf7-wrapper .gu-cf7-submit,
  .gu-cf7-wrapper input.gu-cf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 56px;
    background-color: #67A3BB;
    color: #ffffff;
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.08em;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    transition: background-color 0.2s ease, opacity 0.2s ease;

    &:hover {
      background-color: #5991a7;
    }

    &:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }
  }

  /* ---- CF7 送信ステータス メッセージ ---- */
  .gu-cf7-wrapper .wpcf7-response-output {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    padding: 14px 20px;
    border-radius: 6px;
    margin-top: 16px;
    border: none;
  }

  /* 送信成功 */
  .gu-cf7-wrapper .wpcf7-mail-sent-ok {
    background-color: #EAF6F0;
    color: #2D7A52;
  }

  /* 送信失敗 / バリデーションエラー */
  .gu-cf7-wrapper .wpcf7-mail-sent-ng,
  .gu-cf7-wrapper .wpcf7-validation-errors,
  .gu-cf7-wrapper .wpcf7-spam-blocked {
    background-color: #FEF0F0;
    color: #C0392B;
  }

  /* ---- Responsive ---- */
  @media (max-width: 768px) {
    .gu-contact-form-title {
      font-size: 26px;
    }

    .gu-cf7-wrapper .gu-cf7-group {
      padding: 20px 16px;
    }

    .gu-cf7-wrapper .gu-cf7-submit,
    .gu-cf7-wrapper input.gu-cf7-submit {
      width: 100%;
      padding: 16px 24px;
    }
  }

  /* ============================================================
     Access Section — アクセス (Figma 323:58)
  ============================================================ */

  body.home .gu-access-section {
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  body.home .gu-access-inner {
    width: 100%;
    max-width: 1080px;
    padding-inline: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    margin-bottom: 100px;
  }

  /* ---- Head ---- */
  body.home .gu-access-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  body.home .gu-access-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0.06em;
    color: #222222;
    text-align: center;
    margin: 0;
  }

  body.home .gu-access-rule {
    display: block;
    width: 40px;
    height: 1px;
    background-color: #222222;
  }

  /* ---- Content row: table + photo ---- */
  body.home .gu-access-content {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
  }

  /* ---- Info table ---- */
  body.home .gu-access-table {
    flex: 0 0 525px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
    padding: 0;
  }

  body.home .gu-access-table-row {
    display: flex;
    align-items: flex-start;
    gap: 0;
  }

  body.home .gu-access-table-label,
  body.home .gu-access-table-value {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0.06em;
    color: #222222;
    margin: 0;
    padding: 0;
  }

  body.home .gu-access-table-label {
    flex: 0 0 100px;
    font-weight: 700;
  }

  body.home .gu-access-table-value {
    flex: 1;
  }

  /* ---- Photo ---- */
  body.home .gu-access-photo {
    flex: 0 0 523px;
    width: 523px;
    height: 523px;
    margin: 0;
    overflow: hidden;
    border-radius: 4px;

    & img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }
  }

  /* ---- Google Map ---- */
  body.home .gu-access-map {
    width: 100%;
    line-height: 0;

    & iframe {
      width: 100%;
      height: 370px;
      border: none;
      display: block;
    }
  }

  /* ---- Responsive ---- */
  @media (max-width: 1100px) {
    body.home .gu-access-table {
      flex: 1;
    }

    body.home .gu-access-photo {
      flex: 0 0 420px;
      width: 420px;
      height: 420px;
    }
  }

  @media (max-width: 768px) {
    body.home .gu-access-inner {
      margin-bottom: 60px;
    }

    body.home .gu-access-title {
      font-size: 28px;
    }

    body.home .gu-access-content {
      flex-direction: column;
    }

    body.home .gu-access-table {
      flex: none;
      width: 100%;
    }

    body.home .gu-access-photo {
      flex: none;
      width: 100%;
      height: 280px;
    }

    body.home .gu-access-map iframe {
      height: 260px;
    }
  }

  /* ============================================================
     FAQ Section — よくある質問 レスポンシブ
  ============================================================ */
  @media (max-width: 768px) {
    body.home .gu-faq-title {
      font-size: 28px;
    }

    body.home .gu-faq-question {
      padding: 16px 20px;
      gap: 16px;
    }

    body.home .gu-faq-q-text {
      font-size: 15px;
    }

    body.home .gu-faq-answer-inner {
      padding: 16px 20px 20px;
      gap: 16px;
    }
  }

}
