/*
Theme Name: Lightning Child
Theme URI:
Template: lightning
Description:
Author:
Tags:
Version: 0.7.0
*/

/* =========================================
   ネイルサロン用 カスタムスタイル
   Theme: Simple Modern, Nuance, Greige
   ========================================= */

/* 1. 変数定義 & 基本設定
   ========================================= */
:root {
    --color-bg: #f9f8f7; /* 背景：わずかに黄みのある白 */
    --color-main: #e2ded9; /* メイン：グレージュ */
    --color-accent: #8e8075; /* アクセント：モカブラウン #d4a373に近い色味 */
    --color-accent-light: #d4a373; /* 明るめのアクセント（ベージュ） */
    --color-text: #555555; /* 文字色：ダークグレー */
    --color-text-light: #888888; /* 文字色：ライトグレー */
    --color-white: #ffffff;

    /* フォント設定 */
    --font-serif: 'Cormorant Garamond', 'Yu Mincho', 'Hiragino Mincho ProN', serif;
    --font-sans: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600&display=swap');

body {
    background-color: var(--color-bg);
}

.salon-home-wrapper {
    color: var(--color-text);
    font-family: var(--font-sans);
    line-height: 2;
    letter-spacing: 0.05em;
}

.salon-home-wrapper h2,
.salon-home-wrapper h3,
.salon-home-wrapper h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    color: var(--color-accent);
}

/* コンテナ調整 */
.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px;
}
.container-sm {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 共通タイトル（モダン・シンプル） */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
    letter-spacing: 0.15em;
    position: relative;
    padding-bottom: 20px;
}
.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--color-accent);
    margin: 20px auto 0;
}

/* 2. カスタムヘッダー (PC / SP)
   ========================================= */

/* Lightning標準ヘッダー非表示 */
header.siteHeader,
.siteHeader,
.breadSection {
    display: none !important;
}

.custom-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 40px;
    box-sizing: border-box;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ロゴ */
.header-logo {
    margin: 0 !important;
    padding: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    height: auto;
}
.header-logo a {
    display: block;
    text-decoration: none;
    color: var(--color-accent);
    font-family: var(--font-serif);
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    padding-bottom: 2px;
}

/* PC Nav */
.pc-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.pc-nav a {
    text-decoration: none;
    color: var(--color-text);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    text-align: center;
    display: block;
    transition:
        transform 0.4s ease,
        color 0.4s ease;
}
.pc-nav a span {
    display: block;
    font-size: 0.6rem;
    font-family: var(--font-sans);
    color: var(--color-text-light);
    margin-top: 2px;
    transition: color 0.4s ease;
}
.pc-nav a:hover {
    color: var(--color-accent);
    transform: translateY(-5px);
    opacity: 0.8;
}
.pc-nav a:hover span {
    color: var(--color-accent);
}

/* Contact Button */
.pc-nav a.nav-btn {
    border: 1px solid var(--color-accent);
    padding: 8px 30px;
    border-radius: 50px;
    color: var(--color-accent);
    background-color: transparent;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.pc-nav a.nav-btn span {
    display: none;
}
.pc-nav a.nav-btn:hover {
    background-color: var(--color-accent);
    color: #fff;
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(142, 128, 117, 0.3);
    opacity: 1;
}

/* SP Nav (Hamburger) */
.sp-hamburger,
.sp-nav {
    display: none;
}

@media (max-width: 900px) {
    .custom-header {
        padding: 15px 20px;
    }
    .pc-nav {
        display: none;
    }

    .sp-hamburger {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
        cursor: pointer;
        z-index: 10001;
    }
    .sp-hamburger span {
        display: block;
        width: 100%;
        height: 1px;
        background: var(--color-text);
        position: absolute;
        transition: all 0.4s;
    }
    .sp-hamburger span:nth-child(1) {
        top: 0;
    }
    .sp-hamburger span:nth-child(2) {
        top: 9px;
    }
    .sp-hamburger span:nth-child(3) {
        bottom: 0;
    }

    .sp-hamburger.active span:nth-child(1) {
        top: 9px;
        transform: rotate(45deg);
    }
    .sp-hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .sp-hamburger.active span:nth-child(3) {
        bottom: 10px;
        transform: rotate(-45deg);
    }

    .sp-nav {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        z-index: 10000;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s;
    }
    .sp-nav.active {
        opacity: 1;
        visibility: visible;
    }
    .sp-nav ul {
        list-style: none;
        padding: 0;
        text-align: center;
    }
    .sp-nav li {
        margin-bottom: 30px;
    }
    .sp-nav a {
        font-family: var(--font-serif);
        font-size: 1.5rem;
        color: var(--color-text);
        text-decoration: none;
    }
}

body:not(.home) {
    padding-top: 100px;
}

/* 3. トップページ (Hero, Parallax, etc.)
   ========================================= */
.hero-section {
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* background: url('https://images.unsplash.com/photo-1493663284031-b7e3aefcae8e?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover; */
    background: url('/wp-content/uploads/2026/01/56824.jpg') no-repeat center center/cover;
    position: relative;
}
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(240, 238, 235, 0.4);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}
.hero-title {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.6;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}
.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 40px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

/* Parallax Sections */
.section-parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.concept-section {
    background-image: url('https://images.unsplash.com/photo-1507652313519-d4e9174996dd?q=80&w=2070&auto=format&fit=crop');
    /* 	background-image: url("/wp-content/uploads/2026/01/56824.jpg"); */
}
.info-section {
/*     background-image: url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?q=80&w=2032&auto=format&fit=crop'); */
	background-image: url('https://nail-by-yb.com/wp-content/uploads/2026/01/56689.jpg');
}

.content-box {
    background: rgba(255, 255, 255, 0.85);
    padding: 80px 60px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(5px);
}
.content-box h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    letter-spacing: 0.2em;
}
.content-box p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    color: var(--color-text);
}

/* 4. メニューセクション
   ========================================= */
.menu-section {
    padding: 100px 0;
    background-color: #f5f2ec;
}
.menu-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* メニューカード（リンク形式） */
.menu-item {
    display: block;
    text-decoration: none;
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 50px 30px;
    text-align: center;
    color: var(--color-text);
    border: 1px solid #eee;
    transition: all 0.4s ease;
    cursor: pointer;
}
.menu-item:not(.disabled):hover {
    transform: translateY(-5px);
    border-color: var(--color-main);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.menu-item h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--color-accent);
}
.menu-item .price {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}
.menu-item .desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Disabled（準備中）スタイル */
.menu-item.disabled {
    opacity: 0.6;
    pointer-events: none;
    background-color: #f7f7f7;
    border-color: #eee;
    position: relative;
}
.menu-item.disabled::after {
    content: 'Coming Soon';
    display: block;
    margin: 20px auto 0;
    font-family: var(--font-serif);
    font-size: 0.85rem;
    color: #aaa;
    border: 1px solid #ddd;
    padding: 5px 15px;
    border-radius: 20px;
    width: fit-content;
    background-color: #fff;
    letter-spacing: 0.1em;
}
.menu-item.disabled h4,
.menu-item.disabled .price,
.menu-item.disabled .desc {
    color: #aaa;
}

/* 5. ニュース & ギャラリー & ボタン
   ========================================= */
.news-section {
    padding: 100px 0;
    background-color: var(--color-bg);
}
.news-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.news-item {
    display: block;
    width: 30%;
    min-width: 250px;
    text-decoration: none;
    color: var(--color-text);
    transition: opacity 0.3s;
}
.news-item:hover {
    opacity: 0.7;
}
.news-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9!important;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.news-item:hover .news-thumb img {
    transform: scale(1.05);
}
.news-thumb .no-image {
    width: 100%;
    height: 100%;
    background-color: #e0e0e0;
}
.news-date {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 5px;
    font-family: var(--font-serif);
    letter-spacing: 0.05em;
}
.news-title {
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.6;
    margin: 0;
    color: var(--color-text);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.gallery-section {
    padding: 100px 0;
    background-color: #fff;
}

.btn-main {
    display: inline-block;
    padding: 12px 50px;
    background: var(--color-accent);
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    transition: all 0.3s;
    border: 1px solid var(--color-accent);
}
.btn-main:hover {
    background: transparent;
    color: var(--color-accent);
    opacity: 1;
}

.btn-area {
    text-align: center;
    margin-top: 60px;
}
.btn-sub {
    display: inline-block;
    padding: 10px 40px;
    background: transparent;
    border: 1px solid #ccc;
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    transition: all 0.3s;
}
.btn-sub:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.info-list {
    text-align: left;
    display: inline-block;
    margin: 30px 0;
    font-size: 0.95rem;
}
.info-list dt {
    float: left;
    clear: both;
    width: 100px;
    font-family: var(--font-serif);
    color: var(--color-accent);
    opacity: 0.8;
}
.info-list dd {
    margin-left: 100px;
    margin-bottom: 20px;
    color: var(--color-text);
}

/* 6. 固定ページ：About Page (page-about.php)
   ========================================= */
.about-page .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* タイトルリセットと再定義 */
.about-page .entry-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.6rem;
}
.about-page .section-title {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    border: none !important;
    background: none !important;
    padding: 0 !important;
}
.about-page .section-title::before,
.about-page .section-title::after {
    display: none !important;
    content: none !important;
}

/* 本文内のh2タグ（デザインA：シンプル下線） */
#main h2,
.about-page h2 {
    background: none !important;
    border: none !important;
    padding: 0 !important;

    font-size: 1.4rem;
    color: #333;
    border-bottom: 1px solid var(--color-accent-light) !important;
    padding-bottom: 10px !important;
    margin-bottom: 20px;
    margin-top: 40px;
    letter-spacing: 0.05em;
}

.about-page section {
    margin-bottom: 4rem;
}
.about-concept p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* プロフィールエリア */
.profile-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 2rem;
}
.profile-img img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.profile-body {
    flex: 1;
    max-width: 400px;
}
.profile-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
    border: none;
    background: none;
    line-height: 1.4;
}
.profile-role {
    font-size: 0.9rem;
    font-weight: normal;
    color: #888;
    margin-left: 10px;
}

.qualification-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #666;
}
.qualification-list li::before {
    content: '✔';
    color: var(--color-accent-light);
    margin-right: 8px;
}

/* 資格説明枠 */
.qualification-info-box {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    font-size: 0.9rem;
}
.qualification-info-box dt {
    font-weight: bold;
    color: #555;
    margin-top: 15px;
    margin-bottom: 5px;
}
.qualification-info-box dt:first-child {
    margin-top: 0;
}
.qualification-info-box dd {
    margin-left: 0;
    margin-bottom: 0;
    line-height: 1.6;
    color: #666;
    font-size: 0.85rem;
}

/* モニター募集エリア */
.monitor-campaign {
    margin-top: 60px;
}
.monitor-box {
    border: 2px solid #e0c3a8;
    padding: 30px;
    border-radius: 10px;
    background-color: #fffaf5;
}
.monitor-title {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #555;
}
.monitor-title span {
    background: var(--color-accent-light);
    color: #fff;
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 3px;
    vertical-align: middle;
    margin-right: 10px;
}
.monitor-lead {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
}
.monitor-details {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}
.monitor-caution {
    margin-top: 20px;
    border: 1px dashed #ff9999;
    padding: 15px;
    background-color: #fff5f5;
    color: #cc0000;
    font-size: 0.9rem;
}
.caution-title {
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}
.monitor-caution ul {
    margin: 0;
    padding-left: 20px;
}
.monitor-caution li {
    margin-bottom: 5px;
}
.monitor-action {
    text-align: center;
    margin-top: 30px;
}
.btn-primary {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 12px 40px;
    text-decoration: none;
    border-radius: 50px;
    transition: background 0.3s;
}
.btn-primary:hover {
    background-color: #555;
}

/* Access Section & Map */
.access-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}
.access-box {
    text-align: center;
}
.access-address {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
}
.access-label {
    font-size: 0.9rem;
    color: var(--color-accent-light);
    display: inline-block;
    margin-bottom: 5px;
    letter-spacing: 0.1em;
}
.access-note {
    background-color: #f7f7f7;
    padding: 15px;
    display: inline-block;
    border-radius: 4px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #666;
    text-align: left;
    max-width: 600px;
    width: 100%;
}
#salon-map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    border: 1px solid #ddd;
    z-index: 1;
}

/* 7. ブログ・アーカイブ (single.php)
   ========================================= */
.blog-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.blog-wrapper .row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
    margin-bottom: 80px;
    gap: 50px;
}
.col-main {
    flex: 1;
    width: auto;
    min-width: 0;
}
.col-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.entry-header {
    margin-bottom: 50px;
    text-align: left;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}
.entry-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-family: var(--font-sans);
}
.entry-meta .entry-cat a {
    background-color: var(--color-accent);
    color: #fff;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 2px;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: opacity 0.3s;
}
.entry-meta .entry-cat a:hover {
    opacity: 0.8;
}
.entry-meta .entry-date {
    color: #999;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    font-family: var(--font-serif);
}
.entry-title {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    color: #333;
    font-feature-settings: 'palt';
}
.entry-thumbnail {
    margin-top: 30px;
}
.entry-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.entry-content {
    line-height: 2;
    font-size: 1rem;
    color: #555;
    margin-top: 40px;
}
.entry-content p {
    margin-bottom: 2.5em;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    font-family: var(--font-serif);
}

/* Sidebar Widgets */
.widget {
    margin-bottom: 50px;
}
.widget-title,
.widgettitle {
    font-size: 1.1rem;
    font-family: var(--font-serif);
    color: var(--color-accent);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-main);
    letter-spacing: 0.1em;
    text-align: center;
    position: relative;
}
.widget-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--color-accent);
    margin: 10px auto 0;
}
.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.widget ul li {
    border-bottom: 1px dotted #ddd;
    padding: 12px 0;
    font-size: 0.9rem;
}
.widget ul li:last-child {
    border-bottom: none;
}
.widget ul li a {
    color: var(--color-text);
    text-decoration: none;
    display: block;
    transition:
        color 0.3s,
        transform 0.3s;
}
.widget ul li a:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}
.search-form input[type='search'] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fdfdfd;
}

/* 9. メディアクエリ (Mobile Adjustments)
   ========================================= */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .content-box {
        padding: 40px 25px;
    }
    .hero-section {
        height: 70vh;
    }
    .section-parallax {
        background-attachment: scroll;
    }
    .container {
        padding: 0 20px;
    }

    .news-item {
        width: 100%;
        margin-bottom: 20px;
    }

    .blog-wrapper .row {
        display: block;
    }
    .col-main,
    .col-sidebar {
        width: 100%;
    }
    .col-sidebar {
        margin-top: 60px;
    }

    .profile-wrap {
        flex-direction: column;
        text-align: center;
    }
    .profile-body {
        max-width: 100%;
    }
}

/* =========================================
   Menu Page Styles
   ========================================= */
.menu-page-wrapper {
    padding-bottom: 100px;
}

/* --- 1. 上段：メニュー表リスト --- */
.menu-list-section {
    max-width: 800px;
    margin: 0 auto 100px; /* 下段との余白を広めに */
}

.menu-table {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #eee;
}

.menu-table li {
    border-bottom: 1px solid #eee;
}

.menu-row {
    display: flex;
    justify-content: space-between;
    align-items: center; /* ベースラインではなくセンター揃えで見やすく */
    padding: 20px 10px;
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.3s ease;
    cursor: pointer;
}

/* 名前と価格の間を点線で繋ぐ演出 */
.menu-name {
    font-weight: 500;
    font-size: 1.05rem;
    flex-shrink: 0; /* 文字が潰れないように */
}

.menu-line {
    flex-grow: 1; /* 余ったスペースを埋める */
    margin: 0 15px;
    border-bottom: 1px dotted #ccc;
    position: relative;
    top: -4px; /* 少し位置調整 */
    opacity: 0.5;
}

.menu-price {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-accent);
    flex-shrink: 0;
}

/* ホバー時の挙動（背景色がふわっとつく） */
.menu-row:hover {
    background-color: #faf9f6; /* ごく薄いベージュ */
    padding-left: 20px; /* 少し右に動く */
    padding-right: 20px; /* 少し内側に */
}
.menu-row:hover .menu-price {
    color: #d4a373; /* アクセントカラーを少し明るく */
}

/* --- 2. 下段：詳細エリア --- */
.menu-details-container {
    max-width: 900px;
    margin: 0 auto;
}

.menu-detail-block {
    margin-bottom: 100px; /* ブロックごとの間隔 */
    scroll-margin-top: 120px; /* アンカー移動した時の位置ズレ調整 */
}

/* タイトル */
.detail-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
    border-left: 5px solid var(--color-accent); /* 左の茶色い太線は残す */
    padding-left: 15px;
    line-height: 1.2;
    color: #333;

    /* --- 以下を追加：テーマ標準の線を強制的に消す設定 --- */
    border-top: none !important; /* 上の線を消す */
    border-bottom: none !important; /* 下の線も念のため消す */
    background: none !important; /* 背景色も消す */
    padding-top: 0 !important; /* 余計な余白を消す */
    padding-bottom: 0 !important;
}

.detail-title::after,
.detail-title::before {
    display: none !important;
    content: none !important;
}

/* レイアウト（左：画像、右：説明） */
.detail-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* --- ギャラリー部分 --- */
.detail-gallery {
    width: 350px; /* 画像エリアの幅 */
    flex-shrink: 0;
}

.main-image {
    width: 100%;
    aspect-ratio: 1 / 1; /* 正方形 */
    background-color: #f0f0f0;
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease; /* ふわっと切り替わるCSSアニメーション */
}

.thumb-list {
    display: flex;
    gap: 10px;
}

.thumb-item {
    width: 60px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 4px;
    opacity: 0.6;
    transition:
        opacity 0.3s,
        border-color 0.3s;
    border: 2px solid transparent;
}

.thumb-item:hover,
.thumb-item.active {
    opacity: 1;
    border-color: var(--color-accent); /* 選択中は枠線をつける */
}

/* --- 説明文部分 --- */
.detail-desc {
    flex: 1;
    padding-top: 10px;
}

.detail-price {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-accent);
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.tax-note {
    font-size: 0.9rem;
    color: #999;
    font-weight: normal;
}

.detail-desc p {
    line-height: 2;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.detail-note {
    font-size: 0.9rem;
    color: #888;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 4px;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .menu-list-section {
        margin-bottom: 60px;
    }

    .detail-flex {
        flex-direction: column; /* 縦積みに */
        gap: 20px;
    }

    .detail-gallery {
        width: 100%; /* 横幅いっぱいに */
        max-width: 400px;
        margin: 0 auto;
    }

    .detail-price {
        font-size: 1.6rem;
    }
}

/* =========================================
   Reservation Page
   ========================================= */

.reservation-page-wrapper {
    padding-bottom: 100px;
}

/* タイトル周り */
.reservation-page-wrapper .entry-header {
    text-align: center;
    margin-bottom: 60px;
}

.reservation-page-wrapper .entry-title {
    font-size: 2rem;
    color: var(--color-accent); /* 茶色 */
    margin-bottom: 10px;
    font-family: var(--font-serif);
    letter-spacing: 0.1em;
}

.reservation-page-wrapper .entry-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-light);
    letter-spacing: 0.2em;
}

/* カレンダーエリアの調整 */
.reservation-content {
    max-width: 800px; /* カレンダーが広がりすぎないように制限 */
    margin: 0 auto 60px;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    /* ほんのり影をつけて浮き上がらせる */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

/* 注意書きエリア */
.reservation-note {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    line-height: 1.8;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .reservation-content {
        padding: 20px; /* スマホでは余白を減らす */
    }
}

/* =========================================
   Information Page (Blog List)
   ========================================= */

/* ページ全体：薄いベージュ背景 */
.info-page-wrapper {
    background-color: #f5f2ec; /* Menuセクションと同じ落ち着いたベージュ */
    padding-bottom: 100px;
    min-height: 80vh; /* 記事が少なくてもある程度の高さを確保 */
}

/* タイトル周り */
.info-page-wrapper .entry-header {
    text-align: center;
    padding-top: 60px; /* 余白調整 */
    margin-bottom: 60px;
}

.info-page-wrapper .entry-title {
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 10px;
    font-family: var(--font-serif);
    letter-spacing: 0.1em;
}

.info-page-wrapper .entry-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-light);
    letter-spacing: 0.2em;
}

/* --- グリッドレイアウト --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3列 */
    gap: 40px; /* カード間の隙間 */
    margin-bottom: 60px;
}

/* カードスタイル */
.blog-card {
    background: #fff;
    border-radius: 4px; /* わずかに角丸 */
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03); /* 優しい影 */
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px); /* ふわっと浮く */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.blog-card-link {
    text-decoration: none;
    color: var(--color-text);
    display: block;
    height: 100%;
}

/* サムネイル画像 */
.blog-card-thumb {
    width: 100%;
    aspect-ratio: 16 / 9; /* 3:2の比率で統一 */
    background-color: #e2ded9;
    position: relative;
    overflow: hidden;
}

.blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-thumb img {
    transform: scale(1.05); /* 画像ズーム効果 */
}

/* テキストエリア */
.blog-card-body {
    padding: 25px;
}

.blog-card-date {
    display: block;
    font-family: var(--font-serif);
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.blog-card-title {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    color: #333;
    /* 2行で省略する設定 */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/* --- ページネーションスタイル --- */
.pagination-area {
    text-align: center;
    margin-top: 60px;
}

.pagination-area ul {
    display: inline-flex;
    list-style: none;
    padding: 0;
    gap: 10px;
}

.pagination-area .page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    color: #888;
    text-decoration: none;
    font-family: var(--font-serif);
    font-size: 1rem;
    border-radius: 50%; /* 丸ボタン */
    background-color: #fff;
    transition: all 0.3s;
}

.pagination-area .page-numbers.current,
.pagination-area .page-numbers:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

.pagination-area .dots {
    border: none;
    background: none;
}

/* スマホ対応 */
@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr); /* タブレットは2列 */
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr; /* スマホは1列 */
    }
    .info-page-wrapper .entry-header {
        padding-top: 40px;
        margin-bottom: 40px;
    }
}

/* =========================================
   Contact Page (Contact Form 7)
   ========================================= */

/* ページ全体：薄いベージュ背景 */
.contact-page-wrapper {
    background-color: #f5f2ec;
    padding-bottom: 100px;
    min-height: 80vh;
}

/* タイトル周り（他のページと共通のデザイン） */
.contact-page-wrapper .entry-header {
    text-align: center;
    padding-top: 60px;
    margin-bottom: 50px;
}

.contact-page-wrapper .entry-title {
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 10px;
    font-family: var(--font-serif);
    letter-spacing: 0.1em;
}

.contact-page-wrapper .entry-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-light);
    letter-spacing: 0.2em;
}

/* コンテンツボックス（白い箱） */
.contact-content-box {
    max-width: 700px; /* フォームなので幅を広げすぎない */
    margin: 0 auto;
    background: #fff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.contact-lead {
    text-align: center;
    margin-bottom: 40px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text);
}

/* --- CF7 フォームスタイル --- */
.edel-contact-form .form-row {
    margin-bottom: 30px;
}

/* ラベル */
.edel-contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

/* 必須・任意バッジ */
.required-label,
.any-label {
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 2px;
    margin-left: 8px;
    vertical-align: middle;
}

.required-label {
    background-color: var(--color-accent);
    color: #fff;
}

.any-label {
    background-color: #eee;
    color: #666;
}

/* 入力フィールド（テキスト・メール・電話・セレクト） */
.wpcf7-form-control-wrap {
    display: block; /* エラーメッセージの位置ずれ防止 */
}

.wpcf7 input[type='text'],
.wpcf7 input[type='email'],
.wpcf7 input[type='tel'],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #fdfdfd;
    box-sizing: border-box; /* パディングを含めた幅計算 */
    transition:
        border-color 0.3s,
        box-shadow 0.3s;
    font-family: var(--font-sans);
}

/* フォーカス時のアクセント */
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 2px rgba(142, 128, 117, 0.1);
}

/* テキストエリアの高さ */
.wpcf7 textarea {
    height: 180px;
}

/* 送信ボタンエリア */
.form-submit-area {
    text-align: center;
    margin-top: 40px;
}

/* 送信ボタン（これまでのボタンデザインを踏襲） */
.wpcf7 input[type='submit'] {
    display: inline-block;
    background-color: var(--color-accent);
    color: #fff;
    padding: 15px 60px;
    font-size: 1rem;
    border: 1px solid var(--color-accent);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.1em;
    -webkit-appearance: none; /* iOSでのスタイルリセット */
}

.wpcf7 input[type='submit']:hover {
    background-color: #fff;
    color: var(--color-accent);
}

/* エラーメッセージのスタイル調整 */
.wpcf7-not-valid-tip {
    font-size: 0.8rem;
    color: #cc0000;
    margin-top: 5px;
}

.wpcf7-response-output {
    border-radius: 4px;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 30px !important;
}

/* スマホ対応 */
@media (max-width: 600px) {
    .contact-content-box {
        padding: 40px 20px;
    }

    .wpcf7 input[type='submit'] {
        width: 100%; /* スマホではボタンを押しやすく全幅に */
    }
}

/* =========================================
   8. フッター (修正版2)
   ========================================= */

/* (前半部分は変更なし、スマホ表示以降を修正します) */

.site-footer-custom {
    background-color: #f0ede9;
    padding: 60px 0 40px;
    border-top: 1px solid #e2ded9;
    text-align: center;
    color: var(--color-text);
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-nav {
    margin-bottom: 50px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav a {
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.3s;
    display: block;
}

/* --- パソコン表示 (PC) --- */
@media (min-width: 769px) {
    .footer-nav ul {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }
    .footer-nav i {
        display: none; /* PCではアイコン非表示 */
    }
    .footer-nav span {
        font-family: var(--font-serif);
        font-size: 0.95rem;
        letter-spacing: 0.05em;
        position: relative;
    }
    .footer-nav span::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--color-accent);
        transition: width 0.3s;
    }
    .footer-nav a:hover span::after {
        width: 100%;
    }
}

/* --- スマホ表示 (SP) 修正箇所 --- */
@media (max-width: 768px) {
    .footer-nav ul {
        display: grid;
        /* ★修正：3列→2列に変更して、1つ1つの幅を広げる */
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .footer-nav a {
        background-color: #fff;
        padding: 15px 5px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        min-height: 80px; /* ボタンの高さを揃える */
    }

    .footer-nav i {
        display: block;
        font-size: 1.4rem;
        margin-bottom: 8px;
        color: var(--color-accent);
    }

    .footer-nav span {
        font-size: 0.8rem; /* 文字サイズ調整 */
        line-height: 1;
        font-weight: 500;
        /* ★修正：改行させない設定 */
        white-space: nowrap;
    }
}

/* --- SNSアイコン 修正箇所 --- */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    background-color: #fff;
    text-decoration: none;
    transition: all 0.4s;

    /* ★修正：ここがズレの原因でした */
    letter-spacing: 0; /* 文字間隔をゼロにリセット */
    text-indent: 0; /* インデントも念のためリセット */
    padding: 0;
}

.social-link i,
.social-link svg {
    /* アイコン自体もリセット */
    font-size: 1.4rem;
    display: block;
    line-height: 1;
    margin: 0;
}

.social-link:hover {
    background-color: var(--color-accent);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(142, 128, 117, 0.25);
}

/* コピーライト */
.footer-copyright p {
    font-family: var(--font-serif);
    font-size: 0.75rem;
    color: var(--color-text-light);
    letter-spacing: 0.1em;
    margin: 0;
    opacity: 0.8;
}

/* =========================================
   Terms Page (注意事項ページ)
   ========================================= */

.terms-page-wrapper {
    background-color: #f5f2ec;
    padding-bottom: 100px;
    min-height: 80vh;
}

/* タイトル周り */
.terms-page-wrapper .entry-header {
    text-align: center;
    padding-top: 60px;
    margin-bottom: 50px;
}

.terms-page-wrapper .entry-title {
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 10px;
    font-family: var(--font-serif);
    letter-spacing: 0.1em;
}

.terms-page-wrapper .entry-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-light);
    letter-spacing: 0.2em;
}

/* 本文エリア */
.terms-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.terms-lead {
    text-align: center;
    margin-bottom: 50px;
    font-weight: 500;
}

.terms-section {
    margin-bottom: 40px;
}

.terms-section h3 {
    font-size: 1.1rem;
    color: var(--color-accent);
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-weight: 600;
}

.terms-section p {
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.terms-section ul {
    background: #f9f9f9;
    padding: 20px 20px 20px 40px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.terms-section li {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.terms-caution {
    color: #cc0000;
    font-weight: 500;
    background: #fff5f5;
    padding: 2px 5px;
}

.terms-note {
    font-size: 0.85rem;
    color: #888;
}

.terms-end {
    text-align: center;
    margin-top: 50px;
    font-weight: 500;
}

/* =========================================
   簡易注意事項ショートコード用スタイル
   ========================================= */
.simple-terms-box {
    background-color: #fffaf5; /* 薄いオレンジベージュ */
    border: 1px solid #e0c3a8;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    font-size: 0.9rem;
}

.simple-terms-title {
    font-size: 1rem;
    color: var(--color-accent);
    margin-bottom: 15px;
    border-bottom: 1px dashed #d4a373;
    padding-bottom: 10px;
    font-weight: 600;
}

.simple-terms-content dl {
    margin: 0;
}

.simple-terms-content dt {
    font-weight: bold;
    color: #555;
    margin-top: 10px;
    margin-bottom: 5px;
}
.simple-terms-content dt:first-child {
    margin-top: 0;
}

.simple-terms-content dd {
    margin-left: 0;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #666;
}

.color-alert {
    color: #cc0000;
}

.simple-terms-link {
    text-align: right;
    margin-top: 10px;
    font-size: 0.85rem;
}
.simple-terms-link a {
    color: var(--color-accent);
    text-decoration: underline;
}

/* スマホ対応 */
@media (max-width: 600px) {
    .terms-content {
        padding: 40px 20px;
    }
}

/* =========================================
   Privacy Policy Page
   ========================================= */

.privacy-page-wrapper {
    background-color: #f5f2ec;
    padding-bottom: 100px;
    min-height: 80vh;
}

/* タイトル周り */
.privacy-page-wrapper .entry-header {
    text-align: center;
    padding-top: 60px;
    margin-bottom: 50px;
}

.privacy-page-wrapper .entry-title {
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 10px;
    font-family: var(--font-serif);
    letter-spacing: 0.1em;
}

.privacy-page-wrapper .entry-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-light);
    letter-spacing: 0.2em;
}

/* 本文エリア */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.privacy-lead {
    margin-bottom: 40px;
    line-height: 1.8;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h3 {
    font-size: 1.1rem;
    color: var(--color-accent);
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-weight: 600;
}

.privacy-section p {
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.privacy-section ol {
    background: #f9f9f9;
    padding: 20px 20px 20px 40px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.privacy-section li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.privacy-end {
    text-align: right;
    margin-top: 50px;
    font-weight: 500;
}

/* スマホ対応 */
@media (max-width: 600px) {
    .privacy-content {
        padding: 40px 20px;
    }
}
