:root {
    --corp-header: 70px;
    --corp-ink: #22262d;
    --corp-title: #15191f;
    --corp-muted: #6e7784;
    --corp-soft: #f5f8fb;
    --corp-paper: #fffaf4;
    --corp-line: #e2e8f0;
    --corp-blue: #1d75d8;
    --corp-blue-soft: #e9f3ff;
    --corp-orange: #f58220;
    --corp-orange-soft: #fff2e5;
    --corp-green: #19a974;
    --corp-shadow: 0 18px 48px rgba(31, 41, 55, 0.09);
}

body.is-home-page {
    margin: 0;
    color: var(--corp-ink);
    background: #fff;
    overflow-x: hidden;
}

.corp-home,
.corp-home * {
    box-sizing: border-box;
}

.corp-home {
    padding-top: var(--corp-header);
    overflow: hidden;
    background: #fff;
    font-family: inherit;
}

.corp-stage {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    isolation: isolate;
    background: var(--corp-soft);
}

.corp-stage__slider {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 390px;
    align-self: center;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(31, 41, 55, 0.1);
}

.corp-stage__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border: 0;
    border-radius: 0;
    filter: none;
    opacity: 0;
    transform: none;
    animation: corp-stage-slide-primary 15s ease-in-out infinite;
}

.corp-stage__image:nth-child(2) {
    animation-name: corp-stage-slide-secondary;
}

.corp-stage__image:nth-child(3) {
    animation-name: corp-stage-slide-tertiary;
}

.corp-stage-worldcup {
    position: absolute;
    right: 16px;
    bottom: 48px;
    z-index: 3;
    width: min(250px, calc(100% - 32px));
    padding: 14px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 16px;
    background: rgba(20, 26, 38, 0.66);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.24);
    backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    animation: corp-stage-worldcup-panel 15s ease-in-out infinite;
}

.corp-stage-worldcup span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
}

.corp-stage-worldcup strong {
    display: block;
    margin-top: 7px;
    color: #fff;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 750;
    word-break: keep-all;
}

.corp-stage-worldcup ul {
    display: grid;
    gap: 7px;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

.corp-stage-worldcup li {
    display: grid;
    grid-template-columns: auto auto;
    gap: 3px 8px;
    align-items: baseline;
    padding-top: 7px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.corp-stage-worldcup b,
.corp-stage-worldcup em,
.corp-stage-worldcup small {
    color: inherit;
    font-style: normal;
    line-height: 1.2;
}

.corp-stage-worldcup b {
    font-size: 13px;
    font-weight: 800;
}

.corp-stage-worldcup em {
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 650;
}

.corp-stage-worldcup small {
    grid-column: 1 / -1;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.corp-stage__slider-dots {
    position: absolute;
    right: 16px;
    bottom: 14px;
    z-index: 2;
    display: inline-flex;
    gap: 7px;
    padding: 7px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(10px);
}

.corp-stage__slider-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(21, 25, 31, 0.34);
    animation: corp-stage-dot-primary 15s ease-in-out infinite;
}

.corp-stage__slider-dots span:nth-child(2) {
    animation-name: corp-stage-dot-secondary;
}

.corp-stage__slider-dots span:nth-child(3) {
    animation-name: corp-stage-dot-tertiary;
}

@keyframes corp-stage-slide-primary {
    0%, 29% {
        opacity: 1;
    }
    34%, 95% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes corp-stage-slide-secondary {
    0%, 29% {
        opacity: 0;
    }
    34%, 62% {
        opacity: 1;
    }
    67%, 100% {
        opacity: 0;
    }
}

@keyframes corp-stage-slide-tertiary {
    0%, 62% {
        opacity: 0;
    }
    67%, 95% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes corp-stage-worldcup-panel {
    0%, 62% {
        opacity: 0;
    }
    67%, 95% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes corp-stage-dot-primary {
    0%, 29%, 100% {
        background: var(--corp-orange);
    }
    34%, 95% {
        background: rgba(21, 25, 31, 0.34);
    }
}

@keyframes corp-stage-dot-secondary {
    0%, 29%, 67%, 100% {
        background: rgba(21, 25, 31, 0.34);
    }
    34%, 62% {
        background: var(--corp-orange);
    }
}

@keyframes corp-stage-dot-tertiary {
    0%, 62%, 100% {
        background: rgba(21, 25, 31, 0.34);
    }
    67%, 95% {
        background: var(--corp-orange);
    }
}

@media (prefers-reduced-motion: reduce) {
    .corp-stage__image,
    .corp-stage__slider-dots span,
    .corp-stage-worldcup,
    .corp-stage-timeline__track {
        animation: none;
    }

    .corp-stage__image:first-child {
        opacity: 1;
        transform: none;
    }

    .corp-stage__image:nth-child(2) {
        opacity: 0;
    }

    .corp-stage__image:nth-child(3),
    .corp-stage-worldcup {
        opacity: 0;
    }
}

.corp-stage::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(245, 248, 251, 0.92) 100%),
        radial-gradient(circle at 16% 18%, rgba(245, 130, 32, 0.12), transparent 28%);
    content: "";
}

.corp-stage__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
    grid-template-areas:
        "copy image"
        "notice image"
        "dock dock";
    gap: 28px 42px;
    width: min(100%, 1240px);
    min-height: 560px;
    margin: 0 auto;
    padding: 60px 28px 0;
}

.corp-stage__copy {
    max-width: 650px;
    grid-area: copy;
    align-self: center;
}

.corp-stage__visual {
    grid-area: image;
    align-self: center;
}

.corp-stage__copy p,
.corp-proof__headline p,
.corp-section-title p,
.corp-command__body p {
    margin: 0;
    color: var(--corp-blue);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0;
}

.corp-stage__copy h1 {
    margin: 18px 0 0;
    color: var(--corp-title);
    font-size: clamp(38px, 4.25vw, 62px);
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: 0;
    word-break: keep-all;
}

.corp-stage__copy > span {
    display: block;
    max-width: 560px;
    margin-top: 20px;
    color: #444c58;
    font-size: 19px;
    line-height: 1.55;
    font-weight: 400;
    word-break: keep-all;
}

.corp-stage__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.corp-stage-search {
    display: grid;
    gap: 8px;
    width: min(100%, 650px);
    margin-top: 28px;
}

.corp-stage-search label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.corp-stage-search__box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 56px;
    padding: 6px;
    border: 1px solid rgba(29, 117, 216, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 34px rgba(31, 41, 55, 0.08);
}

.corp-stage-search__box input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 15px;
    color: var(--corp-title);
    background: transparent;
    font-size: 16px;
    font-weight: 500;
}

.corp-stage-search__box input::placeholder {
    color: #8a94a3;
    font-weight: 400;
}

.corp-stage-search__box button {
    min-width: 82px;
    border: 0;
    border-radius: 9px;
    color: #fff;
    background: var(--corp-orange);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.corp-stage-search__box button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(245, 130, 32, 0.24);
}

.corp-stage__actions a,
.corp-command nav a,
.corp-stage__panel a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    color: var(--corp-ink);
    text-decoration: none;
    border: 1px solid var(--corp-line);
    border-radius: 8px;
    background: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.corp-stage__actions a:hover,
.corp-command nav a:hover,
.corp-stage__panel a:hover {
    transform: translateY(-1px);
    border-color: rgba(29, 117, 216, 0.35);
    box-shadow: 0 10px 26px rgba(29, 117, 216, 0.12);
}

.corp-stage__actions a.is-primary,
.corp-command nav a:first-child,
.corp-stage__panel a {
    color: #fff;
    border-color: var(--corp-orange);
    background: var(--corp-orange);
}

.corp-stage__panel {
    width: min(100%, 650px);
    margin-top: 22px;
    padding: 18px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 32px rgba(31, 41, 55, 0.07);
    backdrop-filter: blur(14px);
}

.corp-stage__panel > span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--corp-blue-soft);
    color: var(--corp-blue);
    font-size: 12px;
    font-weight: 600;
}

.corp-stage__panel strong {
    display: block;
    margin-top: 12px;
    color: var(--corp-title);
    font-size: 21px;
    line-height: 1.28;
    font-weight: 600;
    word-break: keep-all;
}

.corp-stage__panel ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 14px 0 18px;
    padding: 0;
    list-style: none;
}

.corp-stage__panel li {
    position: relative;
    padding-left: 20px;
    color: #4b5563;
    font-size: 13px;
    line-height: 1.4;
}

.corp-stage__panel li::before {
    position: absolute;
    top: 0.6em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--corp-green);
    content: "";
}

.corp-stage__panel a {
    width: max-content;
    min-height: 42px;
}

.corp-stage__panel--timeline {
    grid-area: notice;
    max-width: 650px;
    display: grid;
    gap: 13px;
    padding: 12px;
    border-color: rgba(203, 213, 225, 0.95);
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 251, 255, 0.9) 100%);
    box-shadow: 0 16px 34px rgba(31, 41, 55, 0.08);
}

.corp-stage-timeline__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 12px;
    align-items: center;
    padding: 6px 8px 0;
}

.corp-stage-timeline__head span {
    color: var(--corp-blue);
    font-size: 11px;
    line-height: 1;
    font-weight: 750;
}

.corp-stage-timeline__head strong {
    margin: 0;
    color: var(--corp-title);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 650;
    grid-column: 1;
}

.corp-stage-timeline__head small {
    grid-column: 1;
    color: #64748b;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 500;
}

.corp-stage-timeline__head a {
    grid-row: 1 / span 3;
    grid-column: 2;
    align-self: center;
    width: auto;
    min-height: 30px;
    padding: 0 10px;
    color: var(--corp-blue);
    text-decoration: none;
    border: 1px solid rgba(29, 117, 216, 0.16);
    border-radius: 999px;
    background: #f8fbff;
    box-shadow: none;
    font-size: 12px;
    font-weight: 650;
}

.corp-stage-timeline__head a:hover {
    color: var(--corp-blue);
    transform: none;
    box-shadow: none;
}

.corp-stage-timeline__viewport {
    position: relative;
    overflow: hidden;
    padding: 2px 0 4px;
    mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.corp-stage-timeline__track {
    display: flex;
    width: max-content;
    animation: corp-stage-talk-marquee 34s linear infinite;
}

.corp-stage-timeline__viewport:hover .corp-stage-timeline__track {
    animation-play-state: paused;
}

.corp-stage-timeline__group {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
    padding-right: 10px;
}

.corp-stage__panel--timeline .corp-stage-timeline__card {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    align-content: start;
    gap: 10px;
    width: 176px;
    height: 116px;
    padding: 13px 14px;
    color: var(--corp-ink);
    text-align: left;
    border: 1px solid rgba(226, 232, 240, 0.98);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 18px rgba(31, 41, 55, 0.05);
    text-decoration: none;
}

.corp-stage__panel--timeline .corp-stage-timeline__card:hover {
    border-color: rgba(245, 130, 32, 0.3);
    background: #fffaf4;
    box-shadow: 0 10px 24px rgba(31, 41, 55, 0.08);
}

.corp-stage__panel--timeline .corp-stage-timeline__card.is-notice {
    border-color: rgba(245, 130, 32, 0.24);
    background: rgba(255, 250, 244, 0.94);
}

.corp-stage__panel--timeline .corp-stage-timeline__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-width: 0;
}

.corp-stage__panel--timeline .corp-stage-timeline__meta b {
    display: inline-flex;
    align-items: center;
    max-width: 82px;
    min-height: 22px;
    padding: 0 9px;
    color: var(--corp-blue);
    border-radius: 999px;
    background: var(--corp-blue-soft);
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.corp-stage__panel--timeline .corp-stage-timeline__card.is-notice .corp-stage-timeline__meta b {
    color: #a95108;
    background: var(--corp-orange-soft);
}

.corp-stage__panel--timeline .corp-stage-timeline__card strong {
    display: -webkit-box;
    min-width: 0;
    margin: 0;
    color: var(--corp-title);
    font-size: 14px;
    line-height: 1.34;
    font-weight: 650;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: keep-all;
}

.corp-stage__panel--timeline .corp-stage-timeline__meta em {
    flex: 0 0 auto;
    color: #5a6470;
    font-size: 12px;
    line-height: 1.2;
    font-style: normal;
    font-weight: 500;
    white-space: nowrap;
}

@keyframes corp-stage-talk-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.corp-stage-timeline__empty {
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px dashed rgba(148, 163, 184, 0.6);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
}

.corp-stage-timeline__empty strong {
    margin: 0;
    color: var(--corp-title);
    font-size: 16px;
}

.corp-stage-timeline__empty span {
    color: var(--corp-muted);
    font-size: 13px;
}

.corp-service-dock {
    grid-area: dock;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 118px;
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-bottom: 0;
    border-radius: 18px 18px 0 0;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 -16px 44px rgba(31, 41, 55, 0.06);
    backdrop-filter: blur(16px);
    overflow: hidden;
}

.corp-service-dock a {
    display: grid;
    align-content: center;
    gap: 7px;
    padding: 18px 22px;
    color: var(--corp-ink);
    text-decoration: none;
    border-right: 1px solid var(--corp-line);
}

.corp-service-dock a:first-child {
    color: #fff;
    background: var(--corp-blue);
}

.corp-service-dock a:last-child {
    border-right: 0;
}

.corp-service-dock span {
    color: currentColor;
    opacity: 0.62;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
}

.corp-service-dock strong {
    font-size: 22px;
    line-height: 1.15;
    font-weight: 600;
    word-break: keep-all;
}

.corp-service-dock em {
    max-width: 360px;
    color: currentColor;
    opacity: 0.72;
    font-size: 13px;
    line-height: 1.45;
    font-style: normal;
    font-weight: 400;
    word-break: keep-all;
}

.corp-proof {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: 82px 28px 68px;
}

.corp-proof__headline {
    max-width: 760px;
}

.corp-proof__headline h2,
.corp-section-title h2,
.corp-command__body h2 {
    margin: 12px 0 0;
    color: var(--corp-title);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.18;
    font-weight: 580;
    letter-spacing: 0;
    word-break: keep-all;
}

.corp-proof__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid var(--corp-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(31, 41, 55, 0.07);
    overflow: hidden;
}

.corp-proof__stats article {
    display: grid;
    align-content: start;
    gap: 10px;
    min-height: 230px;
    padding: 24px 20px;
    border-right: 1px solid var(--corp-line);
}

.corp-proof__stats article:last-child {
    border-right: 0;
}

.corp-proof__stats span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--corp-blue-soft);
    color: var(--corp-blue);
    font-size: 12px;
    line-height: 1;
    font-weight: 650;
}

.corp-proof__stats strong {
    color: var(--corp-title);
    font-size: 24px;
    line-height: 1.18;
    font-weight: 600;
}

.corp-proof__stats em {
    color: var(--corp-muted);
    font-size: 14px;
    font-style: normal;
    line-height: 1.5;
    font-weight: 400;
    word-break: keep-all;
}

.corp-proof__stats ul {
    display: grid;
    gap: 7px;
    margin: 6px 0 0;
    padding: 0;
    list-style: none;
}

.corp-proof__stats li {
    position: relative;
    padding-left: 15px;
    color: #475569;
    font-size: 13px;
    line-height: 1.42;
    word-break: keep-all;
}

.corp-proof__stats li::before {
    position: absolute;
    top: 0.58em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--corp-orange);
    content: "";
}

.corp-proof__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.corp-proof__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 9px 13px;
    border: 1px solid rgba(29, 117, 216, 0.24);
    border-radius: 999px;
    background: #f8fbff;
    color: var(--corp-blue);
    font-size: 13px;
    line-height: 1;
    font-weight: 650;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

button.corp-proof__link {
    font-family: inherit;
}

.corp-proof__link:hover {
    border-color: rgba(29, 117, 216, 0.46);
    background: var(--corp-blue-soft);
    transform: translateY(-1px);
}

body.is-home-page #sidebarInsuranceConsentSetting.is-home-consent-guide,
body.is-home-page #sidebarBusinessConsentSetting.is-home-consent-guide {
    position: relative;
    border-color: #2563eb;
    background: #eff6ff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.16), 0 12px 24px rgba(37, 99, 235, 0.14);
}

body.is-home-page #sidebarInsuranceConsentSetting.is-home-consent-guide::before,
body.is-home-page #sidebarBusinessConsentSetting.is-home-consent-guide::before {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: -1px;
    width: 4px;
    border-radius: 999px;
    background: #2563eb;
    content: "";
}

body.is-home-page .home-consent-guide-note {
    width: 100%;
    margin-top: 8px;
    padding: 10px 12px;
    border: 1px solid #bfdbfe;
    border-left: 4px solid #2563eb;
    border-radius: 10px;
    background: #eff6ff;
    color: #1e40af;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 700;
    word-break: keep-all;
}

.corp-advisor-band {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 0;
    width: min(100%, 1180px);
    margin: 0 auto 74px;
    overflow: hidden;
    border: 1px solid var(--corp-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(31, 41, 55, 0.08);
}

.corp-advisor-band img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    object-position: center top;
    background: var(--corp-soft);
}

.corp-advisor-band div {
    display: grid;
    align-content: center;
    padding: 42px;
}

.corp-advisor-band p {
    margin: 0;
    color: var(--corp-blue);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 600;
}

.corp-advisor-band strong {
    display: block;
    max-width: 560px;
    margin-top: 14px;
    color: var(--corp-title);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.22;
    font-weight: 580;
    word-break: keep-all;
}

.corp-advisor-band span {
    display: block;
    max-width: 520px;
    margin-top: 16px;
    color: var(--corp-muted);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    word-break: keep-all;
}

.corp-advisor-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.corp-advisor-band__actions a,
.corp-advisor-band__actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 15px;
    border: 1px solid rgba(29, 117, 216, 0.24);
    border-radius: 999px;
    background: #f8fbff;
    color: var(--corp-blue);
    font-family: inherit;
    font-size: 13px;
    line-height: 1;
    font-weight: 650;
    text-decoration: none;
    cursor: pointer;
}

.corp-advisor-band__actions a:first-child {
    border-color: var(--corp-blue);
    background: var(--corp-blue);
    color: #fff;
}

.corp-advisor-band__actions a:hover,
.corp-advisor-band__actions button:hover {
    border-color: rgba(29, 117, 216, 0.46);
    background: var(--corp-blue-soft);
    color: var(--corp-blue);
}

.corp-advisor-band__actions a:first-child:hover {
    background: #1667bd;
    color: #fff;
}

.corp-section-title {
    width: min(100%, 800px);
    margin: 0 auto 34px;
    text-align: center;
}

.corp-core-menu {
    padding: 76px 28px 82px;
    background: #fff;
}

.corp-core-menu__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    width: min(100%, 1180px);
    margin: 0 auto;
}

.corp-core-card {
    display: grid;
    grid-template-rows: 188px auto;
    min-height: 330px;
    overflow: hidden;
    color: var(--corp-ink);
    text-decoration: none;
    border: 1px solid var(--corp-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(31, 41, 55, 0.08);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.corp-core-card:hover {
    transform: translateY(-2px);
    border-color: rgba(29, 117, 216, 0.3);
    box-shadow: 0 22px 54px rgba(31, 41, 55, 0.12);
}

.corp-core-card img {
    width: 100%;
    height: 188px;
    min-height: 0;
    object-fit: cover;
    object-position: center center;
    background: var(--corp-soft);
}

.corp-core-card__body {
    display: grid;
    align-content: center;
    padding: 24px 24px 26px;
}

.corp-core-card span {
    width: max-content;
    min-width: 38px;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--corp-blue-soft);
    color: var(--corp-blue);
    font-size: 13px;
    line-height: 1;
    font-weight: 650;
}

.corp-core-card:nth-child(1) span {
    background: var(--corp-orange-soft);
    color: #c76109;
}

.corp-core-card strong {
    display: block;
    margin-top: 18px;
    color: var(--corp-title);
    font-size: clamp(25px, 2.2vw, 31px);
    line-height: 1.2;
    font-weight: 620;
    word-break: keep-all;
}

.corp-core-card p {
    margin: 14px 0 0;
    color: var(--corp-muted);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
    word-break: keep-all;
}

.corp-core-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.corp-core-card li {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 11px;
    border-radius: 999px;
    background: var(--corp-soft);
    color: #475569;
    font-size: 13px;
    font-weight: 500;
}

.corp-core-card__services {
    display: grid;
    grid-template-rows: repeat(4, minmax(64px, 1fr));
    gap: 8px;
    margin-top: 22px;
}

.corp-core-card__services a {
    display: grid;
    align-content: start;
    gap: 4px;
    min-height: 64px;
    padding: 12px 13px;
    color: var(--corp-ink);
    text-decoration: none;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 10px;
    background: #f8fafc;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.corp-core-card__services a:hover {
    transform: translateY(-1px);
    border-color: rgba(29, 117, 216, 0.28);
    background: #fff;
}

.corp-core-card__services b {
    color: var(--corp-title);
    font-size: 14px;
    line-height: 1.25;
    font-weight: 620;
}

.corp-core-card__services small {
    color: var(--corp-muted);
    font-size: 12px;
    line-height: 1.35;
    font-weight: 400;
    word-break: keep-all;
}

.corp-core-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    min-height: 38px;
    margin-top: 18px;
    padding: 0 14px;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    background: var(--corp-blue);
    font-size: 13px;
    font-weight: 620;
}

.corp-diagnosis {
    padding: 70px 28px 76px;
    background: var(--corp-soft);
}

.corp-diagnosis__grid,
.corp-highlights__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    width: min(100%, 1180px);
    margin: 0 auto;
}

.corp-diagnosis article,
.corp-highlights article {
    min-height: 190px;
    padding: 0 0 24px;
    border: 1px solid var(--corp-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(31, 41, 55, 0.05);
    overflow: hidden;
}

.corp-diagnosis article img,
.corp-highlights article img {
    display: block;
    width: 100%;
    height: 168px;
    object-fit: cover;
    object-position: center top;
    background: var(--corp-soft);
}

.corp-diagnosis article span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    margin: 20px 22px 0;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--corp-orange-soft);
    color: #c76109;
    font-size: 12px;
    font-weight: 600;
}

.corp-diagnosis article strong,
.corp-highlights article strong {
    display: block;
    margin: 16px 22px 0;
    color: var(--corp-title);
    font-size: 20px;
    line-height: 1.35;
    font-weight: 580;
    word-break: keep-all;
}

.corp-diagnosis article p,
.corp-highlights article p {
    margin: 12px 22px 0;
    color: var(--corp-muted);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    word-break: keep-all;
}

.corp-highlight-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    min-height: 34px;
    margin: 16px 22px 0;
    padding: 0 12px;
    color: var(--corp-blue);
    text-decoration: none;
    border: 1px solid rgba(29, 117, 216, 0.22);
    border-radius: 8px;
    background: var(--corp-blue-soft);
    font-size: 13px;
    line-height: 1;
    font-weight: 620;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.corp-highlight-link:hover {
    transform: translateY(-1px);
    border-color: rgba(29, 117, 216, 0.42);
    background: #fff;
}

.corp-categories {
    padding: 78px 28px 88px;
    background: #fff;
}

.corp-showcase {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    width: min(100%, 1180px);
    margin: 0 auto;
}

.corp-card {
    position: relative;
    display: grid;
    grid-template-rows: 168px auto;
    min-height: 336px;
    overflow: hidden;
    color: var(--corp-ink);
    text-decoration: none;
    border: 1px solid var(--corp-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(31, 41, 55, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.corp-card--wide {
    grid-column: span 1;
}

.corp-card:hover {
    transform: translateY(-2px);
    border-color: rgba(29, 117, 216, 0.28);
    box-shadow: 0 18px 42px rgba(31, 41, 55, 0.1);
}

.corp-card img {
    width: 100%;
    height: 168px;
    object-fit: cover;
    transition: transform 360ms ease;
}

.corp-card:hover img {
    transform: scale(1.035);
}

.corp-card span {
    margin: 22px 24px 0;
    color: var(--corp-blue);
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
}

.corp-card strong {
    margin: 10px 24px 0;
    color: var(--corp-title);
    font-size: 22px;
    line-height: 1.3;
    font-weight: 580;
    word-break: keep-all;
}

.corp-card em {
    max-width: 420px;
    margin: 12px 24px 24px;
    color: var(--corp-muted);
    font-size: 14px;
    font-style: normal;
    line-height: 1.55;
    font-weight: 400;
    word-break: keep-all;
}

.corp-highlights {
    padding: 72px 28px 80px;
    background: var(--corp-paper);
}

.corp-highlights article {
    min-height: 160px;
    background: rgba(255, 255, 255, 0.86);
}

.corp-highlights article strong {
    margin-top: 18px;
}

.corp-command {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    width: min(100%, 1180px);
    margin: 78px auto 84px;
    overflow: hidden;
    border: 1px solid var(--corp-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--corp-shadow);
}

.corp-command__visual {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    background: var(--corp-soft);
}

.corp-command__visual img {
    width: 100%;
    height: 100%;
    padding: 22px;
    object-fit: contain;
}

.corp-command__body {
    display: grid;
    align-content: center;
    padding: 46px;
}

.corp-command__body h2 {
    font-size: clamp(28px, 2.8vw, 38px);
}

.corp-command nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
}

.corp-command nav a {
    display: grid;
    align-content: center;
    justify-content: stretch;
    min-height: 82px;
    padding: 16px;
    text-align: left;
}

.corp-command nav a strong {
    font-size: 15px;
    font-weight: 580;
}

.corp-command nav a span {
    margin-top: 6px;
    color: inherit;
    opacity: 0.72;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 400;
}

.corp-process {
    padding: 8px 28px 96px;
    background: #fff;
}

.corp-process ol {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    width: min(100%, 980px);
    margin: 0 auto;
    padding: 0;
    list-style: none;
    counter-reset: none;
}

.corp-process li {
    padding: 24px;
    border: 1px solid var(--corp-line);
    border-radius: 16px;
    background: #fff;
}

.corp-process li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--corp-blue-soft);
    color: var(--corp-blue);
    font-size: 13px;
    font-weight: 650;
}

.corp-process li strong {
    display: block;
    margin-top: 16px;
    color: var(--corp-title);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 580;
}

.corp-process li p {
    margin: 12px 0 0;
    color: var(--corp-muted);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    word-break: keep-all;
}

@media (max-width: 1080px) {
    .corp-stage__inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "copy"
            "image"
            "notice"
            "dock";
    }

    .corp-proof,
    .corp-command {
        grid-template-columns: 1fr;
    }

    .corp-advisor-band {
        grid-template-columns: 1fr;
    }

    .corp-diagnosis__grid,
    .corp-highlights__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .corp-core-menu__grid {
        grid-template-columns: 1fr;
    }

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

    .corp-stage__slider {
        width: 100%;
        aspect-ratio: 980 / 620;
        height: auto;
    }

    .corp-stage__image {
        inset: auto;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center center;
        transform: none;
    }

    .corp-showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    :root {
        --corp-header: 45px;
    }
}

@media (max-width: 720px) {
    .corp-stage {
        min-height: auto;
    }

    .corp-stage__inner {
        min-height: 0;
        gap: 20px;
        padding: 34px 14px 0;
    }

    .corp-stage__copy h1 {
        max-width: 380px;
        font-size: 36px;
        line-height: 1.18;
    }

    .corp-stage__copy > span {
        max-width: 340px;
        margin-top: 14px;
        font-size: 15px;
        line-height: 1.55;
    }

    .corp-stage__actions {
        gap: 8px;
        margin-top: 22px;
    }

    .corp-stage__actions a {
        min-height: 42px;
        padding: 0 13px;
        font-size: 13px;
    }

    .corp-stage-search {
        gap: 8px;
        margin-top: 22px;
    }

    .corp-stage-search__box {
        min-height: 50px;
        padding: 5px;
        border-radius: 11px;
    }

    .corp-stage-search__box input {
        padding: 0 11px;
        font-size: 14px;
    }

    .corp-stage-search__box button {
        min-width: 66px;
        font-size: 13px;
    }

    .corp-stage__panel {
        width: 100%;
        margin-top: 22px;
        padding: 20px;
        border-radius: 14px;
    }

    .corp-stage__panel ul {
        grid-template-columns: 1fr;
    }

    .corp-stage__panel a {
        width: 100%;
    }

    .corp-stage__panel strong {
        font-size: 21px;
    }

    .corp-stage__panel--timeline {
        gap: 10px;
        padding: 8px;
    }

    .corp-stage-timeline__head {
        padding: 4px 4px 0;
    }

    .corp-stage-timeline__head strong {
        font-size: 18px;
    }

    .corp-stage-timeline__head small {
        font-size: 11px;
    }

    .corp-stage-timeline__track {
        animation-duration: 30s;
    }

    .corp-stage-timeline__group {
        gap: 8px;
        padding-right: 8px;
    }

    .corp-stage__panel--timeline .corp-stage-timeline__card {
        width: 154px;
        height: 108px;
        padding: 11px;
        gap: 7px;
    }

    .corp-stage__panel--timeline .corp-stage-timeline__card strong {
        font-size: 13px;
        line-height: 1.32;
    }

    .corp-stage__panel--timeline .corp-stage-timeline__meta b {
        max-width: 70px;
        min-height: 20px;
        padding: 0 8px;
        font-size: 10px;
    }

    .corp-stage__panel--timeline .corp-stage-timeline__meta em {
        font-size: 11px;
    }

    .corp-stage__slider {
        width: 100%;
        aspect-ratio: 980 / 620;
        height: auto;
        border-radius: 16px;
    }

    .corp-stage__image {
        inset: auto;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center center;
        background: #fff;
        transform: none;
    }

    .corp-stage-worldcup {
        right: 10px;
        bottom: 38px;
        width: calc(100% - 20px);
        padding: 10px;
        border-radius: 12px;
    }

    .corp-stage-worldcup strong {
        margin-top: 5px;
        font-size: 16px;
    }

    .corp-stage-worldcup ul {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
        margin-top: 9px;
    }

    .corp-stage-worldcup li {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2px;
        padding-top: 6px;
    }

    .corp-stage-worldcup b,
    .corp-stage-worldcup small {
        font-size: 11px;
    }

    .corp-stage-worldcup em {
        font-size: 10px;
    }

    .corp-service-dock {
        grid-template-columns: 1fr;
        min-height: 98px;
        margin: 4px -14px 0;
        border-radius: 14px 14px 0 0;
    }

    .corp-service-dock a {
        gap: 6px;
        min-height: 86px;
        padding: 16px;
    }

    .corp-service-dock span {
        font-size: 11px;
    }

    .corp-service-dock strong {
        font-size: 20px;
    }

    .corp-service-dock em {
        font-size: 12px;
    }

    .corp-proof {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 54px 14px 44px;
    }

    .corp-proof__headline h2,
    .corp-section-title h2,
    .corp-command__body h2 {
        font-size: 29px;
        line-height: 1.22;
    }

    .corp-proof__stats {
        grid-template-columns: 1fr;
        border-radius: 14px;
    }

    .corp-proof__stats article {
        min-height: 0;
        padding: 20px;
        border-right: 0;
        border-bottom: 1px solid var(--corp-line);
    }

    .corp-proof__stats article:last-child {
        border-bottom: 0;
    }

    .corp-advisor-band {
        margin: 0 14px 54px;
        border-radius: 16px;
    }

    .corp-advisor-band img {
        min-height: 210px;
        max-height: 260px;
    }

    .corp-advisor-band div {
        padding: 26px 20px;
    }

    .corp-advisor-band strong {
        font-size: 28px;
    }

    .corp-advisor-band span {
        font-size: 14px;
    }

    .corp-diagnosis,
    .corp-core-menu,
    .corp-categories,
    .corp-highlights {
        padding: 56px 14px 62px;
    }

    .corp-section-title {
        margin-bottom: 24px;
    }

    .corp-diagnosis__grid,
    .corp-highlights__grid,
    .corp-showcase,
    .corp-process ol {
        grid-template-columns: 1fr;
    }

    .corp-diagnosis article img,
    .corp-highlights article img {
        height: 150px;
    }

    .corp-core-card {
        grid-template-rows: 170px auto;
        min-height: 0;
        border-radius: 16px;
    }

    .corp-core-card img {
        height: 170px;
    }

    .corp-core-card__body {
        padding: 24px 20px;
    }

    .corp-core-card strong {
        font-size: 27px;
    }

    .corp-card {
        grid-template-rows: 150px auto;
        min-height: 308px;
        border-radius: 14px;
    }

    .corp-card img {
        height: 150px;
    }

    .corp-card span,
    .corp-card strong,
    .corp-card em {
        margin-right: 20px;
        margin-left: 20px;
    }

    .corp-card strong {
        font-size: 22px;
    }

    .corp-command {
        margin: 62px 14px 66px;
        width: auto;
        border-radius: 16px;
    }

    .corp-command__visual {
        min-height: 210px;
    }

    .corp-command__body {
        padding: 28px 20px 22px;
    }

    .corp-command nav {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 22px;
    }

    .corp-command nav a {
        min-height: 70px;
        padding: 14px;
    }

    .corp-process {
        padding: 0 14px 80px;
    }
}

@media (max-width: 410px) {
    .corp-stage__inner,
    .corp-proof,
    .corp-diagnosis,
    .corp-categories,
    .corp-highlights,
    .corp-process {
        padding-right: 10px;
        padding-left: 10px;
    }

    .corp-stage__copy h1 {
        font-size: 32px;
    }

    .corp-service-dock {
        margin-right: -10px;
        margin-left: -10px;
    }
}

