/* ==============================================
   地域プロデューサー伴走講座 LP - 11月版
   ============================================== */

/* ========== Reset & Base ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* ========== Typography ========== */
.section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.4;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(14px, 2.5vw, 18px);
    color: #666;
    margin-bottom: 50px;
}

/* ========== Buttons ========== */
.cta-button {
    display: inline-block;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: none;
}

.cta-button.primary {
    background: linear-gradient(135deg, #2c5f2d 0%, #4a9b4f 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(44, 95, 45, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(44, 95, 45, 0.4);
    background: linear-gradient(135deg, #1f4420 0%, #3d8842 100%);
}

.cta-button.large {
    padding: 22px 60px;
    font-size: 20px;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* ========== Hero Section ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f3d0f 0%, #1a5c1a 50%, #2d7a2d 100%);
    background-image: 
        linear-gradient(135deg, rgba(15, 61, 15, 0.9) 0%, rgba(26, 92, 26, 0.85) 50%, rgba(45, 122, 45, 0.8) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><path d="M0,400 Q300,200 600,400 T1200,400 L1200,800 L0,800 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.4;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(16px, 3vw, 22px);
    color: #f0f0f0;
    margin-bottom: 20px;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hero-description {
    font-size: clamp(14px, 2.5vw, 18px);
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    margin-top: 50px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
    margin: 10px auto 0;
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ========== Schedule Section ========== */
.schedule-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fdf8 0%, #fff 100%);
}

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

.schedule-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.schedule-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(44, 95, 45, 0.15);
    border-color: #4a9b4f;
}

.schedule-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.schedule-date .month {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    margin-bottom: 5px;
}

.schedule-date .day {
    font-size: 56px;
    font-weight: 900;
    color: #2c5f2d;
    line-height: 1;
    margin-bottom: 5px;
}

.schedule-date .weekday {
    font-size: 18px;
    color: #888;
    font-weight: 500;
}

.schedule-time {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.schedule-status {
    display: inline-block;
    background: linear-gradient(135deg, #2c5f2d 0%, #4a9b4f 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.schedule-note {
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background: #fff9e6;
    border-radius: 15px;
    border-left: 4px solid #f0ad4e;
}

.schedule-note p {
    margin: 8px 0;
    color: #856404;
    font-weight: 500;
}

/* ========== Problems Section ========== */
.problems-section {
    padding: 100px 0;
    background: #fff;
}

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

.problem-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    border-color: #4a9b4f;
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.problem-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.problem-card strong {
    color: #2c5f2d;
    font-weight: 700;
}

/* ========== Learning Cycle Section ========== */
.learning-cycle-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, #f8fdf8 100%);
}

.cycle-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cycle-step {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.cycle-step:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(44, 95, 45, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5f2d 0%, #4a9b4f 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 15px;
}

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

.cycle-arrow {
    font-size: 36px;
    color: #4a9b4f;
    font-weight: 700;
}

@media (max-width: 768px) {
    .cycle-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cycle-arrow {
        display: none;
    }
}

/* ========== Curriculum Section ========== */
.curriculum-section {
    padding: 100px 0;
    background: #fff;
}

.curriculum-format {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
    font-weight: 500;
}

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

.curriculum-card {
    background: linear-gradient(135deg, #f8fdf8 0%, #fff 100%);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #4a9b4f;
}

.curriculum-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(44, 95, 45, 0.15);
}

.curriculum-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2c5f2d 0%, #4a9b4f 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 20px;
}

.curriculum-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.4;
}

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

.curriculum-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.curriculum-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a9b4f;
    font-weight: 700;
}

/* ========== Instructors Section ========== */
.instructors-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, #f8fdf8 100%);
}

.instructor-main {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 60px;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
}

.instructor-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.instructor-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 32px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 10px;
}

.instructor-title {
    font-size: 18px;
    color: #666;
    font-weight: 600;
    margin-bottom: 20px;
}

.instructor-bio {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}

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

.instructor-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.instructor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(44, 95, 45, 0.15);
}

.instructor-card-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid #4a9b4f;
}

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

.instructor-card-name {
    font-size: 20px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 8px;
}

.instructor-card-title {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    margin-bottom: 15px;
}

.instructor-card-bio {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .instructor-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .instructor-image {
        max-width: 250px;
        margin: 0 auto;
    }
}

/* ========== Testimonials Section ========== */
.testimonials-section {
    padding: 100px 0;
    background: #fff;
}

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

.testimonial-card {
    background: linear-gradient(135deg, #f8fdf8 0%, #fff 100%);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #4a9b4f;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(44, 95, 45, 0.15);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
}

.testimonial-author {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    text-align: right;
}

/* ========== Future Section ========== */
.future-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c5f2d 0%, #4a9b4f 100%);
    color: #fff;
}

.future-section .section-title {
    color: #fff;
}

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

.future-subtitle {
    font-family: 'Noto Serif JP', serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

.future-text {
    font-size: 17px;
    line-height: 2;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.95);
}

.future-text strong {
    font-weight: 700;
    color: #fff;
}

/* ========== Process Section ========== */
.process-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fdf8 0%, #fff 100%);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.process-step {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(44, 95, 45, 0.15);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5f2d 0%, #4a9b4f 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    margin: 0 auto 20px;
}

.process-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 15px;
}

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

.process-arrow {
    font-size: 36px;
    color: #4a9b4f;
    font-weight: 700;
}

.process-note {
    text-align: center;
    max-width: 700px;
    margin: 40px auto 0;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.process-note p {
    margin: 10px 0;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.process-note strong {
    color: #2c5f2d;
    font-weight: 700;
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-arrow {
        display: none;
    }
}

/* ========== Final CTA Section ========== */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fdf8 0%, #fff 100%);
    text-align: center;
}

.cta-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: #555;
    margin-bottom: 40px;
    font-weight: 500;
}

/* ========== Footer ========== */
.footer {
    padding: 50px 0;
    background: #1a1a1a;
    color: #fff;
    text-align: center;
}

.footer-company {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .curriculum-grid {
        grid-template-columns: 1fr;
    }
    
    .instructors-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        padding: 16px 36px;
        font-size: 16px;
    }
    
    .cta-button.large {
        padding: 18px 42px;
        font-size: 18px;
    }
}

/* ========== Animations ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.8s ease;
}

/* ========== Utility Classes ========== */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-40 {
    margin-top: 40px;
}