/* ========================================
   CSS VARIABLES (Design Tokens)
======================================== */
:root {
    /* Colors - Primary */
    --color-primary: #029873;
    --color-primary-light: #03C394;
    --color-primary-bg: #E4FFF8;
    --color-secondary: #D6E8C3;

    /* Colors - Accent */
    --color-yellow-bright: #FFFD49;
    --color-yellow-dark: #EBE800;
    --color-green-accent: #95E544;
    --color-green-dark: #2C8618;

    /* Colors - UI */
    --color-blue-button: #3D54EA;
    --color-blue-shadow: #14248F;
    --color-white: #FFF;
    --color-black: #000;
    --color-red: #F00;
    --color-footer-bg: #1F352F;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-20: 20px;
    --spacing-md: 24px;
    --spacing-30: 30px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;

    /* Typography */
    --font-size-base: 16px;
    --font-size-sm: 12px;
    --font-size-18: 18px;
    --font-size-md: 20px;
    --font-size-lg: 24px;
    --font-size-xl: 32px;
    --font-size-36: 36px;
    --font-size-2xl: 40px;
    --font-size-3xl: 64px;

    /* Layout */
    --max-width-content: 1200px;
    --max-width-extended: 1344px;
    --padding-desktop: max(120px, calc((100vw - var(--max-width-content)) / 2));
    --padding-desktop-extended: max(48px, calc((100vw - var(--max-width-extended)) / 2));

    /* Breakpoints (for JS usage) */
    --breakpoint-sp: 767px;
    --breakpoint-tablet: 768px;
    --breakpoint-pc: 1024px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
}

img,
picture {
    display: block;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Noto Sans", sans-serif;
    color: var(--color-black);
}

main {
    width: 100%;
    overflow-x: hidden;
}
@media (max-width: 767px) {
main {
    overflow-x: hidden;
}		
}

a {
    text-decoration: none;
}

/* ===== Responsive Helpers (Only Allowed Utility Classes) ===== */
.pc {
    display: block;
}

.sp {
    display: none;
}

.pc-only {
    display: block;
}

.sp-only {
    display: none !important;
}

/* ===== Common ===== */
.section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-20);
    color: var(--color-primary-light);
    font-size: var(--font-size-2xl);
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    background: var(--color-yellow-bright);
    width: 212px;
    height: 5px;
}

/* ===== Header ===== */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px var(--padding-desktop);
    background: var(--color-primary);
    align-self: stretch;
    border-bottom: 1px solid var(--color-black);
    width: 100%;
}

.header__logo-wrapper {
    display: flex;
    align-items: center;
}

.header__logo-picture {
    display: block;
    line-height: 0;
}

.header__logo-image {
    display: block;
}

.header__logo-link {
    transition: 0.5s ease;
}

.header__logo-link:hover {
    opacity: 0.8;
}

.header__title {
    margin-left: -45px;
    color: var(--color-white);
    font-size: var(--font-size-lg);
    font-weight: 700;
}

.header__nav-list {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    list-style: none;
    padding: 0;
    margin: 0;
}

.header__nav-link {
    color: var(--color-white);
    font-size: var(--font-size-base);
    text-decoration: none;
    transition: 0.2s ease;
}

.header__nav-link:hover {
    text-decoration: underline;
}

.header__hamburger {
    display: none;
}

/* ===== Accessibility - Focus and Hover States ===== */
a,
button,
input,
select,
textarea {
    outline: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--color-yellow-bright);
    outline-offset: 2px;
}

.header__nav-link:focus-visible {
    outline: 2px solid var(--color-yellow-bright);
    outline-offset: 4px;
}

.header__hamburger:hover {
    opacity: 0.8;
}

.header__hamburger:focus-visible {
    outline: 2px solid var(--color-yellow-bright);
    outline-offset: 4px;
}

.contact__button {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 0 0 var(--color-blue-shadow);
}

.contact__button:active {
    transform: translateY(2px);
    box-shadow: 0 6px 0 0 var(--color-blue-shadow);
}

.contact__button:focus-visible {
    outline: 3px solid var(--color-yellow-bright);
    outline-offset: 4px;
}

.footer__nav-link:focus-visible {
    outline: 2px solid var(--color-yellow-bright);
    outline-offset: 4px;
}

/* ===== Page Header ===== */
.page-header {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: var(--color-primary);
}

.page-header__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.page-header:has(.page-header__image)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-header__title {
    color: var(--color-white);
    font-size: var(--font-size-xl);
    font-weight: 700;
    position: relative;
    z-index: 2;
}

/* ===== Page Container ===== */
.page-container {
    width: 100%;
    margin: 0 auto;
    padding: 40px var(--padding-desktop);
}

/* ===== 404 Error Page ===== */
.error-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    width: 100%;
    padding: 80px var(--spacing-xl);
}

.error-404__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
    max-width: var(--max-width-content);
    width: 100%;
    text-align: center;
}

.error-404__heading {
    color: var(--color-primary);
    font-size: var(--font-size-2xl);
    font-weight: 700;
}

.error-404__message {
    font-size: var(--font-size-md);
    line-height: 1.6;
}

.error-404__suggestion {
    font-size: var(--font-size-md);
    line-height: 1.6;
    color: var(--color-primary-light);
}

.error-404__actions {
    margin-top: var(--spacing-md);
}

.error-404__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 40px;
    background: var(--color-blue-button);
    box-shadow: 0 8px 0 0 var(--color-blue-shadow);
    border-radius: 4px;
    color: var(--color-white);
    font-size: var(--font-size-md);
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.error-404__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 0 0 var(--color-blue-shadow);
}

.error-404__button:active {
    transform: translateY(2px);
    box-shadow: 0 6px 0 0 var(--color-blue-shadow);
}

.error-404__button:focus-visible {
    outline: 3px solid var(--color-yellow-bright);
    outline-offset: 4px;
}

.error-404__button-icon {
    width: 28px;
    height: 28px;
}

/* ===== Hero ===== */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 var(--padding-desktop);
    align-self: stretch;
}

.hero__picture,
.hero__banner {
    width: 100%;
    display: block;
}

/* ===== Banner ===== */
.banner {
    display: flex;
    align-items: center;
    height: 175px;
    padding: 8px var(--padding-desktop-extended) 16px;
    background: var(--color-primary-light);
    align-self: stretch;
    gap: var(--spacing-sm);
}

.banner__header {
    display: flex;
    align-items: center;
    gap: var(--spacing-30);
}

.banner__image {
    width: 174px;
    height: 184px;
    aspect-ratio: 87/92;
}

.banner__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: var(--spacing-xs);
    flex: 1;
}

.banner__text {
    color: var(--color-white);
    font-size: var(--font-size-2xl);
    font-weight: 700;
}

.banner__tags {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 12px 38px;
    align-self: stretch;
    flex-wrap: wrap;
}

.banner__tag {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--color-white);
    padding: 6px 8px;
}

.banner__tag-text {
    color: var(--color-white);
    font-size: var(--font-size-base);
}

/* ===== About ===== */
.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    padding: 50px max(120px, calc((100vw - var(--max-width-content)) / 2));
    background: var(--color-white);
    align-self: stretch;
}

.about__content {
    display: flex;
    align-items: center;
    gap: var(--spacing-2xl);
    align-self: stretch;
    max-width: var(--max-width-content);
    width: 100%;
}

.about__image {
    width: 495px;
    height: 330px;
    aspect-ratio: 3/2;
}

.about__text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 35px;
}

.about__subtitle {
    font-size: var(--font-size-lg);
    font-weight: 700;
}

.about__description {
    font-size: var(--font-size-md);
}

/* ===== CV (Call to Action) ===== */
.cv {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 58px var(--padding-desktop) 12px;
    background: var(--color-primary);
    align-self: stretch;
}

.cv__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.cv__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

.cv__text {
    color: var(--color-white);
    font-size: var(--font-size-36);
}

.cv__title-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.cv__decoration {
    flex-shrink: 0;
}

.cv__title {
    color: var(--color-yellow-dark);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    letter-spacing: 12.8px;
}

.cv__description {
    color: var(--color-white);
    font-size: var(--font-size-xl);
}

.cv__buttons {
    display: flex;
    align-items: center;
    margin-top: -60px;
}

.cv__button {
    margin-left: -32px;
}

.cv__button:first-child {
    margin-left: 0;
}

/* ===== Reasons ===== */
.reasons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xl);
    padding: 50px max(120px, calc((100vw - var(--max-width-content)) / 2));
    background: var(--color-white);
    align-self: stretch;
}

.reasons__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    align-self: stretch;
}

.reasons__nav-link {
    display: block;
    transition: opacity 0.5s ease;
}

.reasons__nav-link:hover {
    opacity: 0.85;
}

/* ===== Reason (Individual) ===== */
.reason {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
    align-self: stretch;
}

.reason__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 33px 8px 17px;
    background: var(--color-primary-light);
}

.reason__title {
    color: var(--color-white);
    font-size: var(--font-size-2xl);
    font-weight: 700;
}

.reason__content {
    display: flex;
    align-items: center;
    gap: 60px;
    align-self: stretch;
}

.reason__image {
    width: 460px;
    height: 307px;
    aspect-ratio: 460/307;
}

.reason__content--column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
    align-self: stretch;
}

.reason__text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

.reason__description {
    font-size: var(--font-size-md);
}

.reason__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: 24px 60px;
    align-self: stretch;
    border: 1px solid var(--color-primary);
}

.reason__list-item {
    color: var(--color-primary);
    font-size: var(--font-size-md);
    font-weight: 700;
    list-style: none;
}

.reason__support {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    align-self: stretch;
}

.reason__support-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
}

.reason__support-title .text-green-primary {
    color: var(--color-primary);
}

.reason__support-title .text-red {
    color: var(--color-red);
}

/* ===== Reason Work Section ===== */
.reason__work {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: 0 64px 0 48px;
    align-self: stretch;
}

.reason__work-title {
    color: var(--color-primary);
    font-size: var(--font-size-2xl);
    font-weight: 700;
}

.reason__work-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
    align-self: stretch;
}

.reason__work-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    padding: 40px 70px;
    align-self: stretch;
    border-radius: 20px;
    border: 4px solid var(--color-primary);
}

.reason__work-header {
    display: flex;
    align-items: center;
    gap: 34px;
}

.reason__work-icon {
    width: 128px;
    height: 128px;
    aspect-ratio: 1/1;
}

.reason__work-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.reason__work-item-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
}

.reason__work-item-description {
    font-size: var(--font-size-md);
}

.reason__work-note {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 0 100px;
    align-self: stretch;
}

.reason__work-note-text {
    font-size: var(--font-size-lg);
    font-weight: 700;
}

.reason__work-note-text .text-yellow-dark {
    color: var(--color-yellow-dark);
}

/* ===== Locations ===== */
.locations {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px max(184px, calc((100vw - 1072px) / 2)) 50px;
    background: var(--color-secondary);
    align-self: stretch;
}

.locations__picture,
.locations__hero-image {
    width: 100%;
    display: block;
}

.locations__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    padding: 16px 48px 48px 48px;
    background: var(--color-white);
    align-self: stretch;
}

.locations__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.locations__title {
    color: var(--color-primary);
    font-size: var(--font-size-2xl);
    font-weight: 700;
}

.locations__subtitle {
    font-size: var(--font-size-md);
}

.locations__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xl);
    align-self: stretch;
}

.locations__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2xl);
    align-self: stretch;
}

.locations__item-image {
    width: 451px;
    height: 298px;
    aspect-ratio: 451/298;
}

.locations__item-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.locations__item-title {
    color: var(--color-primary-light);
    font-size: var(--font-size-xl);
    font-weight: 700;
}

.locations__item-description {
    font-size: var(--font-size-md);
}

.locations__item-tel {
    color: var(--color-green-dark);
    font-size: var(--font-size-lg);
    font-weight: 700;
}

.locations__item-tel-link {
    pointer-events: none;
    text-decoration: none;
    color: inherit;
}

.locations__item-access-title {
    color: var(--color-green-accent);
    font-size: var(--font-size-lg);
    font-weight: 700;
}

.locations__item-access {
    font-size: var(--font-size-base);
}

.locations__divider {
    height: 2px;
    width: 100%;
    background: var(--color-green-accent);
}

.locations__note {
    font-size: var(--font-size-lg);
    font-weight: 700;
}

.locations__note .text-yellow-dark {
    color: var(--color-yellow-dark);
}

/* ===== Flow ===== */
.flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xl);
    padding: 50px max(120px, calc((100vw - var(--max-width-content)) / 2)) 0;
    align-self: stretch;
}

.page-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xl);
    align-self: stretch;
}

.flow__steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xl);
    align-self: stretch;
}

.flow__step {
    display: flex;
    align-items: center;
    gap: var(--spacing-2xl);
    padding: 24px 32px;
    background: var(--color-primary-bg);
    align-self: stretch;
}

.flow__step-image {
    width: 415px;
    height: 261px;
    aspect-ratio: 415/261;
}

.flow__step-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
}

.flow__step-title {
    color: var(--color-primary);
    font-size: var(--font-size-xl);
    font-weight: 700;
}

.flow__step-description {
    font-size: var(--font-size-md);
}

.flow__arrow {
    fill: var(--color-primary);
    width: 86px;
    height: 54px;
}

/* ===== Contact ===== */
.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    padding: 50px max(120px, calc((100vw - var(--max-width-content)) / 2)) 50px;
    align-self: stretch;
}

.contact__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xl);
    align-self: stretch;
}

.contact__description {
    font-size: var(--font-size-md);
    line-height: 30px;
    letter-spacing: 2px;
}

.contact__button {
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 4px;
    background: var(--color-blue-button);
    box-shadow: 0 8px 0 0 var(--color-blue-shadow);
    padding: 30px 33px;
    border: none;
}

.contact__button-text {
    color: var(--color-white);
    font-size: var(--font-size-xl);
    font-weight: 700;
}

.contact__button-icon {
    width: 40px;
    height: 40px;
}

/* ===== Footer ===== */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--color-footer-bg);
    padding: 32px max(48px, calc((100vw - var(--max-width-extended)) / 2));
    align-self: stretch;
}

.footer__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-self: stretch;
}

.footer__logo-link {
    transition: 0.5s ease;
}

.footer__logo-link:hover {
    opacity: 0.8;
}

.footer__logo-image {
    width: 379px;
    height: 103px;
    aspect-ratio: 379/103;
}

.footer__nav-list {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__nav-link {
    color: var(--color-white);
    font-size: var(--font-size-18);
    text-decoration: none;
    transition: 0.2s ease;
}

.footer__nav-link:hover {
    text-decoration: underline;
}

.footer__copyright {
    color: var(--color-white);
    font-size: var(--font-size-sm);
}

/* ===== Page Top Button ===== */
.page-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--color-primary-light);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.2s ease, background 0.2s ease;
    z-index: 100;
    cursor: pointer;
}

.page-top.is-visible {
    opacity: 1;
    visibility: visible;
}

.page-top:hover {
    background: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-top:active {
    transform: translateY(-2px);
}

.page-top:focus-visible {
    outline: 3px solid var(--color-yellow-bright);
    outline-offset: 4px;
}

.page-top__icon {
    width: 28px;
    height: 28px;
    color: var(--color-white);
}

/* ===== Color Modifiers (Inline Span Elements) ===== */
.text-yellow-bright {
    color: var(--color-yellow-bright);
}

.text-yellow-dark {
    color: var(--color-yellow-dark);
}

.text-green-primary {
    color: var(--color-primary);
}

.text-red {
    color: var(--color-red);
}

/* ========================================
   RESPONSIVE - MOBILE (Smartphone: ~767px)
======================================== */
@media (max-width: 767px) {
    .pc {
        display: none;
    }

    .sp {
        display: inline;
    }

    .pc-only {
        display: none !important;
    }

    .sp-only {
        display: flex !important;
    }

    body {
        flex-direction: column;
        align-items: center;
        font-family: "Noto Sans JP", "Noto Sans", sans-serif;
    }

    body.menu-open {
        overflow: hidden;
    }

    .section-title {
        font-size: 28px;
        line-height: 1.4;
        text-align: center;
    }

    /* ===== 404 Error Page ===== */
    .error-404 {
        padding: 0;
    }

    .error-404__content {
        gap: var(--spacing-md);
    }

    .error-404__heading {
        font-size: 28px;
    }

    .error-404__message,
    .error-404__suggestion {
        font-size: var(--font-size-base);
    }

    .error-404__button {
        padding: 16px 32px;
        font-size: var(--font-size-base);
        gap: 20px;
    }

    .error-404__button-icon {
        width: 24px;
        height: 24px;
    }

    /* ===== Header ===== */
    .header {
        padding: 8px 20px;
        z-index: 101;
        width: 100%;
        position: sticky;
        top: 0;
    }

    .header__logo-image {
        width: 129px;
        height: 35px;
    }

    .header__title {
        margin-left: -30px;
        font-size: var(--font-size-base);
        white-space: nowrap;
    }

    .header__hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
    }

    .header__hamburger-line {
        width: 28px;
        height: 3px;
        background: var(--color-white);
        display: block;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    /* メニュー開閉状態 */
    .header__nav {
        display: flex;
        position: fixed;
        top: 51px;
        left: 0;
        right: 0;
        background: var(--color-primary);
        flex-direction: column;
        padding: 0 20px;
        z-index: 100;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .header__nav.is-open {
        max-height: calc(100vh - 51px);
        padding: 30px;
        border-bottom: solid 1px var(--color-black);
    }

    .header__nav-list {
        flex-direction: column;
        gap: 15px;
    }

    /* ハンバーガーアイコンアニメーション */
    .header__hamburger.is-open .header__hamburger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .header__hamburger.is-open .header__hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .header__hamburger.is-open .header__hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* ===== Hero ===== */
    .hero {
        padding: 0;
        flex-direction: column;
        align-items: flex-start;
        background: var(--color-white);
        width: 100%;
    }

    /* ===== Banner ===== */
    .banner {
        padding: 26px 16px 32px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0px;
        height: auto;
        width: 100%;
    }

    .banner__header {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 30px;
        align-self: stretch;
    }

    .banner__image {
        width: 149px;
        height: 157px;
    }

    .banner__text {
        font-size: 36px;
        line-height: 1.2;
    }

    .banner__content {
        align-items: flex-start;
        gap: var(--spacing-xs);
        align-self: stretch;
    }

    .banner__tags {
        padding: 0 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        align-self: stretch;
    }

    .banner__tag {
        padding: 4px 16px;
        align-items: flex-start;
        justify-content: center;
        align-self: stretch;
        width: 100%;
    }

    /* ===== About ===== */
    .about {
        padding: 32px;
        flex-direction: column;
        align-items: center;
        gap: 37px;
        width: 100%;
    }

    .about__content {
        flex-direction: column;
        align-items: center;
        gap: 22px;
        align-self: stretch;
    }

    .about__image {
        max-width: 347px;
        height: 231px;
    }

    .about__text-wrapper {
        gap: 35px;
        align-items: center;
    }

    .about__subtitle {
        text-align: center;
        line-height: 1.4;
    }

    .about__description {
        font-size: var(--font-size-sm);
        line-height: 1.6;
    }

    /* ===== CV ===== */
    .cv {
        padding: 32px 18px;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .cv__content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .cv__header {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cv__text {
        font-size: var(--font-size-lg);
        text-align: center;
        line-height: 1.4;
    }

    .cv__title-wrapper {
        justify-content: center;
        align-items: center;
        gap: 5px;
    }

    .cv__title {
        font-size: var(--font-size-xl);
        letter-spacing: 6.4px;
        white-space: nowrap;
    }

    .cv__description {
        font-size: var(--font-size-18);
        text-align: center;
        line-height: 1.6;
    }

    .cv__buttons {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        padding-top: 0;
        gap: var(--spacing-lg);
        margin-top: 0;
    }

    .cv__button {
        margin-left: 0;
        margin-bottom: -15px;
    }

    .cv__button--phone {
        height: auto;
        aspect-ratio: auto;
        margin: 0 auto;
        width: 89%;
    }

    .cv__button--web {
        height: auto;
        aspect-ratio: auto;
        margin: 0 auto;
        width: 88%;
    }

    /* ===== Reasons ===== */
    .reasons {
        padding: 32px;
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-lg);
        width: 100%;
    }

    .reasons__nav {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        align-self: stretch;
    }

    .reasons__nav-image {
        width: 290px;
        height: 75px;
        aspect-ratio: 58/15;
    }

    /* ===== Reason (Individual) ===== */
    .reason {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-lg);
        align-self: stretch;
    }

    .reason__header {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
        align-self: stretch;
    }

    .reason__title {
        font-size: var(--font-size-md);
    }

    .reason__content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        align-self: stretch;
    }

    .reason__image {
        max-width: 287px;
        height: 192px;
    }

    .reason__text-wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        width: 100%;
    }

    .reason__description {
        font-size: var(--font-size-base);
        line-height: 1.6;
        width: 100%;
    }

    .reason__list {
        padding: 25px 22px;
        flex-direction: column;
        align-items: flex-start;
        align-self: stretch;
    }

    .reason__list-item {
        font-size: 14px;
    }

    .reason__support {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        align-self: stretch;
    }

    .reason__support-title {
        text-align: center;
        line-height: 1.3;
    }

    .reason__support-image {
        max-width: 325px;
        width: 100%;
        height: 278px;
    }

    /* ===== Reason Work Section ===== */
    .reason__work {
        padding: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        align-self: stretch;
    }

    .reason__work-title {
        font-size: var(--font-size-lg);
    }

    .reason__work-list {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-lg);
        align-self: stretch;
    }

    .reason__work-item {
        padding: 40px;
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
        align-self: stretch;
    }

    .reason__work-header {
        gap: 34px;
    }

    .reason__work-icon {
        width: 75px;
        height: 75px;
    }

    .reason__work-item-title {
        font-size: var(--font-size-lg);
        line-height: 1.3;
    }

    .reason__work-item-description {
        font-size: var(--font-size-base);
        line-height: 1.6;
    }

    .reason__work-note {
        padding: 0 20px;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        align-self: stretch;
    }

    .reason__work-note-text {
        font-size: var(--font-size-base);
        line-height: 1.6;
    }

    /* ===== Locations ===== */
    .locations {
        padding: 16px 32px 32px;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .locations__wrapper {
        padding: 20px 24px 48px;
        flex-direction: column;
        align-items: center;
        align-self: stretch;
    }

    .locations__title {
        font-size: var(--font-size-md);
    }

    .locations__subtitle {
        font-size: var(--font-size-base);
        text-align: center;
    }

    .locations__list {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        align-self: stretch;
    }

    .locations__item {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-xs);
        align-self: stretch;
    }

    .locations__item-image {
        max-width: 258px;
        height: 170px;
    }

    .locations__item-info {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }

    .locations__item-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .locations__item-tel {
        font-size: var(--font-size-md);
    }

    .locations__item-tel-link {
        pointer-events: auto;
    }

    .locations__item-access-title {
        font-size: var(--font-size-md);
    }

    .locations__item-access {
        font-size: var(--font-size-sm);
        line-height: 1.6;
    }

    .locations__note {
        text-align: center;
        width: 100%;
    }

    /* ===== Flow ===== */
    .flow {
        padding: 32px 0 13px;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        background: var(--color-white);
        width: 100%;
    }

    .flow__steps {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-lg);
        align-self: stretch;
    }

    .flow__step {
        padding: 30px 32px 42px;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        align-self: stretch;
    }

    .flow__step-image {
        max-width: 378px;
        height: 238px;
    }

    .flow__step-info {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .flow__step-title {
        text-align: center;
    }

    .flow__step-description {
        font-size: var(--font-size-base);
        line-height: 1.6;
    }

    /* ===== Contact ===== */
    .contact {
        padding: 13px 26px 32px;
        flex-direction: column;
        align-items: center;
        background: var(--color-white);
        width: 100%;
    }

    .contact__content {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-lg);
        align-self: stretch;
    }

    .contact__image {
        max-width: 390px;
        height: 283px;
    }

    .contact__description {
        font-size: var(--font-size-base);
        line-height: 30px;
        letter-spacing: 1.6px;
        text-align: center;
    }

    .contact__button {
        padding: 28px 32px;
        justify-content: center;
        align-items: center;
        gap: 20px;
        box-shadow: 0 9px 0 0 var(--color-blue-shadow);
    }

    .contact__button-text {
        font-size: var(--font-size-lg);
    }

    .contact__button-icon {
        width: 36px;
        height: 36px;
    }

    /* ===== Footer ===== */
    .footer {
        padding: 42px 30px;
        flex-direction: column;
        align-items: center;
        gap: 50px;
        width: 100%;
    }

    .footer__wrapper {
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        gap: 20px;
        align-self: stretch;
    }

    .footer__logo {
        max-width: 240px;
        height: 65px;
    }

    .footer__logo-image {
        width: 240px;
        height: 65px;
        aspect-ratio: 48/13;
    }

    .footer__nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding-left: 30px;
    }

    .footer__copyright {
        font-size: var(--font-size-sm);
        text-align: left;
    }

    /* ===== Page Top Button ===== */
    .page-top {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
    }

    .page-top__icon {
        width: 24px;
        height: 24px;
    }
}