@charset "UTF-8";

/* ========================================
   Wageページ
======================================== */

.wage-main {
    overflow: hidden;
    color: #fff;
    background: #050505;
}


/* ========================================
   Hero
======================================== */

.wage-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 18% 28%,
            rgb(36 233 255 / 16%),
            transparent 30%
        ),
        radial-gradient(
            circle at 82% 60%,
            rgb(255 143 216 / 13%),
            transparent 32%
        ),
        radial-gradient(
            circle at 62% 12%,
            rgb(184 156 255 / 12%),
            transparent 25%
        ),
        #050505;
}

.wage-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: wageGridMove 16s linear infinite;
}

@keyframes wageGridMove {

    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(60px);
    }
}

.wage-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;
}

.wage-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: 16px;
    font-weight: 900;
    letter-spacing: 0.25em;
    box-shadow:
        0 0 18px rgb(36 233 255 / 10%);
}

.wage-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: "";
}

.wage-hero-title {
    margin-top: 30px;
    color: #fff;
    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%);
}

.wage-hero-catch {
    margin-top: 36px;
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.7;
}

.wage-hero-catch > .wage-hero-catch-line > span {
    color: #ff8fd8;
    text-shadow:
        0 0 1px #fff,
        0 0 30px #ff8fd8,
        0 0 70px rgb(255 143 216 / 40%);
}

.wage-hero-catch {
    width: 100%;
    margin-right: auto;

    text-align: left;
}

.wage-hero-catch-line {
    display: block;
}

.wage-hero-text {
    max-width: none;
    margin-top: 30px;
    color: rgb(255 255 255 / 72%);
    font-size: 22px;
    line-height: 2;
}
.wage-hero-line {
        display: block;
        white-space: nowrap;
    }
.wage-hero-button,
.wage-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-width: 250px;
    padding: 16px 24px;
    border-radius: 999px;
    font-weight: 900;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.wage-hero-button {
    margin-top: 36px;
    border: 1px solid rgb(36 233 255 / 45%);
    color: #fff;
    background:
        linear-gradient(
            90deg,
            rgb(36 233 255 / 10%),
            rgb(184 156 255 / 9%)
        );
}

.wage-hero-button:hover {
    transform: translateY(-4px);
    border-color: #ff8fd8;
    box-shadow:
        0 0 22px rgb(36 233 255 / 14%),
        0 0 28px rgb(255 143 216 / 10%);
}


/* ========================================
   Heroコア
======================================== */

.wage-hero-visual {
    position: relative;
    display: grid;
    place-items: center;
    width: min(520px, 100%);
    aspect-ratio: 1;
    margin-left: auto;
}

.wage-core {
    position: relative;
    display: grid;
    place-items: center;
    width: 76%;
    aspect-ratio: 1;
}

.wage-core-ring {
    position: absolute;
    border: 1px solid rgb(36 233 255 / 32%);
    border-radius: 50%;
    box-shadow:
        0 0 22px rgb(36 233 255 / 10%),
        inset 0 0 24px rgb(184 156 255 / 6%);
}

.wage-core-ring::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: "";
}

.wage-core-ring-01 {
    width: 100%;
    height: 100%;
    animation: wageCoreRotate 17s linear infinite;
}

.wage-core-ring-02 {
    width: 74%;
    height: 74%;
    border-color: rgb(255 143 216 / 35%);
    animation: wageCoreRotate 12s linear reverse infinite;
}

.wage-core-ring-03 {
    width: 48%;
    height: 48%;
    border-color: rgb(184 156 255 / 40%);
    animation: wageCoreRotate 8s linear infinite;
}

.wage-core-center {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 42%;
    aspect-ratio: 1;
    border: 1px solid rgb(36 233 255 / 45%);
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgb(36 233 255 / 16%),
            rgb(5 5 8 / 88%) 70%
        );
    box-shadow:
        0 0 30px rgb(36 233 255 / 20%),
        0 0 55px rgb(255 143 216 / 12%);
    animation: wageCorePulse 2.5s ease-in-out infinite;
}

.wage-core-center span {
    color: #fff;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.wage-core-center strong {
    margin: 5px 0;
    color: #ff8fd8;
    font-size: 1.8rem;
    text-shadow:
        0 0 12px #ff8fd8;
}

@keyframes wageCoreRotate {

    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes wageCorePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.wage-floating-word {
    position: absolute;
    z-index: 4;
    padding: 9px 15px;
    border: 1px solid rgb(255 255 255 / 15%);
    border-radius: 999px;
    color: #fff;
    background: rgb(5 5 8 / 76%);
    backdrop-filter: blur(10px);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.wage-word-01 {
    top: 12%;
    right: 4%;
    color: #24e9ff;
}

.wage-word-02 {
    bottom: 20%;
    left: 0;
    color: #ff8fd8;
}

.wage-word-03 {
    top: 30%;
    left: 0;
    color: #b89cff;
}

.wage-word-04 {
    right: 5%;
    bottom: 8%;
}

.wage-scroll {
    position: absolute;
    z-index: 3;
    bottom: 24px;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: rgb(255 255 255 / 52%);
    font-size: 14px;
    letter-spacing: 0.22em;
    transform: translateX(-50%);
}

.wage-scroll span:last-child {
    color: #24e9ff;
    font-size: 1.4rem;
    animation: wageScrollMove 1.5s ease-in-out infinite;
}

@keyframes wageScrollMove {

    50% {
        transform: translateY(7px);
    }
}


/* ========================================
   共通
======================================== */

.wage-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;
}

.wage-section:nth-of-type(even) {
    background:
        linear-gradient(
            180deg,
            rgb(255 255 255 / 2%),
            transparent
        ),
        #08080d;
}

.wage-section-inner {
    width: min(1200px, 100%);
    margin: 0 auto;
}

.wage-heading {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 65px;
}

.wage-heading::before {
    width: 60px;
    height: 2px;
    background:
        linear-gradient(
            90deg,
            #24e9ff,
            #ff8fd8,
            #b89cff
        );
    box-shadow:
        0 0 10px rgb(36 233 255 / 45%);
    content: "";
}

.wage-heading-number {
    color: rgb(255 255 255 / 50%);
    font-size: 60px;
    font-weight: 900;
    line-height: 1;
}

.wage-heading-en {
    margin-bottom: 8px;
    color: #24e9ff;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.28em;
}

.wage-heading-ja {
    color: #fff;
    font-size: 60px;
    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%);
}


/* ========================================
   工賃とは
======================================== */

.wage-about-layout,
.wage-payment-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 30px;
}

.wage-about-main,
.wage-about-note,
.wage-payment-card,
.wage-payment-info {
    position: relative;
    padding: 38px;
    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%);
}
.wage-about-note {
        padding: 38px 20px;
    }
.wage-about-main::before,
.wage-about-note::before,
.wage-payment-card::before,
.wage-payment-info::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background:
        linear-gradient(
            90deg,
            #24e9ff,
            #ff8fd8,
            #b89cff
        );
    content: "";
}

.wage-about-lead {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.8;
}

.wage-about-main p:not(.wage-about-lead),
.wage-about-note p:not(.wage-about-note-label),
.wage-payment-info p {
    margin-top: 24px;
    color: rgb(255 255 255 / 68%);
    line-height: 2;
    font-size: 18px;
}

.wage-about-note {
    border-color: rgb(255 143 216 / 28%);
}

.wage-about-note-label,
.wage-payment-label {
    display: inline-flex;
    padding: 7px 14px;
    border: 1px solid rgb(255 143 216 / 50%);
    border-radius: 999px;
    color: #ff8fd8;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.2em;
}

.wage-about-note h3,
.wage-payment-info h3 {
    margin-top: 24px;
    color: #fff;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.6;
}

.wage-payment-info h3 {
    text-align: center;
}
.wage-payment-info-text {
    text-align: center;
}

.wage-payment-info-text span {
    display: block;
}

/* ========================================
   仕事カード
======================================== */

.wage-work-grid,
.wage-value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
 .wage-work-card {
        display: flex;
        flex-direction: column;
        align-items: center;

        text-align: center;
    }
.wage-work-card,
.wage-value-card {
    position: relative;
    min-height: 340px;
    padding: 30px 25px;
    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%)
        );
    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.wage-work-card::before,
.wage-value-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background:
        linear-gradient(
            90deg,
            #24e9ff,
            #ff8fd8,
            #b89cff
        );
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.wage-work-card:hover,
.wage-value-card:hover {
    transform: translateY(-8px);
    border-color: rgb(36 233 255 / 34%);
    box-shadow:
        0 0 26px rgb(36 233 255 / 12%),
        0 0 34px rgb(255 143 216 / 8%);
}

.wage-work-card:hover::before,
.wage-value-card:hover::before {
    transform: scaleX(1);
}

.wage-work-icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border: 1px solid rgb(36 233 255 / 30%);
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            rgb(36 233 255 / 12%),
            rgb(255 143 216 / 8%)
        );
    font-size: 1.7rem;
    margin-right: auto;
        margin-left: auto;
}

.wage-work-label {
    margin-top: 22px;
    color: #ff8fd8;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.wage-work-card h3,
.wage-value-card h3 {
    margin-top: 8px;
    color: #fff;
    font-size: 30px;
    font-weight: 900;
}

.wage-work-card > p:not(.wage-work-label),
.wage-value-card p {
    margin-top: 15px;
    color: rgb(255 255 255 / 64%);
    line-height: 1.8;
}
/* PC版：4つの説明文をそれぞれ2行に固定する */
@media screen and (min-width: 768px) {

    .wage-value-card p {
        font-size: 18px;
        white-space: nowrap;
    }

    /* ========================================
   PCのみ：02の仕事カードを縦型配置
======================================== */

    /* 4枚のカードを縦1列に並べる */

    .wage-work .wage-work-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }
    /* カード内の配置 */

    .wage-work .wage-work-card {
        display: grid;
        grid-template-columns:
            100px
            220px
            minmax(0, 1fr)
            230px;

        grid-template-rows: auto auto;

        align-items: center;

        width: 100%;
        min-height: 150px;

        padding: 24px 28px;

        column-gap: 12px;
        row-gap: 8px;

        text-align: center;
    }

    /* ピンクの英字をアイコンの上へ配置 */

    .wage-work .wage-work-label {
        grid-column: 1;
        grid-row: 1;

        align-self: end;
        justify-self: center;

        width: 100%;
        margin: 0;
font-size: 14px;
        color: #ff8fd8;

        text-align: center;
    }

    /* アイコンを左側の中央へ配置 */

    .wage-work .wage-work-icon {
        grid-column: 1;
        grid-row: 2;

        align-self: start;
        justify-self: center;

        margin: 0;
    }

    /* タイトルをアイコンの右隣へ配置 */

.wage-work .wage-work-card > h3 {
    grid-column: 2;
    grid-row: 1 / 3;

    align-self: stretch;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    margin: 0;
    padding-right: 24px;

    border-right:
        1px solid rgb(224, 254, 24);

    font-size: 24px;
    line-height: 1.5;
    text-align: center;
}

    /* 説明文1行目 */

.wage-work
.wage-work-card
> .wage-work-text-line:nth-of-type(3) {
    grid-column: 3;
    grid-row: 2;

    align-self: start;

    width: 100%;
    margin: 0;

    text-align: center;
}
    /* 説明文2行目 */

/* PCではモバイル・タップ後用の2行文章を隠す */

.wage-work .wage-work-card > .wage-work-text-line {
    display: none;
}

/* PC専用の1行文章 */

.wage-work .wage-work-text-pc {
    grid-column: 3;
    grid-row: 1 / 3;

    align-self: center;

    display: block;

    width: 100%;
    margin: 0;

    font-size: 18px;
    line-height: 1.8;
    white-space: nowrap;
    text-align: left;
}

    /* ▶のリストを説明文の右隣へ配置 */

.wage-work .wage-work-card > ul {
    grid-column: 4;
    grid-row: 1 / 3;

    align-self: stretch;
    justify-self: stretch;
    align-content: center;

    display: grid;

    width: 100%;
    max-width: 100%;

    margin: 0;
    margin-left: 30px;
    padding: 0 0 0 24px;

    border-left:
        1px solid rgb(224, 254, 24);

    gap: 9px;

    text-align: left;
}

    /* ▶と項目を縦に並べる */

    .wage-work .wage-work-card > ul > li {
        display: flex;
        align-items: center;
        justify-content: flex-start;

        width: 100%;
font-size: 18px;
        gap: 8px;

        text-align: left;
    }

        /* PC版：03のSTEPカードを縦並び、カード内を横並びにする */
        .wage-system .wage-system-flow {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .wage-system .wage-system-arrow {
        display: none;
    }

    .wage-system .wage-system-step {
        display: grid;
grid-template-columns: 110px 90px minmax(280px, 1fr) minmax(0, 1.6fr);
column-gap: 12px;
        align-items: center;
        column-gap: 26px;
        min-height: 0;
        padding: 26px 32px;
   
        text-align: left;
    }

    .wage-system .wage-system-number {
        grid-column: 1;
    }

    .wage-system .wage-system-icon {
        grid-column: 2;
        margin: 0;
    }

.wage-system .wage-system-step p {
    grid-column: 4;
    width: 100%;
    margin-top: 0;
    text-align: center;
}

    .wage-system .wage-system-step p {
        grid-column: 4;
        margin-top: 0;
        text-align: left;
    }

.wage-system .wage-system-step p {
    white-space: nowrap;
}

.wage-system .wage-system-step p br {
    display: none;
}

    .wage-cta h2 {
        font-size: clamp(2.2rem, 4.3vw, 3.7rem);
        white-space: nowrap;
    }

    /* PC版：04のLEVELカードを縦並び、カード内を横並びにする */
    .wage-growth .wage-growth-board {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0;
        border: 0;
        background: none;
    }

    .wage-growth .wage-growth-line,
    .wage-growth .wage-growth-dot {
        display: none;
    }

    .wage-growth .wage-growth-item {
        display: grid;
        grid-template-columns: 120px 300px minmax(0, 1fr);
        align-items: center;
        column-gap: 12px;
        min-height: 0;
        padding: 26px 32px;
        border: 1px solid rgb(255 255 255 / 9%);
        border-radius: 16px;
        background: rgb(255 255 255 / 3%);
        text-align: center;
    }

    .wage-growth .wage-growth-level {
        grid-column: 1;
    }

    .wage-growth .wage-growth-content {
        display: contents;
    }

    .wage-growth .wage-growth-content h3 {
        grid-column: 2;
        margin: 0;
        text-align: center;
    }

.wage-growth .wage-growth-content p {
grid-column: 3;
    margin: 0 0 0 38px;
    text-align: left;
    white-space: nowrap;
}

.wage-growth .wage-growth-content p br {
    display: none;
}

/* PC版：03・04のタイトルと説明文を右揃えにする */
    .wage-system .wage-system-step h3,
    .wage-system .wage-system-step p,
    .wage-growth .wage-growth-content h3,
    .wage-growth .wage-growth-content p {
        text-align: left;
}
/* PC版：05のお支払いカードを縦並びにする */
    .wage-payment .wage-payment-layout {
        grid-template-columns: 1fr;
}

/* PC版：05の各カード内を横並びにする */
.wage-payment .wage-payment-card {
    display: grid;
    grid-template-columns: 170px 130px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 20px;
    row-gap: 14px;
}

.wage-payment .wage-payment-label {
    grid-column: 1;
    grid-row: 1 / 3;
}

.wage-payment .wage-payment-icon {
    grid-column: 2;
    grid-row: 1 / 3;
}

.wage-payment .wage-payment-card h3 {
    font-size: 30px;
    grid-column: 3;
    grid-row: 1;
    text-align: left;
    white-space: nowrap;
}

.wage-payment .wage-payment-card > p:not(.wage-payment-label) {
    font-size: 18px;
    grid-column: 3;
    grid-row: 2;
    text-align: left;
    white-space: nowrap;
}

.wage-payment .wage-payment-card > p:not(.wage-payment-label) br {
    display: none;
}

    .wage-payment .wage-payment-label {
        justify-self: center;
    }

    .wage-payment .wage-payment-icon {
        margin-top: 0;
        justify-self: center;
    }

    .wage-payment .wage-payment-card h3,
    .wage-payment .wage-payment-card > p:not(.wage-payment-label) {
        margin-top: 0;
    }

.wage-payment .wage-payment-info {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 20px;
    row-gap: 14px;
}

.wage-payment .wage-payment-info h3 {
    grid-column: 1;
    grid-row: 1;
    margin-top: 0;
    text-align: left;
    white-space: nowrap;
}

.wage-payment .wage-payment-info-text {
    grid-column: 1;
    grid-row: 2;
    display: block;
    margin-top: 0;
    text-align: left;
}

.wage-payment .wage-payment-info-text span {
    display: block;
    white-space: nowrap;
}

.wage-payment .wage-payment-info-text span:nth-child(1)::after {
    content: "成果などによって異なります。";
}

.wage-payment .wage-payment-info-text span:nth-child(3)::after {
    content: "見学・面談時に事業所からご説明します。";
}

.wage-payment .wage-payment-info-text span:nth-child(2),
.wage-payment .wage-payment-info-text span:nth-child(4) {
    display: none;
}

.wage-payment .wage-payment-info ul {
    grid-column: 2;
    grid-row: 1 / 3;
    margin-top: 0;
}

    .wage-payment .wage-payment-info h3,
    .wage-payment .wage-payment-info p,
    .wage-payment .wage-payment-info ul {
        margin-top: 0;
    }

    /* PC版：06の①〜④カードを縦並び、カード内を横並びにする */
    .wage-value .wage-value-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .wage-value .wage-value-card {
        display: grid;
        grid-template-columns: 110px 300px minmax(0, 1fr);
        align-items: center;
        column-gap: 20px;
        min-height: 0;
        padding: 26px 32px;
        text-align: left;
    }

    .wage-value .wage-value-number {
        position: static;
        grid-column: 1;
        font-size: 40px;
    }

    .wage-value .wage-value-card h3 {
        grid-column: 2;
        margin-top: 0;
        text-align: left;
    }

.wage-value .wage-value-card p {
    grid-column: 3;
    margin-top: 0;
    text-align: left;
    white-space: nowrap;
}

.wage-value .wage-value-card p br {
    display: none;
}

/* PC版：CTAの文章を指定した2行にする */
    .wage-cta .wage-contact-text span,
    .wage-cta .wage-consultation-text span {
        display: block;
        white-space: nowrap;
}
.wage-cta .wage-contact-text {
    text-align: center;
}

.wage-sp-break {
    display: none;
}

}
/* 768px終了 */


.wage-work-text-line {
        display: block;

        font-size: 18px;
        white-space: nowrap;
    }

.wage-work-card > p,
    .wage-work-card > h3,
    .wage-work-card > ul {
        width: 100%;
        text-align: center;
    }
.wage-work-card ul {
    display: grid;
    gap: 9px;
    margin-top: 20px;
    width: fit-content;
        max-width: 100%;

        margin-right: auto;
        margin-left: auto;
        padding-left: 0;
}
 .wage-work-card > ul {
        margin-right: 0;
        margin-left: 0;
        padding-left: 0;
    }

.wage-work-card > ul > li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}.wage-work-card li {
    position: relative;
    padding-left: 0;
    color: rgb(255 255 255 / 74%);
    font-size: 0.88rem;
    display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
}

.wage-work-card li::before {
    position: static;
    flex-shrink: 0;
    left: 0;
    color: #24e9ff;
    content: "▶";
    font-size: 0.65rem;
}


/* ========================================
   工賃システム
======================================== */

.wage-system-flow {
    display: grid;
    grid-template-columns:
        1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 14px;
}

.wage-system-step {
    min-height: 300px;
    padding: 28px 22px;
    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%)
        );
    text-align: center;
}

.wage-system-number {
    color: #24e9ff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.wage-system-icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    margin: 22px auto 0;
    border: 1px solid rgb(255 143 216 / 32%);
    border-radius: 50%;
    background: rgb(255 143 216 / 8%);
    font-size: 1.6rem;
}

.wage-system-step h3 {
    margin-top: 22px;
    color: #fff;
    font-size: 30px;
    font-weight: 900;
}

.wage-system-step p {
    margin-top: 14px;
    color: rgb(255 255 255 / 64%);
    font-size: 18px;
    line-height: 1.8;
}
/* STEP 01の説明文を指定した位置で2行にする */
.wage-system-step:first-child p {
    font-size: 18px;
    white-space: nowrap;
}
.wage-system-arrow {
    color: #24e9ff;
    font-size: 1.5rem;
    text-shadow:
        0 0 8px #24e9ff;
}


/* ========================================
   ステップアップ
======================================== */

.wage-growth-board {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 48px 22px 30px;
    border: 1px solid rgb(36 233 255 / 22%);
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            rgb(255 255 255 / 4%),
            rgb(255 255 255 / 1%)
        );
}

.wage-growth-line {
    position: absolute;
    top: 89px;
    right: 10%;
    left: 10%;
    height: 2px;
    background:
        linear-gradient(
            90deg,
            #24e9ff,
            #ff8fd8,
            #b89cff
        );
    box-shadow:
        0 0 10px rgb(36 233 255 / 50%);
}

.wage-growth-item {
    position: relative;
    text-align: center;
}

.wage-growth-level {
    color:#ff8fd8;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.wage-growth-dot {
    position: relative;
    z-index: 2;
    width: 14px;
    height: 14px;
    margin: 22px auto;
    border: 3px solid #050505;
    border-radius: 50%;
    background: #24e9ff;
    box-shadow:
        0 0 8px #24e9ff,
        0 0 16px rgb(36 233 255 / 60%);
}

.wage-growth-content {
    min-height: 205px;
    padding: 23px 16px;
    border: 1px solid rgb(255 255 255 / 9%);
    border-radius: 16px;
    background: rgb(255 255 255 / 3%);
}

.wage-growth-content h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 900;
}

.wage-growth-content p {
    margin-top: 13px;
    color: rgb(255 255 255 / 62%);
    font-size: 18px;
    line-height: 1.75;
}


/* ========================================
   お支払い
======================================== */

.wage-payment-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.wage-payment-icon {
    display: grid;
    place-items: center;
    width: 110px;
    height: 110px;
    margin-top: 28px;
    border: 1px solid rgb(36 233 255 / 40%);
    border-radius: 50%;
    color: #24e9ff;
    background: rgb(36 233 255 / 8%);
    font-size: 3.5rem;
    font-weight: 900;
    box-shadow:
        0 0 25px rgb(36 233 255 / 18%);
}

.wage-payment-card h3 {
    margin-top: 25px;
    color: #fff;
    font-size: 24px;
}

.wage-payment-card > p:not(.wage-payment-label) {
    margin-top: 17px;
    color: rgb(255 255 255 / 65%);
    line-height: 1.9;
}

.wage-payment-info ul {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.wage-payment-info li {
    font-size: 16px;
    position: relative;
    padding: 14px 16px 14px 43px;
    border: 1px solid rgb(255 255 255 / 8%);
    border-radius: 11px;
    color: rgb(255 255 255 / 74%);
    background: rgb(36 233 255 / 5%);
}

.wage-payment-info li::before {
    position: absolute;
    top: 50%;
    left: 16px;
    color: #24e9ff;
    content: "◆";
    transform: translateY(-50%);
}

.wage-payment-note {
    margin-top: 30px;
    color: rgb(255 255 255 / 52%);
    font-size: 14px;
    line-height: 1.8;
    text-align: center;
}


/* ========================================
   価値カード
======================================== */

.wage-value-card {
    min-height: 255px;
}

.wage-value-number {
    position: absolute;
    top: 22px;
    left: 24px;
    color: rgba(43, 232, 253, 0.641);
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
}

.wage-value-card {
    padding: 60px 5px 5px;
}

/* ========================================
   CTA
======================================== */

.wage-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;
}

.wage-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;
}

.wage-cta-inner {
    position: relative;
    z-index: 2;
    width: min(900px, 100%);
    margin: 0 auto;
    text-align: center;
}

.wage-cta-label {
    color: #24e9ff;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.3em;
}

.wage-cta h2 {
    margin-top: 22px;
    color: #fff;
    font-size: 70px;
    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%);
}


.wage-cta-inner > p:not(.wage-cta-label) {
    margin-top: 28px;
    color: rgb(255 255 255 / 70%);
    line-height: 2;
    font-size: 18px;
}

.wage-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 42px;
}

.wage-cta-primary {
    color: #050505;
    background:
        linear-gradient(
            135deg,
            #24e9ff,
            #9df7ff
        );
}

.wage-cta-secondary {
    border: 1px solid rgb(255 143 216 / 55%);
    color: #fff;
    background: rgb(255 143 216 / 9%);
}

.wage-cta-button:hover {
    transform: translateY(-5px);
}

.wage-cta-button span:last-child {
    transition: transform 0.3s ease;
}

.wage-cta-button:hover span:last-child {
    transform: translateX(6px);
}


/* ========================================
   アニメーション
======================================== */

.reveal-wage {
    opacity: 0;
    transform: translateY(55px);
    filter: blur(5px);
    transition:
        opacity 0.9s ease,
        transform 0.9s ease,
        filter 0.9s ease;
}

.reveal-wage.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.wage-hero-content {
    opacity: 0;
    transform: translateX(-60px);
    filter: blur(8px);
    animation:
        wageHeroContentAppear
        1s ease
        0.3s
        forwards;
}

.wage-hero-visual {
    opacity: 0;
    transform:
        scale(0.84)
        rotate(5deg);
    filter: blur(9px);
    animation:
        wageHeroVisualAppear
        1.15s ease
        0.55s
        forwards;
}

.wage-work-card:nth-child(2),
.wage-system-step:nth-of-type(2),
.wage-value-card:nth-child(2) {
    transition-delay: 0.1s;
}

.wage-work-card:nth-child(3),
.wage-system-step:nth-of-type(3),
.wage-value-card:nth-child(3) {
    transition-delay: 0.2s;
}

.wage-work-card:nth-child(4),
.wage-system-step:nth-of-type(4),
.wage-value-card:nth-child(4) {
    transition-delay: 0.3s;
}

.wage-about-main.reveal-wage,
.wage-payment-card.reveal-wage {
    transform: translateX(-65px);
}

.wage-about-note.reveal-wage,
.wage-payment-info.reveal-wage {
    transform: translateX(65px);
}

.wage-about-main.reveal-wage.is-visible,
.wage-about-note.reveal-wage.is-visible,
.wage-payment-card.reveal-wage.is-visible,
.wage-payment-info.reveal-wage.is-visible {
    transform: translateX(0);
}

@keyframes wageHeroContentAppear {

    to {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

@keyframes wageHeroVisualAppear {

    to {
        opacity: 1;
        transform:
            scale(1)
            rotate(0);
        filter: blur(0);
    }
}

