/*
Theme Name: 新宿 牡蠣スター
Theme URI: https://kakister.com/
Author: 牡蠣スター
Description: 新宿 牡蠣スター 公式サイト
Version: 1.0.0
License: Private
Text Domain: kakister
*/

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

    /* Safari 電話番号自動リンク色を無効化 */
    a[href^="tel"] {
      color: inherit;
      text-decoration: none;
    }

    :root {
      --gold: #c9a227;
      --gold-light: #e4c04f;
      --bg: #080808;
      --white: #ffffff;
      --muted: #fff;
      --border: rgba(201, 162, 39, .18);
      --hd: 68px;
      --rsv: 52px;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--bg);
      color: var(--white);
      font-family: 'Noto Serif JP', serif;
      overflow-x: hidden;
      padding-top: var(--hd);
      padding-bottom: var(--rsv);
    }

    ::-webkit-scrollbar {
      width: 4px;
    }

    ::-webkit-scrollbar-track {
      background: #0a0a0a;
    }

    ::-webkit-scrollbar-thumb {
      background: #2a2a2a;
      border-radius: 2px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--gold);
    }

    /* WordPress admin bar offset */
    .admin-bar #header {
      top: 32px;
    }
    @media screen and (max-width: 782px) {
      .admin-bar #header {
        top: 46px;
      }
    }

    /* ═══ HEADER ═══ */
    #header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: var(--hd);
      z-index: 900;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      background: rgba(8, 8, 8, .95);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .logo-img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      object-fit: cover;
      border: 1px solid var(--border);
    }

    .logo-text {
      font-family: 'Noto Serif JP', serif;
      font-size: 18px;
      font-weight: 700;
      letter-spacing: .14em;
      color: var(--gold);
      line-height: 1.2;
    }

    .logo-sub {
      font-size: 10px;
      letter-spacing: .2em;
      color: var(--muted);
      font-weight: 300;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    nav a {
      font-family: 'Noto Serif JP', serif;
      font-size: 12px;
      font-weight: 400;
      letter-spacing: .12em;
      color: var(--muted);
      text-decoration: none;
      transition: color .25s;
      position: relative;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--gold);
      transition: width .3s;
    }

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

    nav a:hover::after {
      width: 100%;
    }

    .nav-dropdown {
      position: relative;
    }

    .nav-dropdown-menu {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%) translateY(-6px);
      padding-top: 14px;
      background: transparent;
      min-width: 130px;
      display: flex;
      flex-direction: column;
      opacity: 0;
      visibility: hidden;
      transition: opacity .25s, transform .25s;
      z-index: 900;
    }

    .nav-dropdown-menu::after {
      content: '';
      position: absolute;
      top: 14px;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(5, 5, 5, .96);
      backdrop-filter: blur(12px);
      border: 1px solid var(--border);
      z-index: -1;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }

    .nav-dropdown-menu a {
      font-size: 11px;
      letter-spacing: .15em;
      color: var(--muted);
      padding: 10px 18px;
      text-decoration: none;
      transition: color .22s, background .22s;
      white-space: nowrap;
      border-bottom: 1px solid var(--border);
    }

    .nav-dropdown-menu a:last-child {
      border-bottom: none;
    }

    .nav-dropdown-menu a:hover {
      color: var(--gold);
      background: rgba(201, 162, 39, .05);
    }

    .nav-dropdown-menu a::after {
      display: none !important;
    }

    .nav-reserve {
      background: var(--gold) !important;
      color: #000 !important;
      padding: 8px 16px;
      font-weight: 700 !important;
      transition: background .25s !important;
    }

    .nav-reserve::after {
      display: none !important;
    }

    .nav-reserve:hover {
      background: var(--gold-light) !important;
    }

    /* ═══ RESERVATION BAR (bottom fixed) ═══ */
    #reserveBar {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      height: var(--rsv);
      z-index: 900;
      background: var(--gold);
      transition: background .25s;
    }

    #reserveBar:hover {
      background: var(--gold-light);
    }

    .reserve-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      height: 100%;
      text-decoration: none;
      color: #000;
    }

    .reserve-icon {
      width: 32px;
      height: 32px;
      object-fit: cover;
      border-radius: 50%;
      display: block;
      flex-shrink: 0;
    }

    .reserve-text {
      font-family: 'Noto Serif JP', serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .3em;
      color: #000;
    }

    .reserve-sub {
      font-size: 10px;
      letter-spacing: .15em;
      color: rgba(0, 0, 0, .55);
    }

    /* ═══ FIRST VIEW ═══ */
    #fv {
      display: flex;
      height: calc(100vh - var(--hd) - var(--rsv));
      min-height: 560px;
      position: relative;
      background:
        radial-gradient(ellipse at center, transparent 35%, rgba(0, 0, 0, .65) 100%),
        linear-gradient(155deg, rgba(10, 8, 6, .68) 0%, rgba(6, 5, 5, .48) 50%, rgba(10, 8, 6, .62) 100%),
        url('img/fv-bg.jpg') center center / cover no-repeat;
    }

    /* Left hero 68% */
    .fv-hero {
      flex: 0 0 68%;
      position: relative;
      overflow: hidden;
      background: transparent;
    }

    .fv-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      opacity: .03;
      pointer-events: none;
    }

    .fv-content {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      z-index: 2;
      padding: 32px 48px;
      overflow-y: auto;
    }

    .fv-eyebrow {
      font-size: 10px;
      letter-spacing: .5em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 22px;
      opacity: .85;
    }

    .fv-title {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(34px, 4.8vw, 62px);
      font-weight: 700;
      line-height: 1.3;
      letter-spacing: .18em;
      color: var(--white);
      text-shadow: 0 0 50px rgba(201, 162, 39, .15), 0 2px 20px rgba(0, 0, 0, .5);
    }

    .fv-title-en {
      display: block;
      font-family: 'Cinzel', serif;
      font-size: .42em;
      letter-spacing: .35em;
      color: var(--gold);
      margin-top: 8px;
      font-weight: 400;
    }

    .fv-rule {
      width: 48px;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      margin: 18px auto;
    }

    .fv-desc {
      font-size: 13px;
      line-height: 1.9;
      color: #fff;
      letter-spacing: .05em;
      max-width: 460px;
      text-align: left;
    }

    .fv-corner {
      position: absolute;
      width: 22px;
      height: 22px;
      z-index: 3;
      opacity: .4;
    }

    .fv-corner.tl {
      top: 18px;
      left: 18px;
      border-top: 1px solid var(--gold);
      border-left: 1px solid var(--gold);
    }

    .fv-corner.tr {
      top: 18px;
      right: 18px;
      border-top: 1px solid var(--gold);
      border-right: 1px solid var(--gold);
    }

    .fv-corner.bl {
      bottom: 18px;
      left: 18px;
      border-bottom: 1px solid var(--gold);
      border-left: 1px solid var(--gold);
    }

    .fv-corner.br {
      bottom: 18px;
      right: 18px;
      border-bottom: 1px solid var(--gold);
      border-right: 1px solid var(--gold);
    }

    /* Right sidebar 32% */
    .fv-side {
      flex: 0 0 32%;
      background: transparent;
      border-left: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      overflow-y: auto;
    }

    .side-label {
      font-size: 9px;
      letter-spacing: .45em;
      color: var(--gold);
      text-transform: uppercase;
      padding: 16px 18px 12px;
      border-bottom: 1px solid var(--border);
      font-family: 'Cinzel', serif;
    }

    /* SNS buttons */
    .fv-sns-row {
      display: flex;
      gap: 8px;
      padding: 12px 18px;
      border-bottom: 1px solid var(--border);
      flex-wrap: wrap;
    }

    .fv-sns-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 7px 12px;
      border: 1px solid var(--border);
      background: rgba(255, 255, 255, .03);
      color: var(--muted);
      text-decoration: none;
      font-size: 11px;
      letter-spacing: .06em;
      transition: border-color .25s, color .25s;
    }

    .fv-sns-btn:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .fv-sns-btn svg {
      width: 13px;
      height: 13px;
      fill: currentColor;
    }

    /* Instagram grid */
    .ig-section-label {
      font-size: 20px;
      letter-spacing: .15em;
      color: var(--muted);
      padding: 10px 18px 6px;
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .ig-section-label a {
      text-decoration: none;
      color: var(--muted);
      transition: .3s;
    }

    .ig-section-label a:hover {
      transform: .3s;
      opacity: .7;
    }

    .ig-grid,
    .sb-feed-wrap {
      padding-left: 18px;
      padding-right: 18px;
    }

    .ig-post {
      aspect-ratio: 1;
      background: #141414;
      border: 1px solid var(--border);
      overflow: hidden;
      position: relative;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
    }

    .ig-post-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .25s;
    }

    .ig-post:hover .ig-post-overlay {
      background: rgba(0, 0, 0, .5);
    }

    .ig-post-overlay svg {
      opacity: 0;
      width: 22px;
      height: 22px;
      fill: white;
      transition: opacity .25s;
    }

    .ig-post:hover .ig-post-overlay svg {
      opacity: 1;
    }

    .ig-post img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      inset: 0;
    }

    /* ═══ SHARED SECTION ═══ */
    section {
      padding: 88px 0;
    }

    .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 48px;
    }

    .sec-head {
      text-align: center;
      margin-bottom: 56px;
    }

    .sec-eyebrow {
      display: block;
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: .55em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .sec-title {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(26px, 3.8vw, 42px);
      font-weight: 700;
      letter-spacing: .18em;
      color: var(--white);
      line-height: 1.2;
    }

    .sec-rule {
      width: 32px;
      height: 1px;
      background: var(--gold);
      margin: 14px auto 0;
    }

    /* ═══ MENU ═══ */
    #menu {
      background: linear-gradient(180deg, var(--bg) 0%, #0c0b09 100%);
      border-top: 1px solid var(--border);
    }

    .menu-images {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .menu-img-wrap {
      position: relative;
      border: 1px solid var(--border);
      overflow: hidden;
      background: #111;
    }

    .menu-img-wrap img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform .5s ease;
    }

    .menu-img-wrap:hover img {
      transform: scale(1.03);
    }

    .menu-img-label {
      position: absolute;
      top: 0;
      left: 0;
      background: rgba(0, 0, 0, .78);
      backdrop-filter: blur(4px);
      padding: 7px 14px;
      font-size: 11px;
      letter-spacing: .15em;
      color: var(--gold);
      border-bottom: 1px solid var(--border);
      border-right: 1px solid var(--border);
    }

    /* ═══ LUNCH ═══ */
    #lunch {
      background: #0a0a08;
      border-top: 1px solid var(--border);
    }

    .lunch-time {
      text-align: center;
      font-size: 12px;
      letter-spacing: .2em;
      color: var(--muted);
      margin-top: -42px;
      margin-bottom: 48px;
    }

    .lunch-items {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 48px;
    }

    .lunch-item-sub {
      font-size: 11px;
      color: var(--muted);
      letter-spacing: .04em;
      margin-bottom: 4px;
    }

    .lunch-item-desc {
      font-size: 11.5px;
      color: var(--muted);
      letter-spacing: .03em;
      line-height: 1.7;
      margin-top: 8px;
    }

    .day-price {
      font-size: 13px;
      color: var(--gold);
      text-align: right;
      white-space: nowrap;
      padding-left: 16px;
    }

    .lunch-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    /* Fixed lunch items */
    .lunch-fixed {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .lunch-item {
      border: 1px solid var(--border);
      padding: 18px 22px;
      background: rgba(255, 255, 255, .02);
      transition: border-color .25s;
    }

    .lunch-item:hover {
      border-color: rgba(201, 162, 39, .4);
    }

    .lunch-item-name {
      font-size: 15px;
      font-weight: 700;
      color: var(--white);
      letter-spacing: .06em;
      margin-bottom: 3px;
    }

    .lunch-item-note {
      font-size: 11px;
      color: var(--muted);
      letter-spacing: .04em;
      margin-bottom: 7px;
      line-height: 1.6;
    }

    .lunch-item-price {
      font-size: 14px;
      color: var(--gold);
      font-weight: 700;
      letter-spacing: .05em;
    }

    .extras-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
      margin-top: 28px;
    }

    .extras-block h4 {
      font-size: 11px;
      letter-spacing: .2em;
      color: var(--gold);
      margin-bottom: 10px;
      padding-bottom: 7px;
      border-bottom: 1px solid var(--border);
      font-weight: 700;
    }

    .extras-list {
      list-style: none;
    }

    .extras-list li {
      display: flex;
      justify-content: space-between;
      font-size: 11.5px;
      color: var(--muted);
      padding: 5px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .03);
      letter-spacing: .03em;
    }

    .extras-list li span {
      color: #fff;
    }

    /* Daily lunch */
    .daily-head {
      display: flex;
      align-items: baseline;
      gap: 14px;
      margin-bottom: 5px;
    }

    .daily-title {
      font-size: 20px;
      font-weight: 700;
      color: var(--white);
      letter-spacing: .1em;
    }

    .daily-price {
      font-size: 12px;
      color: var(--gold);
      letter-spacing: .05em;
    }

    .daily-note {
      font-size: 11px;
      color: var(--muted);
      margin-bottom: 18px;
      letter-spacing: .04em;
    }

    .daily-table {
      width: 100%;
      border-collapse: collapse;
    }

    .daily-table tr {
      border-bottom: 1px solid rgba(255, 255, 255, .06);
      transition: background .18s;
    }

    .daily-table tr:hover {
      background: rgba(201, 162, 39, .04);
    }

    .daily-table td {
      padding: 15px 10px;
      vertical-align: middle;
    }

    .day-label {
      font-size: 22px;
      font-weight: 700;
      color: var(--gold);
      width: 46px;
      text-align: center;
    }

    .day-menu {
      font-size: 13.5px;
      color: var(--white);
      letter-spacing: .05em;
      line-height: 1.65;
    }

    .day-menu small {
      display: block;
      font-size: 11px;
      color: var(--muted);
      margin-top: 2px;
    }

    /* ═══ NEWS ═══ */
    #news {
      background: #0a0a0a;
      border-top: 1px solid var(--border);
    }

    .news-list {
      display: flex;
      flex-direction: column;
    }

    .news-row {
      display: flex;
      align-items: flex-start;
      gap: 22px;
      padding: 20px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .05);
      cursor: pointer;
    }

    .news-row:first-child {
      border-top: 1px solid rgba(255, 255, 255, .05);
    }

    .news-row:hover .news-row-title {
      color: var(--gold);
    }

    .news-row-date {
      flex-shrink: 0;
      font-size: 11px;
      letter-spacing: .08em;
      color: #555;
      min-width: 90px;
      padding-top: 2px;
    }

    .news-row-tag {
      flex-shrink: 0;
      font-size: 9px;
      letter-spacing: .15em;
      border: 1px solid rgba(201, 162, 39, .5);
      color: var(--gold);
      padding: 3px 8px;
      text-transform: uppercase;
      align-self: flex-start;
    }

    .news-row-title {
      font-size: 13.5px;
      line-height: 1.65;
      color: var(--white);
      transition: color .22s;
      letter-spacing: .04em;
    }

    /* ═══ RECRUIT ═══ */
    #recruit {
      background-image: url('img/recruit.jpg');
      background-size: cover;
      background-position: center 30%;
      position: relative;
    }
    #recruit::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, .72);
    }
    #recruit .container {
      position: relative;
    }
    .recruit-wrap {
      max-width: 720px;
      margin: 0 auto;
    }
    .recruit-job-title {
      font-size: clamp(18px, 2.5vw, 24px);
      font-weight: 700;
      letter-spacing: .08em;
      color: var(--white);
      margin-bottom: 20px;
      text-align: center;
    }
    .recruit-hiring {
      font-size: clamp(28px, 5vw, 44px);
      font-weight: 700;
      letter-spacing: .2em;
      color: var(--gold);
      text-align: center;
      margin-bottom: 24px;
    }
    .recruit-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      margin-bottom: 40px;
    }
    .recruit-tag {
      font-size: 11px;
      letter-spacing: .12em;
      color: var(--gold);
      border: 1px solid var(--gold);
      padding: 4px 12px;
    }
    .recruit-dl {
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 0;
      border-top: 1px solid var(--border);
      margin-bottom: 40px;
    }
    .recruit-dl dt,
    .recruit-dl dd {
      padding: 18px 12px;
      border-bottom: 1px solid var(--border);
      font-size: 13px;
      line-height: 1.8;
      letter-spacing: .05em;
    }
    .recruit-dl dt {
      font-size: 11px;
      letter-spacing: .2em;
      color: var(--gold);
      font-weight: 700;
    }
    .recruit-dl dd small {
      font-size: 11px;
      color: #888;
      display: block;
      margin-top: 6px;
    }
    .recruit-btn-row {
      text-align: center;
    }
    .recruit-btn {
      display: inline-block;
      padding: 14px 56px;
      border: 1px solid var(--gold);
      color: var(--gold);
      text-decoration: none;
      font-family: inherit;
      font-size: 13px;
      letter-spacing: .3em;
      transition: background .25s, color .25s;
    }
    .recruit-btn:hover {
      background: var(--gold);
      color: #000;
    }
    @media (max-width: 600px) {
      .recruit-dl {
        grid-template-columns: 1fr;
      }
      .recruit-dl dt {
        padding-bottom: 4px;
        border-bottom: none;
      }
      .recruit-dl dd {
        padding-top: 4px;
      }
    }

    /* ═══ ACCESS ═══ */
    #access {
      background: linear-gradient(180deg, #0c0b09, var(--bg));
      border-top: 1px solid var(--border);
    }

    .access-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 52px;
      align-items: start;
    }

    .map-frame {
      width: 100%;
      aspect-ratio: 4/3;
      border: 1px solid var(--border);
      overflow: hidden;
      background: #111;
    }

    .map-frame iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
      filter: none;
    }

    .map-link-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 12px;
      padding: 10px 18px;
      border: 1px solid var(--border);
      color: var(--gold);
      text-decoration: none;
      font-size: 12px;
      letter-spacing: .12em;
      transition: border-color .25s, background .25s;
    }

    .map-link-btn:hover {
      border-color: var(--gold);
      background: rgba(201, 162, 39, .06);
    }

    .store-info h3 {
      font-size: 22px;
      font-weight: 700;
      color: var(--white);
      letter-spacing: .12em;
      margin-bottom: 22px;
    }

    .info-table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 26px;
    }

    .info-table tr {
      border-bottom: 1px solid rgba(255, 255, 255, .05);
    }

    .info-table td {
      padding: 12px 0;
      vertical-align: top;
    }

    .info-table td:first-child {
      font-size: 11px;
      letter-spacing: .12em;
      color: var(--gold);
      width: 76px;
      padding-right: 14px;
      font-weight: 700;
    }

    .info-table td:last-child {
      font-size: 13px;
      color: #bbb;
      letter-spacing: .04em;
      line-height: 1.8;
    }

    /* ═══ 404 ═══ */
    .notfound {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: calc(100vh - var(--hd) - var(--rsv));
      padding: 60px 20px;
    }

    .notfound-inner {
      text-align: center;
      max-width: 480px;
    }

    .notfound-code {
      display: block;
      font-family: 'Cinzel', serif;
      font-size: clamp(80px, 15vw, 140px);
      font-weight: 900;
      letter-spacing: .1em;
      color: transparent;
      -webkit-text-stroke: 1px var(--gold);
      line-height: 1;
      margin-bottom: 24px;
    }

    .notfound-rule {
      width: 40px;
      height: 1px;
      background: var(--gold);
      margin: 0 auto 28px;
    }

    .notfound-title {
      font-size: clamp(18px, 3vw, 24px);
      font-weight: 700;
      letter-spacing: .1em;
      margin-bottom: 20px;
    }

    .notfound-desc {
      font-size: 13px;
      color: rgba(255,255,255,.55);
      line-height: 2;
      letter-spacing: .05em;
      margin-bottom: 40px;
    }

    .notfound-btn {
      display: inline-block;
      padding: 14px 48px;
      border: 1px solid var(--gold);
      color: var(--gold);
      text-decoration: none;
      font-family: 'Noto Serif JP', serif;
      font-size: 13px;
      letter-spacing: .25em;
      transition: background .25s, color .25s;
    }

    .notfound-btn:hover {
      background: var(--gold);
      color: #000;
    }

    /* ═══ FOOTER ═══ */
    footer {
      background: #050505;
      border-top: 1px solid var(--border);
      padding: 36px 0 32px;
      text-align: center;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      font-family: 'Noto Serif JP', serif;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: .2em;
      color: var(--gold);
      margin-bottom: 6px;
    }

    .footer-logo img {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      object-fit: cover;
      border: 1px solid var(--border);
    }

    .footer-sub {
      font-size: 10px;
      letter-spacing: .2em;
      color: #444;
      margin-bottom: 20px;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 26px;
      margin-bottom: 16px;
      flex-wrap: wrap;
    }

    .footer-links a {
      font-size: 11px;
      letter-spacing: .08em;
      color: #484848;
      text-decoration: none;
      transition: color .2s;
    }

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

    .footer-credit {
      font-size: 10px;
      color: #383838;
      letter-spacing: .06em;
      line-height: 1.85;
    }

    /* ═══ HAMBURGER / DRAWER ═══ */
    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      z-index: 901;
    }

    .nav-toggle span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--white);
      border-radius: 1px;
      transition: transform .32s cubic-bezier(.4, 0, .2, 1), opacity .32s;
    }

    .nav-toggle.open span:nth-child(1) {
      transform: translateY(6.5px) rotate(45deg);
      background: var(--gold);
    }

    .nav-toggle.open span:nth-child(2) {
      opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
      transform: translateY(-6.5px) rotate(-45deg);
      background: var(--gold);
    }

    .nav-drawer {
      display: none;
      position: fixed;
      top: var(--hd);
      left: 0;
      width: 100%;
      height: calc(100dvh - var(--hd));
      background: rgba(5, 5, 5, .98);
      backdrop-filter: blur(18px);
      z-index: 880;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 36px;
      transform: translateX(100%);
      transition: transform .38s cubic-bezier(.4, 0, .2, 1);
      border-top: 1px solid var(--border);
    }

    .nav-drawer.open {
      transform: translateX(0);
    }

    .nav-drawer a {
      font-family: 'Noto Serif JP', serif;
      font-size: 22px;
      font-weight: 500;
      letter-spacing: .22em;
      color: var(--muted);
      text-decoration: none;
      transition: color .22s;
    }

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

    .drawer-sub-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      margin-top: -16px;
    }

    .drawer-sub-links .drawer-sub {
      font-size: 15px;
      letter-spacing: .18em;
      color: rgba(255, 255, 255, .75);
      border-bottom: 1.5px solid rgba(201, 162, 39, 1);
      padding-bottom: 2px;
    }

    .drawer-sub-links .drawer-sub:hover {
      color: var(--gold);
      border-bottom-color: var(--gold);
    }

    /* ═══ MODAL ═══ */
    .modal-bg {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .87);
      backdrop-filter: blur(6px);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      visibility: hidden;
      transition: opacity .3s, visibility .3s;
    }

    .modal-bg.open {
      opacity: 1;
      visibility: visible;
    }

    .modal-box {
      background: #131313;
      border: 1px solid var(--border);
      position: relative;
      transform: translateY(18px);
      transition: transform .32s;
      max-height: 90vh;
      overflow-y: auto;
      max-width: 560px;
      width: 100%;
      padding: 52px 44px;
    }

    .modal-bg.open .modal-box {
      transform: translateY(0);
    }

    .modal-x {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 32px;
      height: 32px;
      background: rgba(255, 255, 255, .07);
      border: none;
      color: var(--muted);
      font-size: 15px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s, color .2s;
    }

    .modal-x:hover {
      background: var(--gold);
      color: #000;
    }

    .nm-date {
      font-size: 11px;
      letter-spacing: .2em;
      color: var(--gold);
      margin-bottom: 14px;
    }

    .nm-title {
      font-size: 18px;
      font-weight: 700;
      line-height: 1.55;
      color: var(--white);
      margin-bottom: 20px;
      letter-spacing: .04em;
    }

    .nm-body {
      font-size: 13px;
      line-height: 2;
      color: var(--muted);
      letter-spacing: .04em;
    }

    /* ═══ TOAST ═══ */
    #toast {
      position: fixed;
      bottom: calc(var(--rsv) + 16px);
      left: 50%;
      transform: translateX(-50%) translateY(12px);
      background: var(--gold);
      color: #000;
      padding: 12px 28px;
      font-size: 11px;
      letter-spacing: .18em;
      opacity: 0;
      pointer-events: none;
      z-index: 2000;
      transition: opacity .3s, transform .3s;
      white-space: nowrap;
    }

    #toast.show {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    /* ═══ MENU LIGHTBOX ═══ */
    .menu-img-wrap {
      cursor: zoom-in;
    }

    .menu-img-wrap::after {
      content: '拡大';
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: rgba(0, 0, 0, .65);
      color: var(--gold);
      font-size: 10px;
      letter-spacing: .18em;
      padding: 5px 10px;
      border: 1px solid var(--border);
      opacity: 0;
      transition: opacity .25s;
    }

    .menu-img-wrap:hover::after {
      opacity: 1;
    }

    #lightbox {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .92);
      backdrop-filter: blur(8px);
      z-index: 1100;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      visibility: hidden;
      transition: opacity .3s, visibility .3s;
      cursor: zoom-out;
    }

    #lightbox.open {
      opacity: 1;
      visibility: visible;
    }

    #lightbox img {
      max-width: 92vw;
      max-height: 90vh;
      object-fit: contain;
      transform: scale(.92);
      transition: transform .32s ease;
      cursor: default;
    }

    #lightbox.open img {
      transform: scale(1);
    }

    #lightbox-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, .1);
      border: none;
      color: #fff;
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s;
      z-index: 2;
    }

    #lightbox-close:hover {
      background: var(--gold);
      color: #000;
    }

    /* ═══════════════════════════════════════════════
       SNS
    ══════════════════════════════════════════════════ */
    #sns {
      background: var(--bg);
      border-top: 1px solid var(--border);
    }

    .sns-row {
      display: flex;
      justify-content: center;
      gap: 22px;
      flex-wrap: wrap;
      margin-bottom: 44px;
    }

    .sns-btn {
      width: 76px;
      height: 76px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: rgba(255, 255, 255, .025);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      text-decoration: none;
      position: relative;
      overflow: hidden;
      transition: transform .3s, border-color .3s;
    }

    .sns-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      opacity: 0;
      transition: opacity .3s;
    }

    .sns-btn:hover {
      transform: translateY(-5px);
      border-color: transparent;
    }

    .sns-btn:hover::before {
      opacity: 1;
    }

    .sns-btn.sn-x::before {
      background: #1a1a1a;
    }

    .sns-btn.sn-ig::before {
      background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    }

    .sns-btn.sn-tt::before {
      background: #010101;
    }

    .sns-btn.sn-yt::before {
      background: #FF0000;
    }

    .sns-btn svg {
      width: 22px;
      height: 22px;
      fill: var(--muted);
      position: relative;
      z-index: 1;
      transition: fill .3s;
    }

    .sns-btn:hover svg {
      fill: var(--white);
    }

    .sns-btn-lbl {
      font-size: 8px;
      letter-spacing: .1em;
      color: var(--muted);
      position: relative;
      z-index: 1;
      transition: color .3s;
    }

    .sns-btn:hover .sns-btn-lbl {
      color: var(--white);
    }

    .share-block {
      text-align: center;
      padding-top: 36px;
      border-top: 1px solid rgba(255, 255, 255, .05);
    }

    .share-eyebrow {
      font-family: 'Cinzel', serif;
      font-size: 13px;
      letter-spacing: .2em;
      color: var(--muted);
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .copy-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: rgba(255, 255, 255, .04);
      border: 1px solid var(--border);
      color: var(--muted);
      padding: 13px 26px;
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      cursor: pointer;
      transition: border-color .25s, color .25s;
    }

    .copy-btn:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    /* ═══ RESPONSIVE TABLET ═══ */
    @media (max-width: 1024px) {
      #header {
        padding: 0 28px;
      }

      .container {
        padding: 0 28px;
      }

      .lunch-items {
        grid-template-columns: 1fr;
      }

      .lunch-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .access-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
      }
    }

    /* ═══ RESPONSIVE SMARTPHONE ═══ */
    @media (max-width: 767px) {
      :root {
        --hd: 56px;
        --rsv: 52px;
      }

      #header {
        padding: 0 16px;
      }

      nav {
        display: none;
      }

      .nav-toggle {
        display: flex;
      }

      .nav-drawer {
        display: flex;
      }

      .logo-text {
        font-size: 15px;
      }

      #fv {
        flex-direction: column;
        height: auto;
        min-height: unset;
      }

      .fv-hero {
        flex: none;
        width: 100%;
        height: auto;
        min-height: 380px;
      }

      .fv-title {
        font-size: clamp(22px, 6.5vw, 32px);
        letter-spacing: .1em;
      }

      .fv-desc {
        font-size: 12px;
        line-height: 1.9;
      }

      .fv-content {
        padding: 32px 30px;
      }

      .sns-circles {
        gap: 18px;
      }

      .sns-circle-icon {
        width: 70px;
        height: 70px;
      }

      .sns-circle svg {
        width: 22px;
        height: 22px;
      }

      .fv-side {
        flex: none;
        width: 100%;
        border-left: none;
        border-top: 1px solid var(--border);
      }

      section {
        padding: 56px 0;
      }

      .container {
        padding: 0 16px;
      }

      .sec-head {
        margin-bottom: 36px;
      }

      .lunch-time {
        margin-top: 0;
      }

      .menu-images {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .extras-wrap {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .access-wrap {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .modal-bg {
        padding: 0;
        align-items: flex-end;
      }

      .modal-box {
        max-height: 92dvh;
        transform: translateY(100%);
        border-radius: 14px 14px 0 0;
        border-bottom: none;
        padding: 36px 20px 28px;
      }

      .modal-bg.open .modal-box {
        transform: translateY(0);
      }

      .reserve-text {
        font-size: 13px;
        letter-spacing: .2em;
      }

      /* ── SNS ── */
      .sns-btn {
        width: 64px;
        height: 64px;
        gap: 5px;
      }

      .sns-btn svg {
        width: 20px;
        height: 20px;
      }

      .sns-btn-lbl {
        font-size: 7.5px;
      }

      .sns-row {
        gap: 14px;
        margin-bottom: 36px;
      }

      .copy-btn {
        font-size: 12px;
        padding: 12px 20px;
      }

      .contact-form {
        max-width: 640px;
      }
    }

    /* ═══ CONTACT ═══ */
    #contact {
      background: #0a0a08;
      border-top: 1px solid var(--border);
    }

    .contact-lead {
      text-align: center;
      font-size: 12px;
      color: var(--muted);
      letter-spacing: .1em;
      margin-top: -36px;
      margin-bottom: 48px;
    }

    .contact-form {
      max-width: 640px;
      margin: 0 auto;
    }

    .contact-row {
      margin-bottom: 22px;
    }

    .contact-label {
      display: block;
      font-size: 11px;
      letter-spacing: .2em;
      color: var(--gold);
      margin-bottom: 8px;
      font-weight: 700;
    }

    .contact-required {
      display: inline-block;
      font-size: 9px;
      letter-spacing: .1em;
      color: #e05555;
      margin-left: 8px;
      border: 1px solid #e05555;
      padding: 1px 5px;
      vertical-align: middle;
    }

    .contact-input,
    .contact-select,
    .contact-textarea {
      width: 100%;
      background: rgba(255, 255, 255, .03);
      border: 1px solid var(--border);
      color: var(--white);
      font-family: inherit;
      font-size: 14px;
      padding: 12px 14px;
      letter-spacing: .05em;
      transition: border-color .25s;
      box-sizing: border-box;
    }

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

    .contact-input::placeholder,
    .contact-textarea::placeholder {
      color: rgba(255, 255, 255, .2);
    }

    .contact-select {
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23c9a227' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      cursor: pointer;
    }

    .contact-select option {
      background: #0a0a08;
    }

    .contact-textarea {
      resize: vertical;
      min-height: 140px;
      line-height: 1.7;
    }

    .contact-privacy {
      font-size: 11px;
      color: var(--muted);
      letter-spacing: .05em;
      margin-top: 28px;
      padding-top: 20px;
      border-top: 1px solid var(--border);
      text-align: center;
    }

    .contact-privacy-link {
      color: var(--gold);
      text-decoration: underline;
      text-underline-offset: 3px;
      cursor: pointer;
      background: none;
      border: none;
      font: inherit;
      font-size: inherit;
      letter-spacing: inherit;
      padding: 0;
    }

    /* ── Privacy Policy Modal ── */
    .pp-modal-bg {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .75);
      z-index: 9000;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .pp-modal-bg.open {
      display: flex;
    }

    .pp-modal-box {
      background: #111;
      border: 1px solid var(--border);
      max-width: 680px;
      width: 100%;
      max-height: 82dvh;
      display: flex;
      flex-direction: column;
    }

    .pp-modal-header {
      padding: 28px 32px 20px;
      border-bottom: 1px solid var(--border);
      flex-shrink: 0;
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 16px;
    }

    .pp-modal-title {
      font-size: 16px;
      font-weight: 700;
      letter-spacing: .1em;
      color: var(--white);
    }

    .pp-modal-close {
      background: none;
      border: none;
      color: var(--muted);
      font-size: 20px;
      cursor: pointer;
      line-height: 1;
      padding: 0;
      flex-shrink: 0;
      transition: color .2s;
    }

    .pp-modal-close:hover {
      color: var(--white);
    }

    .pp-modal-body {
      padding: 28px 32px 32px;
      overflow-y: auto;
      font-size: 12.5px;
      color: rgba(255, 255, 255, .68);
      line-height: 1.95;
      letter-spacing: .04em;
    }

    .pp-modal-body h3 {
      font-size: 11px;
      letter-spacing: .2em;
      color: var(--gold);
      margin: 28px 0 8px;
      font-weight: 700;
    }

    .pp-modal-body h3:first-child {
      margin-top: 0;
    }

    .pp-modal-body p {
      margin-bottom: 4px;
    }

    .pp-modal-body ul {
      padding-left: 1.4em;
      margin-bottom: 4px;
    }

    @media (max-width: 768px) {
      .pp-modal-header { padding: 20px; }
      .pp-modal-body { padding: 20px; }
    }

    .contact-btn-row {
      text-align: center;
      margin-top: 32px;
    }

    .contact-btn {
      display: inline-block;
      padding: 14px 64px;
      background: transparent;
      border: 1px solid var(--gold);
      color: var(--gold);
      font-family: 'Noto Serif JP', serif;
      font-size: 13px;
      letter-spacing: .3em;
      cursor: pointer;
      transition: background .25s, color .25s;
    }

    .contact-btn:hover {
      background: var(--gold);
      color: #000;
    }

    /* ═══ COURSE ═══ */
    #course {
      background: #080808;
      border-top: 1px solid var(--border);
    }

    #lunch-course,
    #dinner-course {
      scroll-margin-top: calc(var(--hd) + 40px);
    }

    /* ── Lunch Course Card ── */
    .lc-card {
      display: grid;
      grid-template-columns: 5fr 6fr;
      border: 1px solid var(--border);
      overflow: hidden;
    }

    .lc-img {
      overflow: hidden;
    }

    .lc-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .6s ease;
    }

    .lc-card:hover .lc-img img {
      transform: scale(1.04);
    }

    .lc-body {
      padding: 40px 44px;
    }

    .lc-tag {
      font-size: 10px;
      letter-spacing: .35em;
      color: var(--gold);
      display: block;
      margin-bottom: 10px;
    }

    .lc-name {
      font-size: 26px;
      font-weight: 700;
      letter-spacing: .08em;
      margin-bottom: 10px;
    }

    .lc-catch {
      font-size: 12px;
      color: var(--muted);
      letter-spacing: .06em;
      margin-bottom: 26px;
      padding-bottom: 22px;
      border-bottom: 1px solid var(--border);
    }

    .lc-menu {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 13px;
      margin-bottom: 26px;
    }

    .lc-menu li {
      display: flex;
      align-items: baseline;
      gap: 14px;
      font-size: 14px;
      color: var(--white);
      letter-spacing: .04em;
    }

    .lc-step {
      font-size: 10px;
      letter-spacing: .12em;
      color: var(--gold);
      border: 1px solid rgba(201, 162, 39, .35);
      padding: 3px 9px;
      white-space: nowrap;
      text-align: center;
      min-width: 66px;
      flex-shrink: 0;
    }

    .course-caution {
      font-size: 10px;
      color: var(--muted);
      letter-spacing: .04em;
      line-height: 1.8;
      border-top: 1px solid var(--border);
      padding-top: 16px;
    }

    .course-price {
      font-size: 20px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: .05em;
      margin-bottom: 8px;
    }

    .course-nomihoudai {
      font-size: 12px;
      font-weight: 400;
      color: var(--muted);
      letter-spacing: .04em;
    }

    /* ── Dinner Courses ── */
    .dc-wrap {
      margin-top: 80px;
    }

    .dc-fixed-img {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      margin-bottom: 36px;
    }

    .dc-fixed-img img {
      width: 100%;
      height: 340px;
      object-fit: cover;
      display: block;
    }

    .dc-badge-inline {
      display: inline-block;
      background: rgba(0, 0, 0, .72);
      border: 1px solid var(--gold);
      color: var(--gold);
      font-size: 10px;
      letter-spacing: .2em;
      padding: 3px 10px;
      vertical-align: middle;
      font-weight: 400;
    }

    .dc-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }

    .dc-dots {
      display: none;
    }

    .dc-card {
      border: 1px solid var(--border);
      overflow: hidden;
      background: rgba(255, 255, 255, .02);
      transition: border-color .25s;
      display: flex;
      flex-direction: column;
    }

    .dc-card:hover {
      border-color: rgba(201, 162, 39, .45);
    }

    .dc-card-img {
      position: relative;
      aspect-ratio: 16/9;
      overflow: hidden;
    }

    .dc-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .6s ease;
    }

    .dc-card:hover .dc-card-img img {
      transform: scale(1.04);
    }

    .dc-badge {
      position: absolute;
      bottom: 12px;
      right: 12px;
      background: rgba(0, 0, 0, .72);
      border: 1px solid var(--gold);
      color: var(--gold);
      font-size: 10px;
      letter-spacing: .2em;
      padding: 4px 12px;
    }

    .dc-card-body {
      padding: 22px 24px 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .dc-card-name {
      font-size: 18px;
      font-weight: 700;
      letter-spacing: .08em;
      margin-bottom: 6px;
    }

    .dc-card-catch {
      font-size: 11px;
      color: var(--gold);
      letter-spacing: .06em;
      margin-bottom: 18px;
    }

    .dc-menu {
      list-style: none;
      border-top: 1px solid var(--border);
      padding-top: 16px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex: 1;
      margin-bottom: 16px;
    }

    .dc-menu li {
      display: flex;
      gap: 10px;
      font-size: 12.5px;
      color: var(--white);
      letter-spacing: .04em;
      line-height: 1.5;
    }

    .dc-num {
      color: var(--gold);
      font-weight: 700;
      font-size: 11px;
      min-width: 14px;
      padding-top: 1px;
      flex-shrink: 0;
    }

    .dc-sub {
      display: block;
      font-size: 10.5px;
      color: var(--muted);
      margin-top: 4px;
      line-height: 1.6;
    }

    /* ── SP Slider Dots ── */
    .dc-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 22px;
    }

    .dc-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .15);
      border: 1px solid rgba(201, 162, 39, .3);
      padding: 0;
      cursor: pointer;
      transition: background .25s, border-color .25s;
    }

    .dc-dot.active {
      background: var(--gold);
      border-color: var(--gold);
    }

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

      .lc-img {
        aspect-ratio: 16/9;
      }

      .lc-body {
        padding: 24px 20px;
      }

      .lc-name {
        font-size: 20px;
      }

      .dc-wrap {
        margin-top: 56px;
      }

      .dc-grid {
        grid-template-columns: 1fr;
      }
    }
  