@charset "UTF-8";
/*
Theme Name: Stylish Cafe
Description: おしゃれなカフェ向けのオリジナルテーマ
Author: あなたのブランド名・屋号
Author URI: https://chab-art.com/
Copyright: (C) 2026 chabart All Rights Reserved.
※上記の記載がない場合は、サイトを利用できません。無断使用の場合、作成者が見つけ次第、適切な機関へ相談させていただきます。
*/

/* ====================================
   Playfair Display の読み込み (自社サーバー)
==================================== */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./fonts/playfair-display-v40-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('./fonts/playfair-display-v40-latin-italic.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('./fonts/playfair-display-v40-latin-600.woff2') format('woff2');
}

/* ベースのフォント指定（英語はPlayfair、日本語は端末標準の明朝体） */

/* ====================================
   1. 基礎的なリセットとベーススタイル
==================================== */
body {
    font-family: 'Playfair Display', "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    color: #2C2825;
    background-color: #FCFAF5;
    margin: 0;
    padding: 0;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* mainタグのデフォルト余白リセット */
main {
    display: block;
    margin-top: 0;
    padding-top: 0;
}

h1, h2, h3, h4, h5, h6, .menu-price, .news-date, .card-date {
    font-family: 'Playfair Display', "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    font-weight: 600;
}

img {
    max-width: 100%;
    height: auto;
}
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

section {
    padding: 0;
    margin-top: 0;
    margin-bottom: 30px;
}

section h2 {
    font-size: 3.2rem;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0px;
    letter-spacing: 3px;
    color: #2C2825;
}

.empty-message {
    text-align: center;
    width: 100%;
    color: #888;
    padding: 30px 0;
}

/* ====================================
   2. ヘッダーとナビゲーション
==================================== */
.site-header {
    padding: 15px 0;
    border-bottom: 1px solid #222; 
    background-color: #0A0A0A;
    position: sticky; 
    top: 0;            
    z-index: 999;
    margin-bottom: 0; /* ★ヘッダー下の余白を完全にブロック */
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-title {
    margin: 0;
    margin-right: auto;
}
.site-title a {
    display: block;
    line-height: 0;
}
.site-title img {
    height: 65px;
    width: auto;
    vertical-align: middle;
}

.global-nav .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}
.global-nav .nav-list a {
    margin-left: 25px;
    text-decoration: none;
    color: #F4EAD5;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 1px;
    display: block;
    transition: color 0.3s;
}
.global-nav .nav-list a:hover {
    color: #C2A878;
}
.hamburger {
    display: none;
}

.header-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 40px;
}
.header-qr img {
    width: 45px;
    height: 45px;
    border: 1px solid #C2A878;
    padding: 3px;
    background-color: #fff;
    border-radius: 4px;
}
.header-qr-text {
    font-size: 0.7rem;
    color: #C2A878;
    margin-top: 4px;
    font-weight: bold;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* ====================================
   3. ヒーローセクション（TOP画像）
==================================== */
.hero-section {
    padding: 0; 
    margin-top: 0;
    margin-bottom: 60px;
    position: relative;
    height: 30vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: #111;
}
.hero-section.has-header-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}
.hero-section h2 {
    margin: 0;
    padding: 0 20px;
    text-align: center;
    font-size: 2.6rem;
    letter-spacing: 4px;
    color: #F4EAD5;
}
.hero-section.has-header-image h2 {
    position: relative;
    z-index: 2;
}

/* ====================================
   4. コンセプトセクション
==================================== */
#concept {
    text-align: center;
    margin-bottom: 60px;
}
.concept-lead {
    font-size: 1.5rem;
    text-align: center;        
    line-height: 2.0;
    color: #2C2825;            
    font-weight: 500;         
    max-width: 100%;
    padding: 0;
    margin: 0 auto 30px; 
    letter-spacing: 0.05em;
}

/* ====================================
   5. お知らせ（News）
==================================== */
#news {
    background-color: #F7F5F0;
    padding: 0px 20px 20px 20px;
    border-radius: 8px;
    margin-bottom: 60px;
}
.news-list {
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 15px; 
}
.news-item {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    padding: 25px 35px;
    text-decoration: none;
    color: #2C2825;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}
.news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.news-date {
    width: 150px; 
    font-size: 1.1rem;
    color: #C2A878;
    flex-shrink: 0;
}
.news-title {
    font-size: 1.3rem;
    margin: 0;
    line-height: 1.5;
}

/* ====================================
   6. メニュー（Menu）
==================================== */
#menu {
    margin-bottom: 60px;
}
.menu-category-section {
    margin-bottom: 80px;
}
.menu-category-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 40px;
    letter-spacing: 2px;
}
.menu-img a {
    display: block;
    height: 100%;
}

.menu-grid {
    margin-top: 0;
    margin-bottom: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.menu-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}
.menu-img {
    width: 100%;
    height: 200px;
    background-color: #eee;
    overflow: hidden;
}
.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.menu-card:hover .menu-img img {
    transform: scale(1.05);
}
.menu-body {
    padding: 15px 15px 20px;
    text-align: center;
}
.menu-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}
.menu-title a:hover {
    color: #C2A878;
}
.menu-title {
    font-size: 1.3rem;
    margin: 0 0 8px 0;
}
.menu-price {
    font-size: 1.2rem;
    color: #C2A878;
    margin: 0;
}

/* ====================================
   7. ブログ（Blog）
==================================== */
#blog {
    margin-bottom: 60px;
}
.card-grid {
    margin-top: 0;
    margin-bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
}
.card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    text-decoration: none;
    color: #2C2825;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.card-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #ffffff;
    background-image: url('https://placehold.jp/ffffff/c2a878/600x400.png?text=No+Image');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid #f0f0f0; 
}
.card-img span { display: none; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.card-date {
    font-size: 1rem;
    color: #C2A878;
    margin-bottom: 12px;
}
.card-title {
    font-size: 1.4rem;
    margin: 0 0 12px 0;
    line-height: 1.5;
}
.card-excerpt {
    font-size: 1.05rem;
    color: #666;
    margin: 0;
    line-height: 1.7;
}

/* ====================================
   8. フッター
==================================== */
.site-footer {
    background-color: #0A0A0A;
    color: #F4EAD5;
    padding: 50px 0 30px; 
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 40px;
}
.footer-col { flex: 1; min-width: 250px; }
.footer-left h2 { font-size: 2.4rem; font-family: 'Playfair Display', serif; margin-top: 0; margin-bottom: 15px;}
.footer-left a { color: #F4EAD5; text-decoration: none; }
.footer-nav-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 15px; }
.footer-nav-list a { color: #C2A878; text-decoration: none; font-size: 1.1rem; transition: color 0.3s; }
.footer-nav-list a:hover { color: #fff; }
.footer-map iframe { width: 100%; height: 200px; border-radius: 4px; margin-bottom: 25px; border: 1px solid #333; }
.footer-access-info p { margin: 0 0 10px; font-size: 1.1rem; color: #ccc; line-height: 1.7; }
.footer-copyright { text-align: center; border-top: 1px solid #222; padding-top: 30px; font-size: 1rem; color: #777; }

/* ====================================
   9. 2カラムレイアウト（サイドバー用）
==================================== */
.two-column-wrapper {
    display: flex;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto 60px; 
    padding: 0 20px; 
}
.main-content { flex: 1; min-width: 0; }
.sidebar { width: 320px; flex-shrink: 0; }
.widget { background: #fff; padding: 35px 25px; margin-bottom: 40px; border-radius: 4px; border: 1px solid #eee; }
.widget-title { font-size: 1.4rem; margin-top: 0; margin-bottom: 25px; border-bottom: 1px solid #C2A878; padding-bottom: 15px; }
.widget ul { list-style: none; padding: 0; margin: 0; }
.widget ul li { margin-bottom: 15px; border-bottom: 1px dashed #eee; padding-bottom: 10px; font-size: 1.1rem; }
.widget ul li a { color: #555; text-decoration: none; transition: color 0.3s; }
.widget ul li a:hover { color: #C2A878; }

/* ====================================
   10. 追従するボタン
==================================== */
.floating-contact { position: fixed; right: 20px; bottom: 20px; display: flex; flex-direction: column; align-items: flex-end; gap: 15px; z-index: 9999; }
.float-sns-group { display: flex; flex-direction: column; gap: 10px; }
.float-btn-sns { display: flex; justify-content: center; align-items: center; width: 45px; height: 45px; border-radius: 50%; color: #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.2); transition: transform 0.3s; }
.float-btn-sns:hover { transform: translateY(-3px); color: #fff; }
.float-btn-sns svg { width: 20px; height: 20px; }
.float-ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.float-yt { background-color: #FF0000; }
.float-tt { background-color: #000000; }
.float-x  { background-color: #000000; }
.float-main-group { display: flex; flex-direction: column; gap: 15px; }
.float-btn { display: flex; flex-direction: column; justify-content: center; align-items: center; width: 65px; height: 65px; border-radius: 50%; color: #F4EAD5; box-shadow: 0 4px 15px rgba(0,0,0,0.2); transition: transform 0.3s; text-decoration: none; }
.float-btn:hover { transform: translateY(-5px); color: #fff; }
.float-phone { background-color: #C2A878; }
.float-mail { background-color: #2C2825; }
.float-text { font-size: 0.75rem; margin-top: 3px; font-family: 'Noto Serif JP', serif; }

.view-all-btn {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
    padding: 12px 30px;
    border: 2px solid #C2A878; 
    border-radius: 4px;
    color: #C2A878; 
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    letter-spacing: 1px;
}
.view-all-btn:hover {
    background-color: #C2A878; 
    color: #fff; 
}

/* ====================================
   11. ページネーション（ページ送り）
==================================== */
.pagination {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}
.pagination .nav-links {
    display: inline-flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.pagination a,
.pagination span.current {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid #C2A878;
    color: #C2A878;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    font-family: 'Playfair Display', 'Noto Serif JP', serif;
    font-weight: 600;
}
.pagination a:hover,
.pagination span.current {
    background-color: #C2A878;
    color: #fff;
}
.pagination .screen-reader-text {
    display: none; 
}

/* ====================================
   12. 前後の記事ナビゲーションカード
==================================== */
.post-nav-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 60px;
    border-top: 1px solid #eee;
    padding-top: 40px;
}
.post-nav-card {
    flex: 1;
    min-width: 0; 
}
.post-nav-card a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #2C2825;
    background: #fff;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    box-sizing: border-box;
}
.post-nav-card a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
}
.prev-card a {
    flex-direction: row;
}
.next-card a {
    flex-direction: row-reverse;
    text-align: right;
}
.nav-thumb {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    background: #eee;
}
.nav-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nav-text {
    flex-grow: 1;
    min-width: 0;
}
.nav-label {
    font-size: 0.85rem;
    color: #C2A878;
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.nav-title {
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; 
}

/* ====================================
   13. メニュー詳細ページ
==================================== */
.menu-detail-header {
    text-align: center;
    margin-bottom: 40px;
}
.menu-categories {
    margin-bottom: 15px;
}
.menu-cat-pill {
    display: inline-block;
    background-color: #F7F5F0;
    color: #888;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 0 5px 10px;
    letter-spacing: 1px;
}
.menu-detail-title {
    font-size: 2.6rem;
    margin: 0 0 15px 0;
    letter-spacing: 2px;
    color: #2C2825;
}
.menu-detail-price {
    font-size: 1.8rem;
    color: #C2A878;
    margin: 0;
    font-family: 'Playfair Display', serif;
}
.menu-detail-img {
    margin-bottom: 40px;
    text-align: center;
}
.menu-detail-img img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.menu-detail-content {
    font-size: 1.15rem;
    line-height: 2;
    color: #444;
}

/* セット内容のデザイン */
.menu-set-info {
    background-color: #fff;
    border: 2px dashed #C2A878;
    padding: 20px 25px;
    margin-top: 40px;
    border-radius: 8px;
}
.set-label {
    display: inline-block;
    background-color: #2C2825;
    color: #F4EAD5;
    font-size: 0.9rem;
    padding: 6px 15px;
    border-radius: 3px;
    margin-bottom: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}
.set-text {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

/* アレルギー情報のデザイン */
.menu-allergy-info {
    background-color: #fcfaf5;
    border: 1px solid #eaddc5;
    padding: 20px 25px;
    margin-top: 30px;
    border-radius: 4px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.allergy-label {
    background-color: #C2A878;
    color: #fff;
    font-size: 0.85rem;
    padding: 5px 12px;
    border-radius: 3px;
    white-space: nowrap;
    font-weight: bold;
    letter-spacing: 1px;
}
.allergy-text {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
    font-weight: 600;
}

.menu-nav-links {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}
.menu-nav-links a {
    display: inline-block;
    padding: 10px 20px;
    color: #C2A878;
    text-decoration: none;
    border: 1px solid #C2A878;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 0.95rem;
}
.menu-nav-links a:hover {
    background-color: #C2A878;
    color: #fff;
}
.back-to-menu-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #2C2825;
    color: #F4EAD5;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
    font-weight: bold;
    letter-spacing: 2px;
}
.back-to-menu-btn:hover {
    background-color: #C2A878;
    color: #fff;
}
.back-to-menu-wrapper {
    text-align: center;
    margin-top: 50px;
}

/* ====================================
   14. サイドバー：おすすめメニューウィジェット
==================================== */
.sidebar-recommend-widget a {
    display: block;
    text-decoration: none;
    color: #2C2825;
}
.sidebar-recommend-widget a:hover .recommend-thumb img {
    transform: scale(1.05); 
}
.sidebar-recommend-widget a:hover .recommend-name {
    color: #C2A878;
}
.recommend-thumb {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}
.recommend-thumb img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.recommend-info {
    text-align: center;
}
.recommend-name {
    font-size: 1.1rem;
    margin: 0 0 5px 0;
    font-weight: 600;
    transition: color 0.3s;
}
.recommend-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #C2A878;
    margin: 0;
    font-weight: 600;
}

/* ====================================
   15. 固定ページ等 汎用コンテナ
==================================== */
.news-detail-main,
.archive-main,
.single-post-main {
    padding-top: 60px;
    padding-bottom: 80px;
}

/* メニュー詳細ページ専用の余白（60pxから30pxへスッキリと） */
.menu-detail-main {
    padding-top: 30px;
    padding-bottom: 80px;
}

/* ヒーロー画像があるアーカイブページ等は上部余白をなくしてピタッとくっつける */
.menu-archive-main,
.news-archive-main,
.search-result-main,
.error-404-main {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 80px;
}

.one-column-main {
    padding-bottom: 80px;
}
.one-column-inner {
    padding-top: 20px; 
}

.default-page-main {
    padding-top: 80px;
    padding-bottom: 80px;
}
.default-page-inner {
    padding-top: 60px;
    padding-bottom: 60px;
}
.default-page-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    line-height: 1.4;
    color: #2C2825;
}
.default-page-thumb {
    text-align: center;
    margin-bottom: 40px;
}

.custom-page-hero {
    position: relative;
    width: 100%;
    height: 40vh;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0; /* ★上の余白を強制ゼロに */
    margin-bottom: 40px;
}
.custom-page-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); 
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-page-title {
    color: #F4EAD5;
    font-size: 3rem;
    letter-spacing: 4px;
    margin: 0;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: 'Playfair Display', 'Noto Serif JP', serif;
}
.custom-page-content {
    line-height: 2;
    font-size: 1.1rem;
    color: #2C2825;
}

.custom-page-header {
    margin-bottom: 30px;
    border-bottom: 2px solid #F7F5F0;
    padding-bottom: 15px;
    position: relative;
}
.custom-page-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #C2A878;
}
.custom-page-title-sidebar {
    font-size: 2.2rem;
    margin: 0;
    color: #2C2825;
    font-family: 'Playfair Display', 'Noto Serif JP', serif;
}
.custom-page-thumb {
    margin-bottom: 30px;
}
.custom-page-thumb img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ====================================
   16. 固定ページ コンセプト（左右分割）
==================================== */
.concept-page-main {
    padding: 0;
}
.split-layout-wrapper {
    display: flex;
    align-items: flex-start;
    min-height: 100vh;
}
.split-image-area {
    width: 50%;
    position: sticky;
    top: 96px; 
    height: calc(100vh - 96px);
    box-sizing: border-box; /* パディングによるはみ出し防止 */
}
.split-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.split-text-area {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 4%;
    background-color: #FCFAF5;
    box-sizing: border-box; /* パディングによるはみ出し防止 */
}
.split-text-inner {
    max-width: 750px;
    width: 100%;
}
.concept-btn-wrapper {
    margin-top: 40px;
}
.concept-btn-wrapper .view-all-btn {
    margin: 0; 
}

/* ====================================
   17. 固定ページ：コンセプト本文の装飾
==================================== */
.concept-page-content {
    width: 100%;
}
.concept-section {
    margin-bottom: 60px;
}
.concept-section-title {
    font-family: 'Playfair Display', 'Noto Serif JP', serif;
    font-size: 1.6rem;
    color: #2C2825;
    border-bottom: 1px solid #eaddc5;
    padding-bottom: 15px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.concept-section-title span {
    color: #C2A878;
    font-size: 2rem;
    font-weight: normal;
    font-style: italic;
}
.concept-highlight {
    font-size: 1.3rem;
    color: #C2A878;
    text-align: center;
    margin: 40px 0;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.8;
}
.concept-conclusion {
    text-align: center;
    padding: 40px 30px;
    background-color: #F7F5F0;
    border-radius: 4px;
    margin-top: 60px;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 2;
    color: #2C2825;
    border: 1px solid #eaddc5;
}

/* ====================================
   18. 会社概要 Table
==================================== */
.company-profile-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    margin-bottom: 60px;
}
.company-profile-table th,
.company-profile-table td {
    padding: 20px 25px;
    text-align: left;
    border-bottom: 1px solid #eaddc5;
}
.company-profile-table th {
    width: 30%;
    background-color: #F7F5F0;
    color: #C2A878;
    font-weight: bold;
    font-size: 1.1rem;
    white-space: nowrap;
}
.company-profile-table td {
    color: #444;
}

/* ====================================
   19. アクセスページ装飾
==================================== */
.access-page-wrapper {
    margin-top: 20px;
}
.access-map {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.access-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.access-info-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #2C2825;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

/* ====================================
   21. お知らせ詳細ページ (single-news.php)
==================================== */
.news-detail-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #eaddc5;
    padding-bottom: 30px;
}
.news-detail-date {
    font-size: 1rem;
    color: #C2A878;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.news-detail-title {
    font-size: 2.2rem;
    margin: 0;
    color: #2C2825;
    line-height: 1.5;
}
.news-detail-content {
    font-size: 1.15rem;
    line-height: 2;
    color: #444;
    margin-bottom: 60px;
}
.news-detail-content img {
    border-radius: 4px;
    margin: 20px 0;
}

/* ====================================
   23. 404エラーページ
==================================== */
.error-message-box {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    margin-bottom: 40px;
}
.error-message-box p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

/* ====================================
   24. ブログ詳細ページ (single.php)
==================================== */
.single-post-title {
    font-size: 2.2rem;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.4;
    color: #2C2825;
}
.single-post-date {
    color: #C2A878;
    display: block;
    margin-bottom: 25px;
    font-weight: 600;
}
.single-post-thumb {
    margin-bottom: 40px;
    text-align: center;
}
.single-post-thumb img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}
.single-post-content {
    line-height: 1.9;
    font-size: 1.1rem;
    color: #2C2825;
}


/* ====================================
   22. レスポンシブ
==================================== */
@media screen and (max-width: 768px) {
    body {
        font-size: 0.95rem; 
    }

    section { padding: 0; margin-bottom: 20px; }
    
    #concept, #news, #menu, #blog {
        margin-bottom: 20px;
    }

    section h2 { font-size: 2.2rem; margin-top: 0; margin-bottom: 20px; }
    
    .site-title img { height: 45px; }
    .hero-section { margin-bottom: 40px; }
    
    .hero-section h2 { font-size: 1.5rem; letter-spacing: 2px; }

    .concept-lead {
        font-size: 1.05rem;
        padding: 0 10px;
        line-height: 2.2;
        margin-bottom: 20px;
    }

    #news { padding: 0 15px 20px 15px; }

    .hamburger { display: block; background: none; border: none; width: 30px; height: 24px; position: relative; z-index: 101; }
    .hamburger span { display: block; width: 100%; height: 2px; background-color: #F4EAD5; position: absolute; left: 0; transition: all 0.3s; }
    .hamburger span:nth-child(1) { top: 0; }
    .hamburger span:nth-child(2) { top: 11px; }
    .hamburger span:nth-child(3) { bottom: 0; }
    .hamburger.is-active span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
    .hamburger.is-active span:nth-child(2) { opacity: 0; }
    .hamburger.is-active span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

    .global-nav { 
        position: absolute; 
        top: 100%; 
        left: 0; 
        width: 100%; 
        background-color: #0A0A0A; 
        max-height: 0; 
        overflow-y: auto; /* はみ出した場合にスクロールを許可 */
        transition: max-height 0.3s; 
        z-index: 100; 
    }
    .global-nav.is-active { 
        max-height: calc(100vh - 80px); /* 画面高さいっぱいまでメニュー表示を許可 */
    }
    .global-nav .nav-list { flex-direction: column; align-items: stretch; }
    .global-nav .nav-list a { margin: 0; padding: 20px; border-bottom: 1px solid #222; text-align: center; color: #F4EAD5; font-size: 1.15rem; }

    .header-qr { display: none; }
    
    .news-item { flex-direction: column; align-items: flex-start; padding: 15px 20px; }
    .news-date { margin-bottom: 5px; font-size: 0.9rem; }
    .news-title { font-size: 1.05rem; line-height: 1.5; }
    
    .card-grid { grid-template-columns: 1fr; gap: 15px; }

    .card {
        flex-direction: row;
        align-items: center;
    }
    .card-img {
        width: 110px; 
        height: 110px; 
        flex-shrink: 0;
        border-bottom: none;
    }
    .card-body {
        padding: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .card-date {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }
    .card-title {
        font-size: 1.05rem;
        margin: 0;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }
    .card-excerpt {
        display: none; 
    }

    .news-detail-main,
    .archive-main,
    .single-post-main { 
        padding-top: 40px; 
        padding-bottom: 40px; 
    }

    /* スマホ時のメニュー詳細ページ専用余白 */
    .menu-detail-main {
        padding-top: 20px;
        padding-bottom: 40px;
    }

    /* スマホ時も上部余白をゼロに */
    .menu-archive-main,
    .news-archive-main,
    .search-result-main,
    .error-404-main { 
        margin-top: 0; /* ★追加 */
        padding-top: 0; 
        padding-bottom: 40px; 
    }

    .one-column-main {
        padding-bottom: 40px;
    }
    .one-column-inner {
        padding-top: 0;
    }

    .default-page-main {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .default-page-inner {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .default-page-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    .default-page-thumb {
        margin-bottom: 30px;
    }

    .menu-category-section { margin-bottom: 50px; }
    .menu-category-title { font-size: 1.8rem; margin-bottom: 25px; }

    .menu-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px;
    }
    .menu-img {
        height: 130px; 
    }
    .menu-body {
        padding: 10px 10px 15px;
    }
    .menu-title {
        font-size: 1.05rem;
        margin: 0 0 5px 0;
    }
    .menu-price {
        font-size: 1rem;
    }
    
    .footer-container { flex-direction: column; gap: 40px; }
    
    .two-column-wrapper { flex-direction: column; padding: 0 20px; margin-bottom: 40px; }
    .sidebar { width: 100%; }

    .floating-contact { right: 0; bottom: 0; left: 0; background: transparent !important; pointer-events: none; }
    .float-sns-group { margin-right: 15px; pointer-events: auto; }
    .float-main-group { flex-direction: row; width: 100%; background-color: #fff; pointer-events: auto; padding-bottom: env(safe-area-inset-bottom); gap: 0; }
    .float-btn { width: 50%; height: 70px; border-radius: 0; flex-direction: row; gap: 10px; box-shadow: none; }
    .float-text { font-size: 1.05rem; }
    body { padding-bottom: 80px; }

    .view-all-btn {
        margin-top: 20px;
        padding: 10px 25px;
        font-size: 1rem;
    }
    
    .post-nav-cards {
        flex-direction: column;
        gap: 15px;
    }
    
    .menu-detail-title {
        font-size: 2rem;
    }
    .menu-detail-price {
        font-size: 1.5rem;
    }
    
    .menu-set-info {
        padding: 15px;
    }
    .menu-allergy-info {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
    
    .menu-nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .custom-page-hero {
        height: 30vh;
        min-height: 200px;
        margin-top: 0; /* ★追加 */
        margin-bottom: 30px;
    }
    
    .custom-page-title {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }

    .split-layout-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    .split-image-area {
        width: 100%;
        height: 50vh; 
        position: relative; 
        top: auto;
    }
    .split-image-area img {
        position: relative; 
        height: 100%;
    }
    .split-text-area {
        width: 100%;
        padding: 40px 20px;
    }
    .split-title {
        font-size: 2.2rem;
    }
    .concept-btn-wrapper .view-all-btn {
        margin: 0 auto; 
    }
    
    .concept-section-title {
        font-size: 1.4rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .concept-section-title span {
        font-size: 1.6rem;
    }
    .concept-highlight {
        font-size: 1.1rem;
    }
    .concept-conclusion {
        padding: 30px 20px;
        font-size: 1.05rem;
    }

    .company-profile-table th,
    .company-profile-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    .company-profile-table th {
        border-bottom: none;
        padding-bottom: 5px;
        background-color: #fff; 
    }
    .company-profile-table td {
        padding-top: 5px;
        padding-bottom: 20px;
    }
    
    .access-map {
        margin-bottom: 30px;
        padding-bottom: 75%; 
    }
    .access-info-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .news-detail-title {
        font-size: 1.8rem;
    }
    .news-detail-header {
        padding-bottom: 20px;
        margin-bottom: 30px;
    }
    
    .single-post-title {
        font-size: 1.8rem;
    }
    .single-post-thumb {
        margin-bottom: 30px;
    }

    /* 404ページスマホ調整 */
    .error-message-box {
        padding: 40px 15px;
    }
    .error-message-box p {
        font-size: 1.05rem;
    }
}