/* --- 下層ページ専用スタイル (All Pages Integrated) --- */

/* ==========================================
   下層ページ共通ヘッダー・ヒーロー
   ========================================== */

/* 下層ページ用ヘッダー（白背景用） */
.header-sub {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(74, 62, 55, 0.1);
    color: var(--color-primary) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.header-sub .logo-main,
.header-sub .logo-sub,
.header-sub .nav-link,
.header-sub .header-sns a {
    color: var(--color-primary) !important;
}
.header-sub .nav-link::after {
    background: var(--color-primary) !important;
}

/* 下層ページでのONLINE SHOPボタンの視認性向上 */
.header-sub .btn-shop-craft {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}
.header-sub .btn-shop-craft:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.header-sub #hamburger-trigger {
    border: 1px solid var(--color-primary);
}
.header-sub #hamburger-trigger span {
    background: var(--color-primary) !important;
}

.header-p {
    margin-top: 1rem;
    opacity: 0.7;
}

/* ヒーローエリア基本（画像なし・白背景） */
.page-hero { 
    padding: 130px 0 1.5rem !important;
    background-color: #fff;
    color: var(--color-primary);
    text-align: center;
    position: relative;
}
main .sub-section:first-of-type {
    padding-top: 2rem !important;
}
.page-hero-content {
    position: relative;
    z-index: 10;
}
.page-hero-sub { 
    font-size: 12px;
    letter-spacing: 0.3em;
    margin-top: 1rem;
    margin-bottom: 0.5rem; 
    text-transform: uppercase;
    opacity: 0.6;
    font-weight: 500;
}
.page-hero-title { 
    font-size: 2rem; font-family: var(--font-serif); letter-spacing: 0.1em; 
    position: relative; display: inline-block; padding-bottom: 15px;
}
.page-hero-title::after {
    content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 30px; height: 1px; background-color: var(--color-accent);
}

/* ヒーローエリア（画像ありパターン） */
.page-hero.has-image {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}
.page-hero.has-image .page-hero-bg {
    display: block;
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
/* 画像の上に被せる暗幕（文字を読みやすくするため） */
.page-hero.has-image .page-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); 
}
.page-hero.has-image .page-hero-content {
    text-align: center;
    margin-top: 0;
    color: #fff;
     z-index: 10;
}
.page-hero.has-image .page-hero-title { color: #fff; }
.page-hero.has-image .page-hero-title::after { background-color: #fff; }
.page-hero.has-image .page-hero-sub { color: #fff; opacity: 0.9; }

@media (min-width: 768px) { 
    .page-hero {
        padding: 180px 0 0;
    }
    main .sub-section:first-of-type {
        padding-top: 1.5rem !important; /* スマホではさらにタイトに */
    }
    .page-hero-title {
        font-size: 2.8rem;
    }
}
@media (max-width: 767px) {
    .page-hero.has-image {
        margin-bottom: 0.5rem;
    }
}

/* ==========================================
   パンくず
   ========================================== */
.breadcrumb-container {
    background-color: var(--color-bg);
    padding: 1rem 0;
    font-size: 13px;
    position: relative;
    z-index: 20; /* ヒーローエリアより上に表示 */
}
.breadcrumb-list {
    display: flex;
    gap: 10px;
    opacity: 0.7;
}
.breadcrumb-list li::after {
    content: ">";
    margin-left: 10px;
}
.breadcrumb-list li:last-child::after {
    content: "";
}

/* ==========================================
   下層ページ共通セクション構造
   ========================================== */
.sub-section { 
    padding: 5rem 0 3rem; /* 上部を5rem、下部を3remに詰め、間延びを解消 */
    background: #fff; 
}
.sub-section:nth-of-type(even) {
    background: var(--color-bg);
}

@media (max-width: 767px) {
    .sub-section { 
        padding: 3rem 0 2rem;
    } 
}


.section-header { text-align: center; margin-bottom: 4rem; margin-top: 2rem; }
.section-header-left { text-align: left; }
.section-header span { color: var(--color-accent); letter-spacing: 0.3em; text-transform: uppercase; font-size: 12px; display: block; margin-bottom: 1rem; }
.section-header h2 { font-size: 1.875rem; font-family: var(--font-serif); letter-spacing: 0.1em; }
@media (min-width: 768px) { .section-header h2 { font-size: 2.5rem; } }

/* 左右交互レイアウト (About, Commitment 等で使用) */
.content-grid, .about-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
/* スマホ表示（1023px以下）での順序入れ替え設定 */
@media (max-width: 1023px) {
    .about-grid {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }
    .about-text {
        order: 1; /* テキストを上に */
    }
    .about-visual {
        order: 2; /* 写真を下に */
    }
}
@media (min-width: 1024px) { 
    .content-grid, .about-grid { grid-template-columns: 1.1fr 0.9fr; }
    .content-grid.reverse { grid-template-columns: 0.9fr 1.1fr; }
    .content-grid.reverse .content-visual { order: 2; }
    .content-grid.reverse .content-text { order: 1; }
}
.content-visual img, .about-img { width: 100%; border-radius: 2px; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.content-text h3, .about-text h3 { font-size: 1.5rem; font-family: var(--font-serif); margin-bottom: 2rem; line-height: 1.6; }
@media (min-width: 768px) { .content-text h3, .about-text h3 { font-size: 2rem; } }
.content-text p, .about-text p { font-size: 1rem; line-height: 2.2; opacity: 0.8; margin-bottom: 1.5rem; }
/* 背景色を強制的に白にするユーティリティ */

/* 背景色を強制的に白にする */
.bg-white {
    background-color: #fff !important;
}
/* 背景色をベージュ（ベースカラー）にする */
.bg-beige {
    background-color: var(--color-bg) !important;
}

/* ==========================================
   商品紹介ページ
   ========================================== */
.product-list-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6rem 4rem;
    margin-bottom: 2rem;
}
@media (min-width: 768px) {
    .product-list-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
    .product-list-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 767px) {
    .product-list-grid {
        margin-bottom: 3rem;
    }
}

.product-list-card { display: flex; flex-direction: column; height: 100%; }
.product-list-card .img-box {
    width: 100%;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    margin-bottom: 2rem;
    background: #f3f4f6;
    border-radius: 2px;
}
.product-list-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-list-card:hover img { transform: scale(1.05); }
.product-list-card h3 { font-size: 1.5rem; font-family: var(--font-serif); margin-bottom: 1rem; color: var(--color-primary); }
.product-list-card .desc { font-size: 1rem; line-height: 1.8; opacity: 0.8; margin-bottom: 1.5rem; flex-grow: 1; }
.product-list-card .price { font-weight: bold; font-size: 1.1rem; color: var(--color-primary); border-top: 1px solid #eee; padding-top: 1rem; }

/* ==========================================
   店舗情報・カレンダー
   ========================================== */
.info-table { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.info-table tr { border-bottom: 1px solid rgba(74, 62, 55, 0.1); }
.info-table th { width: 30%; text-align: left; padding: 1.5rem 1rem; font-family: var(--font-serif); font-weight: bold; color: var(--color-primary); }
.info-table td { padding: 1.5rem 1rem; line-height: 1.8; color: var(--color-primary); opacity: 0.8; }
@media (max-width: 767px) {
    .info-table th { width: 100%; display: block; padding-bottom: 0; }
    .info-table td { width: 100%; display: block; padding-top: 0.5rem; }
}
.map-container { width: 100%; height: 450px; margin-top: 3rem; background: #eee; border-radius: 4px; overflow: hidden; }
.access-steps { display: grid; gap: 3rem; margin-top: 3rem; }
.step-item { display: flex; gap: 2rem; }
.step-num { font-family: var(--font-serif); font-size: 2rem; font-weight: bold; color: var(--color-accent); flex-shrink: 0; line-height: 1; }
.step-content h4 { font-size: 1.25rem; font-weight: bold; margin-bottom: 0.5rem; }
.step-content p { opacity: 0.8; line-height: 1.6; }
@media (max-width: 767px) { .step-item { flex-direction: column; gap: 1rem; } }
.pay-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.pay-tag { background: #eee; padding: 2px 10px; font-size: 12px; border-radius: 4px; color: #555; }

/* アクセス注意事項のレイアウト調整（画像削除に伴う中央寄せ） */
.access-notes-container { 
    max-width: 800px; 
    margin: 0 auto; 
}

/* カレンダー */
.calendar-list { display: grid; gap: 6rem; max-width: 900px; margin: 0 auto; }
.calendar-item { padding-bottom: 4rem; border-bottom: 1px solid rgba(74, 62, 55, 0.1); }
.calendar-item:last-child { border-bottom: none; }
.calendar-month-title { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 2rem; color: var(--color-primary); text-align: center; }
.calendar-main-img { width: 100%; height: auto; margin-bottom: 2rem; border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.calendar-details { background: var(--color-bg); padding: 2.5rem; border-radius: 8px; line-height: 2; }
.text-bold { font-weight: bold; }
.text-accent { color: var(--color-accent); font-weight: bold; }
.text-red { color: #d9534f; font-weight: bold; }

/* ==========================================
   お問合せ・よくある質問・ブログ
   ========================================== */
/* お問合せ */
.contact-tel-area {
    text-align: center;
    margin: 0 auto 3rem;
    padding: 2rem 2rem;
    background: #fdfaf5;
    border: 1px solid #e8e2d8;
    border-radius: 12px;
    max-width: 700px;
}
.contact-tel-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 14px;
    font-weight: bold;
    color: var(--color-accent);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}
.contact-tel-label::before {
    content: '\f095'; /* 電話アイコン */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
.contact-tel-number {
    font-size: 3rem;
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    line-height: 1;
    display: inline-block;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
}
.contact-tel-number:hover {
    color: var(--color-accent);
    transform: translateY(-2px);
}
.contact-tel-area p {
    margin-top: 1.5rem;
    font-size: 13px;
    opacity: 0.7;
    background: #fff;
    display: inline-block;
    padding: 4px 16px;
    border-radius: 20px;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}
.contact-form-item {
    margin-bottom: 2rem;
}
.contact-form-label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.75rem;
    font-size: 15px;
}
.contact-form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}
.contact-form-label span { 
    background: #e63946;
    color: #fff;
    font-size: 10px;
    padding: 2px 8px; 
    border-radius: 2px;
    margin-left: 10px;
    vertical-align: middle;
    font-weight: normal;
}
.contact-submit-area {
    text-align: center;
    margin-top: 3rem;
}
.btn-form-submit {
    background: var(--color-primary);
    color: #fff;
    padding: 1.5rem 5rem; border: none;
    font-weight: bold;
    cursor: pointer;
    transition: 0.4s;
    display: inline-block;
    width: auto;
    min-width: 280px;  /* スマホで押しやすい横幅を確保 */
    padding: 1.2rem 4rem;
}
.btn-form-submit:hover {
    background: var(--color-accent);
}
@media (max-width: 767px) {
    .contact-tel-number {
        font-size: 2rem;
    }
    .contact-tel-area {
        padding: 1.5rem 1rem;
    }
    .btn-form-submit {
        width: 100%;
        max-width: 320px;
        padding: 1.2rem 2rem;
    }
}
/* カテゴリータブ (FAQ & Blog) */
.category-tabs {
    margin-top: 1rem;
}
.category-tabs, .faq-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem; margin-bottom: 4rem;
    flex-wrap: wrap;
}
.tab-btn, .faq-tab-btn {
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s;
}
.tab-btn.active, .faq-tab-btn.active {
    background: var(--color-primary);
    color: #fff;
}

/* FAQ アコーディオン */
.faq-list-wrapper { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(74, 62, 55, 0.1); }
.faq-trigger { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 0; cursor: pointer; list-style: none; }
.faq-trigger::-webkit-details-marker { display: none; }
.faq-label-q { font-family: var(--font-serif); font-size: 1.5rem; color: var(--color-accent); font-weight: bold; margin-right: 1rem; }
.faq-q-text { font-size: 1.1rem; font-weight: bold; color: var(--color-primary); }
.faq-trigger::after { content: '\f067'; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 0.8rem; color: var(--color-accent); transition: 0.4s; }
details[open] .faq-trigger::after { transform: rotate(45deg); }
.faq-answer { padding: 0 0 1.5rem 2.8rem; opacity: 0.8; font-size: 15px; }

/* ブログ一覧 */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 4rem 2rem; }
@media (min-width: 768px) {
    .blog-grid { margin-bottom: 2rem; }
}
.blog-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.blog-card .img-box { width: 100%; aspect-ratio: 16 / 9; overflow: hidden; margin-bottom: 1.5rem; border-radius: 2px; }
.blog-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.blog-card:hover img { transform: scale(1.05); }
.blog-card .meta { display: flex; gap: 1rem; align-items: center; margin-bottom: 0.75rem; font-size: 12px; opacity: 0.6; }
.blog-card .cat { color: var(--color-accent); font-weight: bold; }
.blog-card h3 { font-size: 1.25rem; font-family: var(--font-serif); margin-bottom: 1rem; }
.post-date {
    color: #000;
    font-size: 12px;
    opacity: 0.6;
}

/* ページネーション全体 */
.pagination {
  margin-top: 60px;
  text-align: center;
}
/* ul */
.page-numbers {
  display: inline-flex;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
/* li */
.page-numbers li {
  margin: 0;
}
/* 共通ボタン */
.page-numbers a,
.page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  text-decoration: none;
  color: #333;
  background: #fff;
  transition: all .25s ease;
}
/* hover */
.page-numbers a:hover {
  background: #333;
  color: #fff;
  border-color: #333;
}
/* 現在ページ */
.page-numbers .current {
  background: #333;
  color: #fff;
  border-color: #333;
  font-weight: 600;
}
/* 前へ次へ */
.page-numbers .prev,
.page-numbers .next {
  font-weight: bold;
  padding: 0 16px;
}
/* dots (...) */
.page-numbers .dots {
  border: none;
  background: transparent;
  pointer-events: none;
}
/* スマホだけページナビ横スクロール対応 */
@media (max-width: 768px){
    .pagination,
    .page-numbers,
    .nav-links{
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    .pagination a,
    .pagination span,
    .page-numbers a,
    .page-numbers span{
        display:inline-block;
    }
    .pagination a,
    .pagination span{
        display:flex;
        align-items:center;
        justify-content:center;
    }
}


/* ==========================================
   当店について
   ========================================== */
.profile-box {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--color-bg);
    border-left: 4px solid var(--color-accent);
}
.profile-list dt {
    font-weight: bold;
    font-size: 14px;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}
.profile-list dd {
    margin-bottom: 1.5rem;
    font-size: 15px;
}
.concept-card {
    background: #fff;
    max-width: 760px;
    margin: 0 auto 4rem;
    padding: 4rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    text-align: left;
}
.concept-card h3 {
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.4;
}
.concept-card p {
    font-size: 15.5px;
    line-height: 2.1;
    letter-spacing: 0.03em;
}
.about-summary {
    padding: 6rem 0;
    background: var(--color-primary);
    color: #fff;
    text-align: center;
}
.summary-content {
    max-width: 600px;
    margin: 0 auto;
}
.summary-list {
    margin-bottom: 3rem;
    font-size: 15px;
    opacity: 0.8;
}
/* 店主プロフィールセクション */
.profile-section {
    padding-top: 2rem !important;
    padding-bottom: 6rem !important;
}
.profile-section h3 {
    margin-bottom: 1rem;
}
@media (max-width: 767px) {
    .concept-card {
        padding: 2.2rem 1.6rem;
        text-align: left;
    }
    .concept-card h3 {
        text-align: center;
    }
    .concept-card p {
        line-height: 2.15;
        font-size: 15px;
    }
    .profile-section {
        padding-top: 1rem !important;
        padding-bottom: 4rem !important;
    }
}

/* ==========================================
   サイトマップ
   ========================================== */
.sitemap-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 768px) { .sitemap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sitemap-grid { grid-template-columns: repeat(3, 1fr); } }
.sitemap-group h3 { font-size: 1.2rem; font-family: var(--font-serif); color: var(--color-primary); border-bottom: 2px solid var(--color-accent); padding-bottom: 0.5rem; margin-bottom: 1.5rem; }
.sitemap-list li { margin-bottom: 1rem; list-style: none; position: relative; padding-left: 1.2rem; }
.sitemap-list li::before { content: "\f054"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 0.7rem; color: var(--color-accent); position: absolute; left: 0; top: 0.5em; }
.sitemap-list a { font-size: 15px; color: var(--color-primary); opacity: 0.8; transition: 0.3s; }
.sitemap-list a:hover { opacity: 1; color: var(--color-accent); padding-left: 5px; }

/* ==========================================
   プライバシーポリシー
   ========================================== */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
}
.policy-item {
    margin-bottom: 4rem;
}
.policy-item h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    display: flex;
    align-items: center;
}
.policy-item h3::before {
    content: "";
    width: 4px;
    height: 1.2em;
    background: var(--color-accent);
    margin-right: 1rem;
}
.policy-item h4 {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 1.5rem 0 1rem;
    color: var(--color-primary);
}
.policy-item p {
    margin-bottom: 1.2rem;
    line-height: 2;
    font-size: 15px;
    opacity: 0.85;
}
.policy-item ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}
.policy-item li {
    margin-bottom: 0.8rem;
    font-size: 15px;
    opacity: 0.85;
    list-style: disc;
}
.policy-list {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}
.policy-list li {
    margin-bottom: 0.8rem;
    font-size: 15px;
    opacity: 0.85;
    list-style: disc;
}
/* brタグを無効にする */
.policy-item ul br {
  display: none;
}
.policy-item br:nth-of-type(even) { /* 偶数番目だけ消す */
  display: none;
}
.policy-item p + br {
  display: none;
}

/* ==========================================
   お問合せフォーム
   ========================================== */
.contact-policy-notice {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 14px;
    color: var(--color-primary);
}
.contact-policy-notice a {
    color: var(--color-accent);
    text-decoration: underline;
    font-weight: bold;
}
.contact-policy-notice a:hover {
    text-decoration: none;
}

/* ==========================================
   こだわりページ
   ========================================== */
/* スマホ表示（デフォルト）：見出し -> 写真 -> 本文 */
.commitment-item-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.commitment-header { order: 1; }
.commitment-visual { order: 2; }
.commitment-body   { order: 3; }
.commitment-header .section-header {
    margin-bottom: 0.5rem;
}
.commitment-visual img {
    width: 100%;
    border-radius: 2px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}
.commitment-body h3 {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    margin-bottom: 2rem;
    line-height: 1.6;
}
.commitment-body p {
    font-size: 1rem;
    line-height: 2.2;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

/* PC表示：左右交互レイアウト */
@media (min-width: 1024px) {
    .commitment-item-grid {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        grid-template-rows: auto auto; /* 見出し行と本文行 */
        gap: 0 4rem; /* 横の隙間のみ設定 */
        align-items: center;
    }
    .commitment-visual {
        grid-row: 1 / 3; /* 写真は縦に2行分ぶち抜きで結合 */
    }
    .commitment-header {
        margin-bottom: 0;
        align-self: end; /* 見出しを下詰めにして本文と繋げる */
        padding-bottom: 1rem;
    }
    .commitment-body {
        align-self: start; /* 本文を上詰めにして見出しと繋げる */
    }
    /* 見出しコンテナの下部マージンをリセット */
    .visual-left .commitment-header, 
    .visual-right .commitment-header {
        margin-bottom: 0;
    }
    /* 見出し内の共通ヘッダー余白を最小化 */
    .visual-left .commitment-header .section-header, 
    .visual-right .commitment-header .section-header {
        margin-bottom: 1rem;
    }
    /* 本文コンテナの上部マージンをリセット */
    .visual-left .commitment-body, 
    .visual-right .commitment-body {
        margin-top: 0;
    }
    /* h3 自体のマージンを完全に削除 */
    .visual-left .commitment-body h3, 
    .visual-right .commitment-body h3 {
        margin-top: 0;
    }
    /* パターンA：写真が左、テキストが右 */
    .commitment-item-grid.visual-left .commitment-visual { grid-column: 1; }
    .commitment-item-grid.visual-left .commitment-header { grid-column: 2; }
    .commitment-item-grid.visual-left .commitment-body   { grid-column: 2; }
    /* パターンB：写真が右、テキストが左 */
    .commitment-item-grid.visual-right .commitment-visual { grid-column: 2; }
    .commitment-item-grid.visual-right .commitment-header { grid-column: 1; }
    .commitment-item-grid.visual-right .commitment-body   { grid-column: 1; }
}
@media (min-width: 768px) {
    .commitment-body h3 { font-size: 2rem; }
}

/*  生産者紹介エリア */
.producer-list-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}
.producer-item {
    border-bottom: 1px solid rgba(74, 62, 55, 0.1);
}
.producer-item:first-child {
    border-top: 1px solid rgba(74, 62, 55, 0.1);
}
.producer-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    cursor: pointer;
    list-style: none;
}
.producer-trigger::-webkit-details-marker { display: none; }
.producer-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--color-primary);
}
.producer-trigger::after {
    content: '\f067';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1rem;
    color: var(--color-accent);
    transition: 0.4s;
}
details[open] .producer-trigger::after {
    transform: rotate(45deg);
}

/* アコーディオン内部のレイアウト */
.producer-grid {
    padding: 0 0 4rem 0;
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .producer-grid {
        grid-template-columns: 1fr 1fr; /* 2分割 */
    }
    /* 写真がない場合の特殊設定 */
    .producer-grid.no-image {
        grid-template-columns: 1fr; /* 1列にする */
    }
}

.producer-info-list dt {
    font-weight: bold;
    font-size: 0.9rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}
.producer-info-list dd {
    margin-bottom: 2rem;
    line-height: 2;
    font-size: 0.95rem;
    opacity: 0.9;
}
.producer-info-list dd:last-child {
    margin-bottom: 0;
}

.producer-photo img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* ==========================================
   定期便ページ
   ========================================== */
.sub-intro-text {
    max-width: 800px;
    margin: 0 auto 5rem;
    text-align: left;
}
.sub-intro-text p {
    font-size: 1.1rem;
    line-height: 2.2;
    margin-bottom: 2rem;
    opacity: 0.85;
}
/* brタグを無効にする */
.sub-intro-text ul br {
  display: none;
}
.sub-intro-text br:nth-of-type(even) { /* 偶数番目だけ消す */
  display: none;
}
.sub-intro-text p + br {
  display: none;
}

.plan-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .plan-grid { grid-template-columns: 1fr 1fr; }
}

.plan-card {
    background: #fff;
    border: 1px solid rgba(74, 62, 55, 0.1);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: 0.4s;
    position: relative;
}
.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: var(--color-accent);
}

.plan-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}
.plan-price-box {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px dashed #eee;
}
.plan-price-main {
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-primary);
    font-family: var(--font-serif);
}
.plan-price-sub {
    display: block;
    font-size: 0.9rem;
    opacity: 0.6;
    margin-top: 0.5rem;
}

.plan-features {
    text-align: left;
    margin-bottom: 3rem;
    flex-grow: 1;
}
.plan-features li {
    font-size: 14px;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}
.plan-features li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.btn-plan-order {
    display: block;
    background: var(--color-primary);
    color: #fff;
    padding: 1.2rem;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s;
}
.plan-card:hover .btn-plan-order {
    background: var(--color-accent);
}

/* ==========================================
   内部リンク誘導エリア
   ========================================== */
.guide-container {
    text-align: center;
    margin: 2rem auto 0;
    padding: 2rem 2rem 2rem 2rem;
    background: var(--color-bg);
    border-radius: 8px;
    max-width: 900px;
}
@media (max-width: 767px) {
.guide-container {
    margin-top: 1rem;
    padding-top: 2rem;
    padding-bottom: 3rem;
}
}
.guide-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.8;
}
.guide-btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}
.btn-guide {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--color-primary);
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    letter-spacing: 0.1em;
    transition: 0.3s;
}
.btn-guide:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.text-guide-link {
    display: block;
    text-align: center;
    margin: 2rem 0;
    font-weight: bold;
    color: var(--color-accent);
    text-decoration: underline;
}
.text-guide-link:hover {
    text-decoration: none;
}
/* シンプルな誘導（テキストのみ）用ユーティリティ */
.guide-simple {
    text-align: center;
    margin-top: 5rem;
}
.guide-simple-text {
    margin-bottom: 1rem;
    opacity: 0.7;
}
/* メニュー内強調表示用 */
.menu-featured {
    color: var(--color-accent) !important;
    font-weight: bold !important;
}

/* ==========================================
   下層ページ ボタンの調整用
   ========================================== */
/* SP調整 */
@media (max-width: 767px) {
    .cta-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        padding: 4rem 1.5rem !important;
        box-sizing: border-box !important;
    }
    .cta-btn-modern {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 auto !important;
        padding: 1.3rem 0 !important; 
        width: 100% !important;
        max-width: 300px !important;
        
        overflow: hidden !important;
        position: relative !important;
    }
    .cta-btn-modern span {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        letter-spacing: 0.12em !important;
        text-indent: 0.12em !important; 
        font-size: 1.15rem !important;
        margin: 0 !important;
        padding: 0 !important;
        position: relative !important;
        z-index: 5 !important;
    }
    .cta-btn-modern::before {
        left: -100% !important;
    }
}

/* ==========================================
   404ページ
   ========================================== */
.error404-box{
    text-align:center;
    max-width:700px;
    margin:0 auto;
    padding:4rem 2rem;
}
.error404-code{
    font-size:7rem;
    font-family:var(--font-serif);
    color:var(--color-accent);
    line-height:1;
    margin-bottom:1.5rem;
}
.error404-title{
    font-size:1.8rem;
    font-family:var(--font-serif);
    margin-bottom:1.5rem;
    letter-spacing:0.05em;
}
.error404-text{
    font-size:1rem;
    line-height:2;
    opacity:0.8;
    margin-bottom:3rem;
}
.error404-btns{
    display:flex;
    justify-content:center;
    gap:1.5rem;
    flex-wrap:wrap;
}
/* サブボタン */
.btn-guide.btn-sub{
    background:transparent;
    border:1px solid var(--color-primary);
    color:var(--color-primary);
}
.btn-guide.btn-sub:hover{
    background:var(--color-primary);
    color:#fff;
}
@media(max-width:767px){
    .error404-code{
        font-size:5rem;
    }
    .error404-title{
        font-size:1.4rem;
    }
}
