/* ==========================================
   Base Styles
   ========================================== */

body {
    color: #44403c; /* stone-700 */
}

/* ==========================================
   Hero Section Styles
   ========================================== */

/* Hero Section Container */
.hero-section {
    position: relative;
    color: white;
    overflow: visible;
    margin-bottom: 0;
}

/* Background Videos */
.hero-video-pc {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video-mobile {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

@media (min-width: 768px) {
    .hero-video-pc {
        display: block;
    }
    .hero-video-mobile {
        display: none;
    }
}

/* Video Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

/* Content Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 20;
    margin: 0 auto;
    padding: 1.25rem 1rem 0;
    max-width: 1440px;
}

@media (min-width: 768px) {
    .hero-content-wrapper {
        padding: 4rem 1.5rem 0;
    }
}

@media (min-width: 1174px) {
    .hero-content-wrapper {
        padding: 4rem 73px 0;
    }
}

/* Main Content Area */
.kv-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin: 0 auto;
    padding-bottom: 0;
    min-height: 400px;
    max-width: 1280px;
}

@media (min-width: 768px) {
    .kv-container {
        margin: 0 auto;
        padding-bottom: 0;
    }
}

/* Badge Styles */
.badge-top {
    display: flex !important;
    justify-content: center;
    width: 100%;
}

.badge-top img {
    width: 100%;
    max-width: 343px;
}

.badge-pc {
    display: none !important;
    position: relative;
    flex-shrink: 0;
    width: 232px;
    height: 232px;
}

.badge-pc-inner {
    position: absolute;
    border-radius: 9999px;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

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

/* Content Area */
.kv-content {
    flex: 1;
    width: 100%;
    text-align: center;
}

.br-small-only {
    display: inline;
}

/* モバイル専用改行 */
.br-sp-only {
    display: block;
}

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

/* PC専用改行 */
.br-pc-only {
    display: none;
}

@media (min-width: 768px) {
    .br-pc-only {
        display: block;
    }
}

/* 改行禁止（指定位置でのみ改行可能にする） */
.nowrap {
    white-space: nowrap;
}

/* Hero Titles */
.hero-title-en {
    font-family: 'Readex Pro', sans-serif;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #FFFF00;
    text-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    font-size: 24px;
    line-height: 1.05;
}

@media (min-width: 768px) {
    .hero-title-en {
        margin-bottom: 1rem;
        font-size: 64px;
    }
}

.hero-title-ja {
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
    text-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    font-size: 36px;
    line-height: 44px;
}

@media (min-width: 768px) {
    .hero-title-ja {
        margin-bottom: 1rem;
        font-size: 84px;
        line-height: 100px;
    }
}

.hero-subtitle {
    font-weight: 700;
    color: white;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 24px;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 2rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
}

/* Hero Note */
.hero-note {
    font-weight: 700;
    color: white;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    font-size: 10px;
    line-height: 14px;
}

@media (min-width: 768px) {
    .hero-note {
        font-size: 1.25rem;
        line-height: 30px;
        margin-bottom: 0;
    }
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    padding-top: 24px;
}

@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
        padding-top: 48px;
    }
}

.hero-btn {
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
    transition: all 0.3s;
    border: 2px solid #18181b;
    white-space: nowrap;
    display: flex;
    align-items: center;
    width: 280px;
    font-size: 1rem;
    height: 48px;
    line-height: 24px;
    padding: 12px;
    box-sizing: border-box;
    text-decoration: none;
}

@media (min-width: 768px) {
    .hero-btn {
        font-size: 1rem;
        height: 54px;
        line-height: 24px;
    }
}

.hero-btn span {
    flex: 1;
    text-align: center;
}

.hero-btn-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.hero-btn-primary {
    background-color: #ffffff;
    color: #18181b;
    border-color: #18181b;
}

.hero-btn-primary:hover {
    background-color: #cccccc;
    border-color: #18181b;
    color: #18181b;
}

.hero-btn-secondary {
    background-color: #FFFF00;
    color: #18181b;
    border-color: #18181b;
}

.hero-btn-secondary:hover {
    background-color: #cccc00;
    border-color: #18181b;
    color: #18181b;
}

/* Hero Bottom Stripe */
.hero-bottom-stripe {
    position: relative;
    width: 100%;
    background: linear-gradient(to bottom, transparent 96px, #FFFF00 96px);
    z-index: 20;
    min-height: 230px;
}

@media (min-width: 768px) {
    .hero-bottom-stripe {
        min-height: 170px;
    }
}

.hero-bottom-container {
    padding: 0 0.75rem;
    height: 100%;
    position: relative;
}

.hero-bottom-inner {
    margin: 0 auto;
    height: 100%;
    max-width: 1300px;
}

.hero-bottom-content {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 45px 0 20px;
    gap: 10px;
}

/* タブレット: 縦並びを維持 */
@media (min-width: 768px) and (max-width: 1339px) {
    .hero-bottom-content {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        padding: 45px 0 20px;
        gap: 16px;
    }
}

/* PC: 横並び */
@media (min-width: 1340px) {
    .hero-bottom-content {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        padding: 0 0 16px;
        gap: 2rem;
    }
}

/* Subsidy Section */
.hero-subsidy-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
    align-items: center;
    width: 100%;
}

/* タブレット: 中央揃え維持 */
@media (min-width: 768px) and (max-width: 1339px) {
    .hero-subsidy-section {
        gap: 12px;
        align-items: center;
        width: 100%;
    }
}

/* PC: 左揃え */
@media (min-width: 1340px) {
    .hero-subsidy-section {
        gap: 0;
        align-items: flex-start;
        width: auto;
    }
}

.hero-subsidy-text-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 0;
}

@media (min-width: 1340px) {
    .hero-subsidy-text-wrapper {
        margin-bottom: 20px;
    }
}

.hero-subsidy-text-inner {
    display: flex;
    align-items: center;
    padding-top: 8px;
}

.hero-subsidy-text {
    color: #18181b;
}

/* SP版テキスト: 2行表示 */
.hero-subsidy-text-sp {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

.hero-subsidy-text-pc {
    display: none;
}

/* タブレット (768px-1339px): PC版テキスト表示（1行）、中央揃え */
@media (min-width: 768px) and (max-width: 1339px) {
    .hero-subsidy-text-sp {
        display: none;
    }

    .hero-subsidy-text-pc {
        display: block;
    }

    .hero-subsidy-text-wrapper {
        justify-content: center;
    }
}

/* PC (1340px以上): 1行表示 */
@media (min-width: 1340px) {
    .hero-subsidy-text-sp {
        display: none;
    }

    .hero-subsidy-text-pc {
        display: block;
    }
}

.hero-subsidy-text-small {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5rem;
}

@media (min-width: 768px) {
    .hero-subsidy-text-small {
        font-size: 20px;
        line-height: 30px;
    }
}

.hero-subsidy-text-large {
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.75rem;
}

@media (min-width: 768px) {
    .hero-subsidy-text-large {
        font-size: 2.25rem;
        line-height: 44px;
    }
}

.hero-subsidy-img {
    margin-left: 0.5rem;
}

.hero-subsidy-img img {
    position: relative;
    bottom: 0;
    left: 0;
    height: 60px;
    width: auto;
}

@media (min-width: 768px) {
    .hero-subsidy-img {
        margin-left: 1rem;
    }

    .hero-subsidy-img img {
        bottom: -8px;
        left: -18px;
        height: 100px;
    }
}

.hero-subsidy-note {
    color: #18181b;
    font-size: 10px;
    line-height: 14px;
    text-align: center;
}

/* タブレット */
@media (min-width: 768px) and (max-width: 1339px) {
    .hero-subsidy-note {
        font-size: 14px;
        line-height: 20px;
        text-align: center;
    }
}

/* PC */
@media (min-width: 1340px) {
    .hero-subsidy-note {
        font-size: 14px;
        line-height: 20px;
        text-align: left;
    }
}

.hero-subsidy-note a {
    font-weight: 700;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.hero-subsidy-note a:hover {
    opacity: 0.5;
}

/* Satisfaction Badges */
.hero-satisfaction-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
    width: 100%;
}

/* タブレット: 中央揃え維持 */
@media (min-width: 768px) and (max-width: 1339px) {
    .hero-satisfaction-badges {
        align-items: center;
        width: 100%;
    }
}

/* PC: 右揃え */
@media (min-width: 1340px) {
    .hero-satisfaction-badges {
        align-items: flex-end;
        width: auto;
    }
}

.hero-satisfaction-images {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    width: 100%;
    max-width: 352px;
}

/* タブレット: 中間サイズ */
@media (min-width: 768px) and (max-width: 1339px) {
    .hero-satisfaction-images {
        gap: 12px;
        max-width: 500px;
    }
}

/* PC */
@media (min-width: 1340px) {
    .hero-satisfaction-images {
        gap: 1rem;
        max-width: none;
    }
}

.hero-satisfaction-images img {
    height: auto;
    width: 100px;
    max-width: calc((100% - 16px) / 3);
    flex-shrink: 0;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

/* タブレット: 中間サイズのバッジ */
@media (min-width: 768px) and (max-width: 1339px) {
    .hero-satisfaction-images img {
        height: 140px;
        width: 140px;
        max-width: none;
    }
}

/* PC: フルサイズのバッジ */
@media (min-width: 1340px) {
    .hero-satisfaction-images img {
        height: 172px;
        width: 172px;
        max-width: none;
    }
}

.hero-satisfaction-note {
    color: #18181b;
    font-size: 10px;
    line-height: 14px;
    text-align: center;
    max-width: 352px;
}

/* タブレット */
@media (min-width: 768px) and (max-width: 1339px) {
    .hero-satisfaction-note {
        font-size: 0.75rem;
        line-height: 1rem;
        text-align: center;
        max-width: 500px;
    }
}

/* PC */
@media (min-width: 1340px) {
    .hero-satisfaction-note {
        font-size: 0.75rem;
        line-height: 1rem;
        text-align: right;
        max-width: none;
    }
}

/* ==========================================
   Quick Navigation Section Styles
   ========================================== */

.quick-nav-section {
    padding: 2rem 0;
    background-color: #52525b;
}

.quick-nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.quick-nav-inner {
    max-width: 72rem;
    margin: 0 auto;
}

.quick-nav-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .quick-nav-grid {
        flex-direction: row;
    }
}

/* Navigation Button */
.quick-nav-btn {
    background-color: white;
    border-radius: 0.5rem;
    padding-top: 10px;
    padding-bottom: 6px;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    position: relative;
    box-shadow: 0px 8px 16px 0px rgba(24,24,27,0.1), 0px 0px 1px 0px inset rgba(212,212,216,0.3);
}

@media (min-width: 768px) {
    .quick-nav-btn {
        width: 271px;
    }
}

.quick-nav-btn:hover {
    background-color: #f3f4f6;
    box-shadow: 0px 4px 8px 0px rgba(24,24,27,0.08);
    transform: translateY(2px);
}

.quick-nav-btn-content {
    position: relative;
    width: 200px;
    height: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0;
}

.quick-nav-btn-text {
    font-size: 1rem;
    font-weight: 700;
    color: #18181b;
    line-height: 1.5rem;
    margin: 0;
}

/* Yellow underline for specific buttons */
.quick-nav-btn-underline {
    position: absolute;
    height: 4px;
    background-color: #FFFF00;
    mix-blend-mode: multiply;
    top: 17px;
}

.quick-nav-btn-underline-1 {
    left: 26px;
    width: 112px;
}

.quick-nav-btn-underline-2 {
    left: 26px;
    width: 132px;
}

.quick-nav-btn-arrow {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-nav-btn-arrow img {
    width: 100%;
    height: 100%;
}

/* SP版 Quick Navigation (767px以下) */
@media (max-width: 767px) {
    .quick-nav-section {
        padding: 24px;
    }

    .quick-nav-container {
        padding: 0;
    }

    .quick-nav-grid {
        gap: 8px;
    }

    .quick-nav-btn {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 16px 6px 16px;
        text-align: left;
    }

    .quick-nav-btn-content {
        width: auto;
        height: auto;
        flex: 1;
    }

    .quick-nav-btn-text {
        font-size: 14px;
        line-height: 20px;
    }

    .quick-nav-btn-text br {
        display: none;
    }

    .quick-nav-btn-underline {
        display: none;
    }

    .quick-nav-btn-arrow {
        flex-shrink: 0;
    }
}

/* Responsive adjustments for badges */
/* 488px-767px: 縦並び、テキスト中央寄せ、バッジ中央寄せ、<br>無効 */
@media (min-width: 488px) and (max-width: 767px) {
    .kv-container {
        flex-direction: column;
    }

    .badge-top {
        display: flex !important;
        justify-content: center;
    }

    .badge-pc {
        display: none !important;
    }

    .kv-content {
        text-align: center;
    }

    .br-small-only {
        display: none;
    }
}

/* 768px-1074px: 縦並び、テキスト左寄せ、バッジ左寄せ、<br>無効 */
@media (min-width: 768px) and (max-width: 1074px) {
    .kv-container {
        flex-direction: column;
    }

    .badge-top {
        display: flex !important;
        justify-content: flex-start;
    }

    .badge-pc {
        display: none !important;
    }

    .kv-content {
        text-align: left;
    }

    .br-small-only {
        display: none;
    }
}

/* 1075px以上: 横並び、PC版円形バッジ右側、テキスト左寄せ */
@media (min-width: 1075px) {
    .kv-container {
        flex-direction: row;
    }

    .badge-top {
        display: none !important;
    }

    .badge-pc {
        display: block !important;
    }

    .kv-content {
        text-align: left;
    }

    .br-small-only {
        display: none;
    }
}

/* ==========================================
   Client Section Styles
   ========================================== */

.client-section {
    padding: 2rem 0;
    background-color: white;
}

.client-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.client-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 2rem;
}

.client-title {
    font-size: 1.25rem;
    line-height: 30px;
    font-weight: 700;
    color: #18181b;
    text-align: center;
}

/* Logo Scroll Area */
.client-logo-area {
    width: 100%;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
}

.logo-item img {
    height: 90px;
    width: auto;
    max-width: none;
    object-fit: contain;
}

/* ==========================================
   Case & Column Section Styles
   ========================================== */

.article-section {
    padding: 2rem 0;
    background-color: #f4f4f5;
}

.article-section-inner {
    width: 100%;
}

/* Section Title */
.article-title-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1.5rem;
    padding: 0 1.5rem 1rem 1.5rem;
    align-items: center;
}

.article-title-en {
    font-family: 'Readex Pro', sans-serif;
    font-size: 30px;
    line-height: 30px;
    font-weight: 500;
    color: #18181b;
}

.article-title-divider {
    width: 2px;
    height: 32px;
    background-color: #FFFF00;
}

.article-title-ja {
    font-size: 1.25rem;
    line-height: 30px;
    font-weight: 700;
    color: #18181b;
}

/* Splide Slider */
.article-slider {
    padding: 0.75rem 0;
}

/* Article Card */
.article-card {
    display: block;
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    width: 320px;
    transition: all 0.3s;
    box-shadow: 0px 0px 1px 0px rgba(24,24,27,0.3), 0px 4px 8px 0px rgba(24,24,27,0.1);
}

.article-card:hover {
    transform: translateY(-0.5rem);
}

.article-card-thumbnail {
    height: 202.86px;
    overflow: hidden;
}

.article-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card-content {
    padding: 16px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.article-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.article-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    padding: 4px 12px;
    border-radius: 9999px;
}

.article-category-case {
    background-color: #FFFF00;
    color: #18181b;
}

.article-category-column {
    background-color: white;
    border: 1px solid #18181b;
    color: #18181b;
}

.article-date {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #52525b;
}

.article-card-title {
    font-size: 1rem;
    font-weight: 500;
    color: #292524;
    line-height: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* View All Link */
.article-view-all-wrapper {
    display: flex;
    justify-content: flex-end;
    padding-right: 1.5rem;
    padding-top: 0.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.article-view-all-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 1rem;
    font-weight: 700;
    color: #18181b;
    line-height: 1.5rem;
    transition: opacity 0.3s;
}

.article-view-all-link:hover {
    opacity: 0.5;
}

.article-view-all-link svg {
    width: 24px;
    height: 24px;
}

/* Empty State */
.article-empty {
    text-align: center;
    padding: 3rem 0;
}

.article-empty-text {
    color: #78716c;
    font-size: 1.125rem;
}

/* ==========================================
   Workshop Thoughts Section Styles
   ========================================== */

.thoughts-section {
    background-color: #52525b;
    padding: 0 72.5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .thoughts-section {
        padding: 0 16px;
    }
}

.thoughts-container {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
    max-width: 1280px;
    width: 100%;
    position: relative;
    padding: 4rem 0;
}

.thoughts-bg-image {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 768px;
    overflow: hidden;
    opacity: 0.5;
    pointer-events: none;
}

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

.thoughts-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
    z-index: 10;
    flex: 1;
}

.thoughts-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

.thoughts-title-en {
    font-family: 'Readex Pro', sans-serif;
    font-size: 72px;
    line-height: 1;
    font-weight: 500;
    color: white;
}

.thoughts-title-ja {
    font-size: 30px;
    line-height: 36px;
    font-weight: 400;
    color: white;
}

.thoughts-accent-bar {
    background-color: #FFFF00;
    height: 8px;
    width: 61px;
}

.thoughts-text {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    line-height: 2rem;
}

.thoughts-text p {
    margin-bottom: 0;
}

/* SP版 (767px以下) */
@media (max-width: 767px) {
    .thoughts-content {
        gap: 16px;
    }

    .thoughts-title-wrapper {
        gap: 16px;
    }

    .thoughts-title-en {
        font-size: 48px;
    }

    .thoughts-title-ja {
        font-size: 20px;
        line-height: 30px;
        font-weight: 700;
    }

    .thoughts-accent-bar {
        height: 4px;
        width: 30px;
    }

    .thoughts-text {
        font-size: 14px;
        line-height: 26px;
        gap: 8px;
    }

    .thoughts-bg-image {
        width: 38.5%;
    }
}

/* ==========================================
   Common Section Title Styles
   ========================================== */

.section-with-title {
    padding: 4rem 72.5px;
    background-color: white;
}

.section-title-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 100%;
}

.section-title-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    padding-bottom: 32px;
    width: 100%;
}

.section-title-underline {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title-en {
    font-family: 'Readex Pro', sans-serif;
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
    color: #18181b;
    text-align: center;
}

.section-title-ja {
    font-size: 30px;
    line-height: 38px;
    border-bottom: 4px solid #FFFF00;
    padding-bottom: 8px;
    font-weight: 700;
    color: #18181b;
    text-align: center;
}

/* ==========================================
   Why Workshop Section Styles
   ========================================== */

.why-workshop-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    gap: 16px;
    width: 100%;
}

.why-workshop-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    background-color: #f4f4f5;
    border: 1px solid #eff6ff;
    border-radius: 1rem;
    overflow: hidden;
}

.why-workshop-card-inner {
    display: contents;
}

.why-workshop-card-image {
    height: 225px;
    width: 100%;
    overflow: hidden;
}

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

.why-workshop-card-content {
    padding: 0 32px 24px;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 32px;
    align-items: start;
    justify-items: center;
}

.why-workshop-card-header {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.why-workshop-card-title-wrapper {
    border-bottom: 2px solid #FFFF00;
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #18181b;
    text-align: center;
}

.why-workshop-card-title-label {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    padding-top: 2px;
}

.why-workshop-card-title-number {
    font-family: 'Readex Pro', sans-serif;
    font-size: 32px;
    line-height: 20px;
    font-weight: 300;
}

.why-workshop-card-subtitle {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    color: #18181b;
    text-align: center;
}

.why-workshop-card-body {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #18181b;
}

.why-workshop-card-body p {
    margin-bottom: 0;
}

/* SP版 Why Workshop Section (767px以下) */
@media (max-width: 767px) {
    .section-with-title {
        padding: 32px 16px;
    }

    .section-title-en {
        font-size: 16px;
    }

    .section-title-ja {
        font-size: 24px;
        line-height: 32px;
        border-bottom-width: 2px;
    }

    .why-workshop-cards {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .why-workshop-card {
        display: block;
    }

    .why-workshop-card-inner {
        display: flex;
        flex-wrap: wrap;
    }

    .why-workshop-card-image {
        width: 160px;
        height: auto;
        flex-shrink: 0;
        order: 2;
        align-self: stretch;
    }

    .why-workshop-card-image img {
        height: 100%;
        object-fit: cover;
    }

    .why-workshop-card-content {
        display: contents;
    }

    .why-workshop-card-header {
        flex: 1;
        padding: 16px;
        gap: 16px;
        order: 1;
        min-width: 0;
    }

    .why-workshop-card-title-wrapper {
        width: fit-content;
        max-width: calc(100% - 32px);
    }

    .why-workshop-card-title-label {
        font-size: 10px;
        line-height: 14px;
    }

    .why-workshop-card-subtitle {
        font-size: 18px;
        line-height: 28px;
        min-height: auto;
    }

    .why-workshop-card-body {
        order: 3;
        width: 100%;
        padding: 16px;
        font-size: 14px;
        line-height: 20px;
    }
}

/* ==========================================
   Problem Section Styles
   ========================================== */

.problem-section {
    padding: 32px 0;
    background-color: #f4f4f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1300px) {
    .problem-section {
        padding: 64px 0;
    }
}

.problem-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 1rem;
    width: 100%;
    max-width: 1280px;
    padding: 0 1rem;
}

@media (min-width: 1300px) {
    .problem-container {
        padding: 0;
    }
}

.problem-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.problem-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

@media (min-width: 1300px) {
    .problem-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        padding-left: 0;
        padding-right: 0;
        isolation: isolate;
    }
}

/* Left Image */
.problem-image {
    display: none;
}

@media (min-width: 1300px) {
    .problem-image {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        height: auto;
        width: 203px;
        margin-right: -48px;
        position: relative;
        z-index: 2;
        flex-shrink: 0;
    }
}

.problem-image img {
    width: 213px;
    height: auto;
}

/* Cards Container */
.problem-cards {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
    width: 100%;
    position: relative;
    isolation: isolate;
}

@media (min-width: 1300px) {
    .problem-cards {
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-end;
        flex: 1;
        margin-right: 0;
        gap: 1rem;
        height: 200px;
        z-index: 1;
    }
}

/* Individual Card */
.problem-card {
    flex: 1;
    background-color: white;
    display: flex;
    flex-direction: column;
    height: 200px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1rem 0.5rem;
    border-radius: 0.5rem;
}

@media (min-width: 1300px) {
    .problem-card {
        min-width: 180px;
    }
}

.problem-card-1 { gap: 0.25rem; z-index: 5; }
.problem-card-2 { z-index: 4; }
.problem-card-3 { gap: 0.125rem; z-index: 3; }
.problem-card-4 { gap: 0.125rem; z-index: 2; }
.problem-card-5 { gap: 0.125rem; z-index: 1; }

/* PC/SP切り替え用クラス */
.problem-pc-only {
    display: block;
}

.problem-sp-only {
    display: none;
}

@media (max-width: 1299px) {
    .problem-pc-only {
        display: none;
    }

    .problem-sp-only {
        display: block;
    }
}

/* SP版（1300px未満）でカード3, 4, 5を1行表示 */
@media (max-width: 1299px) {
    .problem-card {
        height: auto;
        padding: 0.5rem;
    }

    .problem-card-3,
    .problem-card-4 {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.25rem;
    }

    .problem-card-3 > .problem-card-text:first-child,
    .problem-card-4 > .problem-card-text:first-child {
        width: 100%;
    }

    .problem-card-5 {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.25rem;
    }

    .problem-card-5 .problem-card-5-text:last-child {
        width: 100%;
    }

    .problem-card-5-text {
        font-size: 16px;
        line-height: 24px;
    }
}

/* Card Content */
.problem-card-highlight {
    background-color: #FFFF00;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-card-highlight-full {
    flex-direction: column;
    width: max-content;
    flex-shrink: 0;
    padding: 0 8px;
}

.problem-card-highlight-inline {
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 0 0.5rem;
}

.problem-card-highlight-inline.no-padding {
    padding: 0;
}

@media (min-width: 1300px) {
    .problem-card-highlight-inline {
        height: 30px;
    }
}


.problem-card-text-large {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: #18181b;
    text-align: center;
    white-space: nowrap;
    margin: 0;
}

@media (min-width: 1300px) {
    .problem-card-text-large {
        font-size: 1.25rem;
        line-height: 30px;
    }
}

.problem-card-text {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: #18181b;
    text-align: center;
    margin: 0;
}

@media (min-width: 1300px) {
    .problem-card-text {
        font-size: 1rem;
        line-height: 1.5rem;
    }
}

.problem-card-row {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.problem-card-inner {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Bottom Yellow Box */
.problem-bottom-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding-top: 16px;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 1300px) {
    .problem-bottom-box {
        padding-top: 32px;
    }
}

.problem-bottom-box-inner {
    background-color: #FFFF00;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px 16px;
    border-radius: 0.5rem;
    box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.05);
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 1300px) {
    .problem-bottom-box-inner {
        padding: 34px;
    }
}

.problem-bottom-box-text {
    text-align: center;
    width: 100%;
}

.problem-bottom-box-text-small {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: #18181b;
}

.problem-bottom-box-text-large {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: #18181b;
}

.problem-bottom-box-br {
    display: block;
}

@media (min-width: 1300px) {
    .problem-bottom-box-text-small {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .problem-bottom-box-text-large {
        font-size: 30px;
        line-height: 38px;
    }

    .problem-bottom-box-br {
        display: none;
    }
}

/* ==========================================
   Logo Scroll Animation Styles
   ========================================== */

/* Logo scroll animation - 右から左へ */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-scroll-container {
    overflow: hidden;
    width: 100%;
}

.logo-scroll-track {
    display: flex;
    animation: scroll 50s linear infinite;
    width: fit-content;
}

.logo-scroll-track:hover {
    animation-play-state: paused;
}

/* ==========================================
   Program Section Styles
   ========================================== */

/* Program Section - 1140px以下で縦レイアウトに変更 */
@media (max-width: 1140px) {
    /* STEP1/STEP2のメインコンテナを縦レイアウトに */
    .program-step-container.lg\:flex-row {
        flex-direction: column !important;
    }

    /* 白い縦線dividerを非表示に */
    .program-divider.lg\:block {
        display: none !important;
    }

    /* 「こんな方におすすめ」の内部レイアウトを縦並びに */
    .program-recommend-layout {
        flex-direction: column !important;
    }

    /* 縦並びの時はbrタグを打ち消す */
    .program-recommend-layout br {
        display: none !important;
    }

    /* Plan Section - 1140px以下で縦レイアウトに変更 */
    .plan-formula.lg\:flex-row {
        flex-direction: column !important;
    }
}

/* ==========================================
   About Section Styles
   ========================================== */

.about-section {
    padding: 3rem 0;
    background-color: #e4e4e7;
    position: relative;
}

.about-bg-image {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    overflow: hidden;
}

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

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
}

@media (min-width: 768px) {
    .about-container {
        padding: 0 72.5px;
    }
}

.about-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0px 0px 1px 0px rgba(24,24,27,0.3), 0px 4px 8px 0px rgba(24,24,27,0.1);
    padding: 41px;
    max-width: 720px;
    margin: 0 auto;
}

.about-card-content {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    width: 100%;
}

.about-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    width: 100%;
}

.about-row-header {
    display: flex;
    align-items: center;
    width: 175px;
}

.about-row-icon {
    width: 2rem;
    padding-right: 0.5rem;
}

.about-row-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.about-row-title {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: #18181b;
}

.about-row-title-nowrap {
    white-space: nowrap;
}

.about-row-content {
    flex: 1;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #18181b;
}

.about-row-content-flex {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding-top: 1.5px;
}

.about-row-content-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about-row-content-col-sm {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 0.25rem;
}

.about-row-text-bold {
    font-weight: 700;
}

.about-row-text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.about-row-text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.about-row-text-secondary {
    color: #78716c;
}

.about-row-list-item {
    display: flex;
    align-items: flex-start;
}

.about-row-list-item span {
    padding-right: 0.5rem;
}

.about-row-nested {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-bottom: 1.5px;
}

.about-divider {
    height: 1px;
    background-color: #e4e4e7;
    width: 100%;
}

/* SP版 About Section (767px以下) */
@media (max-width: 767px) {
    .about-section {
        padding: 32px 16px;
    }

    .about-bg-image {
        display: none;
    }

    .about-section .section-title-en {
        font-size: 16px;
    }

    .about-section .section-title-ja {
        font-size: 24px;
        line-height: 32px;
        border-bottom-width: 2px;
    }

    .about-container {
        padding: 0;
    }

    .about-card {
        padding: 16px;
        max-width: none;
        width: 100%;
    }

    .about-card-content {
        gap: 16px;
    }

    .about-row {
        flex-direction: column;
        gap: 16px;
    }

    .about-row-header {
        width: auto;
    }

    .about-row-icon {
        padding-right: 4px;
    }

    .about-row-icon svg {
        width: 20px;
        height: 20px;
    }

    .about-row-title {
        font-size: 14px;
        line-height: 20px;
    }

    .about-row-content {
        font-size: 14px;
        line-height: 20px;
    }

    .about-row-content-flex {
        flex-wrap: wrap;
    }

    .about-row-text-bold {
        font-size: 14px;
        line-height: 20px;
    }

    .about-row-text-sm {
        font-size: 14px;
        line-height: 20px;
    }
}

/* ==========================================
   Program Section Styles
   ========================================== */

.program-section {
    padding: 3rem 1.5rem;
    background-color: white;
}

@media (min-width: 768px) {
    .program-section {
        padding: 3rem 72.5px;
    }
}

.program-container {
    max-width: 1280px;
    margin: 0 auto;
}

.program-wrapper {
    width: 100%;
    margin: 0 auto;
}

/* Program Header */
.program-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .program-header {
        flex-direction: row;
    }
}

.program-header-image {
    flex-shrink: 0;
}

.program-header-image img {
    width: auto;
    height: auto;
    max-width: 200px;
}

.program-header-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.program-header-title {
    display: flex;
    flex-direction: column;
}

.program-header-title p {
    white-space: nowrap;
}

.program-header-title-main {
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
    color: #18181b;
}

.program-header-title-sub {
    font-size: 24px;
    line-height: 32px;
    color: #18181b;
}

.program-header-desc {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    color: #18181b;
}

/* Program Cards Container */
.program-cards-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Program Card */
.program-card {
    background-color: #f4f4f5;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 0.75rem;
    max-width: 1280px;
    width: 100%;
}

.program-step-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 1240px) {
    .program-step-container {
        flex-direction: row;
    }
}

/* Left Side - Label and Title */
.program-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-shrink: 0;
}

@media (min-width: 1240px) {
    .program-left {
        width: 240px;
    }
}

.program-badge {
    background-color: #FFFF00;
    height: 36px;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    flex-shrink: 0;
}

.program-badge-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    color: #18181b;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

.program-title-area {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0.25rem 0;
}

.program-title {
    font-size: 30px;
    line-height: 38px;
    font-weight: 700;
    color: #18181b;
}

.program-duration {
    font-size: 16px;
    line-height: 24px;
    color: #18181b;
}

/* Divider */
.program-divider {
    display: none;
}

@media (min-width: 1240px) {
    .program-divider {
        display: block;
        width: 4px;
        background-color: white;
        flex-shrink: 0;
    }
}

/* Center - Purpose and Content */
.program-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 0;
}

.program-purpose,
.program-content {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.program-label {
    display: flex;
    align-items: center;
    width: 80px;
    flex-shrink: 0;
}

.program-label-text {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    color: #18181b;
}

.program-purpose-text {
    flex: 1;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: #18181b;
}

.program-content-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.program-content-item {
    display: flex;
    gap: 0.25rem;
    align-items: flex-start;
}

.program-content-icon {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 0.5rem;
    width: 24px;
    height: 24px;
}

.program-content-icon-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    width: 24px;
    height: 24px;
}

.program-content-icon img {
    width: 20px;
    height: 20px;
}

.program-content-text {
    font-size: 16px;
    line-height: 24px;
    color: #18181b;
}

/* Right Side - Output or Recommendation */
.program-right {
    width: 100%;
    flex-shrink: 0;
}

@media (min-width: 1240px) {
    .program-right {
        width: 348px;
    }
}

.program-right-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.program-right-title {
    display: flex;
    align-items: center;
}

.program-right-title-text {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: #18181b;
}

.program-right-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.program-right-item {
    display: flex;
    align-items: center;
}

.program-right-bullet {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-right: 0.5rem;
}

.program-right-bullet-square {
    width: 14px;
    height: 14px;
    background-color: #FFFF00;
    border-radius: 0.125rem;
}

.program-right-item-text {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: #18181b;
}

/* Recommendation Box */
.program-recommend {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.program-recommend-layout {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 1024px) {
    .program-recommend-layout {
        flex-direction: row;
    }
}

.program-recommend-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.program-recommend-icon {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-right: 0.5rem;
}

.program-recommend-icon-circle {
    width: 14px;
    height: 14px;
    background-color: #FFFF00;
    border-radius: 9999px;
}

.program-recommend-text {
    font-size: 14px;
    line-height: 20px;
    color: #18181b;
}

/* Advanced Program Specific Styles */
.program-wrapper-advanced {
    width: 100%;
    margin-top: 3rem;
}

.program-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .program-header {
        flex-direction: row;
    }
}

.program-header-image {
    flex-shrink: 0;
}

.program-header-image img {
    width: auto;
    height: auto;
    max-width: 200px;
}

.program-header-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.program-header-title-wrapper {
    display: flex;
    flex-direction: column;
}

.program-header-title-text {
    white-space: nowrap;
}

.program-header-title-main {
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
    color: #18181b;
}

.program-header-title-sub {
    font-size: 24px;
    line-height: 32px;
    color: #18181b;
}

.program-header-subtitle {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    color: #18181b;
}

.program-badge-wrapper {
    display: flex;
    gap: 1rem;
}

.program-badge-advanced {
    background-color: #18181b;
    height: 36px;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.program-badge-advanced-text {
    font-family: 'Playwrite DK Uloopet', cursive;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    line-height: 38px;
    font-weight: 700;
    letter-spacing: 0.72px;
    width: 89px;
}

.program-title-small {
    font-size: 20px;
    line-height: 28px;
    font-weight: 800;
    color: #18181b;
}

.program-duration-small {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: #18181b;
}

.program-description {
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 0;
}

.program-description p {
    font-size: 16px;
    line-height: 24px;
    color: #18181b;
}

.program-description-text {
    font-size: 16px;
    line-height: 24px;
    color: #18181b;
}

.program-right-wider {
    width: 100%;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .program-right-wider {
        width: 389px;
    }
}

.program-recommend-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1rem;
    height: 100%;
}

.program-recommend-layout {
    display: flex;
    gap: 1rem;
}

.program-recommend-label-wrapper {
    display: flex;
    align-items: flex-start;
}

.program-recommend-label {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: #18181b;
    white-space: pre;
}

.program-recommend-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.program-recommend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.program-recommend-square {
    width: 14px;
    height: 14px;
    background-color: #FFFF00;
    border-radius: 0.125rem;
    flex-shrink: 0;
}

.program-recommend-text {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: #18181b;
}

.program-recommend-title {
    display: flex;
    align-items: flex-start;
}

.program-recommend-title-text {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: #18181b;
    white-space: pre;
}

.program-recommend-list-alt {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.program-recommend-item-alt {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.program-recommend-bullet {
    width: 14px;
    height: 14px;
    background-color: #FFFF00;
    border-radius: 0.125rem;
    flex-shrink: 0;
}

.program-recommend-text-bold {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: #18181b;
}

.program-card-small-gap {
    margin-bottom: 0.75rem;
}

/* ==========================================
   Program Section SP Styles (max-width: 1239px)
   ========================================== */

@media (max-width: 1239px) {
    /* セクション全体 */
    .program-section {
        padding: 32px 16px;
    }

    /* セクションタイトル */
    .program-section .section-title-en {
        font-size: 16px;
    }

    .program-section .section-title-ja {
        font-size: 24px;
        line-height: 32px;
        border-bottom-width: 2px;
    }

    /* ヘッダー部分 */
    .program-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
        padding-bottom: 24px;
    }

    .program-header-content {
        align-items: center;
    }

    .program-header-title-main {
        font-size: 20px;
        line-height: 30px;
    }

    .program-header-title-sub {
        font-size: 14px;
        line-height: 20px;
    }

    .program-header-desc {
        font-size: 14px;
        line-height: 20px;
        text-align: center;
    }

    /* STEPカード */
    .program-card {
        padding: 24px 16px;
        margin-bottom: 0;
    }

    .program-cards-container {
        gap: 16px;
    }

    /* バッジ：横幅いっぱい */
    .program-badge {
        width: 100%;
        font-size: 14px;
        line-height: 20px;
    }

    .program-badge-text {
        font-size: 14px;
        line-height: 20px;
    }

    /* タイトルエリア：中央揃え */
    .program-left {
        align-items: center;
        text-align: center;
    }

    .program-title-area {
        align-items: center;
        text-align: center;
    }

    .program-title {
        font-size: 20px;
        line-height: 30px;
        font-weight: 600;
        text-align: center;
    }

    .program-title br {
        display: none;
    }

    .program-duration {
        font-size: 14px;
        line-height: 20px;
        text-align: center;
    }

    /* Divider：横線に変更 */
    .program-divider {
        display: block;
        width: 100%;
        height: 2px;
        background-color: white;
    }

    /* 目的・内容エリア */
    .program-purpose,
    .program-content {
        flex-direction: column;
        gap: 8px;
    }

    .program-label {
        width: auto;
    }

    .program-label-text {
        font-size: 14px;
        line-height: 20px;
    }

    .program-purpose-text {
        font-size: 16px;
        line-height: 24px;
    }

    /* 内容リスト */
    .program-content-list {
        gap: 8px;
    }

    .program-content-icon {
        width: 20px;
        height: 20px;
        padding-right: 4px;
    }

    .program-content-icon-inner {
        width: 16px;
        height: 16px;
    }

    .program-content-icon img {
        width: 16px;
        height: 16px;
    }

    .program-content-text {
        font-size: 14px;
        line-height: 20px;
    }

    /* アウトプットカード */
    .program-right-card {
        gap: 8px;
    }

    .program-right-title-text {
        font-size: 14px;
        line-height: 20px;
    }

    .program-right-list {
        gap: 8px;
    }

    .program-right-item-text {
        font-size: 14px;
        line-height: 20px;
    }
}

/* ==========================================
   Plan Section Styles
   ========================================== */

.plan-section {
    padding: 3rem 1.5rem;
    background-color: #f4f4f5;
}

@media (min-width: 768px) {
    .plan-section {
        padding-left: 72.5px;
        padding-right: 72.5px;
    }
}

.plan-container {
    padding: 0 1.5rem;
}

.plan-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    width: 100%;
}

.plan-content-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: 100%;
}

/* Main Card */
.plan-main-card {
    background-color: white;
    border-radius: 1rem;
    padding: 26px;
    width: 100%;
    max-width: 1080px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.plan-card-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.plan-card-title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    color: #18181b;
    text-align: center;
}

/* Formula */
.plan-formula {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 100%;
}

@media (min-width: 1024px) {
    .plan-formula {
        flex-direction: row;
    }
}

.plan-formula-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-top: 0.25rem;
}

/* Step Boxes */
.plan-step-box-yellow {
    background-color: #FFFF00;
    border-radius: 0.25rem;
    padding: 0.75rem 0.5rem;
    width: 240px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
}

.plan-step-box-black {
    background-color: #18181b;
    border-radius: 0.25rem;
    padding: 0.75rem 0.5rem;
    width: 225px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
}

.plan-step-badge {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: #18181b;
}

.plan-step-badge-white {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: white;
}

.plan-step-badge-left {
    flex: 1;
    text-align: center;
}

.plan-step-badge-right {
    flex: 1;
    text-align: center;
}

.plan-step-duration {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: #18181b;
    text-align: center;
    width: 100%;
}

.plan-step-duration-white {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: white;
    text-align: center;
    width: 100%;
}

/* Operators */
.plan-operator {
    font-size: 24px;
    line-height: 32px;
    color: #18181b;
    text-align: center;
}

/* Total Time */
.plan-total {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.plan-total-label {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: #18181b;
    text-align: center;
}

.plan-total-value {
    display: flex;
    align-items: flex-end;
    gap: 0.25rem;
}

.plan-total-number {
    font-size: 72px;
    line-height: 72px;
    font-weight: 600;
    color: #18181b;
}

.plan-total-unit {
    font-size: 24px;
    line-height: 24px;
    color: #18181b;
    padding-bottom: 4px;
}

/* Notes */
.plan-notes {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.plan-notes-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1228px;
}

.plan-notes-wrapper-with-margin {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1228px;
    margin-top: 0;
}

.plan-note-text {
    font-size: 14px;
    line-height: 20px;
    color: #18181b;
    text-align: center;
}

/* SP版 Plan Section */
@media (max-width: 1239px) {
    .plan-section {
        padding: 32px 16px;
    }

    .plan-container {
        padding: 0;
    }

    .plan-main-card {
        max-width: 720px;
        padding: 16px 24px;
        border-radius: 8px;
    }

    .plan-card-title {
        font-size: 16px;
        line-height: 24px;
    }

    .plan-formula {
        flex-direction: column;
        gap: 8px;
    }

    .plan-formula-left {
        flex-direction: column;
        width: 100%;
        max-width: 520px;
        gap: 0;
    }

    .plan-step-box-yellow {
        width: 100%;
        padding: 8px;
        gap: 4px;
    }

    .plan-step-badge {
        font-size: 14px;
        line-height: 20px;
    }

    .plan-step-duration {
        font-size: 12px;
        line-height: 16px;
    }

    .plan-operator {
        font-size: 24px;
        line-height: 32px;
    }

    .plan-operator-equals {
        transform: rotate(90deg);
    }

    .plan-total {
        flex-direction: row;
        gap: 8px;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .plan-total-label {
        font-size: 14px;
        line-height: 20px;
        font-weight: 700;
    }

    .plan-total-number {
        font-size: 48px;
        line-height: 1;
        font-weight: 700;
    }

    .plan-total-unit {
        font-size: 16px;
        line-height: 1;
        padding-bottom: 0;
        align-self: center;
    }

    .plan-total-value {
        gap: 4px;
        align-items: center;
    }

    .plan-notes {
        align-items: flex-start;
        gap: 8px;
    }

    .plan-notes-wrapper,
    .plan-notes-wrapper-with-margin {
        align-items: flex-start;
    }

    .plan-note-text {
        text-align: left;
    }
}

/* ==========================================
   Facilitators Section Styles
   ========================================== */

.facilitators-section {
    padding: 48px 72.5px;
    background-color: white;
}

.facilitators-container {
    max-width: 1280px;
    margin: 0 auto;
}

.facilitators-intro {
    text-align: center;
    padding-bottom: 32px;
}

.facilitators-intro-text {
    font-size: 16px;
    line-height: 24px;
    color: #18181b;
}

/* Facilitator Cards Grid */
.facilitators-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}

@media (min-width: 1128px) {
    .facilitators-grid {
        flex-direction: row;
    }
}

.facilitator-card {
    background-color: #f4f4f5;
    padding: 33px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.facilitator-card:last-child {
    border-radius: 8px;
}

/* Header with Photo and Name */
.facilitator-header {
    display: flex;
    gap: 16px;
    align-items: center;
}

.facilitator-photo {
    width: 160px;
    height: 160px;
    border-radius: 0.5rem;
    object-fit: cover;
}

.facilitator-photo-shadow {
    width: 160px;
    height: 160px;
    border-radius: 0.5rem;
    object-fit: cover;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.facilitator-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.facilitator-name-row {
    display: flex;
    align-items: flex-end;
    gap: 16px;
}

.facilitator-name {
    font-size: 24px;
    font-weight: 700;
    color: #18181b;
}

.facilitator-name-en {
    font-size: 14px;
    color: #18181b;
}

.facilitator-title {
    font-size: 14px;
    font-weight: 700;
    color: #18181b;
}

.facilitator-position {
    font-size: 14px;
    color: #18181b;
}

/* Expertise Section */
.facilitator-expertise {
    display: flex;
    gap: 16px;
}

.facilitator-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #18181b;
    display: flex;
    align-items: center;
    white-space: nowrap;
    width: 104px;
}

.facilitator-section-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
}

.facilitator-expertise-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    line-height: 20px;
    color: #18181b;
    flex: 1;
}

.facilitator-expertise-item {
    display: flex;
    align-items: flex-start;
}

.facilitator-bullet {
    margin-right: 0.5rem;
}

/* Profile Box */
.facilitator-profile-box {
    background-color: white;
    padding: 16px;
    border-radius: 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10.75px;
}

.facilitator-profile-title {
    font-size: 14px;
    font-weight: 700;
    color: #18181b;
}

.facilitator-profile-content {
    font-size: 14px;
    color: #18181b;
    line-height: 20px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Certification Info Box */
.certification-box {
    max-width: 1280px;
    margin: 0 auto;
    background-color: white;
    border: 2px dashed black;
    border-radius: 8px;
    padding: 16px 24px;
    min-height: 244px;
}

.certification-content {
    display: flex;
    gap: 24px;
    align-items: center;
    height: 100%;
}

@media (max-width: 1023px) {
    .certification-content {
        flex-direction: column;
    }
}

.certification-left {
    width: 364px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

@media (max-width: 1023px) {
    .certification-left {
        width: 100%;
    }
}

.certification-title {
    font-size: 18px;
    font-weight: 700;
    color: #18181b;
    line-height: 28px;
}

.certification-description {
    font-size: 14px;
    color: #18181b;
    line-height: 20px;
}

.certification-link {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    color: #18181b;
    font-weight: 700;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.certification-link:hover {
    opacity: 0.5;
}

.certification-link-icon {
    width: 16px;
    height: 16px;
    margin-right: 0.5rem;
}

.certification-right {
    flex: 1;
    display: flex;
    gap: 16px;
}

@media (max-width: 1023px) {
    .certification-right {
        flex-direction: column;
    }
}

.certification-card {
    background-color: #f4f4f5;
    padding: 16px;
    border-radius: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.certification-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #18181b;
    display: flex;
    align-items: center;
}

.certification-card-text {
    font-size: 14px;
    color: #18181b;
    line-height: 20px;
}

.certification-card-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 14px;
    color: #18181b;
}

.certification-card-list-item {
    display: flex;
    align-items: flex-start;
}

.certification-check {
    margin-right: 0.5rem;
}

.certification-card-text-spacing {
    font-size: 14px;
    color: #18181b;
    line-height: 20px;
}

/* SP版 Facilitators Section */
@media (max-width: 1127px) {
    .facilitators-section {
        padding: 48px 16px;
    }

    .facilitators-intro {
        text-align: left;
    }

    .facilitator-card {
        padding: 16px;
        border-radius: 12px;
        gap: 16px;
    }

    .facilitator-card:last-child {
        border-radius: 12px;
    }

    .facilitator-header {
        align-items: flex-start;
    }

    .facilitator-photo,
    .facilitator-photo-shadow {
        width: 96px;
        height: 96px;
    }

    .facilitator-name {
        font-size: 16px;
        line-height: 24px;
    }

    .facilitator-name-en {
        font-size: 12px;
        line-height: 16px;
    }

    .facilitator-name-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .facilitator-title,
    .facilitator-position {
        font-size: 12px;
        line-height: 16px;
    }

    .facilitator-info {
        gap: 8px;
    }

    .facilitator-expertise {
        flex-direction: column;
        gap: 8px;
    }

    .facilitator-section-title {
        font-size: 12px;
        line-height: 16px;
        width: auto;
    }

    .facilitator-section-icon {
        width: 16px;
        height: 16px;
        margin-right: 4px;
    }

    .facilitator-expertise-list {
        font-size: 12px;
        line-height: 16px;
        gap: 8px;
    }

    .facilitator-profile-box {
        padding: 16px;
        border-radius: 8px;
        gap: 8px;
    }

    .facilitator-profile-content {
        font-size: 12px;
        line-height: 16px;
    }

    /* Certification Box SP */
    .certification-box {
        padding: 24px 16px;
        min-height: auto;
    }

    .certification-content {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .certification-left {
        width: 100%;
        gap: 18px;
    }

    .certification-title {
        font-size: 16px;
        line-height: 24px;
    }

    .certification-description {
        font-size: 12px;
        line-height: 16px;
    }

    .certification-link {
        font-size: 12px;
        line-height: 16px;
    }

    .certification-right {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .certification-card {
        padding: 16px;
        border-radius: 8px;
    }

    .certification-card-title {
        font-size: 12px;
        line-height: 16px;
    }

    .certification-card-text,
    .certification-card-text-spacing {
        font-size: 12px;
        line-height: 16px;
    }

    .certification-card-list {
        font-size: 12px;
        line-height: 16px;
    }
}

/* タブレット版 Facilitators Section (768px〜1127px) */
@media (min-width: 768px) and (max-width: 1127px) {
    .facilitator-header {
        align-items: center;
    }

    .facilitator-photo,
    .facilitator-photo-shadow {
        width: 160px;
        height: 160px;
    }

    .facilitator-name {
        font-size: 24px;
        line-height: 32px;
    }

    .facilitator-name-en {
        font-size: 14px;
        line-height: 20px;
    }

    .facilitator-name-row {
        flex-direction: row;
        align-items: flex-end;
        gap: 16px;
    }

    .facilitator-title,
    .facilitator-position {
        font-size: 14px;
        line-height: 20px;
    }

    .facilitator-expertise {
        flex-direction: row;
        gap: 16px;
    }

    .facilitator-section-title {
        font-size: 16px;
        line-height: 24px;
        width: 104px;
    }

    .facilitator-section-icon {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }

    .facilitator-expertise-list {
        font-size: 14px;
        line-height: 20px;
        gap: 6px;
    }

    .facilitator-profile-box {
        border-radius: 12px;
        gap: 10.75px;
    }

    .facilitator-profile-content {
        font-size: 14px;
        line-height: 20px;
    }
}

/* ==========================================
   Feature Section Styles
   ========================================== */

.feature-section {
    padding: 4rem 0;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .feature-container {
        padding: 0 72.5px;
    }
}

/* Cards Container */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto auto;
    column-gap: 64px;
    row-gap: 24px;
    width: 100%;
}

/* Individual Card */
.feature-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    color: #18181b;
}

/* Card Inner - PC版では透明化してimage, headerを直接グリッドアイテムに */
.feature-card-inner {
    display: contents;
}

/* Card Image */
.feature-card-image {
    height: 256px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card-image img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Card Header - PC版では透明化してnumber, titleを直接グリッドアイテムに */
.feature-card-header {
    display: contents;
}

.feature-card-number {
    font-family: 'Readex Pro', sans-serif;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 400;
    text-align: center;
}

.feature-card-title {
    font-size: 1.25rem;
    line-height: 30px;
    font-weight: 700;
    text-align: center;
}

.feature-card-description {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
    text-align: left;
}

/* SP版 Feature Section (1023px以下) */
@media (max-width: 1023px) {
    .feature-section {
        padding: 32px 0;
    }

    .feature-container {
        padding: 0 20px;
    }

    .feature-cards {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .feature-card {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .feature-card-inner {
        display: flex;
        gap: 16px;
    }

    .feature-card-image {
        width: 192px;
        height: 128px;
        flex-shrink: 0;
        order: 2;
    }

    .feature-card-image img {
        width: 100%;
        height: 100%;
    }

    .feature-card-header {
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        justify-content: center;
        order: 1;
    }

    .feature-card-number {
        font-size: 20px;
        text-align: left;
    }

    .feature-card-title {
        font-size: 18px;
        line-height: 28px;
        text-align: left;
    }

    .feature-card-description {
        font-size: 14px;
        line-height: 20px;
    }
}

/* ==========================================
   Course Section Styles
   ========================================== */

.course-section {
    padding: 4rem 0;
    background-color: #f4f4f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    padding: 0 72.5px;
}

.course-description {
    padding-bottom: 32px;
    text-align: center;
}

.course-description p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #18181b;
    margin: 0;
}

.course-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.course-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background-color: white;
    border-radius: 16px;
    padding: 24px;
    overflow: hidden;
}

.course-card-title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    color: #18181b;
    text-align: center;
    margin: 0;
}

.course-card-description {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #18181b;
    margin: 0;
}

/* タブレット版 Course Section (768px-1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .course-container {
        padding: 0 24px;
    }

    .course-cards {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
}

/* SP版 Course Section (767px以下) */
@media (max-width: 767px) {
    .course-section {
        padding: 32px 0;
    }

    .course-container {
        padding: 0 16px;
    }

    .course-section .section-title-en {
        font-size: 16px;
    }

    .course-section .section-title-ja {
        font-size: 24px;
        line-height: 32px;
        border-bottom-width: 2px;
    }

    .course-cards {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .course-card {
        gap: 24px;
        padding: 24px;
    }

    .course-card-title {
        font-size: 20px;
        line-height: 30px;
    }

    .course-card-description {
        font-size: 14px;
        line-height: 20px;
    }
}

/* ==========================================
   Flow Section Styles
   ========================================== */

.flow-section {
    padding-top: 3rem;
    padding-bottom: 0;
    background-color: #f4f4f5;
}

.flow-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Timeline Wrapper */
.flow-timeline-wrapper {
    display: flex;
    justify-content: center;
}

.flow-timeline {
    display: flex;
}

.flow-timeline-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Connector Lines */
.flow-line {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 1.5rem;
}

.flow-line-before-step1 {
    height: 3rem;
    margin-bottom: -48px;
}

.flow-line-between-steps {
    height: 104px;
    margin-bottom: -48px;
}

.flow-line-after-step5 {
    height: 104px;
}

.flow-line-bar {
    background-color: #18181b;
    width: 0.25rem;
}

.flow-line-bar-before-step1 {
    height: 69px;
}

.flow-line-bar-between-steps {
    height: 120px;
}

.flow-line-bar-after-step5 {
    height: 120px;
}

/* Step Row */
.flow-step {
    display: flex;
    gap: 1.5rem;
    height: 9rem;
    align-items: center;
    margin-bottom: -48px;
    width: 100%;
}

/* Circle Indicator */
.flow-circle {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    background-color: #18181b;
    flex-shrink: 0;
}

.flow-circle svg {
    width: 100%;
    height: 100%;
}

/* Step Card */
.flow-card {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    display: flex;
    gap: 12px;
    height: 144px;
    align-items: center;
    padding-right: 24px;
    width: 924px;
}

/* Card Icon Container */
.flow-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 1rem;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.flow-card-icon-95 img {
    width: 95px;
    height: 95px;
}

.flow-card-icon-120 img {
    width: 120px;
    height: 120px;
}

.flow-card-icon-109 img {
    width: 109px;
    height: 94px;
}

/* Card Header (Icon + Header Content) */
.flow-card-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

/* Card Header Content (STEP + Title) */
.flow-card-header-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

/* Card Body (Description) */
.flow-card-body {
    flex: 1;
}

.flow-card-body-with-gap {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* STEP Label */
.flow-step-label {
    display: flex;
    gap: 4px;
    align-items: center;
    color: black;
    line-height: 24px;
    font-family: 'Readex Pro', sans-serif;
    white-space: nowrap;
}

.flow-step-label-text {
    font-size: 16px;
}

.flow-step-label-number {
    font-size: 36px;
}

/* Step Title */
.flow-step-title-wrapper {
    width: 260px;
}

.flow-step-title {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    color: black;
}

.flow-step-description {
    font-size: 16px;
    line-height: 24px;
    color: #18181b;
}

.flow-step-description-sm {
    font-size: 14px;
    line-height: 20px;
    color: #18181b;
}

.flow-step-description-sm-2275 {
    font-size: 14px;
    line-height: 22.75px;
    color: #18181b;
}

/* CTA Button */
.flow-cta-button {
    background-color: #ffff00;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background-color 0.3s;
}

.flow-cta-button:hover {
    background-color: #a1a1aa;
}

.flow-cta-button-text {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: #18181b;
    flex: 1;
    text-align: center;
    transition: color 0.3s;
}

.flow-cta-button:hover .flow-cta-button-text {
    color: white;
}

.flow-cta-button-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    color: #18181b;
    transition: color 0.3s;
}

.flow-cta-button:hover .flow-cta-button-icon {
    color: white;
}

/* Flow Section SP/Tablet Styles - Switch to vertical layout before cards overflow */
@media (max-width: 1023px) {
    .flow-section {
        padding: 32px 16px;
    }

    .flow-container {
        padding: 0;
    }

    /* Hide timeline circles only */
    .flow-circle {
        display: none;
    }

    .flow-timeline {
        flex-direction: column;
    }

    .flow-timeline-column {
        width: 100%;
    }

    /* Step Row */
    .flow-step {
        height: auto;
        margin-bottom: 0;
        gap: 0;
    }

    /* Connector lines between cards */
    .flow-line {
        display: flex;
        justify-content: flex-start;
        width: 100%;
        height: 12px;
        margin-bottom: 0;
    }

    .flow-line-before-step1 {
        display: none;
    }

    .flow-line-after-step5 {
        display: none;
    }

    .flow-line-bar {
        width: 4px;
        height: 12px;
        background-color: #18181b;
    }

    /* Step Card */
    .flow-card {
        flex-direction: column;
        width: 100%;
        height: auto;
        padding: 16px;
        gap: 12px;
        align-items: flex-start;
    }

    /* Card Header (Icon + Header Content) - stays horizontal */
    .flow-card-header {
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
    }

    /* Card Icon Container */
    .flow-card-icon {
        width: 60px;
        height: 60px;
        padding-left: 0;
        flex-shrink: 0;
    }

    .flow-card-icon-95 img,
    .flow-card-icon-120 img,
    .flow-card-icon-109 img {
        width: 64px;
        height: 64px;
    }

    /* Card Header Content (STEP + Title) - becomes vertical */
    .flow-card-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    /* STEP Label */
    .flow-step-label {
        gap: 6px;
    }

    .flow-step-label-text {
        font-size: 14px;
    }

    .flow-step-label-number {
        font-size: 24px;
    }

    /* Step Title */
    .flow-step-title-wrapper {
        width: 100%;
    }

    .flow-step-title {
        font-size: 16px;
        line-height: 24px;
    }

    /* Card Body (Description) */
    .flow-card-body,
    .flow-card-body-with-gap {
        width: 100%;
    }

    .flow-step-description,
    .flow-step-description-sm,
    .flow-step-description-sm-2275 {
        font-size: 14px;
        line-height: 20px;
    }
}

/* ==========================================
   FAQ Section Styles
   ========================================== */

.faq-section {
    padding: 3rem 0;
    background-color: white;
}

.faq-container {
    max-width: 1425px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* FAQ Items Wrapper */
.faq-items-wrapper {
    display: flex;
    justify-content: center;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 1080px;
}

/* FAQ Item (Details/Summary) */
.faq-item {
    background-color: white;
    border: 1px solid #eff6ff;
    border-radius: 0.5rem;
    box-shadow: 0px 0px 1px 0px rgba(24, 24, 27, 0.3), 0px 4px 8px 0px rgba(24, 24, 27, 0.1);
}

/* Summary (Question) */
.faq-summary {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    cursor: pointer;
    list-style: none;
    padding: 25px;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

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

.faq-q-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    flex-shrink: 0;
}

.faq-q-icon {
    font-size: 32px;
    font-weight: 300;
    color: #18181b;
    line-height: 1.75rem;
    font-family: 'Readex Pro', sans-serif;
}

.faq-question-text {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: #18181b;
    flex: 1;
}

/* Chevron Icon */
.faq-chevron {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}

/* Separator Line */
.faq-separator {
    background-color: #e4e4e7;
    height: 1px;
    margin: 7px 25px 32px 25px;
}

/* Answer Wrapper */
.faq-answer-wrapper {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 0 25px 25px;
}

.faq-answer-inner {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    flex: 1;
}

.faq-a-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    flex-shrink: 0;
}

.faq-a-icon {
    font-size: 32px;
    font-weight: 300;
    color: #18181b;
    line-height: 1.75rem;
    font-family: 'Readex Pro', sans-serif;
}

.faq-answer-text {
    font-size: 1rem;
    line-height: 1.5rem;
    color: #18181b;
    flex: 1;
}

/* FAQ Section SP Styles */
@media (max-width: 767px) {
    .faq-section {
        padding: 32px 16px;
    }

    .faq-container {
        padding: 0;
    }

    .faq-summary {
        padding: 16px;
    }

    .faq-question-wrapper {
        gap: 1rem;
    }

    .faq-q-icon-wrapper,
    .faq-a-icon-wrapper {
        width: 24px;
    }

    .faq-q-icon,
    .faq-a-icon {
        font-size: 24px;
    }

    .faq-question-text {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .faq-separator {
        margin: 0 16px 12px 16px;
    }

    .faq-answer-wrapper {
        padding: 0 16px 16px;
    }

    .faq-answer-inner {
        gap: 1rem;
    }

    .faq-answer-text {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
}

/* ==========================================
   Download/Form Section Styles
   ========================================== */

.download-section {
    padding: 3rem 0;
    background-color: #f4f4f5;
}

.download-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Description */
.download-description {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 1.5rem;
}

.download-description-text {
    font-size: 1rem;
    line-height: 1.5rem;
    color: #18181b;
    text-align: center;
    width: 100%;
    max-width: 1080px;
}

/* Form */
.download-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 720px;
}

/* Error Message */
.form-error-box {
    background-color: #fee2e2;
    border: 1px solid #f87171;
    color: #991b1b;
    padding: 1rem;
    border-radius: 0.25rem;
    position: relative;
}

.form-error-list {
    list-style-type: disc;
    list-style-position: inside;
}

/* Form Field */
.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.form-label {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.form-label-text {
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 600;
    color: #18181b;
}

.form-label-required {
    font-size: 10px;
    line-height: 14px;
    font-weight: 400;
    color: #991919;
}

/* Form Input */
.form-input {
    width: 100%;
    height: 4rem;
    border: 1px solid #e4e4e7;
    border-radius: 0.25rem;
    background-color: white;
    padding: 0.625rem 1.25rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #18181b;
}

.form-input::placeholder {
    color: #a1a1aa;
}

.form-input:focus {
    outline: none;
    border-color: #18181b;
}

/* Form Textarea */
.form-textarea {
    width: 100%;
    border: 1px solid #e4e4e7;
    border-radius: 0.25rem;
    background-color: white;
    padding: 0.875rem 1.125rem;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #18181b;
    resize: vertical;
}

.form-textarea::placeholder {
    color: #a1a1aa;
}

.form-textarea:focus {
    outline: none;
    border-color: #18181b;
}

/* Submit Button */
.form-submit-wrapper {
    display: flex;
    justify-content: center;
    padding-top: 2rem;
}

.form-submit-button {
    background-color: #18181b;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.75rem;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.form-submit-button:hover {
    background-color: #a1a1aa;
}

/* Download/Form Section SP Styles */
@media (max-width: 767px) {
    .download-section {
        padding: 32px 16px;
    }

    .download-container {
        padding: 0;
    }

    .download-description {
        padding-bottom: 1.5rem;
    }

    .download-description-text {
        font-size: 1rem;
        line-height: 1.5rem;
        text-align: left;
    }

    .download-form {
        gap: 1.5rem;
    }

    .form-input {
        height: 40px;
        padding: 10px 12px;
        font-size: 0.875rem;
        line-height: 1.25rem;
    }

    .form-textarea {
        padding: 8px 12px;
        font-size: 0.875rem;
        line-height: 1.25rem;
    }

    .form-submit-wrapper {
        padding-top: 2rem;
    }

    .form-submit-button {
        font-size: 1rem;
        line-height: 1.5rem;
        padding: 0.75rem 2rem;
    }
}

/* ==========================================
   Contact Info Section Styles
   ========================================== */

.contact-info-section {
    padding: 32px 16px;
    background-color: white;
}

.contact-info-container {
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
    width: 100%;
    max-width: 896px;
}

.contact-info-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.contact-info-text-large {
    font-size: 1.125rem;
    line-height: 29.25px;
    color: #18181b;
    text-align: center;
}

.contact-info-text {
    font-size: 1rem;
    line-height: 1.75rem;
    color: #18181b;
    text-align: center;
}

.contact-info-button-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.contact-info-button {
    background-color: #ffff00;
    color: #18181b;
    font-weight: 700;
    font-size: 1rem;
    line-height: 24px;
    padding: 12px 32px;
    border-radius: 9999px;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.contact-info-button:hover {
    background-color: #a1a1aa;
    color: white;
}

/* PC版 (768px以上) */
@media (min-width: 768px) {
    .contact-info-section {
        padding: 48px;
    }
}

.splide__track {
    padding-top: 12px;
    padding-bottom: 12px;
}

/* ==========================================
   Scroll to Top Button Styles
   ========================================== */

#scrollToTopBtn {
    position: fixed;
    right: 0;
    bottom: 60px;
    background-color: #18181b;
    width: 56px;
    height: 56px;
    border-radius: 8px 0 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    z-index: 50;
    border: none;
}

#scrollToTopBtn:hover {
    background-color: #27272a;
}

#scrollToTopBtn.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top-icon {
    width: 40px;
    height: 20px;
    transform: rotate(180deg);
    filter: brightness(0) invert(1);
}

/* PC版 */
@media (min-width: 768px) {
    #scrollToTopBtn {
        bottom: 80px;
        width: 72px;
        height: 72px;
    }

    .scroll-top-icon {
        width: 56px;
        height: 28px;
    }
}
