:root {
    --color-ink: #122022;
    --color-ink-soft: #4c5a5d;
    --color-paper: #ffffff;
    --color-mist: #f3f8f6;
    --color-primary: #0041a3;
    --color-accent: #d4d927;
    --color-navy: #0041a3;
    --color-green: #d4d927;
    --color-cyan: #2d7cff;
    --color-coral: #d4d927;
    --color-line: rgba(18, 32, 34, 0.12);
    --shadow: 0 18px 50px rgba(0, 65, 163, 0.14);
    --header-height: 76px;
    --radius: 8px;
    --content-width: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    margin: 0;
    color: var(--color-ink);
    background: var(--color-paper);
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    line-height: 1.8;
}

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

a {
    color: inherit;
}

.skip-link,
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    z-index: 10000;
    width: auto;
    height: auto;
    clip: auto;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    background: var(--color-paper);
    border: 2px solid var(--color-green);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: var(--header-height);
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--color-line);
    backdrop-filter: blur(14px);
}

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

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
    gap: 24px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-width: 0;
}

.site-brand__mark {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: var(--color-primary);
    background: var(--color-accent);
    border-radius: 8px;
    font-weight: 800;
    letter-spacing: 0;
}

.site-brand__text {
    display: grid;
    line-height: 1.25;
}

.site-brand__text strong {
    font-size: 18px;
}

.site-brand__text small {
    color: var(--color-ink-soft);
    font-size: 11px;
}

.custom-logo {
    max-width: 220px;
    max-height: 58px;
}

.custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.primary-nav a {
    text-decoration: none;
}

.primary-nav a:hover {
    color: var(--color-primary);
}

.primary-nav__cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 18px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 800;
    line-height: 1.25;
}

.primary-nav__cta,
.button--primary {
    color: var(--color-primary);
    background: var(--color-coral);
    box-shadow: 0 12px 28px rgba(212, 217, 39, 0.28);
}

.button--ghost {
    color: var(--color-paper);
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(0, 65, 163, 0.22);
    backdrop-filter: blur(8px);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: var(--color-paper);
}

.nav-toggle span:not(.screen-reader-text) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--color-ink);
}

.hero {
    position: relative;
    display: grid;
    align-items: stretch;
    min-height: calc(100svh - var(--header-height));
    overflow: hidden;
    background: var(--color-primary);
}

.hero__image,
.hero__image img,
.hero__overlay,
.hero__arrows {
    position: absolute;
    inset: 0;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.06);
}

.hero__overlay {
    background:
        linear-gradient(90deg, rgba(0, 65, 163, 0.82), rgba(0, 65, 163, 0.30) 48%, rgba(0, 65, 163, 0.68)),
        linear-gradient(180deg, rgba(0, 65, 163, 0.12), rgba(0, 65, 163, 0.42)),
        radial-gradient(circle at 78% 22%, rgba(212, 217, 39, 0.34), transparent 28%);
}

.hero__arrows {
    z-index: 1;
    pointer-events: none;
}

.hero-arrow {
    position: absolute;
    display: block;
    height: 96px;
    width: 860px;
    background: rgba(255, 255, 255, 0.88);
    clip-path: polygon(0 28%, 82% 28%, 82% 0, 100% 50%, 82% 100%, 82% 72%, 0 72%);
    mix-blend-mode: screen;
    opacity: 0;
    transform-origin: center;
    animation: arrowFlow 2600ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-arrow--main {
    --arrow-rotate: 0deg;
    left: -7vw;
    top: 47%;
    background: rgba(212, 217, 39, 0.94);
    transform: translateX(-12%) rotate(0deg) scaleX(0.72);
}

.hero-arrow--rise {
    --arrow-rotate: -42deg;
    right: 7vw;
    top: 20%;
    width: 500px;
    height: 78px;
    background: rgba(255, 255, 255, 0.84);
    transform: translateX(-8%) rotate(-42deg) scaleX(0.72);
    animation-delay: 360ms;
}

.hero-arrow--lower {
    --arrow-rotate: 12deg;
    right: -13vw;
    bottom: 10%;
    width: 740px;
    height: 76px;
    background: rgba(212, 217, 39, 0.74);
    transform: translateX(-10%) rotate(12deg) scaleX(0.72);
    animation-delay: 640ms;
}

.hero__content {
    position: relative;
    z-index: 2;
    width: min(820px, calc(100% - 40px));
    margin-left: max(20px, calc((100vw - var(--content-width)) / 2));
    padding: clamp(96px, 16vh, 168px) 0 82px;
    color: var(--color-paper);
}

.hero__eyebrow,
.section-label {
    margin: 0 0 12px;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero__eyebrow {
    display: inline-flex;
    padding: 7px 12px;
    color: var(--color-primary);
    background: var(--color-accent);
}

.hero__title {
    margin: 0;
    max-width: 790px;
    font-size: 92px;
    line-height: 0.98;
    letter-spacing: 0;
    text-shadow: 0 8px 34px rgba(0, 28, 78, 0.42);
}

.hero__title span {
    display: block;
}

.hero__title--jp {
    display: grid;
    gap: 6px;
    max-width: 900px;
    font-size: 50px;
    line-height: 1.28;
}

.hero__title--jp span:nth-child(3) {
    max-width: none;
    font-size: 0.72em;
    white-space: nowrap;
    overflow-wrap: normal;
}

.hero__statement {
    display: inline-block;
    margin: 26px 0 0;
    padding: 6px 12px 7px;
    color: var(--color-primary);
    background: rgba(255, 255, 255, 0.92);
    font-size: 38px;
    font-weight: 900;
    line-height: 1.35;
}

.hero__lead {
    max-width: 520px;
    margin: 18px 0 0;
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 700;
    text-shadow: 0 6px 22px rgba(0, 28, 78, 0.45);
}

.hero__actions,
.cta-panel__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero__caption {
    position: absolute;
    z-index: 2;
    right: max(20px, calc((100vw - var(--content-width)) / 2));
    bottom: 28px;
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-weight: 900;
    font-size: 30px;
    line-height: 1;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    animation: revealUp 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero .reveal {
    transform: translateY(18px);
    clip-path: inset(0 100% 0 0);
    filter: blur(2px);
    animation-name: heroWriteIn;
    animation-duration: 2400ms;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal:nth-child(2) {
    animation-delay: 160ms;
}

.reveal:nth-child(3) {
    animation-delay: 320ms;
}

.hero__statement.reveal {
    animation-delay: 520ms;
}

.hero__lead.reveal {
    animation-delay: 760ms;
}

.hero__actions.reveal {
    animation-delay: 980ms;
}

.hero__caption.reveal {
    transform: translateX(18px);
    clip-path: none;
    filter: none;
    animation-name: revealSide;
    animation-delay: 1200ms;
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealSide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroWriteIn {
    0% {
        opacity: 0;
        transform: translateY(18px);
        clip-path: inset(0 100% 0 0);
        filter: blur(2px);
    }

    45% {
        opacity: 1;
        filter: blur(0.6px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
        filter: blur(0);
    }
}

@keyframes arrowFlow {
    to {
        opacity: 1;
        transform: translateX(0) rotate(var(--arrow-rotate, 0deg)) scaleX(1);
    }
}

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

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

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

.section--dark {
    color: var(--color-paper);
    background:
        linear-gradient(135deg, rgba(212, 217, 39, 0.22), transparent 34%),
        var(--color-primary);
}

.section--dark .section-label,
.cta-panel .section-label,
.page-hero .section-label {
    color: var(--color-accent);
}

.section--cta {
    background: linear-gradient(135deg, #eef4ff, #ffffff);
}

.two-column {
    display: grid;
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
    gap: clamp(28px, 5vw, 80px);
}

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

.section-heading--wide {
    max-width: none;
}

.section-heading__lead--nowrap {
    max-width: none;
    white-space: nowrap;
    overflow-wrap: normal;
}

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

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
h2,
h3 {
    margin-top: 0;
    line-height: 1.35;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(30px, 4vw, 52px);
}

h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.prose p:first-child {
    margin-top: 0;
}

.prose {
    color: var(--color-ink-soft);
    font-size: 17px;
}

.prose h1,
.prose h2,
.prose h3 {
    color: var(--color-ink);
}

.about-lead {
    max-width: 900px;
    margin-bottom: 34px;
}

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

.about-feature-card {
    position: relative;
    display: grid;
    gap: 10px;
    padding: 28px;
    overflow: hidden;
    background: var(--color-paper);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-feature-card > span {
    color: var(--color-accent);
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
}

.about-feature-card__label {
    margin: 0;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 900;
}

.about-feature-card h3 {
    margin-bottom: 0;
}

.about-feature-card p:last-child {
    margin: 0;
    color: var(--color-ink-soft);
}

.info-grid,
.news-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

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

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

.info-card,
.news-card,
.theme-card,
.flow-list li,
.faq-list details,
.news-row {
    background: var(--color-paper);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.info-card,
.news-card,
.theme-card {
    padding: 24px;
}

.info-card--wide {
    grid-column: 1 / -1;
    background:
        linear-gradient(135deg, rgba(212, 217, 39, 0.18), transparent 38%),
        var(--color-paper);
}

.entry-detail-grid {
    display: grid;
    grid-template-columns: minmax(160px, 0.45fr) minmax(0, 1fr);
    gap: 20px;
}

.entry-detail-grid span {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 900;
}

.entry-detail-grid p {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
}

.compact-list {
    margin: 0;
    padding-left: 1.2em;
}

.compact-list li + li {
    margin-top: 6px;
}

.theme-list {
    display: grid;
    gap: 16px;
}

.company-theme-grid {
    display: grid;
    gap: 20px;
}

.company-theme-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
    gap: 24px;
    padding: 26px;
    background: var(--color-paper);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.company-theme-card__head {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.company-theme-card__number {
    color: var(--color-primary);
    font-weight: 900;
}

.industry-chip {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.industry-chip--construction {
    color: #6a3a00;
    background: #ffe6b7;
}

.industry-chip--aviation {
    color: #004264;
    background: #cdefff;
}

.company-theme-card__brand {
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 12px;
}

.company-theme-card__logo {
    display: grid;
    place-items: center;
    width: min(100%, 260px);
    min-height: 126px;
    padding: 20px;
    background: #f7f9fb;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
}

.company-theme-card__logo img {
    max-width: 100%;
    max-height: 92px;
    object-fit: contain;
}

.company-theme-card__logo span {
    color: var(--color-primary);
    font-weight: 900;
}

.company-theme-card__brand h3 {
    margin: 0;
}

.company-theme-card__body {
    display: grid;
    gap: 16px;
}

.company-theme-card__theme {
    margin: 0;
    color: var(--color-primary);
    font-size: 21px;
    font-weight: 900;
    line-height: 1.55;
}

.company-theme-card__details {
    display: grid;
    gap: 14px;
}

.company-theme-card__detail {
    display: grid;
    gap: 4px;
    padding-left: 16px;
    border-left: 3px solid rgba(212, 217, 39, 0.86);
}

.company-theme-card__detail h4 {
    margin: 0;
    color: var(--color-ink);
    font-size: 16px;
    line-height: 1.55;
}

.company-theme-card__detail p {
    margin: 0;
    color: var(--color-ink-soft);
    font-size: 15px;
}

.company-theme-card--more {
    grid-template-columns: 1fr;
    color: var(--color-paper);
    background:
        linear-gradient(135deg, rgba(212, 217, 39, 0.22), transparent 44%),
        var(--color-primary);
}

.company-theme-card--more span {
    color: var(--color-accent);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.company-theme-card--more p {
    margin: 0;
    max-width: 720px;
}

.theme-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
    gap: 24px;
}

.theme-card span,
.flow-list span,
.news-card time,
.news-row time {
    color: var(--color-primary);
    font-weight: 900;
}

.flow-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 24px 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.flow-list li {
    position: relative;
    padding: 24px;
    color: var(--color-ink);
}

.flow-list li::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 13px solid var(--color-accent);
    transform: translateY(-50%);
}

.flow-list li:last-child::after {
    display: none;
}

.teaser,
.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.teaser p,
.cta-panel p {
    max-width: 720px;
}

.text-link {
    color: var(--color-primary);
    font-weight: 900;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.news-card h3 a,
.news-row h2 a {
    text-decoration: none;
}

.news-card h3 a:hover,
.news-row h2 a:hover {
    color: var(--color-primary);
}

.news-more {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-panel {
    display: block;
    padding: clamp(36px, 6vw, 64px);
    color: var(--color-paper);
    background:
        linear-gradient(135deg, rgba(212, 217, 39, 0.24), transparent 42%),
        var(--color-primary);
    border-radius: var(--radius);
}

.page-hero {
    padding: clamp(88px, 13vw, 150px) 0 clamp(64px, 8vw, 96px);
    color: var(--color-paper);
    background:
        linear-gradient(135deg, rgba(212, 217, 39, 0.24), rgba(255, 255, 255, 0.08)),
        var(--color-primary);
}

.page-hero--award,
.page-hero--news,
.page-hero--faq {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(0, 28, 70, 0.9), rgba(0, 65, 163, 0.54) 48%, rgba(0, 20, 48, 0.18)),
        var(--color-primary);
}

.page-hero--award {
    background:
        linear-gradient(90deg, rgba(0, 28, 70, 0.92), rgba(0, 65, 163, 0.54) 48%, rgba(0, 20, 48, 0.12)),
        url("../images/award-hero.png") center / cover no-repeat;
}

.page-hero--news {
    background:
        linear-gradient(90deg, rgba(0, 28, 70, 0.9), rgba(0, 65, 163, 0.5) 48%, rgba(0, 20, 48, 0.12)),
        url("../images/news-hero.png") center / cover no-repeat;
}

.page-hero--faq {
    background:
        linear-gradient(90deg, rgba(0, 28, 70, 0.9), rgba(0, 65, 163, 0.5) 48%, rgba(0, 20, 48, 0.12)),
        url("../images/faq-hero.png") center / cover no-repeat;
}

.page-hero--award h1,
.page-hero--news h1,
.page-hero--faq h1 {
    text-shadow: 0 18px 48px rgba(0, 14, 36, 0.42);
}

.page-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(42px, 7vw, 72px);
}

.page-hero p {
    max-width: 720px;
}

.page-hero--apply .button {
    margin-top: 20px;
}

.faq-list,
.faq-chat-list {
    display: grid;
    gap: 14px;
}

.faq-list details {
    padding: 20px 24px;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 900;
}

.faq-chat-list {
    gap: 26px;
}

.faq-chat {
    display: grid;
    gap: 12px;
}

.faq-chat__question,
.faq-chat__answer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    max-width: 840px;
}

.faq-chat__question {
    justify-self: start;
}

.faq-chat__answer {
    justify-self: end;
}

.faq-chat__question span,
.faq-chat__answer span {
    display: inline-grid;
    flex: 0 0 34px;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    font-weight: 900;
}

.faq-chat__question span {
    color: var(--color-paper);
    background: var(--color-primary);
}

.faq-chat__answer span {
    color: var(--color-primary);
    background: var(--color-accent);
}

.faq-chat__question p,
.faq-chat__answer p {
    position: relative;
    flex: 1;
    margin: 0;
    padding: 16px 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.faq-chat__question p {
    color: var(--color-paper);
    background: var(--color-primary);
}

.faq-chat__answer p {
    background: var(--color-paper);
    border: 1px solid var(--color-line);
}

.news-list {
    display: grid;
    gap: 14px;
}

.news-row {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 20px;
    padding: 24px;
}

.single-post .section__inner {
    max-width: 820px;
}

.site-footer {
    padding: 52px 0;
    color: var(--color-paper);
    background: #071b2d;
}

.site-footer__inner {
    width: min(var(--content-width), calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 40px;
}

.site-brand--footer .site-brand__text small {
    color: rgba(255, 255, 255, 0.68);
}

.footer-organizers {
    display: grid;
    gap: 12px;
    margin: 22px 0 18px;
}

.footer-organizers__logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.footer-organizers__logos img {
    width: auto;
    max-width: min(260px, 100%);
    max-height: 58px;
    padding: 10px 14px;
    background: var(--color-paper);
    border-radius: var(--radius);
}

.footer-organizers p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    font-weight: 700;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin: 20px 0;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.84);
    text-decoration: none;
}

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

    .hero-arrow {
        opacity: 1;
        animation: none !important;
        transform: translateX(0) rotate(var(--arrow-rotate, 0deg)) scaleX(1);
    }
}

@media (max-width: 1080px) {
    .primary-nav {
        gap: 12px;
        font-size: 13px;
    }

    .hero__caption {
        right: 24px;
        font-size: 24px;
    }
}

@media (max-width: 920px) {
    :root {
        --header-height: 68px;
    }

    .nav-toggle {
        display: inline-block;
    }

    .primary-nav {
        position: fixed;
        inset: var(--header-height) 0 auto 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px 20px 24px;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid var(--color-line);
        box-shadow: var(--shadow);
        white-space: normal;
    }

    .primary-nav.is-open {
        display: flex;
    }

    .primary-nav a {
        padding: 12px 4px;
    }

    .primary-nav__cta {
        margin-top: 8px;
        text-align: center;
    }

    .hero__content {
        padding-top: 76px;
    }

    .hero__title {
        max-width: 650px;
        font-size: 70px;
    }

    .hero__title--jp {
        max-width: 760px;
        font-size: 42px;
    }

    .hero__statement {
        font-size: 30px;
    }

    .hero-arrow--main {
        top: 50%;
        left: -18vw;
        width: 680px;
        height: 78px;
    }

    .hero-arrow--rise {
        right: -3vw;
        top: 24%;
        width: 400px;
        height: 68px;
    }

    .hero__caption {
        bottom: 20px;
        font-size: 18px;
    }

    .two-column,
    .info-grid,
    .entry-grid,
    .about-feature-grid,
    .news-grid,
    .flow-list,
    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .company-theme-card {
        grid-template-columns: 1fr;
    }

    .flow-list li::after {
        top: auto;
        right: auto;
        left: 28px;
        bottom: -21px;
        border-top: 13px solid var(--color-accent);
        border-right: 10px solid transparent;
        border-left: 10px solid transparent;
        border-bottom: 0;
        transform: none;
    }

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

    .theme-card {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .teaser {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .site-header__inner,
    .section__inner,
    .site-footer__inner {
        width: min(100% - 28px, var(--content-width));
    }

    .site-brand__text strong {
        font-size: 15px;
    }

    .site-brand__text small {
        display: none;
    }

    .hero {
        min-height: 700px;
    }

    .hero__content {
        width: calc(100% - 28px);
        margin-left: 14px;
        padding-top: 70px;
        padding-bottom: 140px;
    }

    .hero__eyebrow {
        font-size: 11px;
    }

    .hero__title {
        max-width: 100%;
        font-size: 43px;
        line-height: 1.02;
    }

    .hero__title--jp {
        font-size: 29px;
        line-height: 1.35;
    }

    .hero__title--jp span:nth-child(3) {
        font-size: 15px;
        white-space: nowrap;
    }

    .hero__lead {
        max-width: 92%;
        font-size: 16px;
    }

    .hero__statement {
        font-size: 24px;
    }

    .hero-arrow {
        height: 52px;
        opacity: 0.88;
    }

    .hero-arrow--main {
        top: 58%;
        width: 560px;
    }

    .hero-arrow--rise {
        top: 34%;
        right: -24vw;
        width: 360px;
    }

    .hero-arrow--lower {
        bottom: 14%;
        right: -42vw;
        width: 520px;
    }

    .hero__caption {
        right: 14px;
        bottom: 16px;
        font-size: 14px;
    }

    .button,
    .primary-nav__cta {
        width: 100%;
    }

    .section-heading--row,
    .news-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .faq-chat__question,
    .faq-chat__answer {
        max-width: 100%;
    }

    .faq-chat__answer {
        justify-self: start;
    }

    .cta-panel {
        padding: 30px 22px;
    }
}
