/* ============================================
   Blue Life LP - スタイルシート
   ============================================ */

/* CSS変数 */
:root {
    --primary: #1e3a5f;
    --primary-light: #2d5a8a;
    --primary-dark: #0f1f33;
    --accent: #e67e22;
    --accent-hover: #d35400;
    --text: #333333;
    --text-light: #666666;
    --bg: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #e9ecef;
    --white: #ffffff;
    --danger: #e74c3c;
    --success: #27ae60;

    --hero-overlay: linear-gradient(135deg, rgba(15, 31, 51, 0.85) 0%, rgba(30, 58, 95, 0.8) 100%);
    --font-main: 'Noto Sans JP', 'Hiragino Sans', 'Meiryo', sans-serif;
    --section-padding: 100px 20px;
    --container-max: 1100px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

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

/* ============================================
   ヘッダー
   ============================================ */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--accent);
}

.nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-list a {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
    background: var(--bg-light);
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================
   ボタン
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.15rem;
}

/* ============================================
   セクション共通
   ============================================ */
.section {
    padding: var(--section-padding);
}

.section-alt {
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.4;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   1. ヒーロー
   ============================================ */
.hero {
    background: var(--hero-overlay), url('images/hero-bg.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 140px 20px 100px;
    text-align: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 30px;
}

.hero-price {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.hero-price .amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent);
    text-shadow: 0 2px 10px rgba(230, 126, 34, 0.3);
}

.hero-price .tax {
    font-size: 0.85rem;
    opacity: 0.8;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 20px;
    border-radius: 50px;
}

.hero-feature i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* ============================================
   2. お悩み共感
   ============================================ */
.problems-list {
    max-width: 700px;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 22px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 5px solid var(--danger);
}

.problem-item:hover {
    transform: translateX(10px);
}

.problem-item i {
    font-size: 2rem;
    color: var(--danger);
    min-width: 50px;
    text-align: center;
}

.problem-item p {
    font-size: 1.15rem;
    font-weight: 500;
}

.problems-solution {
    text-align: center;
    padding: 50px 30px;
    background: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 20px;
    color: var(--white);
}

.problems-solution p {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.6;
}

/* ============================================
   3. サービス内容
   ============================================ */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-card-tag {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* ============================================
   4. Before/After
   ============================================ */
.ba-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    overflow: hidden;
}

.ba-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
}

.ba-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.ba-header h3 {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.ba-header p {
    font-size: 0.85rem;
    opacity: 0.85;
}

.ba-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    padding: 30px;
    align-items: stretch;
}

.ba-before,
.ba-after {
    padding: 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.ba-before {
    background: #fff0f0;
    border: 1px solid #fdd;
}

.ba-after {
    background: #f0fff4;
    border: 1px solid #c6f6d5;
}

.ba-label {
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ba-before .ba-label {
    color: var(--danger);
}

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

.ba-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
}

.ba-point {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 30px;
    background: #fffbe6;
    border-top: 1px solid #e9e0b8;
    font-size: 0.9rem;
}

.ba-point i {
    color: #f39c12;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* ============================================
   5. 選ばれる理由
   ============================================ */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.reason-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--primary);
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.reason-card .icon-wrapper {
    width: 90px;
    height: 90px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.reason-card:hover .icon-wrapper {
    background: var(--primary);
    color: var(--white);
}

.reason-card .number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(30, 58, 95, 0.08);
    position: absolute;
    top: 10px;
    right: 20px;
}

.reason-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.5;
}

.reason-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   6. ご利用の流れ
   ============================================ */
.flow-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.flow-step {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    text-align: center;
    flex: 1;
    max-width: 300px;
    transition: var(--transition);
    position: relative;
}

.flow-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.flow-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.flow-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 18px;
}

.flow-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.flow-step p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

.flow-connector {
    display: flex;
    align-items: center;
    padding-top: 60px;
    color: var(--accent);
    font-size: 1.3rem;
}

/* ============================================
   7. 料金プラン
   ============================================ */
.pricing-summary {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    overflow: hidden;
    position: relative;
    border: 3px solid var(--accent);
}

.pricing-summary-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 6px 25px;
    border-radius: 0 0 15px 15px;
    font-weight: 700;
    font-size: 0.85rem;
}

.pricing-summary-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 40px 30px 20px;
    color: var(--white);
    text-align: center;
}

.pricing-summary-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.pricing-summary-header h3 i {
    color: #f39c12;
    margin-right: 8px;
}

.pricing-summary-price {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 5px 30px 30px;
    text-align: center;
    color: var(--white);
}

.pricing-summary-amount {
    font-size: 3.5rem;
    font-weight: 900;
}

.pricing-summary-unit {
    font-size: 1.1rem;
    opacity: 0.9;
}

.pricing-summary-includes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 35px 30px;
}

.pricing-summary-col h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1rem;
}

.pricing-summary-col h4 i {
    margin-right: 6px;
}

.pricing-summary-col ul {
    list-style: none;
}

.pricing-summary-col ul li {
    padding: 6px 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-summary-col ul li i {
    color: var(--success);
    font-size: 0.85rem;
}

.pricing-summary-note {
    background: var(--bg-light);
    padding: 18px 30px;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light);
}

.pricing-summary-note i {
    color: var(--primary);
    margin-right: 6px;
}

.pricing-summary-note strong {
    color: var(--accent);
}

.pricing-summary-actions {
    padding: 25px 30px 30px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   8. FAQ
   ============================================ */
.faq-list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

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

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

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

.faq-answer p {
    padding: 0 25px 20px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   9. お客様の声
   ============================================ */
.voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.voice-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.voice-card::before {
    content: '\201C';
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 4rem;
    color: rgba(30, 58, 95, 0.06);
    font-family: Georgia, serif;
    line-height: 1;
}

.voice-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.voice-stars {
    margin-bottom: 15px;
    color: #f39c12;
    font-size: 0.9rem;
    display: flex;
    gap: 3px;
}

.voice-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 20px;
    font-style: italic;
}

.voice-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid var(--bg-light);
}

.voice-author i {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.voice-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--primary);
}

.voice-author span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ============================================
   10. 最終CTA
   ============================================ */
.final-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 10%, transparent 10%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 8%, transparent 8%);
    pointer-events: none;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 900;
}

.final-cta p {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 10px;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 35px 0 25px;
}

.final-cta .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.final-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
}

.final-cta-note {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 15px;
}

.final-cta-note i {
    margin-right: 4px;
}

/* ============================================
   フッター
   ============================================ */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 80px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    max-width: var(--container-max);
    margin: 0 auto 50px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo i {
    color: var(--accent);
}

.footer-desc {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.8;
}

.footer-nav h4,
.footer-info h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    opacity: 0.6;
}

.footer-notice {
    margin-top: 5px;
    font-size: 0.8rem;
}

/* ============================================
   スクロールアニメーション
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================
   ページヘッダー（service, portfolio等）
   ============================================ */
.page-header {
    background: var(--hero-overlay), url('images/hero-bg.png');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    color: white;
}

/* ============================================
   料金カード（service.html）
   ============================================ */
.pricing-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.pricing-list {
    list-style: none;
}

.pricing-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin: 15px 0;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
}

/* ============================================
   CTA（service.html, portfolio.html）
   ============================================ */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ============================================
   テーブル共通スタイル
   ============================================ */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
}

.comparison-table tr:hover {
    background: var(--bg-light);
}

/* ============================================
   イメージセクション
   ============================================ */
.image-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.image-overlay {
    background: var(--hero-overlay);
    padding: 100px 20px;
    color: var(--white);
    text-align: center;
}

.image-overlay h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

/* ============================================
   レスポンシブ
   ============================================ */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-price .amount {
        font-size: 2.5rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-hover);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }

    .nav-list.active {
        transform: translateY(0);
    }

    .header .btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* サービスカード */
    .service-cards {
        grid-template-columns: 1fr;
    }

    /* Before/After */
    .ba-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .ba-arrow {
        transform: rotate(90deg);
        padding: 5px 0;
    }

    /* 選ばれる理由 */
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    /* ご利用の流れ */
    .flow-steps {
        flex-direction: column;
        align-items: center;
    }

    .flow-step {
        max-width: 100%;
    }

    .flow-connector {
        transform: rotate(90deg);
        padding: 0;
    }

    /* 料金プラン */
    .pricing-summary-includes {
        grid-template-columns: 1fr;
    }

    .pricing-summary-actions {
        flex-direction: column;
    }

    .pricing-summary-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* FAQ */
    .faq-question {
        font-size: 0.9rem;
        padding: 16px 20px;
    }

    /* お客様の声 */
    .voice-grid {
        grid-template-columns: 1fr;
    }

    /* 最終CTA */
    .final-cta h2 {
        font-size: 1.8rem;
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* フッター */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
