/* =============================================
   for-women-fv.css
   ファーストビュー改修用スタイル
   ============================================= */


/* ----- 2. ヒーローセクション ----- */

.fv-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 481px) {
    .fv-hero {
        aspect-ratio: unset;
        min-height: 56vw;
    }
}

@media screen and (min-width: 1025px) {
    .fv-hero {
        min-height: 620px;
        max-height: 780px;
    }
}

/* 背景（画像 or 動画） */
.fv-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.fv-hero__bg-img,
.fv-hero__bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 動画が有効な場合、画像を隠す */
.fv-hero__bg-video ~ .fv-hero__bg-img {
    display: none;
}

/* コピー画像オーバーレイ */
.fv-hero__copy {
    position: relative;
    z-index: 1;
    width: 88%;
    padding: 20px 0;
}

@media screen and (min-width: 481px) and (max-width: 1024px) {
    .fv-hero__copy {
        width: 60%;
    }
}

@media screen and (min-width: 1025px) {
    .fv-hero__copy {
        width: 40%;
    }
}

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


/* ----- 3. 概要セクション1（ピンクグラデーション背景） ----- */

.fv-overview {
    background: linear-gradient(136deg, rgba(255, 95, 95, 1), rgba(255, 153, 123, 1));
    padding: 40px 20px 36px;
    text-align: center;
}

@media screen and (min-width: 1025px) {
    .fv-overview {
        padding: 56px 40px 48px;
    }
}

.fv-overview__inner {
    max-width: 800px;
    margin-inline: auto;
}

.fv-overview__catch {
    margin-bottom: 24px;
}

@media screen and (min-width: 1025px) {
    .fv-overview__catch {
        margin-bottom: 32px;
    }
}

.fv-overview__catch img {
    width: 85%;
    max-width: 600px;
    height: auto;
    display: block;
    margin-inline: auto;
}

@media screen and (min-width: 481px) and (max-width: 679px) {
    .fv-overview__catch img {
        width: 60%;
        max-width: 480px;
    }
}

@media screen and (min-width: 680px) and (max-width: 1024px) {
    .fv-overview__catch img {
        width: 100%;
        max-width: 660px;
    }
}

@media screen and (min-width: 1025px) {
    .fv-overview__catch img {
        width: 100%;
        max-width: 660px;
    }
}

/* PC/SP 表示切り替え（display:blockの上書き対策） */
@media screen and (max-width: 679px) {
    .fv-overview__catch img.pc,
    .fv-overview__usp img.pc {
        display: none;
    }
}

@media screen and (min-width: 680px) {
    .fv-overview__catch img.sp,
    .fv-overview__usp img.sp {
        display: none;
    }
}

/* USP画像 */
.fv-overview__usp {
    margin-top: 24px;
}

.fv-overview__usp img {
    width: 90%;
    max-width: 600px;
    height: auto;
    display: block;
    margin-inline: auto;
}

@media screen and (min-width: 481px) and (max-width: 679px) {
    .fv-overview__usp img {
        width: 60%;
        max-width: 480px;
    }
}

@media screen and (min-width: 680px) and (max-width: 1024px) {
    .fv-overview__usp img {
        width: 100%;
        max-width: 660px;
    }
}

@media screen and (min-width: 1025px) {
    .fv-overview__usp {
        margin-top: 32px;
    }

    .fv-overview__usp img {
        width: 100%;
        max-width: 660px;
    }
}

.fv-overview__lead {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 2;
    letter-spacing: 0.04em;
    margin: 50px 15px;
}

@media screen and (min-width: 1025px) {
    .fv-overview__lead {
        font-size: 18px;
        line-height: 2;
    }
}


/* ----- 4. 概要セクション2（ナビゲーション） ----- */

.fv-nav {
    padding: 40px 20px 0;
    background: #fff;
}

@media screen and (min-width: 1025px) {
    .fv-nav {
        padding: 60px 40px 0;
    }
}

.fv-nav__inner {
    max-width: 960px;
    margin-inline: auto;
}

/* ---- fv-nav: 480px以下（1カラム・横並び） ---- */
.fv-nav__list {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
}

.fv-nav__item {
    width: 100%;
    min-width: 0;
    border-bottom: 1px solid #e8d8dc;
}

.fv-nav__item:first-child {
    border-top: 1px solid #e8d8dc;
}

.fv-nav__link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #333;
    padding: 12px 16px;
    transition: opacity 0.25s ease;
}

.fv-nav__link:hover {
    opacity: 0.6;
}

.fv-nav__icon {
    width: 56px;
    height: auto;
    flex-shrink: 0;
    display: block;
}

.fv-nav__desc {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
    color: #555;
    flex: 1;
    white-space: nowrap;
}

/* 1カラムではbrを非表示にして1行表示 */
.fv-nav__desc br {
    display: none;
}

.fv-nav__arrow {
    font-size: 0;
    line-height: 1;
    flex-shrink: 0;
    display: inline-block;
    width: 12px;
    height: 8px;
    position: relative;
}

.fv-nav__arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #FF5F5F;
    border-bottom: 2px solid #FF5F5F;
    transform: translateX(-50%) rotate(45deg);
    transform-origin: center;
}

/* ---- 481px〜768px（2カラム・縦並び） ---- */
@media screen and (min-width: 481px) {
    .fv-nav__list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .fv-nav__item {
        border-top: none;
        border-bottom: none;
    }

    .fv-nav__item:first-child {
        border-top: none;
    }

    .fv-nav__link {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 16px 8px 12px;
        border-radius: 12px;
    }

    .fv-nav__icon {
        width: clamp(60px, 18vw, 100px);
        margin-bottom: 8px;
    }

    .fv-nav__desc {
        font-size: 12px;
        text-align: center;
        white-space: normal;
    }

    .fv-nav__desc br {
        display: inline;
    }

    .fv-nav__arrow {
        display: block;
        margin-top: 6px;
    }
}

/* ---- 769px以上（5カラム・アイコンvw追従） ---- */
@media screen and (min-width: 769px) {
    .fv-nav {
        padding: 50px 40px 0;
    }

    .fv-nav__list {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 8px;
    }

    .fv-nav__item {
        flex: 1;
        min-width: 0;
    }

    .fv-nav__link {
        flex-direction: column;
        align-items: center;
        padding: 16px 4px 12px;
        border-radius: 12px;
    }

    .fv-nav__icon {
        width: clamp(80px, 9vw, 140px);
        margin-bottom: 10px;
    }

    .fv-nav__desc {
        font-size: clamp(11px, 1.2vw, 14px);
        text-align: center;
    }

    .fv-nav__arrow {
        margin-top: 8px;
    }
}


/* ----- 5. CTA 大型化（PC表示で目立たせる） ----- */

.inline-cta--hero {
    padding: 36px 20px 44px;
    background: #fff;
}

@media screen and (min-width: 1025px) {
    .inline-cta--hero {
        padding: 48px 40px 60px;
    }
}

.inline-cta--hero .inline-cta__text {
    font-size: 15px;
    margin-bottom: 18px;
}

@media screen and (min-width: 1025px) {
    .inline-cta--hero .inline-cta__text {
        font-size: 20px;
        margin-bottom: 24px;
    }
}

@media screen and (min-width: 1025px) {
    .inline-cta--hero .inline-cta__btn {
        font-size: 30px;
        padding: 28px 64px;
        max-width: 620px;
        border-radius: 60px;
        box-shadow: 0 6px 24px rgba(6, 199, 85, 0.45);
    }
}

@media screen and (min-width: 1025px) {
    .inline-cta--hero .inline-cta__btn-icon img {
        width: 38px;
        height: 38px;
    }
}


/* ----- 旧MVを非表示 ----- */

.for-women > .mv {
    display: none;
}
