@charset "UTF-8";

/* --- Variables (Inherited from style.css but kept for safety) --- */

/* :root {
    --bg-body: #f8f9fa;
    --text-main: #1a2b4c;
    --text-light: #64748b;
    --accent-blue: #0056b3;
    --accent-cyan: #00d2ff;
    --accent-gold: #e6b422;
    --accent-gold-light: #fff8e1;
    --alert-red: #e74c3c;
    --line-green: #06c755;
    --doc-orange: #f39c12;
    --white: #ffffff;
    --font-en: 'Montserrat', sans-serif;
    --font-jp: 'Noto Sans JP', sans-serif;
} */


/* --- Hero Section --- */
.hero {
    position: relative;
    /* 高さを少し拡張してコンテンツを収める */
    min-height: 850px;
    padding: 120px 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    margin-bottom: 0;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.85), rgba(248, 249, 250, 1));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: var(--accent-gold);
    color: #fff;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 40px;
    letter-spacing: -1px;
    color: var(--text-main);
}

/* ★★★ Confidential Box Design (強化版) ★★★ */
.confidential-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 40px 30px;
    margin: 0 auto 50px;
    max-width: 800px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    text-align: left;
    /* テキストは左寄せにして読みやすく */
    border-left: 6px solid var(--accent-gold);
    /* 左にゴールドのライン */
}

.hero-box {
    /* Fallback if plain hero-box is used */
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* 透かし文字（スタンプ） */
.box-decor {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%) rotate(-15deg);
    font-family: var(--font-en);
    font-weight: 900;
    font-size: 5rem;
    color: rgba(0, 0, 0, 0.03);
    /* 非常に薄く */
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
    border: 3px solid rgba(0, 0, 0, 0.03);
    padding: 10px 40px;
    border-radius: 10px;
}

.box-head {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    /* display: flex; */
    align-items: center;
    gap: 10px;
}

.box-head i {
    color: var(--accent-gold);
    font-size: 1.8rem;
}

.box-body {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    line-height: 1.8;
}

.text-highlight-red {
    color: #c0392b;
    /* 少し深めの赤で高級感 */
    background: rgba(231, 76, 60, 0.1);
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 1.3rem;
}

.box-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.marker {
    background: linear-gradient(transparent 60%, rgba(255, 230, 0, 0.4) 60%);
}

/* ★★★ End Confidential Box ★★★ */


.btn-hero {
    display: inline-block;
    padding: 20px 25px;
    background: linear-gradient(135deg, var(--accent-gold), #d4a017);
    color: var(--white);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(230, 180, 34, 0.4);
    text-align: center;
    width: auto;
    min-width: 300px;
}

.btn-hero .btn-main {
    display: block;
    font-size: 1.3rem;
    font-weight: 900;
}

.btn-hero .btn-sub {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 5px;
    opacity: 0.9;
}

.btn-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(230, 180, 34, 0.5);
}

/* Pulse Animation for CTA */
.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(230, 180, 34, 0.7);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 15px rgba(230, 180, 34, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(230, 180, 34, 0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-en);
    font-size: 0.7rem;
    color: var(--text-light);
    opacity: 0.6;
}

.scroll-indicator .line {
    width: 1px;
    height: 40px;
    background: var(--text-light);
    margin-top: 10px;
}

/* --- Pain Points Section --- */
.section {
    padding: 100px 0;
}

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

.section-sub {
    display: block;
    font-family: var(--font-en);
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--accent-cyan);
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.5em;
}

.section-lead {
    color: var(--text-light);
    margin-bottom: 60px;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pain-item {
    background: var(--bg-body);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid #eee;
    transition: 0.3s;
    position: relative;
}

.pain-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.pain-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.badge-trap {
    background: var(--text-main);
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    vertical-align: top;
    margin-right: 5px;
}

.pain-item h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-main);
    font-weight: 900;
    line-height: 1.4;
}

.pain-desc {
    font-size: 0.95rem;
    line-height: 1.7;
}

.pain-batsu {
    color: var(--alert-red);
    font-weight: bold;
    margin-bottom: 10px;
    background: rgba(231, 76, 60, 0.1);
    padding: 8px;
    border-radius: 4px;
}

.pain-maru {
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: justify;
}

.pain-maru strong {
    color: var(--text-main);
    background: linear-gradient(transparent 70%, rgba(6, 199, 85, 0.2) 70%);
}

.pain-footer {
    margin-top: 60px;
    font-size: 1.1rem;
    font-weight: 700;
}

/* ★★★ NEW: Pain Points CTA Button ★★★ */
.btn-pain-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding: 15px 40px;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    font-weight: 700;
    border-radius: 50px;
    background: #fff;
    transition: 0.3s;
}

.btn-pain-cta:hover {
    background: var(--accent-gold);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(230, 180, 34, 0.2);
}

/* ★★★ End New CTA ★★★ */

/* --- Voices Section --- */
.voices-section {
    background-color: var(--bg-body);
    /* 境界線を目立たせる */
    border-top: 1px solid #eee;
}

.voice-card {
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

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

.voice-cat {
    font-family: var(--font-en);
    font-size: 0.8rem;
    font-weight: 900;
    background: var(--text-main);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 15px;
}

.voice-company {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 10px;
}

/* ▼▼▼ 変更点：Voice Catch Before/After のデザイン強化 ▼▼▼ */
.voice-catch-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    font-weight: 700;
}

.vc-item {
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 1.1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Before Styling */
.vc-before {
    background: #f0f2f5;
    /* 落ち着いたグレー背景 */
    color: var(--text-light);
    border: 1px solid #e0e0e0;
}

/* 疑似要素でラベルを追加 */
.vc-before::before {
    content: "BEFORE";
    font-family: var(--font-en);
    font-size: 0.7rem;
    font-weight: 900;
    color: #999;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

/* Arrow Styling */
.vc-arrow {
    font-size: 1.8rem;
    color: var(--accent-cyan);
    /* 目立つ色に */
    filter: drop-shadow(0 2px 5px rgba(0, 210, 255, 0.3));
}

/* After Styling */
.vc-after {
    background: #fff;
    border: 2px solid var(--accent-cyan);
    /* 強調の枠線 */
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.15);
}

/* 疑似要素でラベルを追加 */
.vc-after::before {
    content: "AFTER";
    font-family: var(--font-en);
    font-size: 0.7rem;
    font-weight: 900;
    color: var(--accent-cyan);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.vc-after .text-gradient {
    font-size: 1.25rem;
    /* 文字を少し大きく */
}

/* ▲▲▲ 変更点ここまで ▲▲▲ */


.voice-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.video-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background-color: #000;
}

.video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.summary-box h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    font-weight: 700;
}

.summary-box h4 i {
    color: var(--line-green);
}

.summary-box p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.8;
    text-align: justify;
}

/* --- CTA Section (Premium/Secret vibe) --- */
.cta-section {
    background: var(--bg-body);
    padding-bottom: 120px;
}

.cta-box {
    background: var(--white);
    border-radius: 30px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.cta-tag {
    display: inline-block;
    background: var(--text-main);
    color: #fff;
    font-family: var(--font-en);
    font-size: 0.8rem;
    padding: 5px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.4;
}

.cta-download-area {
    background: #fffcf5;
    /* 薄いゴールド/クリーム */
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    padding: 40px;
    margin: 40px auto;
    max-width: 750px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 15px 40px rgba(230, 180, 34, 0.15);
    text-align: left;
}

.download-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
}

.download-icon i {
    font-size: 2.5rem;
}

.download-icon span {
    font-size: 0.6rem;
    font-weight: bold;
    margin-top: 5px;
    color: var(--text-main);
}

.download-content h3 {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--text-main);
}

.badge-new {
    background: var(--accent-gold);
    color: white;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 3px;
    vertical-align: middle;
    margin-right: 5px;
}

.download-list {
    margin-bottom: 25px;
}

.download-list li {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.download-list li i {
    color: var(--line-green);
    margin-right: 8px;
}

.btn-download {
    display: block;
    width: 100%;
    padding: 18px;
    background: linear-gradient(45deg, var(--accent-gold), #d4a017);
    color: #fff;
    text-align: center;
    border-radius: 50px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(230, 180, 34, 0.4);
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 180, 34, 0.5);
}

.btn-main-text {
    display: block;
    font-size: 1.2rem;
    font-weight: 900;
}

.btn-sub-text {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
}

.contact-info {
    margin-top: 30px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ★★★ NEW: LINE CTA Area ★★★ */
.cta-line-area {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed #e0e0e0;
    /* 区切り線 */
    text-align: center;
}

.line-lead {
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
    font-size: 1rem;
}

.btn-line-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    max-width: 500px;
    /* PCでは幅広になりすぎないように */
    padding: 18px;
    background-color: #06c755;
    /* LINE Green */
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(6, 199, 85, 0.3);
    transition: 0.3s;
}

.btn-line-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(6, 199, 85, 0.4);
    opacity: 1;
    /* aタグのデフォルトhoverを打ち消し */
}

.btn-line-cta i {
    font-size: 1.8rem;
}

/* ★★★ End LINE CTA ★★★ */

/* --- Responsive & Mobile Optimization --- */
@media (max-width: 768px) {

    /* 1. Global Spacing Reduction */
    .section {
        padding: 60px 0;
    }

    .hero {
        min-height: 600px;
        padding: 100px 0 40px;
    }

    /* 2. Hero Headline Impact */
    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.7;
    }

    .hero h1 .pop-text {
        font-size: 2.2rem;
        /* スマホで「勘違い」を巨大化 */
        color: #e74c3c;
        /* 警告色 */
        font-weight: 900;
        background: linear-gradient(transparent 50%, #e6b422 50%);
        /* 強めのマーカー */
        display: inline-block;
        transform: rotate(-3deg) scale(1.1);
        /* 少し傾けて動きをつける */
        margin: 0 5px;
        text-shadow: 2px 2px 0px #fff;
        /* 白フチで読みやすく */
    }

    .pc-only {
        display: none;
    }

    /* Hero Box */
    .hero-box {
        text-align: left;
        padding: 25px 15px;
        /* 余白削減 */
    }

    .hero-lead {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .btn-hero {
        width: 100%;
        min-width: auto;
        padding: 20px 15px;
    }

    .pc-nav {
        display: none;
    }

    /* Confidential Box SP */
    .confidential-box {
        padding: 30px 15px;
        /* 余白削減 */
        text-align: left;
    }

    .box-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .box-decor {
        font-size: 3rem;
        right: -10px;
        top: 20%;
        opacity: 0.1;
    }

    /* Pain Points Mobile */
    .pain-grid {
        gap: 20px;
    }

    .pain-item {
        padding: 25px 15px;
        /* カード余白削減 (元40px) */
    }

    .pain-desc {
        font-size: 0.9rem;
    }

    .btn-pain-cta {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        font-size: 1rem;
    }

    /* Voices Mobile */
    .voice-body {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .voice-card {
        padding: 25px 15px;
        /* 余白削減 */
    }

    .voice-company {
        font-size: 1.4rem;
    }

    /* ▼▼▼ 変更点：Voice Catch Before/After スマホ対応 ▼▼▼ */
    .voice-catch-wrap {
        flex-direction: column;
        /* 縦並びにする */
        gap: 15px;
    }

    .vc-arrow {
        transform: rotate(90deg);
        /* 矢印を下向きに */
        font-size: 2rem;
        /* スマホでは少し大きく */
    }

    .vc-item {
        width: 100%;
        /* 横幅いっぱいに */
    }

    .vc-after .text-gradient {
        font-size: 1.15rem;
        /* スマホでの文字サイズ調整 */
    }

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

    /* CTA Mobile */
    .cta-box {
        padding: 40px 20px;
        /* 余白削減 */
    }

    .cta-box h2 {
        font-size: 1.6rem;
    }

    .cta-download-area {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 15px;
        /* 余白削減 */
    }

    .download-list {
        text-align: left;
        display: inline-block;
    }

    .btn-line-cta {
        font-size: 1rem;
        padding: 15px;
    }
}

