@charset "UTF-8";

/* =========================================
   Base Settings (全体設定)
========================================= */
:root {
    --color-main: #D4A39A; 
    --color-bg: #FCFAF8;   
    --color-text: #4A403D; 
    --color-accent: #8EAE7B; 
    --font-heading: 'Shippori Mincho', serif; 
    --font-body: 'Noto Sans JP', sans-serif;  
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

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

/* =========================================
   Header (ヘッダー)
========================================= */
.header {
    background-color: rgba(252, 250, 248, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-main);
    letter-spacing: 0.1em;
}

.global-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.global-nav a {
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.global-nav a:hover {
    color: var(--color-main);
}

.btn-header-reserve {
    background-color: var(--color-main);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.btn-header-reserve:hover {
    opacity: 0.8;
}

/* =========================================
   Hero Section (ファーストビュー)
========================================= */
.hero {
    position: relative;
    height: 70vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    margin-top: 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(253, 247, 245, 0.7) 0%, rgba(245, 234, 230, 0.3) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background-color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    border-left: 4px solid var(--color-main);
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.hero-badge span {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-main);
    margin-bottom: 2px;
}

.hero-badge p {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 38px;
    line-height: 1.5;
    margin-bottom: 24px;
    color: var(--color-text);
}

.hero-title span {
    color: var(--color-main);
    font-size: 48px;
}

.hero-text {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 40px;
}

.hero-cta .btn-line {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(142, 174, 123, 0.4);
    transition: transform 0.3s ease;
}

.hero-cta .btn-line:hover {
    transform: translateY(-3px);
}

.hero-cta .btn-sub {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 4px;
}

/* =========================================
   共通クラス
========================================= */
.section {
    padding: 80px 20px;
}

.inner {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 28px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-text);
}

.section-lead {
    text-align: center;
    margin-bottom: 40px;
    font-size: 15px;
    line-height: 1.8;
}

.btn-view-more {
    display: inline-block;
    padding: 12px 48px;
    border: 1px solid var(--color-main);
    color: var(--color-main);
    background-color: transparent;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-view-more:hover {
    background-color: var(--color-main);
    color: #fff;
}

.btn-wrapper {
    text-align: center;
    margin-top: 40px;
}

/* =========================================
   Pain Points (共感・悩み)
========================================= */
.pain-points {
    background-color: #fff;
}

.trouble-cards {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.trouble-card {
    flex: 1;
    background-color: var(--color-bg);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.trouble-icon {
    font-size: 32px;
    text-align: center;
    margin-bottom: 10px;
}

.trouble-title {
    font-family: var(--font-heading);
    font-size: 20px;
    text-align: center;
    color: var(--color-main);
    margin-bottom: 24px;
    border-bottom: 2px dashed #E5D5D1;
    padding-bottom: 10px;
}

.trouble-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trouble-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.6;
}

.trouble-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    background-color: var(--color-main);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.solution-box {
    text-align: center;
    background-color: #F8EFEA;
    padding: 30px;
    border-radius: 8px;
    border-left: 6px solid var(--color-main);
}

.solution-box p {
    font-family: var(--font-heading);
    font-size: 22px;
    margin: 0;
    line-height: 1.6;
}

.solution-box span {
    color: var(--color-main);
    font-size: 26px;
    font-weight: 700;
}

/* =========================================
   Menu Section (メニュー・料金)
========================================= */
.menu {
    background-color: var(--color-bg);
}

.menu-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.menu-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
}

.menu-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-tag {
    display: inline-block;
    background-color: #F8EFEA;
    color: var(--color-main);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.menu-title {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--color-text);
}

.menu-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.menu-price {
    font-size: 14px;
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.menu-price strong {
    color: var(--color-main);
    font-size: 18px;
}

/* =========================================
   Voice Section (お客様の声)
========================================= */
.voice {
    background-color: #fff;
}

.voice-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.voice-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background-color: var(--color-bg);
    padding: 30px;
    border-radius: 12px;
    position: relative;
}

.voice-card::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 40px;
    border-width: 15px 15px 0 0;
    border-style: solid;
    border-color: var(--color-bg) transparent transparent transparent;
}

.voice-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    border-bottom: 1px solid #E5D5D1;
    padding-bottom: 8px;
}

.voice-age {
    font-weight: 700;
    color: var(--color-text);
}

.voice-menu {
    font-size: 12px;
    background-color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    color: var(--color-main);
}

.voice-catch {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-main);
    margin-top: 0;
    margin-bottom: 12px;
}

.voice-text {
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* =========================================
   FAQ Section (よくある質問)
========================================= */
.faq {
    position: relative;
    overflow: hidden;
}

.faq-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/faq-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.faq-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(253, 247, 245, 0.6) 0%, rgba(245, 234, 230, 0.6) 100%);
    z-index: -1;
}

.faq-content {
    position: relative;
    z-index: 1;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
}

.faq-q {
    position: relative;
    padding: 20px 20px 20px 60px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    cursor: default;
    border-bottom: 1px dashed #E5D5D1;
}

.faq-a {
    position: relative;
    padding: 20px 20px 20px 60px;
    font-size: 14.5px;
    line-height: 1.8;
    margin: 0;
    color: #555;
    background-color: #FAFAFA;
}

.faq-icon-q, .faq-icon-a {
    position: absolute;
    left: 20px;
    top: 20px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
}

.faq-icon-q { color: var(--color-main); }
.faq-icon-a { color: var(--color-accent); }

/* FAQ内のボタン調整 */
.faq .btn-view-more {
    background-color: #fff;
    border: 2px solid #B8867D;
    color: #B8867D;
    font-weight: 700;
}

.faq .btn-view-more:hover {
    background-color: #B8867D;
    color: #fff;
    border-color: #B8867D;
}

/* =========================================
   Profile Section (プロフィール)
========================================= */
.profile {
    background-color: var(--color-bg);
}

.profile-content {
    display: flex;
    align-items: center;
    gap: 60px;
    background-color: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.profile-img {
    flex: 0 0 250px;
}

.profile-text {
    flex: 1;
}

.profile-name {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 8px;
    color: var(--color-text);
}

.profile-career {
    font-weight: 700;
    color: var(--color-main);
    margin-bottom: 24px;
}

.profile-desc {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 0;
}

/* =========================================
   Self Care Section (セルフケア)
========================================= */
.self-care {
    background-color: #F8EFEA; 
}

.care-cards {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.care-card {
    flex: 1;
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border-top: 4px solid var(--color-main);
}

.care-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.care-title {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-main);
    margin-bottom: 16px;
    line-height: 1.5;
}

.care-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text);
    text-align: left;
    margin: 0;
}

/* =========================================
   Access Section (アクセス)
========================================= */
.access {
    background-color: #fff;
}

.access-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.access-info {
    flex: 1;
}

.access-shop-name {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-main);
    margin-bottom: 20px;
}

.access-address {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 500;
}

.access-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.access-list li {
    margin-bottom: 12px;
    font-size: 14px;
}

.access-list span {
    font-weight: 700;
    width: 90px;
    display: inline-block;
}

.payment-info {
    background-color: var(--color-bg);
    padding: 15px 20px;
    border-radius: 8px;
}

.payment-title {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 5px;
}

.payment-text {
    font-size: 13px;
    margin: 0;
}

.access-map {
    flex: 1;
}

/* =========================================
   Footer (フッター)
========================================= */
.footer {
    background-color: #4A403D;
    color: #fff;
    padding: 60px 20px 100px;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.footer-nav a {
    font-size: 14px;
}

.copyright {
    font-size: 12px;
    opacity: 0.6;
}

/* =========================================
   Fixed CTA (スマホ固定ボタン)
========================================= */
.fixed-cta {
    display: none; 
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px 15px;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.btn-fixed-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent);
    color: #fff;
    padding: 10px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
}

.btn-fixed-line span {
    font-size: 10px;
    font-weight: 400;
}

/* =========================================
   Animation (スクロールアニメーション高度化)
========================================= */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* =========================================
   Hamburger Menu & SP Styling
========================================= */
.hamburger { display: none; }
.sp-only { display: none; }

/* レスポンシブ対応 (スマホ向け) */
@media screen and (max-width: 768px) {
    .hero {
        height: auto; /* 画面サイズ固定ではなく、コンテンツ量に合わせる */
        min-height: 30svh; /* 画面の半分の高さは最低限確保 */
        padding-top: 100px; /* ヘッダーに被らないよう上部に余白 */
        padding-bottom: 50px;
    }
    
    /* 高さが狭まった分、中の要素の余白やサイズも少しスッキリさせる */
    .hero-badge {
        margin-bottom: 12px;
    }
    .hero-title {
        font-size: 22px; /* 少し小さく */
        margin-bottom: 12px;
    }
    .hero-title span {
        font-size: 26px;
    }
    .hero-text {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 24px;
    }
    .hero-cta .btn-line {
        padding: 12px 30px;
        font-size: 15px;
    }

    .trouble-cards, .menu-cards, .care-cards, .access-container {
        flex-direction: column;
    }
    .voice-card {
        flex: 1 1 100%;
    }
    .profile-content {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
    }
    .profile-img {
        flex: 0 0 180px;
        margin: 0 auto;
    }
    .profile-text {
        text-align: center;
    }
    .access-map {
        width: 100%;
    }
    .faq-q, .faq-a {
        padding: 15px 15px 15px 45px;
        font-size: 14px;
    }
    .faq-icon-q, .faq-icon-a {
        left: 15px;
        top: 15px;
        font-size: 18px;
    }
    .footer-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    .fixed-cta {
        display: block;
    }

    .btn-header-reserve.pc-only { display: none; }
    .sp-only { display: block; }
    
    .hamburger {
        display: block;
        position: relative;
        width: 28px;
        height: 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001; 
        outline: none;
    }
    
    .hamburger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--color-main); 
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .hamburger span:nth-of-type(1) { top: 0; }
    .hamburger span:nth-of-type(2) { top: 9px; }
    .hamburger span:nth-of-type(3) { bottom: 0; }
    
    .hamburger.is-active span:nth-of-type(1) { transform: translateY(9px) rotate(45deg); }
    .hamburger.is-active span:nth-of-type(2) { opacity: 0; }
    .hamburger.is-active span:nth-of-type(3) { transform: translateY(-9px) rotate(-45deg); }

    .global-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(253, 247, 245, 0.98);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .global-nav.is-active {
        opacity: 1;
        visibility: visible;
    }
    
    .global-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .global-nav a {
        font-size: 18px;
        font-weight: 700;
        color: var(--color-text);
    }
    
    .sp-only .btn-header-reserve {
        display: inline-block;
        margin-top: 20px;
        background-color: var(--color-main);
        color: #fff;
    }
}

/* =========================================
   Lower Pages Common (下層ページ共通)
========================================= */
/* 下層ページのヘッダー帯 */
.page-header {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px; /* ヘッダーの高さ分 */
    background-color: #F5EAE6;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* TODO: 下層ヘッダー用の薄い背景画像を後で設定 */
    background-image: url('../images/mv-bg.png'); 
    background-size: cover;
    background-position: center;
    opacity: 0.3; /* 少し透かしてテキストを読みやすく */
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--color-main);
    letter-spacing: 0.05em;
    margin: 0 0 10px;
}

.page-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.1em;
    margin: 0;
}

.main-content {
    padding-bottom: 80px;
}

/* =========================================
   About Page (初めての方へ)
========================================= */
.concept-section {
    background-color: var(--color-bg);
}

.concept-box {
    background-color: #fff;
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    text-align: center;
}

.concept-title {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.concept-title span {
    color: var(--color-main);
    font-size: 32px;
}

.concept-text {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 24px;
}

.concept-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px;
    display: inline-block;
    text-align: left;
    background-color: #F8EFEA;
    padding: 24px 40px;
    border-radius: 8px;
}

.concept-list li {
    font-size: 16px;
    margin-bottom: 12px;
}
.concept-list li:last-child { margin-bottom: 0; }
.concept-list strong { color: var(--color-main); font-size: 18px; margin-right: 8px; }

.story-section {
    background-color: #fff;
}

.story-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.story-img {
    flex: 0 0 40%;
}

.story-text {
    flex: 1;
}

.story-title {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--color-main);
    margin-bottom: 30px;
    line-height: 1.5;
}

.story-text p {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 20px;
}

.story-sign {
    font-family: var(--font-heading);
    font-size: 24px !important;
    text-align: right;
    margin-top: 40px;
    color: var(--color-main);
}

/* レスポンシブ対応 (スマホ向け) */
@media screen and (max-width: 768px) {
    .page-header { height: 180px; }
    .page-title { font-size: 28px; }
    
    .concept-box { padding: 40px 20px; }
    .concept-title { font-size: 22px; }
    .concept-title span { font-size: 26px; }
    .concept-list { padding: 20px; width: 100%; box-sizing: border-box; }
    .concept-list li { font-size: 14px; }
    
    .story-content { flex-direction: column; gap: 40px; }
    .story-img { width: 80%; margin: 0 auto; }
    .story-title { font-size: 24px; text-align: center; }
}

/* =========================================
   Menu Detail Page (メニュー詳細ページ)
========================================= */
.menu-detail-section {
    background-color: var(--color-bg);
}

.menu-detail-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    display: flex;
    gap: 40px;
    padding: 40px;
    margin-bottom: 40px;
}

.menu-detail-img {
    flex: 0 0 40%;
}

.menu-detail-text {
    flex: 1;
}

@media screen and (max-width: 768px) {
    .menu-detail-card {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
    }
}

/* =========================================
   Simple Menu (写真なし・簡素なメニュー)
========================================= */
.simple-menu-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.simple-menu-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    padding: 30px;
    border-left: 4px solid var(--color-main); /* 左にアクセントカラーの線 */
}

.simple-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px dashed #E5D5D1;
    padding-bottom: 15px;
}

.simple-menu-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-main);
    margin: 0;
}

.menu-note {
    font-size: 12px;
    color: #888;
    margin: 0;
}

/* スマホ用レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .simple-menu-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .simple-menu-card {
        padding: 20px;
    }
}

/* =========================================
   About Page: NG Actions (NG行動セクション)
========================================= */
.ng-action-section {
    background-color: #fff;
    padding-top: 60px;
}

.ng-cards {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.ng-card {
    flex: 1;
    background-color: #FDF7F5; /* 薄い赤/オレンジ系の背景で注意を引く */
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border-top: 4px solid #D4A39A; /* メインカラーのライン */
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.ng-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.ng-title {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: 16px;
    line-height: 1.6;
    border-bottom: 1px dashed #E5D5D1;
    padding-bottom: 15px;
}

.ng-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    text-align: left;
    margin: 0;
}

.ng-conclusion {
    margin-top: 50px;
    text-align: center;
    background-color: var(--color-bg);
    padding: 30px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.8;
}

.ng-conclusion strong {
    color: var(--color-main);
    font-size: 18px;
}

/* レスポンシブ対応 (スマホ向け) */
@media screen and (max-width: 768px) {
    .ng-cards {
        flex-direction: column;
        gap: 20px;
    }
}

/* =========================================
   Payment Brands Image (決済ブランド画像)
========================================= */
.payment-brands {
    margin-top: 10px;
    background-color: #fff; /* 画像の背景が白なので同化させる */
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #E5D5D1;
    text-align: center;
}

.payment-brands img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* =========================================
   Access Section 修正 & 追加
========================================= */

/* マップを枠内に収める */
.map-iframe-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    line-height: 0; /* 下の隙間を消す */
}

/* アクセスエリア内のボタン */
.access-cta {
    margin-bottom: 30px;
}

.access-cta .btn-line {
    display: inline-block;
    background-color: var(--color-accent); /* 温活をイメージするグリーン系 */
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 4px 12px rgba(142, 174, 123, 0.3);
    transition: all 0.3s ease;
    width: 100%; /* スマホで押しやすく */
    box-sizing: border-box;
}

.access-cta .btn-line:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* 完全予約制のテキストを少し強調 */
.access-list strong {
    color: var(--color-main);
    font-size: 16px;
}

@media screen and (min-width: 769px) {
    .access-cta .btn-line {
        width: auto; /* PCでは文字量に合わせた幅に */
    }
}

/* =========================================
   【修正】スマホ用下部追従ボタンの見切れ対応
========================================= */

/* 親要素の調整：左右に余白を確保し、画面端にくっつきすぎないようにする */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999; /* 他の要素より前面に */
    padding: 10px 20px; /* 上下に10px、左右に20pxの余白を確保 */
    box-sizing: border-box; /* パディングを含めて幅を計算 */
}

/* ボタン自体の調整：幅をレスポンシブにし、最大幅を設定して中央配置 */
.btn-fixed-line {
    display: flex; /* テキストを中央揃えにするため */
    flex-direction: column; /* テキストを縦並びにするため */
    align-items: center; /* 左右中央揃え */
    justify-content: center; /* 上下中央揃え */
    background-color: var(--color-accent); /* 温活をイメージするグリーン系 */
    color: #fff;
    padding: 15px; /* ボタン内の余白 */
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 4px 12px rgba(142, 174, 123, 0.3);
    transition: all 0.3s ease;
    
    /* 【超重要】見切れ対策 */
    width: 100%; /* 親要素の幅いっぱいに伸縮するようにする */
    max-width: 350px; /* 必要以上に大きくならないように最大幅を設定（お好みで調整可） */
    margin-left: auto; /* 左右中央配置のためのマジック */
    margin-right: auto; /* 左右中央配置のためのマジック */
    box-sizing: border-box; /* パディングを含めて幅を計算 */
}

/* スマホ表示ではテキストを適切なサイズにする */
.btn-fixed-line span {
    font-size: 11px; /* 「初回50%OFF」の文字サイズ */
    margin-bottom: 3px;
}