:root {
    color-scheme: light;

    --sky-turquoise: #20aa9a;
    --sky-turquoise-dark: #087d76;
    --sky-turquoise-light: #dff8f5;

    --sky-blue: #23aee8;
    --sky-blue-deep: #078cd1;
    --sky-blue-light: #ddf5ff;

    --sky-coral: #ef847d;
    --sky-coral-dark: #d7645e;
    --sky-coral-light: #ffe8e4;

    --sky-yellow: #ffe36d;
    --sky-white: #ffffff;
    --sky-off-white: #fffdf8;
    --sky-beige: #fff3de;

    --sky-brown: #4e382f;
    --sky-muted: #73615a;
    --sky-line: #86d9d2;

    --sky-content: 560px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    min-width: 320px;
    margin: 0;
    color: var(--sky-brown);
    background: var(--sky-off-white);
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Noto Sans JP",
        "Yu Gothic",
        "Hiragino Kaku Gothic ProN",
        sans-serif;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.sky-preview-header {
    background: var(--sky-white);
    border-bottom: 2px solid var(--sky-turquoise-light);
}

.sky-preview-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100%, var(--sky-content));
    min-height: 70px;
    margin-inline: auto;
    padding: 11px 16px;
}

.sky-preview-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.sky-preview-logo strong {
    color: var(--sky-turquoise-dark);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 29px;
    letter-spacing: 0.08em;
}

.sky-preview-logo span {
    margin-top: 6px;
    color: var(--sky-brown);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.sky-preview-menu {
    display: grid;
    width: 52px;
    height: 52px;
    padding: 7px;
    color: var(--sky-turquoise-dark);
    background: var(--sky-white);
    border: 2px solid var(--sky-turquoise);
    border-radius: 50%;
    place-items: center;
}

.sky-preview-menu__lines {
    display: grid;
    gap: 4px;
}

.sky-preview-menu__lines span {
    display: block;
    width: 21px;
    height: 2px;
    background: currentColor;
    border-radius: 10px;
}

.sky-preview-menu small {
    font-size: 8px;
    font-weight: 800;
}

.sky-home {
    width: min(100%, var(--sky-content));
    margin-inline: auto;
    overflow: hidden;
    background: var(--sky-white);
}

.sky-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #21afe9 0%,
            #4cc6ef 52%,
            #a5e5f8 100%
        );
}

.sky-hero__inner {
    position: relative;
    z-index: 3;
    padding: 24px 14px 30px;
}

.sky-hero__eyebrow {
    width: fit-content;
    margin: 0 auto 14px;
    padding: 6px 13px;
    color: var(--sky-turquoise-dark);
    background: rgba(255, 255, 255, 0.92);
    border: 2px solid rgba(255, 255, 255, 0.96);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    text-align: center;
}

.sky-hero__scene {
    display: grid;
    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.4fr)
        minmax(0, 0.8fr);
    align-items: end;
    gap: 7px;
}

.sky-character {
    min-width: 0;
    margin: 0;
    text-align: center;
}

.sky-character__speech {
    position: relative;
    min-height: 54px;
    margin-bottom: 9px;
    padding: 8px 5px;
    color: var(--sky-turquoise-dark);
    background: var(--sky-white);
    border: 2px solid var(--sky-turquoise);
    border-radius: 18px;
    font-size: 9px;
    font-weight: 900;
    line-height: 1.4;
}

.sky-character--umi .sky-character__speech {
    color: var(--sky-coral-dark);
    border-color: var(--sky-coral);
}

.sky-character__speech::after {
    position: absolute;
    bottom: -7px;
    left: 50%;
    width: 12px;
    height: 12px;
    content: "";
    background: var(--sky-white);
    border-right: 2px solid var(--sky-turquoise);
    border-bottom: 2px solid var(--sky-turquoise);
    transform:
        translateX(-50%)
        rotate(45deg);
}

.sky-character--umi .sky-character__speech::after {
    border-right-color: var(--sky-coral);
    border-bottom-color: var(--sky-coral);
}

.sky-character__image {
    display: grid;
    width: 100%;
    min-height: 145px;
    padding: 9px;
    color: var(--sky-turquoise-dark);
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.90),
            rgba(255, 246, 222, 0.94)
        );
    border: 3px solid var(--sky-white);
    border-radius:
        56px
        56px
        24px
        24px;
    font-size: 9px;
    font-weight: 800;
    line-height: 1.5;
    place-items: center;
}

.sky-character--umi .sky-character__image {
    color: var(--sky-coral-dark);
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.92),
            rgba(255, 232, 228, 0.94)
        );
}

.sky-character figcaption {
    margin-top: 5px;
    color: var(--sky-white);
    font-size: 9px;
    font-weight: 900;
}

.sky-hero__copy {
    align-self: center;
    text-align: center;
}

.sky-hero__title {
    margin: 0;
    color: var(--sky-white);
    font-size: clamp(21px, 6.4vw, 33px);
    line-height: 1.4;
    text-shadow: none;
}

.sky-hero__title strong {
    display: block;
    margin: 6px 0;
    color: var(--sky-yellow);
    font-size: 1.23em;
    line-height: 1.22;
}

.sky-hero__description {
    margin: 12px 0 0;
    color: var(--sky-white);
    font-size: 9px;
    font-weight: 800;
    line-height: 1.65;
}

.sky-hero__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
    gap: 9px;
}

.sky-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 10px;
    color: var(--sky-white);
    border: 3px solid var(--sky-white);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.3;
    text-align: center;
}

.sky-button--line {
    gap: 7px;
    background: #14bd4b;
}

.sky-button--coral {
    background: var(--sky-coral);
}

.sky-button__icon {
    display: grid;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    font-size: 8px;
    place-items: center;
}

.sky-hero__note {
    margin: 15px 0 0;
    color: var(--sky-white);
    font-size: 9px;
    font-weight: 800;
    text-align: center;
}

.sky-hero__cloud {
    position: absolute;
    z-index: 1;
    width: 170px;
    height: 66px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
}

.sky-hero__cloud::before,
.sky-hero__cloud::after {
    position: absolute;
    content: "";
    background: inherit;
    border-radius: 50%;
}

.sky-hero__cloud::before {
    top: -36px;
    left: 28px;
    width: 76px;
    height: 76px;
}

.sky-hero__cloud::after {
    top: -22px;
    right: 22px;
    width: 58px;
    height: 58px;
}

.sky-hero__cloud--left {
    top: 60px;
    left: -112px;
}

.sky-hero__cloud--right {
    top: 92px;
    right: -115px;
}

.sky-hero__sun {
    position: absolute;
    top: -43px;
    right: -43px;
    z-index: 1;
    width: 150px;
    height: 150px;
    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.92) 0,
            rgba(255, 242, 147, 0.68) 32%,
            rgba(255, 255, 255, 0) 72%
        );
    border-radius: 50%;
}

.sky-hero__coast {
    position: relative;
    z-index: 2;
    height: 94px;
}

.sky-hero__sea {
    position: absolute;
    right: 0;
    bottom: 24px;
    left: 0;
    height: 70px;
    background:
        linear-gradient(
            180deg,
            #2bc8d6,
            #008fc0
        );
}

.sky-hero__sea::before,
.sky-hero__sea::after {
    position: absolute;
    right: 0;
    left: 0;
    height: 9px;
    content: "";
    background:
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 22px,
            rgba(255, 255, 255, 0.82) 23px,
            rgba(255, 255, 255, 0.82) 39px,
            transparent 40px,
            transparent 62px
        );
}

.sky-hero__sea::before {
    top: 16px;
}

.sky-hero__sea::after {
    top: 42px;
    opacity: 0.72;
}

.sky-hero__beach {
    position: absolute;
    right: -20px;
    bottom: -22px;
    left: -20px;
    height: 64px;
    background: var(--sky-beige);
    border-radius: 50% 50% 0 0;
}

.sky-work {
    padding: 34px 14px 38px;
    background:
        linear-gradient(
            180deg,
            #f7ffff,
            #e9fbff
        );
}

.sky-section-heading {
    text-align: center;
}

.sky-section-heading__decoration {
    margin: 0 0 3px;
    color: var(--sky-coral);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.sky-section-heading h2 {
    margin: 0;
    color: var(--sky-turquoise-dark);
    font-size: 24px;
    line-height: 1.45;
}

.sky-section-heading > p:last-child {
    margin: 8px 0 0;
    color: var(--sky-muted);
    font-size: 11px;
    font-weight: 700;
}

.sky-work__list {
    display: grid;
    margin-top: 22px;
    gap: 14px;
}

.sky-work-card {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);
    overflow: hidden;
    background: var(--sky-white);
    border: 2px solid var(--sky-line);
    border-radius: 24px;
}

.sky-work-card__number {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    display: grid;
    width: 36px;
    height: 36px;
    color: var(--sky-white);
    background: var(--sky-turquoise);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 900;
    place-items: center;
}

.sky-work-card__visual {
    position: relative;
    display: grid;
    min-height: 180px;
    padding: 20px 10px 12px;
    place-items: center;
}

.sky-work-card__visual--night {
    background:
        linear-gradient(
            180deg,
            #16356d,
            #4979aa
        );
}

.sky-work-card__visual--weekend {
    background:
        linear-gradient(
            180deg,
            #8ae6ff,
            #fff0a9
        );
}

.sky-work-card__visual--reservation {
    background:
        linear-gradient(
            180deg,
            #ffe2dc,
            #fff7e7
        );
}

.sky-work-card__moon {
    position: absolute;
    top: 18px;
    right: 17px;
    width: 42px;
    height: 42px;
    background: var(--sky-yellow);
    border-radius: 50%;
}

.sky-work-card__moon::after {
    position: absolute;
    top: -5px;
    left: 13px;
    width: 42px;
    height: 42px;
    content: "";
    background: #16356d;
    border-radius: 50%;
}

.sky-work-card__placeholder {
    position: relative;
    z-index: 2;
    display: grid;
    width: 112px;
    height: 112px;
    padding: 10px;
    color: var(--sky-brown);
    background: rgba(255, 255, 255, 0.92);
    border: 2px solid var(--sky-white);
    border-radius:
        52px
        52px
        22px
        22px;
    font-size: 10px;
    font-weight: 900;
    line-height: 1.5;
    text-align: center;
    place-items: center;
}

.sky-work-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 22px 17px 20px;
}

.sky-work-card__content h3 {
    margin: 0;
    color: var(--sky-turquoise-dark);
    font-size: 21px;
    line-height: 1.4;
}

.sky-work-card__content p {
    margin: 8px 0 0;
    color: var(--sky-muted);
    font-size: 12px;
    font-weight: 700;
}

.sky-next-section {
    padding: 38px 16px 42px;
    text-align: center;
    background:
        linear-gradient(
            180deg,
            #fff9ee,
            #fff0e7
        );
}

.sky-next-section p {
    margin: 0 0 4px;
    color: var(--sky-coral);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.sky-next-section h2 {
    margin: 0;
    color: var(--sky-turquoise-dark);
    font-size: 23px;
}

.sky-next-section span {
    display: block;
    margin-top: 9px;
    color: var(--sky-muted);
    font-size: 11px;
}

.sky-button:focus-visible,
.sky-preview-menu:focus-visible {
    outline: 3px solid rgba(255, 227, 109, 0.92);
    outline-offset: 3px;
}

@media (min-width: 700px) {
    body {
        padding: 28px 16px 50px;
        background: #eafaff;
    }

    .sky-preview-header,
    .sky-home {
        border-right: 2px solid var(--sky-line);
        border-left: 2px solid var(--sky-line);
    }

    .sky-preview-header {
        border-top: 2px solid var(--sky-line);
        border-radius: 30px 30px 0 0;
    }

    .sky-home {
        border-bottom: 2px solid var(--sky-line);
        border-radius: 0 0 30px 30px;
    }
}

/* ARIEL SKY STAGE 2 202607 */

.sky-anxieties {
    padding: 38px 14px 40px;
    background:
        linear-gradient(
            180deg,
            #fffdf8,
            #eefcff
        );
}

.sky-anxieties__scene {
    display: grid;
    margin-top: 24px;
    gap: 15px;
}

.sky-anxieties__column {
    display: grid;
    gap: 11px;
}

.sky-anxiety-bubble {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    min-height: 96px;
    padding: 13px;
    gap: 10px;
    background: var(--sky-white);
    border: 2px solid var(--sky-turquoise);
    border-radius: 25px;
}

.sky-anxiety-bubble--coral {
    border-color: var(--sky-coral);
}

.sky-anxiety-bubble__icon {
    display: grid;
    width: 44px;
    height: 44px;
    color: var(--sky-white);
    background: var(--sky-turquoise);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 900;
    text-align: center;
    place-items: center;
}

.sky-anxiety-bubble--coral .sky-anxiety-bubble__icon {
    background: var(--sky-coral);
}

.sky-anxiety-bubble h3 {
    margin: 0;
    color: var(--sky-turquoise-dark);
    font-size: 15px;
    line-height: 1.4;
}

.sky-anxiety-bubble--coral h3 {
    color: var(--sky-coral-dark);
}

.sky-anxiety-bubble p {
    margin: 5px 0 0;
    color: var(--sky-muted);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.6;
}

.sky-anxieties__characters {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1.3fr)
        minmax(0, 1fr);
    align-items: end;
    gap: 8px;
}

.sky-anxieties__character {
    display: grid;
    min-height: 126px;
    padding: 8px;
    color: var(--sky-turquoise-dark);
    background: var(--sky-turquoise-light);
    border: 2px solid var(--sky-turquoise);
    border-radius:
        46px
        46px
        20px
        20px;
    font-size: 8px;
    font-weight: 900;
    line-height: 1.5;
    text-align: center;
    place-items: center;
}

.sky-anxieties__character--umi {
    color: var(--sky-coral-dark);
    background: var(--sky-coral-light);
    border-color: var(--sky-coral);
}

.sky-anxieties__message {
    align-self: center;
    padding: 13px 8px;
    color: var(--sky-turquoise-dark);
    background: var(--sky-white);
    border: 2px solid var(--sky-line);
    border-radius: 22px;
    font-size: 10px;
    font-weight: 900;
    line-height: 1.6;
    text-align: center;
}

.sky-anxieties__closing {
    margin: 20px 0 0;
    padding: 12px;
    color: var(--sky-turquoise-dark);
    background: var(--sky-turquoise-light);
    border: 2px solid var(--sky-line);
    border-radius: 16px;
    font-size: 11px;
    font-weight: 900;
    text-align: center;
}

.sky-benefits {
    padding: 38px 14px 42px;
    background:
        linear-gradient(
            180deg,
            #ecfbff,
            #fff8ed
        );
}

.sky-benefits__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 23px;
    gap: 10px;
}

.sky-benefit-card {
    min-width: 0;
    padding: 15px 7px 13px;
    background: var(--sky-white);
    border: 2px solid var(--sky-line);
    border-radius: 20px;
    text-align: center;
}

.sky-benefit-card__icon {
    display: grid;
    width: 50px;
    height: 50px;
    margin: 0 auto 9px;
    color: var(--sky-white);
    background: var(--sky-turquoise);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 900;
    place-items: center;
}

.sky-benefit-card:nth-child(2n) .sky-benefit-card__icon {
    background: var(--sky-coral);
}

.sky-benefit-card h3 {
    margin: 0;
    color: var(--sky-turquoise-dark);
    font-size: 13px;
    line-height: 1.45;
}

.sky-benefit-card:nth-child(2n) h3 {
    color: var(--sky-coral-dark);
}

.sky-benefit-card p {
    margin: 4px 0 0;
    color: var(--sky-muted);
    font-size: 10px;
    font-weight: 800;
}

@media (min-width: 480px) {
    .sky-anxieties__scene {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 0.95fr)
            minmax(0, 1fr);
        align-items: center;
        gap: 10px;
    }

    .sky-anxieties__characters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sky-anxieties__message {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .sky-anxieties__character {
        grid-row: 2;
        min-height: 150px;
    }

    .sky-benefits__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* ARIEL SKY STAGE 3 202607 */

.sky-reasons {
    padding: 40px 14px 42px;
    background:
        linear-gradient(
            180deg,
            #fff8ed,
            #f3ffff
        );
}

.sky-reasons__grid {
    display: grid;
    margin-top: 24px;
    gap: 14px;
}

.sky-reason-card {
    display: grid;
    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);
    overflow: hidden;
    background: var(--sky-white);
    border: 2px solid var(--sky-line);
    border-radius: 24px;
}

.sky-reason-card--reverse .sky-reason-card__visual {
    grid-column: 2;
}

.sky-reason-card--reverse .sky-reason-card__content {
    grid-column: 1;
    grid-row: 1;
}

.sky-reason-card__visual {
    display: grid;
    min-height: 180px;
    padding: 12px;
    color: var(--sky-turquoise-dark);
    background: var(--sky-turquoise-light);
    font-size: 9px;
    font-weight: 900;
    line-height: 1.6;
    text-align: center;
    place-items: center;
}

.sky-reason-card__visual--woman {
    color: var(--sky-coral-dark);
    background: var(--sky-coral-light);
}

.sky-reason-card__visual--manager {
    color: var(--sky-brown);
    background:
        linear-gradient(
            180deg,
            #fff0bc,
            #fff8e4
        );
}

.sky-reason-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 20px 16px;
}

.sky-reason-card__number {
    margin: 0 0 4px;
    color: var(--sky-coral);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.sky-reason-card h3 {
    margin: 0;
    color: var(--sky-turquoise-dark);
    font-size: 19px;
    line-height: 1.45;
}

.sky-reason-card p:last-child {
    margin: 8px 0 0;
    color: var(--sky-muted);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.7;
}

.sky-guides {
    padding: 40px 14px 44px;
    background:
        linear-gradient(
            180deg,
            #edfaff,
            #fff9ef
        );
}

.sky-guides__grid {
    display: grid;
    margin-top: 24px;
    gap: 12px;
}

.sky-guide-card {
    padding: 19px 15px 17px;
    background: var(--sky-white);
    border: 2px solid var(--sky-line);
    border-radius: 22px;
    text-align: center;
}

.sky-guide-card--pay {
    border-color: var(--sky-coral);
}

.sky-guide-card__icon {
    display: grid;
    width: 56px;
    height: 56px;
    margin: 0 auto 10px;
    color: var(--sky-white);
    background: var(--sky-turquoise);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 900;
    place-items: center;
}

.sky-guide-card--pay .sky-guide-card__icon {
    background: var(--sky-coral);
}

.sky-guide-card h3 {
    margin: 0;
    color: var(--sky-turquoise-dark);
    font-size: 19px;
    line-height: 1.45;
}

.sky-guide-card--pay h3 {
    color: var(--sky-coral-dark);
}

.sky-guide-card > p {
    margin: 8px 0 0;
    color: var(--sky-muted);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.7;
}

.sky-guide-card__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 190px);
    min-height: 43px;
    margin: 16px auto 0;
    padding: 8px 15px;
    color: var(--sky-white);
    background: var(--sky-turquoise);
    border: 2px solid var(--sky-turquoise-dark);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.sky-guide-card__link--coral {
    background: var(--sky-coral);
    border-color: var(--sky-coral-dark);
}

.sky-guide-flow {
    display: grid;
    margin: 14px 0 0;
    padding: 0;
    gap: 7px;
    counter-reset: sky-flow;
    list-style: none;
}

.sky-guide-flow li {
    position: relative;
    min-height: 36px;
    padding: 8px 8px 8px 42px;
    color: var(--sky-brown);
    background: var(--sky-blue-light);
    border: 1px solid var(--sky-line);
    border-radius: 12px;
    font-size: 10px;
    font-weight: 800;
    text-align: left;
}

.sky-guide-flow li::before {
    position: absolute;
    top: 50%;
    left: 8px;
    display: grid;
    width: 25px;
    height: 25px;
    color: var(--sky-white);
    content: counter(sky-flow);
    counter-increment: sky-flow;
    background: var(--sky-turquoise);
    border-radius: 50%;
    font-size: 9px;
    transform: translateY(-50%);
    place-items: center;
}

.sky-guide-card__link:focus-visible {
    outline: 3px solid rgba(255, 227, 109, 0.92);
    outline-offset: 3px;
}

@media (min-width: 480px) {
    .sky-reasons__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sky-reason-card,
    .sky-reason-card--reverse {
        display: flex;
        flex-direction: column;
    }

    .sky-reason-card__visual {
        min-height: 150px;
    }

    .sky-reason-card__content {
        flex: 1;
        padding: 17px 13px 18px;
    }

    .sky-reason-card h3 {
        font-size: 16px;
    }

    .sky-reason-card p:last-child {
        font-size: 9px;
    }

    .sky-guides__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sky-guide-card {
        display: flex;
        flex-direction: column;
        min-width: 0;
        padding: 17px 9px 15px;
    }

    .sky-guide-card h3 {
        font-size: 16px;
    }

    .sky-guide-card > p {
        font-size: 9px;
    }

    .sky-guide-card__link {
        margin-top: auto;
    }
}

/* ARIEL SKY STAGE 4 202607 */

.sky-voices {
    padding: 40px 14px 42px;
    background:
        linear-gradient(
            180deg,
            #fff9ef,
            #f1fcff
        );
}

.sky-voices__grid {
    display: grid;
    margin-top: 24px;
    gap: 12px;
}

.sky-voice-card {
    padding: 18px 15px;
    background: var(--sky-white);
    border: 2px solid var(--sky-line);
    border-radius: 24px;
    text-align: center;
}

.sky-voice-card__avatar {
    display: grid;
    width: 66px;
    height: 66px;
    margin: 0 auto 9px;
    color: var(--sky-white);
    background: var(--sky-turquoise);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 900;
    place-items: center;
}

.sky-voice-card__avatar--weekend {
    background: var(--sky-coral);
}

.sky-voice-card__avatar--short {
    color: var(--sky-brown);
    background: var(--sky-yellow);
}

.sky-voice-card__style {
    margin: 0;
    color: var(--sky-coral);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.sky-voice-card h3 {
    margin: 5px 0 0;
    color: var(--sky-turquoise-dark);
    font-size: 16px;
    line-height: 1.45;
}

.sky-voice-card > p:last-child {
    margin: 8px 0 0;
    color: var(--sky-muted);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.7;
}

.sky-faq {
    padding: 40px 14px 44px;
    background:
        linear-gradient(
            180deg,
            #eefdff,
            #fffdf8
        );
}

.sky-faq__list {
    display: grid;
    margin-top: 24px;
    gap: 9px;
}

.sky-faq-item {
    overflow: hidden;
    background: var(--sky-white);
    border: 2px solid var(--sky-line);
    border-radius: 17px;
}

.sky-faq-item summary {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    min-height: 60px;
    padding: 10px 13px;
    gap: 10px;
    color: var(--sky-turquoise-dark);
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    list-style: none;
}

.sky-faq-item summary::-webkit-details-marker {
    display: none;
}

.sky-faq-item__mark,
.sky-faq-item__answer-mark {
    display: grid;
    width: 34px;
    height: 34px;
    color: var(--sky-white);
    background: var(--sky-turquoise);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 900;
    place-items: center;
}

.sky-faq-item__answer {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 12px 13px 14px;
    gap: 10px;
    background: var(--sky-blue-light);
    border-top: 1px solid var(--sky-line);
}

.sky-faq-item__answer-mark {
    background: var(--sky-coral);
}

.sky-faq-item__answer p {
    margin: 0;
    color: var(--sky-brown);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.7;
}

.sky-faq__link,
.sky-blog__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 250px);
    min-height: 46px;
    margin: 20px auto 0;
    padding: 8px 16px;
    color: var(--sky-white);
    background: var(--sky-turquoise);
    border: 2px solid var(--sky-turquoise-dark);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.sky-blog {
    padding: 40px 14px 46px;
    background:
        linear-gradient(
            180deg,
            #fffdf8,
            #eafaff
        );
}

.sky-blog__grid {
    display: grid;
    margin-top: 24px;
    gap: 13px;
}

.sky-blog-card {
    overflow: hidden;
    background: var(--sky-white);
    border: 2px solid var(--sky-line);
    border-radius: 22px;
}

.sky-blog-card__visual {
    display: grid;
    min-height: 145px;
    padding: 15px;
    color: var(--sky-brown);
    font-size: 10px;
    font-weight: 900;
    line-height: 1.6;
    text-align: center;
    place-items: center;
}

.sky-blog-card__visual--miyazaki {
    background:
        linear-gradient(
            180deg,
            #6bd9ff,
            #35bfcf 56%,
            #fff2c9 57%
        );
}

.sky-blog-card__visual--night {
    color: var(--sky-white);
    background:
        linear-gradient(
            180deg,
            #17356e,
            #567cad
        );
}

.sky-blog-card__visual--beginner {
    background:
        linear-gradient(
            180deg,
            #ffe5df,
            #fff8e8
        );
}

.sky-blog-card__content {
    padding: 15px 14px 17px;
}

.sky-blog-card__status {
    width: fit-content;
    margin: 0 0 6px;
    padding: 3px 8px;
    color: var(--sky-white);
    background: var(--sky-coral);
    border-radius: 999px;
    font-size: 8px;
    font-weight: 900;
}

.sky-blog-card h3 {
    margin: 0;
    color: var(--sky-turquoise-dark);
    font-size: 16px;
    line-height: 1.5;
}

.sky-blog-card__content > p:last-child {
    margin: 7px 0 0;
    color: var(--sky-muted);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.7;
}

.sky-faq__link:focus-visible,
.sky-blog__link:focus-visible,
.sky-faq-item summary:focus-visible {
    outline: 3px solid rgba(255, 227, 109, 0.92);
    outline-offset: 3px;
}

@media (min-width: 480px) {
    .sky-voices__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sky-voice-card {
        padding: 16px 9px;
    }

    .sky-voice-card h3 {
        font-size: 13px;
    }

    .sky-voice-card > p:last-child {
        font-size: 9px;
    }

    .sky-blog__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sky-blog-card__visual {
        min-height: 120px;
    }

    .sky-blog-card__content {
        padding: 13px 10px 15px;
    }

    .sky-blog-card h3 {
        font-size: 13px;
    }

    .sky-blog-card__content > p:last-child {
        font-size: 9px;
    }
}

/* ARIEL SKY STAGE 5 202607 */

.sky-final-cta {
    position: relative;
    overflow: hidden;
    color: var(--sky-white);
    background:
        linear-gradient(
            180deg,
            #24b3e8,
            #39c4df 62%,
            #8ce1ee 100%
        );
}

.sky-final-cta__inner {
    position: relative;
    z-index: 3;
    padding: 42px 14px 28px;
    text-align: center;
}

.sky-final-cta__eyebrow {
    width: fit-content;
    margin: 0 auto 7px;
    padding: 4px 11px;
    color: var(--sky-turquoise-dark);
    background: var(--sky-white);
    border: 2px solid var(--sky-white);
    border-radius: 999px;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.sky-final-cta h2 {
    margin: 0;
    color: var(--sky-white);
    font-size: 28px;
    line-height: 1.42;
}

.sky-final-cta__lead {
    margin: 11px 0 0;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.75;
}

.sky-final-cta__scene {
    display: grid;
    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(0, 1.16fr)
        minmax(0, 0.92fr);
    align-items: end;
    margin-top: 22px;
    gap: 7px;
}

.sky-final-cta__character {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    margin: 0;
    color: var(--sky-turquoise-dark);
}

.sky-final-cta__character--umi {
    color: var(--sky-coral-dark);
}

.sky-final-cta__character img {
    display: block;
    width: 100%;
    max-height: 178px;
    object-fit: contain;
}

.sky-final-cta__character figcaption {
    width: fit-content;
    max-width: 100%;
    margin-top: 4px;
    padding: 4px 7px;
    background: rgba(255, 255, 255, 0.94);
    border: 2px solid var(--sky-white);
    border-radius: 999px;
    font-size: 8px;
    font-weight: 900;
    line-height: 1.3;
    white-space: nowrap;
}

.sky-final-cta__message {
    align-self: center;
    padding: 12px 7px;
    color: var(--sky-turquoise-dark);
    background: var(--sky-white);
    border: 2px solid var(--sky-white);
    border-radius: 22px;
}

.sky-final-cta__message p {
    margin: 0;
    color: var(--sky-coral-dark);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.5;
}

.sky-final-cta__message ul {
    display: grid;
    margin: 10px 0 0;
    padding: 0;
    gap: 5px;
    list-style: none;
}

.sky-final-cta__message li {
    padding: 5px 4px;
    background: var(--sky-turquoise-light);
    border-radius: 999px;
    font-size: 8px;
    font-weight: 900;
}

.sky-final-cta__button {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    width: 100%;
    min-height: 74px;
    margin-top: 21px;
    padding: 10px 16px;
    gap: 9px;
    color: var(--sky-white);
    cursor: pointer;
    text-decoration: none;
    background: #13bd4a;
    border: 3px solid var(--sky-white);
    border-radius: 999px;
    font: inherit;
}

.sky-final-cta__line-icon {
    display: grid;
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 900;
    place-items: center;
}

.sky-final-cta__button-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.35;
}

.sky-final-cta__button-body small {
    font-size: 9px;
    font-weight: 800;
}

.sky-final-cta__button-body strong {
    margin-top: 2px;
    font-size: 18px;
    font-weight: 900;
}



.sky-final-cta__age {
    margin: 10px 0 0;
    font-size: 9px;
    font-weight: 800;
}

.sky-final-cta__sun {
    position: absolute;
    top: -54px;
    right: -48px;
    z-index: 1;
    width: 170px;
    height: 170px;
    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.94) 0,
            rgba(255, 238, 116, 0.62) 33%,
            rgba(255, 255, 255, 0) 71%
        );
    border-radius: 50%;
}

.sky-final-cta__cloud {
    position: absolute;
    z-index: 1;
    width: 150px;
    height: 54px;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 999px;
}

.sky-final-cta__cloud::before,
.sky-final-cta__cloud::after {
    position: absolute;
    content: "";
    background: inherit;
    border-radius: 50%;
}

.sky-final-cta__cloud::before {
    top: -29px;
    left: 24px;
    width: 64px;
    height: 64px;
}

.sky-final-cta__cloud::after {
    top: -18px;
    right: 18px;
    width: 48px;
    height: 48px;
}

.sky-final-cta__cloud--left {
    top: 76px;
    left: -108px;
}

.sky-final-cta__cloud--right {
    top: 110px;
    right: -105px;
}

.sky-final-cta__coast {
    position: relative;
    z-index: 2;
    height: 85px;
}

.sky-final-cta__sea {
    position: absolute;
    right: 0;
    bottom: 22px;
    left: 0;
    height: 63px;
    background:
        linear-gradient(
            180deg,
            #2bd0d6,
            #058db7
        );
}

.sky-final-cta__sea::after {
    position: absolute;
    top: 18px;
    right: 0;
    left: 0;
    height: 8px;
    content: "";
    background:
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 20px,
            rgba(255, 255, 255, 0.82) 21px,
            rgba(255, 255, 255, 0.82) 36px,
            transparent 37px,
            transparent 58px
        );
}

.sky-final-cta__beach {
    position: absolute;
    right: -20px;
    bottom: -25px;
    left: -20px;
    height: 59px;
    background: var(--sky-beige);
    border-radius: 50% 50% 0 0;
}

.sky-footer {
    color: #155f63;
    background-color: #f4fbfa;
    background-image:
        url("../images/sky/footer-miyazaki-townscape-bg.webp");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    border-top: 2px solid #b9e7e2;
}

.sky-footer__inner {
    width: min(100%, var(--sky-content));
    margin-inline: auto;
    padding: 29px 16px 27px;
}

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

.sky-footer__logo {
    margin: 0;
    color: #08777a;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 27px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.sky-footer__site-name {
    margin: 5px 0 0;
    color: #155f63;
    font-size: 13px;
    font-weight: 800;
}

.sky-footer__area {
    margin: 8px 0 0;
    color: #37787a;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.7;
}

.sky-footer__navigation {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 23px;
    gap: 8px;
}

.sky-footer__navigation-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 9px 7px;
    color: #155f63;
    background: #ffffff;
    border: 1px solid #c4e6e2;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.45;
    text-align: center;
    text-decoration: none;
}

.sky-footer__navigation-link:focus-visible {
    outline: 3px solid #55bbb5;
    outline-offset: 2px;
}

.sky-footer__line-area {
    margin-top: 20px;
}

.sky-footer__line-intro {
    margin: 0 0 9px;
    color: #37787a;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
}

.sky-footer__line-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 61px;
    padding: 10px 16px;
    color: #ffffff;
    background: #43bfb4;
    border: 2px solid #ffffff;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
    text-decoration: none;
}

.sky-footer__line-button small {
    display: block;
    font-size: 11px;
    font-weight: 700;
}

.sky-footer__line-button strong {
    display: block;
    margin-top: 2px;
    font-size: 15px;
    font-weight: 900;
}

.sky-footer__line-button:focus-visible {
    outline: 3px solid #168c83;
    outline-offset: 3px;
}

.sky-footer__age {
    margin: 19px 0 0;
    color: #37787a;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.5;
    text-align: center;
}

.sky-footer__copyright {
    margin: 13px 0 0;
    color: #56898b;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-align: center;
}


.sky-final-cta__button:focus-visible {
    outline: 3px solid rgba(255, 227, 109, 0.92);
    outline-offset: 3px;
}

@media (min-width: 480px) {
    .sky-final-cta__inner {
        padding-right: 24px;
        padding-left: 24px;
    }

    .sky-final-cta__character img {
        max-height: 215px;
    }

    .sky-final-cta__message p {
        font-size: 16px;
    }

    .sky-final-cta__message li {
        font-size: 9px;
    }

    .sky-footer__navigation {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ARIEL SKY STAGE 6 LAYOUT FIX 202607 */

:root {
    --sky-content: 720px;
}

.sky-hero__scene {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
    gap: 10px;
}

.sky-hero__copy {
    grid-column: 1 / -1;
    grid-row: 1;
    width: min(100%, 560px);
    margin-inline: auto;
    padding-inline: 5px;
}

.sky-character--manager {
    grid-column: 1;
    grid-row: 2;
}

.sky-character--umi {
    grid-column: 2;
    grid-row: 2;
}

.sky-hero__title {
    font-size: clamp(27px, 7.6vw, 45px);
    line-height: 1.3;
}

.sky-hero__title-intro,
.sky-hero__title-closing {
    display: block;
}

.sky-hero__title-main {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    margin: 8px 0 7px;
    gap: 0 0.25em;
    color: var(--sky-yellow);
    font-size: 1.2em;
    font-style: normal;
    line-height: 1.15;
}

.sky-hero__title-main span,
.sky-hero__title-main em {
    display: inline-block;
    font-style: normal;
    white-space: nowrap;
}

.sky-hero__title-main em {
    color: #fff071;
}

.sky-character__image {
    min-height: 185px;
}

.sky-work__list {
    gap: 11px;
}

.sky-footer {
    width: min(100%, var(--sky-content));
    margin-inline: auto;
}

@media (min-width: 520px) {
    .sky-work__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sky-work-card {
        display: flex;
        flex-direction: column;
        min-width: 0;
    }

    .sky-work-card__visual {
        width: 100%;
        min-height: 172px;
    }

    .sky-work-card__content {
        flex: 1;
        padding: 17px 12px 18px;
        text-align: center;
    }

    .sky-work-card__content h3 {
        font-size: 17px;
    }

    .sky-work-card__content p {
        font-size: 10px;
    }
}

@media (min-width: 640px) {
    .sky-hero__scene {
        grid-template-columns:
            minmax(0, 0.76fr)
            minmax(0, 1.48fr)
            minmax(0, 0.76fr);
        align-items: end;
        gap: 10px;
    }

    .sky-character--manager {
        grid-column: 1;
        grid-row: 1;
    }

    .sky-hero__copy {
        grid-column: 2;
        grid-row: 1;
        align-self: center;
        width: 100%;
        padding-inline: 0;
    }

    .sky-character--umi {
        grid-column: 3;
        grid-row: 1;
    }

    .sky-character__image {
        min-height: 210px;
    }

    .sky-character__speech {
        min-height: 62px;
        font-size: 10px;
    }

    .sky-hero__title {
        font-size: 34px;
    }

    .sky-hero__description {
        font-size: 10px;
    }
}

@media (min-width: 700px) {
    .sky-home {
        border-bottom: 0;
        border-radius: 0;
    }

    .sky-footer {
        border-right: 2px solid var(--sky-line);
        border-bottom: 2px solid var(--sky-line);
        border-left: 2px solid var(--sky-line);
        border-radius: 0 0 30px 30px;
    }
}

/* ARIEL SKY STAGE 7 OFFICIAL HERO IMAGES 202607 */

.sky-hero {
    background: #55c7ed;
}

.sky-hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
}

.sky-hero__cloud,
.sky-hero__sun,
.sky-hero__coast {
    display: none;
}

.sky-character__image,
.sky-character--umi .sky-character__image {
    display: block;
    min-height: 0;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.sky-character__image img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    object-position: center bottom;
}

/* ARIEL SKY STAGE 8 REFERENCE STYLE 202607 */

.sky-hero__inner {
    padding: 18px 8px 22px;
}

.sky-hero__eyebrow {
    margin-bottom: 10px;
    padding: 5px 11px;
    border-color: var(--sky-turquoise);
    font-size: 9px;
}

.sky-hero__scene {
    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(0, 1.28fr)
        minmax(0, 0.92fr);
    align-items: end;
    gap: 0;
    overflow: visible;
}

.sky-hero__copy {
    position: relative;
    z-index: 3;
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    width: 118%;
    margin-left: -9%;
    padding: 12px 4px 13px;
    background: rgba(255, 255, 255, 0.84);
    border: 2px solid rgba(255, 255, 255, 0.96);
    border-radius: 24px;
}

.sky-character--manager,
.sky-character--umi {
    z-index: 4;
    grid-row: 1;
    align-self: end;
    width: 160%;
    max-width: 210px;
}

.sky-character--manager {
    grid-column: 1;
    justify-self: start;
    margin-left: -46%;
}

.sky-character--umi {
    grid-column: 3;
    justify-self: end;
    margin-right: -46%;
}

.sky-character__speech {
    width: 72%;
    min-height: 46px;
    margin: 0 auto 3px;
    padding: 7px 4px;
    border-radius: 17px;
    font-size: 8px;
    line-height: 1.35;
}

.sky-character__image img {
    width: 100%;
    max-width: none;
}

.sky-character figcaption {
    display: none;
}

.sky-hero__title {
    color: var(--sky-turquoise-dark);
    font-family:
        "Hiragino Maru Gothic ProN",
        "Yu Gothic",
        "Noto Sans JP",
        sans-serif;
    font-size: clamp(14px, 4.1vw, 20px);
    font-weight: 900;
    line-height: 1.45;
}

.sky-hero__title-intro,
.sky-hero__title-closing {
    display: block;
    color: var(--sky-turquoise-dark);
}

.sky-hero__title strong,
.sky-hero__title-main {
    display: block;
    margin: 4px 0;
    color: var(--sky-turquoise-dark);
    font-size: 1.22em;
    font-style: normal;
    line-height: 1.28;
}

.sky-hero__title-main span,
.sky-hero__title-main em {
    display: inline;
    font-style: normal;
    white-space: normal;
}

.sky-hero__title-main em {
    color: var(--sky-coral-dark);
}

.sky-hero__description {
    margin-top: 8px;
    color: var(--sky-brown);
    font-size: 8.5px;
    font-weight: 800;
    line-height: 1.6;
}

.sky-hero__actions {
    width: min(100%, 570px);
    margin: 12px auto 0;
    gap: 8px;
}

.sky-button {
    min-height: 52px;
    padding: 8px;
    border-width: 2px;
    font-size: 12px;
}

.sky-button__icon {
    width: 30px;
    height: 30px;
}

.sky-hero__note {
    width: fit-content;
    max-width: 100%;
    margin: 10px auto 0;
    padding: 4px 10px;
    color: var(--sky-turquoise-dark);
    background: rgba(255, 255, 255, 0.90);
    border-radius: 999px;
    font-size: 8px;
}

.sky-section-heading {
    position: relative;
    padding: 7px 4px 9px;
}

.sky-section-heading__decoration {
    margin-bottom: 1px;
    font-size: 8px;
}

.sky-section-heading h2 {
    font-family:
        "Hiragino Maru Gothic ProN",
        "Yu Gothic",
        "Noto Sans JP",
        sans-serif;
    font-size: clamp(20px, 5.8vw, 28px);
    font-weight: 900;
    line-height: 1.35;
}

.sky-section-heading h2::before {
    margin-right: 0.35em;
    color: var(--sky-coral);
    content: "✿";
    font-size: 0.72em;
}

.sky-section-heading h2::after {
    margin-left: 0.35em;
    color: var(--sky-coral);
    content: "✿";
    font-size: 0.72em;
}

.sky-section-heading > p:last-child {
    margin-top: 5px;
    font-size: 10px;
}

.sky-work {
    padding: 28px 8px 34px;
    background-color: #f2fffd;
    background-image:
        radial-gradient(
            circle at 4px 4px,
            rgba(32, 170, 154, 0.08) 1.5px,
            transparent 1.6px
        );
    background-size: 20px 20px;
}

.sky-work__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 16px;
    gap: 7px;
}

.sky-work-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border-radius: 16px;
}

.sky-work-card__number {
    display: none;
}

.sky-work-card__visual {
    width: 100%;
    min-height: 138px;
    padding: 42px 5px 8px;
}

.sky-work-card__placeholder {
    width: 82px;
    max-width: 100%;
    height: 82px;
    padding: 6px;
    border-radius: 18px;
    font-size: 8px;
}

.sky-work-card__moon {
    top: 48px;
    right: 8px;
    width: 28px;
    height: 28px;
}

.sky-work-card__moon::after {
    left: 9px;
    width: 28px;
    height: 28px;
}

.sky-work-card__content {
    flex: 1;
    padding: 9px 6px 11px;
    text-align: center;
}

.sky-work-card__content h3 {
    position: absolute;
    top: 7px;
    right: 5px;
    left: 5px;
    z-index: 4;
    margin: 0;
    padding: 5px 2px;
    color: var(--sky-white);
    background: var(--sky-turquoise);
    border-radius: 999px;
    font-size: 10px;
    line-height: 1.3;
}

.sky-work-card__content p {
    margin: 0;
    font-size: 8px;
    line-height: 1.6;
}

.sky-anxieties,
.sky-benefits,
.sky-reasons,
.sky-guides,
.sky-voices,
.sky-faq,
.sky-blog {
    padding-right: 10px;
    padding-left: 10px;
}

.sky-anxiety-bubble,
.sky-benefit-card,
.sky-reason-card,
.sky-guide-card,
.sky-voice-card,
.sky-faq-item,
.sky-blog-card {
    border-radius: 18px;
}

@media (max-width: 419px) {
    .sky-hero__inner {
        padding-right: 6px;
        padding-left: 6px;
    }

    .sky-character--manager,
    .sky-character--umi {
        width: 166%;
        max-width: 190px;
    }

    .sky-character--manager {
        margin-left: -52%;
    }

    .sky-character--umi {
        margin-right: -52%;
    }

    .sky-character__speech {
        width: 68%;
        font-size: 7.5px;
    }

    .sky-hero__copy {
        width: 122%;
        margin-left: -11%;
        padding-right: 2px;
        padding-left: 2px;
    }

    .sky-hero__title {
        font-size: 13.5px;
    }

    .sky-hero__description {
        font-size: 7.5px;
    }

    .sky-work-card__content h3 {
        font-size: 9px;
    }
}

@media (min-width: 640px) {
    .sky-hero__inner {
        padding-right: 18px;
        padding-left: 18px;
    }

    .sky-character--manager,
    .sky-character--umi {
        width: 122%;
        max-width: 210px;
    }

    .sky-character--manager {
        margin-left: -16%;
    }

    .sky-character--umi {
        margin-right: -16%;
    }

    .sky-character__speech {
        width: 88%;
        font-size: 9px;
    }

    .sky-hero__copy {
        width: 108%;
        margin-left: -4%;
        padding: 17px 10px 18px;
    }

    .sky-hero__title {
        font-size: 19px;
    }

    .sky-hero__description {
        font-size: 9px;
    }
}

/* ARIEL SKY STAGE 9 COMPOSITE HERO 202607 */

.sky-hero--composite {
    position: relative;
    overflow: hidden;
    background: #eafcff;
}

.sky-hero--composite .sky-hero__inner {
    position: relative;
    padding: 0;
}

.sky-hero--composite .sky-hero__inner::before {
    display: block;
    padding-top: 112%;
    content: "";
}

.sky-hero--composite .sky-hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    pointer-events: none;
}

.sky-hero--composite .sky-hero__eyebrow,
.sky-hero--composite .sky-hero__scene,
.sky-hero--composite .sky-hero__note {
    display: none !important;
}

.sky-hero--composite .sky-hero__actions {
    position: absolute;
    right: 14px;
    bottom: 18px;
    left: 14px;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: auto;
    margin: 0;
}

.sky-hero--composite .sky-button {
    min-height: 54px;
    padding: 8px 10px;
    border-width: 2px;
    font-size: 12px;
}

.sky-hero--composite .sky-button__icon {
    width: 28px;
    height: 28px;
}

@media (max-width: 389px) {
    .sky-hero--composite .sky-hero__inner::before {
        padding-top: 118%;
    }

    .sky-hero--composite .sky-hero__actions {
        right: 10px;
        bottom: 12px;
        left: 10px;
        gap: 8px;
    }

    .sky-hero--composite .sky-button {
        min-height: 50px;
        padding: 7px 8px;
        font-size: 11px;
    }

    .sky-hero--composite .sky-button__icon {
        width: 24px;
        height: 24px;
    }
}

@media (min-width: 520px) {
    .sky-hero--composite .sky-hero__inner::before {
        padding-top: 104%;
    }

    .sky-hero--composite .sky-hero__actions {
        right: 18px;
        bottom: 22px;
        left: 18px;
        gap: 12px;
    }
}

/* ARIEL SKY STAGE 10 HERO RATIO FIX 202607 */

.sky-hero--composite {
    background: #fddda9;
}

.sky-hero--composite .sky-hero__inner {
    background: #fddda9;
}

.sky-hero--composite .sky-hero__inner::before {
    padding-top: calc(122.99% + 68px);
}

.sky-hero--composite .sky-hero__background {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 1131 / 1391;
    object-fit: contain;
    object-position: center top;
}

.sky-hero--composite .sky-hero__actions {
    right: 10px;
    bottom: 14px;
    left: 10px;
    gap: 8px;
}

.sky-hero--composite .sky-button {
    min-height: 54px;
}

@media (max-width: 389px) {
    .sky-hero--composite .sky-hero__inner::before {
        padding-top: calc(122.99% + 64px);
    }

    .sky-hero--composite .sky-hero__actions {
        right: 8px;
        bottom: 10px;
        left: 8px;
        gap: 7px;
    }

    .sky-hero--composite .sky-button {
        min-height: 50px;
        font-size: 10px;
    }
}

@media (min-width: 520px) {
    .sky-hero--composite .sky-hero__inner::before {
        padding-top: calc(122.99% + 78px);
    }

    .sky-hero--composite .sky-hero__actions {
        right: 24px;
        bottom: 14px;
        left: 24px;
        gap: 12px;
    }

    .sky-hero--composite .sky-button {
        min-height: 58px;
        font-size: 14px;
    }
}


/* ARIEL SKY STAGE 11 HERO VISIBILITY FIX 202607 */

.sky-hero--composite .sky-hero__inner {
    background: transparent;
}

/* ARIEL SKY STAGE 12 BUTTONS OVER IMAGE 202607 */

.sky-hero--composite .sky-hero__inner::before {
    padding-top: 122.99%;
}

.sky-hero--composite .sky-hero__actions {
    right: 10px;
    bottom: 12px;
    left: 10px;
    z-index: 5;
    gap: 8px;
}

.sky-hero--composite .sky-button {
    min-height: 54px;
}

@media (max-width: 389px) {
    .sky-hero--composite .sky-hero__inner::before {
        padding-top: 122.99%;
    }

    .sky-hero--composite .sky-hero__actions {
        right: 8px;
        bottom: 10px;
        left: 8px;
        gap: 7px;
    }

    .sky-hero--composite .sky-button {
        min-height: 50px;
        font-size: 10px;
    }
}

@media (min-width: 520px) {
    .sky-hero--composite .sky-hero__inner::before {
        padding-top: 122.99%;
    }

    .sky-hero--composite .sky-hero__actions {
        right: 24px;
        bottom: 16px;
        left: 24px;
        gap: 12px;
    }

    .sky-hero--composite .sky-button {
        min-height: 58px;
        font-size: 14px;
    }
}

/* ARIEL SKY STAGE 13 BUTTON STYLE TUNE 202607 */

.sky-hero--composite .sky-button {
    border-width: 2px;
    border-style: solid;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.sky-hero--composite .sky-button--line {
    color: #ffffff;
    border-color: #ffffff;
    background-color: #20c95b;
    background-image: linear-gradient(
        180deg,
        #37db6f 0%,
        #21c55d 52%,
        #19b14f 100%
    );
}

.sky-hero--composite .sky-button--line .sky-button__icon {
    color: #20c95b;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.42);
}

.sky-hero--composite .sky-button--coral {
    color: #ffffff;
    border-color: #ffffff;
    background-color: #ee8f86;
    background-image: linear-gradient(
        180deg,
        #f4a29a 0%,
        #ee8f86 54%,
        #e78078 100%
    );
}

.sky-hero--composite .sky-button--coral .sky-button__icon {
    color: #ea867d;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.42);
}

/* ARIEL SKY STAGE 14 WORK CARD IMAGES 202607 */

.sky-work-card__visual {
    display: block;
    min-height: 138px;
    padding: 0;
    overflow: hidden;
}

.sky-work-card__image {
    display: block;
    width: 100%;
    height: 138px;
    object-fit: cover;
    object-position: center center;
}


/* ARIEL SKY STAGE 15 WORK CARD MOBILE READABILITY 202607 */

.sky-work {
    padding-right: 14px;
    padding-left: 14px;
}

.sky-work__list {
    grid-template-columns: minmax(0, 1fr);
    width: min(100%, 400px);
    margin: 18px auto 0;
    gap: 18px;
}

.sky-work-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border-radius: 20px;
}

.sky-work-card__visual {
    display: block;
    width: 100%;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.sky-work-card__image {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    object-position: center center;
}

.sky-work-card__content {
    flex: 1;
    padding: 14px 16px 17px;
    text-align: center;
}

.sky-work-card__content h3 {
    position: absolute;
    top: 10px;
    right: 12px;
    left: 12px;
    z-index: 4;
    margin: 0;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 15px;
    line-height: 1.35;
}

.sky-work-card__content p {
    margin: 0;
    font-size: 12px;
    line-height: 1.75;
}

@media (min-width: 640px) {
    .sky-work {
        padding-right: 10px;
        padding-left: 10px;
    }

    .sky-work__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
        gap: 10px;
    }

    .sky-work-card {
        border-radius: 18px;
    }

    .sky-work-card__content {
        padding: 10px 9px 13px;
    }

    .sky-work-card__content h3 {
        top: 7px;
        right: 6px;
        left: 6px;
        padding: 5px 4px;
        font-size: 11px;
    }

    .sky-work-card__content p {
        font-size: 9px;
        line-height: 1.65;
    }
}

/* ARIEL SKY STAGE 16 SITE CONTENT WIDTH 520PX 202607 */

:root {
    --sky-content: 520px;
}

.sky-preview-header {
    width: min(100%, var(--sky-content));
    margin-right: auto;
    margin-left: auto;
}

/* ARIEL SKY STAGE 17 WORK HORIZONTAL CARDS 202607 */

.sky-work__list {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    margin: 18px auto 0;
    gap: 14px;
}

.sky-work-card {
    display: grid;
    grid-template-columns:
        42%
        minmax(0, 1fr);
    align-items: stretch;
    min-width: 0;
    border-radius: 18px;
}

.sky-work-card__visual {
    display: block;
    align-self: center;
    width: 100%;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.sky-work-card__image {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    object-position: center center;
}

.sky-work-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 13px 12px;
    text-align: left;
}

.sky-work-card__content h3 {
    position: static;
    width: 100%;
    margin: 0;
    padding: 6px 8px;
    color: var(--sky-white);
    background: var(--sky-turquoise);
    border-radius: 999px;
    font-size: 13px;
    line-height: 1.35;
    text-align: center;
}

.sky-work-card__content p {
    margin: 9px 0 0;
    color: var(--sky-muted);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.7;
    text-align: left;
}

@media (max-width: 359px) {
    .sky-work-card {
        grid-template-columns:
            40%
            minmax(0, 1fr);
    }

    .sky-work-card__content {
        padding: 10px 9px;
    }

    .sky-work-card__content h3 {
        padding: 5px 5px;
        font-size: 11px;
    }

    .sky-work-card__content p {
        margin-top: 7px;
        font-size: 10px;
        line-height: 1.6;
    }
}

/* ARIEL SKY STAGE 18 WORK CARD SIZE ADJUST 202607 */

.sky-work__list {
    gap: 16px;
}

.sky-work-card {
    min-height: 176px;
    grid-template-columns:
        41%
        minmax(0, 1fr);
}

.sky-work-card__visual {
    min-height: 168px;
}

.sky-work-card__content {
    padding: 16px 14px;
}

.sky-work-card__content h3 {
    padding: 7px 10px;
    font-size: 14px;
    line-height: 1.4;
}

.sky-work-card__content p {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.8;
}

@media (max-width: 359px) {
    .sky-work-card {
        min-height: 160px;
        grid-template-columns:
            40%
            minmax(0, 1fr);
    }

    .sky-work-card__visual {
        min-height: 152px;
    }

    .sky-work-card__content {
        padding: 12px 10px;
    }

    .sky-work-card__content h3 {
        padding: 6px 6px;
        font-size: 12px;
    }

    .sky-work-card__content p {
        margin-top: 8px;
        font-size: 11px;
        line-height: 1.7;
    }
}

/* ARIEL SKY STAGE 19 WORK COMPOSITE IMAGES 202607 */

.sky-work__list {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    margin: 18px auto 0;
    gap: 16px;
}

.sky-work-card {
    position: relative;
    display: block;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    background: transparent;
    border: 0;
    border-radius: 20px;
}

.sky-work-card__visual {
    display: block;
    width: 100%;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    aspect-ratio: 2 / 1;
}

.sky-work-card__image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 1;
    object-fit: contain;
    object-position: center center;
}

/*
 * The text remains available to screen readers,
 * while the accepted image supplies the visible copy.
 */
.sky-work-card__content {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    border: 0;
    white-space: nowrap;
}

/* ARIEL SKY STAGE 20 WORK NIGHT DETAIL LIGHTBOX 202607 */

.sky-work-detail-trigger {
    position: relative;
    appearance: none;
    width: 100%;
    margin: 0;
    color: inherit;
    cursor: pointer;
    background: transparent;
    border: 0;
    border-radius: 20px;
    font: inherit;
    text-align: inherit;
}

.sky-work-detail-trigger__label {
    position: absolute;
    right: 8px;
    bottom: 8px;
    z-index: 2;
    padding: 4px 9px;
    color: var(--sky-turquoise-dark);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--sky-line);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    line-height: 1.4;
}

.sky-work-detail-trigger:focus-visible,
.sky-work-detail-dialog__close:focus-visible {
    outline: 3px solid rgba(255, 227, 109, 0.96);
    outline-offset: 3px;
}

html.sky-work-detail-open,
html.sky-work-detail-open body {
    overflow: hidden;
}

.sky-work-detail-dialog {
    position: fixed;
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    color: var(--sky-brown);
    background: transparent;
    border: 0;
    overscroll-behavior: contain;
}

.sky-work-detail-dialog::backdrop {
    background: rgba(8, 49, 58, 0.76);
}

.sky-work-detail-dialog__panel {
    width: min(100%, var(--sky-content));
    min-height: 100dvh;
    margin: 0 auto;
    padding: 10px 10px 24px;
    background: var(--sky-off-white);
}

.sky-work-detail-dialog__close {
    position: sticky;
    top: 8px;
    z-index: 3;
    display: grid;
    width: 46px;
    height: 46px;
    margin: 0 0 8px auto;
    padding: 0;
    color: var(--sky-white);
    cursor: pointer;
    background: var(--sky-turquoise-dark);
    border: 2px solid var(--sky-white);
    border-radius: 50%;
    font: inherit;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    place-items: center;
}

.sky-work-detail-dialog__image {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    background: var(--sky-white);
    border: 2px solid var(--sky-line);
    border-radius: 18px;
}

@media (max-width: 359px) {
    .sky-work-detail-trigger__label {
        right: 6px;
        bottom: 6px;
        padding: 3px 7px;
        font-size: 9px;
    }

    .sky-work-detail-dialog__panel {
        padding-right: 7px;
        padding-left: 7px;
    }
}


/* ARIEL SKY STAGE 21 WORK DETAIL LABEL POSITION 202607 */

.sky-work-detail-trigger__label {
    right: auto;
    left: 10px;
    bottom: 10px;
}

@media (max-width: 359px) {
    .sky-work-detail-trigger__label {
        right: auto;
        left: 7px;
        bottom: 7px;
    }
}


/* ARIEL SKY STAGE 23 APPROVED WORK BACKGROUND IMAGE 202607 */

.sky-work {
    position: relative;
    overflow: hidden;
    background-color: #f5fcfa;
    background-image: url(
        "/wp-content/themes/ariel-recruit-official/assets/images/sky/work-section-bg.png?v=1784790994"
    );
    background-position: center top;
    background-size: 100% auto;
    background-repeat: repeat-y;
    border: 0;
    border-radius: 0;
}

.sky-work::before {
    content: none;
    display: none;
    background: none;
}

.sky-work > .sky-section-heading,
.sky-work > .sky-work__list {
    position: relative;
    z-index: 1;
}

/* ARIEL SKY STAGE 25 ANXIETIES VISUAL START 202607 */

.sky-anxieties {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: #dff4ff;
    border: 0;
    border-radius: 0;
}

.sky-anxieties__visual {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.sky-anxieties__image {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

.sky-anxieties__screen-reader {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    border: 0;
    white-space: nowrap;
}

/* ARIEL SKY STAGE 25 ANXIETIES VISUAL END 202607 */

/* ARIEL SKY STAGE 26 BENEFITS POPUP START 20260724 */

.sky-benefits {
    position: relative;
    padding-top: 36px;
    padding-bottom: 42px;
    background:
        linear-gradient(
            180deg,
            #ecfbff 0%,
            #fff8ed 100%
        );
}

.sky-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
    gap: 8px;
}

.sky-benefits__item {
    min-width: 0;
}

.sky-benefits__button {
    display: grid;
    align-content: start;
    width: 100%;
    min-height: 128px;
    padding: 10px 4px 9px;
    color: inherit;
    background: var(--sky-white);
    border: 2px solid var(--sky-line);
    border-radius: 18px;
    text-align: center;
    appearance: none;
    -webkit-appearance: none;
}

.sky-benefits__icon {
    display: grid;
    width: 42px;
    height: 42px;
    margin: 0 auto 8px;
    color: var(--sky-turquoise-dark);
    background: #f5feff;
    border: 2px solid #7ed9e6;
    border-radius: 13px;
    place-items: center;
}

.sky-benefits__item:nth-child(2n) .sky-benefits__icon {
    color: var(--sky-coral-dark);
    background: #fff5f1;
    border-color: #f2b29f;
}

.sky-benefits__icon svg {
    width: 23px;
    height: 23px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.sky-benefits__title {
    display: block;
    color: var(--sky-turquoise-dark);
    font-size: 11px;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: 0.01em;
}

.sky-benefits__item:nth-child(2n) .sky-benefits__title {
    color: var(--sky-coral-dark);
}

.sky-benefits__subtitle {
    display: block;
    margin-top: 4px;
    color: var(--sky-muted);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.35;
}

.sky-benefits__button:focus-visible,
.sky-benefits-dialog__close:focus-visible {
    outline: 2px solid var(--sky-coral);
    outline-offset: 2px;
}

.sky-benefits-dialog {
    width: min(calc(100% - 28px), 420px);
    max-width: 420px;
    padding: 0;
    background: transparent;
    border: 0;
}

.sky-benefits-dialog::backdrop {
    background: rgba(49, 86, 101, 0.45);
}

.sky-benefits-dialog__panel {
    position: relative;
    padding: 20px 16px 18px;
    background: #fffefb;
    border: 2px solid var(--sky-line);
    border-radius: 22px;
}

.sky-benefits-dialog__close {
    position: absolute;
    top: 10px;
    right: 10px;
    display: grid;
    width: 34px;
    height: 34px;
    margin: 0;
    color: var(--sky-turquoise-dark);
    background: #f3fbfd;
    border: 2px solid var(--sky-line);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    place-items: center;
    appearance: none;
    -webkit-appearance: none;
}

.sky-benefits-dialog__eyebrow {
    margin: 0 36px 6px 0;
    color: var(--sky-coral);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.sky-benefits-dialog h3 {
    margin: 0;
    color: var(--sky-turquoise-dark);
    font-family:
        "Hiragino Maru Gothic ProN",
        "Yu Gothic",
        "Noto Sans JP",
        sans-serif;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.4;
}

.sky-benefits-dialog__lead {
    margin: 12px 0 0;
    color: var(--sky-turquoise-dark);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.8;
}

.sky-benefits-dialog h3 + p + p,
.sky-benefits-dialog h3 + p + p + p {
    margin: 10px 0 0;
    color: var(--sky-muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.9;
}

@media (min-width: 480px) {
    .sky-benefits__grid {
        gap: 10px;
    }

    .sky-benefits__button {
        min-height: 138px;
        padding: 12px 6px 11px;
    }

    .sky-benefits__icon {
        width: 48px;
        height: 48px;
        margin-bottom: 10px;
    }

    .sky-benefits__icon svg {
        width: 26px;
        height: 26px;
    }

    .sky-benefits__title {
        font-size: 12px;
    }

    .sky-benefits__subtitle {
        font-size: 10px;
    }

    .sky-benefits-dialog__panel {
        padding: 22px 18px 20px;
    }
}

@media (max-width: 359px) {
    .sky-benefits__grid {
        gap: 6px;
    }

    .sky-benefits__button {
        min-height: 120px;
        padding: 9px 3px 8px;
    }

    .sky-benefits__icon {
        width: 38px;
        height: 38px;
    }

    .sky-benefits__icon svg {
        width: 21px;
        height: 21px;
    }

    .sky-benefits__title {
        font-size: 10px;
    }

    .sky-benefits__subtitle {
        font-size: 9px;
    }

    .sky-benefits-dialog h3 {
        font-size: 20px;
    }

    .sky-benefits-dialog__lead {
        font-size: 12px;
    }
}

/* ARIEL SKY STAGE 26 BENEFITS POPUP END 20260724 */

/* ARIEL SKY STAGE 27 BENEFITS DIALOG STATE START 20260724 */

html.sky-benefits-dialog-open,
html.sky-benefits-dialog-open body {
    overflow: hidden;
}

.sky-benefits-dialog[open] {
    max-height: calc(100dvh - 28px);
    margin: auto;
    overflow-x: hidden;
    overflow-y: auto;
}

/* ARIEL SKY STAGE 27 BENEFITS DIALOG STATE END 20260724 */

/* ARIEL SKY STAGE 28 BENEFITS IMAGE CARDS START 20260724 */

.sky-benefits__button {
    display: block;
    width: 100%;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    color: inherit;
    background: transparent;
    border: 0;
    border-radius: 18px;
    line-height: 0;
    text-align: initial;
    appearance: none;
    -webkit-appearance: none;
}

.sky-benefits__image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 0;
    padding: 0;
    object-fit: cover;
    border: 0;
    border-radius: 18px;
}

.sky-benefits__button:focus-visible {
    outline: 3px solid var(--sky-coral);
    outline-offset: 3px;
}

/* ARIEL SKY STAGE 28 BENEFITS IMAGE CARDS END 20260724 */

/* ARIEL SKY STAGE 29 BENEFITS BACKGROUND START 20260724 */

.sky-benefits {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #f8fcfb;
}

.sky-benefits::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.56),
            rgba(255, 253, 249, 0.56)
        ),
        url("../images/sky/benefits-section-bg.webp?v=1784884244");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    content: "";
    pointer-events: none;
}

.sky-benefits > .sky-section-heading,
.sky-benefits > .sky-benefits__grid {
    position: relative;
    z-index: 1;
}

/* ARIEL SKY STAGE 29 BENEFITS BACKGROUND END 20260724 */

/* ARIEL SKY STAGE 30 REASONS IMAGE DIALOG START 20260724 */

.sky-reasons {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-top: 38px;
    padding-bottom: 44px;
    background:
        linear-gradient(
            180deg,
            #f8fcfb 0%,
            #eefcff 52%,
            #fdfefd 100%
        );
}

.sky-reasons__swipe-guide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: calc(100% - 20px);
    margin: 15px auto 0;
    padding: 7px 13px;
    gap: 9px;
    color: var(--sky-turquoise-dark);
    background: rgba(255, 255, 255, 0.96);
    border: 2px solid var(--sky-line);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.4;
    text-align: center;
}

.sky-reasons__swipe-arrow {
    flex: 0 0 auto;
    color: var(--sky-coral);
    font-size: 18px;
    line-height: 1;
}

.sky-reasons__rail {
    display: flex;
    width: 100%;
    margin-top: 14px;
    padding: 0 14% 7px 0;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.sky-reasons__rail::-webkit-scrollbar {
    display: none;
}

.sky-reasons__button {
    display: block;
    flex: 0 0 86%;
    width: auto;
    min-width: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    color: inherit;
    cursor: pointer;
    background: transparent;
    border: 0;
    border-radius: 22px;
    line-height: 0;
    text-align: initial;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    appearance: none;
    -webkit-appearance: none;
}

.sky-reasons__image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 0;
    object-fit: cover;
    border: 0;
    border-radius: 22px;
}

.sky-reasons__button:focus-visible,
.sky-reasons-dialog__close:focus-visible {
    outline: 3px solid var(--sky-coral);
    outline-offset: 3px;
}

.sky-reasons-dialog {
    width: min(calc(100% - 28px), 420px);
    max-width: 420px;
    padding: 0;
    background: transparent;
    border: 0;
}

.sky-reasons-dialog::backdrop {
    background: rgba(49, 86, 101, 0.48);
}

.sky-reasons-dialog__panel {
    position: relative;
    padding: 22px 17px 20px;
    background: #fffefb;
    border: 2px solid var(--sky-line);
    border-radius: 22px;
}

.sky-reasons-dialog__close {
    position: absolute;
    top: 10px;
    right: 10px;
    display: grid;
    width: 36px;
    height: 36px;
    margin: 0;
    padding: 0;
    color: var(--sky-turquoise-dark);
    cursor: pointer;
    background: #f1fbfd;
    border: 2px solid var(--sky-line);
    border-radius: 999px;
    font: inherit;
    font-size: 16px;
    font-weight: 900;
    place-items: center;
    appearance: none;
    -webkit-appearance: none;
}

.sky-reasons-dialog__eyebrow {
    margin: 0 42px 6px 0;
    color: var(--sky-coral);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.sky-reasons-dialog h3 {
    margin: 0;
    padding-right: 34px;
    color: var(--sky-turquoise-dark);
    font-family:
        "Hiragino Maru Gothic ProN",
        "Yu Gothic",
        "Noto Sans JP",
        sans-serif;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.45;
}

.sky-reasons-dialog__lead {
    margin: 14px 0 0;
    color: var(--sky-coral-dark);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.8;
}

.sky-reasons-dialog__lead + p,
.sky-reasons-dialog__lead + p + p {
    margin: 10px 0 0;
    color: var(--sky-muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.9;
}

html.sky-reasons-dialog-open,
html.sky-reasons-dialog-open body {
    overflow: hidden;
}

.sky-reasons-dialog[open] {
    max-height: calc(100dvh - 28px);
    margin: auto;
    overflow-x: hidden;
    overflow-y: auto;
}

@media (min-width: 480px) {
    .sky-reasons__rail {
        padding-right: 20%;
        gap: 15px;
    }

    .sky-reasons__button {
        flex-basis: 80%;
    }

    .sky-reasons__swipe-guide {
        font-size: 12px;
    }

    .sky-reasons-dialog__panel {
        padding: 24px 20px 22px;
    }
}

/* ARIEL SKY STAGE 30 REASONS IMAGE DIALOG END 20260724 */

/* ARIEL SKY STAGE 33 REASONS DESKTOP DRAG START 20260724 */

.sky-reasons__image {
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

@media (hover: hover) and (pointer: fine) {
    .sky-reasons__rail {
        cursor: grab;
    }

    .sky-reasons__rail.is-dragging {
        cursor: grabbing;
        scroll-snap-type: none;
        user-select: none;
        -webkit-user-select: none;
    }
}

/* ARIEL SKY STAGE 33 REASONS DESKTOP DRAG END 20260724 */

/* ARIEL SKY STAGE 34 REASONS BACKGROUND START 20260724 */

.sky-reasons {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #f8fcfb;
}

.sky-reasons::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.18),
            rgba(248, 253, 252, 0.24)
        ),
        url("../images/sky/reasons-section-bg.webp?v=1784897283");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    pointer-events: none;
}

.sky-reasons > .sky-section-heading,
.sky-reasons > .sky-reasons__swipe-guide,
.sky-reasons > .sky-reasons__rail {
    position: relative;
    z-index: 1;
}

/* ARIEL SKY STAGE 34 REASONS BACKGROUND END 20260724 */

/* ARIEL SKY STAGE 35 GUIDES IMAGE DIALOG START 20260726 */

.sky-guides {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-top: 40px;
    padding-bottom: 46px;
    background:
        linear-gradient(
            180deg,
            #f2fcff 0%,
            #fffaf2 100%
        );
}

.sky-guides__list {
    position: relative;
    z-index: 1;
    display: grid;
    margin-top: 22px;
    gap: 14px;
}

.sky-guides__visual-button {
    display: block;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    color: inherit;
    cursor: pointer;
    background: transparent;
    border: 0;
    border-radius: 20px;
    line-height: 0;
    text-align: initial;
    touch-action: manipulation;
    appearance: none;
    -webkit-appearance: none;
}

.sky-guides__image {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    object-fit: contain;
    border: 0;
    border-radius: 20px;
}

.sky-guides__visual-button:focus-visible,
.sky-guides-dialog__close:focus-visible {
    outline: 3px solid var(--sky-coral);
    outline-offset: 3px;
}

.sky-guides-dialog {
    width: min(calc(100% - 24px), 440px);
    max-width: 440px;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
}

.sky-guides-dialog::backdrop {
    background: rgba(49, 86, 101, 0.48);
}

.sky-guides-dialog__panel {
    position: relative;
    padding: 23px 17px 20px;
    background: #fffefb;
    border: 2px solid var(--sky-line);
    border-radius: 22px;
}

.sky-guides-dialog__close {
    position: absolute;
    top: 10px;
    right: 10px;
    display: grid;
    width: 36px;
    height: 36px;
    margin: 0;
    padding: 0;
    color: var(--sky-turquoise-dark);
    cursor: pointer;
    background: #f1fbfd;
    border: 2px solid var(--sky-line);
    border-radius: 999px;
    font: inherit;
    font-size: 16px;
    font-weight: 900;
    place-items: center;
    appearance: none;
    -webkit-appearance: none;
}

.sky-guides-dialog__eyebrow {
    margin: 0 42px 6px 0;
    color: var(--sky-coral);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.sky-guides-dialog h3 {
    margin: 0;
    padding-right: 38px;
    color: var(--sky-turquoise-dark);
    font-family:
        "Hiragino Maru Gothic ProN",
        "Yu Gothic",
        "Noto Sans JP",
        sans-serif;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.45;
}

.sky-guides-dialog__lead {
    margin: 14px 0 0;
    color: var(--sky-coral-dark);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.8;
}

.sky-guides-dialog__body p {
    margin: 10px 0 0;
    color: var(--sky-muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.9;
}

.sky-guides-dialog__steps {
    display: grid;
    margin: 16px 0 0;
    padding: 0;
    gap: 10px;
    counter-reset: guides-dialog-step;
    list-style: none;
}

.sky-guides-dialog__steps li {
    position: relative;
    min-height: 66px;
    padding: 11px 11px 11px 48px;
    color: var(--sky-muted);
    background: #f2fbfd;
    border: 1px solid var(--sky-line);
    border-radius: 14px;
    counter-increment: guides-dialog-step;
}

.sky-guides-dialog__steps li::before {
    position: absolute;
    top: 12px;
    left: 10px;
    display: grid;
    width: 28px;
    height: 28px;
    color: var(--sky-white);
    content: counter(guides-dialog-step);
    background: var(--sky-turquoise);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    place-items: center;
}

.sky-guides-dialog__steps strong {
    display: block;
    color: var(--sky-turquoise-dark);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.6;
}

.sky-guides-dialog__steps span {
    display: block;
    margin-top: 3px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.75;
}

.sky-guides-dialog__note {
    margin: 14px 0 0;
    padding: 10px 12px;
    color: var(--sky-coral-dark);
    background: #fff5f2;
    border: 1px solid #f5c5bd;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.8;
    text-align: center;
}

html.sky-guides-dialog-open,
html.sky-guides-dialog-open body {
    overflow: hidden;
}

.sky-guides-dialog[open] {
    max-height: calc(100dvh - 24px);
    margin: auto;
    overflow-x: hidden;
    overflow-y: auto;
}

.sky-guides > .sky-section-heading {
    position: relative;
    z-index: 1;
}

@media (min-width: 480px) {
    .sky-guides__list {
        gap: 16px;
    }

    .sky-guides__visual-button,
    .sky-guides__image {
        border-radius: 22px;
    }

    .sky-guides-dialog__panel {
        padding: 25px 20px 22px;
    }
}

/* ARIEL SKY STAGE 35 GUIDES IMAGE DIALOG END 20260726 */

/* ARIEL SKY STAGE 38 GUIDES BACKGROUND START 20260726 */

.sky-guides {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #f7fcfb;
}

.sky-guides::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.34),
            rgba(255, 253, 249, 0.42)
        ),
        url("../images/sky/guides-section-bg.webp?v=1785035249");
    background-position:
        center,
        center top;
    background-repeat:
        no-repeat,
        repeat-y;
    background-size:
        100% 100%,
        100% auto;
    content: "";
    pointer-events: none;
}

.sky-guides > .sky-section-heading,
.sky-guides > .sky-guides__list {
    position: relative;
    z-index: 1;
}

/* ARIEL SKY STAGE 38 GUIDES BACKGROUND END 20260726 */

/* ARIEL SKY STAGE 39 VOICES IMAGE DIALOG START 20260726 */

html.sky-voices-dialog-open {
    overflow: hidden;
}

.sky-voices {
    position: relative;
    overflow: hidden;
    padding-top: 36px;
    padding-bottom: 42px;
    background:
        linear-gradient(
            180deg,
            #fffaf2 0%,
            #f4fcfb 52%,
            #eefbff 100%
        );
}

.sky-voices > .sky-section-heading {
    position: relative;
    z-index: 1;
}

.sky-voices__list {
    position: relative;
    z-index: 1;
    display: grid;
    width: 100%;
    margin: 18px auto 0;
    gap: 14px;
}

.sky-voices__item {
    min-width: 0;
    margin: 0;
}

.sky-voices__visual-button {
    display: block;
    width: 100%;
    padding: 0;
    color: inherit;
    cursor: pointer;
    background: transparent;
    border: 0;
    font: inherit;
    appearance: none;
    -webkit-appearance: none;
}

.sky-voices__image {
    display: block;
    width: 100%;
    height: auto;
    border: 2px solid rgba(42, 171, 163, 0.22);
    border-radius: 18px;
}

.sky-voices__visual-button:focus-visible,
.sky-voices-dialog__close:focus-visible {
    outline: 3px solid var(--sky-coral);
    outline-offset: 3px;
}

.sky-voices-dialog {
    width: min(calc(100% - 24px), 440px);
    max-width: 440px;
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
}

.sky-voices-dialog::backdrop {
    background: rgba(13, 66, 72, 0.68);
}

.sky-voices-dialog[open] {
    margin: auto;
    overflow-x: hidden;
    overflow-y: auto;
}

.sky-voices-dialog__panel {
    position: relative;
    padding: 25px 18px 21px;
    color: var(--sky-brown);
    background: #fffdf9;
    border: 2px solid rgba(42, 171, 163, 0.3);
    border-radius: 22px;
}

.sky-voices-dialog--coral .sky-voices-dialog__panel {
    border-color: rgba(236, 125, 117, 0.34);
}

.sky-voices-dialog__close {
    position: absolute;
    top: 10px;
    right: 10px;
    display: grid;
    width: 40px;
    height: 40px;
    padding: 0;
    color: var(--sky-turquoise-dark);
    cursor: pointer;
    background: var(--sky-white);
    border: 2px solid var(--sky-turquoise);
    border-radius: 50%;
    font: inherit;
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
    place-items: center;
    appearance: none;
    -webkit-appearance: none;
}

.sky-voices-dialog--coral .sky-voices-dialog__close {
    color: var(--sky-coral-dark);
    border-color: var(--sky-coral);
}

.sky-voices-dialog__eyebrow {
    width: fit-content;
    margin: 0 46px 8px 0;
    padding: 4px 10px;
    color: var(--sky-white);
    background: var(--sky-turquoise);
    border-radius: 999px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.sky-voices-dialog--coral .sky-voices-dialog__eyebrow {
    background: var(--sky-coral);
}

.sky-voices-dialog h3 {
    margin: 0;
    padding-right: 30px;
    color: var(--sky-turquoise-dark);
    font-size: 22px;
    font-weight: 900;
    line-height: 1.5;
}

.sky-voices-dialog--coral h3 {
    color: var(--sky-coral-dark);
}

.sky-voices-dialog__body {
    display: grid;
    margin-top: 17px;
    gap: 12px;
}

.sky-voices-dialog__body p {
    margin: 0;
    color: var(--sky-brown);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.9;
}

.sky-voices-dialog__note {
    margin: 17px 0 0;
    padding: 10px 11px;
    color: var(--sky-muted);
    background: rgba(237, 250, 249, 0.9);
    border-radius: 13px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.7;
}

.sky-voices-dialog--coral .sky-voices-dialog__note {
    background: rgba(255, 240, 236, 0.92);
}

@media (min-width: 480px) {
    .sky-voices__list {
        gap: 16px;
    }

    .sky-voices__image {
        border-radius: 21px;
    }

    .sky-voices-dialog__panel {
        padding: 28px 22px 24px;
    }

    .sky-voices-dialog h3 {
        font-size: 24px;
    }

    .sky-voices-dialog__body p {
        font-size: 14px;
    }
}

@media (max-width: 359px) {
    .sky-voices {
        padding-right: 8px;
        padding-left: 8px;
    }

    .sky-voices__list {
        gap: 11px;
    }

    .sky-voices__image {
        border-radius: 14px;
    }

    .sky-voices-dialog__panel {
        padding-right: 15px;
        padding-left: 15px;
    }

    .sky-voices-dialog h3 {
        font-size: 20px;
    }
}

/* ARIEL SKY STAGE 39 VOICES IMAGE DIALOG END 20260726 */

/* ARIEL SKY STAGE 40 VOICES BEACH BACKGROUND START 20260727 */

.sky-voices {
    background-color: #f6fbfc;
    background-image:
        url(
            "/wp-content/themes/ariel-recruit-official/assets/images/sky/voices-section-bg.webp"
        );
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

/* ARIEL SKY STAGE 40 VOICES BEACH BACKGROUND END 20260727 */

/* ==========================================================
   ARIEL FAQ FINAL START 20260727
   FAQ section only
   ========================================================== */

.sky-faq {
    position: relative;
    overflow: hidden;
    padding-top: 46px;
    padding-bottom: 48px;
    background:
        radial-gradient(
            circle at 8% 10%,
            rgba(97, 211, 207, 0.13) 0 34px,
            transparent 35px
        ),
        radial-gradient(
            circle at 96% 88%,
            rgba(239, 145, 134, 0.12) 0 48px,
            transparent 49px
        ),
        linear-gradient(
            180deg,
            #eefcff 0%,
            #fffaf7 100%
        );
}

.sky-faq__list {
    margin-top: 26px;
    gap: 12px;
}

.sky-faq-item {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(83, 190, 187, 0.54);
    border-radius: 20px;
}

.sky-faq-item summary {
    grid-template-columns:
        38px
        minmax(0, 1fr)
        26px;
    min-height: 68px;
    padding: 12px 14px;
    gap: 11px;
    color: var(--sky-turquoise-dark);
    font-size: 14px;
    line-height: 1.6;
}

.sky-faq-item summary::marker {
    content: "";
}

.sky-faq-item__mark,
.sky-faq-item__answer-mark {
    width: 38px;
    height: 38px;
    font-size: 14px;
}

.sky-faq-item__question {
    min-width: 0;
}

.sky-faq-item__toggle {
    position: relative;
    display: block;
    width: 26px;
    height: 26px;
    border: 2px solid var(--sky-turquoise);
    border-radius: 50%;
}

.sky-faq-item__toggle::before,
.sky-faq-item__toggle::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 2px;
    content: "";
    background: var(--sky-turquoise-dark);
    transform: translate(-50%, -50%);
}

.sky-faq-item__toggle::after {
    transform:
        translate(-50%, -50%)
        rotate(90deg);
}

.sky-faq-item[open] > summary {
    background: #f4feff;
}

.sky-faq-item[open] .sky-faq-item__toggle::after {
    content: none;
}

.sky-faq-item__answer {
    grid-template-columns:
        38px
        minmax(0, 1fr);
    padding: 14px 14px 17px;
    gap: 11px;
    background: #f3fbfc;
    border-top-color: rgba(83, 190, 187, 0.34);
}

.sky-faq-item__answer p {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.9;
}

.sky-faq__note {
    width: min(100%, 420px);
    margin: 20px auto 0;
    padding: 12px 14px;
    color: var(--sky-brown);
    background: rgba(255, 255, 255, 0.82);
    border: 1px dashed rgba(231, 125, 117, 0.72);
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.8;
    text-align: center;
}

@media (max-width: 419px) {
    .sky-faq {
        padding-top: 42px;
        padding-bottom: 44px;
    }

    .sky-faq-item summary {
        grid-template-columns:
            36px
            minmax(0, 1fr)
            25px;
        min-height: 64px;
        padding: 11px 12px;
        gap: 9px;
        font-size: 13px;
    }

    .sky-faq-item__mark,
    .sky-faq-item__answer-mark {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .sky-faq-item__toggle {
        width: 25px;
        height: 25px;
    }

    .sky-faq-item__answer {
        grid-template-columns:
            36px
            minmax(0, 1fr);
        padding: 13px 12px 15px;
        gap: 9px;
    }

    .sky-faq-item__answer p {
        font-size: 12px;
    }

    .sky-faq__note {
        margin-top: 18px;
        padding: 11px 12px;
        font-size: 11px;
    }
}

/* ==========================================================
   ARIEL FAQ FINAL END 20260727
   ========================================================== */

/* ==========================================================
   ARIEL FAQ BACKGROUND IMAGE START 20260727
   FAQ section background only
   ========================================================== */

.sky-faq {
    background-color: #eefaff;
    background-image:
        url("../images/sky/faq-section-bg.webp");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ==========================================================
   ARIEL FAQ BACKGROUND IMAGE END 20260727
   ========================================================== */

/* ARIEL RECRUIT BLOG WP LAYOUT START 20260727 */

.sky-blog {
    padding: 44px 10px 52px;
    background-color: #eefaff;
    background-image:
        url("../images/sky/blog-section-bg.webp");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.sky-blog__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    margin-top: 24px;
    gap: 16px;
}

.sky-blog-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    overflow: hidden;
    background: var(--sky-white);
    border: 2px solid var(--sky-line);
    border-radius: 20px;
}

.sky-blog-card__visual {
    min-height: 0;
    padding: 0;
    aspect-ratio: 16 / 9;
    background: #eafaff;
}

.sky-blog-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sky-blog-card__placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    min-height: 180px;
    color: rgba(0, 119, 126, 0.56);
    background:
        linear-gradient(
            145deg,
            #dff7ff 0%,
            #f8fdff 48%,
            #fff0dc 100%
        );
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.16em;
    place-items: center;
}

.sky-blog-card__content {
    min-width: 0;
    padding: 17px 16px 19px;
}

.sky-blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px;
}

.sky-blog-card__category {
    width: fit-content;
    margin: 0;
    padding: 4px 9px;
    color: var(--sky-turquoise-dark);
    background: #e4faf5;
    border: 1px solid #9edfd3;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    line-height: 1.4;
}

.sky-blog-card__date {
    color: var(--sky-muted);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.4;
}

.sky-blog-card h3 {
    margin: 0;
    color: var(--sky-turquoise-dark);
    font-size: 18px;
    line-height: 1.55;
}

.sky-blog-card__excerpt {
    margin: 8px 0 0;
    color: var(--sky-muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.8;
}

.sky-blog-empty {
    margin-top: 24px;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--sky-line);
    border-radius: 20px;
    text-align: center;
}

.sky-blog-empty__decoration {
    margin: 0 0 8px;
    color: var(--sky-coral);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.sky-blog-empty h3 {
    margin: 0;
    color: var(--sky-turquoise-dark);
    font-size: 18px;
    line-height: 1.55;
}

.sky-blog-empty > p:last-child {
    max-width: 360px;
    margin: 10px auto 0;
    color: var(--sky-muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.8;
}

@media (min-width: 480px) {
    .sky-blog__grid {
        gap: 15px;
    }

    .sky-blog-card {
        grid-template-columns:
            minmax(170px, 42%)
            minmax(0, 1fr);
    }

    .sky-blog-card__visual {
        height: 100%;
        min-height: 176px;
        aspect-ratio: auto;
    }

    .sky-blog-card__placeholder {
        min-height: 176px;
    }

    .sky-blog-card__content {
        padding: 17px 15px 18px;
    }

    .sky-blog-card h3 {
        font-size: 16px;
    }

    .sky-blog-card__excerpt {
        font-size: 11px;
    }
}

/* ARIEL RECRUIT BLOG WP LAYOUT END 20260727 */

/* ARIEL FINAL LINE CTA ONE IMAGE START 20260727 */

.sky-final-cta--visual {
    position: relative;
    overflow: hidden;
    color: var(--sky-white);
    background: #eaf9ff;
}

.sky-final-cta__visual-wrap {
    position: relative;
}

.sky-final-cta__visual {
    display: block;
    width: 100%;
    height: auto;
}

.sky-final-cta--visual .sky-final-cta__button--overlay {
    position: absolute;
    right: auto;
    bottom: 8.2%;
    left: 4%;
    z-index: 2;
    width: 92%;
    min-height: clamp(58px, 14vw, 74px);
    margin: 0;
    padding:
        clamp(8px, 2.4vw, 10px)
        clamp(12px, 3.5vw, 16px);
}

.sky-final-cta--visual .sky-final-cta__line-icon {
    width: clamp(38px, 10vw, 46px);
    height: clamp(38px, 10vw, 46px);
    font-size: clamp(8px, 2.5vw, 10px);
}

.sky-final-cta--visual
.sky-final-cta__button-body small {
    font-size: clamp(8px, 2.3vw, 9px);
}

.sky-final-cta--visual
.sky-final-cta__button-body strong {
    font-size: clamp(15px, 4.5vw, 18px);
}

.sky-final-cta__sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ARIEL FINAL LINE CTA ONE IMAGE END 20260727 */


/* ARIEL TOP INTERNAL PAGE LINKS V2 START 20260812 */

.sky-section-page-links {
    position: relative;
    z-index: 3;
    display: grid;
    width: min(calc(100% - 20px), 520px);
    margin: 18px auto 0;
    gap: 8px;
}

.sky-section-page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 9px 15px;
    color: #ffffff;
    background: var(--sky-turquoise);
    border: 2px solid var(--sky-turquoise-dark);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.45;
    text-align: center;
    text-decoration: none;
}

.sky-section-page-link--coral {
    background: var(--sky-coral);
    border-color: var(--sky-coral-dark);
}

.sky-section-page-link:focus-visible {
    outline: 3px solid rgba(255, 227, 109, 0.92);
    outline-offset: 3px;
}

.sky-anxieties > .sky-section-page-links {
    margin-top: 14px;
    margin-bottom: 22px;
}

.sky-final-cta > .sky-section-page-links {
    margin-top: 16px;
    margin-bottom: 24px;
}

@media (min-width: 520px) {
    .sky-section-page-links--guides {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
        width: min(calc(100% - 24px), 660px);
    }

    .sky-section-page-links--guides
    .sky-section-page-link {
        padding-right: 8px;
        padding-left: 8px;
        font-size: 10.5px;
    }
}

/* ARIEL TOP INTERNAL PAGE LINKS V2 END 20260812 */
/* ARIEL TOP BLOG CARD OVERLAY DETAIL LINK START 20260816 */

/*
 * 元のカードDOMレイアウトを変更せず、
 * カード全面を記事詳細へのタップ領域にする。
 */
.sky-blog-card {
    position: relative;
}

.sky-blog-card__detail-link {
    position: absolute;
    z-index: 10;
    inset: 0;
    display: block;
    border-radius: inherit;
    color: inherit;
    text-decoration: none;
}

.sky-blog-card__detail-link:focus-visible {
    outline: 3px solid rgba(255, 227, 109, 0.96);
    outline-offset: -5px;
}

/* ARIEL TOP BLOG CARD OVERLAY DETAIL LINK END 20260816 */
