    :root {
      --bg-page: #f7f1e7;
      --bg-panel: #fffaf3;
      --bg-panel-soft: #f1e3d2;
      --ink-main: #3c2b28;
      --ink-sub: #7b6a63;
      --accent-red: #b33a3a;
      --accent-red-soft: #e8c1c1;
      --accent-gold: #c49a45;
      --border-soft: #e1d2c4;
      --shadow-soft: 0 10px 28px rgba(0,0,0,0.12);
      --radius-lg: 18px;
      --radius-md: 12px;
      --radius-pill: 999px;
      --max-width: 1080px;
      --transition-fast: 0.18s ease-out;
    }

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

    html, body {
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink-main);
  scroll-behavior: smooth;

  /* ベースの深い赤 */
  background-color: #3a0005;

  /* 菱形模様 ＋ 光のグラデーション */
  background-image:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.07), rgba(0, 0, 0, 0.6)),
    radial-gradient(circle, rgba(213, 215, 100, 0.426) 1px, transparent 1px),
    radial-gradient(circle, rgba(215, 180, 100, 0.426) 1px, transparent 1px);

  /* 菱形サイズ */
  background-size:
    100% 100%,
    22px 22px,
    22px 22px;

  /* 菱形の位置をズラして重ねる → 菱形模様になる */
  background-position:
    0 0,
    0 0,
    11px 11px;

  background-attachment: fixed;
}

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    body {
      min-height: 100vh;
    }

    .wrap {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 16px;
    }

    /* ---------------- Header ---------------- */

    .site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-top: env(safe-area-inset-top);

  /* 高級感のある赤 × 黒のグラデーション */
  background: linear-gradient(
    to bottom,
    rgba(70, 0, 10, 0.92),
    rgba(45, 0, 10, 0.92)
  );

  backdrop-filter: blur(6px);

  /* 金系と相性の良い深めのライン */
  border-bottom: 1px solid rgba(180, 150, 120, 0.35);
}


    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 0;
    }

    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 240, 200, 0.55), transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(190, 140, 80, 0.45), transparent 60%),
    #5a0010; /* 深い赤（ロゴ背景） */
  
  border: 2px solid rgba(230, 200, 160, 0.8); /* ゴールドの縁 */
  box-shadow: 0 0 6px rgba(0,0,0,0.4), inset 0 0 4px rgba(255,255,255,0.2);
  position: relative;
}

.logo-mark::after {
  content: "馨";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1.1rem;

  /* 明るすぎず暗すぎない金色 */
  color: #f4e7bb;
  text-shadow: 0 0 6px rgba(0,0,0,0.4);
}

/* 店名（黒すぎ問題を軽減し、上品な金系に寄せる） */
.logo-text-main {
  font-family: "Noto Serif JP", serif;
  font-size: 1.1rem;
  letter-spacing: .12em;
  color: #f5e7c8;  /* 上品な薄金色 */
}

/* サブテキストの色も背景に馴染ませる */
.logo-text-sub {
  font-size: 0.72rem;
  color: #d4c7a6; /* 柔らかい金ベージュ */
  letter-spacing: .16em;
}


    .nav {
      display: flex;
      align-items: center;
      gap: 18px;
      font-size: 0.86rem;
    }

    .nav-link {
      position: relative;
      padding-bottom: 2px;
      color: var(--ink-sub);
      cursor: pointer;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: var(--accent-red);
      transition: width var(--transition-fast);
    }

    .nav-link:hover {
      color: var(--accent-red);
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .nav-cta {
      padding: 7px 16px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(179,58,58,0.7);
      background: linear-gradient(to bottom, #fff8ec, #f1d3bf);
      font-size: 0.84rem;
      font-weight: 500;
      color: #5a2626;
      box-shadow: 0 6px 16px rgba(0,0,0,0.15);
      cursor: pointer;
      white-space: nowrap;
      transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    }

    .nav-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    }

    .nav-toggle {
      display: none;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid rgba(140, 40, 40, 0.5);
      background: #fdf4e7;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      position: relative;
    }

    .nav-toggle-line,
    .nav-toggle::before,
    .nav-toggle::after {
      content: "";
      position: absolute;
      width: 18px;
      height: 2px;
      border-radius: 2px;
      background: #5c302b;
      transition: transform .18s ease-out, opacity .18s ease-out, top .18s ease-out, bottom .18s ease-out;
    }

    .nav-toggle-line {
      transform: translateY(0);
    }

    .nav-toggle::before {
      top: 10px;
    }

    .nav-toggle::after {
      bottom: 10px;
    }

    .nav-toggle.is-open .nav-toggle-line {
      opacity: 0;
    }

    .nav-toggle.is-open::before {
      top: 15px;
      transform: rotate(45deg);
    }

    .nav-toggle.is-open::after {
      bottom: 15px;
      transform: rotate(-45deg);
    }

    @media (max-width: 768px) {
      .nav {
        display: none;
      }
      .nav-toggle {
        display: flex;
      }
      .nav.is-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 56px 12px auto 12px;
        padding: 12px;
        border-radius: 14px;
        background: #fff9ef;
        box-shadow: 0 16px 36px rgba(0,0,0,0.25);
      }
      .nav.is-open .nav-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
      }
    }

    /* ---------------- Hero（バナー＋カード） ---------------- */

    .hero {
      padding: 0 0 28px;
    }

    .hero-banner {
      width: 100%;
      height: 260px;
      background:
        linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.18)),
        url("tennai.jpeg")
        center/cover no-repeat;
      position: relative;
    }

    .hero-banner-label {
      position: absolute;
      right: 16px;
      bottom: 12px;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(0,0,0,0.65);
      color: #fffaf0;
      font-size: 0.78rem;
    }

    .hero-inner {
      margin-top: -60px; /* バナーに少しかぶせる */
    }

    .hero-copy {
      background: var(--bg-panel);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-soft);
      padding: 20px 20px 18px;
      max-width: 780px;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
    }

    .hero-copy::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background-image: linear-gradient(135deg, rgba(196,154,69,0.12), transparent 60%);
      pointer-events: none;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 9px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(179,58,58,0.35);
      background: #fff5ed;
      font-size: 0.78rem;
      color: #8a3434;
      position: relative;
      z-index: 1;
      margin-bottom: 10px;
    }

    .hero-tag-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent-red);
    }

    .hero-title {
      font-family: "Noto Serif JP", serif;
      font-size: 1.8rem;
      line-height: 1.7;
      letter-spacing: .12em;
      margin-bottom: 10px;
      position: relative;
      z-index: 1;
    }

    .hero-title span {
      color: var(--accent-red);
    }

    .hero-lead {
      font-size: 0.96rem;
      line-height: 1.9;
      color: var(--ink-sub);
      position: relative;
      z-index: 1;
    }

    .hero-meta {
      margin-top: 14px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 6px 16px;
      font-size: 0.83rem;
      position: relative;
      z-index: 1;
    }

    .hero-meta-label {
      color: var(--accent-gold);
      margin-right: 4px;
    }

    .hero-ctas {
      margin-top: 14px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      position: relative;
      z-index: 1;
    }

    .btn-main {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 9px 18px;
      border-radius: var(--radius-pill);
      background: linear-gradient(to bottom, #c04545, #8f2c2c);
      color: #fff7e7;
      font-size: 0.9rem;
      border: none;
      cursor: pointer;
      box-shadow: 0 8px 18px rgba(0,0,0,0.32);
      transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
      white-space: nowrap;
    }

    .btn-main:hover {
      transform: translateY(-1px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.4);
      opacity: 0.96;
    }

    .btn-sub {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 14px;
      border-radius: var(--radius-pill);
      border: 1px solid var(--border-soft);
      background: #fffaf3;
      font-size: 0.86rem;
      color: var(--ink-sub);
      cursor: pointer;
      transition: background var(--transition-fast), border-color var(--transition-fast);
    }

    .btn-sub:hover {
      background: #f4e4d3;
      border-color: #d2b491;
    }

    .hero-note {
      margin-top: 10px;
      font-size: 0.78rem;
      color: var(--ink-sub);
      background: #fff4e4;
      border-radius: var(--radius-md);
      padding: 8px 10px;
      border: 1px dashed rgba(179,58,58,0.3);
      position: relative;
      z-index: 1;
    }

    .map-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9比率・レスポンシブ */
}

.map-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

    @media (max-width: 600px) {
      .hero-banner {
        height: 200px;
      }
      .hero-inner {
        margin-top: -40px;
      }
      .hero-copy {
        padding: 16px 14px 14px;
      }
      .hero-title {
        font-size: 1.5rem;
      }
      .hero-meta {
        grid-template-columns: minmax(0,1fr);
      }
    }

    /* ---------------- Section base ---------------- */

    section {
      padding: 8px 0 6px;
      scroll-margin-top: 90px;
    }

    .section-inner {
      margin: 0 auto 14px;
      background: var(--bg-panel);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-soft);
      padding: 18px 18px 16px;
    }

    .sec-head {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      align-items: flex-end;
      margin-bottom: 12px;
      border-bottom: 1px solid #e0d3c4;
      padding-bottom: 6px;
    }

    .sec-title-main {
      font-family: "Noto Serif JP", serif;
      font-size: 1.2rem;
      letter-spacing: 0.14em;
    }

    .sec-title-sub {
      font-size: 0.75rem;
      letter-spacing: 0.18em;
      color: var(--accent-gold);
      text-transform: uppercase;
    }

    .sec-caption {
      font-size: 0.78rem;
      color: var(--ink-sub);
      text-align: right;
    }

    @media (max-width: 640px) {
      .section-inner {
        padding: 14px 12px 12px;
      }
      .sec-head {
        flex-direction: column;
        align-items: flex-start;
      }
      .sec-caption {
        text-align: left;
      }
    }

    /* ---------------- Concept ---------------- */

    .concept-grid {
      display: grid;
      grid-template-columns: minmax(0,2.1fr) minmax(0,1.6fr);
      gap: 16px;
      font-size: 0.9rem;
    }

    .concept-main p + p {
      margin-top: 10px;
    }

    .concept-box {
      background: #fff4e4;
      border-radius: var(--radius-md);
      padding: 10px 12px;
      border: 1px solid var(--accent-red-soft);
      font-size: 0.82rem;
    }

    .concept-row {
      display: flex;
      justify-content: space-between;
      gap: 8px;
      padding: 3px 0;
    }

    .concept-label {
      color: var(--accent-gold);
      white-space: nowrap;
      font-size: 0.8rem;
    }

    .concept-value {
      text-align: right;
      font-size: 0.8rem;
    }

    @media (max-width: 820px) {
      .concept-grid {
        grid-template-columns: minmax(0,1fr);
      }
    }

    /* ---------------- System ---------------- */

    .system-grid {
      display: grid;
      grid-template-columns: minmax(0,2.1fr) minmax(0,2fr);
      gap: 16px;
      font-size: 0.86rem;
    }

    .system-table {
      width: 100%;
      border-collapse: collapse;
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-soft);
      background: #fff;
    }

    .system-table th,
    .system-table td {
      padding: 8px 10px;
      border-bottom: 1px solid #f0e1d1;
    }

    .system-table th {
      width: 35%;
      background: #fff5ea;
      font-weight: 500;
      text-align: left;
    }

    .system-table tr:last-child th,
    .system-table tr:last-child td {
      border-bottom: none;
    }

    .system-note {
      margin-top: 8px;
      font-size: 0.78rem;
      color: var(--ink-sub);
    }

    .system-side {
      display: grid;
      gap: 10px;
    }

    .system-card {
      border-radius: var(--radius-md);
      border: 1px solid var(--border-soft);
      background: #fffaf3;
      padding: 8px 10px;
      font-size: 0.8rem;
    }

    .system-card-title {
      font-weight: 600;
      color: var(--accent-red);
      margin-bottom: 4px;
      font-size: 0.84rem;
    }

    @media (max-width: 820px) {
      .system-grid {
        grid-template-columns: minmax(0,1fr);
      }
    }

    /* ---------------- Menu ---------------- */

    .menu-grid {
      display: grid;
      grid-template-columns: minmax(0,1fr);
      gap: 16px;
      font-size: 0.84rem;
    }

    .menu-block-title {
      font-weight: 600;
      letter-spacing: 0.16em;
      font-size: 0.78rem;
      text-transform: uppercase;
      color: var(--accent-gold);
      margin-bottom: 6px;
    }

    .menu-item {
  display: grid;
  grid-template-columns: 1fr 90px 110px; /* ← 容量の幅UP、料金の列も離した */
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid #f0e6d8;
}

.menu-item:last-child {
  border-bottom: none;
}


.menu-volume {
  text-align: center;
  color: var(--ink-sub);
  font-weight: 400; /* 通常フォント */
}

    .menu-name {
      color: var(--ink-main);
    }

  
    .menu-price {
  text-align: right;
  color: var(--ink-main);
  font-weight: 400; /* Bold を外す */
}

    .menu-note {
      margin-top: 11px;
      font-size: 0.78rem;
      color: var(--ink-sub);
    }

    @media (max-width: 820px) {
      .menu-grid {
        grid-template-columns: minmax(0,1fr);
      }
    }

    /* ---------------- Cast ---------------- */

    .cast-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 12px;
    }

    .cast-card {
      border-radius: var(--radius-md);
      border: 1px solid var(--border-soft);
      background: #fffaf3;
      padding: 10px;
      font-size: 0.82rem;
    }

    .cast-photo-placeholder {
      border-radius: 8px;
      border: 1px dashed var(--accent-red-soft);
      background: #fff4e7;
      height: 160px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
      font-size: 0.78rem;
      color: var(--ink-sub);
      margin-bottom: 6px;
    }

    .cast-photo-placeholder.has-overlay {
      display: block;
      height: 640px;
    }

    .cast-photo-placeholder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .cast-photo-shift-down img {
      object-position: center 50%;
    }

    .cast-overlay {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 10px 10px 12px;
      background: rgba(255, 255, 255, 0.23);
      color: #ffffff;
      text-shadow: 0 2px 8px rgb(255, 110, 110);
    }

    .cast-overlay .cast-name {
      color: #fff;
      margin-bottom: 2px;
    }

    .cast-overlay .cast-meta {
      color: rgba(255, 255, 255, 0.86);
      margin-bottom: 6px;
    }

    .cast-overlay .cast-comment {
      color: rgba(255, 255, 255, 0.92);
      font-size: 0.76rem;
      line-height: 1.6;
    }

    .cast-name {
      font-weight: 600;
      margin-bottom: 2px;
    }

    .cast-meta {
      font-size: 0.76rem;
      color: var(--ink-sub);
      margin-bottom: 4px;
    }

    .cast-comment {
      line-height: 1.7;
    }

    @media (max-width: 640px) {
      .cast-grid {
        grid-template-columns: minmax(0,1fr);
      }

      .cast-photo-placeholder {
        height: 400px;
      }

      .cast-photo-placeholder.has-overlay {
        height: 420px;
      }
    }

    /* ---------------- Access ---------------- */

    .access-grid {
      display: grid;
      grid-template-columns: minmax(0,1.8fr) minmax(0,2fr);
      gap: 14px;
      font-size: 0.84rem;
    }

    .access-row {
  display: flex;
  gap: 6px;
  margin-bottom: 12px; /* ← ここを増やす！ */
}

.access-label {
  width: 70px;
  color: var(--accent-gold);
  flex-shrink: 0;
  font-size: 0.8rem;
  line-height: 1.6; /* ← ラベルの行間も整う */
}

.access-value {
  flex: 1;
  line-height: 1.75; /* ← 中身の文章も読みやすく */
}


    .access-map {
      border-radius: var(--radius-md);
      border: 1px solid var(--border-soft);
      background: #fff;
      min-height: 170px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.78rem;
      color: var(--ink-sub);
      text-align: center;
      padding: 8px;
    }

    @media (max-width: 820px) {
      .access-grid {
        grid-template-columns: minmax(0,1fr);
      }
    }

    /* ---------------- Contact ---------------- */

    .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr); /* 1カラムにする */
  gap: 14px;
  font-size: 0.84rem;
  max-width: 720px;        /* 幅を少し絞る */
  margin: 0 auto;          /* 全体を中央寄せ */
}


    .contact-box {
      border-radius: var(--radius-md);
      border: 1px solid var(--border-soft);
      background: #fffaf3;
      padding: 9px 10px;
    }

    .contact-box-title {
      font-weight: 600;
      color: var(--accent-red);
      margin-bottom: 4px;
      font-size: 0.86rem;
    }

    .contact-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 6px;
    }

    .tag-pill {
      border-radius: var(--radius-pill);
      border: 1px solid #d4c0a9;
      padding: 2px 8px;
      font-size: 0.75rem;
    }

    .tag-line {
      border-color: #00b900;
      color: #0a5f0a;
    }

    .contact-form {
      border-radius: var(--radius-md);
      border: 1px solid var(--border-soft);
      background: #fff;
      padding: 9px 10px 11px;
      font-size: 0.84rem;
    }

    .form-hint {
      font-size: 0.75rem;
      color: var(--ink-sub);
      margin-bottom: 6px;
    }

    .form-row {
      margin-bottom: 6px;
    }

    .form-label {
      font-size: 0.8rem;
      margin-bottom: 2px;
      display: block;
    }

    .form-label span {
      color: var(--accent-red);
      margin-left: 2px;
      font-size: 0.78em;
    }

    .form-input,
    .form-textarea {
      width: 100%;
      padding: 7px 8px;
      border-radius: 8px;
      border: 1px solid #d9c7b4;
      font-size: 0.82rem;
      font-family: inherit;
      outline: none;
      background: #fffdf8;
      transition: border-color 0.16s ease-out, box-shadow 0.16s ease-out;
    }

    .form-input:focus,
    .form-textarea:focus {
      border-color: var(--accent-gold);
      box-shadow: 0 0 0 1px rgba(196,154,69,0.3);
    }

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

    .form-actions {
      display: flex;
      justify-content: flex-end;
      margin-top: 6px;
    }

    .line-link {
  color: #0066cc; /* 青文字 */
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  cursor: pointer;
}

.line-link:hover {
  opacity: 0.8;
}


    /* ---------------- Footer ---------------- */

    .site-footer {
      padding: 16px 0 20px;
      font-size: 0.74rem;
      color: var(--ink-sub);
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 8px;
      flex-wrap: wrap;
      border-top: 1px solid #ddc8b2;
      padding-top: 8px;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .footer-links a {
      text-decoration: underline;
      text-underline-offset: 3px;
      text-decoration-color: rgba(70, 50, 40, 0.4);
    }

    @media (max-width: 640px) {
      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }
    }
    @media (max-width: 768px) {
  .header-inner {
    padding-left: 13px;
    padding-right: 13px;
  }
}
