@charset "utf-8";
/* =========================================================================================
PAGE HEADER
=========================================================================================*/
body.work .page-header {
    background: #2eb6aa;
}

/* =========================================================================================
WORK
=========================================================================================*/
section.work .inner h2 {
    margin-bottom: 100px;
    translate: 10% 0;
}
section.work .inner > p.explanation {
    margin-bottom: 2em;
}
@media only screen and (max-width: 980px) {
    section.work .inner h2 {
        translate: 5% 0;
    }
}
@media only screen and (max-width: 820px) {
    section.work .inner h2 {
        margin-bottom: 50px;
        translate: 2.5% 0;
    }
    section.work .inner > p.explanation {
        margin-bottom: 0;
    }
}
@media only screen and (max-width: 468px) {
}

/*program*/
section.work .program {
    padding-block: 100px;
    position: relative;
    z-index: 5;
}
section.work .program .box {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 35px;
}
section.work .program .box .title {
    width: 385px;
}
section.work .program .box .title h3 {
    color: #30b7ab;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.75em;
    margin-bottom: 50px;
}
section.work .program .box .title h3 span.number {
    font-size: 58px;
    white-space: nowrap;
}
section.work .program .box .title h3 span.number b {
    font-family: "Unbounded", sans-serif;
    font-size: 140px;
    font-weight: bold;
    line-height: 1;
}
section.work .program .box .title h3 span.text {
    color: var(--base-font-color);
    font-size: clamp(1.125rem, calc(0.914rem + 0.899vw), 1.375rem); /* min: 18px, max: 22px */
    width: 100%;
}
section.work .program .box .title .image {
    width: 200%;
    translate: -50% 0;
}
section.work .program .box .text {
    font-size: clamp(1rem, calc(0.895rem + 0.449vw), 1.125rem); /* min: 16px, max: 18px */
    width: calc(100% - 35px - 385px);
}
section.work .program .box .text h4 {
    color: #2bcdbf;
    font-size: clamp(1.5rem, calc(1.184rem + 1.348vw), 1.875rem); /* min: 24px, max: 30px */
    font-weight: var(--black-font-weight);
    line-height: 1.5;
    letter-spacing: 0;
    margin-bottom: 0.5em;
}
section.work .program .box .text .point {
    margin-block: -0.5em 1em;
}
section.work .program .box .text .point h5 {
    width: 100%;
    max-width: 170px;
    translate: 0 50%;
    position: relative;
    z-index: -1;
}
section.work .program .box .text .info-box {
    background: #fff;
    border: 3px solid #4d4d4d;
    padding: 40px 7.5% 40px 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 5%;
    position: relative;
    z-index: 1;
}
section.work .program .box .text .info-box::before {
    content: "";
    width: 10px;
    height: calc(100% - 25px - 25px);
    background-image: radial-gradient(circle, #4d4d4d 3px, transparent 3px);
    background-position: left top;
    background-repeat: repeat-y;
    background-size: 5px 12px;
    position: absolute;
    top: 50%;
    left: 20px;
    translate: 0 -50%;
    z-index: 1;
}
section.work .program .box .text .info-box dl:nth-of-type(odd) {
    width: 150px;
}
section.work .program .box .text .info-box dl:nth-of-type(even) {
    width: calc(100% - 5% - 150px);
}
section.work .program .box .text .info-box dt {
    font-weight: var(--bold-font-weight);
}
section.work .program .box .text .info-box dt::before {
    content: "";
    display: inline-block;
    width: 0.8em;
    aspect-ratio: 1 / 1;
    background: var(--base-font-color);
    margin-right: 0.25em;
}
section.work .program .box .text .info-box dd {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: left;
    gap: 0 1em;
}
@media only screen and (max-width: 980px) {
    section.work .program .box .title,
    section.work .program .box .text {
        width: 100%;
    }
    section.work .program .box .title .image {
        width: 100%;
        translate: 0;
    }
}
@media only screen and (max-width: 820px) {
    section.work .program {
        padding-block: 75px;
    }
}
@media only screen and (max-width: 468px) {
    section.work .program {
        padding-block: 50px;
    }
    section.work .program .box .title h3 span.number {
        font-size: 40px;
    }
    section.work .program .box .title h3 span.number b {
        font-size: 100px;
    }
    section.work .program .box .text .info-box dl {
        width: 100% !important;
    }
}

/*color*/
section.work .program:nth-of-type(even)::before {
    content: "";
    width: 120vw;
    min-width: 400px;
    height: 100%;
    background: #e7f7f6;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: -1;
    transform: rotate(5deg);
}
section.work .program:nth-of-type(even) .box {
    flex-direction: row-reverse;
}
section.work .program:nth-of-type(even) .box .title .image {
    translate: 0;
}
section.work .program:nth-of-type(even) .box .title h3,
section.work .program:nth-of-type(even) .box .text h4 {
    color: #006cc1;
}
