/* =========================================
   Reset & Base Styles
   ========================================= */
:root {
    /* Color Palette - Refined */
    --color-base-white: #FFFFFF;
    --color-base-bg: #F7F9FC;
    /* Slightly cooler gray for modern feel */
    --color-text-main: #2D3748;
    /* Darker, softer black */
    --color-text-light: #718096;

    /* Accents */
    --color-accent-pain: #E53E3E;
    --color-accent-pain-bg: #FFF5F5;
    --color-accent-pain-dark: #C53030;

    --color-accent-hope: #3182CE;
    --color-accent-hope-light: #EBF8FF;
    --color-accent-hope-dark: #2C5282;

    --color-accent-success: #38A169;

    /* CTA */
    --color-cta-gradient: linear-gradient(135deg, #F6AD55 0%, #ED8936 100%);
    --color-cta-shadow: rgba(237, 137, 54, 0.4);

    /* Fonts */
    --font-jp: 'Noto Sans JP', sans-serif;
    --font-en: 'Montserrat', sans-serif;

    /* Spacing */
    --spacing-section: 120px;
    --spacing-container: 24px;
}

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

body {
    font-family: var(--font-jp);
    color: var(--color-text-main);
    background-color: var(--color-base-white);
    line-height: 1.8;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.05em;
    /* Add breathing room */
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Container - Strict Alignment */
.container {
    width: 100%;
    max-width: 1080px;
    /* Standard width */
    margin: 0 auto;
    padding: 0 20px;
    /* Increased padding for mobile safety */
}

.narrow-container {
    max-width: 720px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    /* Ensure images cover their container */
}

ul,
ol {
    list-style: none;
}

.sp-only {
    display: block;
}

.pc-only {
    display: none;
}

@media (min-width: 768px) {
    .sp-only {
        display: none;
    }

    .pc-only {
        display: block;
    }
}

/* =========================================
   Components
   ========================================= */
/* CTA Button - Premium Feel */
.cta-button {
    display: block;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    padding: 24px 32px;
    background: var(--color-cta-gradient);
    color: white;
    text-align: center;
    border-radius: 100px;
    box-shadow: 0 10px 20px var(--color-cta-shadow), 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px var(--color-cta-shadow), 0 8px 12px rgba(0, 0, 0, 0.1);
}

.cta-button:hover::after {
    opacity: 1;
}

.cta-text {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}

.cta-sub {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.95;
}

/* Glassmorphism Card */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    border-radius: 24px;
}

/* =========================================
   Hero Section - Redesigned
   ========================================= */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    /* Full height impact */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1A202C;
    color: white;
    padding: 100px 0;
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    /* Darken image for text contrast */
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 32, 44, 0.7) 0%, rgba(26, 32, 44, 0.4) 50%, rgba(26, 32, 44, 0.8) 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.warning-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(229, 62, 62, 0.95);
    color: white;
    padding: 10px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 40px;
    letter-spacing: 0.1em;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(229, 62, 62, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.warning-badge:hover {
    transform: translateY(-2px);
}

.hero-sub {
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-weight: 500;
    opacity: 0.9;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 48px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    background: linear-gradient(transparent 60%, rgba(49, 130, 206, 0.6) 60%);
    padding: 0 4px;
}

.hero-title .accent-text {
    color: #F6AD55;
    position: relative;
    display: inline-block;
}

.hero-message {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-message p {
    font-size: 1.1rem;
    margin-bottom: 16px;
}

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

.hero-catch {
    margin-bottom: 60px;
}

.catch-sub {
    font-family: var(--font-en);
    font-size: 1.2rem;
    font-weight: 700;
    color: #63B3ED;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.catch-main {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.6;
}

/* =========================================
   Pain Section - "The Struggle"
   ========================================= */
.pain-section {
    padding: var(--spacing-section) 0;
    background-color: var(--color-base-bg);
}

.section-title-pain {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 48px;
    color: var(--color-text-main);
    position: relative;
    padding-bottom: 24px;
}

.section-title-pain::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--color-accent-pain);
    border-radius: 2px;
}

.pain-content {
    font-size: 1.1rem;
    line-height: 2;
}

.pain-box {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    margin: 48px 0;
    border-left: 6px solid var(--color-accent-pain);
}

.pain-turn {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 60px 0;
    color: var(--color-accent-hope-dark);
}

.hope-proposal {
    background: white;
    padding: 48px;
    border-radius: 24px;
    border: 2px solid var(--color-accent-hope-light);
    box-shadow: 0 20px 40px rgba(49, 130, 206, 0.1);
}

.check-list li {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
}

.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--color-accent-success);
    font-size: 1.2rem;
    background: #F0FFF4;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* =========================================
   Story Section - Profile
   ========================================= */
.story-section {
    padding-top: var(--spacing-section);
    padding-bottom: 60px;
    /* Reduced to connect with next section */
    background: white;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 80px;
    color: var(--color-text-main);
}

.section-desc {
    text-align: center;
    margin-bottom: 60px;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.profile-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    margin-bottom: 60px;
}

.profile-img {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
    flex-shrink: 0;
}

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

.profile-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 2;
}

.user-voice-bad {
    background: var(--color-base-bg);
    padding: 32px;
    border-radius: 16px;
    font-style: italic;
    color: var(--color-text-light);
    position: relative;
    margin: 40px 0;
}

.user-voice-bad::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -16px;
    left: 32px;
    font-size: 2rem;
    color: #CBD5E0;
    background: white;
    padding: 0 10px;
}

.method-name {
    font-family: var(--font-en);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-accent-hope) 0%, var(--color-accent-success) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 24px 0;
    letter-spacing: -0.02em;
}

.solution-reveal {
    text-align: center;
    margin-top: 60px;
}

.solution-reveal p {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

/* =========================================
   Solution Section - Old vs New
   ========================================= */
.solution-section {
    padding-top: 60px;
    /* Reduced from 120px to connect with previous section */
    padding-bottom: var(--spacing-section);
    background: linear-gradient(to bottom, #FFFFFF 0%, #F7FAFC 100%);
}

.solution-header {
    text-align: center;
    margin-bottom: 80px;
}

.solution-header h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.solution-header p {
    font-size: 1.2rem;
}

.comparison-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
    margin-bottom: 80px;
}

.world-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.old-world {
    border: 1px solid #E2E8F0;
    background: #F7FAFC;
}

.new-world {
    border: 2px solid var(--color-accent-hope);
    box-shadow: 0 20px 50px rgba(49, 130, 206, 0.15);
    position: relative;
    overflow: hidden;
    background: white;
}

.world-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #EDF2F7;
}

.world-header h3 {
    font-family: var(--font-en);
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.old-world .world-header h3 {
    color: var(--color-text-light);
}

.new-world .world-header h3 {
    color: var(--color-accent-hope);
}

.world-img {
    margin-top: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.step-list {
    padding: 0;
    margin: 0 0 24px 0;
}

.step-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.step-list li:last-child {
    margin-bottom: 0;
}

.step-badge {
    background: var(--color-accent-hope);
    color: white;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 2px;
}



.evolution-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--color-accent-hope);
    transform: rotate(90deg);
}

/* =========================================
   Seminar Title
   ========================================= */
.seminar-title-section {
    background: #2D3748;
    color: white;
    padding: 100px 0;
    text-align: center;
    background-image: radial-gradient(circle at 50% 50%, #4A5568 0%, #2D3748 100%);
}

.title-box {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 60px 40px;
    margin-top: 40px;
    position: relative;
}

.title-box::before,
.title-box::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: white;
    border-style: solid;
    transition: all 0.3s;
}

.title-box::before {
    top: -1px;
    left: -1px;
    border-width: 2px 0 0 2px;
}

.title-box::after {
    bottom: -1px;
    right: -1px;
    border-width: 0 2px 2px 0;
}

.title-box h1 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    line-height: 1.4;
}

/* =========================================
   Testimonials
   ========================================= */
.testimonials-section {
    padding: var(--spacing-section) 0;
    background: #F7FAFC;
}

.voice-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 60px 0;
}

.voice-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.3s;
}

.voice-card:hover {
    transform: translateY(-4px);
}

.voice-icon {
    width: 48px;
    height: 48px;
    background: var(--color-accent-hope-light);
    color: var(--color-accent-hope);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

/* =========================================
   Curriculum
   ========================================= */
.curriculum-section {
    padding: var(--spacing-section) 0;
}

.step-item {
    display: flex;
    gap: 32px;
    margin-bottom: 60px;
    position: relative;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-accent-hope);
    flex-shrink: 0;
    width: 80px;
    text-align: right;
    padding-top: 4px;
}

.step-content {
    flex: 1;
    padding-bottom: 60px;
    border-bottom: 1px solid #EDF2F7;
}

.step-item:last-child .step-content {
    border-bottom: none;
    padding-bottom: 0;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 12px;
}

.step-sub {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-light);
}

/* =========================================
   Offer Section
   ========================================= */
.offer-section {
    padding: var(--spacing-section) 0;
    background: #1A202C;
    color: white;
}

.offer-section .section-title {
    color: white;
}

.price-box {
    background: white;
    color: var(--color-text-main);
    padding: 60px 40px;
    border-radius: 32px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.offer-price {
    font-size: 4rem;
    font-weight: 700;
    color: #DD6B20;
    font-family: var(--font-en);
    line-height: 1;
    margin: 24px 0;
    letter-spacing: -0.02em;
}

.reasons {
    max-width: 800px;
    margin: 0 auto;
}

.reason-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 16px;
    display: flex;
    gap: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* =========================================
   Bonus Section
   ========================================= */
.bonus-section {
    padding: var(--spacing-section) 0;
    background: var(--color-base-bg);
}

.bonus-box {
    background: white;
    padding: 60px 40px;
    border-radius: 32px;
    text-align: center;
    border: 4px solid #F6AD55;
    box-shadow: 0 20px 40px rgba(246, 173, 85, 0.15);
    max-width: 900px;
    margin: 0 auto;
}

.bonus-title {
    font-size: 1.8rem;
    margin-bottom: 32px;
    color: var(--color-text-main);
}

.bonus-content {
    background: #FFFFF0;
    padding: 40px;
    border-radius: 24px;
    margin-top: 32px;
}

.bonus-badge {
    display: inline-block;
    background: #F6AD55;
    color: white;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(246, 173, 85, 0.4);
}

/* =========================================
   Closing Section
   ========================================= */
.closing-section {
    padding: var(--spacing-section) 0;
    background: white;
}

.two-paths {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 60px 0;
}

.path-item {
    padding: 40px;
    border-radius: 24px;
    flex: 1;
}

.bad-path {
    background: var(--color-base-bg);
    border-left: 8px solid #CBD5E0;
}

.good-path {
    background: #F0FFF4;
    border-left: 8px solid var(--color-accent-success);
    box-shadow: 0 20px 40px rgba(56, 161, 105, 0.1);
}

.closing-message {
    text-align: center;
    margin-bottom: 60px;
    font-size: 1.1rem;
}

.final-question {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 48px;
    color: var(--color-text-main);
}

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

.large-cta {
    font-size: 1.2rem;
    padding: 32px 48px;
}

.cta-note {
    text-align: center;
    color: var(--color-accent-pain);
    font-size: 0.9rem;
    margin-top: 16px;
    font-weight: 700;
}

.closing-signature {
    text-align: right;
    margin-top: 100px;
    font-family: serif;
}

.signature-name {
    font-size: 1.8rem;
    margin-top: 16px;
    font-weight: 700;
}

/* =========================================
   PS Section
   ========================================= */
.ps-section {
    padding: 80px 0 120px;
    background: var(--color-base-bg);
}

.ps-section h3 {
    font-size: 2.5rem;
    margin-bottom: 32px;
    font-family: var(--font-en);
    color: var(--color-text-light);
}

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

.text-link {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-accent-hope);
    border-bottom: 2px solid var(--color-accent-hope);
    padding-bottom: 4px;
}

.text-link:hover {
    color: var(--color-accent-hope-dark);
    border-color: var(--color-accent-hope-dark);
}

/* =========================================
   Footer
   ========================================= */
footer {
    background: #1A202C;
    color: rgba(255, 255, 255, 0.6);
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* =========================================
   Story Section - Text Alignment
   ========================================= */
.story-turning-point {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    /* Ensure readability */
}

.story-turning-point p {
    margin-bottom: 24px;
}

/* =========================================
   PS Section - Text Alignment
   ========================================= */
.ps-section .container {
    max-width: 800px;
    /* Narrower for letter feel */
    text-align: left;
    /* Letter style */
}

.ps-section p {
    margin-bottom: 24px;
    font-size: 1.1rem;
    line-height: 2;
}

/* =========================================
   Instructor Profile Section
   ========================================= */
.instructor-section {
    padding: var(--spacing-section) 0;
    background: #F7FAFC;
}

.instructor-card {
    background: white;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.instructor-header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #EDF2F7;
    padding-bottom: 40px;
}

.instructor-img-box {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
}

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

.instructor-info {
    flex: 1;
}

.instructor-position {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.instructor-name {
    font-size: 2rem;
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.name-en {
    font-family: var(--font-en);
    font-size: 1.2rem;
    color: var(--color-text-light);
    font-weight: 400;
}

.instructor-motto {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-accent-hope-dark);
    font-style: italic;
}

.instructor-body p {
    margin-bottom: 24px;
    line-height: 2;
    text-align: left;
}

.instructor-history {
    background: #F7FAFC;
    padding: 24px;
    border-radius: 12px;
    margin: 32px 0;
    font-size: 0.95rem;
}

.instructor-history p {
    margin-bottom: 0;
}

.instructor-message {
    font-weight: 700;
    color: var(--color-text-main);
    border-left: 4px solid var(--color-accent-hope);
    padding-left: 16px;
}

@media (max-width: 768px) {
    .instructor-header {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .instructor-card {
        padding: 32px;
    }

    .instructor-name {
        justify-content: center;
    }
}

/* =========================================
   Responsive
   ========================================= */
@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-catch .catch-main {
        font-size: 2rem;
    }

    .profile-area {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }

    .comparison-container {
        flex-direction: row;
    }

    .evolution-arrow {
        transform: rotate(0deg);
    }

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

    .two-paths {
        flex-direction: row;
    }

    .path-item {
        width: 50%;
    }
}

/* =========================================
   Schedule Block
   ========================================= */
.schedule-block {
    background: #EDF2F7;
    border: 2px solid #CBD5E0;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 40px;
    text-align: center;
}

.schedule-format {
    background: var(--color-accent-hope);
    color: white;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.schedule-title {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 12px;
    font-weight: 700;
}

.schedule-date {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 4px;
    line-height: 1.4;
}

.schedule-time {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-main);
}