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

  :root {
    --red: #B22222;
    --dark-red: #8B0000;
    --gold: #C9A84C;
    --light-gold: #E8D48B;
    --black: #1a1a1a;
    --dark-bg: #0d0d0d;
    --cream: #FFF8F0;
    --white: #ffffff;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Noto Sans JP', sans-serif;
    background: var(--dark-bg);
    color: var(--white);
    line-height: 1.8;
  }

  /* ===== HEADER / NAV ===== */
  header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13,13,13,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212,168,67,0.3);
  }

  nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-brand {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.1em;
    animation: goldFlash 0.8s ease-in-out 1s 1 both;
  }

  .nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
  }

  .nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: color 0.3s;
  }

  .nav-links a:hover { color: var(--gold); }

  .nav-toggle { display: none; background: none; border: none; cursor: pointer; }
  .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--gold); margin: 5px 0; transition: 0.3s; }

  /* ===== HERO ===== */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--dark-bg);
    overflow: hidden;
  }

  .hero-split {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 100vh;
    align-items: center;
    padding: 80px 40px 40px;
  }

  .hero-text {
    flex: 1;
    padding-right: 40px;
    z-index: 2;
    position: relative;
  }

  /* 双龍背景 — 高解像度画像が準備できたら有効化
  .hero-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(350px, 70vw, 700px);
    height: clamp(280px, 50vw, 520px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.18;
    background-image: url('images/dragon-twin.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  */

  .hero-image {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 80px rgba(178,34,34,0.15);
  }

  .hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--gold);
    border-radius: 4px;
    opacity: 0.3;
    z-index: -1;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
      radial-gradient(circle at 20% 50%, rgba(178,34,34,0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 50%, rgba(212,168,67,0.08) 0%, transparent 50%);
  }

  @media (max-width: 768px) {
    .hero-split {
      flex-direction: column;
      text-align: center;
      padding: 100px 20px 40px;
    }
    .hero-text { padding-right: 0; margin-bottom: 30px; }
    .hero-image img { max-width: 90%; }
    .hero-image::before { display: none; }
  }

  .hero-sub {
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 400;
  }

  .hero-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 8px;
    text-shadow:
      1px 1px 0 rgba(0,0,0,0.5),
      2px 2px 4px rgba(0,0,0,0.4),
      0 0 60px rgba(178,34,34,0.4);
  }

  .hero-title .accent {
    color: var(--gold);
    text-shadow:
      1px 1px 0 rgba(120,80,20,0.8),
      2px 2px 4px rgba(0,0,0,0.5),
      0 0 20px rgba(201,168,76,0.2);
  }

  .hero-tagline {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1rem, 3vw, 1.4rem);
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 0.15em;
  }

  .hero-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 40px;
  }

  .hero-cta {
    display: inline-flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn {
    display: inline-block;
    padding: 14px 36px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
  }

  .btn-primary {
    background: var(--red);
    color: var(--white);
    border: 1px solid var(--red);
  }

  .btn-primary:hover {
    background: var(--dark-red);
    box-shadow: 0 4px 20px rgba(178,34,34,0.4);
  }

  .btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
  }

  .btn-outline:hover {
    background: var(--gold);
    color: var(--black);
  }

  /* ===== FEATURED PRODUCT ===== */
  .featured {
    background: linear-gradient(180deg, #120808 0%, var(--dark-bg) 100%);
    padding: 100px 20px;
  }

  .featured-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
  }

  .featured-image {
    flex: 1;
    position: relative;
  }

  .featured-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  }

  .featured-badge {
    position: absolute;
    top: -12px;
    left: -12px;
    background: var(--red);
    color: var(--white);
    font-family: 'Noto Serif JP', serif;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 2px;
    box-shadow: 0 4px 12px rgba(178,34,34,0.4);
    letter-spacing: 0.1em;
  }

  .featured-text {
    flex: 1;
  }

  .featured-text .label {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.3em;
    margin-bottom: 12px;
    font-weight: 500;
  }

  .featured-text h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.4;
    color: var(--gold);
    text-shadow:
      1px 1px 0 rgba(120,80,20,0.8),
      2px 2px 4px rgba(0,0,0,0.5);
  }
  .featured.visible .featured-text h2 {
    animation: goldFlash 0.8s ease-in-out 0.5s 1 both;
  }

  .featured-text p {
    font-size: 1rem;
    line-height: 2;
    color: rgba(255,255,255,0.75);
    margin-bottom: 24px;
  }

  .featured-price {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 28px;
  }

  .featured-price small {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
  }

  @media (max-width: 768px) {
    .featured-inner {
      flex-direction: column;
      text-align: center;
    }
    .featured-image img { max-width: 85%; }
    .featured-badge { left: 50%; transform: translateX(-50%); }
  }

  /* ===== SECTION COMMON ===== */
  section { padding: 100px 20px; }

  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .section-header h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gold);
    text-shadow:
      1px 1px 0 rgba(120,80,20,0.8),
      2px 2px 4px rgba(0,0,0,0.5);
  }
  .section-header.visible h2 {
    animation: goldFlash 0.8s ease-in-out 0.3s 1 both;
  }

  .section-header .gold-line {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 16px;
  }
  .section-header.visible .gold-line {
    animation: lineFlash 0.8s ease-in-out 0.5s 1 both;
  }

  .section-header p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }

  /* ===== ABOUT ===== */
  .about {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #120808 100%);
  }

  .about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }

  .about-content p {
    font-size: 1rem;
    line-height: 2.2;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
  }

  .about-badges {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 40px;
    flex-wrap: wrap;
  }

  .badge {
    text-align: center;
  }

  .badge-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-family: 'Noto Serif JP', serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
  }

  .badge-text {
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.1em;
  }

  /* ===== FULLSCREEN PHOTO ===== */
  .photo-break {
    position: relative;
    height: 50vh;
    min-height: 300px;
    overflow: hidden;
  }

  .photo-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .photo-break::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
      180deg,
      rgba(13,13,13,0.6) 0%,
      rgba(13,13,13,0.1) 30%,
      rgba(13,13,13,0.1) 70%,
      rgba(13,13,13,0.6) 100%
    );
  }

  /* ===== LINE FLOATING BUTTON ===== */
  .line-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    transition: bottom 0.3s ease;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #06C755;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(6,199,85,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
  }

  .line-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(6,199,85,0.5);
  }

  .line-float svg {
    width: 36px;
    height: 36px;
    fill: #fff;
  }

  .line-float-label {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    color: #06C755;
    white-space: nowrap;
    font-weight: 700;
  }

  /* Floating Cart Bar */
  .floating-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #B22222, #8B0000);
    padding: 12px 20px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    cursor: pointer;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
  }
  .floating-cart.show { transform: translateY(0); }
  .floating-cart-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 600px;
    margin: 0 auto;
  }
  .floating-cart-icon { font-size: 1.4rem; }
  .floating-cart-info {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
  }
  .floating-cart-btn {
    background: #fff;
    color: #B22222;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  .ig-float {
    position: fixed;
    bottom: 110px;
    right: 24px;
    transition: bottom 0.3s ease;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(225,48,108,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
  }

  .ig-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(225,48,108,0.5);
  }

  .ig-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
  }

  .ig-float-label {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    color: #e1306c;
    white-space: nowrap;
    font-weight: 700;
  }

  /* ===== MENU ===== */
  .menu {
    background: var(--dark-bg);
  }

  .menu-scroll-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
  }

  .menu-scroll-wrapper::-webkit-scrollbar {
    display: none;
  }

  .menu-scroll {
    display: flex;
    gap: 24px;
    padding: 0 20px;
    min-width: min-content;
  }

  .menu-scroll .menu-card {
    min-width: 300px;
    max-width: 320px;
    flex-shrink: 0;
  }

  .menu-scroll-hint {
    text-align: center;
    margin-top: 24px;
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    font-weight: 500;
  }

  .menu-scroll-hint span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 20px;
    padding: 8px 20px;
    animation: swipeHint 2.5s ease-in-out infinite;
  }

  .menu-scroll-hint .arrow-left {
    display: inline-block;
    animation: arrowLeft 1.5s ease-in-out infinite;
  }

  .menu-scroll-hint .arrow-right {
    display: inline-block;
    animation: arrowRight 1.5s ease-in-out infinite;
  }

  @keyframes swipeHint {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(6px); opacity: 0.7; }
  }

  @keyframes arrowLeft {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-6px); }
  }

  @keyframes arrowRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(6px); }
  }

  /* Desktop: grid layout */
  @media (min-width: 769px) {
    .menu-scroll-wrapper { overflow-x: visible; }
    .menu-scroll {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 32px;
      padding: 0;
      max-width: 1100px;
      margin: 0 auto;
    }
    .menu-scroll .menu-card {
      min-width: auto;
      max-width: none;
    }
    .menu-scroll-hint { display: none; }
  }

  .menu-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
  }

  .menu-card {
    background: linear-gradient(145deg, #1e1e1e, #151515);
    border: 1px solid rgba(212,168,67,0.15);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(178,34,34,0.2);
  }

  .menu-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }

  .menu-card-img-placeholder {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, #2a1515, #1a0a0a);
  }

  .menu-card-body {
    padding: 20px 24px 24px;
  }

  .menu-card-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
  }

  .menu-card-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
    line-height: 1.6;
  }

  .menu-card-allergens {
    margin: 8px 0 12px;
    padding: 8px 10px;
    background: rgba(255,255,255,0.03);
    border-left: 2px solid rgba(212,168,67,0.4);
    border-radius: 2px;
  }

  .allergen-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 6px;
  }

  .allergen-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 22px;
    padding: 0 6px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(212,168,67,0.12);
    border: 1px solid rgba(212,168,67,0.45);
    border-radius: 3px;
    letter-spacing: 0;
  }

  .allergen-text {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.45;
  }

  .allergen-text strong {
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    margin-right: 4px;
  }

  .menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .menu-card-price {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 700;
  }

  .menu-card-price small {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
  }

  .original-price {
    text-decoration: line-through;
    color: #888;
    font-size: 0.85em;
    margin-right: 4px;
  }

  .hp-price {
    color: #E84040;
    font-weight: 700;
  }

  .hp-discount-banner {
    text-align: center;
    background: linear-gradient(135deg, #8B0000, #E84040);
    color: #fff;
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    line-height: 1.7;
  }

  .hp-discount-banner .banner-main {
    font-size: 1.2rem;
    font-weight: 700;
  }

  .hp-discount-banner .banner-sub {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 4px;
  }

  .order-original-price {
    text-decoration: line-through;
    color: #888;
    font-size: 0.85em;
    margin-right: 2px;
  }

  .menu-card-multi-price {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .menu-add-btns {
    display: flex;
    gap: 6px;
    margin-top: 12px;
  }
  .menu-add-btns .menu-add-btn {
    margin-top: 0;
    font-size: 0.75rem;
    padding: 8px 4px;
  }
  .menu-add-btn {
    width: 100%;
    margin-top: 12px;
    padding: 10px;
    background: linear-gradient(135deg, var(--red), var(--dark-red));
    border: none;
    border-radius: 4px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    letter-spacing: 0.05em;
  }

  .menu-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(178,34,34,0.4);
  }

  .menu-add-btn:active {
    transform: scale(0.96);
  }

  .menu-add-btn.added {
    background: linear-gradient(135deg, #06C755, #05a648);
  }

  /* サイズ選択ボタン（メニューカード／焼き小籠包など） */
  .menu-size-select {
    display: flex;
    gap: 6px;
    margin-top: 12px;
  }
  .menu-size-btn {
    flex: 1;
    padding: 8px 4px;
    background: transparent;
    border: 1px solid rgba(201,168,76,0.5);
    border-radius: 4px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
  }
  .menu-size-btn:hover {
    background: rgba(201,168,76,0.15);
  }
  .menu-size-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #1a1a1a;
  }

  /* 「お得」「最安」ラベル（モンゴル茶のサイズボタン内） */
  .tea-badge {
    display: inline-block;
    margin-left: 4px;
    padding: 1px 5px;
    border-radius: 3px;
    background: var(--red);
    color: var(--white);
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1.4;
    vertical-align: middle;
  }
  .menu-size-btn.active .tea-badge,
  .order-size-btn.active .tea-badge {
    background: var(--dark-red);
    color: var(--white);
  }

  /* サイズ選択ボタン（注文フォームの行内・小さめ） */
  .order-size-select {
    display: flex;
    gap: 5px;
    margin-top: 6px;
  }
  .order-size-btn {
    padding: 4px 10px;
    background: transparent;
    border: 1px solid rgba(201,168,76,0.5);
    border-radius: 4px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }
  .order-size-btn:hover {
    background: rgba(201,168,76,0.15);
  }
  .order-size-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #1a1a1a;
  }

  /* サイズの人数目安（注文フォームの行内・小さく薄く・常時表示） */
  .order-size-hint {
    margin-top: 5px;
    font-size: 0.66rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.5);
    font-family: 'Noto Sans JP', sans-serif;
  }
  .order-size-hint span {
    display: block;
  }

  .tag {
    font-size: 0.7rem;
    padding: 3px 10px;
    border: 1px solid var(--red);
    color: var(--red);
    border-radius: 2px;
    font-weight: 500;
  }

  .tag.popular {
    background: var(--red);
    color: var(--white);
  }

  /* ===== DELIVERY ===== */
  .delivery {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #120808 100%);
  }

  .delivery-info {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }

  .delivery-cards {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
  }

  .delivery-card {
    background: linear-gradient(145deg, #1e1e1e, #151515);
    border: 1px solid rgba(212,168,67,0.2);
    border-radius: 4px;
    padding: 28px 36px;
    text-align: center;
    flex: 1;
    min-width: 200px;
  }

  .delivery-card .amount {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 700;
  }

  .delivery-card .label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
  }

  .delivery-note {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-top: 16px;
  }

  /* ===== COOKING ===== */
  .cooking {
    background: linear-gradient(180deg, #120808 0%, var(--dark-bg) 100%);
  }

  .cooking-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cooking-card {
    background: linear-gradient(145deg, #1e1e1e, #151515);
    border: 1px solid rgba(212,168,67,0.15);
    border-radius: 4px;
    padding: 32px 28px;
  }

  .cooking-card h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(212,168,67,0.2);
  }

  .cooking-card .cooking-target {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
  }

  .cooking-card ol {
    list-style: none;
    counter-reset: step;
    padding: 0;
  }

  .cooking-card ol li {
    counter-increment: step;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    padding: 6px 0 6px 32px;
    position: relative;
    line-height: 1.7;
  }

  .cooking-card ol li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 6px;
    width: 22px;
    height: 22px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cooking-card .cooking-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-top: 10px;
    padding-left: 8px;
    border-left: 2px solid rgba(212,168,67,0.3);
  }

  .cooking-simple {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 0;
  }

  .cooking-simple .cooking-icon {
    font-size: 1.5rem;
  }

  .cooking-simple p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
  }

  /* ===== SCHEDULE ===== */
  .schedule {
    background: var(--dark-bg);
  }

  .schedule-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .schedule-card {
    display: flex;
    align-items: stretch;
    background: linear-gradient(145deg, #1e1e1e, #151515);
    border: 1px solid rgba(212,168,67,0.15);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.15s;
    text-decoration: none;
    color: inherit;
  }

  .schedule-card:hover {
    border-color: rgba(212,168,67,0.4);
    transform: translateY(-2px);
  }

  a.schedule-card { cursor: pointer; }

  .schedule-card-date {
    min-width: 90px;
    padding: 16px 12px;
    background: rgba(212,168,67,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(212,168,67,0.15);
  }

  .schedule-card-month {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .schedule-card-day {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
  }

  .schedule-card-range {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
  }

  .schedule-card-body {
    flex: 1;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .schedule-card-venue {
    font-family: 'Noto Serif JP', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
  }

  .schedule-card-area {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
  }

  .schedule-empty {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(145deg, #1e1e1e, #151515);
    border: 1px solid rgba(212,168,67,0.15);
    border-radius: 4px;
  }

  .schedule-empty h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 12px;
  }

  .schedule-empty p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
  }

  .schedule-loading {
    text-align: center;
    padding: 40px;
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
  }

  /* ===== ORDER ===== */
  .order {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #120808 100%);
  }

  .order-methods {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
  }

  .order-card {
    background: linear-gradient(145deg, #1e1e1e, #151515);
    border: 1px solid rgba(212,168,67,0.15);
    border-radius: 4px;
    padding: 36px 28px;
    text-align: center;
    transition: border-color 0.3s;
  }

  .order-card:hover {
    border-color: var(--gold);
  }

  .order-card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
  }

  .order-card h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--gold);
  }

  .order-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    line-height: 1.7;
  }

  .order-card .btn { width: 100%; text-align: center; }

  /* ===== CONTACT ===== */
  .contact {
    background: var(--dark-bg);
  }

  .contact-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .contact-info h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 20px;
  }

  .contact-item {
    margin-bottom: 20px;
  }

  .contact-item .label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.1em;
    margin-bottom: 4px;
  }

  .contact-item .value {
    font-size: 1rem;
    color: var(--white);
  }

  .contact-item a {
    color: var(--gold);
    text-decoration: none;
  }

  .contact-item a:hover { text-decoration: underline; }

  .contact-form h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 20px;
  }

  .form-group {
    margin-bottom: 16px;
  }

  .form-group label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
    letter-spacing: 0.05em;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 12px 14px;
    background: #1e1e1e;
    border: 1px solid rgba(212,168,67,0.2);
    border-radius: 2px;
    color: var(--white);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    outline: none;
    border-color: var(--gold);
  }

  .form-group textarea { resize: vertical; min-height: 100px; }

  /* ===== FOOTER ===== */
  footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(212,168,67,0.15);
    padding: 40px 20px;
    text-align: center;
  }

  .footer-brand {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 8px;
  }

  footer p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
  }

  /* ===== FROZEN BADGE ===== */
  .frozen-badge {
    display: inline-block;
    font-size: 0.65rem;
    padding: 2px 8px;
    background: rgba(100,149,237,0.2);
    border: 1px solid rgba(100,149,237,0.4);
    color: #93b5f0;
    border-radius: 2px;
    margin-left: 8px;
    vertical-align: middle;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.active {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: rgba(13,13,13,0.98);
      padding: 20px;
      gap: 16px;
      border-bottom: 1px solid rgba(212,168,67,0.2);
    }
    .nav-toggle { display: block; }
    .contact-grid { grid-template-columns: 1fr; }
    .menu-grid { grid-template-columns: 1fr; }
    section { padding: 70px 16px; }
  }

  /* ===== HERO ENTRANCE ANIMATIONS ===== */
  @keyframes heroTextSlide {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
  }
  @keyframes heroImageSlide {
    from { opacity: 0; transform: translateX(60px) scale(0.95); }
    to { opacity: 1; transform: translateX(0) scale(1); }
  }
  @keyframes heroSubFade {
    from { opacity: 0; letter-spacing: 0.8em; }
    to { opacity: 1; letter-spacing: 0.3em; }
  }
  @keyframes heroDividerGrow {
    from { width: 0; }
    to { width: 60px; }
  }
  @keyframes heroCtaFade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes goldFlash {
    0%   { color: var(--gold); text-shadow: 1px 1px 0 rgba(120,80,20,0.8), 2px 2px 4px rgba(0,0,0,0.5); }
    40%  { color: #F0D060; text-shadow: 1px 1px 0 rgba(120,80,20,0.8), 2px 2px 4px rgba(0,0,0,0.5), 0 0 12px rgba(201,168,76,0.6); }
    100% { color: var(--gold); text-shadow: 1px 1px 0 rgba(120,80,20,0.8), 2px 2px 4px rgba(0,0,0,0.5); }
  }
  @keyframes lineFlash {
    0%   { box-shadow: none; opacity: 1; }
    40%  { box-shadow: 0 0 8px rgba(255,215,0,0.8); opacity: 1; }
    100% { box-shadow: none; opacity: 1; }
  }

  .hero-text {
    animation: heroTextSlide 1s ease-out 0.2s both;
  }
  .hero-sub {
    animation: heroSubFade 1.2s ease-out 0.4s both;
  }
  .hero-title {
    animation: heroTextSlide 1s ease-out 0.6s both;
  }
  .hero-title .accent {
    color: var(--gold);
    animation: goldFlash 0.8s ease-in-out 1.8s 1 both;
  }
  .hero-tagline {
    animation: heroTextSlide 1s ease-out 0.8s both;
  }
  .hero-divider {
    animation: heroDividerGrow 0.8s ease-out 1s both;
  }
  .hero-cta {
    animation: heroCtaFade 0.8s ease-out 1.2s both;
  }
  .hero-image {
    animation: heroImageSlide 1.2s ease-out 0.5s both;
  }
  .hero-image img {
    transition: transform 0.5s ease;
  }
  .hero-image:hover img {
    transform: scale(1.03);
  }

  /* ===== SCROLL ANIMATIONS ===== */
  .fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .fade-left.visible {
    opacity: 1;
    transform: translateX(0);
  }

  .fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .fade-right.visible {
    opacity: 1;
    transform: translateX(0);
  }

  .scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .scale-in.visible {
    opacity: 1;
    transform: scale(1);
  }

  /* メニューカード順次表示 */
  .menu-card.fade-up { transition-delay: 0s; }
  .menu-card.fade-up:nth-child(2) { transition-delay: 0.1s; }
  .menu-card.fade-up:nth-child(3) { transition-delay: 0.2s; }
  .menu-card.fade-up:nth-child(4) { transition-delay: 0.3s; }
  .menu-card.fade-up:nth-child(5) { transition-delay: 0.4s; }
  .menu-card.fade-up:nth-child(6) { transition-delay: 0.5s; }
  .menu-card.fade-up:nth-child(7) { transition-delay: 0.6s; }
  .menu-card.fade-up:nth-child(8) { transition-delay: 0.7s; }
  .menu-card.fade-up:nth-child(9) { transition-delay: 0.8s; }

  /* バッジアニメーション */
  .about-badges .badge {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .about-badges.visible .badge { opacity: 1; transform: translateY(0); }
  .about-badges.visible .badge:nth-child(1) { transition-delay: 0.1s; }
  .about-badges.visible .badge:nth-child(2) { transition-delay: 0.2s; }
  .about-badges.visible .badge:nth-child(3) { transition-delay: 0.3s; }
  .about-badges.visible .badge:nth-child(4) { transition-delay: 0.4s; }
  .about-badges.visible .badge:nth-child(5) { transition-delay: 0.5s; }

  /* ヘッダースクロール縮小 */
  header.scrolled {
    padding: 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  }

  /* ===== ORDER FORM ===== */
  .order-form-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
  }

  .order-form-lead {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 2;
    margin-bottom: 32px;
  }

  .order-product-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
  }

  .order-product-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(145deg, #1e1e1e, #151515);
    border: 1px solid rgba(212,168,67,0.15);
    border-radius: 4px;
    padding: 16px 20px;
    gap: 12px;
  }

  .order-product-info {
    flex: 1;
    min-width: 0;
  }

  .order-product-name {
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    font-size: 0.95rem;
  }

  .order-product-price {
    font-size: 0.8rem;
    color: var(--gold);
    margin-top: 2px;
  }

  .order-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }

  .order-qty button {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(212,168,67,0.4);
    background: transparent;
    color: var(--gold);
    font-size: 1.2rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .order-qty button:hover {
    background: rgba(212,168,67,0.15);
  }

  .order-qty-num {
    width: 32px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
  }

  .order-subtotal {
    width: 70px;
    text-align: right;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    flex-shrink: 0;
  }

  .order-subtotal.has-value {
    color: var(--gold);
    font-weight: 700;
  }

  .order-total-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--dark-red), #5a1010);
    border-radius: 4px;
    margin-bottom: 40px;
    font-family: 'Noto Serif JP', serif;
  }

  .order-total-label {
    font-size: 1rem;
    font-weight: 700;
  }

  .order-total-price {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--gold);
  }

  .order-shipping-info {
    font-size: 0.75rem;
    font-weight: 400;
    margin-top: 4px;
    color: rgba(255,255,255,0.6);
  }

  .order-shipping-info.free {
    color: #06C755;
    font-weight: 700;
  }

  .order-form-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
  }

  .order-form-fields label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 4px;
    display: block;
  }

  .order-form-fields input,
  .order-form-fields textarea,
  .order-form-fields select {
    width: 100%;
    padding: 12px 16px;
    background: #1e1e1e;
    border: 1px solid rgba(212,168,67,0.2);
    border-radius: 4px;
    color: var(--white);
    font-size: 0.95rem;
    font-family: 'Noto Sans JP', sans-serif;
    transition: border-color 0.3s;
  }

  .order-form-fields input:focus,
  .order-form-fields textarea:focus,
  .order-form-fields select:focus {
    outline: none;
    border-color: var(--gold);
  }

  .order-form-fields textarea {
    height: 80px;
    resize: vertical;
  }

  .order-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  @media (max-width: 768px) {
    .order-form-row { grid-template-columns: 1fr; }
    .order-product-row { padding: 12px 14px; }
    .order-product-name { font-size: 0.85rem; }
    .order-subtotal { width: 60px; font-size: 0.8rem; }
  }

  .order-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--red), var(--dark-red));
    border: none;
    border-radius: 4px;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Noto Serif JP', serif;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.1em;
  }

  .order-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(178,34,34,0.4);
  }

  .order-submit-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }

  .order-note {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-top: 16px;
  }

  /* 注文完了オーバーレイ */
  .order-complete-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  .order-complete-overlay.show { display: flex; }
  .order-complete-box {
    background: #1a1a1a;
    border: 1px solid var(--gold);
    border-radius: 16px;
    padding: 40px 30px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    max-height: 90vh;
    overflow-y: auto;
  }
  .order-complete-check {
    font-size: 3rem;
    margin-bottom: 12px;
  }
  .order-complete-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 8px;
  }
  .order-complete-msg {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  .order-complete-summary {
    text-align: left;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #ddd;
    line-height: 1.8;
  }
  .order-complete-summary strong { color: var(--gold); }
  .order-complete-point {
    background: rgba(232,64,64,0.15);
    border: 1px solid rgba(232,64,64,0.4);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
  }
  .order-complete-point .pt-title { color: #E84040; font-weight: 700; font-size: 0.95rem; }
  .order-complete-point .pt-detail { color: #ccc; font-size: 0.85rem; margin-top: 4px; }
  .order-complete-point .pt-big { font-size: 1.8rem; font-weight: 900; color: #E84040; }
  .order-complete-close {
    display: inline-block;
    background: var(--gold);
    color: #000;
    font-weight: 700;
    padding: 12px 40px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 8px;
  }

  /* ポイント確認セクション */
  .point-check-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 12px;
    padding: 24px;
    max-width: 400px;
    margin: 24px auto 0;
  }
  .point-check-box h3 {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 12px;
    text-align: center;
  }
  .point-check-row {
    display: flex;
    gap: 8px;
  }
  .point-check-row input {
    flex: 1;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 0.9rem;
  }
  .point-check-row button {
    padding: 10px 20px;
    background: var(--gold);
    color: #000;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
  }
  .point-result {
    margin-top: 16px;
    text-align: center;
    display: none;
  }
  .point-result.show { display: block; }
  .point-result .pt-balance {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
  }
  .point-result .pt-label {
    color: #aaa;
    font-size: 0.85rem;
    margin-top: 4px;
  }
