/* ==========================================================================
   ローディング画面
   ========================================================================== */

.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-logo {
    position: relative;
    width: 140px;
}

/* ベース: グレー表示のロゴ */
.loading-logo img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%) opacity(0.3);
}

/* カラー版: clip-path で3秒かけて下→上にリビール（1回のみ） */
.loading-logo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--logo-url) center / contain no-repeat;
    animation: logoColorFill 3s ease-out forwards;
}

@keyframes logoColorFill {
    0%   { clip-path: inset(100% 0 0 0); }
    100% { clip-path: inset(0 0 0 0); }
}

/* ロード完了: フェードアウト */
.loading-screen.is-loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ==========================================================================
   スクロールアニメーション
   ========================================================================== */
.section-title {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-title.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.about-title,
.media-logo,
.livers-mascot {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-title.is-visible,
.media-logo.is-visible,
.livers-mascot.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* ==========================================================================
   ファーストビュー（メインビジュアル）
   ========================================================================== */
.fv-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* ---- ビジュアルコンテナ（画面いっぱい） ---- */
.fv-visual {
    position: relative;
    width: 100%;
}

/* スライダー（画面幅いっぱい） */
.fv-visual .fv-swiper {
    width: 100%;
    z-index: 1;
}

.fv-swiper .swiper-slide {
    width: 100%;
}

.fv-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* 枠画像（スライダーの上に重ねる） */
.fv-waku {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    padding: 4%;
}

.fv-waku img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: fill;
}

/* タイトル画像（枠の上に重ねる） */
.fv-title {
    position: absolute;
    bottom: 16%;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    max-width: 400px;
    z-index: 3;
    pointer-events: none;
    overflow: visible;
}

.fv-title img {
    width: 100%;
    height: auto;
    display: block;
}

/* FVキャッチコピー */
.fv-catchcopy {
    width: 68%;
    position: absolute;
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
}

.fv-accent {
    color: var(--color-primary-light);
}

@media (max-width: 768px) {
    .fv-visual {
        height: 100vh;
        height: 100dvh;
    }

    .fv-swiper,
    .fv-swiper .swiper-wrapper,
    .fv-swiper .swiper-slide {
        height: 100%;
    }

    .fv-swiper .swiper-slide img {
        height: 100%;
        object-fit: cover;
    }

    .fv-title {
        width: 82%;
        bottom: 26%;
    }
}



/* ==========================================================================
   header
   ========================================================================== */
@media (max-width: 768px) {
    .site-header.is-scrolled {
        background: none;
        box-shadow: none;
    }
}
/* ==========================================================================
   ABOUTセクション
   ========================================================================== */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-white);
    position: relative;
}

.about-title {
    font-family: var(--font-handwriting);
    font-size: 28px;
    font-weight: 400;
    color: var(--color-text-dark);
    text-align: center;
    margin-bottom: 40px;
    font-style: italic;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 22px;
        margin-bottom: 24px;
    }
}

.about-text {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    margin-bottom: 24px;
    line-height: 2.2;
    color: var(--color-text-gray);
    font-size: 14px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.sign-img{
    width: 24%;
    margin: 40px 0 0;
}


@media (max-width: 768px) {
    .about-section {
        padding: var(--section-padding-sp) 0;
    }

    .about-text {
        text-align: center;
        padding: 0 10px;
    }

    .sign-img{
    width: 45%;
    margin: 20px auto 0;
}
}

.about-badge {
    text-align: center;
    padding: 20px 16px;
    background: var(--color-bg-pink-light);
    border-radius: 16px;
    min-width: 140px;
}

.about-badge-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-badge-icon img {
    width: 24px;
    height: 24px;
}

.about-badge-label {
    font-size: 11px;
    color: var(--color-text-light);
    margin-bottom: 4px;
}

.about-badge-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary-light);
}

.about-badge-note {
    font-size: 10px;
    color: var(--color-text-light);
    margin-top: 4px;
}

@media (max-width: 768px) {
    .about-badges {
        width: 85%;
        margin: 40px auto 20px;
    }
}

/* ==========================================================================
   EVENTセクション
   ========================================================================== */
.event-section {
    padding: var(--section-padding) 0;
    background: url('../images/section_bg-pc.webp') center / cover no-repeat;
    position: relative;
}

.event-section .section-title {
    font-size: 22px;
    margin-bottom: 24px;
    color: #fff;
    text-align: left;
    animation: eventTitleGlow 2.5s ease-in-out infinite;
}

@keyframes eventTitleGlow {
    0%, 100% {
        text-shadow:
            0 0 8px rgba(255, 247, 111, 0.3),
            0 0 18px rgba(255, 247, 111, 0.2),
            0 0 36px rgba(255, 247, 111, 0.15);
    }
    50% {
        text-shadow:
            0 0 14px rgba(255, 247, 111, 0.5),
            0 0 30px rgba(255, 247, 111, 0.35),
            0 0 60px rgba(255, 247, 111, 0.25);
    }
}

.event-section .section-title.has-ttl-bg::before {
    left: 14px;
    top: 7px;
    transform: none;
}

.event-section .section-description {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    line-height: 2;
}

/* イベントスライダー */
.event-swiper {
    overflow: hidden;
    padding-bottom: 48px;
}

.event-swiper .swiper-slide {
    border-radius: 12px;
    overflow: hidden;
}

.event-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* ページネーション */
.event-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
}

.event-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    margin: 0 5px;
    border-radius: 50%;
}

.event-pagination .swiper-pagination-bullet-active {
    background: var(--color-primary-light);
}

@media (max-width: 768px) {
    .event-section {
        padding: var(--section-padding-sp) 0;
        background: url('../images/event_bg.webp') center / cover no-repeat;
    }

    

    .event-section .section-description{
        font-size: 14px;
    }

    .event-ttl-img {
        width: 100px;
    }

    .event-section .section-title {
        font-size: 24px;
        text-align: center;
    }
}

/* ==========================================================================
   MEDIAセクション（LIVE TIMES掲載）
   ========================================================================== */
.media-section {
    padding: var(--section-padding) 0;
    background: url('../images/media_bg.webp') center / cover no-repeat;
    position: relative;
}

.media-badge {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text-dark);
}

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

.media-logo img {
    height: auto;
    width: 100%;
}

.media-title {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-text-dark);
}

/* メディア記事リスト（縦並び） */
.media-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 500px;
    margin: 0 auto;
}

/* メディアカード */
.media-card {
    display: block;
    text-decoration: none;
}

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

.media-card-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 12px;
}

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

.media-card-caption {
    text-align: center;
    font-size: 14px;
    color: var(--color-text-white);
    background: linear-gradient(to right, #131212 100%, transparent 100%);
    background-size: 0% 100%;
    background-repeat: no-repeat;
    padding: 6px 24px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    transition: background-size 0.6s ease;
}

.media-card-caption.is-visible {
    background-size: 100% 100%;
}

@media (max-width: 768px) {
    .media-section {
        padding: 40px 0 0;
    }

    .media-badge {
        font-size: 18px;
    }

    .media-logo img {
        width: 70%;
        height: auto;
    }

    .media-title {
        font-size: 26px;
        line-height: 1.5;
        letter-spacing: -0.8px;
        margin-bottom: 40px;
    }

    .media-list {
        gap: 32px;
    }

    .media-card-image {
        border-radius: 10px;
    }

    .media-card-caption {
        font-size: 14px;
        padding: 5px 20px;
    }
}

/* ==========================================================================
   雑誌紹介セクション
   ========================================================================== */
.magazine-section .section-title.has-ttl-bg::before{
    left: 20%;
    top: 20%;
    width: 100%;
}

.magazine-section {
    padding: 40px 0;
    background: var(--color-bg-white);
    position: relative;
    margin: 80px auto 0;
    border-radius: 40px;
    width: 800px;
}

.magazine-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: var(--color-text-dark);
}

.magazine-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.magazine-item {
    width: calc(33.333% - 12px);
    max-width: 150px;
}

.magazine-image {
    width: 100%;
    text-align: center;
}

.magazine-image img{
    width: 54%;
}

@media (max-width: 768px) {
    .magazine-section .section-title.has-ttl-bg::before{
        width: 100%;
        left: 10px;
        top: 8px;
        transform: none;
    }

    .magazine-section {
        padding: var(--section-padding-sp) 0;
        width: auto;
        border-radius: 0;
        margin-top: 40px;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }

    .magazine-title {
        font-size: 24px;
    }

    .magazine-item {
        width: calc(33.333% - 10px);
    }

    .magazine-image img{
        width: 95%;
    }
}

/* ==========================================================================
   NEWSセクション
   ========================================================================== */

.news-section .section-title.has-ttl-bg::before {
    left: 38%;
    top: 23%;
    transform: none;
}

.news-section {
    padding: var(--section-padding) 0;
    background: #1a1a1a;
    position: relative;
}

.news-section .container {
    max-width: 500px;
}

/* 白いカード */
.news-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 56px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.news-section .section-title {
    margin-bottom: 32px;
    text-align: center;
    color: var(--color-text-dark);
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.news-item {
    border-bottom: 1px dashed #ccc;
}

.news-item:first-child {
    border-top: 1px dashed #ccc;
}

/* ニュースリンク（横並び） */
.news-link {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 24px 0;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.news-link:hover {
    opacity: 0.7;
}

.news-meta {
    width: 14%;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.news-date {
    font-size: 14px;
    color: var(--color-primary-light);
    flex-shrink: 0;
    min-width: 70px;
}

/* カテゴリーバッジ（黒背景） */
.news-category {
    display: inline-block;
    padding: 3px 12px;
    background: #1a1a1a;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    border-radius: 3px;
    letter-spacing: 0.05em;
}

.news-category.cat-event {
    background: #1a1a1a;
}

.news-category.cat-info {
    background: #1a1a1a;
}

/* ニュースタイトル */
.news-title {
    flex: 1;
    font-size: 14px;
    color: var(--color-text-dark);
    line-height: 1.6;
}

/* 右矢印アイコン */
.news-arrow {
    font-size: 16px;
    color: #999;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.news-link:hover .news-arrow {
    transform: translateX(4px);
    color: var(--color-primary-light);
}

/* もっと見るボタン（ピンク） */
.news-more {
    text-align: center;
}

.news-more-link {
    display: inline-block;
    padding: 14px 48px;
    background: var(--color-primary-light);
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .news-section .section-title {
    margin-bottom: 24px;
    text-align: center;
    color: var(--color-text-dark);
    }

    .news-section .section-title.has-ttl-bg::before {
        left: 60px;
        top: 10px;
        transform: none;
    }
    
    .news-section {
        padding: var(--section-padding-sp) 0;
        margin: 0 0 60px;
    }

    .news-card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .news-category {
        padding: 2px 8px;
    }

    .news-list {
        margin-bottom: 20px;
    }

    .news-link {
        flex-wrap: wrap;
        gap: 8px;
        padding: 14px 0;
    }

    .news-meta {
        width: 100%;
        gap: 10px;
    }

    .news-date {
        font-size: 12px;
        min-width: auto;
    }

    .news-title {
        flex: 1;
        font-size: 12px;
        padding-right: 10%;
        min-width: calc(100% - 30px);
    }

    .news-arrow {
        position: absolute;
        right: 0;
    }

    .news-item {
        position: relative;
    }

    .news-more-link {
        margin-top: 8px;
        padding: 8px 40px;
        font-size: 14px;
    }
}

/* ==========================================================================
   TikTokセクション
   ========================================================================== */
.tiktok-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-white);
    position: relative;
    overflow: hidden;
}

.tiktok-section .section-title {
    font-size: 20px;
    margin-bottom: 16px;
    margin-bottom: 16px;
    font-weight: 900;
}

.tiktok-section .section-title span{
    background: linear-gradient(90deg, #ef9da1, #a3e7b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .tiktok-section .section-title {
        font-size: 32px;
    }
}

.tiktok-notice {
    text-align: center;
    font-size: 12px;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

/* TikTokスライダー */
.tiktok-slider-wrapper {
    position: relative;
}

.tiktok-swiper {
    overflow: visible;
}

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

.tiktok-video-link {
    display: block;
    text-decoration: none;
}

.tiktok-video {
    width: 100%;
    aspect-ratio: 9/16;
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
}

.tiktok-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tiktok-caption {
    font-size: 12px;
    color: var(--color-text-gray);
    margin: 0;
    font-weight: 500;
}

/* スライダーページネーション */
.tiktok-pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.tiktok-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.15);
    opacity: 1;
    margin: 0 4px;
    border-radius: 50%;
}

.tiktok-pagination .swiper-pagination-bullet-active {
    background: var(--color-primary-light);
}

/* スマホ時のスライダー設定 */
@media (max-width: 768px) {
    .tiktok-section {
        padding: var(--section-padding-sp) 0;
    }

    .tiktok-slider-wrapper {
        margin: 0 -20px;
    }

    .tiktok-swiper {
        padding: 0 40px;
    }

    .tiktok-swiper .swiper-slide {
        width: 60%;
    }

    .tiktok-video {
        border-radius: 12px;
    }

    .tiktok-caption {
        font-size: 11px;
    }
}

/* PC時のスライダー表示（見切れなし） */
@media (min-width: 769px) {
    .tiktok-swiper {
        overflow: hidden;
    }
}

/* ==========================================================================
   ライブ配信とはセクション
   ========================================================================== */
.about-live-section {
    padding: var(--section-padding) 0;
    background: url('../images/about-live_bg.webp') center / cover no-repeat;
    position: relative;
    border-radius: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* タイトル（手書き画像） */
.about-live-title {
    text-align: center;
    margin-bottom: 40px;
    line-height: 1;
}

.about-live-title img {
    max-width: 380px;
    width: 85%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* 説明テキスト */
.about-live-text {
    text-align: center;
    max-width: 420px;
    margin: 0 auto 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.about-live-text p {
    line-height: 2.4;
    color: var(--color-text-dark);
    line-height: 2.2;
}

.about-live-text p span{
    background: linear-gradient(to right, #fff 100%, transparent 100%);
    background-size: 0% 100%;
    background-repeat: no-repeat;
    padding: 2px 10px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    transition: background-size 0.6s ease;
}

.about-live-text.is-visible p:first-child span {
    background-size: 100% 100%;
}

.about-live-text.is-visible p:nth-child(2) span {
    background-size: 100% 100%;
    transition-delay: 0.3s;
}

/* 提携アプリ（白いボックス） */
.partner-app-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #000;
    border-radius: 12px;
    padding: 14px 20px;
    max-width: 240px;
    margin: 0 auto;
}

.partner-app-box .partner-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-white);
    line-height: 1.5;
    text-align: left;
    margin: 0;
}

.partner-app-box .partner-logo {
    width: 54%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.partner-app-box .partner-logo img {
    height: auto;
    width: auto;
    display: block;
}

/* 特徴画像リスト（縦並び） */
.live-features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 500px;
    margin: 0 auto;
}

.live-feature-item {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.live-feature-item:nth-child(2) {
    transform: translateX(40px);
}

.live-feature-item:nth-child(2) { transition-delay: 0.2s; }
.live-feature-item:nth-child(3) { transition-delay: 0.4s; }

.live-feature-item.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.live-feature-item img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .about-live-section {
        padding: 60px 0;
        margin-bottom: 28px;
    }

    .about-live-title img {
        width: 90%;
    }

    .about-live-text p {
        font-size: min(3.5897vw, 14px);
    }

    .about-live-text br {
        display: inline;
    }

    .partner-app-box {
        gap: 16px;
        padding: 16px 24px;
        margin-bottom: 48px;
    }

    .partner-app-box .partner-label {
        font-size: 14px;
    }

    .partner-app-box .partner-logo img {
        width: 100%;
        height: auto;
    }

    .live-features-list {
        gap: 32px;
    }
}

/* ==========================================================================
   所属ライバーセクション
   ========================================================================== */
.livers-section {
    padding: var(--section-padding) 0;
}

/* 手書き風タイトル（緑） */
.livers-section .section-title {
    font-family: var(--font-handwriting);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.6;
    color: #5BA35B;
    margin-bottom: 8px;
}

/* タイトル下のハートアイコン */
.section-title-heart {
    text-align: center;

}

.section-title-heart svg {
    width: 24px;
    height: 22px;
}

/* ライバーカードグリッド */
.livers-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* 各ライバーカード */
.liver-card-image {
    width: 100%;
    position: relative;
}

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

/* プレースホルダー（画像がない場合に表示） */
.liver-card-placeholder {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: #1a1a1a;
    border-radius: 8px;
    position: relative;
    /* 平行四辺形の斜め効果 */
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}

.liver-card-text {
    flex: 1;
    text-align: left;
    padding-right: 16px;
}

.liver-card-text .liver-achievement {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.5;
}

.liver-card-text .liver-type {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.liver-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #E8F5E8 0%, #B8E6B8 100%);
    border-radius: 50%;
    border: 3px solid #7BC67B;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

/* マスコットエリア（1枚画像として表示） */
.livers-mascot {
    text-align: center;
    margin: 0 auto;
}

.livers-mascot > img {
    width: 80%;
    height: auto;
}

.mascot-bubble {
    background: #FF6B9D;
    border-radius: 20px;
    padding: 16px 24px;
    margin-bottom: 16px;
    position: relative;
}

.mascot-bubble::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #FF6B9D;
}

.mascot-bubble p {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    margin: 0;
    color: #fff;
}

.mascot-character {
    width: 120px;
    height: 140px;
    background: linear-gradient(135deg, #FFE4EC 0%, #FFF0F5 100%);
    border-radius: 50% 50% 40% 40%;
    margin-bottom: 8px;
    background-size: cover;
    background-position: center;
}

.mascot-label {
    font-size: 11px;
    color: var(--color-text-light);
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .livers-section .section-title {
        font-size: 22px;
    }

    .section-title-heart svg {
        width: 20px;
        height: 18px;
    }

    .livers-grid {
        gap: 12px;
    }

    .liver-card-placeholder {
        padding: 16px 20px;
    }

    .liver-card-text .liver-achievement {
        font-size: 14px;
    }

    .liver-card-text .liver-type {
        font-size: 12px;
    }

    .liver-card-icon {
        width: 60px;
        height: 60px;
    }

    .mascot-bubble {
        padding: 12px 20px;
    }

    .mascot-bubble p {
        font-size: 14px;
    }

    .mascot-character {
        width: 100px;
        height: 120px;
    }

    .livers-section {
        padding: var(--section-padding-sp) 0;
    }

    .livers-section .section-title {
        font-size: 20px;
    }

    .livers-grid {
        gap: 12px;
    }

    .liver-card {
        padding: 12px 16px;
    }

    .liver-image {
        width: 48px;
        height: 48px;
    }

    .liver-card-image {
        width: 100%;
        position: relative;
    }

    .liver-achievement {
        font-size: 12px;
    }

    .livers-note-icon {
        width: 64px;
        height: 64px;
    }
}

/* ==========================================================================
   選ばれるポイントセクション
   ========================================================================== */
.points-section .section-title.has-ttl-bg::before {
    left: 32%;
    top: 13%;
    transform: none;
}

.points-section {
    padding: var(--section-padding) 0;
    padding-bottom: 0;
    background: #1a1a1a;
    overflow: hidden;
}

.points-section .section-title {
    font-size: 24px;
    margin-bottom: 40px;
    color: #fff;
    line-height: 1.2;
}

.points-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.point-item {
    position: relative;
}

.point-image {
    width: 100%;
    margin-bottom: 20px;
}

/* 数字画像（カードの上に重なる） */
.point-number-image {
    margin-bottom: -24px;
    margin-left: 4px;
    position: relative;
    z-index: 3;
}

.point-number-image img {
    height: auto;
    width: 56px;
    display: block;
}

/* カード */
.point-card {
    position: relative;
    background: transparent;
    z-index: 2;
}

/* 写真画像 */
.point-image {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.point-image.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.point-image img {
    height: auto;
    display: block;
}

/* テキストコンテンツ */
.point-content {
    padding: 0;
}

.point-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.7;
    text-align: center;
}

.point-title-bg {
    display: inline-block;
    background: linear-gradient(90deg, #ef9da1, #a3e7b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ピンクハイライト */
.point-highlight {
    color: var(--color-primary-light);
    font-weight: 700;
}

.point-text {
    font-size: 13px;
    line-height: 2;
    color: #fff;
}

@media (max-width: 768px) {
    .points-section {
        padding: var(--section-padding-sp) 0;
        padding-bottom: 0;
    }

    .points-section .section-title.has-ttl-bg::before {
        left: 24px;
        top: 10px;
        transform: none;
    }

    .points-section .section-title{
        font-size: 24px;
    }

    .points-section .section-title .highlight-number {
        font-size: 40px;
    }

    .points-section .section-title .highlight-ttl {
        font-size: 28px;
    }

    .point-number-image img {
        width: 16%;
    }

    .point-number-image {
        margin-bottom: -26px;
    }

    .point-title {
        font-size: 20px;
    }

    .point-text {
        font-size: 14px;
        font-weight: 400;
    }
}

/* ==========================================================================
   その他サポートセクション
   ========================================================================== */
.supports-section {
    padding: 80px 0;
    background: #1a1a1a;
}

.supports-lead {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.6;
}

.supports-lead img {
    max-width: 340px;
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.supports-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
}

.support-item {
    text-align: center;
    padding: 16px 4px;
}

.support-icon {
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.support-text {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.6;
    color: #fff;
}

@media (max-width: 768px) {
    .supports-section {
        padding: 48px 0;
    }

    .supports-lead img {
        width: 100%;
    }

    .supports-grid {
        gap: 4px;
    }

    .support-icon {

    }

    .support-text {
        font-size: 14px;
    }
}

/* ==========================================================================
   所属ライバーセクション
   ========================================================================== */
.voice-section {
    padding: var(--section-padding) 0;
    background: #fff
}

.voice-section .section-title {
    color: var(--color-text-dark);
    margin-bottom: 40px;
}

.voice-section .section-title.has-ttl-bg::before {
    left: 31%;
    top: 24%;
    transform: none;
}

/* スライダーラッパー */
.voice-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

/* 左右ナビゲーションボタン */
.voice-nav {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #333;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.voice-nav:hover {
    background: #555;
}

.voice-nav svg {
    width: 20px;
    height: 20px;
}

/* Swiperコンテナ */
.voice-swiper {
    width: 100%;
    max-width: 320px;
    overflow: hidden;
}

/* スライド内パディング（名前はみ出し用スペース） */
.voice-swiper .swiper-slide {
    padding-left: 24px;
    box-sizing: border-box;
}

/* カード本体 */
.voice-card {
    text-align: center;
}

/* カード内側（グラデーション枠線） */
.voice-card-inner {
    position: relative;
}

/* 写真エリア */
.voice-card-photo {
    overflow: hidden;
    background: #fff;
}

.voice-card-photo img {
    width: 100%;
    height: auto;
    display: block;
}

/* 名前画像（カード左側にはみ出して配置・タップでインタビュー表示） */
.voice-card-name {
    position: absolute;
    bottom: 10%;
    left: -3%;
    z-index: 2;
    display: block;
    width: 60%;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.voice-card-name:hover {
    opacity: 0.85;
}

.voice-card-name img {
    width: 100%;
    height: auto;
    display: block;
}

/* ページネーション */
.voice-pagination {
    position: relative !important;
    bottom: auto !important;
    display: flex;
    justify-content: center;
    margin-top: 24px;
    gap: 4px;
}

.voice-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #E8D5C4;
    opacity: 1;
    margin: 0;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.voice-pagination .swiper-pagination-bullet-active {
    background: #FFB5C5;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .voice-section {
        padding: var(--section-padding-sp) 0;
    }

    .voice-section .section-title.has-ttl-bg::before {
        left: 14px;
        top: 14px;
        transform: none;
    }

    .voice-slider-wrapper {
        position: relative;
        gap: 0;
    }

    .voice-nav {
        width: 48px;
        height: 48px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .voice-nav-prev {
        left: -8px;
    }

    .voice-nav-next {
        right: -8px;
    }

    .voice-swiper {
        max-width: 80vw;
    }

    .voice-swiper .swiper-slide {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* ==========================================================================
   登録の流れセクション（新デザイン - 黒背景）
   ========================================================================== */
.flow-section .section-title.has-ttl-bg::before {
    left: 39%;
    top: 20%;
    transform: none;
}

.flow-section {
    padding: var(--section-padding) 0;
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
    background: url('../images/section_bg-pc.webp') center / cover no-repeat;
}

/* 背景画像（特殊グラデーション） */
.flow-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

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

.flow-section .container {
    position: relative;
    z-index: 1;
}

.flow-section .section-label {
    font-family: var(--font-handwriting);
    font-size: 32px;
    color: #C4A98A;
    font-style: italic;
    margin-bottom: 0;
}

.flow-section .section-title {
    color: #fff;
    margin-bottom: 24px;
}

/* ステップリスト */
.flow-steps {
    --circle-size: 70px;
    --step-padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

/* 縦ライン（グラデーション） */
.flow-steps::before {
    content: '';
    position: absolute;
    /* 丸の中心に配置 */
    left: calc(var(--circle-size) / 2 - 1.5px);
    top: 11%;
    height: 70%;
    width: 3px;
    background: linear-gradient(180deg, #FF8FAB 0%, #7BC67B 100%);
    z-index: 1;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 1.2s ease;
}

.flow-steps.is-visible::before {
    transform: scaleY(1);
}

/* 各ステップ */
.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    padding: var(--step-padding) 0;
}

/* STEP番号画像 - ラインの上に配置 */
.flow-step-number-image {
    width: var(--circle-size);
    height: var(--circle-size);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.flow-step-number-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* フォールバック */
.flow-step-number-fallback {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: var(--circle-size);
    height: var(--circle-size);
    background: linear-gradient(90deg, #FF8FAB 0%, #98D8AA 100%);
    border-radius: 50%;
    text-align: center;
}

.flow-step-number-fallback .step-label {
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.flow-step-number-fallback .step-num {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

/* ステップコンテンツ */
.flow-step-content {
    flex: 1;
    padding-top: 8px;
}

.flow-step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 1);
    background: linear-gradient(to right, #FF8FAB 50%, rgba(255, 255, 255, 1) 50%);
    background-size: 200% 100%;
    background-position: right;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: background-position 0.8s ease;
}

.flow-step-title.is-visible {
    background-position: left;
}

.flow-step-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .flow-section {
        padding: var(--section-padding-sp) 0;
        background: url('../images/event_bg.webp') center / cover no-repeat;
    }

    .flow-section .section-title.has-ttl-bg::before {
        left: 64px;
        top: 14px;
        transform: none;
    }

    .flow-section .section-label {
        font-size: 28px;
    }

    .flow-steps {
        --circle-size: 56px;
        --step-padding: 10px;
    }

    .flow-step {
        gap: 16px;
    }

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

    .flow-step-number-fallback .step-num {
        font-size: 22px;
    }

    .flow-step-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

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

/* ==========================================================================
   FAQセクション（デザインデータ準拠）
   ========================================================================== */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-white);
}

.faq-section .section-title.has-ttl-bg::before {
    left: 37%;
    top: 14%;
    transform: none;
}

.faq-section .section-label {
    font-family: var(--font-handwriting);
    font-size: 28px;
    color: var(--color-primary-light);
    font-style: italic;
}

.faq-list {
    max-width: 500px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
    border-top: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-q {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary-light);
    flex-shrink: 0;
}

.faq-question-text {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-dark);
}

.faq-toggle {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
}

.faq-toggle::before {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: 300;
    color: var(--color-text-gray);
    transition: transform 0.3s ease;
}

.faq-item.is-open .faq-toggle::before {
    content: '−';
}

.faq-toggle::after {
    display: none;
}

.faq-answer {
    display: flex;
    gap: 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
}

.faq-item.is-open .faq-answer {
    margin-bottom: 20px;
}

.faq-a {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-light);
    flex-shrink: 0;
}

.faq-answer p {
    flex: 1;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-gray);
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: var(--section-padding-sp) 0;
    }

    .faq-section .section-title.has-ttl-bg::before {
        left: 62px;
        top: 10px;
        transform: none;
    }

    .faq-question {
        padding: 16px 0;
    }

    .faq-question-text {
        font-size: 14px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}

/* ==========================================================================
   ブログセクション（新デザイン）
   ========================================================================== */
.blog-section {
    padding: 20px 0 80px;
}

.blog-section .section-title.has-ttl-bg::before {
    left: 35%;
    top: 18%;
    transform: none;
}

.blog-section .section-label {
    font-family: var(--font-handwriting);
    font-size: 32px;
    color: #98D8AA;
    font-style: italic;
    margin-bottom: 0;
}

.blog-section .section-title {
    color: var(--color-text-dark);
    margin-bottom: 32px;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 56px;
}

/* ブログカード - 縦型レイアウト */
.blog-card {
    display: block;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.blog-card:nth-child(2) { transition-delay: 0.15s; }
.blog-card:nth-child(3) { transition-delay: 0.3s; }

.blog-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.blog-card:hover {
    opacity: 0.9;
}

/* サムネイル - ピンク枠付き */
.blog-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    margin-bottom: 12px;
}

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

.blog-thumbnail-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E8D5C4 0%, #D4C4B4 100%);
}

/* ブログ情報 */
.blog-info {
    padding: 0 4px;
}

.blog-date {
    font-size: 14px;
    color: var(--color-text-dark);
    display: block;
    margin-bottom: 8px;
}

.blog-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-dark);
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ブログ一覧ボタン */
.blog-more {
    text-align: center;
}

.blog-more-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 48px;
    background: #1a1a1a;
    border: none;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-more-link:hover {
    background: #333;
    color: #fff;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .blog-section {
        padding: 20px 0 60px;
    }

    .blog-section .section-title.has-ttl-bg::before {
        left: 54px;
        top: 10px;
        transform: none;
    }

    .blog-section .section-label {
        font-size: 28px;
    }

    .blog-list {
        gap: 28px;
        margin-bottom: 40px;
    }

    .blog-thumbnail {
        aspect-ratio: 16/9;
    }

    .blog-date {
        font-size: 12px;
    }

    .blog-title {
        font-size: 14px;
    }

    .blog-more-link {
        font-size: 14px;
        padding: 12px 40px;
    }
}

/* ==========================================================================
   CTAセクション（ENTRY - 1枚画像）
   ========================================================================== */
.cta-inner {
    position: relative;
    text-align: center;
}

.cta-image-link {
    width: 90%;
    display: block;
    position: absolute;
    bottom: 8%;
    left: 0;
    right: 0;
    margin-inline: auto;
}

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

.cta-inner > picture img {
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .cta-section .container{
        margin: 0;
        padding: 0;
    }
}

@media (min-width: 769px) {
    .cta-section {
        margin: 80px 0 120px;
    }

    .cta-image-link {
        width: 40%;
        bottom: 10%;
        left: 14.5%;
        right: auto;
    }

     .cta-image-link img{
        max-width: 100%;
     }
}

/* ==========================================================================
   インタビューポップアップ
   ========================================================================== */
.interview-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.interview-popup.is-active {
    opacity: 1;
    visibility: visible;
}

.interview-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.interview-popup-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    max-height: 85vh;
    background: var(--color-bg-white);
    border-radius: 20px;
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.interview-popup.is-active .interview-popup-content {
    transform: translateY(0) scale(1);
}

.interview-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    color: var(--color-text-dark);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.interview-popup-close:hover {
    background: var(--color-primary-light);
    color: #fff;
}

.interview-popup-inner {
    max-height: 85vh;
    overflow-y: auto;
    padding: 28px 24px;
}

.interview-popup-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}

.interview-popup-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.popup-tiktok-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
}

.popup-tiktok-link:hover {
    opacity: 0.7;
}

.popup-tiktok-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.interview-popup-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* プロフィール項目 */
.profile-item {
    background: var(--color-bg-gray);
    border-radius: 12px;
    padding: 14px 16px;
}

.profile-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary-light);
    margin-bottom: 6px;
    letter-spacing: 0.05em;
}

.profile-value {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text-gray);
    margin: 0;
}

/* コメント内のQ見出し */
.comment-q {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary-light);
    margin-top: 12px;
    margin-bottom: 4px;
    padding-left: 10px;
    border-left: 3px solid var(--color-primary-light);
}

.comment-q:first-child {
    margin-top: 0;
}

@media (max-width: 768px) {
    .interview-popup-content {
        width: 95%;
        max-height: 90vh;
    }

    .interview-popup-inner {
        padding: 24px 20px;
    }

    .interview-popup-name {
        font-size: 18px;
    }

    .profile-item {
        padding: 12px 14px;
    }

    .profile-value {
        font-size: 13px;
    }
}

/* ==========================================================================
   追従CTAバナー
   ========================================================================== */
.floating-cta {
    position: fixed;
    right: 3%;
    bottom: 4%;
    z-index: 99;
    display: block;
    width: 180px;
    transform: translateY(calc(100% + 20px));
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease;
    pointer-events: none;
}

.floating-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.floating-cta img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

@media (max-width: 768px) {
    .floating-cta {
        right: 2%;
        bottom: 2%;
        width: 32%;
    }
}

/* ==========================================================================
   PC表示最適化（min-width: 769px）
   ========================================================================== */
@media (min-width: 769px) {

    /* ---- FV（ファーストビュー）PC ---- */
    .fv-section {
        background: url('../images/fv-bg_pc.webp') center / cover no-repeat;
    }

    .fv-visual {
        position: relative;
        width: 100%;
        max-width: 1600px;
        margin: 0 auto;
        aspect-ratio: 1920 / 934;
        overflow: hidden;
    }

    /* スライダーを背景の上に重ねる */
    .fv-visual .fv-swiper {
        position: absolute;
        top: 0;
        right: 2%;
        bottom: 0;
        width: 60%;
        z-index: 1;
    }

    .fv-swiper .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: right bottom;
    }

    /* 枠画像 */
    .fv-waku {
        padding: 2%;
    }

    /* タイトル画像 PC配置（左側・縦中央） */
    .fv-title {
        top: 45%;
        bottom: auto;
        left: 8%;
        transform: translateY(-50%);
        width: 100%;
        max-width: 36%;
    }

    /* キャッチコピー PC配置（左寄せ） */
    .fv-catchcopy {
        width: 25%;
        left: 14%;
        transform: none;
        text-align: left;
        bottom: 10%;
    }

    /* ---- About：テキスト＋バッジ横並び ---- */
    .about-title {
        font-size: 36px;
    }

    .about-section .container {
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
        align-items: center;
    }

    .about-section .about-title {
        width: 100%;
    }

    .about-text {
        flex: 1.5;
        min-width: 0;
        max-width: none;
        margin: 0;
    }

    .about-text p {
        font-size: 16px;
        text-align: left;
    }

    .about-badges {
        flex: 1;
        min-width: 0;
        max-width: none;
        margin: 0;
    }

    .about-badges img {
        width: 100%;
        height: auto;
    }

    /* ---- Event：テキスト＋画像2カラム、画像は2×2 ---- */
    .event-section .container {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .event-text {
        flex: 1;
        min-width: 0;
    }

    .event-section .section-title {
        font-size: 36px;
        margin-bottom: 24px;
    }

    .event-section .section-description {
        text-align: left;
        font-size: 18px;
        margin-bottom: 0;
    }

    .event-swiper {
        flex: 1.2;
        min-width: 0;
        padding-bottom: 0;
    }

    .event-swiper .swiper-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        transform: none;
    }

    .event-swiper .swiper-slide {
        width: 100%;
    }

    .event-pagination {
        display: none;
    }

    /* ---- Media（LIVE TIMES）：横並び3カラム ---- */
    .media-heading {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        margin-bottom: 56px;
    }

    .media-heading .media-logo {
        flex-shrink: 0;
        width: 28%;
    }

    .media-heading .media-title {
        margin-bottom: 0;
    }

    .media-title {
        font-size: 32px;
    }

    .media-list {
        max-width: 1200px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 32px;
    }

    .media-card {
        width: calc(33.333% - 22px);
        flex-shrink: 0;
    }

    /* ---- News ---- */
    .news-section .container {
        max-width: 1000px;
    }

    .news-title {
        font-size: 16px;
    }

    /* ---- TikTok ---- */
    .tiktok-section .section-title {
        font-size: 40px;
        margin-bottom: 24px;
    }

    /* ---- About Live：2カラム（左テキスト・右features） ---- */
    .about-live-section .container {
        display: flex;
        align-items: center;
        gap: 48px;
        padding: 0 40px;
    }

    .about-live-content {
        flex: 1;
        min-width: 0;
    }

    .about-live-title img {
        max-width: 480px;
    }

    .about-live-text {
        max-width: none;
    }

    .about-live-text p {
        font-size: 16px;
    }

    .live-features-list {
        flex: 1;
        min-width: 0;
        max-width: none;
        flex-direction: column;
        gap: 24px;
    }

    .live-feature-item {
        width: 80%;
    }

    /* ---- Livers：2カラム（左grid・右mascot） ---- */
    .livers-section .section-title {
        font-size: 36px;
    }

    .livers-columns {
        display: flex;
        align-items: center;
        gap: 48px;
        max-width: 900px;
        margin: 0 auto;
        margin-top: 24px;
    }

    .livers-columns .livers-grid {
        flex: 1;
        max-width: 400px;
        width: 100%;
        margin: 0;
    }

    .livers-columns .livers-mascot {
        flex-shrink: 0;
        width: 100%;
        max-width: 320px;
        margin: 0;
    }
    
    .livers-mascot > img{
        width: 100%;
    }

    .mascot-bubble p {
        font-size: 18px;
    }

    /* ---- Points：画像＋テキスト2カラム、ジグザグ ---- */
    .points-section .section-title {
        font-size: 32px;
    }

    .points-section .section-title .highlight-number {
        font-size: 56px;
    }

    .points-list {
        gap: 56px;
    }

    .point-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }

    .point-image {
        margin-bottom: 0;
    }

    .point-title {
        font-size: 24px;
    }

    .point-text {
        font-size: 16px;
    }

    .point-item:nth-child(even) .point-card {
        direction: rtl;
    }

    .point-item:nth-child(even) .point-card > * {
        direction: ltr;
    }

    /* ---- Supports：4カラム1行 ---- */
    .supports-lead img {
        max-width: 480px;
    }

    .supports-grid {
        max-width: 880px;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .support-text {
        font-size: 16px;
    }

    /* ---- Voice ---- */
    .voice-swiper {
        max-width: none;
    }

    /* ---- Flow ---- */
    .flow-section .section-label {
        font-size: 40px;
    }

    .flow-step-title {
        font-size: 22px;
    }

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

    .flow-steps {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    /* ---- FAQ ---- */
    .faq-section .section-label {
        font-size: 36px;
    }

    .faq-list {
        max-width: 800px;
    }

    /* ---- Blog ---- */
    .blog-section .section-label {
        font-size: 40px;
    }

    .blog-title {
        font-size: 16px;
    }

    .blog-date {
        font-size: 16px;
    }

    .blog-list {
        flex-direction: row;
        gap: 32px;
    }

    .blog-card {
        flex: 1;
        min-width: 0;
    }

}

/* ==========================================================================
   スマホ用スライダー調整（768px以下）
   ========================================================================== */
@media (max-width: 768px) {
    /* ============================================
       TikTok スライダー調整
    ============================================ */
    .tiktok-swiper {
        overflow: visible;
        padding-bottom: 40px;
    }

    .tiktok-pagination {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        text-align: center;
    }

    .tiktok-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: #ccc;
        opacity: 1;
        margin: 0 4px;
    }

    .tiktok-pagination .swiper-pagination-bullet-active {
        background: var(--color-primary-light);
    }
}

