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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.7;
    color: #1f2937;
    background-color: #fff;
    letter-spacing: 0.01em;
}

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

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

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: #2563eb;
}

.nav-brand i {
    font-size: 1.5rem;
}

.nav-cta .btn {
    background: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta .btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* メインコンテンツ */
main {
    margin-top: 80px;
}

/* ファーストビュー */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    display: flex;
    width: 100%;
    height: 100vh;
    position: relative;
}

.hero-side-frame {
    flex: 0 0 5%;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    position: relative;
}

.hero-side-frame.left {
    border-right: 2px solid #d1d5db;
}

.hero-side-frame.right {
    border-left: 2px solid #d1d5db;
}

.hero-main-content {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-title-overlay {
    position: absolute;
    top: 8%;
    left: 5%;
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    max-width: 40%;
}

.hero-title-overlay h1 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    letter-spacing: -0.02em;
}

.hero-quote-overlay {
    position: absolute;
    top: 68%;
    right: 8%;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border: 2px solid #1a1a1a;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    text-align: center;
    max-width: 250px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-description-overlay {
    position: absolute;
    bottom: 15%;
    left: 5%;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2rem;
    border-left: 4px solid #f59e0b;
    border-radius: 0;
    max-width: 45%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-description-overlay p {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    color: #1a1a1a;
    line-height: 1.5;
}

.hero-description-overlay p:last-child {
    margin-bottom: 0;
}

.hero-cta-overlay {
    position: absolute;
    bottom: 8%;
    right: 8%;
    text-align: center;
}

.hero-cta-btn {
    background: #f57c00;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.hero-cta-btn:hover {
    background: #ef6c00;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.hero-note {
    font-size: 0.8rem;
    color: #1a1a1a;
    margin: 0;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.hero-cta-button {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: pulse-glow 2s infinite;
}

.hero-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.hero-cta-button:hover::before {
    left: 100%;
}

.hero-cta-button:hover {
    background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.6);
}

/* 新しいセクションのスタイル */
.why-now {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.pain-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pain-point {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-left: 4px solid #ef4444;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pain-point:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.pain-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pain-point p {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.future-vision {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.future-vision h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

.vision-scenes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.vision-scene {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
}

.scene-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.vision-scene p {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.learning-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.learning-point {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #3b82f6;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.learning-point:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
}

.point-number {
    background: #3b82f6;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.point-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.point-content p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* 比較グリッド */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.comparison-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 4px solid #e5e7eb;
}

.comparison-item.old-way {
    border-top-color: #ef4444;
}

.comparison-item.new-way {
    border-top-color: #10b981;
}

.comparison-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.comparison-item.old-way .comparison-icon {
    color: #ef4444;
}

.comparison-item.new-way .comparison-icon {
    color: #10b981;
}

.comparison-item h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.comparison-item p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.trend {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.trend.down {
    background: #fef2f2;
    color: #dc2626;
}

.trend.complex {
    background: #fffbeb;
    color: #d97706;
}

.trend.up {
    background: #f0fdf4;
    color: #16a34a;
}

/* アプリ作成セクション */
.easy-creation {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
}

.app-examples {
    margin-top: 4rem;
}

.app-examples h3 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.example-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.example-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: #3b82f6;
}

.example-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.example-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.example-card p {
    color: #6b7280;
    margin: 0;
}

/* 中盤CTA */
.mid-section-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
}

.cta-button {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.cta-note {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

/* 収益システム */
.revenue-system {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.revenue-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.flow-step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.flow-icon {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.flow-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.flow-step p {
    color: #6b7280;
    margin: 0;
}

.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #3b82f6;
    font-weight: 700;
}

.revenue-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-weight: 500;
}

/* SECTION 6: 参加案内（料金プラン） */
.pricing {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
}

.pricing-intro-message {
    text-align: center;
    margin: 2rem auto 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    border-radius: 20px;
    max-width: 700px;
    border: 3px solid #3b82f6;
}

.intro-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.9;
    margin: 0 0 2rem 0;
}

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

.pricing-catchcopy {
    text-align: center;
    margin: 2rem 0 3rem;
}

.catchcopy-main {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.catchcopy-sub {
    font-size: 1.2rem;
    color: #6b7280;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.premium {
    border: 3px solid #f57c00;
    transform: scale(1.05);
}

.pricing-card.ultimate-plan {
    border: 3px solid #8b5cf6;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: #f57c00;
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 0 0 12px 12px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
}

.ultimate-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: #8b5cf6;
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 0 0 12px 12px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
}

.today-only-badge {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #ef4444;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 10;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.card-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    background: #f8fafc;
}

.course-emoji {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.course-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.course-concept {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 8px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #6b7280;
}

.amount {
    font-size: 3rem;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 0.25rem;
}

.period {
    font-size: 1rem;
    color: #6b7280;
}

.target {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.payment-note {
    font-size: 0.85rem;
    color: #059669;
    font-weight: 600;
    margin-top: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: rgba(5, 150, 105, 0.1);
    border-radius: 16px;
    display: inline-block;
}

.card-content {
    padding: 1rem 2rem;
}

.recommended-for {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f0f9ff;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.recommended-for h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.recommended-for ul {
    list-style: none;
    padding: 0;
}

.recommended-for ul li {
    font-size: 0.9rem;
    color: #4b5563;
    padding: 0.25rem 0;
}

.course-message {
    margin-top: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 8px;
    text-align: center;
}

.course-message p {
    font-size: 0.95rem;
    font-weight: 600;
    color: #92400e;
    margin: 0;
}

.features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
}

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

.features i {
    color: #10b981;
    font-size: 1.1rem;
}

.features .fa-crown {
    color: #8b5cf6;
}

.card-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #f57c00;
    color: white;
}

.btn-primary:hover {
    background: #ef6c00;
    transform: translateY(-2px);
}

.btn-basic {
    background: #6b7280;
    color: white;
    border: 2px solid #6b7280;
}

.btn-basic:hover {
    background: #4b5563;
    border-color: #4b5563;
    transform: translateY(-2px);
}

.btn-premium {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    border: 2px solid #f59e0b;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-premium:hover {
    background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
    border-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-outline {
    background: transparent;
    color: #f57c00;
    border-color: #f57c00;
}

.btn-outline:hover {
    background: #f57c00;
    color: white;
}

.btn-ultimate {
    background: linear-gradient(135deg, #1a1a1a 0%, #4b5563 100%);
    color: #fbbf24;
    border: 2px solid #fbbf24;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.btn-ultimate:hover {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-color: #fbbf24;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(251, 191, 36, 0.5);
}

/* 受講者の声 */
.testimonials {
    padding: 4rem 0;
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.quote-icon {
    color: #3b82f6;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #374151;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.author-detail {
    font-size: 0.9rem;
    color: #6b7280;
}

/* 講師紹介 */
.instructor-section {
    padding: 4rem 0;
    background: white;
}

.instructor-content {
    max-width: 1000px;
    margin: 0 auto;
}

.instructor-info {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.instructor-image {
    position: relative;
}

.instructor-photo {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.instructor-details {
    padding: 1rem 0;
}

.instructor-intro h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.instructor-name {
    font-size: 1.2rem;
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.instructor-background {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.achievements-section {
    margin: 2rem 0;
}

.achievements-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.achievements {
    list-style: none;
    margin: 0;
    padding: 0;
}

.achievements li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

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

.achievements i {
    color: #3b82f6;
    font-size: 1.1rem;
    width: 20px;
}

.books-showcase {
    margin: 2rem 0;
}

.books-showcase h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

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

.book-cover {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.book-cover:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.book-image {
    width: 100%;
    height: auto;
    display: block;
}

.book-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.book-cover:hover .book-overlay {
    opacity: 1;
}

.book-link-btn {
    background: #3b82f6;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.book-link-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.book-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 1rem;
    line-height: 1.4;
}

.app-showcase {
    margin: 2rem 0;
}

.app-showcase h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

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

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

.app-screenshot {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.app-screenshot:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.app-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.app-screenshot:hover .app-overlay {
    opacity: 1;
}

.app-link-btn {
    background: #10b981;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.app-link-btn:hover {
    background: #059669;
    transform: translateY(-2px);
}

.app-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 1rem 0 0.5rem;
}

.app-item p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0 0 0.5rem;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f3f4f6;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.instructor-message {
    margin: 2rem 0;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.instructor-message h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.instructor-message p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.instructor-message p:last-child {
    margin-bottom: 0;
}

.instructor-encouragement {
    margin: 2rem 0;
    padding: 2rem;
    background: #fef3c7;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
}

.instructor-encouragement h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.instructor-encouragement blockquote {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

/* 限定特典 */
.bonus {
    padding: 4rem 0;
    background: #f8fafc;
}

.bonus-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.bonus-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bonus-icon {
    font-size: 2.5rem;
    color: #f57c00;
    flex-shrink: 0;
}

.bonus-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.bonus-text p {
    color: #6b7280;
    margin: 0;
}

.bonus-deadline {
    text-align: center;
    margin-top: 2rem;
}

.deadline-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ef4444;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* CTA */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate-gradient 20s linear infinite;
}

@keyframes rotate-gradient {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.cta-message {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-message-secondary {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-button-large {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
    }

    50% {
        box-shadow: 0 8px 35px rgba(245, 158, 11, 0.5);
    }
}

.cta-button-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.cta-button-large:hover::before {
    left: 100%;
}

.cta-button-large:hover {
    background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.5);
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* フォーム */
.form-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.cta-escape-message {
    text-align: center;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-escape-message p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    margin: 0;
    font-weight: 500;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.form-description {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Noto Sans JP', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #374151;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: #3b82f6;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.cta-button-submit {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button-submit:hover::before {
    left: 100%;
}

.cta-button-submit:hover {
    background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* フッター */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #3b82f6;
}

.footer-info p {
    color: #9ca3af;
    margin: 0;
}

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

.footer-slogan .slogan {
    font-size: 1.3rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.footer-slogan .company {
    font-size: 1rem;
    color: #764ba2;
    margin: 0;
    font-weight: 600;
}

.footer-slogan .company a {
    color: #764ba2;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-slogan .company a:hover {
    color: #667eea;
    text-decoration: underline;
}

/* 企業理念セクション */
.philosophy-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.philosophy-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.philosophy-story {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-image {
    flex: 0 0 200px;
}

.terminator-icon {
    font-size: 8rem;
    color: #667eea;
    text-shadow: 2px 2px 4px rgba(102, 126, 234, 0.3);
    animation: pulse 2s infinite;
    display: block;
    text-align: center;
}

.story-text {
    flex: 1;
    text-align: left;
}

.story-intro,
.story-present {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.core-belief {
    background: linear-gradient(135deg, #4a90e2 0%, #7b68ee 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.core-belief p {
    font-size: 1.3rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.philosophy-explanation {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    font-style: italic;
}

.philosophy-mission {
    background: white;
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.philosophy-mission h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 40px;
}

.mission-items {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

.mission-item {
    flex: 1;
    text-align: center;
}

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

.mission-item p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
}

.philosophy-sun {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.philosophy-sun h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.philosophy-sun p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.sun-belief {
    background: linear-gradient(135deg, #fdcb6e 0%, #e17055 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(253, 203, 110, 0.3);
}

.sun-belief p {
    font-size: 1.3rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.company-slogan {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.company-slogan h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 40px;
}

.slogan-main,
.slogan-unified {
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 15px;
}

.slogan-main {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.slogan-unified {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    color: #2c3e50;
}

.slogan-text {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.slogan-sub {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .nav {
        padding: 1rem;
        justify-content: center;
    }

    .nav-brand {
        font-size: 0.9rem;
    }

    .nav-brand span {
        display: none;
    }

    .nav-brand::after {
        content: "愛の贈り物講座";
        display: inline;
    }

    /* Hero部分のモバイル対応 */
    .hero-target-overlay {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        max-width: 100%;
        padding: 1.5rem;
        margin: 0;
    }

    .hero-target-list li {
        font-size: 1rem;
    }

    .hero-scroll-hint {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        padding: 1rem;
        margin: 0;
    }

    /* SECTION 1-3 モバイル対応 */
    .empathy-problem-list {
        grid-template-columns: 1fr;
    }

    /* 問いのフィルタ モバイル対応 */
    .question-filter-section {
        padding: 3rem 0;
    }

    .filter-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .filter-content {
        padding: 2.5rem 1.5rem;
        margin: 0 1rem;
    }

    .filter-question {
        font-size: 1.3rem;
        line-height: 1.8;
        margin-bottom: 2rem;
    }

    .filter-answer {
        font-size: 1.1rem;
        line-height: 1.8;
    }

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

    .arrow-divider {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    .course-capability-list {
        gap: 1.5rem;
    }

    .capability-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .pricing-intro-message {
        padding: 2rem 1.5rem;
    }

    .intro-text {
        font-size: 1.4rem;
    }

    /* ヒーローセクション モバイル最適化 */
    .hero {
        min-height: auto;
    }

    .hero-container {
        flex-direction: column;
        height: auto;
        min-height: auto;
    }

    .hero-side-frame {
        display: none;
        /* サイドフレームを非表示 */
    }

    .hero-main-content {
        width: 100%;
    }

    .hero-image-wrapper {
        flex-direction: column;
        height: auto;
        position: relative;
    }

    .hero-main-image {
        width: 100%;
        height: 50vh;
        max-height: 400px;
        object-fit: cover;
    }

    .hero-title-overlay {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        max-width: 100%;
        padding: 1.5rem;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        text-align: center;
    }

    .hero-title-overlay h1 {
        font-size: 1.4rem;
        color: white;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        line-height: 1.5;
    }

    .hero-subtitle-overlay {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        max-width: 100%;
        padding: 1.5rem;
        margin: 0;
        background: white;
        border-left: 4px solid #2563eb;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .hero-features-overlay {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        margin: 0;
        padding: 1.5rem;
        max-width: 100%;
        gap: 1rem;
    }

    .hero-feature-item {
        background: white;
        padding: 1rem 1.5rem;
        border: 2px solid #3b82f6;
        border-radius: 8px;
    }

    .hero-feature-item span {
        font-size: 1rem;
        font-weight: 600;
    }

    .hero-quote-overlay {
        position: absolute !important;
        top: 5% !important;
        left: 5% !important;
        right: auto !important;
        transform: none;
        margin: 0;
        padding: 1rem 1.2rem;
        max-width: 65%;
        background: rgba(255, 245, 230, 0.95);
        border: 3px solid #f57c00;
        font-size: 1rem;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        z-index: 10;
    }

    .hero-cta-overlay {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        padding: 1.5rem;
        margin: 0;
        background: white;
    }

    .hero-cta-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    .hero-note {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .pain-points,
    .vision-scenes,
    .learning-points {
        grid-template-columns: 1fr;
    }

    .pain-point,
    .vision-scene,
    .learning-point {
        padding: 1.5rem;
    }

    .future-vision {
        padding: 2rem;
    }

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

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

    .pricing-card.premium {
        transform: none;
    }

    .catchcopy-main {
        font-size: 1.5rem;
    }

    .catchcopy-sub {
        font-size: 1rem;
    }

    .course-emoji {
        font-size: 2.5rem;
    }

    .recommended-for {
        padding: 0.75rem;
    }

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

    .instructor-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .books-grid,
    .apps-grid {
        grid-template-columns: 1fr;
    }

    .bonus-content {
        grid-template-columns: 1fr;
    }

    .bonus-item {
        flex-direction: column;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-message {
        font-size: 1.1rem;
    }

    .form-container {
        padding: 2rem;
        margin: 0 1rem;
    }

    .cta-escape-message {
        padding: 1.5rem;
        margin: 1.5rem 1rem;
    }

    .cta-escape-message p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-main-image {
        height: 40vh;
        max-height: 350px;
    }

    .hero-title-overlay {
        padding: 1rem;
    }

    .hero-title-overlay h1 {
        font-size: 1.2rem;
        line-height: 1.6;
    }

    .hero-subtitle-overlay {
        padding: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-features-overlay {
        padding: 1rem;
        gap: 0.8rem;
    }

    .hero-feature-item {
        padding: 0.8rem 1.2rem;
    }

    .hero-feature-item i {
        font-size: 1.2rem;
    }

    .hero-feature-item span {
        font-size: 0.9rem;
    }

    .hero-quote-overlay {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        line-height: 1.5;
        max-width: 60%;
        top: 5% !important;
    }

    .hero-cta-overlay {
        padding: 1rem;
    }

    .hero-cta-btn {
        padding: 0.9rem;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .form-container {
        padding: 1.5rem;
    }
}

/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

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

/* 企業理念セクション モバイル対応 */
@media (max-width: 768px) {
    .philosophy-section {
        padding: 60px 0;
    }

    .philosophy-content h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .philosophy-story {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 30px;
    }

    .story-image {
        flex: none;
    }

    .terminator-icon {
        font-size: 6rem;
    }

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

    .story-intro,
    .story-present {
        font-size: 1.1rem;
    }

    .core-belief {
        padding: 20px;
        margin: 20px 0;
    }

    .core-belief p {
        font-size: 1.2rem;
    }

    .philosophy-explanation {
        font-size: 1rem;
    }

    .philosophy-mission {
        padding: 30px;
    }

    .philosophy-mission h3 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .mission-items {
        flex-direction: column;
        gap: 20px;
    }

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

    .mission-item p {
        font-size: 1.1rem;
    }

    .philosophy-sun {
        padding: 30px;
    }

    .philosophy-sun h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .philosophy-sun p {
        font-size: 1rem;
    }

    .sun-belief {
        padding: 20px;
        margin: 20px 0;
    }

    .sun-belief p {
        font-size: 1.2rem;
    }

    .company-slogan {
        padding: 30px;
    }

    .company-slogan h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .slogan-main,
    .slogan-unified {
        padding: 25px;
        margin-bottom: 20px;
    }

    .slogan-text {
        font-size: 1.5rem;
    }

    .slogan-sub {
        font-size: 1rem;
    }
}

/* SECTION 1.5: 問いのフィルタ（立ち止まる） */
.question-filter-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.filter-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.filter-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    border-left: 6px solid #6b7280;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.filter-question {
    font-size: 1.6rem;
    font-weight: 600;
    color: #374151;
    line-height: 2;
    margin: 0 0 3rem 0;
}

.filter-answer {
    font-size: 1.4rem;
    font-weight: 500;
    color: #6b7280;
    line-height: 2;
    margin: 0;
}

/* SECTION 2: ビフォーアフター */
.before-after-section {
    padding: 4rem 0;
    background: white;
}

.before-after-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.before-after-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    min-height: 350px;
}

.before-card {
    border: 3px solid #ef4444;
}

.after-card {
    border: 3px solid #10b981;
}

.card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
}

.before-badge {
    background: #ef4444;
}

.after-badge {
    background: #10b981;
}

.card-icon {
    font-size: 4rem;
    text-align: center;
    margin: 1rem 0 2rem;
}

.change-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.change-list li {
    font-size: 1.15rem;
    color: #374151;
    line-height: 1.8;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
    font-weight: 500;
}

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

.arrow-divider {
    font-size: 3rem;
    color: #3b82f6;
    text-align: center;
    font-weight: 700;
}

/* 共感ゾーン（旧スタイル - 後で削除可能） */
.empathy-zone {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.empathy-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.empathy-point {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.empathy-point:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.empathy-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.empathy-point p {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.empathy-conclusion {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.conclusion-text {
    font-size: 1.5rem;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0;
}

.highlight-strong {
    color: #2563eb;
    font-weight: 900;
    font-size: 1.7rem;
}

/* SECTION 3: 講座内容 */
.course-content-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.course-capability-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
    display: grid;
    gap: 2rem;
}

.capability-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #f59e0b;
    transition: all 0.3s ease;
}

.capability-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.15);
}

.capability-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.capability-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
}

.capability-content p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* 問題の本質提示（旧スタイル - 後で削除可能） */
.problem-essence {
    padding: 4rem 0;
    background: white;
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: #f8fafc;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.problem-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #ef4444;
}

.problem-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 0.5rem;
}

.problem-item p {
    font-size: 1.1rem;
    color: #374151;
    margin: 0;
}

.problem-divider {
    text-align: center;
    font-size: 2rem;
    color: #3b82f6;
    margin: 1rem 0;
    font-weight: 700;
}

.problem-conclusion {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 3px solid #2563eb;
}

.problem-conclusion p {
    font-size: 1.2rem;
    color: #374151;
    margin-bottom: 1rem;
}

.conclusion-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.highlight-text {
    color: #2563eb;
    font-weight: 900;
}

/* 解決策の提示 */
.solution-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.solution-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.solution-intro {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.not-this-course {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.not-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    color: #ef4444;
    font-weight: 600;
}

.not-item i {
    font-size: 1.5rem;
}

.solution-statement {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 2rem;
}

/* 完成物セクション */
.completion-section {
    padding: 4rem 0;
    background: white;
}

.completion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.completion-item {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #3b82f6;
    transition: all 0.3s ease;
}

.completion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.completion-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.completion-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.5;
    margin: 0;
}

.completion-conclusion {
    text-align: center;
    padding: 2.5rem;
    background: #f8fafc;
    border-radius: 16px;
    border: 3px solid #10b981;
}

.completion-conclusion p {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 0;
}

/* 実例セクション */
.examples-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.examples-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.example-showcase-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.example-showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.example-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.example-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.example-info {
    padding: 1.5rem;
    text-align: center;
}

.example-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.example-info p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.example-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.example-link:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.examples-note {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.examples-note p {
    font-size: 1.2rem;
    color: #374151;
    margin: 0;
    line-height: 1.6;
}

/* 講座の進め方 */
.course-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.flow-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #3b82f6;
}

.flow-number {
    background: #3b82f6;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.flow-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.flow-item p {
    color: #6b7280;
    margin: 0;
}

/* FAQセクション */
.faq-section {
    padding: 4rem 0;
    background: white;
}

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

.faq-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.faq-question i {
    font-size: 1.5rem;
    color: #3b82f6;
}

.faq-question h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.faq-answer p {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

/* 最後のメッセージ */
.final-message {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.final-message-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.message-line {
    font-size: 1.8rem;
    color: white;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.message-emphasis {
    font-size: 2rem;
    color: #fbbf24;
    line-height: 1.8;
    margin-top: 2rem;
    font-weight: 600;
}

.message-emphasis strong {
    font-weight: 900;
    font-size: 2.2rem;
}

/* ヒーローセクションの追加スタイル */
.hero-subtitle-overlay {
    position: absolute;
    top: 30%;
    left: 5%;
    background: rgba(255, 255, 255, 0.98);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    max-width: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #f59e0b;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.7;
    margin: 0;
}

.hero-target-overlay {
    position: absolute;
    top: 50%;
    left: 5%;
    background: rgba(255, 255, 255, 0.98);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    max-width: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #10b981;
}

.hero-target-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.hero-target-list li {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    padding: 0.5rem 0;
    line-height: 1.6;
}

.hero-safety-note {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    padding: 0.75rem 1rem;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 8px;
    text-align: center;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 5%;
    right: 8%;
    text-align: center;
}

.hero-scroll-hint p {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-features-overlay {
    position: absolute;
    top: 50%;
    left: 5%;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 45%;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 3px solid #2563eb;
}

.hero-feature-item i {
    font-size: 1.5rem;
    color: #2563eb;
}

.hero-feature-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
}

.hero-main-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.highlight-text {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

/* 価値メッセージ */
.pricing-value-message {
    text-align: center;
    margin: 2rem 0 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 16px;
}

.value-intro {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.8;
    margin: 0;
}

/* SECTION 1: 共感・問題提起 */
.empathy-problem-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.empathy-problem-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 3rem;
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.empathy-problem-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.empathy-problem-item:hover {
    transform: translateY(-5px);
    border-color: #ef4444;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.15);
}

.problem-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.empathy-problem-item p {
    font-size: 1.2rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
    font-weight: 600;
}

.empathy-conclusion {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.conclusion-text {
    font-size: 1.8rem;
    color: #1a1a1a;
    line-height: 1.8;
    margin: 0;
    font-weight: 600;
}

/* 対象者セクション（旧スタイル - 後で削除可能） */
.target-audience {
    padding: 4rem 0;
    background: white;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.audience-item {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #3b82f6;
    transition: all 0.3s ease;
}

.audience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
    border-color: #2563eb;
}

.audience-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.audience-item p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0;
}

.audience-note {
    text-align: center;
    padding: 2rem;
    background: #fef3c7;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
}

.audience-note p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.6;
}

/* 完成するものセクション - リストスタイル */
.completion-list {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.completion-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.completion-list-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    border-left: 5px solid #2563eb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.completion-list-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.15);
    border-left-color: #1d4ed8;
}

.completion-list-item .item-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.completion-list-item .item-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.5;
}

/* 完成するものセクション - 追加スタイル */
.completion-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 12px;
}

.completion-intro strong {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 700;
}

.completion-list-item .item-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.completion-list-item .item-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
}

.completion-list-item .item-detail {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

.completion-guarantee {
    text-align: center;
    padding: 2.5rem;
    margin: 3rem 0 2rem;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 16px;
    border: 3px solid #2563eb;
}

.completion-guarantee p {
    font-size: 1.4rem;
    color: #1a1a1a;
    line-height: 1.8;
    margin: 0;
}

.completion-guarantee strong {
    font-size: 1.6rem;
    font-weight: 900;
    color: #2563eb;
}

/* 対象者セクション - リストスタイル */
.persona-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 2rem;
    max-width: 900px;
}

.persona-item {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    border-left: 5px solid #3b82f6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.persona-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15);
}

.persona-title {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.persona-detail {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* プロフィールミニ版 */
.mentor-intro-mini {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.mentor-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #374151;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 800px;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.mentor-intro strong {
    color: #2563eb;
    font-weight: 700;
}

/* 感情クッション */
.completion-emotion {
    text-align: center;
    font-size: 1.4rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 2rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 12px;
    font-weight: 500;
}

/* 価格プラン補足 */
.price-note {
    text-align: center;
    font-size: 1.2rem;
    color: #374151;
    line-height: 1.8;
    margin: 2rem auto;
    padding: 1.5rem;
    max-width: 700px;
    background: #f8fafc;
    border-radius: 8px;
    font-weight: 500;
}