/* ===== RESET & BASE ===== */
    *, *::before, *::after{ 
      box-sizing: border-box; 
      margin: 0; 
      padding: 0; 
    }
 
    :root {
      --night-base: #0a0d14;
      --night-deep: #060810;
      --amber: #f5a623;
      --amber-light: #ffc857;
      --ember: #e8460a;
      --gold: #d4a017;
      --smoke: rgba(255,255,255,0.07);
      --smoke-border: rgba(255,255,255,0.12);
      --text-primary: #f0ede6;
      --text-muted: rgba(240,237,230,0.6);
      --content-width: 500px;
      --radius: 12px;
    }
 
    html {
      font-size: 62.5%;
      scroll-behavior: smooth;
    }
 
    body {
      font-family: 'Noto Sans JP', sans-serif;
      background-color: var(--night-base);
      color: var(--text-primary);
      min-height: 100vh;
      overflow-x: hidden;
      font-feature-settings: "palt";
      letter-spacing: 0.05em;
    }

    img {
      width: 100%;
      height: auto;
      vertical-align: bottom;
    }
 
    /* ===== BACKGROUND FIX (tablet/PC only) ===== */
    @media (min-width: 501px) {
      body {
        background-image: url('../images/bg.jpg');
        background-attachment: fixed;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
      }
      body::before {
        content: '';
        position: fixed;
        inset: 0;
        /* background: linear-gradient(to bottom,rgba(6,8,16,0.72) 0%,rgba(10,13,20,0.80) 60%,rgba(6,8,16,0.90) 100%); */
        z-index: 0;
        pointer-events: none;
      }
    }
 
    /* ===== LAYOUT WRAPPER ===== */
    .page-wrap {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: var(--content-width);
      margin: 0 auto;
      background-color: var(--night-base);
    }
 
    @media (min-width: 501px) {
      .page-wrap {
        box-shadow: 0 0 80px rgba(0,0,0,0.8);
      }
    }
 
    /* ===== HERO ===== */
    .hero {
      position: relative;
      width: 100%;
      overflow: hidden;
      background: #0a0d14;
      display: block;
      line-height: 0;
    }
 
    .hero-img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
    }
 
    .hero-placeholder .badge {
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      color: var(--amber);
      text-transform: uppercase;
      margin-bottom: 1rem;
      opacity: 0.9;
    }
 
    .hero-title {
      font-family: 'Anton', sans-serif;
      font-size: clamp(3.5rem, 18vw, 5.5rem);
      line-height: 1;
      letter-spacing: 0.02em;
      background: linear-gradient(170deg, #fff8e0 10%, var(--amber-light) 45%, var(--amber) 75%, var(--ember) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: none;
      filter: drop-shadow(0 4px 20px rgba(245,166,35,0.4));
      margin-bottom: 1.2rem;
    }
 
    .hero-sub {
      font-size: 0.9rem;
      font-weight: 700;
      color: #fff;
      text-shadow: 0 2px 12px rgba(0,0,0,0.8);
      line-height: 1.8;
    }
 
    .hero-lanterns {
      position: absolute;
      top: 0; left: 0; right: 0;
      display: flex;
      justify-content: space-between;
      padding: 0 1rem;
    }
 
    /* ===== SECTIONS ===== */
    section { padding: 2rem 2.4rem; }
 
    .section-label {
      display: inline-block;
      font-size: 1.6rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 0.5rem;
    }
 
    .section-title {
      font-size: 1.5rem;
      font-weight: 900;
      line-height: 1.3;
      margin-bottom: 1rem;
    }
 
    /* ===== INTRO ===== */
    .intro {
      background: linear-gradient(180deg, rgba(20,14,40,0.95) 0%, var(--night-base) 100%);
      text-align: center;
      padding: 2.5rem 2.4rem;
    }
 
    .intro-headline {
      font-family: 'Anton', sans-serif;
      font-size: 1.9rem;
      letter-spacing: 0.04em;
      color: var(--amber-light);
      margin-bottom: 1rem;
    }
 
    .intro-body {
      font-size: 1.6rem;
      line-height: 1.9;
      color: var(--text-primary);
    }
 
    /* ===== POINTS ===== */
    .points {
      background-color: rgba(255,255,255,0.025);
    }
 
    .points-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.75rem;
    }
 
    .point-card {
      padding: 2rem 1rem;
      display: flex;
      flex-direction: column;
      text-align: center;
      background: var(--smoke);
      border: 1.5px solid var(--amber);
      /* border: 1px solid var(--smoke-border); */
      border-radius: var(--radius);
    }
 
    .point-icon {
      font-size: 1.6rem;
      display: block;
      margin-bottom: 0.5rem;
    }

    .point-icon-img {
      display: block;
      width: 36px;
      height: 36px;
      margin: 0 auto;
      -webkit-mask-size: contain;
      mask-size: contain;
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      -webkit-mask-position: center;
      mask-position: center;
    }
 
    .point-text {
      display: flex;
      justify-content: center;
      align-items: center;
      padding-top: .8rem;
      font-size: 1.4rem;
      font-weight: 700;
      line-height: 1.6;
      color: var(--text-primary);
      flex-grow: 1;
    }
 
    /* ===== TABS ===== */
    .tabs-section {
      padding: 0;
    }
 
    /* セクションタイトル帯 */
    .tabs-section-title {
      background: rgba(255,255,255,0.04);
      border-top: 1px solid var(--smoke-border);
      padding: 1rem 1.25rem 0;
    }
 
    .tabs-section-title p {
      font-size: 0.9rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 0.5rem;
    }
 
    .tabs-section-title h2 {
      font-size: 1.3rem;
      font-weight: 900;
      margin-bottom: 1rem;
    }
 
    /* フォルダータブ型ヘッダー */
    .tabs-header {
      display: flex;
      align-items: flex-end;
      gap: 4px;
      padding: 0 1.25rem;
      background: rgba(255,255,255,0.04);
      top: 0;
      z-index: 10;
    }
 
    .tab-btn {
      flex: 1;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.35rem;
      padding: 0.75rem 0.9rem 0.7rem;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 1.6rem;
      font-weight: 700;
      line-height: 1.4;
      text-align: left;
      letter-spacing: 0.01em;
      cursor: pointer;
      border: none;
      border-radius: 8px 8px 0 0;
      /* 非アクティブ: 暗めの青みがかった背景 */
      background: #0e111c;
      color: var(--text-muted);
      border: 1px solid var(--smoke-border);
      border-bottom: none;
      transition: background 0.2s, color 0.2s, transform 0.2s;
      transform: translateY(2px); /* 非アクティブは少し下に */
    }
 
    .tab-btn:hover:not(.active) {
      background: rgba(255,255,255,0.1);
      color: var(--text-primary);
      transform: translateY(1px);
    }
 
    .tab-btn.active {
      background: #1e2d52;
      color: var(--text-primary);
      border-color: rgba(255,255,255,0.18);
      border-bottom: 2px solid #1e2d52; /* コンテンツ背景色と同化して「開いてる」感 */
      transform: translateY(0);
      z-index: 2;
    }
 
    /* 開催中インジケーター（緑の丸 + テキスト） */
    .tab-indicator {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      color: #5ecf7a;
    }
 
    .tab-indicator::before {
      content: '';
      display: inline-block;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #5ecf7a;
      box-shadow: 0 0 6px rgba(94,207,122,0.7);
      flex-shrink: 0;
      animation: pulse-green 2s infinite;
    }
 
    @keyframes pulse-green {
      0%, 100% { box-shadow: 0 0 4px rgba(94,207,122,0.6); }
      50%       { box-shadow: 0 0 10px rgba(94,207,122,1); }
    }
 
    /* タブコンテンツ背景（アクティブタブと繋がる） */
    .tabs-body {
      background: #1e2d52;
      border: 1px solid rgba(255,255,255,0.18);
      border-top: none;
      position: relative;
      z-index: 10;
    }
 
    .tab-panel { display: none; }
    .tab-panel.active { display: block; }
 
    /* ===== EVENT INFO ===== */
    .event-info {
      padding: 2.4rem;
    }
 
    .info-block {
      margin-bottom: 1.8rem;
    }
 
    .info-label {
      font-size: 1.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: .4rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }
 
    .info-label::before {
      content: '';
      display: inline-block;
      width: 18px;
      height: 2px;
      background: var(--amber);
      border-radius: 1px;
    }
 
    .info-value {
      font-size: 2rem;
      font-weight: 500;
      line-height: 1.7;
      color: var(--text-primary);
    }
 
    .info-note {
      font-size: 1.4rem;
      color: var(--text-muted);
      margin-top: 0.25rem;
      line-height: 1.6;
      padding-left: 1em;
      text-indent: -1em;
    }
 
    .rain-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      font-size: 1.4rem;
      font-weight: bold;
      color: var(--night-base);
      background: var(--amber);
      border: 1px solid var(--amber);
      border-radius: 4px;
      padding: 0.2rem 0.5rem;
      margin-top: 0.4rem;
    }
 
    /* ===== MENU ===== */
    .menu-section {
      padding: 2.4rem;
      border-top: 1px solid var(--smoke-border);
    }
 
    .menu-title {
      font-size: 2rem;
      font-weight: 900;
      letter-spacing: 0.1em;
      color: var(--amber-light);
      text-align: center;
      margin-bottom: 0.4rem;
    }
 
    .menu-note {
      margin-top: 1rem;
      padding-top: 1rem;
      color: var(--text-muted);
      border-top: solid 1px var(--text-muted);
    }
 
    /* regular menu table */
    .menu-category {
      font-size: 1.6rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--amber);
      border-bottom: 1px solid rgba(245,166,35,0.3);
      padding-bottom: .8rem;
      margin-bottom: .8rem;
      margin-top: 1.5rem;
    }
 
    .menu-table {
      width: 100%;
      border-collapse: collapse;
    }
 
    .menu-table thead th {
      font-size: 1.4rem;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      text-align: left;
      padding: 0 0.8rem 0.8rem 0;
      border-bottom: 1px solid var(--smoke-border);
    }
 
    .menu-table thead th:last-child { text-align: right; }
 
    .menu-table tbody tr {
      border-bottom: 1px solid rgba(255,255,255,0.04);
      transition: background 0.15s;
    }
 
    .menu-table tbody tr:hover {
      background: rgba(245,166,35,0.05);
    }
 
    .menu-table tbody td {
      font-size: 1.6rem;
      padding: 0.7rem 0.5rem;
      vertical-align: middle;
    }
 
    .menu-table tbody td.item-name {font-weight: 500;}

    .menu-table tbody td.item-qty  { 
      font-size: 1.4rem;
      color: var(--text-muted); 
    }

    .menu-table tbody td.item-price {
      text-align: right;
      font-weight: 700;
      font-variant-numeric: tabular-nums;
      color: var(--amber-light);
      white-space: nowrap;
    }
 
    /* course block */
    .course-block {
      margin-top: 1.5rem;
      background: linear-gradient(135deg, rgba(245,166,35,0.08) 0%, rgba(228,70,10,0.08) 100%);
      border: 1px solid rgba(245,166,35,0.25);
      border-radius: var(--radius);
      padding: 1.6rem;
    }
 
    .course-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 0.75rem;
    }
 
    .course-name {
      font-size: 2rem;
      font-weight: 900;
      color: var(--amber-light);
    }
 
    .course-price {
      font-size: 2rem;
      font-weight: 900;
      color: var(--amber);
      font-variant-numeric: tabular-nums;
    }
 
    .course-price span {
      font-size: 1.4rem;
      font-weight: 500;
      color: var(--text-muted);
    }
 
    .course-items {
      display: flex;
      flex-direction: column;
      gap: .8rem;
    }
 
    .course-items li {
      font-size: 1.6rem;
      color: var(--text-primary);
      display: inline;
      gap: 0.3rem;
      line-height: 1.5;
      padding-left: 1em;
      text-indent: -1em;
    }
 
    .course-items li::before {
      content: '·';
      color: var(--amber);
      font-weight: 700;
      flex-shrink: 0;
    }
 
    /* ===== ACCESS MAP ===== */
    .access-section {
      padding: 2.4rem;
    }
 
    .map-placeholder {
      width: 100%;
      aspect-ratio: 16/9;
      background: var(--smoke);
      border: 1px dashed var(--smoke-border);
      border-radius: var(--radius);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      color: var(--text-muted);
      font-size: 0.8rem;
      margin-top: 1rem;
    }
 
    .map-placeholder .map-icon { font-size: 2rem; }
 
    /* ===== CTA ===== */
    .cta-section {
      padding: 2.4rem;
      text-align: center;
      background: linear-gradient(180deg, var(--night-base) 0%, rgba(20,10,5,1) 100%);
    }
 
    .cta-label {
      font-size: 1.6em;
      letter-spacing: 0.2em;
      color: var(--text-primary);
      /* text-transform: uppercase; */
      margin-bottom: .8rem;
    }
 
    .cta-text {
      font-size: 1.6rem;
      font-weight: 700;
      line-height: 1.7;
      color: var(--text-primary);
    }
 
    /* main CTA button */
    .btn-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background: linear-gradient(135deg, var(--amber) 0%, var(--ember) 100%);
      color: #fff;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 0.95rem;
      font-weight: 900;
      letter-spacing: 0.04em;
      padding: 1rem 2.5rem;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      text-decoration: none;
      box-shadow:
        0 4px 20px rgba(245,120,10,0.45),
        0 0 0 0 rgba(245,166,35,0);
      transition:
        transform 0.2s cubic-bezier(0.34,1.56,0.64,1),
        box-shadow 0.2s ease;
    }
 
    .btn-cta::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
      transform: translateX(-100%);
      transition: transform 0.45s ease;
    }
 
    .btn-cta:hover {
      transform: translateY(-3px) scale(1.03);
      box-shadow:
        0 8px 30px rgba(245,120,10,0.6),
        0 0 0 6px rgba(245,166,35,0.15);
    }
 
    .btn-cta:hover::after { transform: translateX(100%); }
 
    .btn-cta:active {
      transform: translateY(0) scale(0.98);
      box-shadow: 0 3px 12px rgba(245,120,10,0.4);
    }
 
    /* secondary outline button */
    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      background: transparent;
      color: var(--amber);
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      padding: 0.7rem 1.5rem;
      border-radius: 50px;
      border: 1.5px solid var(--amber);
      cursor: pointer;
      text-decoration: none;
      transition:
        background 0.2s,
        color 0.2s,
        transform 0.18s cubic-bezier(0.34,1.56,0.64,1),
        box-shadow 0.2s;
    }
 
    .btn-outline:hover {
      background: rgba(245,166,35,0.1);
      transform: translateY(-2px);
      box-shadow: 0 4px 18px rgba(245,166,35,0.2);
    }
 
    .btn-outline:active { transform: translateY(0); }
 
    /* ===== CONTACT ===== */
    .contact-section {
      padding: 2rem 1.25rem 2.5rem;
      text-align: center;
      border-top: 1px solid var(--smoke-border);
    }
 
    .contact-title {
      font-size: 0.9rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 1rem;
    }
 
    .contact-company {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: .4rem;
    }
 
    .contact-detail {
      font-size: 1.6rem;
      color: var(--text-muted);
    }
 
    .contact-phone {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--amber-light);
      text-decoration: none;
      letter-spacing: 0.05em;
      display: inline-block;
      transition: color 0.2s;
    }
    .contact-phone:hover { color: var(--amber); }
 
    /* ===== SNS ===== */
    .sns-section {
      padding: 1.75rem 1.25rem 2.5rem;
      text-align: center;
      border-top: 1px solid var(--smoke-border);
      background: rgba(255,255,255,0.02);
    }
 
    .sns-label {
      font-size: 0.9rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 1rem;
    }
 
    .sns-row {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 1.4em;
      gap: 0.75rem;
    }
 
    .sns-icon-wrap {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
    }
 
    .sns-icon-wrap:hover {
      transform: scale(1.1);
      box-shadow: 0 4px 20px rgba(253,29,29,0.35);
    }
 
    .sns-info {
      text-align: left;
    }
 
    .sns-handle-name {
      font-size: 1.4rem;
      color: var(--text-muted);
      margin-bottom: 0.1rem;
    }
 
    .sns-handle {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--text-primary);
    }
 
    /* ===== FOOTER ===== */
    footer {
      padding: 1.25rem;
      text-align: center;
      border-top: 1px solid var(--smoke-border);
    }
 
    .footer-text {
      font-size: 1.2rem;
      color: rgba(255,255,255,0.25);
      line-height: 1.7;
    }
 
    /* ===== DECORATIVE DIVIDER ===== */
    .flame-divider {
      text-align: center;
      color: var(--amber);
      font-size: 1.2rem;
      letter-spacing: 0.4em;
      padding: 0.5rem 0 0;
      opacity: 0.5;
    }
 
    /* ===== SCROLL REVEAL ===== */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .bbq_venue01 {
      font-size: 1.6rem;
      color:var(--text-primary);
      line-height:1.8;
    }

    .bbq_venue02 {
      font-size: 1.6rem;
      color:var(--text-primary);
      line-height:1.8;
      margin-bottom: 1rem;
      padding-left: 1em;
      text-indent: -1em;
    }

    .fa-cutlery:before,
    .fa-utensils:before {
      margin-right: .3rem;
    }

    .bbq_ae {font-size: 2rem;}

    .bbq_indent {
      font-size: 1rem;
      color: var(--text-primary);
      line-height: 1.8;
      padding-left: 1em;
      text-indent: -1em;
    }

    .bbq_inqury {
      display: flex;
      text-align: center;
      gap: 1rem;
    }

    .tab_smalltxt {
      display: block;
      font-size: 1.4rem;
      font-weight: 600;
      line-height: 1.6;
      text-align: left;
      color: var(--text-primary);
    }

    .info-reserved {
      border: solid 2px var(--text-muted);
      border-radius: var(--radius);
      padding: 1.6rem;
    }

    .menu-ann_txt {
      font-size: 1.4rem;
      padding-left: 1em;
      text-indent: -1em;
      line-height: 1.6;
      text-align: left;
      color: var(--text-muted);
    }

    .course-strong {font-weight: 800;}

    span.course-ls_order {
      font-size: 1.4rem;
      font-weight: 500;
      color: var(--text-primary);
    }

    .item-ajust {width: 50%;}

    .contact_wrap {
      padding: 2.4rem;
      display:flex;
      flex-direction:column;
      align-items:center;
      gap:1rem;
    }

    .bbq_pc {display: block;}
      
    .bbq_sp {display: none;}
    @media screen and (max-width: 378px) {
      .bbq_pc {display: none;}

      .bbq_sp {display: block;}

      .point-text {
        font-size: 1.3rem;
        text-align: left;
      }
    }
    
    @media screen and (max-width: 412px) {
      .intro-body {
        font-size: 1.4rem;
        text-align: left;
      }

      .tab-btn {font-size: 1.4rem;}

      .tab_smalltxt {font-size: 1.2rem;}
    }

    .sns-info a {text-decoration: none;}

    .point-card:nth-of-type(2n) .point-icon-img {width: 40px;}