/* ===========================
   超ゴージャス・金色基調デザイン
   ========================== */

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

:root {
    --gold: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00);
    --gold-solid: #FFD700;
    --dark-gold: #B8860B;
    --purple: #6a0dad;
    --dark-purple: #4b0082;
    --white: #ffffff;
    --black: #000000;
    --gray: #666666;
    --light-gray: #f5f5f5;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--black);
    line-height: 1.8;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
}

/* ゴールドパーティクル背景 */
.gold-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><circle cx="10" cy="10" r="2" fill="%23FFD700" opacity="0.3"/><circle cx="50" cy="50" r="1" fill="%23FFA500" opacity="0.4"/><circle cx="80" cy="30" r="1.5" fill="%23FF8C00" opacity="0.2"/></svg>');
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

/* 緊急告知バナー */
.emergency-banner {
    background: linear-gradient(90deg, #ff0000, #ff6b6b, #ff0000);
    color: white;
    padding: 12px 0;
    text-align: center;
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}

.emergency-banner .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.3; }
}

.timer {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    background: rgba(0,0,0,0.3);
    padding: 5px 15px;
    border-radius: 5px;
}

/* 超ゴージャスヘッダー */
.luxury-header {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
}

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

.header-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(106, 13, 173, 0.8), rgba(75, 0, 130, 0.9));
}

.header-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 20px;
    animation: fadeInUp 1s ease;
}

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

.header-badge {
    background: var(--gold);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
    animation: pulse 2s infinite;
}

.header-badge i {
    margin-right: 8px;
    color: #fff700;
}

.mega-title {
    margin-bottom: 50px;
}

.title-line1 {
    display: block;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    background: var(--gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    margin-bottom: 15px;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { filter: brightness(100%); }
    50% { filter: brightness(130%); }
}

.title-line2 {
    display: block;
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

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

.feature-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.feature-icon {
    font-size: 2.5rem;
}

.feature-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-label {
    color: white;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* 超CTAボタン */
.super-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--gold);
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
    padding: 25px 60px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.6);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 20px;
}

.super-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.8);
}

.pulse {
    animation: pulse 2s infinite;
}

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

.cta-arrow {
    font-size: 2rem;
}

.header-note {
    color: white;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* コンテナ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* セクションタイトル */
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    color: white;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.section-title i {
    margin-right: 10px;
    color: var(--gold-solid);
}

.gold-text {
    background: var(--gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 収益シミュレーター */
.simulator-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e1e1e, #2d2d2d);
    position: relative;
    z-index: 2;
}

.simulator-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    overflow: hidden;
}

.simulator-img {
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 300px;
    opacity: 0.1;
    border-radius: 15px;
}

.simulator-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.input-group label {
    display: block;
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.simulator-select {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    border-radius: 10px;
    border: 2px solid var(--gold-solid);
    background: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.simulator-select:hover {
    border-color: var(--dark-gold);
    transform: scale(1.02);
}

.simulator-result {
    text-align: center;
    padding: 30px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 3px solid var(--gold-solid);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.result-label {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.result-amount {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    background: var(--gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    animation: shimmer 2s infinite;
}

.result-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.btn-gold {
    display: inline-block;
    background: var(--gold);
    color: white;
    font-size: 1.3rem;
    font-weight: 900;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
    transition: all 0.3s;
    text-align: center;
}

.btn-gold:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.7);
}

/* 成功事例 */
.success-stories {
    padding: 80px 20px;
    background: linear-gradient(135deg, #302b63, #24243e);
    position: relative;
    z-index: 2;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.story-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.before-after {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 15px;
    margin-bottom: 25px;
    align-items: center;
}

.before, .after {
    text-align: center;
}

.ba-label {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.ba-label.gold {
    background: var(--gold);
}

.ba-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.ba-img.grayscale {
    filter: grayscale(100%) brightness(0.7);
}

.ba-status {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.ba-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.arrow-right {
    color: var(--gold-solid);
    font-size: 2rem;
}

.story-detail {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
}

.story-name {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.story-period {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.story-profit {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    background: var(--gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 収益グラフ */
.revenue-graph {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e1e1e, #2d2d2d);
    position: relative;
    z-index: 2;
}

.graph-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    max-width: 900px;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.graph-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* 公式セクション */
.official-section {
    padding: 60px 20px;
    background: white;
    text-align: center;
    position: relative;
    z-index: 2;
}

.official-badge {
    max-width: 600px;
    width: 100%;
    margin-bottom: 20px;
}

.official-note {
    color: var(--gray);
    font-size: 0.95rem;
}

/* 評判・口コミ */
.reviews-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #302b63, #24243e);
    position: relative;
    z-index: 2;
}

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

.review-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

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

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-solid);
}

.review-name {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 5px;
}

.review-stars {
    color: var(--gold-solid);
    font-size: 1.1rem;
}

.review-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-profit {
    font-weight: 700;
    color: white;
    font-size: 1rem;
}

.profit-amount {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    background: var(--gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ツール紹介 */
.tools-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e1e1e, #2d2d2d);
    position: relative;
    z-index: 2;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.tool-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.tool-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.tool-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.tool-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* キャンペーンセクション */
.campaign-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #6a0dad, #4b0082);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.campaign-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.campaign-badge {
    background: linear-gradient(90deg, #ff0000, #ff6b6b);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.5);
    animation: pulse 2s infinite;
}

.campaign-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: white;
    margin-bottom: 30px;
}

.campaign-amount {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 7vw, 5rem);
    background: var(--gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    animation: shimmer 2s infinite;
}

.campaign-timer {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

#campaign-countdown {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--gold-solid);
}

.campaign-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--gold);
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
    padding: 25px 60px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.6);
    transition: all 0.3s;
    margin-bottom: 40px;
}

.campaign-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.8);
}

.btn-sparkle {
    font-size: 2rem;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.campaign-banner-wrapper {
    margin: 30px 0;
}

.campaign-banner-img {
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    transition: transform 0.3s;
}

.campaign-banner-img:hover {
    transform: scale(1.05);
}

.campaign-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* 始め方3ステップ */
.steps-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e1e1e, #2d2d2d);
    position: relative;
    z-index: 2;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 40px;
    align-items: center;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.step-number {
    background: var(--gold);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.step-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.step-badge {
    background: linear-gradient(90deg, #ff6b6b, #ff0000);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
}

.step-arrow {
    color: var(--gold-solid);
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* 保証セクション */
.guarantee-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #302b63, #24243e);
    position: relative;
    z-index: 2;
}

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

.guarantee-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
}

.guarantee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.guarantee-icon {
    font-size: 3rem;
    color: var(--gold-solid);
    margin-bottom: 15px;
}

.guarantee-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.guarantee-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* 最終CTA */
.final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #6a0dad, #4b0082);
    position: relative;
    z-index: 2;
    text-align: center;
    overflow: hidden;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
}

.final-cta-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    background: var(--gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
}

.final-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: var(--gold);
    color: white;
    font-size: 2rem;
    font-weight: 900;
    padding: 30px 80px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.7);
    transition: all 0.3s;
    margin-bottom: 20px;
}

.final-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.9);
}

.final-btn-arrow {
    font-size: 2.5rem;
}

.final-cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* モバイル固定CTA */
.mobile-fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(90deg, #6a0dad, #4b0082);
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    display: none;
}

.mobile-cta-btn {
    display: block;
    width: 100%;
    background: var(--gold);
    color: white;
    font-size: 1.3rem;
    font-weight: 900;
    padding: 18px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

/* レスポンシブ */
@media (max-width: 768px) {
    .luxury-header {
        height: auto;
        min-height: 600px;
        padding: 60px 0;
    }

    .header-features {
        flex-direction: column;
        gap: 15px;
    }

    .super-cta {
        font-size: 1.2rem;
        padding: 20px 40px;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .before-after {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .arrow-right {
        transform: rotate(90deg);
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .mobile-fixed-cta {
        display: block;
    }

    .final-cta-btn {
        font-size: 1.3rem;
        padding: 20px 40px;
    }
}

@media (max-width: 480px) {
    .simulator-box {
        padding: 30px 20px;
    }

    .result-amount {
        font-size: 2.5rem;
    }

    .campaign-btn {
        font-size: 1.2rem;
        padding: 20px 40px;
    }
}