/* ==========================================
   Leggero（レジェロ）- Effortless Body Studio
   カラースキーム: ベージュ/ゴールド系（落ち着いた優雅さ）
   Updated: 2025-01-05 18:00 - CSS Cache Fix v4
   ========================================== */

/* CSS変数定義 */
:root {
    /* ベージュ/ゴールド系カラー（落ち着いた優雅さ） */
    --primary-color: #D4B896;        /* ゴールドベージュ */
    --primary-dark: #C4A67E;         /* 濃いゴールドベージュ */
    --primary-light: #E8D9C5;        /* 薄いベージュ */
    
    /* 背景カラー（アイボリー/ベージュ系） */
    --bg-base: #F9F7F4;
    --bg-alt: #F5F1ED;
    --bg-section: #FFF9F3;
    
    /* アクセントカラー */
    --accent-gold: #C9A885;          /* ブラウンゴールド */
    --accent-grey: #9B8B7E;
    
    /* テキストカラー */
    --text-dark: #3A3A3A;
    --text-medium: #6B6B6B;
    --text-light: #8C8C8C;
    
    /* その他 */
    --white: #FFFFFF;
    --shadow: rgba(212, 184, 150, 0.15);      /* ベージュ系シャドウ */
    --shadow-dark: rgba(196, 166, 126, 0.25); /* 濃いベージュシャドウ */
    
    /* フォント */
    --font-main: 'Noto Sans JP', sans-serif;
    --font-accent: 'Playfair Display', serif;
}

/* ==========================================
   基本設定
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 横スクロール防止 */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-base);
    line-height: 1.75;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100%;
}

@media (max-width: 767px) {
    * {
        box-sizing: border-box;
        max-width: 100%;
    }
    
    body {
        font-size: 15px;
        line-height: 1.8;
        padding: 0;
        margin: 0;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

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

/* グローバルリスト設定 */
ul, ol {
    padding-left: 0;
    margin-left: 0;
}

ul li, ol li {
    list-style-position: inside;
    padding-left: 0;
    margin-left: 0;
}

/* カスタムリストマーカー用の設定 */
ul[style*="list-style: none"],
ul.custom-list {
    list-style: none;
}

img[onerror] {
    min-height: 1px;
}

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

/* ==========================================
   ヘッダー（ロゴ配置）
   ========================================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    padding: 15px 0;
}

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

/* ヘッダーロゴ */
.logo {
    display: inline-block;
    line-height: 0;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

/* ナビゲーション */
header nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

header nav a {
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
}

header nav a:not(.cta-btn):hover {
    color: var(--primary-color);
}

header nav a:not(.cta-btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

header nav a:not(.cta-btn):hover::after {
    width: 100%;
}

header nav .cta-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
}

header nav .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-dark);
}

/* レスポンシブテキスト用 */
.mobile-block {
    display: inline;
}

/* PC版では.mobile-brを非表示 */
.mobile-br {
    display: none;
}

@media (max-width: 767px) {
    /* スマホ版基本設定 */
    html {
        overflow-x: hidden;
        max-width: 100%;
        width: 100%;
    }
    
    body {
        overflow-x: hidden;
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    p, h1, h2, h3, h4, h5, h6, li, div {
        padding-left: 5px !important;
        padding-right: 5px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .mobile-block {
        display: block;
    }
    
    /* スマホ版では.mobile-brを表示（改行として機能） */
    .mobile-br {
        display: block;
    }
    
    .container {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 20px !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
        margin: 0 auto !important;
    }
    
    section {
        max-width: 100% !important;
        width: 100% !important;
        padding: 40px 0 !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    section > .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* スマホ対応 */
@media (max-width: 767px) {
    .logo img {
        height: 35px;
    }
    
    header {
        padding: 10px 0;
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    header nav {
        gap: 10px;
    }
    
    header nav a:not(.cta-btn) {
        display: none;
    }
    
    header nav .cta-btn {
        padding: 8px 12px;
        font-size: 11px;
        white-space: nowrap;
    }
}

/* ==========================================
   ヒーロースライダー（トップバナー）
   ========================================== */

.hero-slider {
    margin-top: 80px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* メインメッセージ（画像より上に固定表示） */
.hero-main-message {
    text-align: center;
    padding: 60px 20px 40px;
    background: var(--bg-base);
}

.hero-main-message h1 {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.85;
    color: var(--text-dark);
    letter-spacing: 0.08em;
    font-family: var(--font-main);
    max-width: 900px;
    margin: 0 auto;
}

/* 画像エリア */
.hero-image-area {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.hero-image-area .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-image-area .slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

/* 画像上のキャプション - レビナスタイル */
.slide-caption {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.slide-caption p {
    color: var(--white);
    font-size: 1.4rem;
    line-height: 1.8;
    font-weight: 500;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6), 
                 0 4px 40px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.05em;
}

/* テキストエリア */
.hero-text-area {
    background: var(--white);
    padding: 60px 40px;
}

.hero-text-area .slide-content {
    display: none;
    text-align: center;
    color: var(--text-dark);
}

.hero-text-area .slide-content.active {
    display: block;
}

.slide-content h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.5;
    color: var(--text-dark);
    text-shadow: none;
    word-break: keep-all;
    /* 日本語の単語を途中で改行しない */
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--text-dark);
    text-shadow: none;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-medium);
    text-shadow: none;
}

/* CTAエリア（全体のサブメッセージ + ボタン） */
.hero-cta-area {
    background: var(--bg-base);
    padding: 50px 40px 60px;
    text-align: center;
}

.hero-sub-message {
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.95;
    color: var(--text-dark);
    margin-bottom: 30px;
    letter-spacing: 0.05em;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* スライダーコントロール */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: none;
    color: var(--text-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-control:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.slider-control.prev {
    left: 20px;
}

.slider-control.next {
    right: 20px;
}

.slider-control i {
    font-size: 20px;
}

/* ドットナビゲーション */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--white);
    transform: scale(1.2);
}

/* スマホ対応 */
@media (max-width: 767px) {
    .hero-slider {
        margin-top: 60px;
    }
    
    .hero-main-message {
        padding: 30px 8px 25px;
        box-sizing: border-box;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-main-message h1 {
        font-size: 1.4rem;
        line-height: 1.85;
        letter-spacing: 0.03em;
    }
    
    .hero-image-area {
        height: 50vh;
        min-height: 300px;
    }
    
    .slide-image img {
        object-position: 40% center;
    }
    
    .hero-cta-area {
        padding: 30px 8px 40px;
        box-sizing: border-box;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-sub-message {
        font-size: 1rem;
        line-height: 1.9;
        margin-bottom: 25px;
        letter-spacing: 0.02em;
    }
    
    .hero-text-area {
        padding: 40px 20px;
    }
    
    .slide-caption {
        bottom: 60px;
    }
    
    .slide-caption p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .slide-content h1 {
        font-size: 1.6rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .cta-button {
        padding: 16px 20px;
        font-size: 0.9rem;
        white-space: normal;
        line-height: 1.6;
        word-break: keep-all;
    }
    
    .cta-button br.mobile-br {
        display: block;
    }
    
    .cta-note {
        font-size: 0.8rem;
        margin-top: 12px;
    }
    
    .slider-control {
        width: 40px;
        height: 40px;
    }
    
    .slider-control.prev {
        left: 10px;
    }
    
    .slider-control.next {
        right: 10px;
    }
    
    .slider-control i {
        font-size: 16px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* ==========================================
   CTAボタン
   ========================================== */

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px var(--shadow);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.cta-button i {
    font-size: 1.2rem;
}

.cta-button.large {
    padding: 22px 50px;
    font-size: 1.2rem;
}

@media (max-width: 767px) {
    .cta-button {
        width: 100%;
        max-width: 100%;
        text-align: center;
        justify-content: center;
        white-space: normal;
        line-height: 1.6;
        padding: 16px 15px;
        font-size: 0.9rem;
        word-break: keep-all;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
        border-radius: 50px;
    }
    
    .cta-button.large {
        padding: 18px 15px;
        font-size: 0.95rem;
    }
    
    .cta-button br.mobile-br {
        display: block;
    }
}

.cta-button.line {
    background: linear-gradient(135deg, #06C755, #05B04B);
}

.cta-button.square {
    background: linear-gradient(135deg, #4285F4, #357AE8);
}

.cta-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-medium);
}

/* ==========================================
   セクション共通
   ========================================== */

section {
    padding: 80px 0;
}

section:nth-child(even) {
    background: var(--bg-section);
}

section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.3;
}

section h2 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 50px;
    line-height: 1.6;
}

.section-image img {
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.15em;
}

/* スマホ対応 */
@media (max-width: 767px) {
    .container {
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 100vw;
    }
    
    .container > * {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    section {
        padding: 40px 0;
        width: 100%;
    }
    
    section h2 {
        font-size: 1.5rem;
        line-height: 1.6;
        margin-bottom: 20px;
        word-break: keep-all;
        overflow-wrap: break-word;
    }
    
    section h3 {
        font-size: 1.3rem;
        line-height: 1.6;
        margin-bottom: 15px;
        word-break: keep-all;
    }
    
    section h4 {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 10px;
        word-break: keep-all;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 30px;
    }
    
    section p {
        line-height: 1.8;
        margin-bottom: 15px;
        word-break: keep-all;
        overflow-wrap: break-word;
    }
}

/* ==========================================
   共感導入セクション
   ========================================== */

.empathy-section .container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.section-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* スマホ対応 */
@media (max-width: 767px) {
    .empathy-section .container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px !important;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .empathy-section .section-image {
        padding: 0;
        max-width: 100%;
        width: 100%;
    }
    
    .empathy-section .section-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        box-sizing: border-box;
        border-radius: 15px;
    }
    
    .empathy-section .section-text {
        padding: 0;
        max-width: 100%;
        width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        box-sizing: border-box;
    }
    
    .section-text h2 {
        font-size: 1.25rem;
        line-height: 1.7;
        margin-bottom: 20px;
        word-break: keep-all;
        overflow-wrap: break-word;
        max-width: 100%;
        width: 100%;
        padding: 0;
        box-sizing: border-box;
    }
    
    .section-text p {
        margin-bottom: 15px;
        line-height: 1.85;
        font-size: 0.85rem;
        max-width: 100%;
        width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        padding: 0;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }
    
    .section-text .mobile-block {
        display: inline;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .section-text .highlight {
        padding: 12px 8px;
        max-width: 100%;
        width: 100%;
        word-wrap: break-word;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
    }
    
    .section-text .cta-button {
        width: 100%;
        max-width: 100%;
        margin-top: 20px;
        margin-left: 0;
        margin-right: 0;
        padding: 14px 12px;
        font-size: 0.92rem;
        box-sizing: border-box;
        border-radius: 50px;
    }
}

/* ==========================================
   お悩みセクション
   ========================================== */

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 20px;
    margin-top: 40px;
}

.problem-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-dark);
}

.problem-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.problem-card p {
    font-size: 1rem;
    line-height: 1.6;
}

.empathy-message {
    margin-top: 50px;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-light), var(--bg-section));
    border-radius: 20px;
}

/* ==========================================
   問題提起セクション
   ========================================== */

.problem-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.problem-text p {
    margin-bottom: 20px;
}

.symptom-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.symptom {
    background: var(--bg-section);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    font-weight: 600;
    color: var(--text-dark);
}

.reassurance {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 30px 0;
}

.warning-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-grey);
    margin: 30px 0;
    text-align: center;
}

.danger-section {
    background: linear-gradient(135deg, #FFF5F5, var(--bg-section));
    padding: 50px;
    border-radius: 20px;
    border: 2px dashed var(--accent-grey);
}

.danger-section h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--accent-grey);
    text-align: center;
}

.danger-section p {
    margin-bottom: 20px;
}

/* スマホ対応 */
@media (max-width: 767px) {
    .problem-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .symptom-list {
        grid-template-columns: 1fr;
    }
    
    .danger-section {
        padding: 20px 8px;
        box-sizing: border-box;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .danger-section h3 {
        font-size: 1.4rem;
        word-break: keep-all;
        overflow-wrap: break-word;
    }
    
    .danger-section p {
        word-break: keep-all;
        overflow-wrap: break-word;
    }
}

/* ==========================================
   解決策セクション
   ========================================== */

.solution-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.benefit {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit i {
    font-size: 28px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 5px;
}

.benefit h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.benefit p {
    color: var(--text-medium);
}

/* スマホ対応 */
@media (max-width: 767px) {
    .solution-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================
   体が変わるセクション
   ========================================== */

.transformation-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.transformation-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* スマホ対応 */
@media (max-width: 767px) {
    .transformation-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================
   メソッドセクション
   ========================================== */

.method-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.method-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 20px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px var(--shadow-dark);
}

.method-number {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 10;
}

.method-image {
    height: 250px;
    overflow: hidden;
}

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

.method-card:hover .method-image img {
    transform: scale(1.1);
}

.method-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 25px 25px 10px;
}

.method-card h4 {
    font-size: 1.5rem;
    margin: 0 25px 15px;
}

.method-catchphrase {
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0 25px 15px;
    font-size: 1.05rem;
}

.method-card p {
    margin: 0 25px 25px;
    line-height: 1.7;
}

.method-message {
    background: linear-gradient(135deg, var(--primary-light), var(--bg-section));
    padding: 50px;
    border-radius: 20px;
    text-align: center;
}

.method-message h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.method-message p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* スマホ対応 */
@media (max-width: 767px) {
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .method-message {
        padding: 20px 8px;
        box-sizing: border-box;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .method-message h3 {
        font-size: 1.3rem;
        word-break: keep-all;
        overflow-wrap: break-word;
        line-height: 1.6;
    }
    
    .method-message p {
        font-size: 1rem;
        word-break: keep-all;
        overflow-wrap: break-word;
    }
}

/* ==========================================
   スタジオセクション
   ========================================== */

.studio-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-dark);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 35px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* スタジオ写真（Coming Soon） */
.studio-photos {
    margin-top: 60px;
}

.studio-photos h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 20px;
}

.photo-placeholder {
    background: linear-gradient(135deg, var(--bg-section), var(--bg-alt));
    border: 3px dashed var(--primary-light);
    border-radius: 15px;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--primary-color);
}

.photo-placeholder i {
    font-size: 50px;
    opacity: 0.6;
}

.photo-placeholder p {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.8;
}

/* 実際のスタジオ写真 */
.photo-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.photo-item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

/* スマホ対応 */
@media (max-width: 767px) {
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .studio-photos h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .photo-caption {
        font-size: 0.9rem;
        padding: 10px;
    }
}

/* ==========================================
   比較セクション
   ========================================== */

.comparison-table {
    overflow-x: auto;
    margin-bottom: 50px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px var(--shadow);
}

thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

th {
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
}

th.highlight-col {
    background: var(--primary-dark);
}

td {
    padding: 20px;
    border-bottom: 1px solid var(--bg-section);
}

tr:last-child td {
    border-bottom: none;
}

td.highlight-col {
    background: var(--bg-section);
    font-weight: 600;
}

td i.fa-check-circle {
    color: var(--primary-color);
    margin-right: 8px;
}

td i.fa-times-circle {
    color: var(--accent-grey);
    margin-right: 8px;
}

.recommendation {
    background: linear-gradient(135deg, var(--primary-light), var(--bg-section));
    padding: 40px;
    border-radius: 20px;
}

.recommendation h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.recommendation ul {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.recommendation li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.05rem;
}

.recommendation li i {
    position: absolute;
    left: 0;
    top: 18px;
    color: var(--primary-color);
    font-size: 20px;
}

/* スマホ対応 */
@media (max-width: 767px) {
    .recommendation {
        padding: 20px 8px;
        box-sizing: border-box;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .recommendation h3 {
        font-size: 1.3rem;
        word-break: keep-all;
        overflow-wrap: break-word;
        line-height: 1.6;
    }
    
    .recommendation li {
        font-size: 0.95rem;
        word-break: keep-all;
        overflow-wrap: break-word;
    }
    
    .comparison-table {
        margin: 0;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        font-size: 0.75rem;
        width: 100%;
        max-width: 100%;
        table-layout: fixed;
    }
    
    th, td {
        padding: 8px 4px;
        font-size: 0.75rem;
        line-height: 1.3;
        word-break: break-word;
    }
    
    th {
        font-size: 0.8rem;
        word-break: break-word;
    }
}

/* ==========================================
   BEFORE/AFTERセクション
   ========================================== */

.ba-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.ba-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 20px var(--shadow);
}

.ba-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

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

/* 顔を隠すオーバーレイ */
.face-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(to bottom, 
        rgba(249, 247, 244, 1) 0%,
        rgba(249, 247, 244, 0.9) 40%,
        rgba(249, 247, 244, 0.5) 70%,
        rgba(249, 247, 244, 0) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.ba-label {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    z-index: 2;
}

.ba-label.before {
    background: var(--accent-grey);
}

.ba-label.after {
    background: var(--primary-color);
}

.ba-card p {
    padding: 25px;
    line-height: 1.7;
}

.ba-arrow {
    font-size: 3rem;
    color: var(--primary-color);
    text-align: center;
}

/* スマホ対応 */
@media (max-width: 767px) {
    .ba-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ba-image {
        height: 350px;
    }
    
    .ba-arrow {
        transform: rotate(90deg);
        font-size: 2.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .ba-arrow .time-label {
        transform: rotate(-90deg);
        white-space: nowrap;
    }
}

/* ==========================================
   ご利用の流れセクション
   ========================================== */

.flow-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}

.flow-item {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 15px var(--shadow);
    text-align: center;
}

.flow-step {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.flow-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-light);
}

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

/* STEP3の画像（happy-woman.jpg）は女性が中心に来るよう右側をフォーカス */
.flow-item:last-child .flow-image img {
    object-position: 70% center;
}

.flow-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.flow-arrow {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    padding: 20px 0;
}

/* ==========================================
   お客様の声セクション
   ========================================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-dark);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

.customer-name {
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-text {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-card p:last-child {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ==========================================
   代表プロフィールセクション
   ========================================== */

.profile-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.profile-image img {
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
}

.profile-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.profile-message {
    background: linear-gradient(135deg, var(--primary-light), var(--bg-section));
    padding: 30px;
    border-radius: 15px;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 30px;
}

/* 資格取得歴 */
.profile-credentials {
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-light), var(--bg-section));
    border-radius: 15px;
    text-align: center;
}

.profile-credentials h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.profile-credentials ul {
    list-style: none;
    display: inline-block;
    text-align: left;
    max-width: 600px;
}

.profile-credentials li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 169, 197, 0.2);
    line-height: 1.6;
}

.profile-credentials li:last-child {
    border-bottom: none;
}

/* 資格取得歴の太字スタイル（現在未使用） */
/*
.profile-credentials strong {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
}
*/

/* スマホ対応 */
@media (max-width: 767px) {
    .profile-content {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
    }
    
    .profile-image {
        max-width: calc(100% - 10px);
        width: calc(100% - 10px);
        padding: 0;
        margin: 0 5px;
    }
    
    .profile-image img {
        width: 100%;
        height: auto;
        max-width: 100%;
        display: block;
        box-sizing: border-box;
        border-radius: 20px;
        box-shadow: 0 10px 30px var(--shadow);
    }
    
    .profile-text {
        max-width: 100%;
        width: 100%;
        padding: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        box-sizing: border-box;
    }
    
    .profile-text p {
        max-width: 100%;
        width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        margin-bottom: 15px;
        line-height: 1.8;
        font-size: 0.85rem;
        padding: 0;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }
    
    .profile-message {
        max-width: calc(100% - 10px);
        width: calc(100% - 10px);
        padding: 18px 15px;
        margin: 20px 5px 0 5px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        font-size: 0.88rem;
        line-height: 1.75;
        box-sizing: border-box;
        border-radius: 15px;
    }
    
    .profile-credentials {
        margin-top: 30px;
        padding: 20px 8px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .profile-credentials ul {
        width: 100%;
        text-align: left;
        padding: 0 8px;
        box-sizing: border-box;
    }
}

/* ==========================================
   料金セクション
   ========================================== */

.campaign-notice {
    text-align: center;
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--primary-light), var(--bg-section));
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.price-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-dark);
}

.price-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price span {
    font-size: 1.2rem;
    color: var(--text-medium);
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 8px;
    font-weight: 400;
}

.next-section-link {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 40px;
}

.next-section-link a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

/* ==========================================
   キャンペーンセクション
   ========================================== */

.campaign-header {
    text-align: center;
    margin-bottom: 40px;
}

.campaign-title {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 15px;
}

.campaign-info {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
}

.recommended-start {
    background: linear-gradient(135deg, var(--primary-light), var(--bg-section));
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 60px;
}

.recommended-start h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.start-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.start-step {
    background: var(--white);
    padding: 25px 35px;
    border-radius: 15px;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--shadow);
    text-align: center;
    line-height: 1.8;
}

.normal-price-note {
    font-size: 0.85rem;
    color: var(--text-medium);
    font-weight: 400;
    display: block;
    margin-top: 5px;
}

.start-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.campaign-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 40px;
}

.campaign-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 6px 20px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.campaign-card.popular {
    border: 3px solid var(--primary-color);
}

.campaign-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF6B6B, #FF4757);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(255, 71, 87, 0.3);
}

.card-badge.secondary {
    top: 15px;
    background: linear-gradient(135deg, #FFB347, #FF8C42);
}

.card-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
}

.campaign-card h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 15px;
}

.card-label {
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.card-description {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.price-comparison {
    background: var(--bg-section);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.original-price {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 10px;
}

.strike {
    text-decoration: line-through;
    font-size: 1.2rem;
}

.campaign-price {
    text-align: center;
    font-weight: 700;
    margin-bottom: 10px;
}

.campaign-price .large {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.discount {
    text-align: center;
    color: #FF4757;
    font-weight: 700;
    font-size: 1.1rem;
}

.campaign-period {
    text-align: center;
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-top: 10px;
    font-weight: 400;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.plan-features li i {
    position: absolute;
    left: 0;
    top: 15px;
    color: var(--primary-color);
    font-size: 18px;
}

.special-offer {
    background: linear-gradient(135deg, #FFE5E5, #FFF5F5);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 30px;
    border: 2px dashed #FF4757;
}

/* スマホ対応 */
@media (max-width: 767px) {
    .special-offer {
        font-size: 0.95rem;
        padding: 15px;
        line-height: 1.8;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .price-card {
        padding: 20px 8px;
        box-sizing: border-box;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .price-card h3 {
        font-size: 1.1rem;
        min-height: auto;
        word-break: keep-all;
        overflow-wrap: break-word;
    }
    
    .campaign-plans {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .campaign-card {
        padding: 25px 15px;
        max-width: calc(100% - 10px);
        width: calc(100% - 10px);
        box-sizing: border-box;
        margin: 0 5px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        border-radius: 20px;
        box-shadow: 0 6px 20px var(--shadow);
    }
    
    .campaign-card .card-badge {
        max-width: calc(100% - 10px);
        width: calc(100% - 10px);
        padding: 8px 10px;
        margin: 0 5px 10px 5px;
        font-size: 0.82rem;
        word-wrap: break-word;
        white-space: normal;
        line-height: 1.4;
        box-sizing: border-box;
    }
    
    .campaign-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        word-break: keep-all;
        overflow-wrap: break-word;
        max-width: 100%;
        width: 100%;
        padding: 0;
        box-sizing: border-box;
    }
    
    .campaign-card p,
    .campaign-card ul,
    .campaign-card li {
        margin-bottom: 12px;
        font-size: 0.83rem;
        max-width: 100%;
        width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        padding: 0 5px;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }
    
    .campaign-card .recommendation-box {
        padding: 15px 8px;
        max-width: 100%;
        width: 100%;
        word-wrap: break-word;
        box-sizing: border-box;
    }
    
    .campaign-card .recommendation-box h4,
    .campaign-card .recommendation-box h5 {
        font-size: 1.05rem;
        word-break: keep-all;
        max-width: 100%;
        width: 100%;
        padding: 0;
        box-sizing: border-box;
    }
    
    .campaign-card .price-comparison {
        max-width: 100%;
        width: 100%;
        padding: 0;
        box-sizing: border-box;
    }
    
    .campaign-card .cta-button {
        width: 100%;
        max-width: 100%;
        padding: 16px 15px;
        font-size: 0.9rem;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
        border-radius: 50px;
    }
    
    .recommended-start {
        padding: 25px 10px;
        max-width: 100%;
    }
    
    .recommended-start h3 {
        font-size: 1.4rem;
        word-break: keep-all;
        max-width: 100%;
    }
    
    .start-flow {
        flex-direction: column;
        gap: 15px;
    }
    
    .start-step {
        padding: 20px 15px;
        max-width: calc(100% - 10px);
        width: calc(100% - 10px);
        margin: 0 5px;
        word-wrap: break-word;
        font-size: 0.9rem;
        box-sizing: border-box;
        border-radius: 15px;
        box-shadow: 0 4px 15px var(--shadow);
    }
    
    .start-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }
}

/* ==========================================
   よくある不安セクション
   ========================================== */

.concerns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.concern-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 6px 20px var(--shadow);
}

.concern-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 25px;
}

.concern-card h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.concern-text {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 25px;
    line-height: 1.7;
}

.concern-arrow {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin: 25px 0;
}

.solution {
    background: linear-gradient(135deg, var(--primary-light), var(--bg-section));
    padding: 30px;
    border-radius: 15px;
}

.solution-icon {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 15px;
}

.solution h4 {
    text-align: center;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.solution-title {
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.solution p {
    line-height: 1.7;
}

.solution ul {
    list-style: none;
    margin-top: 15px;
}

.solution li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.solution li i {
    position: absolute;
    left: 0;
    top: 11px;
    color: var(--primary-color);
}

.disclaimer {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 15px;
    font-style: italic;
}

.final-cta {
    text-align: center;
    margin-top: 60px;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

/* ==========================================
   FAQセクション
   ========================================== */

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

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 20px var(--shadow-dark);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

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

.faq-answer p {
    line-height: 1.8;
    color: var(--text-medium);
}

/* ==========================================
   アクセスセクション
   ========================================== */

.access-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.access-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item p {
    line-height: 1.8;
    color: var(--text-medium);
}

.access-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 20px var(--shadow);
}

.map-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}

/* スマホ対応 */
@media (max-width: 767px) {
    .access-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================
   最終CTAセクション
   ========================================== */

.final-cta-section {
    background: linear-gradient(135deg, var(--primary-light), var(--bg-section));
    text-align: center;
    padding: 100px 0;
}

.final-message {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 30px 0;
}

.final-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.brand-logo {
    margin: 60px 0;
}

.brand-logo img {
    height: 100px;
    width: auto;
    margin: 0 auto 20px;
}

@media (max-width: 767px) {
    .brand-logo img {
        height: 70px;
    }
}

.brand-tagline {
    font-size: 1.3rem;
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 15px;
}

.brand-message {
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* ==========================================
   予約フローセクション
   ========================================== */

.booking-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 60px;
}

.booking-step {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px var(--shadow);
    text-align: center;
}

.step-number {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.booking-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.booking-step p {
    color: var(--text-medium);
    line-height: 1.7;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.booking-info {
    background: linear-gradient(135deg, var(--primary-light), var(--bg-section));
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.booking-info h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.booking-info p {
    text-align: center;
    line-height: 1.8;
}

.booking-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* スマホ対応 */
@media (max-width: 767px) {
    .booking-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .booking-step {
        padding: 30px 20px;
        max-width: calc(100% - 10px);
        width: calc(100% - 10px);
        margin: 0 5px;
        box-sizing: border-box;
        border-radius: 20px;
        box-shadow: 0 4px 15px var(--shadow);
    }
    
    .booking-step h3 {
        font-size: 1.15rem;
        word-break: keep-all;
    }
    
    .booking-step p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .booking-buttons {
        flex-direction: column;
    }
}

/* ==========================================
   フッター（ロゴ配置）
   ========================================== */

footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 80px;
    width: auto;
    margin: 0 auto 15px;
    filter: brightness(0) invert(1);
}

@media (max-width: 767px) {
    .footer-logo img {
        height: 60px;
    }
}

.footer-tagline {
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.9;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
}

.footer-section p i {
    margin-right: 8px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.social-links i {
    font-size: 1.3rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

/* ==========================================
   固定CTAボタン
   ========================================== */

.fixed-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 18px 25px;
    border-radius: 50px;
    box-shadow: 0 6px 25px var(--shadow-dark);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    font-weight: 600;
}

.fixed-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.fixed-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px var(--shadow-dark);
}

.fixed-cta i {
    font-size: 1.5rem;
}

.fixed-cta span {
    line-height: 1.4;
}

.fixed-cta small {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* スマホ対応 */
@media (max-width: 767px) {
    .fixed-cta {
        bottom: 10px;
        right: 10px;
        left: 10px;
        padding: 12px 16px;
        font-size: 0.85rem;
        border-radius: 10px;
        text-align: center;
        justify-content: center;
    }
    
    .fixed-cta i {
        font-size: 1.1rem;
    }
    
    .fixed-cta small {
        font-size: 0.75rem;
    }
}

/* ==========================================
   アニメーション
   ========================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* スクロールアニメーション用 */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   初回体験セッション関連のスタイル
   ========================================== */

/* セッション前後の姿勢変化セクション */
.session-before-after {
    background: var(--bg-section);
    padding: 80px 0;
}

.ba-description {
    padding: 25px;
}

.ba-description h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.ba-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ba-description li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-medium);
    word-wrap: break-word;
}

.ba-description li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* スマホ対応 */
@media (max-width: 767px) {
    .ba-description {
        padding: 20px;
    }
    
    .ba-description h4 {
        font-size: 1.1rem;
    }
    
    .ba-description li {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

.time-label {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* 重要な注意事項ボックス */
.important-note {
    background: linear-gradient(135deg, #FFF5F5, var(--bg-base));
    border: 2px solid var(--primary-light);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
}

.important-note h4 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.important-note h4 i {
    color: var(--primary-color);
}

.important-note p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.important-note ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.important-note li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.7;
}

.important-note li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* スマホ対応 */
@media (max-width: 767px) {
    .important-note {
        padding: 20px;
        margin: 30px 0;
    }

    .important-note h4 {
        font-size: 1.1rem;
    }

    .important-note li {
        font-size: 0.9rem;
    }
}

/* メカニズム説明 */
.mechanism-explanation {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow);
    margin: 40px 0;
    text-align: center;
}

.mechanism-explanation h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.mechanism-explanation p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.mechanism-explanation .emphasis {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* 初回体験の感想セクション */
.trial-testimonials-section {
    background: var(--white);
    padding: 80px 0;
}

.trial-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.testimonial-card.trial {
    position: relative;
}

.trial-date {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 3px;
}

.rating {
    display: flex;
    gap: 5px;
    margin: 15px 0;
    color: #FFB800;
}

.trial-note {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--bg-section);
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* 免責事項ボックス */
.disclaimer-box {
    background: linear-gradient(135deg, var(--bg-section), var(--bg-alt));
    border: 2px dashed var(--primary-light);
    border-radius: 15px;
    padding: 30px;
    margin: 50px 0;
    text-align: center;
}

.disclaimer-box p {
    margin-bottom: 15px;
}

.disclaimer-box p:first-child {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.disclaimer-box ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-box li {
    padding: 8px 0;
    color: var(--text-medium);
    line-height: 1.7;
}

/* CTAエリア */
.cta-area {
    text-align: center;
    padding: 50px 0;
}

.cta-area h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.trial-offer {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.trial-offer strong {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.small-text {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 30px;
}

/* 推奨プランボックス */
.recommendation-box {
    background: linear-gradient(135deg, var(--primary-light), var(--bg-section));
    border-radius: 15px;
    padding: 30px;
    margin: 25px 0;
}

.recommendation-box h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.trainer-comment {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
}

.trainer-voice {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trainer-comment p:last-child {
    line-height: 1.8;
    color: var(--text-medium);
}

.plan-advantages {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
}

.plan-advantages h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.plan-advantages ul {
    list-style: none;
    padding: 0;
}

.plan-advantages li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

.plan-advantages li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* スマホ対応 */
@media (max-width: 767px) {
    .session-before-after,
    .trial-testimonials-section {
        padding: 50px 0;
    }
    
    .important-note,
    .mechanism-explanation,
    .disclaimer-box {
        padding: 20px;
        margin: 30px 0;
    }
    
    .important-note h4 {
        font-size: 1.1rem;
    }
    
    .mechanism-explanation h3 {
        font-size: 1.5rem;
    }
    
    .cta-area h3 {
        font-size: 1.6rem;
    }
    
    .trial-offer {
        font-size: 1.2rem;
    }
    
    .trial-offer strong {
        font-size: 2rem;
    }
    
    .recommendation-box {
        padding: 20px;
        margin: 20px 0;
    }
    
    .recommendation-box h4 {
        font-size: 1.1rem;
    }
    
    .trainer-comment,
    .plan-advantages {
        padding: 15px;
    }
    
    .card-badge.secondary {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}