/* ===== Schedule ページ共通 ===== */
.about-hero {
    position: relative;
    min-height: 420px;
    background: #f5f5f5;
    display: flex;
    align-items: flex-end;
    padding: 0 40px 0;
    overflow: hidden;
}

.about-hero-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 0;
    padding-top: 140px;
}

.about-hero-label-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.about-hero-company {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.05em;
}

.about-hero-line {
    display: block;
    width: 40px;
    height: 1px;
    background: #1a1a1a;
}

.about-hero-title {
    position: relative;
    display: inline-block;
}

.about-hero-title-text {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(5rem, 14vw, 12rem);
    font-weight: 900;
    color: #1a1a1a;
    line-height: 0.85;
    letter-spacing: -0.03em;
    display: block;
    position: relative;
    z-index: 1;
}

.about-hero-title-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35%;
    background: #ff6600;
    z-index: 0;
}

/* ===== セクション共通 ===== */
.about-section {
    background: #fff;
    position: relative;
    z-index: 1;
}

.about-section-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 40px;
}

.about-section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.about-section-en {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    font-style: italic;
    color: #ff6600;
    letter-spacing: 0.05em;
}

.about-section-num {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ff6600;
}

/* ===== CTA ===== */
.about-cta {
    background: #ff6600;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.about-cta-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.about-cta-btn {
    display: inline-block;
    background: #fff;
    color: #ff6600;
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 16px 48px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
    margin-bottom: 16px;
}

.about-cta-btn:hover {
    opacity: 0.7;
}

.about-cta-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== 月タイトル ===== */
.sch-month-title {
    text-align: center;
    margin-bottom: 48px;
}

.sch-month-name {
    display: block;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #ff6600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 8px;
}

.sch-month-ja {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* ===== スケジュール画像 ===== */
.sch-image {
    max-width: 800px;
    margin: 0 auto 32px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

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

/* ===== 注意書き ===== */
.sch-note {
    text-align: center;
    font-size: 0.8rem;
    color: #999;
    line-height: 1.8;
    margin-bottom: 48px;
}

/* ===== お知らせブロック ===== */
.sch-info {
    max-width: 800px;
    margin: 0 auto 48px;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 40px 36px;
}

.sch-info-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    padding-left: 16px;
    border-left: 4px solid #ff6600;
}

.sch-info-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 2;
    margin-bottom: 32px;
}

/* ===== 詳細リスト ===== */
.sch-detail-list {
    list-style: none;
    padding: 0;
}

.sch-detail-item {
    padding: 16px 0;
    border-bottom: 1px solid #e5e5e5;
}

.sch-detail-item:last-child {
    border-bottom: none;
}

.sch-detail-label {
    display: inline-block;
    background: #ff6600;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.sch-detail-text {
    font-size: 0.875rem;
    color: #555;
    line-height: 1.8;
}

/* ===== LINE CTA ===== */
.sch-line-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
    border-top: 1px solid #e5e5e5;
}

.sch-line-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.sch-line-btn {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.sch-line-btn:hover {
    opacity: 0.7;
}

.sch-line-btn img {
    height: 48px;
    width: auto;
}

/* ===== レスポンシブ ===== */
@media (max-width: 768px) {
    .about-hero {
        min-height: 300px;
        padding: 0 20px;
    }

    .about-hero-inner {
        padding-top: 100px;
    }

    .about-hero-title-text {
        font-size: clamp(3.5rem, 12vw, 6rem);
    }

    .about-section-inner {
        padding: 80px 20px;
    }

    .about-cta {
        padding: 60px 20px;
    }

    .about-cta-text {
        font-size: 1.1rem;
    }

    .about-cta-btn {
        font-size: 1.25rem;
        padding: 14px 40px;
    }

    .sch-month-name {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .sch-info {
        padding: 28px 20px;
    }

    .sch-info-text {
        font-size: 0.85rem;
    }

    .sch-detail-text {
        font-size: 0.8rem;
    }
}
