@charset "utf-8";
:root {
      --ink:    #1a1208;
      --paper:  #f7f3ec;
      --gold:   #b5935a;
      --gold-lt:#e2cfa0;
      --muted:  #7a6a52;
      --rule:   #d4c9b0;
      --accent: #8b2e2e;
      --white:  #ffffff;
    }
/* リード文 */
    .lead {
      font-size: 15px;
      color: #3a2e1e;
      line-height: 2.1;
      padding-bottom: 40px;
      border-bottom: 1px solid var(--rule);
      margin-bottom: 56px;
    }

/* ── セクション ── */
    .section-header {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 24px;
      margin-top: 30px;
    }
    .section-num {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      border: 1px solid var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      color: var(--gold);
      letter-spacing: 0.05em;
      margin-top: 2px;
    }
    .section-title {
      font-size: clamp(17px, 3vw, 21px);
      font-weight: 500;
      letter-spacing: 0.06em;
      line-height: 1.55;
      color: var(--ink);
      font-family: 'Noto Serif JP', 'Yu Mincho', serif;
    }
    .section-title span {
      display: block;
      font-size: 11px;
      letter-spacing: 0.2em;
      color: var(--gold);
      margin-bottom: 6px;
      font-weight: 400;
    }

    .section-body {
      font-size: 15px;
      line-height: 2.05;
      color: #2e2416;
      padding-left: 64px;
    }
    .section-body p + p {
      margin-top: 1em;
    }

    /* ── 料金カード ── */
    .price-cards {
      padding-left: 64px;
      margin-top: 28px;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 16px;
    }
    .price-card {
      border: 1px solid var(--rule);
      padding: 20px 18px;
      background: var(--white);
      position: relative;
    }
    .price-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 3px; height: 100%;
      background: var(--gold);
    }
    .price-card-name {
      font-size: 13px;
      letter-spacing: 0.12em;
      color: var(--muted);
      margin-bottom: 6px;
    }
    .price-card-price {
      font-size: 22px;
      font-weight: 500;
      color: var(--ink);
      letter-spacing: 0.02em;
    }
    .price-card-price small {
      font-size: 12px;
      color: var(--muted);
      font-weight: 400;
      letter-spacing: 0.05em;
    }
    .price-card-note {
      font-size: 12px;
      color: var(--muted);
      margin-top: 8px;
      line-height: 1.7;
    }

    /* ── 焼酎リスト ── */
    .sake-list {
      padding-left: 64px;
      margin-top: 24px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .sake-tag {
      background: var(--white);
      color: var(--ink);
      font-size: 13px;
      letter-spacing: 0.12em;
      padding: 6px 16px;
      border: 1px solid var(--rule);
      font-family: 'Noto Sans JP', sans-serif;
    }

    /* ── 緊急CTAバナー ── */
    .urgency-banner {
      background: var(--accent);
      color: var(--white);
      text-align: center;
      padding: 20px 24px;
      margin: 0 0 0 64px;
      margin-top: 28px;
    }
    .urgency-banner strong {
      display: block;
      font-size: 16px;
      letter-spacing: 0.1em;
      margin-bottom: 4px;
    }
    .urgency-banner p {
      font-size: 13px;
      opacity: .85;
      letter-spacing: 0.05em;
    }
    
    /* ── オプションメニューカード ── */
    .option-cards {
      padding-left: 64px;
      margin-top: 28px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .option-card {
      border: 1px solid var(--rule);
      background: var(--white);
      display: flex;
      gap: 0;
      position: relative;
      overflow: hidden;
    }
    .option-card-badge {
      flex-shrink: 0;
      width: 72px;
      background: var(--ink);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 16px 8px;
      gap: 4px;
    }
    .option-card-badge .plus {
      font-size: 11px;
      color: var(--gold);
      letter-spacing: 0.05em;
    }
    .option-card-badge .price {
      font-size: 20px;
      font-weight: 500;
      color: var(--white);
      font-family: 'Noto Serif JP', serif;
      line-height: 1.1;
    }
    .option-card-badge .yen {
      font-size: 11px;
      color: var(--gold-lt);
      letter-spacing: 0.05em;
    }
    .option-card-body {
      padding: 18px 20px;
      flex: 1;
    }
    .option-card-name {
      font-size: 16px;
      font-weight: 500;
      color: var(--ink);
      letter-spacing: 0.08em;
      margin-bottom: 8px;
      font-family: 'Noto Serif JP', serif;
    }
    .option-card-ingredients {
      font-size: 12px;
      color: var(--gold);
      letter-spacing: 0.1em;
      margin-bottom: 10px;
    }
    .option-card-desc {
      font-size: 14px;
      color: #3a2e1e;
      line-height: 1.85;
    }
    .option-card-set {
      border: 1px solid var(--gold);
      background: #fdf8f0;
    }
    .option-card-set .option-card-badge {
      background: var(--gold);
    }
    .option-card-set .option-card-badge .plus,
    .option-card-set .option-card-badge .yen {
      color: var(--ink);
    }
    .option-card-set .option-card-badge .price {
      color: var(--ink);
    }

    /* ── ひさご膳基本情報 ── */
    .hisago-info {
      padding-left: 64px;
      margin-top: 20px;
    }
    .hisago-info-box {
      border-left: 3px solid var(--gold);
      padding: 16px 20px;
      background: var(--white);
      border-radius: 0 4px 4px 0;
    }
    .hisago-info-box .name {
      font-size: 15px;
      font-weight: 500;
      font-family: 'Noto Serif JP', serif;
      color: var(--ink);
      letter-spacing: 0.08em;
      margin-bottom: 6px;
    }
    .hisago-info-box .price-row {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 8px;
    }
    .hisago-info-box .price-row strong {
      color: var(--ink);
      font-size: 15px;
    }
    .hisago-info-box .courses {
      font-size: 12px;
      color: var(--muted);
      letter-spacing: 0.08em;
      line-height: 1.8;
    }
    
    

    /* ── 締め文 ── */
    .closing {
      background: var(--ink);
      padding: 48px 32px;
      margin: 56px 0 0;
      text-align: center;
    }
    .closing-deco {
      width: 40px;
      height: 1px;
      background: var(--gold);
      margin: 0 auto 24px;
    }
    .closing p {
      font-size: 15px;
      color: #d4c9b0;
      line-height: 2.1;
      max-width: 480px;
      margin: 0 auto;
      font-family: 'Noto Sans JP', sans-serif;
    }
    .closing p + p {
      margin-top: 1em;
    }
    .closing-sign {
      margin-top: 24px;
      font-size: 12px;
      letter-spacing: 0.2em;
      color: var(--gold);
    }
 /* ── レスポンシブ ── */
    @media (max-width: 600px) {
      .section-body,
      .price-cards,
      .sake-list,
      .urgency-banner,
      .option-cards,
      .hisago-info {
        padding-left: 0;
        margin-left: 0;
      }
      .price-cards { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 400px) {
      .price-cards { grid-template-columns: 1fr; }
    }
    
    

/* ── CTA ブロック ── */
    .cta-wrap {
      border-top: 1px solid #b5a080;
      padding: 2rem 1.5rem 1.5rem;
      max-width: 640px;
      margin: 20px auto 0 auto;
			font-family: 'Noto Serif JP', serif;
    }

    .cta-title {
      text-align: center;
      font-size: 13px;
      letter-spacing: 0.2em;
      color: #7a6a50;
      margin: 0 0 1.5rem;
    }

    /* 電話：モバイルはボタン、PCはテキスト */
    .cta-phone-mobile {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      padding: 0.85rem 1rem;
      border-radius: 6px;
      font-family: 'Noto Serif JP', serif;
      font-size: 15px;
      font-weight: 500;
      text-decoration: none;
      background: #4a3828;
      color: #f5ede0;
      margin-bottom: 0.75rem;
      transition: opacity 0.15s;
    }
    .cta-phone-mobile:hover { opacity: 0.85; }

    .cta-phone-pc {
      display: none;
      flex-direction: column;
      align-items: center;
      margin-bottom: 1.25rem;
    }
    .cta-phone-label {
      font-size: 12px;
      letter-spacing: 0.1em;
      color: #7a6a50;
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 0.3rem;
    }
    .cta-phone-number {
      font-size: 26px!important;
      letter-spacing: 0.1em;
      font-weight: 500;
      color: #4a3828;
    }

    @media (min-width: 600px) {
      .cta-phone-mobile { display: none; }
      .cta-phone-pc { display: flex; }
    }

    /* 区切り線 */
    .cta-divider {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 1.25rem;
    }
    .cta-divider::before,
    .cta-divider::after {
      content: '';
      flex: 1;
      height: 0.5px;
      background: #b5a080;
    }
    .cta-divider span {
      font-size: 12px;
      letter-spacing: 0.15em;
      color: #b5a080;
    }

    /* ウェブ予約ボタン */
    .cta-btn-web {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      padding: 0.85rem 1rem;
      border-radius: 6px;
      font-family: 'Noto Serif JP', serif;
      font-size: 15px;
      font-weight: 500;
      text-decoration: none;
      background: transparent;
      color: #4a3828;
      border: 0.5px solid #b5a080;
      margin-bottom: 0.75rem;
      transition: opacity 0.15s;
    }
    .cta-btn-web:hover { opacity: 0.75; }

    .badge-external {
      font-size: 11px;
      letter-spacing: 0.05em;
      color: #7a6040;
      border: 0.5px solid #b5a080;
      border-radius: 3px;
      padding: 1px 5px;
      margin-left: 2px;
    }

    /* 営業時間 */
    .cta-hours {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      margin-top: 1.25rem;
      font-size: 12px;
      color: #7a6a50;
      line-height: 1.9;
      text-align: center;
    }
    .cta-hours-block {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .cta-hours-block .label {
      font-size: 11px;
      letter-spacing: 0.12em;
      color: #b5a080;
      margin-bottom: 2px;
    }
    .cta-hours-block .order-stop {
      font-size: 11px;
      color: #a09080;
    }

    .cta-closed {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      font-size: 12px;
      color: #7a6a50;
      margin-top: 0.6rem;
    }

    .cta-note {
      text-align: center;
      font-size: 12px;
      color: #a09080;
      letter-spacing: 0.05em;
      margin-top: 1rem;
      line-height: 1.8;
    }

    /* アイコン（SVGインライン） */
    .icon {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
      vertical-align: middle;
    }
    .icon-sm {
      width: 14px;
      height: 14px;
    }