    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

    :root {
      --navy: #061A35;
      --navy-2: #0B2447;
      --blue: #2563EB;
      --blue-2: #3B82F6;
      --yellow: #FACC15;
      --text: #1F2937;
      --muted: #667085;
      --line: #E5E7EB;
      --bg: #F4F7FB;
      --white: #FFFFFF;
      --shadow: 0 18px 42px rgba(6, 26, 53, .13);
      --radius: 18px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: 'Inter', 'Noto Sans JP', sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.75;
      letter-spacing: .01em;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .container {
      width: min(var(--max), calc(100% - 48px));
      margin: 0 auto;
    }

    .section { padding: 76px 0; }
    .section-head { text-align: center; margin-bottom: 34px; }
    .section-kicker {
      display: block;
      margin-bottom: 8px;
      color: var(--blue);
      font-size: .78rem;
      font-weight: 900;
      letter-spacing: .18em;
      text-transform: uppercase;
    }
    .section-title {
      margin: 0;
      font-size: clamp(1.9rem, 3.2vw, 2.7rem);
      line-height: 1.25;
      letter-spacing: -.04em;
      font-weight: 900;
      color: #142033;
    }
    .section-lead {
      max-width: 760px;
      margin: 14px auto 0;
      color: var(--muted);
      font-size: 1rem;
      font-weight: 600;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 0 24px;
      border-radius: 3px;
      font-weight: 900;
      font-size: .94rem;
      line-height: 1;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
      cursor: pointer;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-yellow { background: var(--yellow); color: #13213A; box-shadow: 0 12px 26px rgba(250, 204, 21, .26); }
    .btn-navy { background: var(--navy); color: #fff; box-shadow: 0 14px 28px rgba(6, 26, 53, .18); }
    .btn-outline-navy { background: transparent; color: var(--navy); border: 1px solid rgba(6, 26, 53, .22); }

    /* Header */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255,255,255,.96);
      border-bottom: 1px solid rgba(229,231,235,.9);
      backdrop-filter: blur(14px);
    }
    .header-inner {
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .site-logo img { height: 38px; width: auto; }
    .global-nav {
      display: flex;
      align-items: center;
      gap: 32px;
      margin-left: auto;
      font-weight: 800;
      font-size: .92rem;
      color: #1B2A40;
    }
    .global-nav a { position: relative; }
    .global-nav a + a::before {
      content: "";
      position: absolute;
      left: -16px;
      top: 50%;
      width: 1px;
      height: 16px;
      background: rgba(6, 26, 53, .18);
      transform: translateY(-50%);
    }
    .global-nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -7px;
      height: 2px;
      background: var(--blue);
      transform: scaleX(0);
      transform-origin: center;
      transition: transform .2s ease;
    }
    .global-nav a:hover::after,
    .global-nav a.is-current::after { transform: scaleX(1); }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-left: 22px;
    }
    .header-actions::before {
      content: "";
      width: 1px;
      height: 18px;
      margin-right: 4px;
      background: rgba(6, 26, 53, .18);
    }
    .sns-menu { position: relative; }
    .sns-toggle,
    .header-cta {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border-radius: 4px;
      font-family: inherit;
      font-size: .9rem;
      font-weight: 900;
      line-height: 1;
      white-space: nowrap;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
    }
    .sns-toggle {
      padding: 0 16px;
      border: 1px solid rgba(6, 26, 53, .16);
      background: #fff;
      color: var(--navy);
      box-shadow: 0 8px 18px rgba(6, 26, 53, .06);
      cursor: pointer;
    }
    .sns-toggle:hover,
    .header-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 12px 24px rgba(6, 26, 53, .10);
    }
    .sns-toggle svg {
      width: 20px;
      height: 20px;
      flex: 0 0 auto;
    }
    .sns-toggle .sns-chevron {
      width: 16px;
      height: 16px;
      transition: transform .2s ease;
    }
    .sns-menu.is-open .sns-chevron { transform: rotate(180deg); }
    .sns-dropdown {
      position: absolute;
      top: calc(100% + 12px);
      right: 0;
      z-index: 150;
      width: 274px;
      padding: 10px;
      background: #fff;
      border: 1px solid rgba(6, 26, 53, .12);
      border-radius: 8px;
      box-shadow: 0 18px 42px rgba(6, 26, 53, .18);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-6px);
      transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    }
    .sns-menu.is-open .sns-dropdown {
      opacity: 1;
      visibility: visible;
      transform: none;
    }
    .sns-dropdown a {
      display: grid;
      grid-template-columns: 34px 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 10px 8px;
      border-radius: 6px;
      color: #13213A;
      font-size: .88rem;
      font-weight: 900;
    }
    .sns-dropdown a + a { border-top: 1px solid rgba(229, 231, 235, .9); }
    .sns-dropdown a:hover { background: #F7F9FC; }
    .sns-brand-icon {
      width: 32px;
      height: 32px;
      border-radius: 9px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
    }
    .sns-brand-icon svg {
      width: 19px;
      height: 19px;
    }
    .sns-brand-line { background: #06C755; }
    .sns-brand-instagram {
      background: radial-gradient(circle at 30% 110%, #FEDA75 0 22%, #FA7E1E 38%, #D62976 58%, #962FBF 78%, #4F5BD5 100%);
    }
    .sns-arrow {
      color: #64748B;
      font-size: 1.15rem;
      line-height: 1;
    }
    .header-cta {
      padding: 0 18px;
      background: var(--yellow);
      border: 1px solid rgba(178, 130, 0, .28);
      color: #13213A;
      box-shadow: 0 10px 22px rgba(250, 204, 21, .24);
    }
    .menu-button {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid var(--line);
      background: #fff;
      border-radius: 4px;
      align-items: center;
      justify-content: center;
    }
    .menu-button span,
    .menu-button span::before,
    .menu-button span::after {
      content: "";
      display: block;
      width: 20px;
      height: 2px;
      background: var(--navy);
      border-radius: 99px;
      position: relative;
    }
    .menu-button span::before { position: absolute; top: -7px; }
    .menu-button span::after { position: absolute; top: 7px; }
    .mobile-nav { display: none; border-top: 1px solid var(--line); background: #fff; }
    .mobile-nav.is-open { display: block; }
    .mobile-nav a {
      display: block;
      padding: 14px 24px;
      border-bottom: 1px solid var(--line);
      font-weight: 800;
    }
    .mobile-nav-cta {
      background: var(--yellow);
      color: #13213A;
    }

    /* Page hero */
    .page-hero {
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.86) 46%, rgba(244,247,251,.62) 100%),
        linear-gradient(to right, rgba(37,99,235,.07) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(37,99,235,.07) 1px, transparent 1px);
      background-size: auto, 30px 30px, 30px 30px;
      border-bottom: 1px solid rgba(229,231,235,.9);
    }
    .page-hero-inner {
      min-height: 300px;
      display: grid;
      align-items: center;
      padding: 72px 0 64px;
    }
    .page-hero-copy {
      max-width: 780px;
    }
    .page-kicker {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--blue);
      font-size: .78rem;
      font-weight: 900;
      letter-spacing: .20em;
      text-transform: uppercase;
    }
    .page-kicker::before {
      content: "";
      width: 34px;
      height: 2px;
      background: var(--blue);
    }
    .page-title {
      margin: 14px 0 18px;
      color: #0F172A;
      font-size: clamp(2.4rem, 5vw, 4rem);
      line-height: 1.12;
      letter-spacing: -.06em;
      font-weight: 900;
    }
    .page-lead {
      margin: 0;
      color: #4B5B70;
      font-weight: 700;
      font-size: clamp(1rem, 1.6vw, 1.15rem);
    }

    /* Intro cards */
    .price-intro {
      padding-top: 56px;
      padding-bottom: 36px;
    }
    .notice-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .notice-card {
      background: #fff;
      border: 1px solid rgba(15,23,42,.08);
      border-radius: 14px;
      padding: 24px;
      box-shadow: 0 14px 32px rgba(6,26,53,.08);
    }
    .notice-label {
      display: inline-flex;
      align-items: center;
      margin-bottom: 10px;
      color: var(--blue);
      font-size: .75rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      font-weight: 900;
    }
    .notice-card h2,
    .notice-card h3 {
      margin: 0 0 8px;
      color: #142033;
      font-size: 1.14rem;
      line-height: 1.35;
      font-weight: 900;
    }
    .notice-card p {
      margin: 0;
      color: var(--muted);
      font-size: .94rem;
      font-weight: 700;
      line-height: 1.8;
    }
    .notice-card.is-strong {
      background: var(--navy);
      color: #fff;
      border-color: rgba(255,255,255,.12);
    }
    .notice-card.is-strong h2,
    .notice-card.is-strong h3 { color: #fff; }
    .notice-card.is-strong p { color: rgba(255,255,255,.82); }
    .notice-card.is-strong .notice-label { color: #9DBDFF; }

    /* Set menu */
    .set-menu {
      padding: 18px 0 34px;
    }
    .set-card {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #061A35 0%, #0B2447 58%, #133E7C 100%);
      border-radius: 18px;
      box-shadow: var(--shadow);
      color: #fff;
      padding: 34px;
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 32px;
      align-items: center;
    }
    .set-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
      background-size: 28px 28px;
      opacity: .32;
      pointer-events: none;
    }
    .set-card > * { position: relative; z-index: 1; }
    .set-label {
      display: inline-flex;
      margin-bottom: 12px;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(250,204,21,.16);
      color: #FDE68A;
      font-size: .74rem;
      letter-spacing: .12em;
      font-weight: 900;
      text-transform: uppercase;
    }
    .set-title {
      margin: 0 0 10px;
      font-size: clamp(1.55rem, 2.7vw, 2.25rem);
      line-height: 1.28;
      font-weight: 900;
      letter-spacing: -.04em;
    }
    .set-desc {
      margin: 0;
      max-width: 620px;
      color: rgba(255,255,255,.82);
      font-weight: 700;
    }
    .set-prices {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }
    .set-price-box {
      background: rgba(255,255,255,.95);
      border-radius: 12px;
      padding: 18px 12px;
      text-align: center;
      color: var(--navy);
    }
    .set-price-box span {
      display: block;
      color: var(--muted);
      font-size: .78rem;
      font-weight: 900;
      margin-bottom: 6px;
    }
    .set-price-box strong {
      color: var(--blue);
      font-size: 1.25rem;
      line-height: 1.2;
      font-weight: 900;
      white-space: nowrap;
    }

    /* Category nav */
    .category-nav-wrap { padding: 4px 0 38px; }
    .category-nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }
    .category-nav a {
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      padding: 0 16px;
      border: 1px solid rgba(37,99,235,.20);
      border-radius: 999px;
      background: #fff;
      color: #16325C;
      font-size: .88rem;
      font-weight: 900;
      box-shadow: 0 10px 22px rgba(6,26,53,.06);
    }

    /* Tables */
    .price-section {
      padding: 0 0 76px;
    }
    .price-category {
      margin-bottom: 34px;
      background: #fff;
      border: 1px solid rgba(15,23,42,.08);
      border-radius: 16px;
      box-shadow: 0 18px 42px rgba(6,26,53,.09);
      overflow: hidden;
    }
    .price-category-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 24px 28px;
      border-bottom: 1px solid var(--line);
      background: linear-gradient(180deg, #fff 0%, #F8FAFF 100%);
    }
    .price-category-title {
      margin: 0;
      color: #142033;
      font-size: clamp(1.24rem, 2vw, 1.65rem);
      line-height: 1.35;
      font-weight: 900;
      letter-spacing: -.03em;
    }
    .price-category-note {
      margin: 0;
      color: var(--muted);
      font-size: .86rem;
      font-weight: 800;
      white-space: nowrap;
    }
    .table-scroll {
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
.price-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: .95rem;
}

.price-table th,
.price-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.price-table thead th {
  background: #F0F5FF;
  color: #142033;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}

/* 1列目：項目名 */
.price-table th:first-child,
.price-table td:first-child {
  width: 46%;
  min-width: 0 !important;
  color: #1B2A40;
  text-align: left;
  font-weight: 800;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/* 2〜4列目：料金 */
.price-table th:nth-child(2),
.price-table th:nth-child(3),
.price-table th:nth-child(4),
.price-table td:nth-child(2),
.price-table td:nth-child(3),
.price-table td:nth-child(4) {
  width: 18%;
  text-align: center;
  white-space: nowrap;
}

/* 料金文字 */
.price-table td:nth-child(2),
.price-table td:nth-child(3),
.price-table td:nth-child(4) {
  color: var(--blue);
  font-weight: 900;
  font-size: 1rem;
}

.price-table tbody tr:nth-child(even) {
  background: #FAFBFD;
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

    .price-table .is-set-row td {
      background: rgba(250,204,21,.13);
      border-top: 2px solid rgba(250,204,21,.45);
      border-bottom: 2px solid rgba(250,204,21,.45);
    }
    .price-table .is-set-row td:first-child::before {
      content: "セットメニュー";
      display: inline-flex;
      align-items: center;
      margin-right: 10px;
      padding: 2px 8px;
      border-radius: 999px;
      background: var(--yellow);
      color: #13213A;
      font-size: .72rem;
      line-height: 1.5;
      font-weight: 900;
      vertical-align: middle;
    }

    /* Notes */
    .notes-section {
      padding: 0 0 76px;
    }
    .notes-box {
      background: #fff;
      border: 1px solid rgba(15,23,42,.08);
      border-radius: 16px;
      box-shadow: 0 18px 42px rgba(6,26,53,.09);
      padding: 30px;
    }
    .notes-title {
      margin: 0 0 14px;
      color: #142033;
      font-size: 1.35rem;
      font-weight: 900;
    }
    .notes-list {
      margin: 0;
      padding-left: 1.3em;
      color: #4B5B70;
      font-size: .94rem;
      font-weight: 700;
      line-height: 1.9;
    }

    /* CTA */
    .bottom-cta {
      position: relative;
      overflow: hidden;
      background: var(--navy);
      color: #fff;
      text-align: center;
      padding: 76px 0;
    }
    .bottom-cta::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
      background-size: 28px 28px;
      opacity: .35;
    }
    .bottom-cta .container { position: relative; z-index: 1; }
    .bottom-cta h2 {
      margin: 0 0 12px;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      line-height: 1.3;
      font-weight: 900;
      letter-spacing: -.04em;
    }
    .bottom-cta p {
      margin: 0 auto 28px;
      max-width: 760px;
      color: rgba(255,255,255,.82);
      font-weight: 700;
    }
    .cta-actions {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 14px;
    }

    .site-footer {
      background: #031022;
      color: rgba(255,255,255,.66);
      padding: 28px 0;
      font-size: .86rem;
      font-weight: 700;
    }
    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: center;
    }
    /* .footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
} */

.footer-logo img {
  display: block;
  height: 34px;
  width: auto;
}  

    @media (max-width: 1100px) {
      .global-nav { gap: 24px; }
      .header-actions { gap: 10px; margin-left: 16px; }
      .sns-toggle,
      .header-cta {
        min-height: 42px;
        padding-right: 13px;
        padding-left: 13px;
        font-size: .84rem;
      }
    }

    @media (max-width: 900px) {
      .header-actions { display: none; }
      .notice-grid { grid-template-columns: 1fr; }
      .set-card { grid-template-columns: 1fr; }
      .set-prices { max-width: 560px; }
      .price-category-head { align-items: flex-start; flex-direction: column; gap: 8px; }
      .price-category-note { white-space: normal; }
    }

    @media (max-width: 720px) {
      .container { width: min(var(--max), calc(100% - 32px)); }
      .section { padding: 60px 0; }
      .global-nav { display: none; }
      .menu-button { display: inline-flex; }
      .page-hero-inner { min-height: 250px; padding: 58px 0 54px; }
      .notice-card { padding: 20px; }
      .set-card { padding: 26px 20px; border-radius: 14px; }
      .set-prices { grid-template-columns: 1fr; }
      .price-category-head { padding: 20px 18px; }
      .price-table { min-width: 700px; font-size: .88rem; }
      .price-table th,
      .price-table td { padding: 13px 14px; }
      .notes-box { padding: 24px 20px; }
      .footer-inner { flex-direction: column; text-align: center; }
      .cta-actions .btn { width: 100%; }
    }
    /* Footer */

.footer {
  background: #031122;
  color: #AEBBD0;
  padding: 26px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: .84rem;
  font-weight: 700;
}

.footer-logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
