/* ========================================
   リセット & ベーススタイル
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 16px;
}

section {
    margin-bottom: 0;
}

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

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

/* ========================================
   ヘッダー
======================================== */
.header {
    background-color: #333;
    padding: 8px 0;
    text-align: center;
}

.pr-label {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
}

/* ========================================
   ヒーローセクション
======================================== */
.hero {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: white;
    padding: 40px 0 32px;
    text-align: center;
}

.hero-title {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 16px;
}

.hero-title-highlight {
    display: inline-block;
    background-color: #ffeb3b;
    color: #333;
    padding: 4px 12px;
    font-size: 16px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.hero-title-main {
    display: block;
}

.hero-title-huge {
    font-size: 48px;
    color: #ffeb3b;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.hero-placeholder {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 32px 16px;
    margin-top: 24px;
    color: #666;
}

.hero-icon {
    font-size: 80px;
    margin-bottom: 16px;
}

.hero-placeholder p {
    font-size: 14px;
    line-height: 1.6;
}

/* ========================================
   共通セクションスタイル
======================================== */
.section-title {
    font-size: 24px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.5;
    color: #333;
}

.section-title small {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin-top: 8px;
}

/* ========================================
   導入文セクション
======================================== */
.intro {
    background-color: white;
    padding: 40px 0;
}

.intro-text {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 24px;
    text-align: center;
}

.intro-highlight {
    background: linear-gradient(135deg, #ffeb3b 0%, #ffc107 100%);
    padding: 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    line-height: 1.8;
    margin-top: 32px;
}

/* ========================================
   証拠画像セクション
======================================== */
.proof {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 40px 0;
}

.proof-title {
    color: #ff4444;
}

.proof-box {
    background-color: white;
    padding: 24px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.proof-image-placeholder {
    background-color: #f8f9fa;
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 40px 16px;
    text-align: center;
    margin-bottom: 16px;
}

.proof-icon {
    font-size: 60px;
    margin-bottom: 16px;
}

.proof-image-placeholder p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.proof-amount {
    font-size: 18px;
    text-align: center;
    margin-bottom: 12px;
    font-weight: 700;
}

.proof-amount-big {
    font-size: 32px;
    color: #ff4444;
    font-weight: 900;
    display: block;
    margin-top: 8px;
}

.proof-note {
    font-size: 12px;
    color: #999;
    text-align: center;
}

.proof-reaction {
    font-size: 15px;
    line-height: 2;
    text-align: center;
    color: #333;
}

.proof-warning {
    background-color: #fff3cd;
    border: 2px solid #ffeb3b;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
}

/* ========================================
   緊急性セクション
======================================== */
.urgency {
    background-color: #333;
    color: white;
    padding: 40px 0;
}

.urgency-title {
    color: #ffeb3b;
    font-size: 24px;
    margin-bottom: 24px;
}

.urgency-box {
    background-color: rgba(255, 255, 255, 0.1);
    border: 3px solid #ff4444;
    border-radius: 8px;
    padding: 24px 16px;
}

.urgency-text {
    font-size: 18px;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.8;
}

.urgency-highlight {
    font-size: 28px;
    color: #ffeb3b;
    font-weight: 900;
}

.countdown {
    text-align: center;
    margin-bottom: 20px;
}

.countdown-title {
    font-size: 16px;
    margin-bottom: 12px;
    color: #ffeb3b;
}

.countdown-timer {
    font-size: 24px;
    font-weight: 900;
    color: #ff4444;
    background-color: white;
    padding: 16px;
    border-radius: 8px;
    display: inline-block;
}

.countdown-number {
    font-size: 36px;
    color: #ff4444;
    margin: 0 4px;
}

.urgency-warning {
    font-size: 14px;
    text-align: center;
    color: #ffeb3b;
    margin-top: 16px;
}

/* ========================================
   CTAボタン
======================================== */
.cta {
    background-color: white;
    padding: 40px 0;
    text-align: center;
}

.cta-copy {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.8;
}

.cta-copy-highlight {
    color: #00c853;
    font-size: 24px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
    color: white;
    font-size: 20px;
    font-weight: 900;
    padding: 20px 32px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    width: 90%;
    max-width: 400px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.5);
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-button-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.cta-button-icon {
    font-size: 28px;
    margin-right: 8px;
    display: inline-block;
}

.cta-button-text {
    display: inline-block;
    vertical-align: middle;
}

.cta-button-text small {
    display: block;
    font-size: 13px;
    font-weight: 400;
    margin-top: 4px;
    opacity: 0.9;
}

.cta-benefit {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    margin: 24px auto 0;
    border: 2px solid #00c853;
    max-width: 400px;
}

.cta-benefit-title {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: #00c853;
}

.cta-benefit-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.cta-benefit-list li {
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.cta-benefit-list li:last-child {
    border-bottom: none;
}

/* ========================================
   体験レポートセクション
======================================== */
.report {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.report-box {
    background-color: white;
    padding: 32px 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.report-intro {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 32px;
}

.report-subtitle {
    font-size: 20px;
    font-weight: 700;
    margin: 32px 0 20px;
    padding-left: 12px;
    border-left: 4px solid #00c853;
}

.feature-box {
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    padding: 20px 16px;
    margin-bottom: 16px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #ff4444;
}

.feature-icon {
    font-size: 32px;
    margin-right: 16px;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

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

.report-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.report-list li {
    font-size: 15px;
    line-height: 2;
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
}

.report-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00c853;
    font-weight: 700;
}

.report-result {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 20px;
    border-radius: 8px;
    margin: 24px 0;
    text-align: center;
    line-height: 1.8;
}

.report-result-highlight {
    font-size: 20px;
    color: #00c853;
    font-weight: 900;
    display: block;
    margin-bottom: 8px;
}

.report-conclusion {
    font-size: 16px;
    line-height: 1.9;
    margin-top: 24px;
}

/* ========================================
   無料アピールセクション
======================================== */
.free {
    background: linear-gradient(135deg, #4fc3f7 0%, #03a9f4 100%);
    color: white;
    padding: 40px 0;
}

.free-title {
    color: white;
}

.free-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.free-item {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 24px 20px;
    border-radius: 8px;
    text-align: center;
    color: #333;
}

.free-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.free-item-title {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 8px;
    color: #00c853;
}

.free-item-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.free-highlight {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.8;
    margin-bottom: 24px;
}

.free-highlight-big {
    font-size: 32px;
    color: #ffeb3b;
    display: block;
    margin-top: 8px;
}

.trust-badge {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: 8px;
}

.trust-text {
    font-size: 14px;
    margin-bottom: 8px;
    color: white;
}

.trust-text:last-child {
    margin-bottom: 0;
}

/* ========================================
   ターゲット別訴求セクション
======================================== */
.target {
    background-color: white;
    padding: 40px 0;
}

.target-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.target-item {
    background-color: #f8f9fa;
    padding: 20px 16px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.target-item:hover {
    border-color: #00c853;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 200, 83, 0.2);
}

.target-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.target-text {
    font-size: 15px;
    line-height: 1.8;
}

.target-summary {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.8;
}

/* ========================================
   仕組み解説セクション
======================================== */
.mechanism {
    background-color: white;
    padding: 40px 0;
}

.mechanism-box {
    max-width: 560px;
    margin: 0 auto;
}

.mechanism-item {
    padding: 24px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 8px;
    position: relative;
}

.mechanism-number {
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: white;
    font-size: 14px;
    font-weight: 900;
    padding: 4px 12px;
    border-radius: 20px;
}

.mechanism-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 8px;
    color: #333;
}

.mechanism-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* ========================================
   始め方セクション
======================================== */
.howto {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 40px 0;
}

.howto-steps {
    max-width: 560px;
    margin: 0 auto;
}

.howto-step {
    background-color: white;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.howto-step-number {
    display: inline-block;
    background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
    color: white;
    font-size: 14px;
    font-weight: 900;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.howto-step-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.howto-step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

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

.howto-summary {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    margin-top: 32px;
    line-height: 1.8;
}

/* ========================================
   よくある質問セクション
======================================== */
.faq {
    background-color: white;
    padding: 40px 0;
}

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

.faq-item {
    padding: 20px;
    margin-bottom: 16px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #00c853;
}

.faq-question {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.faq-answer {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.faq-answer a {
    color: #00c853;
    text-decoration: underline;
}

/* ========================================
   追記セクション
======================================== */
.addendum {
    background-color: #fff3cd;
    padding: 40px 0;
}

.addendum-box {
    background-color: white;
    padding: 32px 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.addendum-highlight {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.8;
    margin-top: 32px;
}

/* ========================================
   最終CTAセクション
======================================== */
.final-cta {
    background: linear-gradient(135deg, #333 0%, #000 100%);
    color: white;
    padding: 40px 0;
}

.final-cta-title {
    font-size: 28px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.6;
    color: white;
}

.winning-side-highlight {
    color: #00e676;
    font-weight: 900;
    position: relative;
    display: inline-block;
}

.final-cta-benefits {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin: 24px 0;
}

.final-cta-benefits p {
    font-size: 16px;
    color: white;
    margin-bottom: 8px;
    text-align: center;
}

.final-cta-benefits p:last-child {
    margin-bottom: 0;
}

.cta-button-final {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    box-shadow: 0 6px 20px rgba(255, 68, 68, 0.4);
    font-size: 22px;
    padding: 24px 32px;
}

.cta-button-final:hover {
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.5);
}

.final-cta-warning {
    text-align: center;
    font-size: 14px;
    color: #ffeb3b;
    margin-top: 24px;
    line-height: 1.8;
}

/* ========================================
   免責事項セクション
======================================== */
.disclaimer {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.disclaimer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
}

.disclaimer-list {
    list-style: none;
    padding-left: 0;
}

.disclaimer-list li {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: #666;
}

.disclaimer-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #999;
}

.disclaimer-list a {
    color: #00c853;
    text-decoration: underline;
}

/* ========================================
   フッター
======================================== */
.footer {
    background-color: #333;
    color: white;
    padding: 24px 0;
    text-align: center;
}

.footer-company {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-link {
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-link a {
    color: #4fc3f7;
    text-decoration: none;
}

.footer-link a:hover {
    text-decoration: underline;
}

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

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

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

/* ========================================
   レスポンシブデザイン（タブレット以上）
======================================== */
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-title-huge {
        font-size: 64px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .target-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .free-box {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .free-item {
        flex: 1;
    }
    
    .hero-icon {
        font-size: 120px;
    }
}

/* ========================================
   レスポンシブデザイン（PC）
======================================== */
@media (min-width: 1024px) {
    .container {
        max-width: 800px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .target-list {
        grid-template-columns: repeat(3, 1fr);
    }
}
