/*
 * ARIEL お仕事内容固定ページ
 */

.work-content-page {
    --work-content-deep: #155f63;
    --work-content-text: #315f61;
    --work-content-turquoise: #20aa9a;
    --work-content-turquoise-dark: #087d76;
    --work-content-mint: #e4f8f3;
    --work-content-sky: #eaf8ff;
    --work-content-offwhite: #fffdf8;
    --work-content-beige: #f7f0e4;
    --work-content-white: #ffffff;
    --work-content-border: #9ddfd8;
    --work-content-border-light: #d6eeeb;
}

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

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

.work-content-page.sky-home {
    width: min(100%, var(--sky-content, 520px));
    margin-inline: auto;
    overflow: hidden;
    color: var(--work-content-text);
    font-family:
        "Hiragino Maru Gothic ProN",
        "Yu Gothic",
        "Noto Sans JP",
        "Meiryo",
        sans-serif;
    line-height: 1.8;
    background: var(--work-content-offwhite);
}

.work-content-inner {
    width: min(calc(100% - 28px), 492px);
    margin-inline: auto;
}

.work-content-main ~ .site-footer {
    display: none;
}

.work-content-hero {
    padding: 34px 14px 32px;
    background:
        linear-gradient(
            180deg,
            #dff7ff 0%,
            #f3fcfb 55%,
            #fffdf8 100%
        );
    border-bottom: 1px solid var(--work-content-border-light);
}

.work-content-hero__copy {
    width: min(100%, 470px);
    margin-inline: auto;
    text-align: center;
}

.work-content-hero__eyebrow {
    margin: 0;
    color: var(--work-content-turquoise-dark);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.work-content-hero h1 {
    margin: 7px 0 0;
    color: var(--work-content-deep);
    font-size: clamp(2rem, 9vw, 2.8rem);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: 0.02em;
}

.work-content-hero__catch {
    margin: 13px 0 0;
    color: var(--work-content-turquoise-dark);
    font-size: clamp(1.35rem, 6.2vw, 1.85rem);
    font-weight: 900;
    line-height: 1.55;
}

.work-content-hero__lead {
    margin: 15px auto 0;
    color: var(--work-content-text);
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.9;
}

.work-content-hero__figure {
    width: min(100%, 480px);
    margin: 24px auto 0;
    overflow: hidden;
    background: var(--work-content-white);
    border: 2px solid var(--work-content-border);
    border-radius: 24px;
}

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

.work-content-hero__navigation {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 11px;
    width: min(100%, 430px);
    margin: 20px auto 0;
}

.work-content-hero__navigation a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 10px 18px;
    color: var(--work-content-white);
    font-size: 0.96rem;
    font-weight: 900;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    background: var(--work-content-turquoise-dark);
    border: 2px solid var(--work-content-white);
    border-radius: 999px;
}

.work-content-hero__navigation a:last-child {
    color: var(--work-content-deep);
    background: var(--work-content-mint);
    border-color: var(--work-content-border);
}

.work-content-page a:focus-visible {
    outline: 3px solid var(--work-content-deep);
    outline-offset: 3px;
}

.work-content-section {
    padding: 54px 0 60px;
    border-bottom: 1px solid var(--work-content-border-light);
}

.work-content-section--do {
    background:
        linear-gradient(
            180deg,
            #fffdf8 0%,
            #edf9ff 100%
        );
}

.work-content-section--not-do {
    background:
        linear-gradient(
            180deg,
            #eefbf7 0%,
            #f8f5eb 100%
        );
}

.work-content-heading {
    text-align: center;
}

.work-content-heading__number {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin: 0 auto;
    color: var(--work-content-white);
    font-size: 1.2rem;
    font-weight: 900;
    background: var(--work-content-turquoise);
    border-radius: 50%;
}

.work-content-section--not-do
.work-content-heading__number {
    background: #55bca6;
}

.work-content-heading h2 {
    margin: 10px 0 0;
    color: var(--work-content-deep);
    font-size: clamp(1.62rem, 7vw, 2.1rem);
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: 0.01em;
    text-wrap: balance;
}

.work-content-heading > p:last-child {
    width: min(100%, 430px);
    margin: 14px auto 0;
    color: var(--work-content-text);
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.9;
}

.work-content-detail-list {
    display: grid;
    gap: 18px;
    margin-top: 30px;
}

.work-content-detail {
    position: relative;
    padding: 24px 19px 23px;
    background: rgba(255, 255, 255, 0.92);
    border: 2px solid var(--work-content-border);
    border-radius: 23px;
}

.work-content-detail--prohibited {
    border-color: #9bd7ca;
}

.work-content-detail__number {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin: 0 0 13px;
    color: var(--work-content-white);
    font-size: 0.9rem;
    font-weight: 900;
    background: var(--work-content-turquoise);
    border-radius: 50%;
}

.work-content-detail--prohibited
.work-content-detail__number {
    background: #55bca6;
}

.work-content-detail__body h3 {
    margin: 0;
    color: var(--work-content-deep);
    font-size: 1.13rem;
    font-weight: 900;
    line-height: 1.65;
}

.work-content-detail__body p {
    margin: 12px 0 0;
    color: var(--work-content-text);
    font-size: 0.91rem;
    font-weight: 650;
    line-height: 1.9;
}

.work-content-detail__body p:first-of-type {
    padding-top: 13px;
    border-top: 1px solid var(--work-content-border-light);
}

.work-content-consultation {
    padding: 50px 0 56px;
    background:
        linear-gradient(
            180deg,
            #f6fbf5 0%,
            #fffaf0 100%
        );
}

.work-content-consultation__box {
    padding: 27px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--work-content-border);
    border-radius: 24px;
}

.work-content-consultation__eyebrow {
    margin: 0;
    color: var(--work-content-turquoise-dark);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.work-content-consultation h2 {
    margin: 9px 0 0;
    color: var(--work-content-deep);
    font-size: clamp(1.45rem, 6.4vw, 1.9rem);
    font-weight: 900;
    line-height: 1.55;
}

.work-content-consultation__box > p:not(
    .work-content-consultation__eyebrow
) {
    margin: 16px 0 0;
    color: var(--work-content-text);
    font-size: 0.93rem;
    font-weight: 700;
    line-height: 1.9;
}

@media (min-width: 700px) {
    .work-content-hero {
        padding-top: 42px;
        padding-bottom: 40px;
    }

    .work-content-section {
        padding-top: 66px;
        padding-bottom: 72px;
    }

    .work-content-detail {
        padding: 28px 24px 27px;
    }
}

/* ARIEL WORK CONTENT MANUAL VISUAL START 20260803 */
.work-content-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;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.work-content-detail--visual {
    padding: 0;
    overflow: hidden;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.work-content-detail-visual__figure {
    width: 100%;
    margin: 0;
}

.work-content-detail-visual__image {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
}
/* ARIEL WORK CONTENT MANUAL VISUAL END 20260803 */

/* ARIEL WORK CONTENT HERO VISUAL START 20260803 */
.work-content-hero--visual {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #f7fffe;
    border: 0;
}

.work-content-hero-visual__figure {
    width: 100%;
    margin: 0;
}

.work-content-hero-visual__image {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
}
/* ARIEL WORK CONTENT HERO VISUAL END 20260803 */

/* ARIEL WORK CONTENT VISUAL FULL BLEED START 20260803 */
.work-content-detail--visual {
    width: calc(100% + 28px);
    margin-right: -14px;
    margin-left: -14px;
}

.work-content-detail--visual .work-content-detail-visual__figure,
.work-content-detail--visual .work-content-detail-visual__image {
    width: 100%;
}
/* ARIEL WORK CONTENT VISUAL FULL BLEED END 20260803 */

/* ARIEL WORK CONTENT DO INTRO HIDDEN START 20260803 */
.work-content-section--do {
    padding-top: 0;
}

.work-content-section--do .work-content-detail-list {
    margin-top: 0;
}
/* ARIEL WORK CONTENT DO INTRO HIDDEN END 20260803 */

/* ARIEL WORK CONTENT APPROVED CONSULTATION VISUAL START 20260804 */
.work-content-consultation--visual {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #f7fffe;
}

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

.work-content-consultation-visual__image {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
}
/* ARIEL WORK CONTENT APPROVED CONSULTATION VISUAL END 20260804 */

/* ARIEL WORK CONTENT NOT DO INTRO VISUAL START 20260804 */
.work-content-section--not-do {
    padding-top: 0;
}

.work-content-heading--not-do-visual {
    width: calc(100% + 28px);
    margin-right: -14px;
    margin-left: -14px;
    text-align: initial;
}

.work-content-not-do-intro-visual__figure {
    width: 100%;
    margin: 0;
}

.work-content-not-do-intro-visual__image {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
}

.work-content-heading--not-do-visual
+ .work-content-detail-list {
    margin-top: 18px;
}
/* ARIEL WORK CONTENT NOT DO INTRO VISUAL END 20260804 */



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

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

.work-content-related-link--beginner {
    background: #fffaf1;
}

.work-content-related-link--safety {
    background: #f2fbf8;
}

.work-content-related-link--flow {
    background: #f5fbff;
}

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

.work-content-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-content-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-content-border);
    border-radius: 14px;
}

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

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

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