@charset "UTF-8";

/* ========================================
   Targetページ
======================================== */

.target-main {
    overflow: hidden;
    color: #ffffff;
    background: #050505;
}


/* ========================================
   Hero
======================================== */

.target-hero {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 100vh;

    padding:
        calc(var(--header-height) + 80px)
        40px
        100px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 20% 30%,
            rgb(36 233 255 / 15%),
            transparent 30%
        ),
        radial-gradient(
            circle at 80% 60%,
            rgb(255 143 216 / 12%),
            transparent 32%
        ),
        radial-gradient(
            circle at 65% 20%,
            rgb(184 156 255 / 12%),
            transparent 25%
        ),
        #050505;
}


/* 背景グリッド */

.target-hero-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgb(255 255 255 / 4%) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgb(255 255 255 / 4%) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 95%
        );

    animation: targetGridMove 16s linear infinite;
}

@keyframes targetGridMove {

    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(60px);
    }
}


/* Hero内側 */

.target-hero-inner {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 80px;

    width: min(1200px, 100%);

    margin: 0 auto;
}


/* Hero文章 */

.target-hero-content {
    position: relative;
}

.target-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 8px 18px;

    border: 1px solid rgb(36 233 255 / 55%);
    border-radius: 999px;

    color: #24e9ff;

    background:
        rgb(36 233 255 / 6%);

    font-size: 0.76rem;
    font-weight: 900;

    letter-spacing: 0.25em;

    box-shadow:
        0 0 18px rgb(36 233 255 / 10%);
}

.target-hero-label::before {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #ff8fd8;

    box-shadow:
        0 0 8px #ff8fd8,
        0 0 16px rgb(255 143 216 / 60%);

    content: "";
}

.target-hero-title {
    margin-top: 30px;

    color: #ffffff;

    font-size: clamp(3.4rem, 7vw, 6.8rem);
    font-weight: 900;
    line-height: 1.05;

    letter-spacing: 0.04em;

    text-shadow:
        0 0 10px rgb(36 233 255 / 45%),
        0 0 30px rgb(36 233 255 / 22%),
        0 0 60px rgb(184 156 255 / 15%);
}

.target-hero-catch {
    margin-top: 36px;

    color: #ffffff;

    font-size: clamp(1.5rem, 2.6vw, 2.4rem);
    font-weight: 800;
    line-height: 1.7;
}

.target-hero-catch span {
    color: #ff8fd8;

    text-shadow:
        0 0 4px rgb(255 143 216 / 35%),
        0 0 3px #ff8fd8,
        0 0 10px rgb(255 143 216 / 18%);
}
.target-hero-text {
    max-width: 650px;

    margin-top: 30px;

    color: rgb(255 255 255 / 72%);

    font-size: 1.05rem;
    line-height: 2;
    
}


/* ========================================
   Heroビジュアル
======================================== */

.target-hero-visual {
    position: relative;

    display: grid;
    place-items: center;

    width: min(520px, 100%);
    aspect-ratio: 1;

    margin-left: auto;
}

.target-hero-logo {
    position: relative;
    z-index: 3;

    width: 48%;

    filter:
        drop-shadow(0 0 18px rgb(36 233 255 / 65%))
        drop-shadow(0 0 35px rgb(184 156 255 / 35%));

    animation:
        targetLogoFloat 5s ease-in-out infinite;
}

@keyframes targetLogoFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-14px) rotate(2deg);
    }
}


/* 軌道リング */

.target-orbit {
    position: absolute;

    border:
        1px solid rgb(36 233 255 / 28%);

    border-radius: 50%;

    box-shadow:
        inset 0 0 30px rgb(36 233 255 / 5%),
        0 0 24px rgb(36 233 255 / 8%);
}

.target-orbit::before {
    position: absolute;
    top: 50%;
    left: -5px;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #ff8fd8;

    box-shadow:
        0 0 8px #ff8fd8,
        0 0 18px #ff8fd8;

    content: "";
}

.target-orbit-large {
    width: 88%;
    height: 88%;

    animation:
        targetOrbitRotate 16s linear infinite;
}

.target-orbit-small {
    width: 62%;
    height: 62%;

    border-color:
        rgb(184 156 255 / 34%);

    animation:
        targetOrbitRotate 10s linear reverse infinite;
}

@keyframes targetOrbitRotate {

    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}


/* 浮遊ワード */

.target-hero-word {
    position: absolute;
    z-index: 4;

    padding: 9px 15px;

    border:
        1px solid rgb(255 255 255 / 15%);

    border-radius: 999px;

    color: #ffffff;

    background:
        rgb(5 5 8 / 72%);

    backdrop-filter: blur(10px);

    font-size: 0.72rem;
    font-weight: 900;

    letter-spacing: 0.2em;

    box-shadow:
        0 10px 28px rgb(0 0 0 / 30%),
        0 0 14px rgb(36 233 255 / 8%);
}

.target-word-01 {
    top: 17%;
    right: 5%;

    color: #24e9ff;
}

.target-word-02 {
    bottom: 20%;
    left: 0;

    color: #ff8fd8;
}

.target-word-03 {
    right: 2%;
    bottom: 9%;

    color: #b89cff;
}


/* スクロール案内 */

.target-scroll {
    position: absolute;
    z-index: 3;
    bottom: 25px;
    left: 50%;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;

    color: rgb(255 255 255 / 55%);

    font-size: 0.64rem;
    font-weight: 700;

    letter-spacing: 0.22em;

    transform: translateX(-50%);
}

.target-scroll span:last-child {
    color: #24e9ff;
    font-size: 1.4rem;

    animation:
        targetScrollMove 1.5s ease-in-out infinite;
}

@keyframes targetScrollMove {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(7px);
    }
}


/* ========================================
   共通セクション
======================================== */

.target-section {
    position: relative;

    padding: 120px 40px;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgb(36 233 255 / 6%),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgb(255 143 216 / 6%),
            transparent 28%
        ),
        #050505;
}

.target-section:nth-of-type(even) {
    background:
        linear-gradient(
            180deg,
            rgb(255 255 255 / 2%),
            transparent
        ),
        #08080d;
}

.target-section-inner {
    width: min(1200px, 100%);
    margin: 0 auto;
}


/* ========================================
   サイバー見出し
======================================== */

.target-heading {
    position: relative;

    display: flex;
    align-items: center;
    gap: 25px;

    margin-bottom: 65px;
}

.target-heading::before {
    width: 60px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            #24e9ff,
            #ff8fd8,
            #b89cff
        );

    box-shadow:
        0 0 8px #24e9ff,
        0 0 16px rgb(255 143 216 / 40%);

    content: "";
}

.target-heading-number {
    color: rgb(255 255 255 / 12%);

    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 1;
}

.target-heading-en {
    margin-bottom: 8px;

    color: #24e9ff;

    font-size: 0.75rem;
    font-weight: 900;

    letter-spacing: 0.28em;
}

.target-heading-ja {
    color: #ffffff;

    font-size: clamp(2rem, 4vw, 3.7rem);
    font-weight: 900;
    line-height: 1.3;

    text-shadow:
        0 0 10px rgb(36 233 255 / 22%),
        0 0 26px rgb(184 156 255 / 15%);
}

@media screen and (min-width: 769px) {
    .target-check .target-heading-ja {
        font-size: clamp(2rem, 3.2vw, 3.2rem);
        white-space: nowrap;
    }
}

/* ========================================
   お悩みチェック
======================================== */

.target-check-grid {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.target-check-card {
    position: relative;

    min-height: 260px;

    padding: 30px 26px;

    overflow: hidden;

    border:
        1px solid rgb(255 255 255 / 10%);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgb(255 255 255 / 4%),
            rgb(255 255 255 / 1%)
        );

    box-shadow:
        0 18px 45px rgb(0 0 0 / 30%);

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.target-check-card::before {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            #24e9ff,
            #ff8fd8,
            #b89cff
        );

    content: "";

    transform: scaleX(0);
    transform-origin: left;

    transition:
        transform 0.4s ease;
}

.target-check-card::after {
    position: absolute;
    right: -60px;
    bottom: -60px;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgb(184 156 255 / 12%),
            transparent 70%
        );

    content: "";

    pointer-events: none;
}

.target-check-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgb(36 233 255 / 35%);

    box-shadow:
        0 24px 60px rgb(0 0 0 / 40%),
        0 0 24px rgb(36 233 255 / 12%),
        0 0 30px rgb(255 143 216 / 8%);
}

.target-check-card:hover::before {
    transform: scaleX(1);
}

.target-check-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100px;
    height: 100px;

    margin: 0 auto;

    border:
        1px solid rgb(36 233 255 / 30%);

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            rgb(36 233 255 / 12%),
            rgb(255 143 216 / 8%)
        );

    font-size: 3.2rem;
    line-height: 1;

    box-shadow:
        0 0 24px rgb(36 233 255 / 18%);
}
.target-check-card h3 {
    margin-top: 24px;

    color: #ffffff;

    font-size: 1.25rem;
    font-weight: 900;
    text-align: center;
}

.target-check-card p {
    margin-top: 15px;

    color: rgb(255 255 255 / 66%);

    font-size: 0.92rem;
    line-height: 1.9;
    text-align: center;
}

.target-check-message {
    margin-top: 55px;

    color: #ffffff;

    font-size: clamp(1.35rem, 2.5vw, 2rem);
    font-weight: 800;
    line-height: 1.8;

    text-align: center;

    text-shadow:
        0 0 10px rgb(36 233 255 / 24%),
        0 0 24px rgb(255 143 216 / 12%);
}

.target-check-message::first-line {
    color: #ff8fd8;
}
/* PCでは白い文章を1行にする */
@media screen and (min-width: 769px) {

    .target-check-message {
        white-space: nowrap;
    }

    .target-check-message br:nth-of-type(2) {
        display: none;
    }

}
/* ========================================
   利用条件
======================================== */

.target-condition-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 36px;
    align-items: start;
}

.target-condition-main,
.target-condition-note {
    position: relative;

    padding: 36px;

    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgb(255 255 255 / 4%),
            rgb(255 255 255 / 1%)
        );

    box-shadow:
        0 20px 55px rgb(0 0 0 / 30%);
}

.target-condition-main::before,
.target-condition-note::before {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            #24e9ff,
            #ff8fd8,
            #b89cff
        );

    content: "";
}

.target-condition-lead {
    color: #ffffff;

    font-size: clamp(1.2rem, 2vw, 1.7rem);
    font-weight: 800;
    line-height: 1.8;
}

.target-condition-list {
    display: grid;
    gap: 15px;

    margin-top: 34px;
}

.target-condition-list li {
    position: relative;

    padding: 16px 18px 16px 50px;

    border: 1px solid rgb(255 255 255 / 9%);
    border-radius: 12px;

    color: rgb(255 255 255 / 76%);
    background:
        linear-gradient(
            90deg,
            rgb(36 233 255 / 7%),
            rgb(184 156 255 / 5%)
        );

    line-height: 1.8;
}

.target-condition-list li::before {
    position: absolute;
    top: 50%;
    left: 18px;

    color: #24e9ff;

    content: "◆";

    font-size: 0.75rem;

    transform: translateY(-50%);

    text-shadow:
        0 0 8px #24e9ff;
}


/* POINTカード */

.target-condition-note {
    border-color:
        rgb(255 143 216 / 28%);

    background:
        radial-gradient(
            circle at 90% 10%,
            rgb(255 143 216 / 12%),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            rgb(255 255 255 / 4%),
            rgb(255 255 255 / 1%)
        );
}

.target-condition-note-label {
    display: inline-flex;

    padding: 7px 14px;

    border: 1px solid rgb(255 143 216 / 50%);
    border-radius: 999px;

    color: #ff8fd8;

    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.2em;

    box-shadow:
        0 0 16px rgb(255 143 216 / 10%);
}

.target-condition-note h3 {
    margin-top: 24px;

    color: #ffffff;

    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 900;
    line-height: 1.6;

    text-shadow:
        0 0 12px rgb(255 143 216 / 18%);
}

.target-condition-note p:not(.target-condition-note-label) {
    margin-top: 22px;

    color: rgb(255 255 255 / 68%);

    font-size: 0.95rem;
    line-height: 1.9;
}


/* ========================================
   おすすめ対象
======================================== */

.target-fit-list {
    display: grid;
    gap: 18px;
}

.target-fit-item {
    position: relative;

    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: center;
    gap: 28px;

    padding: 26px 30px;

    overflow: hidden;

    border: 1px solid rgb(255 255 255 / 9%);
    border-radius: 18px;

    background:
        linear-gradient(
            90deg,
            rgb(36 233 255 / 7%),
            rgb(255 143 216 / 4%),
            rgb(184 156 255 / 5%)
        );

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.target-fit-item::after {
    position: absolute;
    top: 0;
    left: 0;

    width: 4px;
    height: 100%;

    background:
        linear-gradient(
            to bottom,
            #24e9ff,
            #ff8fd8,
            #b89cff
        );

    content: "";
}

.target-fit-item:hover {
    transform: translateX(8px);

    border-color:
        rgb(36 233 255 / 28%);

    box-shadow:
        0 0 22px rgb(36 233 255 / 10%),
        0 0 28px rgb(255 143 216 / 7%);
}

.target-fit-number {
    color: rgb(255 255 255 / 12%);

    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1;
}

.target-fit-item h3 {
    color: #ffffff;

    font-size: 1.3rem;
    font-weight: 900;
}

.target-fit-item p {
    margin-top: 10px;

    color: rgb(255 255 255 / 66%);

    line-height: 1.8;
}


/* ========================================
   利用までの流れ
======================================== */

.target-flow-list {
    position: relative;

    display: grid;
    gap: 24px;
}

.target-flow-list::before {
    position: absolute;
    top: 35px;
    bottom: 35px;
    left: 72px;

    width: 2px;

    background:
        linear-gradient(
            to bottom,
            #24e9ff,
            #ff8fd8,
            #b89cff
        );

    box-shadow:
        0 0 10px rgb(36 233 255 / 45%);

    content: "";
}

.target-flow-item {
    position: relative;

    display: grid;
    grid-template-columns: 90px 72px 1fr;
    align-items: center;
    gap: 24px;

    min-height: 140px;

    padding: 26px 30px;

    border: 1px solid rgb(255 255 255 / 9%);
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgb(255 255 255 / 4%),
            rgb(255 255 255 / 1%)
        );

    box-shadow:
        0 18px 45px rgb(0 0 0 / 28%);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.target-flow-item:hover {
    transform: translateY(-5px);

    border-color:
        rgb(36 233 255 / 30%);

    box-shadow:
        0 24px 55px rgb(0 0 0 / 38%),
        0 0 24px rgb(36 233 255 / 10%);
}

.target-flow-number {
    color: rgb(255 255 255 / 12%);

    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.target-flow-icon {
    position: relative;
    z-index: 2;

    display: grid;
    place-items: center;

    width: 64px;
    height: 64px;

    border: 1px solid rgb(36 233 255 / 32%);
    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            rgb(36 233 255 / 12%),
            rgb(255 143 216 / 8%)
        );

    font-size: 1.5rem;

    box-shadow:
        0 0 18px rgb(36 233 255 / 12%);
}

.target-flow-content h3 {
    color: #ffffff;

    font-size: 1.3rem;
    font-weight: 900;
}

.target-flow-content p {
    margin-top: 10px;

    color: rgb(255 255 255 / 66%);

    line-height: 1.8;
}


/* ========================================
   不安への案内
======================================== */

.target-support-box {
    position: relative;

    width: min(900px, 100%);

    margin: 0 auto;
    padding: 55px 50px;

    overflow: hidden;

    border: 1px solid rgb(255 143 216 / 24%);
    border-radius: 24px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgb(255 143 216 / 15%),
            transparent 32%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgb(36 233 255 / 12%),
            transparent 30%
        ),
        #0a0a10;

    text-align: center;

    box-shadow:
        0 26px 70px rgb(0 0 0 / 35%),
        0 0 30px rgb(255 143 216 / 8%);
}

.target-support-box::before {
    position: absolute;
    inset: 16px;

    border: 1px solid rgb(255 255 255 / 5%);
    border-radius: 16px;

    content: "";

    pointer-events: none;
}

.target-support-label {
    color: #ff8fd8;

    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.28em;
}

.target-support-box h2 {
    margin-top: 22px;

    color: #ffffff;

    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 900;
    line-height: 1.45;

    text-shadow:
        0 0 12px rgb(36 233 255 / 18%),
        0 0 28px rgb(255 143 216 / 14%);
}

.target-support-box > p:not(.target-support-label) {
    max-width: 720px;

    margin: 26px auto 0;

    color: rgb(255 255 255 / 68%);

    line-height: 2;
}

.target-support-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    min-width: 260px;

    margin-top: 34px;
    padding: 15px 24px;

    border: 1px solid rgb(36 233 255 / 40%);
    border-radius: 999px;

    color: #ffffff;

    background:
        linear-gradient(
            90deg,
            rgb(36 233 255 / 9%),
            rgb(184 156 255 / 8%)
        );

    font-weight: 800;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.target-support-link:hover {
    transform: translateY(-4px);

    border-color: #ff8fd8;

    box-shadow:
        0 0 20px rgb(36 233 255 / 12%),
        0 0 26px rgb(255 143 216 / 10%);
}

.target-support-link span:last-child {
    color: #24e9ff;

    font-size: 1.25rem;

    transition:
        transform 0.3s ease;
}

.target-support-link:hover span:last-child {
    transform: translateX(6px);
}


/* ========================================
   CTA
======================================== */

.target-cta {
    position: relative;

    padding: 130px 40px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 20% 40%,
            rgb(36 233 255 / 16%),
            transparent 30%
        ),
        radial-gradient(
            circle at 80% 60%,
            rgb(255 143 216 / 14%),
            transparent 30%
        ),
        #050505;
}

.target-cta-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgb(255 255 255 / 3%) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgb(255 255 255 / 3%) 1px,
            transparent 1px
        );

    background-size: 50px 50px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 20%,
            black 80%,
            transparent
        );
}

.target-cta-inner {
    position: relative;
    z-index: 2;

    width: min(900px, 100%);

    margin: 0 auto;

    text-align: center;
}

.target-cta-en {
    color: #24e9ff;

    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.3em;
}

.target-cta h2 {
    margin-top: 22px;

    color: #ffffff;

    font-size: clamp(2rem, 4vw, 3.8rem);
    font-weight: 900;
    line-height: 1.4;

    text-shadow:
        0 0 12px rgb(36 233 255 / 22%),
        0 0 30px rgb(255 143 216 / 16%);
}

.target-cta-inner > p:not(.target-cta-en) {
    margin-top: 28px;

    color: rgb(255 255 255 / 70%);

    line-height: 2;
}

.target-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;

    margin-top: 42px;
}

.target-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;

    min-width: 250px;

    padding: 17px 24px;

    border-radius: 999px;

    font-weight: 900;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.target-cta-primary {
    color: #050505;

    background:
        linear-gradient(
            135deg,
            #24e9ff,
            #9df7ff
        );

    box-shadow:
        0 0 22px rgb(36 233 255 / 22%);
}

.target-cta-secondary {
    border:
        1px solid rgb(255 143 216 / 55%);

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            rgb(255 143 216 / 10%),
            rgb(184 156 255 / 10%)
        );

    box-shadow:
        0 0 22px rgb(255 143 216 / 10%);
}

.target-cta-button:hover {
    transform: translateY(-5px);
}

.target-cta-primary:hover {
    box-shadow:
        0 0 28px rgb(36 233 255 / 36%),
        0 0 45px rgb(36 233 255 / 18%);
}

.target-cta-secondary:hover {
    border-color: #24e9ff;

    box-shadow:
        0 0 24px rgb(255 143 216 / 18%),
        0 0 34px rgb(36 233 255 / 12%);
}

.target-cta-button span:last-child {
    transition:
        transform 0.3s ease;
}

.target-cta-button:hover span:last-child {
    transform: translateX(6px);
}
/* ========================================
   スクロールアニメーション
======================================== */

.reveal-target {
    opacity: 0;
    transform: translateY(55px);
    filter: blur(5px);

    transition:
        opacity 0.9s ease,
        transform 0.9s ease,
        filter 0.9s ease;
}

.reveal-target.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}


/* Hero登場 */

.target-hero-content {
    opacity: 0;
    transform: translateX(-60px);
    filter: blur(8px);

    animation:
        targetHeroContentAppear 1s ease 0.3s forwards;
}

.target-hero-visual {
    opacity: 0;
    transform: scale(0.82) rotate(5deg);
    filter: blur(9px);

    animation:
        targetHeroVisualAppear 1.2s ease 0.55s forwards;
}

@keyframes targetHeroContentAppear {

    to {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

@keyframes targetHeroVisualAppear {

    to {
        opacity: 1;
        transform: scale(1) rotate(0);
        filter: blur(0);
    }
}


/* チェックカードを順番に表示 */

.target-check-card:nth-child(1) {
    transition-delay: 0s;
}

.target-check-card:nth-child(2) {
    transition-delay: 0.08s;
}

.target-check-card:nth-child(3) {
    transition-delay: 0.16s;
}

.target-check-card:nth-child(4) {
    transition-delay: 0.24s;
}

.target-check-card:nth-child(5) {
    transition-delay: 0.32s;
}

.target-check-card:nth-child(6) {
    transition-delay: 0.4s;
}


/* おすすめ対象を順番に表示 */

.target-fit-item:nth-child(1) {
    transition-delay: 0s;
}

.target-fit-item:nth-child(2) {
    transition-delay: 0.1s;
}

.target-fit-item:nth-child(3) {
    transition-delay: 0.2s;
}

.target-fit-item:nth-child(4) {
    transition-delay: 0.3s;
}


/* 利用までの流れを順番に表示 */

.target-flow-item:nth-child(1) {
    transition-delay: 0s;
}

.target-flow-item:nth-child(2) {
    transition-delay: 0.1s;
}

.target-flow-item:nth-child(3) {
    transition-delay: 0.2s;
}

.target-flow-item:nth-child(4) {
    transition-delay: 0.3s;
}

.target-flow-item:nth-child(5) {
    transition-delay: 0.4s;
}


/* 条件カードは左右から表示 */

.target-condition-main.reveal-target {
    transform: translateX(-65px);
}

.target-condition-note.reveal-target {
    transform: translateX(65px);
}

.target-condition-main.reveal-target.is-visible,
.target-condition-note.reveal-target.is-visible {
    transform: translateX(0);
}


/* CTAは少し拡大しながら表示 */

.target-cta-inner.reveal-target {
    transform: translateY(40px) scale(0.96);
}

.target-cta-inner.reveal-target.is-visible {
    transform: translateY(0) scale(1);
}
