:root {
    --color-ink: #17212b;
    --color-text: #334155;
    --color-muted: #6b7a90;
    --color-line: #d9e3ea;
    --color-bg: #ffffff;
    --color-soft: #f4f8fb;
    --color-deep: #0f4d63;
    --color-blue: #48a8d8;
    --color-pink: #e95c91;
    --color-yellow: #f6d75f;
    --color-rainbow-blue: #59bded;
    --color-rainbow-pink: #ff99e7;
    --color-rainbow-yellow: #fff072;
    --rainbow-gradient: linear-gradient(100deg, var(--color-rainbow-blue) 0%, var(--color-rainbow-pink) 52%, var(--color-rainbow-yellow) 100%);
    --rainbow-shadow: 0 14px 26px rgba(89, 189, 237, .2), 0 8px 22px rgba(255, 153, 231, .2);
    --shadow: 0 18px 48px rgba(19, 47, 69, .12);
    --font-sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, sans-serif;
    --font-en: Arial, Helvetica, sans-serif;
}

/* Good Work inspired privacy policy */
.privacy-breadcrumb {
    width: 100%;
    padding: 10px 0;
    background: #efefef;
}

.privacy-breadcrumb > div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: min(90%, 1320px);
    margin: 0 auto;
    color: #555;
    font-size: 13px;
    line-height: 1.5;
}

.privacy-breadcrumb a {
    color: #333;
    text-decoration: none;
    transition: color .2s ease;
}

.privacy-breadcrumb a:hover,
.privacy-breadcrumb a:focus {
    color: #f39b17;
}

.privacy-policy {
    padding: 0 0 clamp(88px, 10vw, 150px);
    background: #fff;
}

.privacy-policy__header {
    width: min(90%, 1320px);
    margin: 0 auto;
    padding: clamp(76px, 9vw, 132px) 0 clamp(72px, 8vw, 112px);
}

.privacy-policy__header > p {
    margin: 0;
    color: #222;
    font-family: var(--font-en);
    font-size: clamp(62px, 10vw, 150px);
    font-weight: 700;
    line-height: .88;
    letter-spacing: -.045em;
}

.privacy-policy__header h1 {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 15px 8px;
    margin: 24px 0 0;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .05em;
    background: #f39b17;
    border-radius: 999px;
}

.privacy-policy__body {
    width: min(90%, 1120px);
    margin: 0 auto;
}

.privacy-policy__section {
    padding: clamp(48px, 6vw, 78px) 0;
    border-top: 1px dashed #c8c8c8;
}

.privacy-policy__section:first-child {
    padding-top: 0;
    border-top: 0;
}

.privacy-policy__eyebrow {
    margin: 0 0 12px;
    color: #f39b17;
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.privacy-policy__section h2 {
    margin: 0 0 30px;
    color: #252829;
    font-size: clamp(24px, 2.5vw, 34px);
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: .02em;
}

.privacy-policy__text {
    color: #333;
    font-size: 15px;
    line-height: 1.9;
}

.privacy-policy__text p {
    margin: 0;
}

.privacy-policy__text p + p {
    margin-top: 14px;
}

.privacy-policy__text h3 {
    margin: 34px 0 8px;
    color: #252829;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.6;
}

.privacy-policy__text h3:first-child {
    margin-top: 0;
}

.privacy-policy__side {
    position: fixed;
    top: 50%;
    right: 22px;
    z-index: 10;
    height: auto;
    margin: 0;
    color: #555;
    font-family: var(--font-en);
    font-size: 12px;
    letter-spacing: .06em;
    writing-mode: vertical-rl;
    transform: translateY(-50%);
}

@media (max-width: 760px) {
    .privacy-breadcrumb > div,
    .privacy-policy__header,
    .privacy-policy__body {
        width: calc(100% - 40px);
    }

    .privacy-policy__header {
        padding: 56px 0 62px;
    }

    .privacy-policy__header > p {
        font-size: clamp(50px, 16vw, 78px);
        line-height: .94;
        overflow-wrap: anywhere;
    }

    .privacy-policy__header h1 {
        margin-top: 18px;
        font-size: 13px;
    }

    .privacy-policy__section {
        padding: 46px 0;
    }

    .privacy-policy__section h2 {
        margin-bottom: 24px;
        font-size: 23px;
    }

    .privacy-policy__text {
        font-size: 14px;
        line-height: 1.85;
    }

    .privacy-policy__text h3 {
        margin-top: 28px;
        font-size: 16px;
    }

    .privacy-policy__side {
        display: none;
    }
}

/* 2026 white editorial refresh */
:root {
    --color-accent: #ef5a4f;
    --color-accent-dark: #d9483e;
    --color-ink: #1f2528;
    --color-text: #4d5559;
    --color-line: #e7e8e8;
    --color-soft: #f7f7f5;
}

body {
    color: var(--color-text);
    background: #fff;
}

html.menu-open {
    overflow: hidden;
}

html.menu-open::before {
    position: fixed;
    inset: 0;
    z-index: 48;
    content: "";
    background: rgba(23, 28, 30, .34);
    opacity: 1;
    backdrop-filter: blur(5px);
}

.site-header,
.is-scrolled .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 50;
    min-height: 104px;
    padding: 0 clamp(20px, 3.6vw, 60px);
    background: transparent;
    border: 0;
    box-shadow: none;
    pointer-events: none;
}

.is-scrolled .site-header {
    min-height: 82px;
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid rgba(31, 37, 40, .07);
    backdrop-filter: blur(16px);
}

.site-logo,
.menu-toggle,
.site-nav {
    pointer-events: auto;
}

.site-logo {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    width: auto;
    color: var(--color-ink);
    text-decoration: none;
}

.site-logo > img {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.site-logo__mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-style: italic;
    line-height: 1;
    background: var(--color-accent);
    border-radius: 50% 50% 50% 12%;
    transform: rotate(-7deg);
}

.site-logo__mark + .site-logo__wordmark {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: .08em;
}

.menu-toggle {
    position: fixed;
    top: 18px;
    right: clamp(16px, 2.4vw, 34px);
    z-index: 53;
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    padding: 0;
    color: #fff;
    background: var(--color-ink);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: color .3s ease, background-color .3s ease, transform .3s ease;
}

.menu-toggle:hover {
    background: var(--color-accent);
    transform: scale(1.04);
}

.menu-toggle__label {
    position: absolute;
    right: 0;
    bottom: -22px;
    left: 0;
    width: auto;
    height: auto;
    overflow: visible;
    color: var(--color-ink);
    font-family: var(--font-en);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    clip: auto;
    text-align: center;
    text-transform: uppercase;
}

.menu-toggle__icon {
    position: relative;
    display: block;
    width: 25px;
    height: 14px;
    background: transparent;
}

.menu-toggle__icon::after {
    content: none;
}

.menu-toggle__icon i {
    position: absolute;
    left: 0;
    width: 25px;
    height: 1px;
    background: currentColor;
    transition: top .3s ease, transform .3s ease;
}

.menu-toggle__icon i:first-child {
    top: 3px;
}

.menu-toggle__icon i:last-child {
    top: 11px;
}

.menu-open .menu-toggle {
    color: var(--color-ink);
    background: #fff;
    border: 1px solid var(--color-line);
}

.menu-open .menu-toggle__label {
    color: #fff;
}

.menu-open .menu-toggle__icon {
    transform: none;
}

.menu-open .menu-toggle__icon i:first-child,
.menu-open .menu-toggle__icon i:last-child {
    top: 7px;
}

.menu-open .menu-toggle__icon i:first-child {
    transform: rotate(45deg);
}

.menu-open .menu-toggle__icon i:last-child {
    transform: rotate(-45deg);
}

.site-nav {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 51;
    display: block;
    width: min(640px, 100%);
    height: 100dvh;
    padding: clamp(86px, 12vh, 126px) clamp(34px, 6vw, 82px) 56px;
    overflow-y: auto;
    visibility: hidden;
    background: #fff;
    box-shadow: -30px 0 70px rgba(22, 28, 30, .12);
    opacity: 0;
    transform: translateX(100%);
    transition: transform .48s cubic-bezier(.76, 0, .24, 1), opacity .35s ease, visibility .48s;
}

.menu-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.site-nav__eyebrow {
    margin: 0 0 26px;
    color: var(--color-accent);
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.site-nav > ul {
    display: grid;
    gap: 0;
    align-items: stretch;
}

.site-nav > ul > li {
    border-top: 1px solid var(--color-line);
}

.site-nav > ul > li:last-child {
    border-bottom: 1px solid var(--color-line);
}

.site-nav > ul > li > a {
    justify-content: space-between;
    width: 100%;
    min-height: 72px;
    color: var(--color-ink);
    font-size: clamp(20px, 2.1vw, 28px);
    font-weight: 500;
    letter-spacing: .02em;
}

.site-nav > ul > li > a::before {
    content: none;
}

.site-nav .has-submenu > a::after {
    width: 10px;
    height: 10px;
    margin-right: 4px;
    border-color: var(--color-accent);
}

.site-nav .nav-item--contact > a {
    justify-content: space-between;
    min-width: 0;
    min-height: 72px;
    padding: 0;
    color: var(--color-ink);
    background: transparent;
    border-radius: 0;
}

.site-nav .nav-item--contact > a::after {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    content: "↗";
    color: #fff;
    font-size: 16px;
    background: var(--color-accent);
    border-radius: 50%;
}

.site-nav .sub-menu {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    max-width: none;
    padding: 0 0 20px 22px;
    visibility: visible;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
    backdrop-filter: none;
}

.site-nav .sub-menu::before {
    content: none;
}

.site-nav .has-submenu:hover > .sub-menu,
.site-nav .has-submenu:focus-within > .sub-menu {
    display: none;
    transform: none;
}

.site-nav .has-submenu.is-open > .sub-menu {
    display: grid;
}

.site-nav .sub-menu a {
    min-height: 36px;
    padding: 0;
    color: #777f82;
    font-size: 13px;
    font-weight: 500;
    white-space: normal;
}

.site-nav .sub-menu a:hover,
.site-nav .sub-menu a:focus {
    padding-left: 8px;
    color: var(--color-accent);
    background: transparent;
}

.site-main,
.concept-section,
.gw-section,
.gw-section--about,
.gw-recruit,
.gw-news,
.page-hero,
.section,
.archive-news,
.recruit-message,
.recruit-strength,
.recruit-job,
.recruit-outline {
    background: #fff;
}

.top-visual {
    height: 100svh;
    min-height: 680px;
    background: #f5f5f3;
}

.top-visual__slide {
    align-items: center;
    padding: 118px clamp(24px, 6vw, 94px) 60px;
    background-position: center;
}

.top-visual__slide::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .82) 26%, rgba(255, 255, 255, .08) 58%, transparent 74%);
}

.top-visual__slide p {
    max-width: 660px;
    color: var(--color-ink);
    font-size: clamp(48px, 6.7vw, 98px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -.055em;
    text-shadow: none;
}

.concept-section {
    padding: clamp(96px, 12vw, 170px) 20px;
    border-bottom: 1px solid var(--color-line);
}

.concept-section__quote {
    color: var(--color-ink);
}

.gw-section,
.gw-recruit,
.gw-news,
.section {
    border-bottom: 1px solid var(--color-line);
}

.gw-section--about,
.gw-news,
.page-hero {
    background: var(--color-soft);
}

.gw-section--about .gw-section__image--responsive {
    order: 2;
}

.gw-section__image,
.gw-recruit__image,
.page-hero__media,
.section-visual,
.visual-card img,
.recruit-hero__image,
.recruit-wide-image,
.recruit-interview-card img {
    overflow: hidden;
    border-radius: 2px;
}

.gw-section__image img,
.gw-recruit__image img,
.page-hero__media img,
.section-visual img,
.visual-card img,
.recruit-hero__image img,
.recruit-wide-image img,
.recruit-interview-card img {
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.visual-card:hover img,
.recruit-interview-card:hover img {
    transform: scale(1.025);
}

.gw-section__repeat {
    color: rgba(31, 37, 40, .028);
}

.gw-section__label,
.gw-news__head h2,
.page-hero .section-label,
.section-label,
.recruit-kicker,
.recruit-section-label,
.recruit-title-block > p {
    color: var(--color-accent);
}

.gw-more::after,
.button::after,
.button--light::after,
.button--ghost::after {
    color: #fff;
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.page-breadcrumb,
.article-breadcrumb {
    padding-top: 130px;
}

.page-hero {
    padding-top: 74px;
}

.service-flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    padding: 0;
    margin: clamp(36px, 5vw, 72px) 0 0;
    list-style: none;
    background: var(--color-line);
    border: 1px solid var(--color-line);
}

.service-flow--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-flow li {
    display: grid;
    min-height: 220px;
    padding: clamp(24px, 3vw, 42px);
    background: #fff;
}

.service-flow span {
    color: var(--color-accent);
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
}

.service-flow strong {
    align-self: end;
    color: var(--color-ink);
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 500;
}

.service-flow small {
    margin-top: 8px;
    color: #4d5966;
    font-size: clamp(14px, 1.1vw, 15px);
    line-height: 1.8;
}

@media (max-width: 1180px) and (min-width: 981px) {
    .service-flow--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.site-logo--footer {
    width: auto;
}

.site-logo--footer > img {
    width: 170px;
    height: auto;
}

.site-logo--footer .site-logo__wordmark {
    color: #fff;
}

@media (max-width: 980px) {
    .site-header,
    .is-scrolled .site-header {
        min-height: 82px;
        padding: 0 20px;
    }

    .site-logo {
        width: auto;
    }

    .menu-toggle {
        top: 12px;
        right: 12px;
        width: 58px;
        height: 58px;
    }

    .menu-toggle__label {
        display: none;
    }

    .site-nav {
        inset: 0 0 0 auto;
        width: min(560px, 100%);
        padding: 94px 24px 42px;
    }

    .site-nav > ul > li > a {
        min-height: 64px;
        font-size: 21px;
    }

    .site-nav .nav-item--contact > a {
        min-height: 64px;
        margin-top: 0;
    }

    .top-visual__slide {
        padding-top: 100px;
        background-position: 60% center;
    }

    .service-flow {
        grid-template-columns: 1fr;
    }

    .service-flow li {
        min-height: 160px;
    }
}

@media (max-width: 640px) {
    .gw-section__image--responsive {
        display: block;
        order: 2;
    }

    .site-logo__mark {
        width: 32px;
        height: 32px;
        font-size: 17px;
    }

    .site-logo__mark + .site-logo__wordmark {
        font-size: 22px;
    }

    .top-visual {
        min-height: 620px;
    }

    .top-visual__slide {
        align-items: flex-end;
        padding: 92px 22px 74px;
        background-position: 66% center;
    }

    .top-visual__slide::before {
        background: linear-gradient(0deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .78) 33%, rgba(255, 255, 255, .04) 68%);
    }

    .top-visual__slide p {
        font-size: clamp(42px, 13vw, 62px);
    }

    .page-breadcrumb,
    .article-breadcrumb {
        padding-top: 100px;
    }

    .page-hero {
        padding-top: 50px;
    }
}

/* Keep the recruit title clear of the people in the hero illustration. */
@media (min-width: 768px) {
    .recruit-hero__title {
        max-width: 38%;
    }

    .recruit-hero .recruit-kicker {
        font-size: clamp(72px, 7.6vw, 108px);
        line-height: .86;
    }

    .recruit-hero__image {
        width: min(70vw, 1000px);
    }
}

/* Company office network */
.office-network {
    margin-top: clamp(68px, 8vw, 112px);
}

.office-network__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid #ccd5da;
}

.office-network__heading .section-label {
    margin: 0 0 8px;
}

.office-network__heading h3 {
    margin: 0;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.2;
}

.office-network__heading > p:last-child {
    margin: 0;
    color: #647784;
    font-size: 14px;
    line-height: 1.9;
}

.office-network__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 20px;
}

.office-network__card {
    --network-color: #e96f56;
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dce3e6;
    border-radius: 2px;
    box-shadow: 0 12px 36px rgba(24, 54, 72, .07);
}

.office-network__card:nth-child(2) {
    --network-color: #4b9fc2;
}

.office-network__card:nth-child(3) {
    --network-color: #e7ad32;
}

.office-network__card:nth-child(4) {
    --network-color: #a879b2;
}

.office-network__card:first-child {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
}

.office-network__card:first-child .office-network__card-heading {
    min-height: 108px;
}

.office-network__card:first-child ul {
    display: grid;
    align-content: center;
    padding-block: 16px;
}

.office-network__card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: var(--network-color);
    content: "";
}

.office-network__card-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 116px;
    padding: 28px 30px 24px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--network-color) 9%, #fff), #fff 68%);
}

.office-network__card-heading > span {
    color: color-mix(in srgb, var(--network-color) 78%, #263f4f);
    font-family: var(--font-en);
    font-size: 32px;
    font-weight: 300;
    line-height: 1;
}

.office-network__card-heading small {
    display: block;
    margin-bottom: 3px;
    color: var(--network-color);
    font-family: var(--font-en);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.office-network__card-heading h4 {
    margin: 0;
    color: #263f4f;
    font-size: 21px;
    line-height: 1.4;
}

.office-network__card ul {
    margin: 0;
    padding: 4px 30px 18px;
    list-style: none;
}

.office-network__card li {
    display: grid;
    grid-template-columns: 9px minmax(0, 1fr) auto;
    align-items: center;
    gap: 11px;
    min-height: 58px;
    border-top: 1px solid #e9edef;
}

.office-network__pin {
    width: 7px;
    height: 7px;
    background: var(--network-color);
    border-radius: 50%;
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--network-color) 14%, transparent);
}

.office-network__card li > strong {
    color: #314957;
    font-size: 15px;
}

.office-network__card a {
    color: #4e6471;
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.office-network__card a span {
    margin-right: 7px;
    color: var(--network-color);
    font-size: 9px;
    letter-spacing: .12em;
}

@media (max-width: 1024px) {
    .office-network__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .office-network__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }
}

@media (max-width: 760px) {
    .office-network__grid {
        grid-template-columns: 1fr;
    }

    .office-network__card:first-child {
        display: block;
        grid-column: auto;
    }
}

@media (max-width: 480px) {
    .office-network__card-heading {
        min-height: 100px;
        padding: 24px 22px 20px;
    }

    .office-network__card ul {
        padding: 4px 22px 14px;
    }

    .office-network__card li {
        grid-template-columns: 9px 1fr;
        padding: 13px 0;
    }

    .office-network__card a {
        grid-column: 2;
        margin-top: -7px;
    }
}

@layer editorial {

/* Site-wide editorial design system inspired by the selected reference. */
body {
    color: #333;
    background: #efefef;
    font-family: "Noto Sans JP", "Helvetica Neue", "Yu Gothic", YuGothic, sans-serif;
    font-size: 15px;
    line-height: 1.85;
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 50;
    min-height: 100px;
    padding: 0 30px;
    background: rgba(255, 255, 255, .82);
    border-bottom: 1px solid rgba(51, 51, 51, .08);
    backdrop-filter: blur(12px);
}

.is-scrolled .site-header {
    min-height: 76px;
    background: rgba(255, 255, 255, .96);
    box-shadow: none;
}

.site-logo {
    width: 200px;
    gap: 12px;
    color: #555;
    text-decoration: none;
}

.site-logo > img {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.site-logo__wordmark {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 29px;
    line-height: 1;
    letter-spacing: .12em;
}

.site-nav ul {
    gap: clamp(26px, 4vw, 62px);
}

.site-nav a {
    min-height: 100px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .03em;
}

.site-nav > ul > li > a::before {
    bottom: 30px;
}

.site-nav .nav-item--contact > a {
    min-width: 104px;
    min-height: 38px;
    padding: 0 22px;
    color: #fff;
    background: var(--color-deep);
    border-radius: 999px;
}

.site-nav .sub-menu {
    top: calc(100% - 16px);
    align-items: stretch;
    gap: 0;
    width: 190px;
    min-width: 190px;
    max-width: 190px;
    padding: 4px 0;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .08);
}

.site-nav .sub-menu li {
    width: 100%;
}

.site-nav .sub-menu a {
    box-sizing: border-box;
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
    line-height: 1.5;
    white-space: normal;
}

.site-main {
    background: #fff;
}

.top-visual {
    height: 100vh;
    min-height: 680px;
}

.top-visual__slide {
    padding: 130px 5vw 70px;
}

.top-visual__slide::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, 0) 68%);
}

.top-visual__slide p {
    font-size: clamp(58px, 8vw, 112px);
    font-weight: 600;
    line-height: .92;
    letter-spacing: -.04em;
}

.concept-section {
    padding: 100px 20px;
    background: #f7f7f7;
}

.concept-section__quote {
    margin-bottom: 38px;
    font-size: clamp(24px, 2.6vw, 34px);
    font-weight: 500;
}

.concept-section__body {
    font-size: 15px;
    line-height: 2.15;
}

.gw-section {
    min-height: 720px;
    padding: 120px 0;
    background: #fff;
}

.gw-section--about {
    background: #f7f7f7;
}

.gw-section__inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
    width: min(1152px, calc(100% - 64px));
}

.gw-section--about .gw-section__image--pc {
    order: 2;
}

.gw-section--about .gw-section__content {
    order: 1;
}

.gw-section__repeat {
    top: -88px;
    left: -4vw;
    color: rgba(51, 51, 51, .035);
    font-size: clamp(82px, 15vw, 200px);
    font-weight: 500;
    letter-spacing: -.05em;
}

.gw-section__image {
    box-shadow: none;
}

.gw-section__image img {
    height: 500px;
}

.gw-section__label {
    margin-bottom: 12px;
    color: #333;
    font-size: clamp(46px, 5.4vw, 72px);
    font-weight: 500;
    letter-spacing: -.04em;
}

.gw-section__content h2,
.gw-recruit__text h2 {
    font-size: clamp(20px, 2.3vw, 30px);
    font-weight: 500;
}

.gw-section__content hr,
.gw-recruit__text hr {
    width: 100%;
    margin: 28px 0;
    background: rgba(51, 51, 51, .28);
}

.gw-section__content > p:last-of-type,
.gw-recruit__text > p:last-of-type {
    font-size: 15px;
    line-height: 2;
}

.gw-more,
.button,
.button--light,
.button--ghost {
    min-height: 38px;
    padding: 0;
    color: #333;
    font-size: 12px;
    font-weight: 600;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.gw-more::after,
.button::after,
.button--light::after,
.button--ghost::after {
    width: 34px;
    height: 34px;
    margin-left: 20px;
    color: #333;
    background: transparent;
    border: 1px solid rgba(51, 51, 51, .45);
    border-radius: 50%;
}

.gw-more:hover,
.button:hover,
.button--light:hover,
.button--ghost:hover {
    color: var(--color-blue);
    filter: none;
    box-shadow: none;
    transform: none;
}

.gw-recruit {
    padding: 130px 0;
    background: #fff;
}

.gw-recruit__inner {
    width: min(1152px, calc(100% - 64px));
}

.gw-recruit__text {
    max-width: 760px;
}

.gw-recruit__image {
    box-shadow: none;
}

.gw-news {
    padding: 100px 0;
    background: #f7f7f7;
}

.gw-news__inner {
    width: min(1052px, calc(100% - 64px));
}

.gw-news__head h2 {
    font-size: clamp(58px, 7.8vw, 100px);
    font-weight: 500;
    letter-spacing: -.05em;
}

.gw-news__table td {
    padding: 22px 0;
}

.gw-news__table span {
    border-radius: 0;
}

.page-breadcrumb,
.article-breadcrumb {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 9px;
    align-items: center;
    width: min(1152px, calc(100% - 64px));
    padding-top: 118px;
    margin: 0 auto;
    color: #555;
    font-family: var(--font-en);
    font-size: 11px;
    white-space: nowrap;
}

.page-breadcrumb a,
.article-breadcrumb a {
    text-decoration: none;
}

.page-hero {
    display: block;
    min-height: 0;
    padding: 100px 0 0;
    background: #efefef;
}

.page-hero__copy {
    display: block;
    width: min(1152px, calc(100% - 64px));
    padding: 0;
    margin: 0 auto;
}

.page-hero .section-label {
    margin: 0;
    color: #333;
    font-size: clamp(64px, 8vw, 100px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -.05em;
    text-transform: none;
}

.page-hero h1 {
    margin-top: 14px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
}

.page-hero__copy > p:last-child {
    max-width: 620px;
    margin: 42px 0 0 auto;
    font-size: 16px;
    line-height: 1.9;
}

.page-hero__media {
    width: min(1152px, calc(100% - 64px));
    height: min(56vw, 660px);
    min-height: 460px;
    margin: 70px auto 0;
}

.page-hero__media img {
    animation: none;
}

.page-hero__media img[src*="service-hero-goodwork-v2"] {
    object-position: 85% center;
}

.page-hero--text-only {
    padding-bottom: clamp(76px, 10vw, 140px);
}

.section {
    padding: 110px 0;
    background: #fff;
}

.section--split:nth-of-type(even),
.image-section,
.page-post-content {
    background: #f7f7f7;
}

.section__inner {
    width: min(1052px, calc(100% - 64px));
}

.section-label {
    margin-bottom: 12px;
    color: #333;
    font-size: clamp(16px, 1.4vw, 19px);
    font-weight: 600;
    letter-spacing: .01em;
    text-transform: none;
}

.section-heading {
    max-width: 820px;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: clamp(28px, 2.8vw, 40px);
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: .01em;
    word-break: auto-phrase;
}

.section-heading h2 span {
    display: block;
}

.section-heading__button {
    margin-top: 32px;
}

.split-layout {
    grid-template-columns: minmax(200px, .55fr) minmax(0, 1fr);
    gap: clamp(48px, 8vw, 120px);
}

.section-body {
    font-size: 15px;
    line-height: 2;
}

.section--with-visual .split-layout {
    grid-template-columns: minmax(280px, .72fr) minmax(420px, 1fr);
    align-items: center;
}

.section--visual-reverse .section-heading {
    order: 2;
}

.section--visual-reverse .section-body {
    order: 1;
}

.section-visual {
    height: clamp(400px, 42vw, 560px);
    margin: 0;
    overflow: hidden;
}

.section-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-table div {
    grid-template-columns: 180px 1fr;
    padding: 25px 0;
}

.info-table dt {
    color: #333;
    font-weight: 500;
}

.card-grid,
.visual-card-grid,
.form-field-grid {
    gap: 1px;
    background: #d8d8d8;
    border: 1px solid #d8d8d8;
}

.visual-card-grid:has(> :only-child) {
    grid-template-columns: 1fr;
}

.visual-card-grid:has(> :nth-child(2):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.visual-card,
.form-field-card {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.feature-card {
    min-height: 250px;
    padding: 36px;
}

.feature-card span {
    color: #aaa;
    font-size: 26px;
    font-weight: 500;
}

.visual-card div {
    padding: 30px;
}

.visual-card h3,
.feature-card h3 {
    font-size: clamp(18px, 1.7vw, 22px);
    font-weight: 500;
    line-height: 1.55;
}

.image-section__media,
.recruit-outline__table {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.link-group-grid {
    gap: 1px;
    background: #d8d8d8;
}

.link-group-grid:has(> :only-child) {
    grid-template-columns: 1fr;
    background: transparent;
}

.link-group {
    padding: 30px;
    background: #fff;
    border-top: 0;
}

.cta-band {
    min-height: 330px;
    padding: 80px max(32px, calc((100vw - 1152px) / 2));
    color: #333;
    background: #efefef;
}

.cta-band h2 {
    max-width: 720px;
    font-size: clamp(28px, 3.4vw, 46px);
    font-weight: 500;
    line-height: 1.45;
}

.cta-band__body {
    max-width: 720px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .76);
    font-size: 15px;
    line-height: 1.8;
}

.recruit-hero {
    min-height: 860px;
    padding: 210px max(32px, calc((100vw - 1152px) / 2)) 0;
    background: #efefef;
}

.recruit-kicker,
.recruit-title-block p,
.recruit-section-label {
    color: #333;
    font-weight: 500;
}

.recruit-kicker {
    font-size: clamp(70px, 9vw, 112px);
    letter-spacing: -.05em;
}

.recruit-hero__entry {
    color: rgba(51, 51, 51, .08);
    font-weight: 500;
}

.recruit-hero__image {
    width: min(78vw, 1050px);
    height: 560px;
}

.recruit-message,
.recruit-strength,
.recruit-numbers,
.recruit-interview,
.recruit-job,
.recruit-outline,
.recruit-day,
.recruit-flow,
.recruit-entry,
.staff-detail-hero,
.staff-detail-body,
.other-staff,
.staff-detail-nav {
    width: min(1052px, calc(100% - 64px));
}

.recruit-strength__grid article,
.recruit-job__grid article,
.recruit-numbers__grid article,
.recruit-day__grid article,
.other-staff-card a {
    border: 1px solid #d8d8d8;
    border-radius: 0;
    box-shadow: none;
}

.recruit-title-block p,
.other-staff__title,
.staff-detail-hero__label {
    font-weight: 500;
    letter-spacing: -.04em;
}

.staff-detail-hero {
    padding-top: 180px;
}

.staff-detail-hero h1 {
    font-weight: 500;
}

.article-detail__header h1,
.article-related__heading p {
    font-weight: 500;
    letter-spacing: -.03em;
}

.article-detail__header {
    background: #efefef;
    box-shadow: 0 0 0 100vmax #efefef;
}

.article-detail__meta a,
.article-related__grid,
.article-related__card a {
    border-radius: 0;
    box-shadow: none;
}

.archive-hero {
    padding: 96px max(32px, calc((100vw - 1152px) / 2)) 82px;
    background: #efefef;
}

.archive-hero p {
    margin: 0;
    color: #333;
    font-family: var(--font-en);
    font-size: clamp(64px, 8vw, 100px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -.05em;
}

.archive-hero h1 {
    margin: 14px 0 0;
    font-size: 15px;
    font-weight: 500;
}

.archive-news {
    padding: 90px max(32px, calc((100vw - 1052px) / 2)) 130px;
    background: #fff;
}

.archive-news__filters {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px 24px;
    margin-bottom: 70px;
    font-family: var(--font-en);
    font-size: 13px;
}

.archive-news__filters p {
    margin: 0;
    font-weight: 600;
}

.archive-news__filters ul,
.archive-news__filters div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.archive-news__filters a {
    text-decoration: none;
}

.archive-news__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: #d8d8d8;
    border: 1px solid #d8d8d8;
}

.archive-news__card--featured {
    grid-column: 1 / -1;
}

.archive-news__card a {
    position: relative;
    display: block;
    min-height: 300px;
    padding: 38px;
    color: #333;
    text-decoration: none;
    background: #fff;
    transition: background-color .25s ease;
}

.archive-news__card--featured a {
    min-height: 360px;
}

.archive-news__card a:hover {
    background: #f7f7f7;
}

.archive-news__card time,
.archive-news__card span {
    display: inline-block;
    margin-right: 18px;
    font-family: var(--font-en);
    font-size: 13px;
}

.archive-news__card span {
    padding: 3px 10px;
    border: 1px solid #bbb;
}

.archive-news__card h2 {
    max-width: 760px;
    margin: 42px 0 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.65;
}

.archive-news__card i {
    position: absolute;
    right: 32px;
    bottom: 28px;
    font-size: 24px;
    font-style: normal;
}

.archive-news__pagination {
    margin-top: 60px;
}

.site-footer {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    min-height: 300px;
    padding: 72px max(32px, calc((100vw - 1152px) / 2));
    color: #fff;
    background: #1d1d1d;
}

.site-logo--footer {
    width: 170px;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.site-logo--footer > img {
    width: 100%;
    height: auto;
}

.site-footer__brand p {
    margin-top: 18px;
    color: #aaa;
    font-size: 12px;
}

.site-footer__main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 42px;
    align-items: start;
    align-content: start;
}

.site-footer__main-nav a {
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 600;
}

.site-footer__sub-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 26px;
    grid-column: 1 / -1;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.site-footer__sub-nav a,
.site-footer__copyright {
    color: #aaa;
    font-size: 11px;
}

.site-footer__copyright {
    position: absolute;
    right: max(32px, calc((100vw - 1152px) / 2));
    bottom: 72px;
}

@media (max-width: 980px) {
    .site-header {
        min-height: 72px;
        padding: 0 0 0 20px;
        /* Keep the fixed menu panel relative to the viewport, not this header. */
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .site-nav {
        inset: 72px 0 0;
    }

    .site-nav a {
        min-height: 64px;
    }

    .site-nav .sub-menu {
        width: 100%;
        min-width: 100%;
        max-width: none;
    }

    .site-nav .sub-menu a {
        min-height: 44px;
        padding: 0;
    }

    .site-nav .nav-item--contact > a {
        min-height: 54px;
        border-radius: 0;
    }

    .cta-band .button {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .gw-section__inner,
    .split-layout,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .gw-section--about .gw-section__content {
        order: 1;
    }

    .gw-section--about .gw-section__image--sp {
        order: 2;
    }

    .page-breadcrumb,
    .article-breadcrumb {
        padding-top: 92px;
    }

    .page-hero {
        padding-top: 70px;
    }

    .page-hero__media {
        height: 58vw;
        min-height: 360px;
    }

    .split-layout {
        gap: 36px;
    }

    .section--with-visual .split-layout {
        grid-template-columns: 1fr;
    }

    .section--visual-reverse .section-heading,
    .section--visual-reverse .section-body {
        order: initial;
    }

    .section-visual {
        height: min(120vw, 560px);
    }

    .site-footer__copyright {
        position: static;
    }
}

@media (max-width: 640px) {
    .site-logo {
        width: 158px;
    }

    .top-visual {
        min-height: 600px;
    }

    .top-visual__slide {
        padding: 110px 24px 80px;
    }

    .concept-section,
    .gw-section,
    .gw-recruit,
    .gw-news,
    .section,
    .archive-news {
        padding-top: 76px;
        padding-bottom: 76px;
    }

    .gw-section {
        min-height: 0;
    }

    .gw-section__inner,
    .gw-recruit__inner,
    .gw-news__inner,
    .page-breadcrumb,
    .article-breadcrumb,
    .page-hero__copy,
    .page-hero__media,
    .section__inner,
    .recruit-message,
    .recruit-strength,
    .recruit-numbers,
    .recruit-interview,
    .recruit-job,
    .recruit-outline,
    .recruit-day,
    .recruit-flow,
    .recruit-entry,
    .staff-detail-hero,
    .staff-detail-body,
    .other-staff,
    .staff-detail-nav {
        width: calc(100% - 40px);
    }

    .gw-section__label {
        font-size: 42px;
    }

    .gw-section__image img,
    .gw-recruit__image img {
        height: 300px;
    }

    .page-hero .section-label,
    .archive-hero p {
        font-size: 48px;
    }

    .section-label {
        margin-bottom: 10px;
        font-size: 15px;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-heading h2 {
        font-size: clamp(25px, 7.4vw, 31px);
        line-height: 1.55;
    }

    .page-hero__copy > p:last-child {
        margin-top: 30px;
        font-size: 15px;
    }

    .page-hero__media {
        height: 64vw;
        min-height: 260px;
        margin-top: 44px;
    }

    .card-grid,
    .visual-card-grid,
    .form-field-grid,
    .archive-news__grid {
        grid-template-columns: 1fr;
    }

    .info-table div {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .archive-hero {
        padding: 70px 20px 60px;
    }

    .archive-news {
        padding-right: 20px;
        padding-left: 20px;
    }

    .archive-news__filters {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .archive-news__filters p:not(:first-child) {
        margin-top: 18px;
    }

    .archive-news__card a,
    .archive-news__card--featured a {
        min-height: 260px;
        padding: 28px 24px;
    }

    .archive-news__card h2 {
        font-size: 17px;
    }

    .recruit-hero {
        min-height: 0;
        padding: 140px 20px 0;
    }

    .recruit-hero__image {
        width: calc(100% + 20px);
        height: auto;
    }

    .site-footer {
        gap: 38px;
        padding: 58px 20px;
    }

    .site-footer__main-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer__sub-nav {
        display: grid;
    }
}

}

/* Contact, staff inquiry and recruit entry — Good Work Communications inspired layout. */
.contact-page-breadcrumb {
    padding: 18px max(32px, calc((100% - 1152px) / 2));
    color: #777;
    background: #fff;
    font-size: 11px;
}

.contact-page-breadcrumb div {
    display: flex;
    gap: 12px;
    align-items: center;
}

.contact-page-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.contact-page-hero {
    padding: clamp(76px, 9vw, 132px) 0 clamp(56px, 5vw, 76px);
    background: #f3f3f3;
}

.contact-page-hero__inner {
    width: min(1152px, calc(100% - 64px));
    margin: 0 auto;
}

.contact-page-hero h1 {
    margin: 0;
    color: #202020;
    font-family: var(--font-en);
    font-size: clamp(72px, 9.1vw, 132px);
    font-weight: 500;
    line-height: .92;
    letter-spacing: -.055em;
}

.contact-page-hero__title {
    display: table;
    padding: 7px 20px 8px;
    margin: 28px 0 0;
    border-radius: 999px;
    color: #fff;
    background: #e86b48;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.contact-page-hero__lead {
    max-width: 820px;
    margin: 42px 0 0;
    color: #333;
    font-size: 15px;
    line-height: 2;
}

.page-post-content--contact {
    padding: 0 0 clamp(120px, 12vw, 190px);
    background: #f3f3f3;
}

.entry-requirements {
    padding: 0 0 clamp(76px, 8vw, 116px);
    background: #f3f3f3;
}

.entry-requirements__inner {
    display: grid;
    grid-template-columns: minmax(220px, .34fr) minmax(0, .66fr);
    gap: clamp(36px, 6vw, 86px);
    width: min(1152px, calc(100% - 64px));
    margin: 0 auto;
}

.entry-requirements__heading p {
    margin: 0;
    color: #e86b48;
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
}

.entry-requirements__heading h2 {
    margin: 14px 0 0;
    color: #202020;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.25;
}

.entry-requirements__table {
    margin: 0;
    border-top: 1px solid #c7c7c7;
}

.entry-requirements__table > div {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 28px;
    padding: 24px 0;
    border-bottom: 1px solid #c7c7c7;
}

.entry-requirements__table dt,
.entry-requirements__table dd {
    margin: 0;
}

.entry-requirements__table dt {
    color: #202020;
    font-weight: 800;
}

.entry-requirements__table dd {
    color: #4d4d4d;
    line-height: 1.9;
}

.entry-requirements__content {
    min-width: 0;
}

.entry-requirements__jobs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 16px;
}

.entry-requirements__job {
    display: flex;
    flex-direction: column;
    min-height: 300px;
    padding: 24px;
    background: #fff;
    border: 1px solid rgba(23, 33, 43, .14);
}

.entry-requirements__job h3 {
    margin: 18px 0 10px;
    color: var(--color-ink);
    font-size: 20px;
    line-height: 1.5;
}

.entry-requirements__job > p {
    margin: 0 0 22px;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.85;
}

.entry-requirements__location {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 20px;
    margin: 18px 0 0;
    padding: 20px 24px;
    color: var(--color-muted);
    background: #fff;
    border-left: 4px solid var(--color-blue);
}

.entry-requirements__location strong {
    color: var(--color-ink);
}

.entry-requirements__location span {
    min-width: 0;
}

@media (max-width: 980px) {
    .entry-requirements__inner,
    .entry-requirements__table > div {
        grid-template-columns: minmax(0, 1fr);
    }

    .entry-requirements__inner {
        gap: 30px;
    }

    .entry-requirements__table > div {
        gap: 8px;
    }

    .entry-requirements__jobs {
        grid-template-columns: 1fr;
    }

    .entry-requirements__location {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

.page-post-content--contact .section__inner {
    width: min(1152px, calc(100% - 64px));
}

.page-post-content--contact .content-entry--form {
    max-width: 820px;
    color: #292929;
}

.page-post-content--contact .smf-progress-tracker {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 0;
    margin: 0 0 84px;
    list-style: none;
    border-top: 1px solid #c7c7c7;
}

.page-post-content--contact .smf-progress-tracker__item {
    position: relative;
    padding: 24px 12px 0;
    color: #999;
    text-align: center;
}

.page-post-content--contact .smf-progress-tracker__item::before {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    content: "";
}

.page-post-content--contact .smf-progress-tracker__item:first-child {
    color: #222;
}

.page-post-content--contact .smf-progress-tracker__item:first-child::before {
    background: #e86b48;
}

.page-post-content--contact .smf-progress-tracker__item__number {
    margin-bottom: 7px;
    font-family: var(--font-en);
    font-size: 12px;
}

.page-post-content--contact .smf-progress-tracker__item__text {
    font-size: 12px;
    font-weight: 600;
}

.page-post-content--contact .smf-form--business .smf-item,
.page-post-content--contact .smf-item {
    display: block;
    padding: 0;
    margin: 0 0 50px;
    border: 0;
}

.page-post-content--contact .smf-form--business .smf-item__col,
.page-post-content--contact .smf-item__col {
    display: block;
    flex: none !important;
    width: 100% !important;
    max-width: none !important;
    padding: 0;
    border: 0 !important;
    background: transparent !important;
}

.page-post-content--contact .smf-item__col--controls {
    margin-top: 15px !important;
}

.page-post-content--contact .smf-item__label {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.7;
}

.page-post-content--contact .smf-item__label__text {
    letter-spacing: .02em;
}

.page-post-content--contact .smf-item__description {
    margin-top: 9px;
    color: #777;
    font-size: 12px;
}

.page-post-content--contact .smf-item__description a {
    color: #333;
    text-underline-offset: 4px;
}

.page-post-content--contact .smf-text-control,
.page-post-content--contact .smf-textarea-control,
.page-post-content--contact .smf-select-control {
    display: block;
    width: 100%;
}

.page-post-content--contact :is(
    .smf-text-control__control,
    .smf-textarea-control__control,
    .smf-select-control__control,
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    select,
    textarea
) {
    width: 100%;
    max-width: none;
    padding: 15px 18px;
    border: 1px solid #a9a9a9;
    border-radius: 0;
    color: #222;
    background: #fff;
    box-shadow: none;
    font: inherit;
}

.page-post-content--contact :is(
    .smf-text-control__control,
    .smf-select-control__control,
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    select
) {
    min-height: 56px;
}

.page-post-content--contact :is(.smf-textarea-control__control, textarea) {
    min-height: 220px;
    resize: vertical;
}

.page-post-content--contact .smf-radio-buttons-control__control,
.page-post-content--contact .smf-checkboxes-control__control {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 34px;
}

.page-post-content--contact .smf-radio-button-control,
.page-post-content--contact .smf-checkbox-control {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    font-size: 14px;
}

.page-post-content--contact input[type="radio"],
.page-post-content--contact input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: #e86b48;
}

.page-post-content--contact .smf-action {
    margin-top: 70px;
    text-align: center;
}

.page-post-content--contact .smf-action .smf-button-control__control,
.page-post-content--contact .smf-action button,
.page-post-content--contact .smf-action input[type="submit"] {
    min-width: 300px;
    min-height: 62px;
    padding: 16px 44px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: #dca62b;
    box-shadow: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.contact-page-side {
    position: fixed;
    z-index: 3;
    top: 50%;
    right: 18px;
    margin: 0;
    color: #777;
    font-family: var(--font-en);
    font-size: 11px;
    letter-spacing: .08em;
    writing-mode: vertical-rl;
    pointer-events: none;
}

@media (max-width: 767px) {
    .contact-page-breadcrumb {
        padding: 14px 20px;
    }

    .contact-page-hero {
        padding: 62px 0 72px;
    }

    .contact-page-hero__inner,
    .page-post-content--contact .section__inner {
        width: calc(100% - 40px);
    }

    .contact-page-hero h1 {
        font-size: clamp(54px, 18vw, 76px);
    }

    .contact-page-hero__title {
        padding: 6px 16px 7px;
        margin-top: 22px;
        font-size: 12px;
    }

    .contact-page-hero__lead {
        margin-top: 38px;
        font-size: 14px;
        line-height: 1.9;
    }

    .page-post-content--contact {
        padding-bottom: 110px;
    }

    .page-post-content--contact .smf-progress-tracker {
        margin-bottom: 62px;
    }

    .page-post-content--contact .smf-progress-tracker__item {
        padding: 18px 4px 0;
    }

    .page-post-content--contact .smf-item {
        margin-bottom: 40px;
    }

    .page-post-content--contact .smf-radio-buttons-control__control,
    .page-post-content--contact .smf-checkboxes-control__control {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .page-post-content--contact .smf-action .smf-button-control__control,
    .page-post-content--contact .smf-action button,
    .page-post-content--contact .smf-action input[type="submit"] {
        width: 100%;
        min-width: 0;
    }

    .contact-page-side {
        display: none;
    }
}

/* Sitemap — same restrained visual language as the reference contact family. */
.sitemap-page-hero {
    padding-bottom: clamp(82px, 9vw, 126px);
}

.sitemap-page-hero h1 {
    text-transform: lowercase;
}

.sitemap-page-links {
    padding: 0 0 clamp(130px, 13vw, 190px);
    background: #f3f3f3;
}

.sitemap-page-links__inner {
    display: grid;
    gap: clamp(54px, 6vw, 82px);
    width: min(1152px, calc(100% - 64px));
    margin: 0 auto;
}

.sitemap-page-group {
    max-width: 820px;
}

.sitemap-page-group h2 {
    padding: 2px 0 2px 14px;
    margin: 0 0 25px;
    border-left: 4px solid #e4a82a;
    color: #292929;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.6;
}

.sitemap-page-group ul {
    display: grid;
    gap: 0;
    padding: 0 0 0 24px;
    margin: 0;
    list-style: none;
}

.sitemap-page-group li {
    border-bottom: 1px solid #d4d4d4;
}

.sitemap-page-group a {
    position: relative;
    display: block;
    padding: 17px 38px 17px 20px;
    color: #333;
    font-size: 15px;
    line-height: 1.7;
    text-decoration: none;
    transition: color .2s ease, padding-left .2s ease;
}

.sitemap-page-group a::before {
    position: absolute;
    top: 27px;
    left: 2px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #e4a82a;
    content: "";
}

.sitemap-page-group a::after {
    position: absolute;
    top: 50%;
    right: 8px;
    color: #aaa;
    font-family: var(--font-en);
    content: "→";
    transform: translateY(-50%);
}

.sitemap-page-group a:hover {
    padding-left: 26px;
    color: #c98d12;
}

@media (max-width: 767px) {
    .sitemap-page-hero {
        padding-bottom: 72px;
    }

    .sitemap-page-links {
        padding-bottom: 110px;
    }

    .sitemap-page-links__inner {
        gap: 54px;
        width: calc(100% - 40px);
    }

    .sitemap-page-group h2 {
        font-size: 17px;
    }

    .sitemap-page-group ul {
        padding-left: 12px;
    }

    .sitemap-page-group a {
        padding-top: 15px;
        padding-bottom: 15px;
        font-size: 14px;
    }

    .sitemap-page-group a::before {
        top: 25px;
    }
}

@layer legacy {

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--color-text);
    background: var(--color-bg);
    font-family: var(--font-sans);
    line-height: 1.8;
    overflow-x: hidden;
}

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

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 88px;
    padding: 0 0 0 clamp(24px, 4vw, 64px);
    background: #fff;
    border-bottom: 1px solid #eef0f2;
    transition: background-color .35s ease, box-shadow .35s ease, min-height .35s ease;
}

.is-scrolled .site-header {
    min-height: 70px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(19, 47, 69, .08);
}

.site-logo {
    display: inline-flex;
    align-items: center;
    width: 178px;
}

.site-logo img {
    width: 100%;
    height: auto;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.4vw, 42px);
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-nav li {
    position: relative;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 88px;
    color: var(--color-ink);
    font-family: var(--font-en);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.site-nav > ul > li > a::before {
    position: absolute;
    right: 0;
    bottom: 22px;
    left: 0;
    height: 1px;
    content: "";
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s ease;
}

.site-nav > ul > li > a:hover::before,
.site-nav > ul > li > a:focus::before {
    transform: scaleX(1);
    transform-origin: left;
}

.site-nav .nav-item--contact > a {
    min-width: 150px;
    padding: 0 32px;
    color: #fff;
    background: #15191d;
}

.site-nav .nav-item--contact > a::before {
    content: none;
}

.menu-toggle {
    display: none;
}

.site-nav .has-submenu > a::after {
    width: 6px;
    height: 6px;
    margin-left: 8px;
    content: "";
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform .25s ease;
}

.site-nav .sub-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    z-index: 30;
    display: grid;
    gap: 0;
    min-width: 230px;
    padding: 8px 0;
    visibility: hidden;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 18px 40px rgba(19, 47, 69, .13);
    opacity: 0;
    transform: translate(-50%, 10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    backdrop-filter: blur(16px);
}

.site-nav .sub-menu::before {
    position: absolute;
    top: -14px;
    right: 0;
    left: 0;
    height: 14px;
    content: "";
}

.site-nav > ul > li:last-child > .sub-menu {
    right: 0;
    left: auto;
    transform: translate(0, 10px);
}

.site-nav .sub-menu a {
    justify-content: flex-start;
    width: 100%;
    min-height: 42px;
    padding: 0 18px;
    font-size: 13px;
    white-space: nowrap;
    transition: background-color .2s ease, color .2s ease, padding-left .2s ease;
}

.site-nav .sub-menu a:hover,
.site-nav .sub-menu a:focus {
    color: var(--color-blue);
    background: rgba(72, 168, 216, .08);
    padding-left: 22px;
}

.site-nav .has-submenu:hover > .sub-menu,
.site-nav .has-submenu:focus-within > .sub-menu,
.site-nav .has-submenu.is-open > .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
}

.site-nav > ul > li:last-child:hover > .sub-menu,
.site-nav > ul > li:last-child:focus-within > .sub-menu,
.site-nav > ul > li:last-child.is-open > .sub-menu {
    transform: translate(0, 0);
}

.site-nav .has-submenu:hover > a::after,
.site-nav .has-submenu:focus-within > a::after,
.site-nav .has-submenu.is-open > a::after {
    transform: translateY(1px) rotate(225deg);
}

.site-main {
    overflow: hidden;
}

.recruit-hero__image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.top-visual {
    position: relative;
    height: calc(100vh - 82px);
    min-height: 620px;
    overflow: hidden;
    background: var(--color-deep);
}

.top-visual__slides,
.top-visual__slide {
    position: absolute;
    inset: 0;
}

.top-visual__slide {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: clamp(40px, 8vw, 112px);
    background-image: var(--top-visual-desktop);
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.5s ease, transform 6.8s ease;
}

.top-visual__slide::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(8, 38, 54, .28), rgba(8, 38, 54, .02) 60%);
}

.top-visual__slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.top-visual__slide p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #fff;
    font-family: var(--font-en);
    font-size: clamp(48px, 9.2vw, 138px);
    font-weight: 900;
    line-height: .9;
    text-shadow: 0 16px 48px rgba(9, 36, 49, .24);
}

.scroll-cue__text {
    position: absolute;
    bottom: 104px;
    left: clamp(20px, 4vw, 56px);
    z-index: 5;
    margin: 0;
    color: rgba(10, 49, 66, .78);
    font-family: var(--font-en);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .3em;
    writing-mode: vertical-rl;
    text-shadow: 0 0 7px rgba(255, 255, 255, .98), 0 1px 2px rgba(255, 255, 255, .9);
}

.scroll-cue__line {
    position: absolute;
    bottom: 26px;
    left: calc(clamp(20px, 4vw, 56px) + 6px);
    z-index: 5;
    width: 1px;
    height: 66px;
    overflow: hidden;
    background: rgba(10, 49, 66, .2);
    box-shadow: 0 0 5px rgba(255, 255, 255, .88);
}

.scroll-cue__line::before {
    position: absolute;
    top: -66px;
    left: 0;
    width: 1px;
    height: 66px;
    content: "";
    background: rgba(10, 49, 66, .72);
    animation: scrollLine 1.8s ease-in-out infinite;
}

.concept-section {
    padding: clamp(92px, 12vw, 180px) 20px;
    text-align: center;
    background: #fff;
}

.concept-section__inner {
    width: min(980px, 100%);
    margin: 0 auto;
}

.concept-section__quote {
    margin: 0 0 clamp(34px, 5vw, 72px);
    color: var(--color-ink);
    font-size: clamp(24px, 3.2vw, 42px);
    font-weight: 900;
    line-height: 1.45;
}

.concept-section__body {
    margin: 0;
    font-size: clamp(16px, 1.8vw, 22px);
}

.gw-section {
    position: relative;
    padding: clamp(84px, 12vw, 170px) 0;
    overflow: hidden;
    background: var(--color-soft);
}

.gw-section--about {
    background: #fff;
}

.gw-section__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    gap: clamp(36px, 7vw, 96px);
    align-items: center;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.gw-section__repeat {
    position: absolute;
    top: -74px;
    left: -6vw;
    z-index: 0;
    color: rgba(72, 168, 216, .12);
    font-family: var(--font-en);
    font-size: clamp(48px, 10vw, 132px);
    font-weight: 900;
    line-height: .86;
    white-space: nowrap;
    pointer-events: none;
}

.gw-section__repeat p {
    margin: 0;
}

.gw-section__image,
.gw-section__content {
    position: relative;
    z-index: 1;
}

.gw-section__image {
    margin: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.gw-section__image img {
    width: 100%;
    height: clamp(380px, 48vw, 640px);
    object-fit: cover;
    transition: transform 1.2s ease;
}

.gw-section__image picture,
.gw-recruit__image picture {
    display: block;
}

.gw-section__image:hover img {
    transform: scale(1.06);
}

.gw-section__image--sp {
    display: none;
}

.gw-section__label {
    margin: 0 0 12px;
    color: var(--color-blue);
    font-family: var(--font-en);
    font-size: clamp(34px, 5vw, 68px);
    font-weight: 900;
    line-height: 1;
}

.gw-section__content h2,
.gw-recruit__text h2 {
    margin: 0;
    color: var(--color-ink);
    font-size: clamp(28px, 3.6vw, 46px);
    line-height: 1.35;
}

.gw-section__content hr,
.gw-recruit__text hr {
    width: 76px;
    height: 1px;
    margin: 28px 0;
    background: var(--color-ink);
    border: 0;
}

.gw-section__content p,
.gw-recruit__text p {
    margin: 0 0 28px;
}

.gw-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 48px;
    padding: 0 10px 0 24px;
    color: #fff;
    font-family: var(--font-en);
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    background: var(--rainbow-gradient);
    border-radius: 999px;
    box-shadow: var(--rainbow-shadow);
    transition: filter .24s ease, box-shadow .24s ease, transform .24s ease;
}

.gw-more::after {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--color-rainbow-blue);
    content: "→";
    background: rgba(255, 255, 255, .94);
    border-radius: 50%;
    transition: transform .24s ease;
}

.gw-more:hover {
    filter: saturate(1.08) brightness(1.02);
    box-shadow: 0 18px 34px rgba(89, 189, 237, .24), 0 12px 28px rgba(255, 153, 231, .24);
    transform: translateY(-2px);
}

.gw-more:hover::after {
    transform: translateX(3px);
}

.gw-recruit {
    padding: clamp(88px, 12vw, 170px) 0;
    background: var(--color-soft);
}

.gw-recruit__inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    text-align: center;
}

.gw-recruit__text {
    max-width: 780px;
    margin: 0 auto 42px;
}

.gw-recruit__text hr {
    margin-right: auto;
    margin-left: auto;
}

.gw-recruit__image {
    margin: 0 0 38px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.gw-recruit__image img {
    width: 100%;
    height: clamp(320px, 52vw, 620px);
    object-fit: cover;
}

.gw-news {
    padding: clamp(82px, 10vw, 142px) 0;
    background: #fff;
}

.gw-news__inner {
    width: min(1080px, calc(100% - 40px));
    margin: 0 auto;
}

.gw-news__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 34px;
}

.gw-news__head h2 {
    margin: 0;
    color: var(--color-ink);
    font-family: var(--font-en);
    font-size: clamp(42px, 7vw, 90px);
    line-height: 1;
}

.gw-news__table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid rgba(23, 33, 43, .18);
}

.gw-news__table tr {
    border-bottom: 1px solid rgba(23, 33, 43, .18);
}

.gw-news__table td {
    padding: 25px 14px;
    vertical-align: middle;
}

.gw-news__table td:first-child {
    width: 104px;
}

.gw-news__table td:nth-child(2) {
    width: 142px;
    color: var(--color-ink);
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 700;
}

.gw-news__table span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 68px;
    min-height: 26px;
    color: var(--color-ink);
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    background: transparent;
    border: 1px solid rgba(23, 33, 43, .28);
    border-radius: 999px;
    box-shadow: none;
}

.gw-news__table a {
    color: var(--color-ink);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: color .2s ease;
}

.gw-news__table a:hover {
    color: var(--color-blue);
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
    align-items: stretch;
    min-height: calc(100vh - 82px);
    background: var(--color-soft);
}

.hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(56px, 8vw, 112px) clamp(24px, 6vw, 84px);
}

.section-label {
    margin: 0 0 18px;
    color: var(--color-blue);
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--color-ink);
    font-size: clamp(44px, 7.2vw, 96px);
    line-height: 1.04;
}

.hero p,
.page-hero p {
    max-width: 620px;
    margin-top: 28px;
    font-size: clamp(16px, 1.6vw, 20px);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 12px 0 24px;
    color: #fff;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    background: var(--rainbow-gradient);
    border: 1px solid transparent;
    border-radius: 999px;
    box-shadow: var(--rainbow-shadow);
    transition: filter .24s ease, box-shadow .24s ease, transform .24s ease;
}

.button::after {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--color-rainbow-blue);
    content: "→";
    background: rgba(255, 255, 255, .94);
    border-radius: 50%;
}

.button:hover {
    filter: saturate(1.08) brightness(1.02);
    box-shadow: 0 18px 34px rgba(89, 189, 237, .24), 0 12px 28px rgba(255, 153, 231, .24);
    transform: translateY(-2px);
}

.button--ghost {
    color: var(--color-ink);
    background: linear-gradient(#fff, #fff) padding-box, var(--rainbow-gradient) border-box;
    border-color: transparent;
    box-shadow: none;
}

.button--ghost::after {
    color: #fff;
    background: var(--rainbow-gradient);
}

.button--light {
    color: #fff;
    background: var(--rainbow-gradient);
    border-color: transparent;
    box-shadow: var(--rainbow-shadow);
}

.button--light::after {
    color: var(--color-rainbow-blue);
    background: rgba(255, 255, 255, .94);
}

.hero__media,
.page-hero__media {
    position: relative;
    min-height: 420px;
    margin: 0;
    overflow: hidden;
    contain: layout paint;
}

.hero__media img,
.page-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.5s ease, transform 6.8s ease;
}

.hero__slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero__visual-copy,
.page-hero__visual-copy {
    position: absolute;
    right: clamp(20px, 4vw, 56px);
    bottom: clamp(22px, 5vw, 68px);
    z-index: 2;
    margin: 0;
    color: rgba(255, 255, 255, .86);
    font-family: var(--font-en);
    font-size: clamp(34px, 7vw, 104px);
    font-weight: 900;
    line-height: .9;
    letter-spacing: 0;
    text-shadow: 0 12px 38px rgba(10, 36, 49, .32);
    max-width: calc(100% - 40px);
    overflow-wrap: anywhere;
}

.page-hero__visual-copy {
    font-size: clamp(32px, 6vw, 88px);
    text-transform: uppercase;
}

.scroll-cue {
    position: absolute;
    bottom: 30px;
    left: clamp(20px, 6vw, 84px);
    z-index: 3;
    display: grid;
    gap: 10px;
    justify-items: center;
    color: var(--color-deep);
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
}

.scroll-cue i {
    position: relative;
    display: block;
    width: 1px;
    height: 58px;
    overflow: hidden;
    background: rgba(15, 77, 99, .22);
}

.scroll-cue i::before {
    position: absolute;
    top: -58px;
    left: 0;
    width: 1px;
    height: 58px;
    content: "";
    background: var(--color-deep);
    animation: scrollLine 1.8s ease-in-out infinite;
}

.statement {
    padding: clamp(72px, 9vw, 132px) clamp(20px, 4vw, 56px);
    color: #fff;
    background: var(--color-deep);
}

.statement p {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, .42);
    font-family: var(--font-en);
    font-size: clamp(32px, 8vw, 112px);
    font-weight: 900;
    line-height: .9;
}

.statement p {
    animation: marqueePulse 9s ease-in-out infinite alternate;
}

.statement h2 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(28px, 4.2vw, 58px);
    line-height: 1.25;
}

.section {
    padding: clamp(72px, 9vw, 128px) 0;
}

.section--soft {
    background: var(--color-soft);
}

.section__inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 36px;
}

.section-heading--row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    max-width: none;
}

.section-heading h2 {
    margin: 0;
    color: var(--color-ink);
    font-size: clamp(32px, 5vw, 64px);
    line-height: 1.1;
}

.mvv-section {
    padding: clamp(76px, 9vw, 128px) 0;
    background: #f6f4ef;
    border-top: 1px solid var(--color-line);
}

.mvv-section__inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.mvv-section__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: clamp(30px, 4vw, 52px);
}

.mvv-section__heading .section-label {
    margin: 0;
}

.mvv-section__heading h2 {
    margin: 0;
    color: var(--color-ink);
    font-size: clamp(26px, 3.5vw, 46px);
    line-height: 1.3;
}

.mvv-section__visual {
    margin: 0;
    overflow: hidden;
    background: #fff;
    border-radius: 8px;
}

.mvv-section__visual img {
    display: block;
    width: 100%;
    aspect-ratio: 2 / 1;
    object-fit: cover;
}

.mvv-section__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: calc(100% - 80px);
    margin: -42px auto 0;
    overflow: hidden;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(25, 34, 42, .12);
}

.mvv-card {
    min-width: 0;
    padding: clamp(30px, 3.6vw, 48px) clamp(24px, 3vw, 40px);
}

.mvv-card + .mvv-card {
    border-left: 1px solid var(--color-line);
}

.mvv-card__label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 24px;
    color: var(--color-accent);
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.mvv-card__label span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #fff;
    font-size: 11px;
    letter-spacing: .04em;
    background: var(--color-deep);
    border-radius: 50%;
}

.mvv-card h3 {
    margin: 0;
    color: var(--color-ink);
    font-size: clamp(20px, 2vw, 27px);
    line-height: 1.65;
}

.mvv-card__text {
    margin: 18px 0 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.8;
}

.mvv-card__text + .mvv-card__text {
    margin-top: 4px;
}

.text-link {
    color: var(--color-rainbow-blue);
    font-weight: 800;
    text-decoration: none;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.showcase-card {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    contain: layout paint;
    color: #fff;
    background: var(--color-deep);
    border-radius: 8px;
}

.showcase-card--wide {
    grid-row: span 2;
    min-height: 744px;
}

.showcase-card img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    opacity: .72;
    transform: scale(1.02);
    transition: transform 1.2s ease, opacity 1.2s ease;
}

.showcase-card:hover img {
    opacity: .84;
    transform: scale(1.08);
}

.showcase-card div {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 28px;
    background: linear-gradient(transparent, rgba(10, 36, 49, .82));
}

.showcase-card p {
    margin: 0 0 8px;
    color: var(--color-yellow);
    font-weight: 800;
}

.showcase-card h3 {
    max-width: 560px;
    margin: 0 0 18px;
    font-size: clamp(24px, 3vw, 40px);
    line-height: 1.25;
}

.showcase-card a {
    font-weight: 800;
    text-decoration: none;
}

.about-strip,
.recruit-panel {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
}

.about-strip {
    padding: clamp(32px, 5vw, 72px);
    background: #fff;
    border-left: 8px solid var(--color-blue);
}

.about-strip p:first-child {
    margin: 0;
    color: var(--color-ink);
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.24;
}

.about-strip p:last-child {
    margin: 0;
}

.recruit-panel {
    overflow: hidden;
    background: var(--color-soft);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.recruit-panel img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.recruit-panel div {
    padding: clamp(28px, 5vw, 64px);
}

.recruit-panel h3 {
    margin: 0;
    color: var(--color-ink);
    font-size: clamp(28px, 4vw, 54px);
    line-height: 1.2;
}

.news-list {
    border-top: 1px solid var(--color-line);
}

.news-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 28px;
    padding: 22px 0;
    border-bottom: 1px solid var(--color-line);
}

.news-item time {
    color: var(--color-muted);
    font-family: var(--font-en);
}

.news-item h3 {
    margin: 0;
    color: var(--color-ink);
    font-size: 18px;
}

.page-hero {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
    min-height: 560px;
    background: var(--color-soft);
}

.page-hero.page-hero--message {
    display: block;
    min-height: clamp(320px, 34vw, 430px);
    padding-bottom: 0;
    background: #f6f4ef;
}

.page-hero--message .page-hero__copy {
    justify-content: flex-end;
    min-height: clamp(320px, 34vw, 430px);
    padding: clamp(64px, 8vw, 100px) 0;
}

.page-hero--message .page-hero__copy h1 {
    max-width: none;
    font-size: clamp(46px, 6vw, 76px);
    white-space: nowrap;
}

.section.section--message {
    padding: clamp(52px, 6vw, 84px) 0 clamp(76px, 8vw, 112px);
    background: #f6f4ef;
    border-top: 0;
}

.section--message .split-layout {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(300px, .82fr) minmax(0, 1fr);
    gap: clamp(44px, 7vw, 92px);
    padding: clamp(42px, 6vw, 76px);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 20px 54px rgba(25, 34, 42, .1);
}

.section--message .section-heading {
    position: relative;
    margin: 0;
    padding-top: 38px;
}

.section--message .section-heading::before {
    position: absolute;
    top: -20px;
    left: -4px;
    content: "“";
    color: rgba(232, 157, 52, .24);
    font-family: Georgia, serif;
    font-size: 112px;
    line-height: 1;
}

.section--message .section-heading .section-label {
    position: relative;
    color: var(--color-accent);
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.section--message .section-heading h2 {
    position: relative;
    margin-top: 22px;
    font-size: clamp(24px, 2.4vw, 32px);
    line-height: 1.75;
}

.section--message .section-body {
    padding-top: 40px;
    border-top: 1px solid var(--color-line);
}

.section--message .section-body > p {
    margin: 0;
    color: #454b4f;
    line-height: 2.15;
}

.section--message .section-body > p + p {
    margin-top: 1.5em;
}

.message-signature {
    margin-top: 42px;
    padding-top: 24px;
    text-align: right;
    border-top: 1px solid var(--color-line);
}

.message-signature p {
    margin: 0;
    color: var(--color-ink);
    line-height: 1.8;
}

.message-signature p:last-child {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .04em;
}

.page-hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(56px, 8vw, 108px) clamp(24px, 6vw, 84px);
}

.page-hero__media img {
    animation: slowZoom 9s ease-out both;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.feature-card {
    min-height: 260px;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.feature-card span {
    color: var(--color-pink);
    font-family: var(--font-en);
    font-size: 32px;
    font-weight: 900;
}

.feature-card h3 {
    margin: 24px 0 12px;
    color: var(--color-ink);
    font-size: 24px;
}

.feature-card p {
    margin: 0;
}

.form-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-field-card {
    min-height: 150px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-field-card h3 {
    margin: 0 0 12px;
    color: var(--color-ink);
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.45;
}

.form-field-card p {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.8;
}

.visual-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.visual-card-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.visual-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.visual-card img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.visual-card div {
    padding: 24px;
}

.visual-card h3 {
    margin: 0 0 12px;
    color: var(--color-ink);
    font-size: clamp(19px, 1.7vw, 23px);
    font-weight: 700;
    line-height: 1.5;
}

.visual-card p {
    margin: 0;
    color: #4d5966;
    line-height: 1.8;
}

.visual-card p + p {
    margin-top: 8px;
}

.visual-card-grid--text-only .visual-card {
    display: flex;
    align-items: center;
    min-height: 210px;
}

.visual-card-grid--text-only .visual-card div {
    width: 100%;
}

/* Friendly merit cards for job seekers */
.visual-group--worker-merits {
    background: #fff9f5;
}

.visual-group--worker-merits .visual-card-grid {
    gap: clamp(16px, 2.2vw, 28px);
    background: transparent;
    border: 0;
}

.visual-group--worker-merits .visual-card {
    --merit-accent: #ee7968;
    position: relative;
    align-items: flex-start;
    min-height: 300px;
    padding: clamp(26px, 3vw, 38px);
    overflow: hidden;
    background: #fff0eb;
    border: 1px solid rgb(238 121 104 / 22%);
    border-radius: 28px;
    box-shadow: 0 18px 45px rgb(70 44 38 / 8%);
}

.visual-group--worker-merits .visual-card:nth-child(2) {
    --merit-accent: #55a78f;
    background: #edf8f3;
    border-color: rgb(85 167 143 / 22%);
}

.visual-group--worker-merits .visual-card:nth-child(3) {
    --merit-accent: #e4a83f;
    background: #fff8e8;
    border-color: rgb(228 168 63 / 25%);
}

.visual-group--worker-merits .visual-card::after {
    content: "0" counter(worker-merit);
    position: absolute;
    top: 20px;
    right: 24px;
    color: var(--merit-accent);
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    opacity: .72;
}

.visual-group--worker-merits .visual-card-grid {
    counter-reset: worker-merit;
}

.visual-group--worker-merits .visual-card {
    counter-increment: worker-merit;
}

.visual-group--worker-merits .visual-card__icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 76px;
    height: 76px;
    flex: 0 0 auto;
    place-items: center;
    color: #fff;
    background: var(--merit-accent);
    border-radius: 50% 50% 46% 54% / 55% 45% 55% 45%;
    box-shadow: 0 10px 24px color-mix(in srgb, var(--merit-accent) 25%, transparent);
    transform: rotate(-3deg);
}

.visual-group--worker-merits .visual-card:nth-child(2) .visual-card__icon {
    transform: rotate(3deg);
}

.visual-group--worker-merits .visual-card__icon svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: currentcolor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.4;
}

.visual-group--worker-merits .visual-card > div {
    position: relative;
    z-index: 1;
    padding: 24px 0 0;
}

.visual-group--worker-merits .visual-card h3 {
    font-size: clamp(20px, 1.8vw, 25px);
    font-weight: 700;
}

.visual-group--worker-merits .visual-card p {
    color: #4f5557;
}

@media (max-width: 960px) {
    .visual-group--worker-merits .visual-card {
        min-height: 0;
        align-items: center;
        padding: clamp(24px, 4vw, 34px);
    }

    .visual-group--worker-merits .visual-card > div {
        padding: 0 0 0 clamp(18px, 3vw, 28px);
    }
}

@media (max-width: 600px) {
    .visual-group--worker-merits .visual-card h3 {
        padding-right: 38px;
    }
}

.image-section__media {
    margin: 28px 0 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.image-section__media img {
    width: 100%;
    display: block;
}

.section--split {
    border-top: 1px solid var(--color-line);
}

.section--service-intro .section-heading h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.2;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1fr);
    gap: clamp(28px, 6vw, 88px);
}

.section-body {
    font-size: 18px;
}

.section-body p {
    margin-top: 0;
}

.info-table {
    margin: 0;
    border-top: 1px solid var(--color-line);
}

.info-table div {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px solid var(--color-line);
}

.info-table dt {
    color: var(--color-muted);
    font-weight: 800;
}

.info-table dd {
    margin: 0;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: clamp(48px, 7vw, 88px) clamp(20px, 6vw, 72px);
    color: #fff;
    background: var(--color-deep);
}

.cta-band h2 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(28px, 4vw, 54px);
    line-height: 1.25;
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 28px;
    align-items: start;
    padding: 44px clamp(20px, 4vw, 56px);
    color: #dce8ee;
    background: #102b38;
}

.site-footer nav {
    display: grid;
    gap: 8px;
}

.site-footer a {
    text-decoration: none;
}

.site-footer p {
    margin: 0;
}

.site-logo--footer {
    width: 160px;
    padding: 10px;
    margin-bottom: 12px;
    background: #fff;
    border-radius: 6px;
}

.js-enabled .js-reveal {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
    transition:
        opacity .9s ease var(--reveal-delay, 0ms),
        transform .9s ease var(--reveal-delay, 0ms);
}

.js-enabled .showcase-card.js-reveal,
.js-enabled .page-hero__media.js-reveal {
    transform: translate3d(-18px, 0, 0);
}

.js-enabled .section-body.js-reveal,
.js-enabled .page-hero__copy.js-reveal {
    transform: translate3d(18px, 0, 0);
}

.js-enabled .js-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.js-enabled .hero__copy .section-label,
.js-enabled .hero h1,
.js-enabled .hero__copy > p,
.js-enabled .hero__actions {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    animation: heroFadeUp .9s ease forwards;
}

.js-enabled .hero h1 {
    animation-delay: .16s;
}

.js-enabled .hero__copy > p {
    animation-delay: .32s;
}

.js-enabled .hero__actions {
    animation-delay: .48s;
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes scrollLine {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(116px);
    }
}

@keyframes slowZoom {
    from {
        transform: scale(1.08);
    }
    to {
        transform: scale(1);
    }
}

@keyframes marqueePulse {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-2.5vw);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }

    .js-enabled .js-reveal,
    .js-enabled .hero__copy .section-label,
    .js-enabled .hero h1,
    .js-enabled .hero__copy > p,
    .js-enabled .hero__actions {
        opacity: 1;
        transform: none;
    }
}

.content-entry {
    max-width: 840px;
}

.article-breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
    width: min(1180px, calc(100% - 40px));
    padding: 20px 0;
    margin: 0 auto;
    overflow: hidden;
    color: var(--color-muted);
    font-family: var(--font-en);
    font-size: 12px;
    line-height: 1.5;
    white-space: nowrap;
}

.article-breadcrumb a {
    text-decoration: none;
    transition: color .2s ease;
}

.article-breadcrumb a:hover {
    color: var(--color-blue);
}

.article-breadcrumb span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-detail {
    background: #fff;
}

.article-detail__header,
.article-detail__body {
    width: min(1050px, calc(100% - 40px));
    margin: 0 auto;
}

.article-detail__header {
    padding: clamp(64px, 8vw, 110px) 0 clamp(54px, 7vw, 88px);
    background: var(--color-soft);
    box-shadow: 0 0 0 100vmax var(--color-soft);
    clip-path: inset(0 -100vmax);
}

.article-detail__meta {
    display: flex;
    gap: 22px;
    align-items: center;
    color: var(--color-muted);
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 700;
}

.article-detail__meta a {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 2px 14px;
    color: var(--color-deep);
    text-decoration: none;
    background: #fff;
    border: 1px solid rgba(15, 77, 99, .24);
}

.article-detail__header h1 {
    max-width: 920px;
    margin: 26px 0 0;
    color: var(--color-ink);
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.4;
    letter-spacing: .02em;
}

.article-detail__body {
    padding: clamp(52px, 7vw, 86px) 0 clamp(72px, 9vw, 118px);
    font-size: 16px;
    line-height: 2;
}

.article-detail__body > * {
    max-width: 860px;
    margin-right: auto;
    margin-left: auto;
}

.article-detail__body p {
    margin-top: 0;
    margin-bottom: 1.65em;
}

.article-detail__body h2 {
    padding-bottom: 16px;
    margin-top: 2.5em;
    margin-bottom: 1em;
    color: var(--color-ink);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.45;
    border-bottom: 2px solid var(--color-line);
}

.article-detail__body h3 {
    padding-left: 18px;
    margin-top: 2.2em;
    color: var(--color-ink);
    font-size: clamp(20px, 2.4vw, 26px);
    line-height: 1.5;
    border-left: 4px solid var(--color-blue);
}

.article-detail__body a {
    color: var(--color-deep);
    text-decoration-color: var(--color-blue);
    text-underline-offset: 4px;
}

.article-detail__body img,
.article-detail__body .wp-block-image {
    width: 100%;
    max-width: 1050px;
    height: auto;
}

.article-detail__body blockquote {
    padding: 22px 28px;
    color: var(--color-ink);
    background: var(--color-soft);
    border-left: 4px solid var(--color-blue);
}

.article-pager {
    display: grid;
    grid-template-columns: 1fr 54px 1fr;
    gap: 28px;
    align-items: center;
    width: min(1180px, calc(100% - 40px));
    min-height: 180px;
    margin: 0 auto;
}

.article-pager__item a {
    display: block;
    color: var(--color-ink);
    text-decoration: none;
}

.article-pager__item span {
    display: block;
    margin-bottom: 8px;
    color: var(--color-blue);
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
}

.article-pager__item strong {
    display: block;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.6;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.article-pager__item--next {
    text-align: right;
}

.article-pager__index {
    display: grid;
    grid-template-columns: repeat(2, 6px);
    gap: 5px;
    place-content: center;
    width: 54px;
    height: 54px;
    border: 1px solid var(--color-line);
    transition: border-color .2s ease, background-color .2s ease;
}

.article-pager__index:hover {
    background: var(--color-soft);
    border-color: var(--color-blue);
}

.article-pager__index i {
    width: 6px;
    height: 6px;
    background: var(--color-deep);
}

.article-related {
    padding: clamp(68px, 8vw, 112px) max(20px, calc((100vw - 1180px) / 2));
    background: var(--color-soft);
}

.article-related__heading {
    margin-bottom: 40px;
}

.article-related__heading p {
    margin: 0;
    color: var(--color-ink);
    font-family: var(--font-en);
    font-size: clamp(42px, 7vw, 90px);
    font-weight: 900;
    line-height: .9;
}

.article-related__heading h2 {
    margin: 14px 0 0;
    font-size: 14px;
}

.article-related__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--color-line);
    border: 1px solid var(--color-line);
}

.article-related__card a {
    position: relative;
    display: block;
    min-height: 230px;
    padding: 30px;
    color: var(--color-ink);
    text-decoration: none;
    background: #fff;
    transition: background-color .25s ease;
}

.article-related__card a:hover {
    background: #fbfdfe;
}

.article-related__card time,
.article-related__card > a > span {
    display: inline-block;
    margin-right: 14px;
    color: var(--color-muted);
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 700;
}

.article-related__card h3 {
    max-width: 90%;
    margin: 28px 0 0;
    font-size: 18px;
    line-height: 1.65;
}

.article-related__card i {
    position: absolute;
    right: 28px;
    bottom: 24px;
    color: var(--color-blue);
    font-family: var(--font-en);
    font-size: 22px;
    font-style: normal;
}

.content-entry--form {
    max-width: none;
}

.link-group-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.link-group {
    padding-top: 24px;
    border-top: 1px solid rgba(23, 33, 43, .18);
}

.link-group h2 {
    margin: 0 0 18px;
    color: var(--color-ink);
    font-size: 22px;
}

.link-group ul {
    display: grid;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

.link-group li {
    border-bottom: 1px solid rgba(23, 33, 43, .12);
}

.link-group a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 54px;
    color: var(--color-ink);
    font-weight: 700;
    text-decoration: none;
    transition: color .2s ease, padding-left .2s ease;
}

.link-group a::after {
    color: var(--color-blue);
    content: "→";
    font-family: var(--font-en);
    font-weight: 900;
}

.link-group a:hover {
    color: var(--color-blue);
    padding-left: 8px;
}

.recruit-hero {
    position: relative;
    min-height: 720px;
    padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px) 0;
    overflow: hidden;
    background: #fff;
}

.recruit-hero__title {
    position: relative;
    z-index: 2;
}

.recruit-kicker,
.recruit-title-block p,
.recruit-section-label {
    margin: 0;
    color: var(--color-blue);
    font-family: var(--font-en);
    font-weight: 900;
    letter-spacing: .04em;
}

.recruit-kicker {
    color: var(--color-ink);
    font-size: clamp(58px, 12vw, 164px);
    line-height: .82;
}

.recruit-hero h1 {
    margin: 18px 0 0;
    color: var(--color-ink);
    font-size: clamp(22px, 2.8vw, 40px);
}

.recruit-hero__title > p:last-child {
    margin: 8px 0 0;
    font-size: clamp(15px, 1.5vw, 19px);
    font-weight: 800;
}

.recruit-hero__entry {
    position: absolute;
    bottom: 20px;
    left: clamp(20px, 4vw, 60px);
    z-index: 1;
    margin: 0;
    color: rgba(89, 189, 237, .18);
    font-family: var(--font-en);
    font-size: clamp(72px, 15vw, 220px);
    font-weight: 900;
    line-height: .78;
}

.recruit-hero__image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(76vw, 1160px);
    height: min(58vw, 620px);
    min-height: 360px;
    margin: 0;
    overflow: hidden;
}

.recruit-hero__image img,
.recruit-wide-image img,
.recruit-interview-card img,
.recruit-flow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recruit-message,
.recruit-strength,
.recruit-numbers,
.recruit-interview,
.recruit-job,
.recruit-outline,
.recruit-day,
.recruit-flow,
.recruit-entry {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.recruit-message {
    padding: clamp(76px, 10vw, 142px) 0;
}

.recruit-message p:last-child {
    max-width: 960px;
    margin: 22px 0 0 auto;
    color: var(--color-ink);
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 800;
    line-height: 2;
}

.recruit-title-block {
    margin-bottom: 34px;
}

.recruit-title-block p {
    color: var(--color-ink);
    font-size: clamp(36px, 7vw, 96px);
    line-height: .9;
}

.recruit-title-block h2 {
    margin: 12px 0 0;
    font-size: clamp(18px, 2vw, 26px);
}

.recruit-strength,
.recruit-numbers,
.recruit-interview,
.recruit-job,
.recruit-outline,
.recruit-day,
.recruit-flow {
    padding: clamp(56px, 8vw, 112px) 0;
}

.recruit-strength__grid,
.recruit-numbers__grid,
.recruit-interview__grid,
.recruit-job__grid {
    display: grid;
    gap: 22px;
}

.recruit-strength__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.recruit-strength__grid article,
.recruit-job__grid article {
    min-height: 230px;
    padding: 28px;
    background: #fff;
    border: 1px solid rgba(23, 33, 43, .14);
    box-shadow: var(--shadow);
}

.recruit-strength__grid span {
    color: var(--color-pink);
    font-family: var(--font-en);
    font-size: 34px;
    font-weight: 900;
}

.recruit-strength__grid h3,
.recruit-job__grid h3 {
    margin: 20px 0 10px;
    color: var(--color-ink);
    font-size: 20px;
    line-height: 1.45;
}

.recruit-strength__grid p,
.recruit-job__grid p,
.recruit-job__lead {
    margin: 0;
}

.recruit-numbers {
    width: 100%;
    padding-right: max(20px, calc((100vw - 1180px) / 2));
    padding-left: max(20px, calc((100vw - 1180px) / 2));
    background: var(--color-soft);
}

.recruit-numbers__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.recruit-numbers__grid article {
    min-height: 210px;
    padding: 26px;
    background: #fff;
    border-top: 5px solid var(--color-blue);
}

.recruit-numbers__grid p {
    margin: 0 0 20px;
    color: var(--color-muted);
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 900;
}

.recruit-numbers__grid strong {
    display: block;
    color: var(--color-ink);
    font-family: var(--font-en);
    font-size: clamp(54px, 7vw, 96px);
    line-height: .9;
}

.recruit-numbers__grid span {
    display: block;
    margin-top: 12px;
    font-weight: 800;
}

.recruit-wide-image {
    width: 100%;
    height: clamp(300px, 42vw, 620px);
    margin: 0;
    overflow: hidden;
}

.recruit-interview__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.recruit-interview-card a {
    position: relative;
    display: block;
    min-height: 390px;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    background: var(--color-deep);
}

.recruit-interview-card img {
    position: absolute;
    inset: 0;
    opacity: .78;
    transition: transform .8s ease, opacity .8s ease;
}

.recruit-interview-card div {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 24px;
    background: linear-gradient(transparent, rgba(10, 36, 49, .86));
}

.recruit-interview-card p,
.recruit-interview-card h3 {
    margin: 0;
}

.recruit-interview-card p {
    color: var(--color-rainbow-yellow);
    font-size: 13px;
    font-weight: 900;
}

.recruit-interview-card h3 {
    margin-top: 8px;
    font-size: 22px;
    line-height: 1.35;
}

.recruit-interview-card span {
    display: inline-block;
    margin-top: 18px;
    font-family: var(--font-en);
    font-weight: 900;
}

.recruit-interview-card a:hover img {
    opacity: .9;
    transform: scale(1.08);
}

.recruit-note-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr) auto;
    gap: clamp(24px, 5vw, 72px);
    align-items: center;
    min-height: 220px;
    padding: clamp(30px, 5vw, 58px);
    color: #fff;
    background: var(--color-deep);
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}

.recruit-note-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.recruit-note-card__label {
    color: var(--color-rainbow-yellow);
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
}

.recruit-note-card__body strong,
.recruit-note-card__body small {
    display: block;
}

.recruit-note-card__body strong {
    font-size: clamp(24px, 3.4vw, 42px);
    line-height: 1.35;
}

.recruit-note-card__body small {
    margin-top: 12px;
    color: rgba(255, 255, 255, .74);
    font-size: 14px;
    line-height: 1.8;
}

.recruit-note-card__arrow {
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1;
}

.recruit-job__lead {
    margin-bottom: 24px;
    font-weight: 800;
}

.recruit-job__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    align-items: stretch;
}

.recruit-job__grid article {
    display: flex;
    flex-direction: column;
}

.recruit-job__type {
    display: inline-flex;
    align-self: flex-start;
    padding: 5px 10px;
    color: var(--color-blue);
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.recruit-job__salary {
    display: block;
    margin: 0 0 14px;
    color: #e86b48;
    font-size: 18px;
}

.recruit-job__conditions-button {
    margin-top: auto;
    padding: 15px 18px;
    color: var(--color-ink);
    background: var(--color-soft);
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    text-align: left;
    transition: color .2s ease, background-color .2s ease;
}

.recruit-job__conditions-button::after {
    content: "↗";
    float: right;
}

.recruit-job__conditions-button:hover,
.recruit-job__conditions-button:focus-visible {
    color: #fff;
    background: var(--color-blue);
}

.recruit-job-modal {
    width: min(760px, calc(100% - 40px));
    max-width: none;
    max-height: calc(100dvh - 40px);
    padding: 0;
    background: transparent;
    border: 0;
    overflow: visible;
}

.recruit-job-modal[open] {
    animation: recruit-modal-fade-in .26s ease-out both;
}

.recruit-job-modal::backdrop {
    background: rgba(16, 25, 33, .68);
    backdrop-filter: blur(4px);
}

.recruit-job-modal[open]::backdrop {
    animation: recruit-modal-backdrop-in .26s ease-out both;
}

.recruit-job-modal__panel {
    max-height: calc(100dvh - 40px);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 24px 80px rgba(16, 25, 33, .32);
    overflow: auto;
}

.recruit-job-modal[open] .recruit-job-modal__panel {
    animation: recruit-modal-panel-in .34s cubic-bezier(.2, .8, .2, 1) both;
}

.recruit-job-modal[open].is-closing {
    animation: recruit-modal-fade-out .2s ease-in both;
}

.recruit-job-modal[open].is-closing::backdrop {
    animation: recruit-modal-backdrop-out .2s ease-in both;
}

.recruit-job-modal[open].is-closing .recruit-job-modal__panel {
    animation: recruit-modal-panel-out .2s ease-in both;
}

@keyframes recruit-modal-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes recruit-modal-fade-out {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes recruit-modal-backdrop-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes recruit-modal-backdrop-out {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes recruit-modal-panel-in {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes recruit-modal-panel-out {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(10px) scale(.985);
    }
}

.recruit-job-modal__header {
    position: sticky;
    z-index: 1;
    top: 0;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    justify-content: space-between;
    padding: 26px 30px 22px;
    background: #fff;
    border-bottom: 1px solid rgba(23, 33, 43, .12);
}

.recruit-job-modal__header span {
    color: #e86b48;
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
}

.recruit-job-modal__header h3 {
    margin: 7px 0 0;
    color: var(--color-ink);
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.35;
}

.recruit-job-modal__close {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    padding: 0;
    color: var(--color-ink);
    background: var(--color-soft);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
}

.recruit-job-modal__body {
    padding: 24px 30px 30px;
}

.recruit-job-modal__salary {
    margin: 0 0 12px;
    color: #e86b48;
    font-size: 20px;
    font-weight: 900;
}

.recruit-job-modal__body dl {
    margin: 0;
}

.recruit-job-modal__body dl > div {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(23, 33, 43, .12);
}

.recruit-job-modal__body dt {
    color: var(--color-ink);
    font-weight: 800;
}

.recruit-job-modal__body dd {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.85;
}

.recruit-job-modal__footer-close {
    display: block;
    width: min(240px, 100%);
    margin: 28px auto 0;
    padding: 14px 20px;
    color: #fff;
    background: var(--color-blue);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
}

.job-modal-open {
    overflow: hidden;
}

.recruit-outline__table {
    background: #fff;
    border-top-color: rgba(23, 33, 43, .2);
    box-shadow: var(--shadow);
}

.recruit-outline__table div {
    padding-right: 28px;
    padding-left: 28px;
}

.recruit-day__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.recruit-day__grid article {
    min-height: 170px;
    padding: 24px;
    background: #fff;
    border: 1px solid rgba(23, 33, 43, .14);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.recruit-day__grid span {
    display: block;
    color: var(--color-blue);
    font-family: var(--font-en);
    font-size: 28px;
    font-weight: 900;
}

.recruit-day__grid p {
    margin: 18px 0 0;
    color: var(--color-ink);
    font-weight: 800;
    line-height: 1.7;
}

.recruit-flow {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(28px, 4vw, 46px);
    align-items: start;
}

.recruit-flow h2 {
    margin: 12px 0 0;
    color: var(--color-ink);
    font-size: clamp(26px, 4vw, 54px);
}

.recruit-selection-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.recruit-selection-flow li {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 156px;
    padding: 24px 22px 22px;
    background: #fff;
    border: 1px solid rgba(23, 33, 43, .14);
    border-top: 4px solid #e86b48;
    box-shadow: 0 12px 32px rgba(23, 33, 43, .07);
}

.recruit-selection-flow li:not(:last-child)::after {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: -25px;
    display: grid;
    width: 34px;
    height: 34px;
    color: #e86b48;
    content: "→";
    place-items: center;
    background: #fff;
    border: 1px solid rgba(232, 107, 72, .25);
    border-radius: 50%;
    font-size: 18px;
    transform: translateY(-50%);
}

.recruit-selection-flow span {
    color: #e86b48;
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
}

.recruit-selection-flow strong {
    margin-top: auto;
    color: var(--color-ink);
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 700;
    line-height: 1.5;
    word-break: keep-all;
}

.recruit-flow__note {
    margin: 16px 0 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.7;
}

.recruit-flow img {
    height: auto;
    object-fit: contain;
}

.recruit-entry {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: clamp(56px, 8vw, 110px) 0 clamp(90px, 10vw, 150px);
}

.recruit-entry__panel {
    min-height: 300px;
    padding: clamp(32px, 5vw, 64px);
    color: #fff;
    background: var(--color-deep);
}

.recruit-entry__panel--light {
    color: var(--color-ink);
    background: var(--color-soft);
}

.recruit-entry__panel p {
    margin: 0 0 16px;
    font-family: var(--font-en);
    font-size: clamp(34px, 5vw, 72px);
    font-weight: 900;
    line-height: .9;
}

.recruit-entry__panel h2 {
    margin: 0 0 28px;
    font-size: clamp(22px, 3vw, 38px);
    line-height: 1.35;
}

.staff-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    width: min(1180px, calc(100% - 40px));
    min-height: 640px;
    margin: 0 auto;
    padding: clamp(64px, 8vw, 118px) 0;
}

.staff-detail-hero__body {
    position: relative;
    z-index: 1;
}

.staff-detail-hero__label {
    margin: 0 0 22px;
    color: var(--color-blue);
    font-family: var(--font-en);
    font-size: clamp(36px, 7vw, 92px);
    font-weight: 900;
    line-height: .9;
}

.staff-detail-hero h1 {
    margin: 0;
    color: var(--color-ink);
    font-size: clamp(30px, 5vw, 70px);
    line-height: 1.08;
}

.staff-detail-hero__sub {
    margin: 18px 0 0;
    color: var(--color-muted);
    font-weight: 900;
}

.staff-detail-hero__body > p:last-child {
    margin: 24px 0 0;
    font-size: 17px;
    font-weight: 700;
}

.staff-detail-hero__image {
    position: relative;
    min-height: 400px;
    margin: 0;
    overflow: hidden;
    background: var(--color-soft);
}

.staff-detail-hero__image::before {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 72%;
    height: 72%;
    content: "";
    border: 2px solid var(--color-rainbow-pink);
}

.staff-detail-hero__image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.staff-detail-body,
.other-staff,
.staff-detail-nav {
    width: min(1040px, calc(100% - 40px));
    margin: 0 auto;
}

.staff-detail-body {
    display: grid;
    gap: clamp(48px, 7vw, 86px);
    padding: clamp(28px, 5vw, 72px) 0 clamp(74px, 9vw, 130px);
}

.staff-story-section {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: clamp(24px, 5vw, 64px);
    padding-top: 36px;
    border-top: 1px solid rgba(23, 33, 43, .18);
}

.staff-story-section__num {
    margin: 0;
    color: rgba(89, 189, 237, .32);
    font-family: var(--font-en);
    font-size: clamp(50px, 8vw, 92px);
    font-weight: 900;
    line-height: .82;
}

.staff-story-section h2 {
    margin: 0 0 22px;
    color: var(--color-ink);
    font-size: clamp(24px, 3.2vw, 42px);
    line-height: 1.35;
}

.staff-story-section p {
    margin: 0;
}

.staff-story-section p + p {
    margin-top: 18px;
}

.other-staff {
    padding: clamp(64px, 8vw, 118px) 0;
    border-top: 1px solid rgba(23, 33, 43, .18);
}

.other-staff__title {
    margin: 0 0 30px;
    color: var(--color-ink);
    font-family: var(--font-en);
    font-size: clamp(34px, 6vw, 82px);
    font-weight: 900;
    line-height: .9;
}

.other-staff__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.other-staff-card a {
    display: grid;
    grid-template-rows: 180px 1fr;
    min-height: 300px;
    color: var(--color-ink);
    text-decoration: none;
    background: #fff;
    border: 1px solid rgba(23, 33, 43, .14);
    transition: transform .24s ease, box-shadow .24s ease;
}

.other-staff-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.other-staff-card div {
    padding: 20px;
}

.other-staff-card p,
.other-staff-card h3 {
    margin: 0;
}

.other-staff-card p {
    color: var(--color-blue);
    font-size: 13px;
    font-weight: 900;
}

.other-staff-card h3 {
    margin-top: 8px;
    font-size: 20px;
}

.other-staff-card a:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.staff-detail-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    padding: 0 0 clamp(80px, 10vw, 150px);
}

@media (max-width: 980px) {
    .site-header {
        position: sticky;
        align-items: center;
        flex-direction: row;
        min-height: 72px;
        padding-left: 20px;
    }

    .mvv-section__grid {
        grid-template-columns: 1fr;
        width: calc(100% - 48px);
        margin-top: -30px;
    }

    .mvv-card + .mvv-card {
        border-top: 1px solid var(--color-line);
        border-left: 0;
    }

    .section--message .split-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .section--message .section-heading {
        max-width: 660px;
    }

    .menu-toggle {
        position: relative;
        z-index: 42;
        display: grid;
        place-items: center;
        width: 72px;
        height: 72px;
        padding: 0;
        color: #fff;
        background: #15191d;
        border: 0;
        cursor: pointer;
    }

    .menu-toggle__label {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
    }

    .menu-toggle__icon,
    .menu-toggle__icon::after {
        width: 22px;
        height: 1px;
        content: "";
        background: currentColor;
        transition: transform .3s ease;
    }

    .menu-toggle__icon::after {
        display: block;
        transform: rotate(90deg);
    }

    .menu-open .menu-toggle__icon {
        transform: rotate(45deg);
    }

    .site-nav {
        position: fixed;
        inset: 72px 0 0;
        z-index: 40;
        padding: 36px 24px 56px;
        overflow-y: auto;
        visibility: hidden;
        background: #fff;
        opacity: 0;
        transform: translateY(-12px);
        transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
    }

    .menu-open {
        overflow: hidden;
    }

    .menu-open .site-nav {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .site-nav > ul {
        display: grid;
        gap: 0;
    }

    .site-nav > ul > li {
        border-bottom: 1px solid var(--color-line);
    }

    .site-nav > ul > li > a {
        width: 100%;
        min-height: 64px;
        font-size: 22px;
    }

    .site-nav > ul > li > a::before {
        content: none;
    }

    .site-nav .nav-item--contact > a {
        justify-content: center;
        min-width: 0;
        margin-top: 28px;
    }

    .link-group-grid {
        grid-template-columns: 1fr;
    }

    .recruit-hero {
        min-height: 0;
        padding-top: 56px;
    }

    .recruit-hero__entry {
        top: 210px;
        bottom: auto;
    }

    .recruit-hero__image {
        position: relative;
        width: calc(100% + 20px);
        height: auto;
        min-height: 0;
        margin: 38px -20px 0 0;
        aspect-ratio: 4 / 5;
    }

    .recruit-strength__grid,
    .recruit-numbers__grid,
    .recruit-interview__grid,
    .recruit-job__grid,
    .recruit-day__grid,
    .recruit-flow,
    .recruit-entry {
        grid-template-columns: 1fr;
    }

    .recruit-strength__grid article,
    .recruit-job__grid article,
    .recruit-day__grid article {
        min-height: 0;
    }

    .recruit-job-modal {
        width: calc(100% - 24px);
        max-height: calc(100dvh - 24px);
    }

    .recruit-job-modal__panel {
        max-height: calc(100dvh - 24px);
    }

    .recruit-job-modal__header {
        padding: 20px;
    }

    .recruit-job-modal__body {
        padding: 20px;
    }

    .recruit-job-modal__body dl > div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .recruit-interview-card a {
        min-height: 320px;
    }

    .recruit-note-card {
        grid-template-columns: 1fr;
    }

    .recruit-note-card {
        gap: 18px;
    }

    .recruit-note-card__arrow {
        justify-self: end;
    }

    .recruit-flow {
        gap: 24px;
    }

    .recruit-selection-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .recruit-selection-flow li:nth-child(2)::after,
    .recruit-selection-flow li:nth-child(4)::after {
        content: none;
    }

    .staff-detail-hero,
    .staff-story-section,
    .other-staff__grid {
        grid-template-columns: 1fr;
    }

    .staff-detail-hero {
        min-height: 0;
    }

    .staff-detail-hero__image,
    .staff-detail-hero__image img {
        min-height: 260px;
    }

    .staff-story-section {
        gap: 16px;
    }

    .site-nav .sub-menu {
        position: static;
        display: none;
        min-width: 100%;
        padding: 4px 0 0 12px;
        visibility: visible;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        transform: none;
        backdrop-filter: none;
    }

    .site-nav .sub-menu::before {
        content: none;
    }

    .site-nav .has-submenu:hover > .sub-menu,
    .site-nav .has-submenu:focus-within > .sub-menu {
        display: none;
        transform: none;
    }

    .site-nav .has-submenu.is-open > .sub-menu {
        display: grid;
        transform: none;
    }

    .site-nav .sub-menu a {
        min-height: 30px;
        padding: 0;
        font-size: 12px;
    }

    .site-nav .sub-menu a:hover,
    .site-nav .sub-menu a:focus {
        padding-left: 0;
        background: transparent;
    }

    .hero,
    .page-hero,
    .about-strip,
    .recruit-panel,
    .split-layout,
    .cta-band,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .hero__media,
    .page-hero__media {
        min-height: 340px;
    }

    .showcase-grid,
    .card-grid,
    .form-field-grid,
    .visual-card-grid {
        grid-template-columns: 1fr;
    }

    .showcase-card--wide {
        min-height: 420px;
    }

    .showcase-card {
        min-height: 360px;
    }

    .scroll-cue {
        display: none;
    }

    .top-visual {
        height: calc(100vh - 120px);
        min-height: 560px;
    }

    .gw-section__inner {
        grid-template-columns: 1fr;
    }

    .gw-section__image--pc {
        display: none;
    }

    .gw-section__image--sp {
        display: block;
        order: 2;
    }

    .gw-section__content {
        order: 1;
    }

    .gw-section__repeat {
        top: -44px;
    }

    .gw-news__table,
    .gw-news__table tbody,
    .gw-news__table tr,
    .gw-news__table td {
        display: block;
        width: 100%;
    }

    .gw-news__table td {
        padding: 4px 0;
    }

    .gw-news__table td:first-child,
    .gw-news__table td:nth-child(2) {
        width: 100%;
    }

    .gw-news__table td:nth-child(2) {
        padding-top: 8px;
    }

    .gw-news__table td:last-child {
        padding-top: 10px;
    }

    .gw-news__table tr {
        padding: 22px 0;
    }
}

@media (max-width: 640px) {
    .recruit-selection-flow {
        grid-template-columns: 1fr;
    }

    .recruit-selection-flow li:not(:last-child)::after {
        top: auto;
        right: 50%;
        bottom: -25px;
        content: "↓";
        transform: translateX(50%);
    }
}

@media (max-width: 640px) {
    .site-header {
        min-height: 0;
    }

    .mvv-section__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .mvv-section__heading h2 {
        font-size: 27px;
    }

    .mvv-section__grid {
        width: calc(100% - 24px);
        margin-top: -18px;
    }

    .mvv-card {
        padding: 30px 24px;
    }

    .page-hero.page-hero--message {
        min-height: 250px;
    }

    .page-hero--message .page-hero__copy {
        width: calc(100% - 40px);
        min-height: 250px;
        padding: 54px 0;
    }

    .page-hero--message .page-hero__copy h1 {
        font-size: 42px;
    }

    .section--message .split-layout {
        width: calc(100% - 40px);
        padding: 38px 24px;
    }

    .section.section--message {
        padding-top: 36px;
        padding-bottom: 64px;
    }

    .section--message .section-heading {
        padding-top: 26px;
    }

    .section--message .section-heading::before {
        top: -22px;
        font-size: 88px;
    }

    .section--message .section-heading h2 {
        font-size: 25px;
    }

    .section--message .section-body {
        padding-top: 30px;
    }

    .site-logo {
        width: 150px;
    }

    .site-nav a {
        font-size: 13px;
    }

    .section-heading--row,
    .cta-band {
        align-items: flex-start;
        flex-direction: column;
    }

    .article-breadcrumb {
        padding: 14px 0;
    }

    .article-detail__header,
    .article-detail__body {
        width: min(100% - 32px, 1050px);
    }

    .article-detail__header {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .article-detail__header h1 {
        margin-top: 20px;
        font-size: 28px;
    }

    .article-detail__body {
        font-size: 15px;
        line-height: 1.9;
    }

    .article-pager {
        grid-template-columns: 1fr 46px 1fr;
        gap: 12px;
        min-height: 140px;
    }

    .article-pager__item strong {
        display: none;
    }

    .article-pager__item span {
        margin-bottom: 0;
    }

    .article-pager__index {
        width: 46px;
        height: 46px;
    }

    .article-related__grid {
        grid-template-columns: 1fr;
    }

    .article-related__card a {
        min-height: 190px;
        padding: 24px;
    }

    .news-item,
    .info-table div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .top-visual__slide {
        align-items: flex-end;
        padding: 34px 24px 96px;
    }

    .top-visual__slide p {
        font-size: clamp(46px, 16vw, 74px);
    }

    .scroll-cue__text,
    .scroll-cue__line {
        display: none;
    }

    .concept-section__quote {
        text-align: left;
    }

    .concept-section__body {
        text-align: left;
    }

    .gw-section__image img,
    .gw-recruit__image img {
        height: 320px;
    }
}

}

@media (max-width: 767px) {
    .top-visual {
        height: min(125vw, calc(100svh - 76px));
        min-height: 0;
    }

    .top-visual__slide {
        align-items: flex-end;
        padding: 24px;
        background-image: var(--top-visual-mobile);
        background-color: #25292c;
        background-position: center top;
        background-repeat: no-repeat;
        background-size: 100% auto;
    }

    .top-visual__slide::before {
        background: linear-gradient(0deg, rgba(8, 38, 54, .72), rgba(8, 38, 54, .08) 56%);
    }

    .top-visual__slide p {
        position: relative;
        z-index: 4;
        display: block;
        width: 100%;
        max-width: calc(100vw - 48px);
        margin: 0;
        color: #fff;
        font-size: clamp(42px, 13vw, 58px);
        font-weight: 700;
        line-height: 1.02;
        visibility: visible;
        overflow-wrap: anywhere;
        opacity: 1;
    }

    .gw-section__image img,
    .gw-recruit__image img {
        height: auto;
        aspect-ratio: 4 / 5;
        object-fit: cover;
        object-position: center;
    }
}

/* Workers page hero overrides the shared image-based hero. */
.page-hero.page-hero--workers {
    position: relative;
    display: block;
    min-height: 440px;
    padding: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 28%, rgba(244, 194, 69, .24) 0 80px, transparent 81px),
        radial-gradient(circle at 91% 78%, rgba(115, 198, 225, .22) 0 130px, transparent 131px),
        linear-gradient(125deg, #f7f6f2 0%, #fff 68%);
    border-bottom: 1px solid var(--color-line);
}

.page-hero.page-hero--workers::after {
    position: absolute;
    right: max(32px, calc((100vw - 1152px) / 2));
    bottom: -.12em;
    color: rgba(232, 107, 72, .07);
    content: "WORK";
    font-family: var(--font-en);
    font-size: clamp(120px, 19vw, 270px);
    font-weight: 900;
    line-height: .8;
    letter-spacing: -.08em;
    pointer-events: none;
}

.page-hero.page-hero--workers .page-hero__copy {
    position: relative;
    z-index: 1;
    justify-content: center;
    min-height: 440px;
    padding: 64px 0 76px;
}

.page-hero.page-hero--workers .section-label {
    margin: 0 0 24px;
    color: #e86b48;
}

.page-hero.page-hero--workers h1 {
    max-width: none;
    font-size: clamp(54px, 6.2vw, 80px);
    line-height: 1.16;
    letter-spacing: -.055em;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .page-hero.page-hero--workers,
    .page-hero.page-hero--workers .page-hero__copy {
        min-height: 350px;
    }

    .page-hero.page-hero--workers .page-hero__copy {
        width: calc(100% - 40px);
        padding: 52px 0 66px;
    }

    .page-hero.page-hero--workers h1 {
        font-size: clamp(42px, 12.5vw, 58px);
        white-space: normal;
    }

    .page-hero.page-hero--workers::after {
        right: 18px;
        bottom: 12px;
        font-size: 33vw;
    }
}
