/* ===================== FONT FACE ===================== */

/* Cormorant Garamond（バリアブル・通常）*/
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/CormorantGaramond-Variable.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
/* Cormorant Garamond（バリアブル・イタリック）*/
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/CormorantGaramond-Italic-Variable.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* Shippori Mincho（個別ウェイト）*/
@font-face {
  font-family: 'Shippori Mincho';
  src: url('../fonts/ShipporiMincho-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Shippori Mincho';
  src: url('../fonts/ShipporiMincho-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Shippori Mincho';
  src: url('../fonts/ShipporiMincho-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Noto Sans JP（バリアブル）*/
@font-face {
  font-family: 'Noto Sans JP';
  src: url('../fonts/NotoSansJP-Variable.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
      --mint:      #D6EDE4;
      --mint-mid:  #B3D9C8;
      --mint-deep: #7BBEA6;
      --sage-text: #4A7A65;
      --moss:      #5C8C74;
      --sky-pale:  #D9EDF7;
      --sky-mid:   #A8CEDD;
      --blush:     #F2E0D8;
      --blush-mid: #E4BFB0;
      --cream:     #F8F5F0;
      --linen:     #EEE9E2;
      --snow:      #FDFCFA;
      --text-dark: #2E3D35;
      --text-mid:  #5A6E62;
      --text-soft: #8A9E93;
      --white:     #FFFFFF;
    }

    *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
      font-size: 17px;
    }

    body {
      font-family: 'Noto Sans JP', sans-serif;
      background: var(--snow);
      color: var(--text-dark);
    }

    /* ===================== HERO ===================== */
    .hero {
      position: relative;
      min-height: 100vh;
    min-height: 100dvh;
      background: linear-gradient(160deg, #EAF6F0 0%, #D4EDE2 40%, #C8E6D9 70%, #D8EEE7 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-forest {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      pointer-events: none;
    }

    .dew {
      position: absolute;
      border-radius: 50%;
      background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.85), rgba(200,235,220,0.3));
      animation: dewFloat 6s ease-in-out infinite;
      will-change: transform;
    }
    .dew:nth-child(1) { width:180px; height:180px; top:8%;  left:6%;  animation-delay:0s;   opacity:.5; }
    .dew:nth-child(2) { width:90px;  height:90px;  top:18%; right:10%;animation-delay:1.5s; opacity:.4; }
    .dew:nth-child(3) { width:130px; height:130px; top:60%; left:2%;  animation-delay:3s;   opacity:.35;}
    .dew:nth-child(4) { width:60px;  height:60px;  bottom:20%;right:6%;animation-delay:2s;  opacity:.45;}
    .dew:nth-child(5) { width:200px; height:200px; bottom:5%;left:55%;animation-delay:4s;   opacity:.25;}

    @keyframes dewFloat {
      0%,100% { transform: translateY(0) scale(1); }
      50%      { transform: translateY(-14px) scale(1.03); }
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0 32px;
      animation: heroIn 1.1s cubic-bezier(.22,.68,0,1.2) both;
      will-change: opacity, transform;
    }

    @keyframes heroIn {
      from { opacity:0; transform:translateY(32px); }
      to   { opacity:1; transform:translateY(0); }
    }

    .hero-label {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 1rem;
      letter-spacing: .35em;
      color: var(--moss);
      margin-bottom: 22px;
    }

    .hero-title {
      font-family: 'Shippori Mincho', serif;
      font-weight: 500;
      font-size: clamp(2rem, 5vw, 3.2rem);
      color: var(--text-dark);
      line-height: 1.5;
      letter-spacing: .06em;
      margin-bottom: 10px;
    }

    .hero-title em {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-weight: 400;
      font-size: clamp(1.1rem, 2.5vw, 1.5rem);
      color: var(--moss);
      margin-bottom: 10px;
      letter-spacing: .2em;
    }

    .hero-sub {
      color: var(--text-mid);
      font-size: .9rem;
      letter-spacing: .15em;
      font-weight: 300;
      margin-top: 20px;
    }

    .hero-pill {
      display: inline-block;
      margin-top: 32px;
      background: rgba(255,255,255,.65);
      border: 1px solid rgba(91,140,116,.25);
      border-radius: 50px;
      padding: 9px 28px;
      font-size: .88rem;
      letter-spacing: .18em;
      color: var(--sage-text);
      backdrop-filter: blur(6px);
    }

    .scroll-ind {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: var(--text-soft);
      font-size: .94rem;
      letter-spacing: .2em;
    }

    .scroll-line {
      width: 1px;
      height: 48px;
      background: linear-gradient(to bottom, var(--mint-deep), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }

    @keyframes scrollPulse {
      0%,100% { opacity:.4; }
      50%      { opacity:1; }
    }

    /* ===================== NAV ===================== */
    .nav-bar {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(248,245,240,.94);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--mint);
    }

    .nav-list {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      overflow-x: auto;
      scrollbar-width: none;
      padding: 0 16px;
    }
    .nav-list::-webkit-scrollbar { display:none; }

    .nav-item {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 14px 12px;
      font-size: .82rem;
      color: var(--text-mid);
      text-decoration: none;
      white-space: nowrap;
      letter-spacing: .05em;
      border-bottom: 2px solid transparent;
      transition: color .2s, border-color .2s;
      font-weight: 400;
    }
    .nav-item:hover {
      color: var(--moss);
      border-bottom-color: var(--mint-deep);
    }
    .nav-pict { width:16px; height:16px; flex-shrink:0; }

    /* ===================== SECTIONS ===================== */
    .sec { padding: 96px 24px; }
    .sec--tinted { background: var(--cream); }
    .sec--mint   { background: linear-gradient(180deg, var(--snow) 0%, #EDF7F3 100%); }

    .wrap { max-width: 1080px; margin: 0 auto; }

    .sec-head {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 56px;
    }

    .sec-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 4.5rem;
      line-height: 1;
      color: var(--mint-mid);
      font-weight: 400;
    }

    .sec-en {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: .92rem;
      letter-spacing: .28em;
      color: var(--mint-deep);
      margin-bottom: 5px;
    }

    .sec-ja {
      font-family: 'Shippori Mincho', serif;
      font-size: clamp(1.25rem, 2.5vw, 1.75rem);
      font-weight: 500;
      color: var(--text-dark);
      letter-spacing: .05em;
    }

    .sec-desc {
      max-width: 700px;
      color: var(--text-mid);
      font-size: .9rem;
      line-height: 2;
      font-weight: 300;
      margin-bottom: 48px;
    }

    /* ===================== LOCATION CARDS ===================== */
    .loc-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 16px;
    }

    .loc-card {
      background: var(--white);
      border: 1px solid var(--mint);
      border-radius: 16px;
      padding: 36px 30px;
      transition: box-shadow .3s, transform .3s;
      position: relative;
      overflow: hidden;
    }

    .loc-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--mint-mid), var(--sky-mid));
      border-radius: 16px 16px 0 0;
    }

    .loc-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 48px rgba(91,140,116,.12);
    }

    .loc-card--accent {
      background: linear-gradient(145deg, #EAF6F1, #D8EEE7);
      border-color: var(--mint-deep);
    }

    .loc-icon-wrap {
      width: 52px; height: 52px;
      background: var(--mint);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px;
    }
    .loc-icon-wrap svg {
      width: 26px; height: 26px;
      stroke: var(--moss); fill: none;
      stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
    }

    .loc-name {
      font-family: 'Shippori Mincho', serif;
      font-size: .95rem; font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 10px; line-height: 1.6;
    }

    .loc-body {
      font-size: .94rem; color: var(--text-mid);
      line-height: 1.85; margin-bottom: 18px; font-weight: 300;
    }

    .feat-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }

    .feat-item {
      font-size: .92rem; color: var(--text-mid);
      display: flex; align-items: flex-start; gap: 8px; font-weight: 300;
    }

    .feat-dot {
      width: 5px; height: 5px; border-radius: 50%;
      background: var(--mint-deep); flex-shrink: 0; margin-top: 7px;
    }

    /* ===================== AMENITY TABS ===================== */
    .tab-rail {
      display: flex; gap: 4px;
      margin-bottom: 36px;
      background: var(--linen);
      border-radius: 50px; padding: 5px;
      width: fit-content;
    }

    .tab-btn {
      display: flex; align-items: center; gap: 8px;
      padding: 10px 22px;
      border: none; border-radius: 50px;
      background: transparent;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: .9rem; color: var(--text-mid);
      cursor: pointer; transition: all .25s;
      letter-spacing: .05em; white-space: nowrap;
    }
    .tab-btn svg {
      width: 16px; height: 16px;
      stroke: currentColor; fill: none;
      stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
      flex-shrink: 0;
    }

    /* アクセシビリティ: タブボタンフォーカス */
    .tab-btn:focus-visible {
      outline: 2px solid var(--moss);
      outline-offset: 2px;
    }
    .tab-btn.active {
      background: var(--white); color: var(--moss);
      box-shadow: 0 2px 12px rgba(91,140,116,.15);
      font-weight: 500;
    }

    .tab-pane { display: none; }
    .tab-pane.active {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
      gap: 16px;
      animation: fadeTab .35s ease;
    }

    @keyframes fadeTab {
      from { opacity:0; transform:translateY(8px); }
      to   { opacity:1; transform:translateY(0); }
    }

    .amen-card {
      background: var(--white);
      border: 1px solid var(--mint);
      border-radius: 14px;
      padding: 28px 22px;
      text-align: center;
      transition: all .3s;
    }
    .amen-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 32px rgba(91,140,116,.1);
      border-color: var(--mint-deep);
    }

    .amen-pict {
      width: 52px; height: 52px;
      margin: 0 auto 14px;
      background: var(--mint);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .amen-pict svg {
      width: 26px; height: 26px;
      stroke: var(--moss); fill: none;
      stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
    }

    .amen-name {
      font-family: 'Shippori Mincho', serif;
      font-size: .9rem; font-weight: 600;
      color: var(--text-dark); margin-bottom: 8px;
    }
    .amen-note {
      font-size: .88rem; color: var(--text-soft);
      line-height: 1.75; font-weight: 300;
    }

    .tag-limited {
      display: inline-block; margin-top: 10px;
      background: var(--blush); color: #9A6555;
      font-size: .94rem; padding: 3px 10px;
      border-radius: 50px; letter-spacing: .08em; font-weight: 500;
    }

    /* ===================== SERVICE CARDS ===================== */
    .svc-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
    }
    @media (max-width: 680px) { .svc-grid { grid-template-columns:1fr; } }

    .svc-card {
      border-radius: 20px; padding: 44px 38px;
      position: relative; overflow: hidden; transition: transform .3s;
    }
    .svc-card:hover { transform: translateY(-4px); }

    .svc-card--green { background: linear-gradient(145deg, #CBE9DA, #AEDCC6); }
    .svc-card--sky   { background: linear-gradient(145deg, #C8DEF0, #A8C8E0); }

    .svc-pict {
      width: 56px; height: 56px;
      background: rgba(255,255,255,.5); border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 22px;
    }
    .svc-pict svg {
      width: 28px; height: 28px;
      stroke: var(--text-dark); fill: none;
      stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
    }

    .svc-title {
      font-family: 'Shippori Mincho', serif;
      font-size: 1.15rem; font-weight: 600;
      color: var(--text-dark); margin-bottom: 14px;
    }
    .svc-body {
      font-size: .95rem; color: var(--text-mid);
      line-height: 1.95; font-weight: 300; margin-bottom: 26px;
    }

    .svc-link {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: .9rem; letter-spacing: .12em;
      color: var(--moss); text-decoration: none;
      background: rgba(255,255,255,.6); border-radius: 50px;
      padding: 9px 22px; transition: background .25s; font-weight: 500;
    }
    .svc-link:hover { background: rgba(255,255,255,.9); }
    .svc-link svg {
      width: 13px; height: 13px;
      stroke: var(--moss); fill: none;
      stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
    }

    /* ===================== WELCOME BABY ===================== */
    .wb-strip {
      margin-top: 48px; background: var(--blush);
      border-radius: 16px; padding: 28px 32px;
      display: flex; gap: 24px; align-items: center;
    }
    .wb-pict {
      flex-shrink: 0; width: 120px;
      display: flex; align-items: center; justify-content: center;
    }
    .wb-pict img {
      width: 100%; height: auto; display: block;
    }
    .wb-title {
      font-family: 'Shippori Mincho', serif;
      font-size: .9rem; font-weight: 600;
      color: #7A4535; margin-bottom: 6px;
    }
    .wb-text {
      font-size: .94rem; color: #9A6555;
      line-height: 1.9; font-weight: 300;
    }

    @media (max-width: 680px) {
      .wb-strip { flex-direction: column; align-items: center; text-align: center; }
      .wb-pict { width: 100px; }
    }

    /* ===================== ACTIVITY ===================== */
    .act-tiles {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 16px; margin-bottom: 40px;
    }
    @media (max-width: 580px) { .act-tiles { grid-template-columns:1fr; } }

    .act-tile {
      border-radius: 18px; overflow: hidden;
      display: flex; flex-direction: column;
      background: var(--white);
      box-shadow: 0 4px 16px rgba(0,0,0,.07);
      transition: transform .3s;
    }
    .act-tile:hover { transform: translateY(-4px); }

    .act-photo {
      width: 100%;
      aspect-ratio: 4/3;
      overflow: hidden;
      background: var(--linen);
      display: flex; align-items: center; justify-content: center;
    }
    .act-photo img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }
    /* ダミー表示（画像未設定時） */
    .act-photo img[src="img/act_nature.jpg"],
    .act-photo img[src="img/act_ski.jpg"],
    .act-photo img[src="img/act_kumonos.jpg"] {
      font-size: 0;
    }
    .act-photo img::before {
      content: attr(alt);
      display: flex; align-items: center; justify-content: center;
      width: 100%; height: 100%;
      font-size: .85rem; color: var(--text-soft);
      background: var(--linen);
    }

    .act-label {
      font-size: .92rem; color: var(--text-dark);
      font-weight: 500; letter-spacing: .08em;
      padding: 14px 16px;
      text-align: center;
    }

    .btn-outline {
      display: inline-block;
      border: 1.5px solid var(--moss); color: var(--moss);
      padding: 13px 36px; border-radius: 50px;
      font-size: .92rem; letter-spacing: .15em;
      text-decoration: none; transition: all .25s; font-weight: 400;
    }
    .btn-outline:hover { background: var(--moss); color: var(--white); }

    /* ===================== KIDS CLUB BANNER ===================== */
    .kc-banner {
      border-radius: 24px;
      background: linear-gradient(135deg, #BFE0D2 0%, #A8D2C4 50%, #AECDE0 100%);
      padding: 56px 56px;
      display: grid; grid-template-columns: 1fr auto;
      gap: 56px; align-items: center;
      position: relative; overflow: hidden;
    }
    @media (max-width: 680px) {
      .kc-banner { grid-template-columns:1fr; padding: 28px 20px; }
      .kc-body { font-size: .8rem; line-height: 1.8; }
      .kc-title { font-size: 1.2rem; }
      .kc-cta { text-align:center; }
      .kc-illust { width: 80%; max-width: 240px; }
    }
    .kc-banner::after {
      content: '';
      position: absolute; right: -80px; top: -80px;
      width: 300px; height: 300px; border-radius: 50%;
      background: rgba(255,255,255,.12);
    }

    .kc-illust {
      display: block;
      width: 320px;
      height: auto;
      margin-bottom: 24px;
      border-radius: 12px;
    }

    .kc-cta {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
    }

    .kc-en {
      font-family: 'Cormorant Garamond', serif; font-style: italic;
      font-size: .85rem; letter-spacing: .3em;
      color: var(--moss); margin-bottom: 14px;
    }
    .kc-title {
      font-family: 'Shippori Mincho', serif;
      font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 500;
      color: var(--text-dark); margin-bottom: 18px;
    }
    .kc-body {
      font-size: .87rem; color: var(--text-mid);
      line-height: 2; font-weight: 300; max-width: 560px;
    }

    .btn-solid {
      display: inline-block;
      background: var(--white); color: var(--moss);
      padding: 15px 36px; border-radius: 50px;
      font-size: .92rem; letter-spacing: .15em;
      text-decoration: none; font-weight: 500;
      transition: all .25s; white-space: nowrap;
      box-shadow: 0 4px 20px rgba(0,0,0,.1);
    }
    .btn-solid:hover {
      background: var(--moss); color: var(--white);
      transform: translateY(-2px);
    }

    /* ===================== BREAKFAST SECTION ===================== */
    .bkf-hero {
      border-radius: 24px;
      background: linear-gradient(135deg, #FDF3E7 0%, #FAE8D0 50%, #F5E0C8 100%);
      padding: 52px 48px 40px;
      position: relative;
      overflow: hidden;
      margin-bottom: 40px;
    }

    .bkf-hero::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 220px; height: 220px;
      border-radius: 50%;
      background: rgba(255,200,130,0.18);
    }

    .bkf-hero::after {
      content: '';
      position: absolute;
      bottom: -40px; left: 10%;
      width: 160px; height: 160px;
      border-radius: 50%;
      background: rgba(255,180,100,0.10);
    }

    .bkf-top {
      display: flex;
      align-items: flex-start;
      gap: 28px;
      margin-bottom: 32px;
      position: relative; z-index: 1;
    }

    .bkf-badge-wrap {
      flex-shrink: 0;
    }

    .bkf-new-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: linear-gradient(135deg, #F0A050, #E8853A);
      color: #fff;
      font-size: .85rem;
      font-weight: 700;
      letter-spacing: .18em;
      padding: 6px 16px;
      border-radius: 50px;
      margin-bottom: 14px;
    }

    .bkf-new-badge svg {
      width: 12px; height: 12px;
      stroke: #fff; fill: none;
      stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
    }

    .bkf-pict-wrap {
      width: 72px; height: 72px;
      background: rgba(255,255,255,.6);
      border-radius: 20px;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 16px rgba(220,140,60,.15);
    }

    .bkf-pict-wrap svg {
      width: 36px; height: 36px;
      stroke: #C07830; fill: none;
      stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round;
    }

    .bkf-heading {}

    .bkf-en {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: .92rem; letter-spacing: .3em;
      color: #C07830; margin-bottom: 8px;
    }

    .bkf-title {
      font-family: 'Shippori Mincho', serif;
      font-size: clamp(1.2rem, 2.8vw, 1.7rem);
      font-weight: 600; color: #5A3010;
      line-height: 1.5; margin-bottom: 12px;
    }

    .bkf-period {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,.55);
      border: 1px solid rgba(200,120,40,.2);
      border-radius: 8px;
      padding: 8px 16px;
      font-size: .94rem;
      color: #8A5020;
      font-weight: 400;
    }

    .bkf-period svg {
      width: 14px; height: 14px;
      stroke: #C07830; fill: none;
      stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
      flex-shrink: 0;
    }

    /* spec row */
    .bkf-specs {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 12px;
      position: relative; z-index: 1;
    }

    .bkf-spec {
      background: rgba(255,255,255,.55);
      border-radius: 12px;
      padding: 16px 18px;
      border: 1px solid rgba(220,160,80,.2);
    }

    .bkf-spec-label {
      font-size: .94rem;
      letter-spacing: .15em;
      color: #C07830;
      font-weight: 500;
      margin-bottom: 5px;
      text-transform: uppercase;
    }

    .bkf-spec-val {
      font-family: 'Shippori Mincho', serif;
      font-size: .95rem;
      font-weight: 600;
      color: #5A3010;
    }

    /* menu examples */
    .bkf-menu {
      display: flex;
      gap: 10px;
      margin-top: 12px;
      flex-wrap: wrap;
    }

    .bkf-menu-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255,255,255,.65);
      border: 1px solid rgba(200,120,40,.25);
      border-radius: 50px;
      padding: 5px 14px;
      font-size: .88rem;
      color: #7A4520;
      font-weight: 400;
    }

    .bkf-menu-tag svg {
      width: 12px; height: 12px;
      stroke: #C07830; fill: none;
      stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
    }

    /* restaurant list */
    .rest-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 14px;
      margin-bottom: 32px;
      align-items: stretch;
    }

    .rest-card {
      background: var(--white);
      border: 1px solid #F0D8BE;
      border-radius: 14px;
      padding: 24px 22px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      transition: all .3s;
    }
    .rest-card .rest-card-top {
      width: 100%;
      flex: 1;
    }

    .rest-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 28px rgba(180,100,30,.1);
      border-color: #E0B878;
    }

    .rest-icon {
      width: 44px; height: 44px;
      flex-shrink: 0;
      background: #FDF0E0;
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
    }

    .rest-icon svg {
      width: 22px; height: 22px;
      stroke: #C07830; fill: none;
      stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
    }

    .rest-hotel {
      font-size: .85rem;
      letter-spacing: .1em;
      color: #C07830;
      font-weight: 500;
      margin-bottom: 4px;
    }

    .rest-name {
      font-family: 'Shippori Mincho', serif;
      font-size: .9rem;
      font-weight: 600;
      color: #5A3010;
      line-height: 1.55;
      margin-bottom: 10px;
    }

    .rest-card-top {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      width: 100%;
    }
    .rest-note {
      font-size: .85rem;
      color: #A07040;
      margin-top: 5px;
      font-weight: 300;
    }
    .rest-menu {
      font-size: .82rem;
      color: var(--text-mid);
      background: var(--linen);
      border-radius: 6px;
      padding: 6px 12px;
      margin-top: auto;
      width: 100%;
      box-sizing: border-box;
    }
    .rest-link {
      display: inline-block;
      margin-top: 14px;
      font-size: .88rem;
      color: var(--sage-text);
      border: 1px solid var(--sage-text);
      border-radius: 50px;
      padding: 5px 16px;
      text-decoration: none;
      transition: background .2s, color .2s;
    }
    .rest-link--ghost {
      display: inline-block;
      margin-top: 14px;
      font-size: .88rem;
      border: 1px solid transparent;
      border-radius: 50px;
      padding: 5px 16px;
      visibility: hidden;
      pointer-events: none;
    }
    .rest-link:hover {
      background: var(--sage-text);
      color: #fff;
    }

    /* notice box */
    .bkf-notice {
      background: #FFF8F0;
      border: 1px solid #F0D8BE;
      border-left: 3px solid #E09040;
      border-radius: 0 12px 12px 0;
      padding: 20px 24px;
    }

    .bkf-notice-title {
      font-size: .9rem;
      font-weight: 600;
      color: #8A5020;
      margin-bottom: 10px;
      letter-spacing: .05em;
    }

    .bkf-notice-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .bkf-notice-item {
      font-size: .9rem;
      color: #A07040;
      display: flex;
      gap: 8px;
      align-items: flex-start;
      font-weight: 300;
      line-height: 1.7;
    }

    .bkf-notice-item::before {
      content: '※';
      flex-shrink: 0;
      color: #E09040;
    }

    @media (max-width: 680px) {
      .bkf-hero { padding: 36px 24px 28px; }
      .bkf-top { flex-direction: column; gap: 16px; }
      .rest-grid { grid-template-columns: 1fr; }
    }

    

    /* ===================== REVEAL ===================== */
    .reveal {
      opacity: 0; transform: translateY(22px);
      transition: opacity .7s ease, transform .7s ease;
      will-change: opacity, transform;
    }
    .reveal.on { opacity: 1; transform: translateY(0); will-change: auto; }

    /* ===================== RESPONSIVE ===================== */
    @media (max-width: 768px) {
      .sec { padding: 64px 20px; }
      .sec-num { font-size: 3rem; }
      .loc-grid { grid-template-columns:1fr; }
      .tab-rail { flex-wrap: wrap; border-radius: 16px; }
    }

    @media (min-width: 769px) {
      .nav-list { justify-content: center; }
    }

    /* ===================== SITE HEADER LOGO ===================== */
    .site-logo {
      position: absolute;
      top: 4%;
      left: 3%;
      z-index: 10;
      width: 15%;
      min-width: 150px;
      max-width: 250px;
    }
    .site-logo img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* ===================== FOOTER (common) ===================== */
    .page-footer {
      background: linear-gradient(180deg, var(--moss) 0%, var(--sage-text) 100%);
      padding: 52px 24px 40px;
      text-align: center;
    }
    .footer-sns {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      margin-bottom: 28px;
    }
    .footer-sns a {
      display: block;
      transition: opacity .2s;
    }
    .footer-sns a:hover { opacity: .75; }
    .footer-sns img {
      width: 28px;
      height: 28px;
      object-fit: contain;
    }
    .footer-hotel-rows {
      margin-bottom: 20px;
    }
    .footer-hotel-list {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      list-style: none;
      padding: 0;
      margin: 0 0 4px;
    }
    .footer-hotel-list li a {
      color: rgba(255,255,255,.9);
      font-size: .9rem;
      padding: 5px 14px;
      border-left: 1px solid rgba(255,255,255,.35);
      line-height: 1.6;
      display: block;
      text-decoration: none;
      transition: color .2s;
      font-family: 'Noto Sans JP', sans-serif;
      font-weight: 300;
    }
    .footer-hotel-list li a:hover { color: #fff; }
    .footer-hotel-list li:first-child a { border-left: none; }
    .footer-copy {
      font-size: .94rem;
      color: rgba(255,255,255,.65);
      margin-top: 20px;
      font-family: 'Noto Sans JP', sans-serif;
      font-weight: 300;
    }
    @media (max-width: 640px) {
      .footer-hotel-list li a {
        font-size: .85rem;
        padding: 4px 10px;
        border-left: none;
      }
      .footer-copy {
        font-size: .8rem;
      }
      .footer-copy .copy-break { display: block; }
    }