:root {
    --work-style-deep: #174f52;
    --work-style-text: #245d60;
    --work-style-turquoise: #218f90;
    --work-style-turquoise-dark: #167173;
    --work-style-mint: #dff5eb;
    --work-style-mint-light: #f1fbf6;
    --work-style-sky: #e8f7ff;
    --work-style-sky-strong: #ccecf7;
    --work-style-offwhite: #fffdf7;
    --work-style-beige: #f5efe4;
    --work-style-white: #ffffff;
    --work-style-border: #a8d8d2;
    --work-style-border-light: #d4ebe6;
    --work-style-line: #06c755;
    --work-style-line-dark: #058b3d;
}

.work-style-main,
.work-style-page,
.work-style-page * {
    box-sizing: border-box;
}

.work-style-main {
    width: 100%;
    margin: 0;
    padding: 0;
    color: var(--work-style-text);
    background: var(--work-style-offwhite);
}

.work-style-page {
    width: 100%;
    margin: 0;
    overflow: hidden;
    color: var(--work-style-text);
    font-family:
        "Hiragino Maru Gothic ProN",
        "Yu Gothic",
        "Meiryo",
        sans-serif;
    line-height: 1.8;
}

.work-style-inner {
    width: min(calc(100% - 32px), 520px);
    margin-inline: auto;
}

.work-style-hero {
    padding: 0;
    overflow: hidden;
    background: var(--work-style-sky);
    border-bottom: 1px solid var(--work-style-border-light);
}

.work-style-section__number,
.work-style-option__label,
.work-style-schedule__type {
    margin: 0;
    color: var(--work-style-turquoise-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.work-style-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.work-style-hero__frame {
    width: min(100%, 520px);
    margin-inline: auto;
}

.work-style-hero__visual {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: var(--work-style-sky);
}

.work-style-hero__image {
    display: block;
    width: 100%;
    height: auto;
}

.work-style-hero__overlay-link {
    position: absolute;
    z-index: 2;
    right: 25%;
    bottom: 1.2%;
    left: 25%;
    display: block;
    height: max(6.5%, 44px);
    background: transparent;
    border: 0;
    border-radius: 999px;
    text-decoration: none;
}

.work-style-section {
    padding: 58px 0;
    border-bottom: 1px solid var(--work-style-border-light);
}

.work-style-section--offwhite {
    background: var(--work-style-offwhite);
}

.work-style-section--sky {
    background:
        linear-gradient(
            180deg,
            var(--work-style-sky) 0%,
            #f3fbff 100%
        );
}

.work-style-section--mint {
    background:
        linear-gradient(
            180deg,
            var(--work-style-mint-light) 0%,
            var(--work-style-mint) 100%
        );
}

.work-style-section--beige {
    background:
        linear-gradient(
            180deg,
            #fbf7ef 0%,
            var(--work-style-beige) 100%
        );
}

.work-style-section__title {
    margin: 8px 0 14px;
    color: var(--work-style-deep);
    font-size: clamp(1.55rem, 7vw, 2rem);
    line-height: 1.45;
    letter-spacing: 0.02em;
    text-wrap: balance;
}

.work-style-section__intro {
    margin: 0 0 28px;
    font-size: 0.98rem;
    font-weight: 600;
}

.work-style-image-card-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
}

.work-style-image-card {
    margin: 0;
    overflow: hidden;
    background: var(--work-style-white);
    border-radius: 22px;
}

.work-style-image-card__image {
    display: block;
    width: 100%;
    height: auto;
}

.work-style-option-list,
.work-style-schedule-list {
    display: grid;
    gap: 18px;
}

.work-style-option,
.work-style-schedule {
    padding: 24px 20px;
    background: var(--work-style-white);
    border: 1px solid var(--work-style-border);
    border-radius: 20px;
}

.work-style-option__title,
.work-style-schedule__title {
    margin: 6px 0 12px;
    color: var(--work-style-deep);
    font-size: 1.28rem;
    line-height: 1.5;
}

.work-style-option__text,
.work-style-schedule__note {
    margin: 0;
    font-size: 0.94rem;
}

.work-style-example-list,
.work-style-simple-list,
.work-style-check-list {
    display: grid;
    gap: 9px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.work-style-example-list li,
.work-style-simple-list li,
.work-style-check-list li {
    position: relative;
    padding-left: 28px;
    font-size: 0.92rem;
    font-weight: 700;
}

.work-style-example-list li::before,
.work-style-simple-list li::before,
.work-style-check-list li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--work-style-turquoise-dark);
    font-weight: 900;
}

.work-style-schedule__details {
    display: grid;
    gap: 1px;
    margin: 18px 0;
    overflow: hidden;
    border: 1px solid var(--work-style-border-light);
    border-radius: 14px;
}

.work-style-schedule__details div {
    display: grid;
    grid-template-columns: 78px 1fr;
    background: var(--work-style-border-light);
    gap: 1px;
}

.work-style-schedule__details dt,
.work-style-schedule__details dd {
    margin: 0;
    padding: 10px 12px;
    background: var(--work-style-white);
}

.work-style-schedule__details dt {
    color: var(--work-style-deep);
    font-size: 0.88rem;
    font-weight: 800;
}

.work-style-schedule__details dd {
    font-size: 0.9rem;
    font-weight: 600;
}

.work-style-check-list {
    gap: 12px;
    margin-top: 0;
}

.work-style-check-list li {
    padding: 14px 14px 14px 46px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--work-style-border);
    border-radius: 14px;
}

.work-style-check-list li::before {
    top: 14px;
    left: 16px;
}

.work-style-message {
    margin-top: 28px;
    padding: 22px 20px;
    background: var(--work-style-white);
    border: 2px solid var(--work-style-turquoise);
    border-radius: 20px;
}

.work-style-message__title {
    margin: 0 0 8px;
    color: var(--work-style-deep);
    font-size: 1.05rem;
    font-weight: 800;
}

.work-style-message__text {
    margin: 0;
    font-size: 0.92rem;
}

.work-style-step-list,
.work-style-consultation-flow {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.work-style-step {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
    background: var(--work-style-white);
    border: 1px solid var(--work-style-border);
    border-radius: 18px;
}

.work-style-step__number,
.work-style-consultation-flow span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin: 0;
    color: var(--work-style-white);
    font-size: 1.02rem;
    font-weight: 900;
    background: var(--work-style-turquoise);
    border-radius: 50%;
}

.work-style-step__title {
    margin: 0 0 6px;
    color: var(--work-style-deep);
    font-size: 1.02rem;
}

.work-style-step__text {
    margin: 0;
    font-size: 0.9rem;
}

.work-style-caution,
.work-style-reassurance {
    margin: 24px 0 0;
    padding: 16px;
    font-size: 0.9rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--work-style-border);
    border-radius: 14px;
}

.work-style-consultation-flow li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 66px;
    padding: 12px 16px;
    color: var(--work-style-deep);
    font-size: 0.92rem;
    font-weight: 800;
    background: var(--work-style-white);
    border: 1px solid var(--work-style-border);
    border-radius: 16px;
}











.work-style-preview {
    margin: 0;
    background: var(--work-style-offwhite);
}

.work-style-preview-header {
    padding: 14px 16px;
    color: var(--work-style-deep);
    text-align: center;
    background: var(--work-style-white);
    border-bottom: 1px solid var(--work-style-border-light);
}

.work-style-preview-header__site {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 800;
}

.work-style-preview-header__label {
    margin: 2px 0 0;
    color: var(--work-style-turquoise-dark);
    font-size: 0.72rem;
    font-weight: 700;
}

.work-style-preview-bottom {
    padding: 18px 16px;
    color: var(--work-style-deep);
    font-size: 0.76rem;
    text-align: center;
    background: var(--work-style-offwhite);
}

.work-style-hero__overlay-link:focus-visible,
.work-style-page a:focus-visible {
    outline: 3px solid var(--work-style-deep);
    outline-offset: 4px;
}

@media (min-width: 700px) {

    .work-style-section {
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .work-style-option,
    .work-style-schedule {
        padding: 28px 26px;
    }
}


/* ARIEL FIXED PAGE WORK STYLE OPTIONS TOP-BASED LAYOUT START 20260731 */

.work-style-section--options {
    position: relative;
    overflow: hidden;
    padding: 28px 14px 34px;
    background-color: #f5fcfa;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.16),
            rgba(255, 255, 255, 0.16)
        ),
        url(
            "/wp-content/themes/ariel-recruit-official/assets/images/sky/work-style-options-bg.webp"
        );
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    border-bottom: 0;
}

.work-style-section--options > .work-style-inner {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    margin-inline: auto;
}

.work-style-section--options .work-style-section__number {
    margin: 0 0 1px;
    color: var(--work-style-turquoise-dark);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-align: center;
}

.work-style-section--options .work-style-section__title {
    margin: 0;
    color: var(--work-style-deep);
    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;
    text-align: center;
}

.work-style-section--options .work-style-section__intro {
    width: min(100%, 420px);
    margin: 5px auto 0;
    color: var(--work-style-text);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.8;
    text-align: center;
}

.work-style-section--options .work-style-image-card-list {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    margin: 22px auto 0;
    gap: 16px;
}

.work-style-section--options .work-style-image-card {
    min-width: 0;
    overflow: hidden;
    background: transparent;
    border: 0;
    border-radius: 20px;
}

.work-style-section--options .work-style-image-card__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
}

/* ARIEL FIXED PAGE WORK STYLE OPTIONS TOP-BASED LAYOUT END 20260731 */


/* ARIEL FIXED PAGE ACTUAL TOP FOUNDATION START 20260731 */

.work-style-main {
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
}

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

.work-style-page .work-style-inner {
    width: 100%;
    margin-inline: auto;
}

.work-style-page .work-style-section {
    padding: 38px 14px 42px;
}

.work-style-page .work-style-section--options {
    position: relative;
    overflow: hidden;
    padding: 28px 14px 34px;
    background-color: #f5fcfa;
    background-image:
        url(
            "/wp-content/themes/ariel-recruit-official/assets/images/sky/work-style-options-bg.webp"
        );
    background-repeat: repeat-y;
    background-position: center top;
    background-size: 100% auto;
    border: 0;
    border-radius: 0;
}

.work-style-page
.work-style-section--options
> .work-style-inner {
    position: relative;
    z-index: 1;
    width: 100%;
}

.work-style-section-heading {
    position: relative;
    z-index: 1;
    padding: 7px 4px 9px;
    text-align: center;
}

.work-style-section--options
.sky-section-heading__decoration {
    margin: 0 0 1px;
    color: var(--work-style-turquoise-dark);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-align: center;
}

.work-style-section--options
.sky-section-heading h2 {
    margin: 0;
    color: var(--work-style-turquoise-dark);
    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;
    text-align: center;
}

.work-style-section--options
.sky-section-heading h2::before,
.work-style-section--options
.sky-section-heading h2::after {
    color: var(--work-style-turquoise);
}

.work-style-section--options
.sky-section-heading
> p:last-child {
    width: min(100%, 420px);
    margin: 5px auto 0;
    color: var(--work-style-text);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.8;
    text-align: center;
}

.work-style-section--options
.work-style-image-card-list {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    margin: 18px auto 0;
    gap: 16px;
}

.work-style-section--options
.work-style-image-card {
    min-width: 0;
    overflow: hidden;
    background: transparent;
    border: 0;
    border-radius: 20px;
}

.work-style-section:not(.work-style-section--options)
> .work-style-inner
> .work-style-section__number {
    margin: 0 0 1px;
    color: var(--work-style-turquoise-dark);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-align: center;
}

.work-style-section:not(.work-style-section--options)
> .work-style-inner
> .work-style-section__title {
    margin: 0;
    color: var(--work-style-turquoise-dark);
    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;
    text-align: center;
}

.work-style-section:not(.work-style-section--options)
> .work-style-inner
> .work-style-section__intro {
    width: min(100%, 420px);
    margin: 5px auto 24px;
    color: var(--work-style-text);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.8;
    text-align: center;
}





.work-style-preview-header,
.work-style-preview-bottom {
    width: min(100%, var(--sky-content));
    margin-inline: auto;
}

@media (min-width: 700px) {
    .work-style-page .work-style-section {
        padding-top: 38px;
        padding-bottom: 42px;
    }

    .work-style-page .work-style-section--options {
        padding: 28px 14px 34px;
    }



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

/* ARIEL FIXED PAGE ACTUAL TOP FOUNDATION END 20260731 */


/* ARIEL WORK STYLE PREVIEW HEADER FOOTER SYNC START 20260731 */

/*
 * The preview uses the exact header classes from the completed
 * top-page preview. Reset the obsolete simple-header styling.
 */
.work-style-preview
.work-style-preview-header {
    width: min(100%, var(--sky-content));
    margin-inline: auto;
    padding: 0;
    color: inherit;
    text-align: initial;
    background: var(--sky-white);
    border-bottom: 2px solid var(--sky-turquoise-light);
}

/*
 * The campaign-page body and formal footer form one continuous
 * 520px column. The bottom rounding belongs to .sky-footer only.
 */
.work-style-preview
.work-style-page.sky-home {
    border-bottom: 0;
    border-radius: 0;
}

.work-style-preview
.sky-footer {
    margin-top: 0;
}

@media (min-width: 700px) {
    .work-style-preview
    .work-style-preview-header {
        border-top: 2px solid var(--sky-line);
        border-right: 2px solid var(--sky-line);
        border-left: 2px solid var(--sky-line);
        border-radius: 30px 30px 0 0;
    }

    .work-style-preview
    .work-style-page.sky-home {
        border-right: 2px solid var(--sky-line);
        border-bottom: 0;
        border-left: 2px solid var(--sky-line);
        border-radius: 0;
    }

    .work-style-preview
    .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 WORK STYLE PREVIEW HEADER FOOTER SYNC END 20260731 */

/* ARIEL WORK STYLE SCHEDULE IMAGE SECTION START 20260731 */

.work-style-page .work-style-section--schedules {
    position: relative;
    overflow: hidden;
    padding: 30px 14px 42px;
    background-color: #f5fcfa;
    background-image:
        url(
            "/wp-content/themes/ariel-recruit-official/assets/images/sky/work-style-schedules-bg.webp"
        );
    background-repeat: repeat-y;
    background-position: center top;
    background-size: 100% auto;
    border: 0;
    border-radius: 0;
}

.work-style-page
.work-style-section--schedules
> .work-style-inner {
    position: relative;
    z-index: 1;
    width: 100%;
}

.work-style-section--schedules
.sky-section-heading__decoration {
    margin: 0 0 1px;
    color: var(--work-style-turquoise-dark);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-align: center;
}

.work-style-section--schedules
.sky-section-heading h2 {
    margin: 0;
    color: var(--work-style-turquoise-dark);
    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;
    text-align: center;
}

.work-style-section--schedules
.sky-section-heading h2::before,
.work-style-section--schedules
.sky-section-heading h2::after {
    color: var(--work-style-turquoise);
}

.work-style-section--schedules
.sky-section-heading
> p:last-child {
    width: min(100%, 420px);
    margin: 5px auto 0;
    color: var(--work-style-text);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.8;
    text-align: center;
}

.work-style-schedule-image-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    margin: 18px auto 0;
    gap: 16px;
}

.work-style-schedule-image-card {
    min-width: 0;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
}

.work-style-schedule-image-card__image {
    display: block;
    width: 100%;
    height: auto;
}

/* ARIEL WORK STYLE SCHEDULE IMAGE SECTION END 20260731 */

/* ARIEL WORK STYLE TEXT SCHEDULE DIALOG START 20260731 */

.work-style-schedule-dialog-trigger {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    color: inherit;
    cursor: pointer;
    background: transparent;
    border: 0;
    border-radius: 0;
    font: inherit;
    text-align: inherit;
    appearance: none;
    -webkit-appearance: none;
}

.work-style-schedule-dialog-trigger__label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 300px);
    min-height: 44px;
    margin: 9px auto 0;
    padding: 8px 16px;
    color: var(--work-style-turquoise-dark);
    background: rgba(255, 255, 255, 0.96);
    border: 2px solid var(--work-style-turquoise);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.5;
    text-align: center;
}

.work-style-schedule-dialog-trigger:focus-visible,
.work-style-schedule-dialog__close:focus-visible,
.work-style-schedule-dialog__close-bottom:focus-visible {
    outline: 3px solid var(--work-style-turquoise);
    outline-offset: 3px;
}

.work-style-schedule-dialog {
    position: fixed;
    inset: 0;
    width: min(calc(100% - 18px), 460px);
    max-width: 460px;
    height: auto;
    max-height: calc(100vh - 18px);
    max-height: calc(100dvh - 18px);
    margin: auto;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    color: var(--work-style-text);
    background: transparent;
    border: 0;
    overscroll-behavior: contain;
}

.work-style-schedule-dialog::backdrop {
    background: rgba(7, 61, 67, 0.76);
}

.work-style-schedule-dialog__panel {
    position: relative;
    min-height: 100%;
    padding: 14px 13px 18px;
    background: #fffdf8;
    border: 2px solid var(--work-style-turquoise);
    border-radius: 22px;
}

.work-style-schedule-dialog__close {
    position: sticky;
    top: 8px;
    z-index: 4;
    display: grid;
    width: 46px;
    height: 46px;
    margin: 0 0 -35px auto;
    padding: 0;
    color: #ffffff;
    cursor: pointer;
    background: var(--work-style-turquoise-dark);
    border: 2px solid #ffffff;
    border-radius: 50%;
    font: inherit;
    font-size: 27px;
    font-weight: 800;
    line-height: 1;
    place-items: center;
    appearance: none;
    -webkit-appearance: none;
}

.work-style-schedule-dialog__eyebrow {
    width: fit-content;
    margin: 0 52px 8px 0;
    padding: 4px 10px;
    color: #ffffff;
    background: var(--work-style-turquoise);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.11em;
}

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

.work-style-schedule-dialog__lead {
    margin: 13px 0 0;
    padding: 12px 13px;
    color: var(--work-style-deep);
    background: #edfafa;
    border: 1px solid var(--work-style-border);
    border-radius: 14px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.85;
}

.work-style-schedule-dialog__section {
    margin: 15px 0 0;
    padding: 14px 12px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--work-style-border);
    border-radius: 16px;
}

.work-style-schedule-dialog__section h4 {
    margin: 0;
    color: var(--work-style-turquoise-dark);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.55;
}

.work-style-schedule-dialog__section > p {
    margin: 9px 0 0;
    color: var(--work-style-text);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.9;
}

.work-style-schedule-dialog__timeline {
    display: grid;
    margin: 11px 0 0;
    padding: 0;
    gap: 7px;
    list-style: none;
}

.work-style-schedule-dialog__timeline li {
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr);
    align-items: center;
    min-height: 46px;
    overflow: hidden;
    background: #f3fbff;
    border: 1px solid #c5e9e6;
    border-radius: 12px;
}

.work-style-schedule-dialog__timeline time {
    display: grid;
    align-self: stretch;
    padding: 7px 5px;
    color: #ffffff;
    background: var(--work-style-turquoise-dark);
    font-size: 14px;
    font-weight: 900;
    place-items: center;
}

.work-style-schedule-dialog__timeline span {
    padding: 8px 10px;
    color: var(--work-style-deep);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.6;
}

.work-style-schedule-dialog__example-note,
.work-style-schedule-dialog__model-note {
    color: var(--work-style-text) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

.work-style-schedule-dialog__merits,
.work-style-schedule-dialog__suited {
    display: grid;
    margin: 10px 0 0;
    padding: 0;
    gap: 8px;
    list-style: none;
}

.work-style-schedule-dialog__merits li,
.work-style-schedule-dialog__suited li {
    position: relative;
    min-height: 44px;
    padding: 9px 10px 9px 38px;
    color: var(--work-style-text);
    background: #f5fcfa;
    border: 1px solid #c5e9e6;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.75;
}

.work-style-schedule-dialog__merits li::before,
.work-style-schedule-dialog__suited li::before {
    position: absolute;
    top: 11px;
    left: 11px;
    display: grid;
    width: 19px;
    height: 19px;
    color: #ffffff;
    content: "✓";
    background: var(--work-style-turquoise);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 900;
    place-items: center;
}

.work-style-schedule-dialog__note {
    margin: 15px 0 0;
    padding: 12px 13px;
    color: var(--work-style-turquoise-dark);
    background: #eaf9f4;
    border: 2px solid var(--work-style-turquoise);
    border-radius: 15px;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.8;
    text-align: center;
}

.work-style-schedule-dialog__close-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 280px);
    min-height: 50px;
    margin: 17px auto 0;
    padding: 9px 16px;
    color: #ffffff;
    cursor: pointer;
    background: var(--work-style-turquoise-dark);
    border: 2px solid var(--work-style-turquoise);
    border-radius: 999px;
    font: inherit;
    font-size: 15px;
    font-weight: 900;
    appearance: none;
    -webkit-appearance: none;
}

@media (min-width: 480px) {
    .work-style-schedule-dialog__panel {
        padding: 17px 18px 21px;
    }

    .work-style-schedule-dialog h3 {
        font-size: 25px;
    }
}

@media (max-width: 359px) {
    .work-style-schedule-dialog {
        width: calc(100% - 10px);
        max-height: calc(100dvh - 10px);
    }

    .work-style-schedule-dialog__panel {
        padding-right: 10px;
        padding-left: 10px;
        border-radius: 18px;
    }

    .work-style-schedule-dialog h3 {
        font-size: 21px;
    }

    .work-style-schedule-dialog__lead,
    .work-style-schedule-dialog__section > p {
        font-size: 15px;
    }
}

/* ARIEL WORK STYLE TEXT SCHEDULE DIALOG END 20260731 */



/* === Work Style: Free Shift Section === */
.work-style-section--free-shift {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 13% 9%,
            rgba(255, 255, 255, 0.78) 0 12%,
            transparent 13%
        ),
        radial-gradient(
            circle at 89% 18%,
            rgba(255, 255, 255, 0.48) 0 10%,
            transparent 11%
        ),
        linear-gradient(
            180deg,
            #effcf7 0%,
            #dff6ef 52%,
            #edf9ff 100%
        );
}

.work-style-page .work-style-section--free-shift {
    padding-top: 38px;
    padding-bottom: 42px;
}

.work-style-section--free-shift > .work-style-inner {
    position: relative;
    z-index: 1;
    width: 100%;
}

.work-style-section--free-shift
> .work-style-inner
> .work-style-section__number {
    margin: 0 0 1px;
    text-align: center;
}

.work-style-section--free-shift
> .work-style-inner
> .work-style-section__title {
    margin: 0;
    color: var(--work-style-turquoise-dark);
    font-size: clamp(20px, 5.8vw, 28px);
    font-weight: 900;
    line-height: 1.35;
    text-align: center;
}

.work-style-section--free-shift
> .work-style-inner
> .work-style-section__intro {
    width: min(100%, 420px);
    margin: 8px auto 18px;
    color: var(--work-style-text);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.75;
    text-align: center;
}

.work-style-free-shift-talks__lead {
    display: table;
    margin: 0 auto 14px;
    padding: 5px 13px;
    color: var(--work-style-turquoise-dark);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(81, 193, 184, 0.34);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.6;
}

.work-style-free-shift-talks {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 13px;
    margin: 0;
}

.work-style-free-shift-card {
    --work-style-bubble-bg: #ffffff;
    --work-style-bubble-label: #e8f8f4;

    position: relative;
    box-sizing: border-box;
    width: calc(100% - 26px);
    min-width: 0;
    padding: 15px 16px 14px;
    background: var(--work-style-bubble-bg);
    border: 1px solid rgba(81, 193, 184, 0.45);
    border-radius: 22px;
}

.work-style-free-shift-card--left {
    justify-self: start;
    border-top-left-radius: 10px;
}

.work-style-free-shift-card--right {
    justify-self: end;
    border-top-right-radius: 10px;
}

.work-style-free-shift-card--mint {
    --work-style-bubble-bg: #ffffff;
    --work-style-bubble-label: #e5f8f3;
}

.work-style-free-shift-card--sky {
    --work-style-bubble-bg: #f7fcff;
    --work-style-bubble-label: #e8f6fb;
}

.work-style-free-shift-card--ivory {
    --work-style-bubble-bg: #fffdf7;
    --work-style-bubble-label: #f5f2e7;
}

.work-style-free-shift-card--mint-soft {
    --work-style-bubble-bg: #f5fffb;
    --work-style-bubble-label: #e4f8f1;
}

.work-style-free-shift-card--left::after,
.work-style-free-shift-card--right::after {
    content: "";
    position: absolute;
    top: 24px;
    width: 14px;
    height: 14px;
    background: var(--work-style-bubble-bg);
    transform: rotate(45deg);
}

.work-style-free-shift-card--left::after {
    left: -8px;
    border-bottom: 1px solid rgba(81, 193, 184, 0.45);
    border-left: 1px solid rgba(81, 193, 184, 0.45);
}

.work-style-free-shift-card--right::after {
    right: -8px;
    border-top: 1px solid rgba(81, 193, 184, 0.45);
    border-right: 1px solid rgba(81, 193, 184, 0.45);
}

.work-style-free-shift-card__label {
    display: inline-flex;
    align-items: center;
    margin: 0 0 7px;
    padding: 3px 9px;
    color: var(--work-style-turquoise-dark);
    background: var(--work-style-bubble-label);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1.5;
}

.work-style-free-shift-card__title {
    margin: 0;
    color: var(--work-style-deep);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.5;
    text-wrap: balance;
}

.work-style-free-shift-card__text {
    margin: 7px 0 0;
    color: var(--work-style-text);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.75;
}

.work-style-free-shift-promise {
    position: relative;
    margin-top: 20px;
    padding: 19px 17px 16px;
    background: rgba(255, 255, 255, 0.96);
    border: 2px solid rgba(81, 193, 184, 0.7);
    border-radius: 22px;
}

.work-style-free-shift-promise__eyebrow {
    margin: 0 0 5px;
    color: var(--work-style-turquoise-dark);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.5;
}

.work-style-free-shift-promise__title {
    margin: 0;
    color: var(--work-style-deep);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.55;
}

.work-style-free-shift-promise__list {
    display: grid;
    gap: 9px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.work-style-free-shift-promise__list li {
    position: relative;
    padding-left: 20px;
    color: var(--work-style-text);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.75;
}

.work-style-free-shift-promise__list li::before {
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--work-style-turquoise-dark);
    font-weight: 900;
}

.work-style-free-shift-promise__note {
    margin: 12px 0 0;
    padding-top: 12px;
    border-top: 1px solid rgba(81, 193, 184, 0.27);
    color: var(--work-style-text);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.8;
}

@media (max-width: 359px) {
    .work-style-free-shift-card {
        width: calc(100% - 18px);
        padding-right: 14px;
        padding-left: 14px;
    }
}

@media (min-width: 700px) {
    .work-style-page .work-style-section--free-shift {
        padding-top: 38px;
        padding-bottom: 42px;
    }

    .work-style-free-shift-card {
        width: calc(100% - 36px);
    }
}

/* === Work Style: Free Shift Approved Visual === */
.work-style-page
.work-style-section--free-shift-visual {
    padding: 0;
    overflow: hidden;
    background: #f3fcfb;
    border: 0;
}

.work-style-page
.work-style-section--free-shift-visual
> .work-style-inner {
    width: 100%;
    margin: 0;
}

.work-style-free-shift-visual__figure {
    width: 100%;
    margin: 0;
}

.work-style-free-shift-visual__image {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
}

@media (min-width: 700px) {
    .work-style-page
    .work-style-section--free-shift-visual {
        padding: 0;
    }
}

/* ARIEL WORK STYLE REQUEST BOOKING APPROVED VISUAL START 20260801 */

.work-style-page
.work-style-section--request-booking-visual {
    padding: 0;
    overflow: hidden;
    background: #eaf8fb;
    border: 0;
}

.work-style-page
.work-style-section--request-booking-visual
> .work-style-inner {
    width: 100%;
    margin: 0;
}

.work-style-request-booking-visual__figure {
    width: 100%;
    margin: 0;
}

.work-style-request-booking-visual__image {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
}

@media (min-width: 700px) {
    .work-style-page
    .work-style-section--request-booking-visual {
        padding: 0;
    }
}

/* ARIEL WORK STYLE REQUEST BOOKING APPROVED VISUAL END 20260801 */

/* ARIEL WORK STYLE TRANSPORT APPROVED VISUAL START 20260802 */

.work-style-page
.work-style-section--transport-visual {
    padding: 0;
    overflow: hidden;
    background: #eaf8fb;
    border: 0;
}

.work-style-page
.work-style-section--transport-visual
> .work-style-inner {
    width: 100%;
    margin: 0;
}

.work-style-transport-visual__figure {
    width: 100%;
    margin: 0;
}

.work-style-transport-visual__image {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
}

@media (min-width: 700px) {
    .work-style-page
    .work-style-section--transport-visual {
        padding: 0;
    }
}

/* ARIEL WORK STYLE TRANSPORT APPROVED VISUAL END 20260802 */

/* ARIEL FIXED PAGE WORK STYLE CONSULTATION VISUAL START 20260802 */
.work-style-page
.work-style-section--consultation-visual {
    padding: 0;
    overflow: hidden;
    background: #e9f8f4;
    border: 0;
}

.work-style-page
.work-style-section--consultation-visual
> .work-style-inner {
    width: 100%;
    margin: 0;
}

.work-style-consultation-visual__figure {
    width: 100%;
    margin: 0;
}

.work-style-consultation-visual__image {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
}

@media (min-width: 700px) {
    .work-style-page
    .work-style-section--consultation-visual {
        padding: 0;
    }
}
/* ARIEL FIXED PAGE WORK STYLE CONSULTATION VISUAL END 20260802 */

/* ARIEL FIXED PAGE WORK STYLE FINAL CTA CSS START 20260802 */
.work-style-final-cta {
    margin: 0;
    padding: 0;
    background-color: #f7fffe;
}

.work-style-final-cta__visual {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.work-style-final-cta__image {
    display: block;
    width: 100%;
    height: auto;
}

.work-style-final-cta__button {
    position: absolute;
    z-index: 2;
    right: 9%;
    bottom: 4.2%;
    left: 9%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(54px, 12vw, 60px);
    padding: 10px 18px;
    border: 2px solid #ffffff;
    border-radius: 999px;
    background-color: #06c755;
    color: #ffffff;
    font-family: inherit;
    font-size: clamp(1rem, 4.2vw, 1.125rem);
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    text-decoration: none;
}

.work-style-final-cta__button:focus-visible {
    outline: 3px solid #006f68;
    outline-offset: 3px;
}

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

@media (max-width: 360px) {
    .work-style-final-cta__button {
        right: 7%;
        bottom: 3.8%;
        left: 7%;
        min-height: 52px;
        padding-right: 14px;
        padding-left: 14px;
    }
}
/* ARIEL FIXED PAGE WORK STYLE FINAL CTA CSS END 20260802 */


/* ARIEL WORK STYLE RELATED LINKS V1 START 20260812 */

.work-style-related-link {
    padding: 24px 18px 28px;
    text-align: center;
    background: #f7fcfb;
    border-bottom: 1px solid var(--work-style-border-light);
}

.work-style-related-link--salary {
    background: #fffaf1;
}

.work-style-related-link--requirements {
    background: #f4fbff;
}

.work-style-related-link--beginner {
    background: #f2fbf8;
}

.work-style-related-link__eyebrow {
    margin: 0 0 8px;
    color: var(--work-style-turquoise);
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 0.13em;
}

.work-style-related-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    margin: 0 auto;
    padding: 11px 15px;
    color: var(--work-style-deep);
    font-size: 0.98rem;
    font-weight: 900;
    line-height: 1.55;
    text-align: center;
    text-decoration: none;
    background: #ffffff;
    border: 2px solid var(--work-style-border);
    border-radius: 14px;
}

.work-style-related-link a::after {
    margin-left: 7px;
    content: "›";
    font-size: 1.25em;
    line-height: 1;
}

.work-style-related-link a:focus-visible {
    outline: 3px solid var(--work-style-deep);
    outline-offset: 3px;
}

/* ARIEL WORK STYLE RELATED LINKS V1 END 20260812 */