/* ========================================
   お花の定期便 LP - WordPress実装版
   株式会社読売DC × ラトリエパヴァーヌ
   
   @package SANGO Child
   @description LP専用スタイルシート（SANGO既存CSS影響回避）
   @version 2.0.1-WP
   ======================================== */

/* ========================================
   WordPress / SANGO テーマ リセット
   ======================================== */
/* LP専用ページのSANGO既存CSSの影響を最小限に */
/*#lp-yomiuri-dc-wrapper,
#lp-yomiuri-dc-wrapper * {
    all: unset;
    display: revert;
    box-sizing: border-box;
}

#lp-yomiuri-dc-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #fdfbf7;
}*/

/* ========================================
   リセット・基本設定
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    background-color: #fdfbf7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* LP専用ラッパー */
.lp-yomiuri-dc {
    width: 100%;
    overflow-x: hidden;
}

/* ========================================
   共通コンポーネント
   ======================================== */

/* セクションコンテナ（中央配置・最大幅） */
.section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* セクション共通スタイル */
section {
    padding: 80px 0;
}

/* セクションラベル */
.section-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #d4a574;
    text-align: center;
    margin-bottom: 12px;
    text-transform: uppercase;
}

/* セクションタイトル */
.section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.5;
}

/* セクションサブタイトル */
.section-subtitle {
    font-size: 15px;
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}

/* ボタン共通 */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #e8a89a 0%, #d4a574 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
    background: #fff;
    color: #d4a574;
    border: 2px solid #d4a574;
}

.btn-secondary:hover {
    background: #d4a574;
    color: #fff;
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

/* スマホのみ表示 */
.sp-only {
    display: none;
}

@media (max-width: 767px) {
    .sp-only {
        display: inline;
    }
}

/* ========================================
   安心バンド（最上部）
   ======================================== */
.trust-band {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 16px 0;
}

.trust-band-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.trust-logo-left img,
.trust-logo-right img {
    max-height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

.trust-logo-left a,
.trust-logo-right a {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.trust-logo-left a:hover img,
.trust-logo-right a:hover img {
    opacity: 0.7;
}

.trust-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: center;
    line-height: 1.6;
}

.trust-logo-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.trust-subtitle {
    font-size: 11px;
    color: #666;
}

@media (max-width: 767px) {
    .trust-band-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .trust-logo-left img,
    .trust-logo-right img {
        max-height: 32px;
    }
    
    .trust-title {
        font-size: 13px;
    }
    
    .trust-logo-right {
        align-items: center;
    }
}

/* ========================================
   Hero（フルスクリーン）
   ======================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4a574 0%, #b89968 100%);
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

@media (max-width: 767px) {
    .hero {
        min-height: 500px;
        height: 80vh;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta-group .btn-primary,
    .hero-cta-group .btn-secondary {
        width: 100%;
        max-width: 320px;
    }
}

/* ========================================
   3つの特徴（01/02/03カードUI）
   ======================================== */
.features {
    background: #f8f6f2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.feature-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    font-weight: 700;
    color: #d4a574;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8a89a 0%, #d4a574 100%);
    border-radius: 50%;
    color: #fff;
    font-size: 32px;
}

.feature-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.feature-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ========================================
   読売DC特典（ゴールド帯）
   ======================================== */
.benefit {
    background: linear-gradient(135deg, #d4a574 0%, #b89968 100%);
    padding: 40px 0;
}

.benefit-ribbon {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefit-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #fff;
    text-align: center;
}

.benefit-icon {
    font-size: 48px;
}

.benefit-text {
    text-align: left;
}

.benefit-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit-desc {
    font-size: 14px;
    opacity: 0.95;
}

@media (max-width: 767px) {
    .benefit-content {
        flex-direction: column;
        gap: 12px;
    }
    
    .benefit-text {
        text-align: center;
    }
    
    .benefit-title {
        font-size: 18px;
    }
}

/* ========================================
   料金・プラン（写真付きカードUI）
   ======================================== */
.plans {
    background: #fff;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.plan-card {
    background: #fdfbf7;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.plan-recommend {
    border: 3px solid #d4a574;
}

.plan-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #d4a574;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
}

.plan-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.plan-card:hover .plan-image img {
    transform: scale(1.05);
}

.plan-info {
    padding: 28px 24px;
    text-align: center;
}

.plan-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.plan-label {
    font-size: 14px;
    font-weight: 400;
    color: #d4a574;
    margin-left: 8px;
}

.plan-price {
    font-size: 16px;
    margin-bottom: 12px;
    color: #333;
}

.price-num {
    font-family: 'Noto Serif JP', serif;
    font-size: 32px;
    font-weight: 700;
    color: #d4a574;
}

.price-tax {
    font-size: 13px;
    color: #666;
    margin-left: 4px;
}

.plan-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .plan-image {
        height: 220px;
    }
}

/* ========================================
   プラン補足＋キャンペーン
   ======================================== */
.plan-details-campaign {
    background: #fff;
    padding: 60px 0;
}

/* プラン補足情報 */
.plan-notes {
    background: #f8f6f2;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.plan-note-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-note-list li {
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.plan-note-list i {
    color: #d4a574;
    margin-top: 3px;
    flex-shrink: 0;
}

/* キャンペーンバナー */
.campaign-banner {
    background: linear-gradient(135deg, #f9f5ed 0%, #fff9f0 100%);
    border: 3px solid #d4a574;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 6px 25px rgba(212, 165, 116, 0.2);
    position: relative;
    overflow: hidden;
}

.campaign-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.campaign-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}

.campaign-icon {
    font-size: 48px;
}

.campaign-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 28px;
    font-weight: 700;
    color: #d4a574;
    position: relative;
}

.campaign-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.campaign-item {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    border: 2px solid #e8e0d5;
    position: relative;
}

.campaign-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4a574 0%, #b89968 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.campaign-text {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
}

.campaign-text strong {
    color: #d4a574;
    font-weight: 600;
}

.campaign-note {
    text-align: center;
    font-size: 13px;
    color: #666;
    font-style: italic;
}

@media (max-width: 767px) {
    .campaign-banner {
        padding: 28px 20px;
    }
    
    .campaign-header {
        flex-direction: column;
        gap: 12px;
    }
    
    .campaign-title {
        font-size: 22px;
        text-align: center;
    }
    
    .campaign-content {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ========================================
   お届けの流れ（3STEP）
   ======================================== */
.flow {
    background: #f8f6f2;
}

.flow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.flow-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
}

.step-number {
    font-family: 'Noto Serif JP', serif;
    font-size: 14px;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 16px;
    letter-spacing: 0.1em;
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    font-size: 40px;
    color: #d4a574;
}

.step-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.step-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.flow-arrow {
    font-size: 24px;
    color: #d4a574;
}

@media (max-width: 767px) {
    .flow-steps {
        flex-direction: column;
        gap: 32px;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
}

/* ========================================
   安心サポート
   ======================================== */
.support {
    background: #fff;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 50px;
    margin-bottom: 40px;
}

.support-item {
    text-align: center;
}

.support-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f6f2 0%, #fff 100%);
    border-radius: 50%;
    border: 2px solid #e5e5e5;
    font-size: 32px;
    color: #d4a574;
}

.support-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.support-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.support-note {
    text-align: center;
    padding: 20px;
    background: #f8f6f2;
    border-radius: 8px;
}

.support-note p {
    font-size: 14px;
    color: #666;
}

.support-note i {
    color: #d4a574;
    margin-right: 6px;
}

@media (max-width: 767px) {
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* ========================================
   お客様の声
   ======================================== */
.voices {
    background: #f8f6f2;
}

.voices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px;
}

.voice-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.voice-avatar {
    font-size: 48px;
    color: #d4a574;
    text-align: center;
}

.voice-text {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    position: relative;
    padding-left: 16px;
    border-left: 3px solid #d4a574;
}

.voice-author {
    font-size: 13px;
    color: #999;
    text-align: right;
}

@media (max-width: 767px) {
    .voices-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ========================================
   アンケート結果（2つのグラフ）
   ======================================== */
.survey {
    background: #fff;
}

.survey-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 50px;
}

.survey-item {
    text-align: center;
}

.survey-subtitle {
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 24px;
    color: #333;
}

.survey-chart-wrapper {
    max-width: 300px;
    margin: 0 auto 24px;
}

#satisfactionChart {
    max-width: 300px;
    margin: 0 auto;
}

/* 実感した魅力（ランキング） */
.survey-ranking {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto 24px;
}

.ranking-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f8f6f2;
    padding: 20px;
    border-radius: 12px;
}

.ranking-badge {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.ranking-badge.gold {
    background: linear-gradient(135deg, #d4a574 0%, #b89968 100%);
}

.ranking-badge.silver {
    background: linear-gradient(135deg, #e8a89a 0%, #d4a574 100%);
}

.ranking-text {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    text-align: left;
}

.survey-result-text {
    font-size: 15px;
    color: #d4a574;
    font-weight: 600;
}

@media (max-width: 767px) {
    .survey-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ========================================
   過去のお花ギャラリー（Swiper）
   ======================================== */
.gallery {
    background: #f8f6f2;
    padding: 80px 0 100px;
}

.gallerySwiper {
    margin-top: 50px;
    padding: 0 0 50px 0;
}

.gallery-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.gallery-caption {
    padding: 20px;
    text-align: center;
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.swiper-button-next,
.swiper-button-prev {
    color: #d4a574;
}

.swiper-pagination-bullet {
    background: #d4a574;
}

/* ========================================
   FAQ（アコーディオン）
   ======================================== */
.faq {
    background: #fff;
}

.faq-list {
    max-width: 900px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e5e5e5;
}

.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #fdfbf7;
}

.faq-q {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d4a574;
    color: #fff;
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50%;
}

.faq-text {
    flex: 1;
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.faq-icon {
    flex-shrink: 0;
    font-size: 14px;
    color: #d4a574;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px 0 72px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px 72px;
}

.faq-answer-content {
    display: flex;
    gap: 16px;
}

.faq-answer-content {
    display: flex;
    gap: 16px;
}

.faq-a {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f6f2;
    color: #d4a574;
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50%;
}

.faq-answer p {
    flex: 1;
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    padding-top: 5px;
}

/* ========================================
   最終CTA
   ======================================== */
.final-cta {
    background: linear-gradient(135deg, #fdfbf7 0%, #f8f6f2 100%);
    padding: 100px 0;
    text-align: center;
}

.cta-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .final-cta {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 320px;
    }
}

/* ========================================
   フッター（会社情報）
   ======================================== */
.footer {
    background: #333;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-info {
    text-align: center;
}

.footer-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-company {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-address,
.footer-tel,
.footer-hours {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 6px;
}

.footer-tel i {
    margin-right: 6px;
}

.footer-note {
    text-align: center;
}

.footer-note p {
    font-size: 12px;
    color: #999;
    line-height: 1.6;
}

.footer-copyright {
    border-top: 1px solid #555;
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
}

.footer-copyright p {
    font-size: 12px;
    color: #999;
}

/* ========================================
   スマホ固定CTAバー
   ======================================== */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 12px 16px;
    display: none;
    gap: 12px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.mobile-cta-bar.show {
    display: flex;
    transform: translateY(0);
}

.mobile-cta-btn {
    flex: 1;
    padding: 14px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.mobile-cta-btn.primary {
    background: linear-gradient(135deg, #e8a89a 0%, #d4a574 100%);
    color: #fff;
}

.mobile-cta-btn.secondary {
    background: #fff;
    color: #d4a574;
    border: 2px solid #d4a574;
}

@media (min-width: 768px) {
    .mobile-cta-bar {
        display: none !important;
    }
}

/* ========================================
   レスポンシブ調整
   ======================================== */
@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-label {
        font-size: 12px;
    }
}