:root {
    --color-base: #ffffff;
    --color-text: #000000;
    --font-ja: "Noto Sans JP", "Noto Sans", sans-serif;
    --font-en: "Special Gothic Expanded One", sans-serif;
    --content-width: 75rem;
    --header-padding-inline: clamp(1rem, 2.3vw, 2rem);
    --header-height: clamp(7rem, 9vw, 7.75rem);
    --section-space-pc: 6.5rem;
    --section-space-sp: 4.5rem;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    min-width: 20rem;
    background: var(--color-base);
    color: var(--color-text);
    font-family: var(--font-ja);
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

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

a,
button {
    color: inherit;
}

button {
    cursor: pointer;
}

body.is-loading {
    overflow: hidden;
}

body.is-menu-open {
    overflow: hidden;
}

/* Loading */
.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    background: #000000;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.loading-screen__inner {
    width: 100%;
    padding: 0;
    display: grid;
    justify-items: center;
    gap: 1.25rem;
}

.loading-screen__logo {
    width: min(14rem, 52vw);
    opacity: 0;
    transform: translateY(1rem);
    animation: loading-logo-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.loading-screen__line {
    width: 100%;
    height: 0.0625rem;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: left center;
    animation: loading-line-sweep 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

body.is-loaded .loading-screen {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@keyframes loading-line-sweep {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@keyframes loading-logo-rise {
    from {
        opacity: 0;
        transform: translateY(1rem);
    }

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

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 60;
    min-height: var(--header-height);
    background: rgb(255 255 255 / 0.78);
    backdrop-filter: blur(0.5rem);
    pointer-events: none;
}

.site-header__inner {
    width: min(100%, calc(var(--content-width) + (var(--header-padding-inline) * 2)));
    min-height: var(--header-height);
    margin-inline: auto;
    padding: 1rem var(--header-padding-inline);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    pointer-events: auto;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    width: min(14rem, 100%);
}

.menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.menu-button__icon {
    width: 6.25rem;
    height: 6.25rem;
    background: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.75rem 0.625rem;
    flex-shrink: 0;
}

.menu-button__lines {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 3.125rem;
    height: 0.625rem;
    justify-content: center;
}

.menu-button__line {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.0625rem;
    background: #ffffff;
    transform-origin: center;
    transition: transform 0.35s ease, top 0.35s ease;
}

.menu-button__line:first-child {
    top: 0;
}

.menu-button__line:last-child {
    top: 0.5rem;
}

.menu-button__text {
    font-family: var(--font-en);
    color: #ffffff;
    font-size: 0.6875rem;
    line-height: 1;
    letter-spacing: 0.12em;
    text-align: center;
}

.menu-button.is-open .menu-button__line:first-child {
    top: 0.25rem;
    transform: rotate(45deg);
}

.menu-button.is-open .menu-button__line:last-child {
    top: 0.25rem;
    transform: rotate(-45deg);
}

/* Global Menu */
.menu-close-button {
    position: fixed;
    top: 1rem;
    right: clamp(1rem, 2.3vw, 2rem);
    width: 6.25rem;
    height: 6.25rem;
    display: grid;
    place-items: center;
    background: transparent;
    border: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 85;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.menu-close-button__line {
    position: absolute;
    width: 3.125rem;
    height: 0.0625rem;
    background: #ffffff;
    transform-origin: center;
}

.menu-close-button__line:first-child {
    transform: rotate(45deg);
}

.menu-close-button__line:last-child {
    transform: rotate(-45deg);
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 0.22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 70;
}

.global-menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(42rem, 86vw);
    background: rgb(0 0 0 / 0.82);
    color: #ffffff;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 75;
}

.global-menu__inner {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    padding: calc(var(--header-height) + 2rem) clamp(1.5rem, 4vw, 3rem) 2rem;
    display: flex;
    align-items: center;
}

.global-menu__list {
    width: 100%;
    display: grid;
    gap: 1.5rem;
}

.global-menu__link {
    display: inline-block;
    font-family: var(--font-en);
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    line-height: 1.2;
    letter-spacing: 0.04em;
}

body.is-menu-open .menu-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.is-menu-open .menu-close-button {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.is-menu-open .global-menu {
    transform: translateX(0);
}

/* First View */
.fv {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    overflow: visible;
}

.fv__inner {
    width: min(100%, calc(var(--content-width) + (var(--header-padding-inline) * 2)));
    flex: 1;
    margin-inline: auto;
    padding: calc(var(--header-height) + clamp(0.5rem, 1vh, 1rem)) var(--header-padding-inline) clamp(1rem, 2vh, 2rem);
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}

.fv__content {
    width: 100%;
    max-width: var(--content-width);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    min-height: calc(100vh - var(--header-height) - clamp(1.5rem, 3vh, 3rem));
    min-height: calc(100svh - var(--header-height) - clamp(1.5rem, 3vh, 3rem));
    min-height: calc(100dvh - var(--header-height) - clamp(1.5rem, 3vh, 3rem));
    padding-bottom: clamp(1.25rem, 2vh, 2rem);
    overflow: hidden;
}

.fv__headline {
    font-family: var(--font-en);
    width: 100%;
    font-size: clamp(5.5rem, min(18vw, 22vh, 22vmin), 16rem);
    line-height: 0.9;
    letter-spacing: 0;
}

.fv__headline-line {
    display: block;
    opacity: 0;
    transform: translateY(2.5rem);
}

.fv__lead {
  max-width: 75rem;
  margin-top: clamp(0.875rem, 1.8vh, 1.75rem);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  text-wrap: pretty;
  opacity: 0;
  transform: translateY(2.5rem);
}

body.is-loaded .fv__headline-line,
body.is-loaded .fv__lead {
    animation: fv-rise 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

body.is-loaded .fv__headline-line:nth-child(1) {
    animation-delay: 0.05s;
}

body.is-loaded .fv__headline-line:nth-child(2) {
    animation-delay: 0.15s;
}

body.is-loaded .fv__headline-line:nth-child(3) {
    animation-delay: 0.25s;
}

body.is-loaded .fv__headline-line:nth-child(4) {
    animation-delay: 0.35s;
}

body.is-loaded .fv__lead {
    animation-delay: 0.5s;
}

@keyframes fv-rise {
    from {
        opacity: 0;
        transform: translateY(2.5rem);
    }

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

/* Our Philosophy */
.philosophy-section {
    background: #000000;
    color: #ffffff;
}

.philosophy-section__inner {
    width: min(100%, calc(var(--content-width) + (var(--header-padding-inline) * 2)));
    margin-inline: auto;
    padding: var(--section-space-pc) var(--header-padding-inline);
}

.philosophy-section__title {
    position: relative;
    display: inline-grid;
    font-family: var(--font-en);
    font-size: 6.25rem;
    line-height: 1;
    letter-spacing: 0;
}

.philosophy-section__title-text {
    grid-area: 1 / 1;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.philosophy-section__title-text--alt {
    font-weight: 700;
    opacity: 0;
    transform: translateY(0.25rem);
}

@media (hover: hover) and (pointer: fine) {
    .philosophy-section__title:hover .philosophy-section__title-text--default {
        opacity: 0;
        transform: translateY(-0.25rem);
    }

    .philosophy-section__title:hover .philosophy-section__title-text--alt {
        opacity: 1;
        transform: translateY(0);
    }
}

.philosophy-section__body {
    margin-top: 2rem;
    max-width: 43.75rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 2;
}

.philosophy-section__body p + p {
    margin-top: 0.25rem;
}

.section-subtitle {
    margin-top: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.7;
}

.section-subtitle--philosophy {
    max-width: 43.75rem;
}

.section-subtitle--execution {
    text-align: right;
}

.pc-break {
    display: none;
}

.sp-break {
    display: none;
}

/* Our Execution */
.execution-section {
    background: #000000;
    color: #ffffff;
}

.execution-section__inner {
    width: min(100%, calc(var(--content-width) + (var(--header-padding-inline) * 2)));
    margin-inline: auto;
    padding: var(--section-space-pc) var(--header-padding-inline);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.execution-section__title {
    position: relative;
    display: inline-grid;
    font-family: var(--font-en);
    font-size: 6.25rem;
    line-height: 1;
    letter-spacing: 0;
    text-align: right;
}

.execution-section__title-text {
    grid-area: 1 / 1;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.execution-section__title-text--alt {
    font-weight: 700;
    opacity: 0;
    transform: translateY(0.25rem);
}

@media (hover: hover) and (pointer: fine) {
    .execution-section__title:hover .execution-section__title-text--default {
        opacity: 0;
        transform: translateY(-0.25rem);
    }

    .execution-section__title:hover .execution-section__title-text--alt {
        opacity: 1;
        transform: translateY(0);
    }
}

.execution-section__body {
    width: min(100%, 43.75rem);
    margin-top: 2rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 2;
    text-align: right;
}

.execution-section__body p + p {
    margin-top: 0.25rem;
}

/* Integration */
.integration-section {
    background: #000000;
    color: #ffffff;
}

.integration-section__inner {
    width: min(100%, calc(var(--content-width) + (var(--header-padding-inline) * 2)));
    margin-inline: auto;
    padding: var(--section-space-pc) var(--header-padding-inline);
    text-align: center;
}

.integration-section__title {
    position: relative;
    display: inline-grid;
    font-family: var(--font-en);
    font-size: 6.25rem;
    line-height: 1;
    letter-spacing: 0;
}

.integration-section__title-text {
    grid-area: 1 / 1;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.integration-section__title-text--alt {
    font-weight: 700;
    opacity: 0;
    transform: translateY(0.25rem);
}

@media (hover: hover) and (pointer: fine) {
    .integration-section__title:hover .integration-section__title-text--default {
        opacity: 0;
        transform: translateY(-0.25rem);
    }

    .integration-section__title:hover .integration-section__title-text--alt {
        opacity: 1;
        transform: translateY(0);
    }
}

.integration-section__body {
    margin-top: 3rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 2;
}

.integration-section__body p + p {
    margin-top: 0.25rem;
}

/* Brand Gradient */
.brand-gradient-section {
    background: linear-gradient(90deg, #1A304B 0%, #94774E 100%);
}

.brand-gradient-section__inner {
    width: min(100%, calc(var(--content-width) + (var(--header-padding-inline) * 2)));
    min-height: 21.25rem;
    margin-inline: auto;
    padding: 6.5rem var(--header-padding-inline);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-gradient-section__logo {
    width: min(18.75rem, 100%);
}

/* Our Commitment */
.commitment-section {
    background: #ffffff;
    color: #000000;
}

.commitment-section__inner {
    width: min(100%, calc(var(--content-width) + (var(--header-padding-inline) * 2)));
    margin-inline: auto;
    padding: var(--section-space-pc) var(--header-padding-inline);
}

.commitment-section__title {
    font-family: var(--font-en);
    font-size: 6.25rem;
    line-height: 1;
    letter-spacing: 0;
}

.commitment-section__lead {
    margin-top: 2rem;
    max-width: 56.25rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 2;
}

.commitment-section__lead p + p {
    margin-top: 0.25rem;
}

.commitment-section__label {
    margin-top: 3rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
}

.commitment-item {
    padding-block: 3.25rem;
}

.commitment-item__title {
    font-family: var(--font-en);
    font-size: 3.5rem;
    line-height: 1.05;
    letter-spacing: 0;
}

.commitment-item__subtitle {
    margin-top: 0.2rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.7;
}

.commitment-item__text {
    margin-top: 2rem;
    max-width: 50rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 2;
}

/* Our Brand */
.brand-section {
    background: #ffffff;
    color: #000000;
}

.brand-section__inner {
    width: min(100%, calc(var(--content-width) + (var(--header-padding-inline) * 2)));
    margin-inline: auto;
    padding: 3.5rem var(--header-padding-inline) var(--section-space-pc);
}

.brand-section__title {
    font-family: var(--font-en);
    font-size: 6.25rem;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
}

.brand-row {
    width: 100vw;
    margin-top: 3rem;
    margin-left: calc(50% - 50vw);
    border-top: 0.0625rem solid #000000;
}

.brand-row + .brand-row {
    margin-top: 0;
}

.brand-row:last-of-type {
    border-bottom: 0.0625rem solid #000000;
}

/* Moving Text */
.marquee-section {
    background: #ffffff;
    color: #000000;
    padding: 3.5rem 0;
}

.marquee {
    overflow: hidden;
}

.marquee__track {
    display: flex;
    width: max-content;
    white-space: nowrap;
    will-change: transform;
    animation: marquee-scroll 24s linear infinite;
}

.marquee__text {
    flex: 0 0 auto;
    padding-right: 3rem;
    font-family: var(--font-en);
    font-size: 5rem;
    line-height: 1;
    letter-spacing: 0;
}

/* Privacy Page */
.privacy-page {
    background: #000000;
    color: #ffffff;
}

.privacy-page__hero {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
}

.privacy-page__inner {
    width: min(100%, calc(var(--content-width) + (var(--header-padding-inline) * 2)));
    margin-inline: auto;
    padding: calc(var(--header-height) + 4rem) var(--header-padding-inline) 6rem;
}

.privacy-page__title {
    font-family: var(--font-en);
    font-size: clamp(3rem, 8vw, 6.25rem);
    line-height: 1;
    letter-spacing: 0;
}

.privacy-page__subtitle {
    margin-top: 1rem;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.7;
}

.privacy-policy {
    margin-top: 3rem;
    max-width: 62.5rem;
}

.privacy-policy__lead,
.privacy-policy__section p,
.privacy-policy__section li {
    font-size: 1rem;
    font-weight: 500;
    line-height: 2;
}

.privacy-policy__section {
    margin-top: 3rem;
}

.privacy-policy__heading {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.7;
}

.privacy-policy__section p + p {
    margin-top: 0.75rem;
}

.privacy-policy__list {
    margin-top: 1rem;
    padding-left: 1.5rem;
    list-style: decimal;
}

.privacy-policy__list li + li {
    margin-top: 0.5rem;
}

.privacy-policy__list--bullet {
    list-style: disc;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.brand-row__inner {
    width: min(100%, calc(var(--content-width) + (var(--header-padding-inline) * 2)));
    margin-inline: auto;
    padding: 3rem var(--header-padding-inline);
    display: grid;
    grid-template-columns: minmax(14rem, 18rem) minmax(0, 1fr);
    align-items: center;
    gap: 2.5rem;
    color: inherit;
    text-decoration: none;
}

.brand-row__logo img {
    width: min(100%, 14rem);
}

.brand-row__content {
    display: flex;
    flex-direction: column;
}

.brand-row__subline {
    order: 2;
    margin-top: 0.25rem;
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.6;
}

.brand-row__title {
    order: 1;
    margin-top: 0;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.6;
}

.brand-row__text {
    order: 3;
    margin-top: 0.875rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.9;
}

/* Footer */
.site-footer {
    background: #F6F6F6;
    color: #000000;
}

.site-footer__inner {
    width: min(100%, calc(var(--content-width) + (var(--header-padding-inline) * 2)));
    margin-inline: auto;
    padding: 3.5rem var(--header-padding-inline) 2rem;
}

.site-footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.site-footer__info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.site-footer__logo {
    display: inline-flex;
    width: min(16rem, 100%);
}

.site-footer__company {
    font-size: 0.9375rem;
    line-height: 1.8;
}

.site-footer__nav-area {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.site-footer__nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 1rem;
    font-family: var(--font-en);
    font-size: 0.75rem;
    line-height: 1.4;
}

.site-footer__nav a,
.site-footer__policy {
    white-space: nowrap;
}

.site-footer__policy {
    font-size: 0.75rem;
    line-height: 1.8;
}

.site-footer__divider {
    width: 100%;
    height: 0.0625rem;
    margin-top: 2rem;
    background: #000000;
}

.site-footer__copyright {
    margin-top: 1rem;
    font-size: 0.75rem;
    line-height: 1.6;
    text-align: center;
}

@media (min-width: 48.0625rem) {
    .pc-break {
        display: block;
    }
}

@media (max-width: 48rem) {
    :root {
        --header-height: 5.25rem;
        --section-space-sp: 4rem;
    }

    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    body {
        min-width: 0;
    }

    .site-header {
        position: fixed !important;
        inset: 0 0 auto 0 !important;
        width: 100%;
        min-height: var(--header-height);
        z-index: 90;
    }

    .site-header__inner {
        width: 100%;
        max-width: none;
        min-height: var(--header-height);
        padding: 0.5rem 0.875rem;
        gap: 0.5rem;
        box-sizing: border-box;
    }

    .site-logo {
        width: 10rem;
        flex: 0 1 10rem;
        min-width: 0;
    }

    .menu-button {
        margin-left: auto;
        flex: 0 0 auto;
    }

    .menu-button__icon {
        width: 3.5rem;
        height: 3.5rem;
        gap: 0.5rem;
        padding: 0.375rem 0.25rem;
        max-width: 100%;
    }

    .menu-button__lines {
        gap: 0.375rem;
        width: 1.75rem;
        height: 0.4375rem;
        justify-content: center;
    }

    .menu-button__line {
        width: 100%;
    }

    .menu-button__line:first-child {
        top: 0;
    }

    .menu-button__line:last-child {
        top: 0.375rem;
    }

    .menu-button__text {
        font-size: 0.4375rem;
    }

    .menu-button.is-open .menu-button__line:first-child {
        top: 0.15625rem;
        transform: rotate(45deg);
    }

    .menu-button.is-open .menu-button__line:last-child {
        top: 0.15625rem;
        transform: rotate(-45deg);
    }

    .menu-close-button {
        top: 1rem;
        right: 1rem;
        width: 3.5rem;
        height: 3.5rem;
    }

    .menu-close-button__line {
        width: 1.75rem;
    }

    .global-menu {
        width: 100%;
    }

    .global-menu__inner {
        padding: calc(var(--header-height) + 1.5rem) 1.5rem 1.5rem;
        align-items: center;
    }

    .global-menu__list {
        gap: 1.25rem;
    }

    .global-menu__link {
        font-size: clamp(1.2rem, 6vw, 1.5rem);
    }

    .fv__inner {
        padding-top: calc(var(--header-height) + 0.75rem);
        padding-bottom: clamp(0.875rem, 1.8vh, 1.25rem);
    }

  .fv__content {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    min-height: calc(100vh - var(--header-height) - 1.5rem);
    min-height: calc(100svh - var(--header-height) - 1.5rem);
    min-height: calc(100dvh - var(--header-height) - 1.5rem);
    justify-content: center;
    padding-bottom: 1rem;
  }

    .fv__headline {
        font-size: clamp(3.75rem, min(18vw, 15vh, 16.5vmin), 6.75rem);
        line-height: 1;
    }

    .fv__lead {
    max-width: 100%;
    margin-top: clamp(0.75rem, 1.6vh, 1rem);
    font-size: 1rem;
    line-height: 1.7;
  }

    .philosophy-section__inner {
        padding-top: var(--section-space-sp);
        padding-bottom: var(--section-space-sp);
    }

    .philosophy-section__title {
        font-size: clamp(2.375rem, 10vw, 3.25rem);
    }

    .philosophy-section__title.is-swapped .philosophy-section__title-text--default {
        opacity: 0;
        transform: translateY(-0.25rem);
    }

    .philosophy-section__title.is-swapped .philosophy-section__title-text--alt {
        opacity: 1;
        transform: translateY(0);
    }

    .philosophy-section__body {
        margin-top: 1.625rem;
        max-width: 100%;
        font-size: 0.9375rem;
        line-height: 1.9;
    }

    .philosophy-section__body p {
        display: inline;
    }

    .philosophy-section__body p + p {
        margin-top: 0;
    }

    .execution-section__inner {
        padding-top: var(--section-space-sp);
        padding-bottom: var(--section-space-sp);
        align-items: flex-start;
    }

    .execution-section__title {
        font-size: clamp(2.375rem, 10vw, 3.25rem);
        text-align: left;
    }

    .execution-section__title.is-swapped .execution-section__title-text--default {
        opacity: 0;
        transform: translateY(-0.25rem);
    }

    .execution-section__title.is-swapped .execution-section__title-text--alt {
        opacity: 1;
        transform: translateY(0);
    }

    .execution-section__body {
        width: 100%;
        margin-top: 1.625rem;
        font-size: 0.9375rem;
        line-height: 1.9;
        text-align: left;
    }

    .section-subtitle {
        margin-top: 0.875rem;
        font-size: 1.0625rem;
        line-height: 1.7;
    }

    .section-subtitle--execution {
        text-align: left;
    }

    .execution-section__body p + p {
        margin-top: 0.375rem;
    }

    .integration-section__inner {
        padding-top: var(--section-space-sp);
        padding-bottom: var(--section-space-sp);
    }

    .integration-section__title {
        font-size: clamp(2.375rem, 10vw, 3.25rem);
        text-align: left;
    }

    .integration-section__title.is-swapped .integration-section__title-text--default {
        opacity: 0;
        transform: translateY(-0.25rem);
    }

    .integration-section__title.is-swapped .integration-section__title-text--alt {
        opacity: 1;
        transform: translateY(0);
    }

    .integration-section__body {
        margin-top: 2rem;
        font-size: 0.9375rem;
        line-height: 1.9;
        text-align: left;
    }

    .integration-section__body p + p {
        margin-top: 0.375rem;
    }

    .brand-gradient-section__inner {
        min-height: 9rem;
        padding: 3rem 1rem;
    }

    .brand-gradient-section__logo {
        width: min(8.5rem, 100%);
    }

    .commitment-section__inner {
        padding-top: var(--section-space-sp);
        padding-bottom: var(--section-space-sp);
    }

    .commitment-section__title {
        font-size: clamp(2.25rem, 9.5vw, 3rem);
    }

    .commitment-section__lead {
        margin-top: 1.5rem;
        max-width: 100%;
        font-size: 0.9375rem;
        line-height: 1.9;
    }

    .commitment-section__label {
        margin-top: 2.5rem;
        font-size: 1.5rem;
    }

    .commitment-list {
        margin-top: 1.5rem;
    }

    .commitment-item {
        padding-block: 1.75rem;
    }

    .commitment-item__title {
        font-size: clamp(1.5rem, 7.5vw, 2.25rem);
        line-height: 1.1;
    }

    .commitment-item__subtitle {
        margin-top: 0.875rem;
        font-size: 1.0625rem;
        line-height: 1.7;
    }

    .commitment-item__text {
        margin-top: 0.625rem;
        max-width: 100%;
        font-size: 0.9375rem;
        line-height: 1.9;
    }

    .brand-section__inner {
        padding-top: 2rem;
        padding-bottom: var(--section-space-sp);
    }

    .brand-section__title {
        font-size: clamp(2.25rem, 9.5vw, 3rem);
    }

    .brand-row {
        margin-top: 2rem;
    }

    .brand-row__inner {
        padding: 2rem 1rem;
        grid-template-columns: 1fr;
        gap: 1.875rem;
    }

    .brand-row__logo img {
        width: min(12rem, 100%);
    }

    .brand-row__logo {
        display: flex;
        justify-content: center;
    }

    .brand-row__subline {
        margin-top: 0.25rem;
        font-size: 1.0625rem;
    }

    .brand-row__title {
        font-size: 1.25rem;
        line-height: 1.5;
    }

    .brand-row__text {
        margin-top: 0.75rem;
        font-size: 0.9375rem;
        line-height: 1.8;
    }

    .site-footer__inner {
        padding-top: 3rem;
        padding-bottom: 2rem;
    }

    .site-footer__top {
        flex-direction: column;
        gap: 2rem;
    }

    .site-footer__logo {
        width: min(11rem, 100%);
    }

    .site-footer__company {
        font-size: 0.875rem;
        line-height: 1.8;
    }

    .site-footer__nav-area {
        width: 100%;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .site-footer__nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        font-size: 0.875rem;
    }

    .site-footer__policy {
        font-size: 0.75rem;
    }

    .site-footer__divider {
        margin-top: 1.5rem;
    }

    .site-footer__copyright {
        margin-top: 0.875rem;
        font-size: 0.75rem;
    }

    .marquee-section {
        padding: 2rem 0;
    }

    .marquee__text {
        padding-right: 2rem;
        font-size: 3rem;
    }

    .loading-screen__inner {
        gap: 1rem;
        padding: 0;
    }

    .loading-screen__logo {
        width: min(10rem, 60vw);
    }

    .loading-screen__line {
        height: 0.03125rem;
    }

    .sp-break {
        display: block;
    }
}
