/* ========================================
   GLOBIS学び放題 LP PC専用スタイルシート
   ======================================== */

/* ========================================
   モバイルメニュー（PC版では非表示）
   ======================================== */
.mobile-menu {
    display: none !important;
}

/* ========================================
   ユーティリティクラス
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

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

.text-right {
    text-align: right;
}

/* ========================================
   ヘッダーセクション（Figma準拠）
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    z-index: 1000;
    display: flex;
    align-items: center;
    background: transparent;
    transition: background 0.2s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.8);
}

.header__bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: url('assets/_common/MVbg_0424.webp') center/cover no-repeat;
    opacity: 0.2;
    pointer-events: none;
}

.header__container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 var(--spacing-md);
    height: 72px;
    padding-top: 12px;
    gap: 32px;
}

.header__logo-group {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.header__logo {
    height: 40px;
    display: flex;
    align-items: center;
}

.header__logo-img {
    height: 36px;
    width: 184px;
    background-image: url('../assets/_logo/gloho_logo_Primary_White.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: background-image 0.2s;
}

.header__logo-img.active {
    background-image: url('../assets/_logo/gloho_logo_Primary_Blue.svg');
}

.header__site-title {
    font-size: var(--font-size-lg);
    font-weight: bold;
    color: var(--color-primary);
    letter-spacing: 0.02em;
    margin-left: var(--spacing-xs);
}

.header__nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: space-between;
    padding-bottom: 4px;
    padding-left: 1px;
    position: relative;
}

.header__nav::after {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
    left: 0;
    bottom: 0;
}

.header__nav-indicator {
    position: absolute;
    bottom: 0;
    height: 3px;
    background: #fff;
    transition: left 0.3s ease, width 0.3s ease, background 0.3s ease;
    z-index: 1;
}

.header__nav-indicator.active {
    background: var(--GLOBIS-Blue);
}

.header__link {
    color: #fff;
    font-size: var(--font-size-sm);
    font-weight: 500;
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s;
    position: relative;
    border: none;
}

.header__link.active {
    color: var(--GLOBIS-Blue);
}

.header__link::after {
    display: none;
}

.header__link.active::after {
    display: none;
}

.header__menu {
    display: none;
}

.header__cta {
    margin-left: var(--spacing-xl);
    display: flex;
    align-items: flex-start;
    align-self: flex-start;
    margin-top: -12px;
}

.header__button {
    background: var(--GLOBIS-Orange);
    color: var(--GLOBIS-White, #FFF);
    font-size: var(--font-size-base);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.64px;
    font-feature-settings: 'pwid' on;
    border: none;
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    padding: 0.75em 2em;
    box-shadow: var(--shadow-sm);
    transition: background 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.header__button:hover,
.header__button:focus {
    background: #FFCB8C;
    box-shadow: var(--shadow-md);
}

/* ========================================
   ヒーローセクション（Figma準拠）
   ======================================== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-top: 72px;
    padding-bottom: 0;
    overflow: hidden;
}

.hero__bg {
    display: none;
}

.hero__container {
    max-width: 1284px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
    padding: var(--spacing-3xl) var(--spacing-md) var(--spacing-2xl) var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
}

.hero__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 32px;
    width: 100%;
}

.hero__visual {
    flex: 0 0 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    min-width: 320px;
    max-width: 700px;
}

.hero__phone-img {
    width: 280px;
    height: 350px;
    aspect-ratio: 4/5;
    object-fit: contain;
    border-radius: 32px;
    background-image: url('../assets/_desktop/iPhone_15_2x_2506.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.hero__catch {
    min-width: 220px;
    margin-right: 0;
    text-align: center;
    width: 100%;
}


.hero__lead {
    display: block;
    font-size: 28px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1.12px;
    text-align: center;
    line-height: 1.5;
}

.hero__title {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.04em;
    line-height: 1.1;
    text-align: center;
}

.hero__logo {
    font-size: 3.2rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.08em;
    margin-right: 0.2em;
    vertical-align: middle;
}

.hero__logo-svg {
    width: 704px;
    height: 139px;
    margin-right: 0;
    vertical-align: middle;
    max-width: 100%;
}

.hero__logo-svg--mobile {
    display: none;
}

.hero__mobile-iphone {
    display: none;
}

.hero__badges {
    display: flex;
    flex-direction: row;
    gap: 16px;
    min-width: 160px;
    justify-content: center;
    margin-top: 16px;
    margin-bottom: 16px;
    width: 700px;


.hero__badges-img {
    width: 90%;
    height: auto;
    max-width: 100%;
    border-radius: 16px;
    border: 2px solid #ffffff;

    box-shadow: 0px 0px 10px rgba(18, 16, 151, 0.566);

    background-color: #FFF;

}

.hero__badges-img:hover {
    opacity: 70%;
    transition: 0.5s;
    
}
}

/* モバイル用統計バッジをデスクトップで非表示 */
.hero__mobile-stats {
    display: none;
}

.hero__badge {
    background: rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: var(--spacing-sm) var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 110px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.hero__badge-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 2px;
}

.hero__badge-label {
    font-size: var(--font-size-xs);
    color: #fff;
    opacity: 0.9;
    text-align: center;
}


.hero__cta-row {
    display: flex;
    gap: 24px;
    width: 100%;
    padding: 0 100px;
    justify-content: center;
    
}



.hero__cta-btn {
    flex: 1 1 0;
    min-width: 96px;
    height: 48px;
    color: var(--GLOBIS-White, #FFF);
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.64px;
    font-feature-settings: 'pwid' on;
    border-radius: var(--border-radius-lg);
    padding: 0 1rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.hero__cta-btn--main {
    background: var(--GLOBIS-Orange);
    color: #fff;
    border: none;
}
.hero__cta-btn--main:hover,
.hero__cta-btn--main:focus {
    background: #FFCB8C;
}

.hero__cta-btn--sub {
    background: var(--GLOBIS-Blue);
    color: #fff;
    border: none;
}
.hero__cta-btn--sub:hover,
.hero__cta-btn--sub:focus {
    background: #6F87C7;
    color: #fff;
}

/* ========================================
   共通セクションヘッダーコンポーネント
   ======================================== */

.section-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 64px;
}

.section-header__subtitle {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.96px;
    color: var(--GLOBIS-Blue);
    margin-bottom: 6px;
}

.section-header__title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 1.28px;
    color: var(--GLOBIS-Blue);
    margin-bottom: 0;
}

.section-header__description {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.64px;
    color: var(--GLOBIS-Blue);
    margin-top: 16px;
    margin-bottom: 0;
}


/* ========================================
   特徴セクション
   ======================================== */
.features {
    padding: var(--spacing-3xl) 80px;
    background-color: #f8f9fa;
}

.features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.features__title {
    font-size: var(--font-size-4xl);
    font-weight: bold;
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    color: var(--color-primary);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-2xl);
}

.feature {
    background-color: white;
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    background-color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature__title {
    font-size: var(--font-size-xl);
    font-weight: bold;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
}

.feature__description {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ========================================
   カテゴリーセクション（Figma準拠）
   ======================================== */
.categories {
    padding: var(--spacing-3xl) 80px;
    background: #fff;
}

.categories__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Categories specific styles moved to section-header component */

.categories__content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 112px;
    align-items: flex-start;
}

.categories__list {
    display: grid;
    grid-template-columns: repeat(2, 240px);
    gap: 24px;
    justify-content: flex-start;
}

.categories__mobile-content {
    display: none !important;
}

.category {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--GLOBIS-White, #FFF);
    border: 1px solid var(--GLOBIS-Blue);
    border-radius: 8px;
    padding: 16px 24px;
    font-size: 14px;
    color: var(--GLOBIS-Blue);
    font-weight: 500;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.2;
    letter-spacing: 0.56px;
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
    text-align: left;
    width: 240px;
    height: 56px;
    box-sizing: border-box;
}

.category:hover {
    background: linear-gradient(270deg, #6FA6ED 0%, #1847C7 100%);
    color: var(--GLOBIS-White, #FFF);
}

.category.category--active {
    background: linear-gradient(270deg, #6FA6ED 0%, #1847C7 100%);
    color: var(--GLOBIS-White, #FFF);
    border-color: transparent;
}

.category__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}
.category__icon img {
    width: 100%;
    height: 100%;
}
.category__icon svg {
    display: none; /* ダミーSVGは非表示 */
}

/* ピックアップ動画カード */
.categories__videos {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 416px;
    height: 830px;
    max-width: calc(100vw - var(--spacing-xl));
}

.categories__video-card {
    display: block;
    width: 416px;
    height: 234px;
    max-width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* レスポンシブ対応：画面幅に応じてサイズ調整 */
@media (max-width: 1280px) {
    .categories__videos {
        width: 380px;
    }
    
    .categories__video-card {
        width: 380px;
        height: 214px;
    }
}

@media (max-width: 1200px) {
    .categories__videos {
        width: 350px;
    }
    
    .categories__video-card {
        width: 350px;
        height: 197px;
    }
}

@media (max-width: 1120px) {
    .categories__videos {
        width: 320px;
    }
    
    .categories__video-card {
        width: 320px;
        height: 180px;
    }
}

@media (max-width: 1080px) {
    .categories__videos {
        width: 300px;
    }
    
    .categories__video-card {
        width: 300px;
        height: 169px;
    }
}

.categories__video-card:hover {
    transform: scale(1.05);
}

.categories__video-play-btn {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    pointer-events: none;
}

.categories__play-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.categories__video-card:hover .categories__video-play-btn {
    transform: scale(1.1);
}

.categories__video-thumb {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.categories__video-title {
    display: block;
}

.categories__video-en {
    display: block;
}

.categories__video-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.categories__more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
    margin: 0 auto;
    text-decoration: none;
    color: var(--GLOBIS-Blue);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.64px;
    box-sizing: border-box;
    transition: opacity 0.2s ease;
    border-bottom: 2px solid var(--GLOBIS-Blue);
}

.categories__more-btn::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('../assets/_common/ExternalLink-1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 4px;
}

.categories__more-btn:hover {
    opacity: 0.8;
}


/* ========================================
   プランセクション
   ======================================== */
.plans {
    padding: 64px 80px;
    background-color: #ffffff;
}

.plans__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Plans specific styles moved to section-header component */

.plans__content {
}

/* plans__title moved to section-header component */

.plans__main-card {
    background-color: var(--GLOBIS-Blue);
    border-radius: 16px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
}

.plans__description {
    color: #ffffff;
    margin-right: 5%;
    width: 50%;
}

.plans__main-title {
    font-family: 'Red hat Display', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.05em;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    margin: 0 0 32px 0;
}

.plans__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.64px;
    color: #ffffff;
    margin-top: 0;

}

.plans__text_note {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.64px;
    color: #ffffff;
    margin-top: 16px;
}


/* キャンペーン期間の場合：ここから*/
.campaign_price {
    width: 70%;
    text-align: center;
  

}

.coupon_code {
    padding: 16px 16px;;
    background-color: #E6EBF5;
    margin-bottom: 16px;
    color: #1847c7;
    font-size: 20px;
    font-weight: 500;
    border-radius: 8px;
    display: flex;
    gap: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.code {
    font-family: 'Red Hat Display', 'Helvetica neuw', sans serif;
    font-size: 32px;
    font-weight: 500;
    background-color: #ffffff;
    width: 100%;
    padding: 4px;
    border-radius: 4px;
    border: 1px solid #1847c7;
    width: 100%;
    letter-spacing: 0.1em;
}

.cmp_note {
    margin-top: 16px;
    display: flex;
justify-content: left;
align-items: center;
gap: 10px;
}

.cmp_note p{
    font-weight: 500;
    padding: 4px 0;
    border-bottom: 1px solid #ffffff;
    width: auto;

    justify-content: center;
}


.campaign_info {
    width: 100%;
    color: #333333;
    margin-top: 40px;
    margin-bottom:16px;
}

.text_block {
    margin-bottom: 16px;
}

.bold {
    font-weight: 600;
}

.indent {
    text-indent: -1em;
    padding-left: 1em;
}

.info_link {
    color: #1847c7;

}

/* キャンペーン期間の場合：ここまで*/


.plans__cards {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
    justify-content: flex-end;
    width: 100%;

}

.plan-card {
    width: 100%;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid var(--GLOBIS-Blue);
    padding: 16px;
    text-align: center;
}

.plan-card__title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.8px;
    color: var(--GLOBIS-Blue);
    text-align: center;
    margin: 0;
    padding: 8px;
}

.plan-card__content {
    padding: 0 16px 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plan-card__note {
    font-family: 'Red hat Display', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.05em;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.75;
    color: #333333;
    text-align: center;
    padding-bottom: 0px;
}

.plan-card__price {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: 1.28px;
    color: var(--GLOBIS-Blue);
    text-align: center;
    margin-top: 8px;
}

.plan-card__price_yen {
    font-size: 32px;
    font-weight: 600;
    padding-right: 4px;
}

.plan-card__divider {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
}

.plan-card__total {
    font-family: 'Red hat Display', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.05em;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    color: #333333;
    text-align: center;
    padding: 8px 0;
}

.campaign_price_total {
    font-family: 'Red Hat Display', 'Helvetoca neue', sans serif;
    letter-spacing: 0.05em;
    font-size: 20px; 
    color: #1847c7;
    margin-top: 8px;
    margin-bottom: 8px;
    font-weight: 500;
}

.plan-card__button {

    margin: 0 auto;
    width: 100%;
    background-color: var(--GLOBIS-Orange);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    text-align: center;
}

.plan-card__button:hover,
.plan-card__button:focus {
    background: #FFCB8C;
    box-shadow: var(--shadow-md);
}


.plans__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-2xl);
    max-width: 800px;
    margin: 0 auto;
}



.plan--recommended {
    border: 2px solid var(--GLOBIS-Orange);
    transform: scale(1.05);
}

.plan--recommended::before {
    content: "おすすめ";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--GLOBIS-Orange);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-sm);
    font-weight: bold;
}


.plan__title {
    font-size: var(--font-size-xl);
    font-weight: bold;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
}

.plan__price {
    margin-bottom: var(--spacing-sm);
}

.plan__amount {
    font-size: var(--font-size-4xl);
    font-weight: bold;
    color: var(--GLOBIS-Orange);
}

.plan__period {
    font-size: var(--font-size-lg);
    color: var(--color-text-light);
}

.plan__discount {
    background-color: var(--color-success);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-sm);
    font-weight: bold;
    display: inline-block;
}

.plan__features {
    margin-bottom: var(--spacing-xl);
}

.plan__feature {
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
}

.plan__feature:last-child {
    border-bottom: none;
}

.plan__button {
    background-color: var(--color-secondary);
    color: white;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    font-size: var(--font-size-lg);
    font-weight: bold;
    width: 100%;
    transition: background-color 0.3s ease;
}

.plan__button:hover {
    background-color: #357abd;
}

/* ========================================
   お客様の声セクション
   ======================================== */
.voice {
    padding: 64px 80px;
    background-color: #ffffff;
}

.voice__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}


.voice__subtitle {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.96px;
    color: var(--GLOBIS-Blue);
}

.voice__title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 1.28px;
    color: var(--GLOBIS-Blue);
    margin: 0;
}

.voice__survey-info {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.15px;
    color: #333333;
    margin: 0;
    max-width: 989px;
}

.voice__carousel {
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.voice__carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.voice__carousel-track {
    display: flex;
    transition: transform 0.3s ease;
    width: 3096px;
}

.voice__slide {
    width: 1032px;
    flex-shrink: 0;
    padding: 0 20px;
    box-sizing: border-box;
    transition: opacity 0.3s ease;
    height: 100%;
    display: flex;
}

.voice__slide:first-child {
    opacity: 0.3;
}

.voice__slide:nth-child(2) {
    opacity: 1;
}

.voice__slide:last-child {
    opacity: 0.3;
}

.voice__card {
    background-color: #E6EBF5;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 380px;
    gap: 48px;
    overflow: hidden;
}

.voice__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.voice__question {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--GLOBIS-Blue);
    margin: 0;
}

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

.voice__ranking {
    display: flex;
    align-items: center;
    gap: 8px;
}

.voice__rank {
    background: linear-gradient(to left, #6fa6ed 0%, var(--GLOBIS-Blue) 100%);
    color: #ffffff;
    width: 79px;
    height: 30px;
    border-radius: 8px;
    opacity: 1;
    gap: 2px;
    padding: 9px 18px;
    font-family: 'Red hat Display', 'Helvetica neue', 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*
.voice__rank_number {
    font-size: 18px;
    font-weight: 500;

}

*/

.voice__rank-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.64px;
    color: var(--GLOBIS-Blue);
    padding: 9px 8px;
    white-space: nowrap;
}

.voice__image {
    width: 320px;
    height: 240px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    border-radius: 8px;
}

.voice__image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.voice__mobile-content {
    display: none;
}

/* PC表示時（1024px以上）でモバイル版カルーセルを非表示 */
@media (min-width: 1024px) {
    .voice__mobile-carousel,
    .voice__mobile-carousel-container,
    .voice__mobile-carousel-track,
    .voice__mobile-slide {
        display: none !important;
    }
}


.voice__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-2xl);
}

.testimonial {
    background-color: white;
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--color-secondary);
}

.testimonial__text {
    font-size: var(--font-size-lg);
    font-style: italic;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text);
    line-height: 1.6;
}

.testimonial__author {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.testimonial__name {
    font-weight: bold;
    color: var(--color-primary);
}

.testimonial__position {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
}

/* ========================================
   アプリ紹介セクション
   ======================================== */
.app {
    padding: 64px 80px;
    background-image: url('../assets/_common/blue_texture_low-04.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.app__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
}


.app__subtitle {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.96px;
    color: var(--GLOBIS-Blue);
    margin: 0;
}

.app__title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 1.28px;
    color: var(--GLOBIS-Blue);
    margin: 0;
}

.app__main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 263px;
}

.app__content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex-shrink: 0;
}

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

.app__description {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.64px;
    color: var(--GLOBIS-Blue);
    margin: 0;
    width: 582px;
}

.app__features {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.app__feature {
    display: flex;
    align-items: center;
    gap: 6px;
}

.app__feature-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.app__feature-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.56px;
    color: var(--GLOBIS-Blue);
    white-space: nowrap;
}

.app__download {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.app__store-btn {
    transition: opacity 0.3s ease;
}

.app__store-btn:first-child {
    width: 169.701px;
    height: 56.73px;
}

.app__store-btn:last-child {
    width: 187.295px;
    height: 60.28px;
}

.app__store-btn:hover {
    opacity: 0.8;
}

.app__visual {
    flex-shrink: 0;
}

.app__phone-img {
    width: 430px;
    height: 242px;
    object-fit: cover;
    margin-top: -32px;
}

/* ========================================
   アクセシビリティ対応
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* フォーカス表示 */
button:focus,
a:focus {
    outline: 2px solid var(--color-secondary);
    outline-offset: 2px;
}

/* ハイコントラストモード対応 */
@media (prefers-contrast: high) {
    :root {
        --color-text: #000000;
        --color-text-light: #333333;
        --color-border: #000000;
    }
}

/* ========================================
   ビジネス特徴セクション（デスクトップ固有）
   ======================================== */
.business-features {
    padding: 80px 80px;
}

.business-features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    gap: 48px;
}

.business-features__text {
    flex: 1;
}

.business-features__title {
    font-size: 36px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.business-features__description {
    font-size: 16px;
    line-height: 1.8;
}

.business-features__list {
    flex: 1;
    gap: 16px;
}

.business-features__item {
    padding: 12px 20px;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.64px;
    gap: 12px;
}

.business-features__icon {
    width: 16px;
    height: 16px;
}
