@charset "UTF-8";

:root {
    --company-ink: #20383d;
    --company-deep: #164f63;
    --company-main: #639094;
    --company-blue: #2f8db7;
    --company-mint: #e9f4f1;
    --company-pale: #f3f8f7;
    --company-warm: #f5f1e8;
    --company-line: #d9e5e5;
    --company-muted: #607174;
    --company-white: #fff;
}

html {
    scroll-behavior: smooth;
}

body.page-id-13 {
    background: var(--company-white);
}

.page-id-13 .site-content {
    padding: 0;
}

.company-page,
.company-page *,
.company-page *::before,
.company-page *::after {
    box-sizing: border-box;
}

.company-page {
    overflow: hidden;
    color: var(--company-ink);
    background: var(--company-white);
}

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

.company-page a {
    text-decoration: none;
}

.company-container {
    width: min(1180px, calc(100% - 48px));
    margin-right: auto;
    margin-left: auto;
}

.company-section {
    padding: clamp(88px, 10vw, 144px) 0;
}

.company-section-heading {
    max-width: 850px;
    margin-bottom: clamp(44px, 6vw, 76px);
}

.company-section-heading h2 {
    margin: 0;
    color: var(--company-deep);
    font-size: clamp(2rem, 4.35vw, 4.3rem);
    font-weight: 850;
    line-height: 1.28;
    letter-spacing: -0.045em;
}

.company-section-heading > p:last-child:not(.company-section-label) {
    max-width: 680px;
    margin: 24px 0 0;
    color: var(--company-muted);
    font-size: 1.04rem;
    line-height: 1.9;
}

.company-section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 22px;
    color: var(--company-main);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.15em;
}

.company-section-label span {
    display: inline-grid;
    width: 34px;
    height: 34px;
    border: 1px solid currentColor;
    border-radius: 50%;
    place-items: center;
    font-size: 0.67rem;
}

.company-hero {
    position: relative;
    isolation: isolate;
    min-height: 820px;
    padding: clamp(150px, 16vw, 215px) 0 0;
    overflow: hidden;
    background:
        linear-gradient(110deg, rgba(232, 245, 249, 0.94) 0%, rgba(245, 241, 232, 0.88) 58%, rgba(232, 244, 241, 0.92) 100%);
}

.company-hero::before {
    position: absolute;
    inset: 0;
    z-index: -3;
    content: "";
    opacity: 0.33;
    background-image: radial-gradient(circle at 1px 1px, rgba(31, 111, 138, 0.2) 1px, transparent 0);
    background-size: 28px 28px;
}

.company-hero::after {
    position: absolute;
    right: -6vw;
    bottom: -30%;
    z-index: -2;
    width: min(58vw, 760px);
    aspect-ratio: 1;
    border: 1px solid rgba(47, 141, 183, 0.16);
    border-radius: 50%;
    content: "";
    box-shadow:
        0 0 0 52px rgba(255, 255, 255, 0.18),
        0 0 0 104px rgba(255, 255, 255, 0.12);
}

.company-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(390px, 0.82fr);
    align-items: center;
    gap: clamp(46px, 7vw, 100px);
}

.company-kicker {
    margin: 0 0 28px;
    color: var(--company-main);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.company-hero-copy h1 {
    margin: 0;
    color: var(--company-ink);
    font-size: clamp(3.3rem, 6.5vw, 6.45rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.07em;
}

.company-hero-copy h1 em {
    position: relative;
    z-index: 1;
    color: var(--company-deep);
    font-style: normal;
}

.company-hero-copy h1 em::after {
    position: absolute;
    right: 0;
    bottom: 0.05em;
    left: 0;
    z-index: -1;
    height: 0.22em;
    border-radius: 999px;
    content: "";
    background: #a7d9d0;
    opacity: 0.68;
}

.company-hero-lead {
    max-width: 690px;
    margin: 36px 0 0;
    color: #42595d;
    font-size: clamp(1rem, 1.35vw, 1.16rem);
    font-weight: 560;
    line-height: 2;
}

.company-hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.company-button {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-width: 230px;
    padding: 16px 22px 16px 28px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.98rem;
    font-weight: 850;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.company-button span {
    display: grid;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    place-items: center;
}

.company-button:hover {
    transform: translateY(-2px);
}

.company-button-primary {
    background: var(--company-deep);
    color: #fff !important;
    box-shadow: 0 18px 34px rgba(22, 79, 99, 0.2);
}

.company-button-primary:hover {
    background: #103f4f;
    color: #fff !important;
}

.company-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--company-deep) !important;
    font-size: 0.92rem;
    font-weight: 800;
}

.company-text-link span {
    transition: transform 0.2s ease;
}

.company-text-link:hover span {
    transform: translateY(3px);
}

.company-hero-visual {
    position: relative;
    min-height: 430px;
}

.company-hero-visual::before,
.company-hero-visual::after {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(31, 111, 138, 0.23);
    border-radius: 50%;
    content: "";
    transform: translate(-50%, -50%);
}

.company-hero-visual::before {
    width: 330px;
    height: 330px;
}

.company-hero-visual::after {
    width: 420px;
    height: 420px;
    border-style: dashed;
    animation: company-orbit 28s linear infinite;
}

.company-hero-core {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: grid;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    background: linear-gradient(145deg, #2f8db7, #164f63);
    box-shadow: 0 26px 70px rgba(22, 79, 99, 0.3);
    color: #fff;
    place-content: center;
    text-align: center;
    transform: translate(-50%, -50%);
}

.company-hero-core span {
    font-size: 1.38rem;
    font-weight: 850;
    letter-spacing: 0.02em;
}

.company-hero-core small {
    margin-top: 8px;
    font-size: 0.58rem;
    font-weight: 750;
    letter-spacing: 0.16em;
}

.company-hero-chip {
    position: absolute;
    z-index: 3;
    display: grid;
    width: 72px;
    height: 72px;
    border: 1px solid rgba(31, 111, 138, 0.14);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 36px rgba(31, 79, 87, 0.14);
    color: var(--company-deep);
    font-size: 0.75rem;
    font-weight: 900;
    place-items: center;
    backdrop-filter: blur(10px);
}

.company-hero-chip-web { top: 8%; left: 10%; }
.company-hero-chip-sns { top: 14%; right: 2%; }
.company-hero-chip-line { right: 6%; bottom: 9%; }
.company-hero-chip-meo { bottom: 2%; left: 4%; }

.company-hero-orb {
    position: absolute;
    z-index: -2;
    border-radius: 50%;
    filter: blur(1px);
}

.company-hero-orb-a {
    top: 10%;
    right: 22%;
    width: 130px;
    height: 130px;
    background: rgba(167, 217, 208, 0.45);
}

.company-hero-orb-b {
    bottom: 18%;
    left: -3%;
    width: 230px;
    height: 230px;
    background: rgba(47, 141, 183, 0.08);
}

.company-hero-foot {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 760px;
    margin-top: 88px;
    margin-left: max(24px, calc((100vw - 1180px) / 2));
    padding: 28px 36px;
    border-radius: 24px 24px 0 0;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 -10px 50px rgba(31, 79, 87, 0.08);
    backdrop-filter: blur(12px);
}

.company-hero-foot p {
    display: grid;
    gap: 4px;
    margin: 0;
    padding: 0 24px;
    border-left: 1px solid var(--company-line);
}

.company-hero-foot p:first-child {
    padding-left: 0;
    border-left: 0;
}

.company-hero-foot strong {
    color: var(--company-deep);
    font-size: 1.42rem;
    font-weight: 900;
}

.company-hero-foot span {
    color: var(--company-muted);
    font-size: 0.76rem;
    font-weight: 700;
}

.company-mission {
    background: #fff;
}

.company-mission-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: clamp(50px, 8vw, 120px);
    align-items: start;
}

.company-mission-statement {
    margin: 0;
    color: var(--company-ink);
    font-size: clamp(1.65rem, 3vw, 3.05rem);
    font-weight: 720;
    line-height: 1.65;
    letter-spacing: -0.035em;
}

.company-mission-statement em {
    color: var(--company-main);
    font-style: normal;
}

.company-mission-copy {
    padding-top: 10px;
}

.company-mission-copy p {
    margin: 0 0 24px;
    color: var(--company-muted);
    font-size: 1.01rem;
    line-height: 2.05;
}

.company-mission-copy p:last-child {
    margin-bottom: 0;
}

.company-capabilities {
    position: relative;
    background: var(--company-deep);
    color: #fff;
}

.company-capabilities::after {
    position: absolute;
    top: 42px;
    right: max(24px, calc((100vw - 1180px) / 2));
    content: "CONNECT";
    color: rgba(255, 255, 255, 0.055);
    font-size: clamp(5rem, 13vw, 11rem);
    font-weight: 950;
    line-height: 1;
    pointer-events: none;
}

.company-capabilities .company-container {
    position: relative;
    z-index: 1;
}

.company-section-heading-light h2 {
    color: #fff;
}

.company-section-heading-light .company-section-label {
    color: #9cd3cc;
}

.company-section-heading-light > p:last-child:not(.company-section-label) {
    color: rgba(255, 255, 255, 0.68);
}

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

.company-capability-card {
    position: relative;
    min-height: 350px;
    padding: 34px 28px 32px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.065);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.company-capability-card:hover {
    background: rgba(255, 255, 255, 0.105);
    transform: translateY(-7px);
}

.company-capability-number {
    position: absolute;
    right: 22px;
    bottom: 4px;
    color: rgba(255, 255, 255, 0.07);
    font-size: 6.4rem;
    font-weight: 950;
    line-height: 1;
}

.company-capability-en {
    margin: 0 0 56px;
    color: #9cd3cc;
    font-size: 0.69rem;
    font-weight: 850;
    letter-spacing: 0.14em;
}

.company-capability-card h3 {
    position: relative;
    margin: 0 0 20px;
    color: #fff;
    font-size: 1.34rem;
    font-weight: 850;
    line-height: 1.45;
}

.company-capability-card > p:last-child {
    position: relative;
    margin: 0;
    color: rgba(255, 255, 255, 0.69);
    font-size: 0.92rem;
    line-height: 1.85;
}

.company-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 44px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 800;
}

.company-inline-link span {
    transition: transform 0.2s ease;
}

.company-inline-link:hover span {
    transform: translateX(5px);
}

.company-founder {
    background: var(--company-warm);
}

.company-founder-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(50px, 8vw, 116px);
    align-items: start;
}

.company-founder-photo {
    position: relative;
    margin: 0;
}

.company-founder-photo::before {
    position: absolute;
    top: -18px;
    right: -18px;
    z-index: 0;
    width: 38%;
    height: 42%;
    border-radius: 0 34px 0 0;
    content: "";
    background: #a7d9d0;
}

.company-founder-photo img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 34px 6px 34px 6px;
    object-fit: cover;
    box-shadow: 0 30px 60px rgba(56, 72, 65, 0.17);
}

.company-founder-photo figcaption {
    position: relative;
    z-index: 2;
    display: grid;
    width: calc(100% - 44px);
    gap: 4px;
    margin: -38px auto 0;
    padding: 20px 24px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 16px 32px rgba(56, 72, 65, 0.13);
}

.company-founder-photo figcaption span {
    color: var(--company-main);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.13em;
}

.company-founder-photo figcaption strong {
    color: var(--company-ink);
    font-size: 1.08rem;
}

.company-founder-copy {
    padding-top: 4px;
}

.company-founder-copy p {
    margin: 0 0 22px;
    color: #53676a;
    font-size: 0.99rem;
    line-height: 2.05;
}

.company-founder-copy .company-founder-intro {
    margin-bottom: 28px;
    color: var(--company-deep);
    font-size: clamp(1.25rem, 2vw, 1.72rem);
    font-weight: 760;
    line-height: 1.7;
}

.company-founder-sign {
    margin-top: 38px !important;
    text-align: right;
}

.company-founder-sign strong {
    color: var(--company-ink);
    font-size: 1.18rem;
}

.company-values {
    position: relative;
    background: #fff;
}

.company-values::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 34%;
    height: 12px;
    content: "";
    background: linear-gradient(90deg, #a7d9d0, #2f8db7);
}

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

.company-value-card {
    min-height: 330px;
    padding: clamp(30px, 4vw, 52px);
    border: 1px solid var(--company-line);
    border-radius: 26px;
    background: #fff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.company-value-card:hover {
    border-color: rgba(99, 144, 148, 0.55);
    box-shadow: 0 22px 50px rgba(31, 79, 87, 0.09);
    transform: translateY(-5px);
}

.company-value-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 52px;
}

.company-value-head span {
    color: var(--company-blue);
    font-size: 0.76rem;
    font-weight: 900;
}

.company-value-head span::after {
    display: inline-block;
    width: 48px;
    height: 1px;
    margin-left: 16px;
    background: var(--company-line);
    content: "";
    vertical-align: middle;
}

.company-value-head p {
    margin: 0;
    color: var(--company-main);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.company-value-card h3 {
    margin: 0 0 18px;
    color: var(--company-deep);
    font-size: clamp(1.45rem, 2.4vw, 2.05rem);
    font-weight: 850;
}

.company-value-card > p {
    max-width: 520px;
    margin: 0;
    color: var(--company-muted);
    font-size: 0.98rem;
    line-height: 1.95;
}

.company-profile {
    background: var(--company-pale);
}

.company-profile-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    gap: clamp(42px, 8vw, 110px);
}

.company-profile-list {
    margin: 0;
    border-top: 1px solid #cbdada;
}

.company-profile-list > div {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #cbdada;
}

.company-profile-list dt {
    color: var(--company-main);
    font-size: 0.83rem;
    font-weight: 850;
}

.company-profile-list dd {
    margin: 0;
    color: var(--company-ink);
    font-size: 0.96rem;
    font-weight: 620;
    line-height: 1.8;
}

.company-profile-list dd small {
    color: var(--company-muted);
    font-size: 0.82rem;
    font-weight: 500;
}

.company-profile-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.company-profile-list li {
    position: relative;
    padding-left: 16px;
}

.company-profile-list li::before {
    position: absolute;
    top: 0.83em;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--company-main);
    content: "";
}

.company-profile-aside {
    position: relative;
    min-height: 560px;
    padding: 48px 44px;
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(145deg, var(--company-deep), #237894);
    color: #fff;
}

.company-profile-aside-label {
    margin: 0 0 24px;
    color: #a7d9d0;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.14em;
}

.company-profile-aside h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(1.5rem, 2.6vw, 2.15rem);
    font-weight: 820;
    line-height: 1.55;
}

.company-profile-aside > p:not(.company-profile-aside-label) {
    position: relative;
    z-index: 2;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.9;
}

.company-profile-map {
    position: absolute;
    right: -18%;
    bottom: -10%;
    width: 88%;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
}

.company-profile-map::before,
.company-profile-map::after,
.company-profile-map-ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    content: "";
}

.company-profile-map::before {
    inset: 13%;
}

.company-profile-map::after {
    inset: 29%;
}

.company-profile-map-ring {
    top: 50%;
    left: 50%;
    width: 1px;
    height: 100%;
    border-radius: 0;
    transform: translate(-50%, -50%);
}

.company-profile-map-pin {
    position: absolute;
    top: 40%;
    left: 43%;
    width: 18px;
    height: 18px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: #a7d9d0;
    box-shadow: 0 0 0 10px rgba(167, 217, 208, 0.19);
}

.company-profile-map strong,
.company-profile-map small {
    position: absolute;
    left: 52%;
    color: #fff;
}

.company-profile-map strong {
    top: 38%;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
}

.company-profile-map small {
    top: 45%;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.62rem;
    letter-spacing: 0.16em;
}

.company-final-cta {
    padding: clamp(76px, 9vw, 118px) 0;
    background:
        linear-gradient(115deg, rgba(22, 79, 99, 0.98), rgba(47, 141, 183, 0.93)),
        var(--company-deep);
    color: #fff;
}

.company-final-cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(390px, 0.8fr);
    gap: 60px;
    align-items: center;
}

.company-final-cta .company-section-label {
    color: #a7d9d0;
}

.company-final-cta h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 4.3vw, 4rem);
    font-weight: 850;
    line-height: 1.35;
    letter-spacing: -0.045em;
}

.company-final-cta h2 + p {
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.9;
}

.company-final-cta-actions {
    display: grid;
    gap: 14px;
}

.company-button-line {
    background: #06c755;
    color: #fff !important;
    box-shadow: 0 18px 35px rgba(6, 199, 85, 0.2);
}

.company-button-line:hover {
    background: #05aa49;
    color: #fff !important;
}

.company-button-light {
    border-color: rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.08);
    color: #fff !important;
}

.company-button-light:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff !important;
}

@keyframes company-orbit {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

@media (max-width: 991px) {
    .company-hero {
        min-height: 0;
        padding-top: 138px;
    }

    .company-hero-inner,
    .company-mission-grid,
    .company-founder-grid,
    .company-profile-grid,
    .company-final-cta-inner {
        grid-template-columns: 1fr;
    }

    .company-hero-visual {
        min-height: 410px;
        width: min(100%, 520px);
        margin: 0 auto;
    }

    .company-hero-foot {
        width: min(calc(100% - 48px), 760px);
        margin: 56px auto 0;
    }

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

    .company-founder-photo {
        width: min(100%, 520px);
    }

    .company-profile-grid {
        gap: 62px;
    }

    .company-profile-aside {
        min-height: 500px;
    }

    .company-final-cta-actions {
        width: min(100%, 520px);
    }
}

@media (max-width: 767px) {
    .company-container {
        width: min(100% - 34px, 1180px);
    }

    .company-section {
        padding: 80px 0;
    }

    .company-section-heading {
        margin-bottom: 38px;
    }

    .company-section-heading h2 {
        font-size: clamp(1.84rem, 9.2vw, 2.55rem);
        line-height: 1.36;
        letter-spacing: -0.045em;
    }

    .company-section-label {
        margin-bottom: 18px;
        font-size: 0.7rem;
    }

    .company-section-label span {
        width: 31px;
        height: 31px;
    }

    .company-hero {
        padding-top: 132px;
    }

    .company-hero-copy h1 {
        font-size: clamp(2.7rem, 13vw, 4.2rem);
        line-height: 1.1;
    }

    .company-hero-lead br {
        display: none;
    }

    .company-hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 20px;
    }

    .company-button {
        width: 100%;
        min-width: 0;
    }

    .company-text-link {
        justify-content: center;
    }

    .company-hero-visual {
        min-height: 345px;
        margin-top: 18px;
        transform: scale(0.88);
    }

    .company-hero-visual::before {
        width: 275px;
        height: 275px;
    }

    .company-hero-visual::after {
        width: 340px;
        height: 340px;
    }

    .company-hero-core {
        width: 176px;
        height: 176px;
    }

    .company-hero-chip {
        width: 60px;
        height: 60px;
        border-radius: 18px;
        font-size: 0.67rem;
    }

    .company-hero-foot {
        grid-template-columns: 1fr;
        width: calc(100% - 34px);
        margin-top: 28px;
        padding: 18px 24px;
        border-radius: 20px 20px 0 0;
    }

    .company-hero-foot p,
    .company-hero-foot p:first-child {
        grid-template-columns: 108px 1fr;
        align-items: center;
        padding: 14px 0;
        border-top: 1px solid var(--company-line);
        border-left: 0;
    }

    .company-hero-foot p:first-child {
        border-top: 0;
    }

    .company-hero-foot strong {
        font-size: 1.23rem;
    }

    .company-mission-grid {
        gap: 36px;
    }

    .company-mission-statement {
        font-size: 1.52rem;
        line-height: 1.72;
    }

    .company-capability-grid,
    .company-values-grid {
        grid-template-columns: 1fr;
    }

    .company-capability-card {
        min-height: 290px;
    }

    .company-founder-grid {
        gap: 50px;
    }

    .company-founder-photo::before {
        top: -12px;
        right: -10px;
    }

    .company-value-card {
        min-height: 0;
        padding: 32px 26px;
    }

    .company-value-head {
        margin-bottom: 36px;
    }

    .company-value-head span::after {
        width: 28px;
        margin-left: 10px;
    }

    .company-profile-list > div {
        grid-template-columns: 94px minmax(0, 1fr);
        gap: 14px;
        padding: 22px 0;
    }

    .company-profile-aside {
        min-height: 450px;
        padding: 36px 26px;
    }

    .company-final-cta-inner {
        gap: 42px;
    }

    .company-final-cta h2 {
        font-size: 2rem;
    }
}

/* =========================================
   Company hero v2
   旧Gratianexの下層ページらしい写真ヘッダーへ再設計
   ========================================= */

.company-page .company-hero {
    position: relative;
    display: flex;
    min-height: clamp(480px, 45vw, 610px);
    align-items: flex-end;
    padding: 0;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(7, 35, 43, 0.91) 0%, rgba(7, 35, 43, 0.73) 34%, rgba(7, 35, 43, 0.2) 72%, rgba(7, 35, 43, 0.08) 100%),
        url("../img/company/company-header-v1.webp") center / cover no-repeat;
}

.company-page .company-hero::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    content: "";
    background:
        linear-gradient(180deg, rgba(7, 35, 43, 0.16), transparent 36%, rgba(7, 35, 43, 0.24)),
        linear-gradient(90deg, rgba(99, 144, 148, 0.08), transparent 55%);
    opacity: 1;
}

.company-page .company-hero::after {
    position: absolute;
    right: -6%;
    bottom: -42%;
    z-index: 0;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    content: "";
    box-shadow:
        0 0 0 72px rgba(255, 255, 255, 0.045),
        0 0 0 144px rgba(255, 255, 255, 0.025);
}

.company-page .company-hero-inner {
    position: relative;
    z-index: 2;
    display: block;
    padding-top: 185px;
    padding-bottom: clamp(66px, 8vw, 102px);
}

.company-page .company-hero-copy {
    max-width: 760px;
}

.company-page .company-kicker {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 25px;
    color: #a7d9d0;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
}

.company-page .company-kicker::before {
    width: 42px;
    height: 1px;
    background: currentColor;
    content: "";
}

.company-page .company-hero-copy h1 {
    margin: 0;
    color: #fff;
    font-weight: 900;
    letter-spacing: 0;
}

.company-page .company-hero-copy h1 > span {
    display: block;
    font-size: clamp(3.65rem, 8vw, 7.6rem);
    line-height: 0.9;
    letter-spacing: -0.055em;
}

.company-page .company-hero-copy h1 > small {
    display: block;
    margin-top: 22px;
    color: #fff;
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    font-weight: 720;
    line-height: 1.5;
    letter-spacing: 0.08em;
}

.company-page .company-hero-lead {
    max-width: 620px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.96rem;
    font-weight: 560;
    line-height: 1.9;
}

.company-hero-scroll {
    position: absolute;
    right: max(24px, calc((100vw - 1180px) / 2));
    bottom: 34px;
    z-index: 2;
    display: grid;
    gap: 7px;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-align: center;
}

.company-hero-scroll span {
    font-size: 0.85rem;
    animation: company-scroll-guide 1.8s ease-in-out infinite;
}

@keyframes company-scroll-guide {
    0%,
    100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* =========================================
   Tokyo / Online generated image card
   ========================================= */

.company-profile-aside {
    isolation: isolate;
    min-height: 620px;
    padding: 0;
    background: #0d3544;
}

.company-profile-aside::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    background:
        linear-gradient(180deg, rgba(7, 35, 43, 0.84) 0%, rgba(7, 35, 43, 0.58) 42%, rgba(7, 35, 43, 0.16) 75%, rgba(7, 35, 43, 0.36) 100%),
        linear-gradient(90deg, rgba(7, 35, 43, 0.32), transparent);
}

.company-profile-aside-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: 56% center;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.company-profile-aside:hover .company-profile-aside-image {
    transform: scale(1.035);
}

.company-profile-aside-content {
    position: relative;
    z-index: 2;
    padding: 48px 44px;
}

.company-profile-aside-content h3 {
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(1.5rem, 2.6vw, 2.15rem);
    font-weight: 820;
    line-height: 1.55;
}

.company-profile-aside-content > p:not(.company-profile-aside-label) {
    max-width: 410px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
    line-height: 1.9;
}

.company-profile-map {
    display: none;
}

@media (max-width: 991px) {
    .company-page .company-hero {
        min-height: 520px;
        padding-top: 0;
        background-position: 58% center;
    }

    .company-page .company-hero-inner {
        padding-top: 170px;
        padding-bottom: 68px;
    }

    .company-profile-aside {
        min-height: 610px;
    }
}

@media (max-width: 767px) {
    .company-page .company-hero {
        min-height: 455px;
        padding-top: 0;
        background:
            linear-gradient(90deg, rgba(7, 35, 43, 0.9) 0%, rgba(7, 35, 43, 0.7) 48%, rgba(7, 35, 43, 0.3) 100%),
            url("../img/company/company-header-v1.webp") 58% center / cover no-repeat;
    }

    .company-page .company-hero-inner {
        padding-top: 158px;
        padding-bottom: 54px;
    }

    .company-page .company-kicker {
        margin-bottom: 18px;
        font-size: 0.63rem;
    }

    .company-page .company-hero-copy h1 > span {
        font-size: clamp(3.1rem, 17vw, 4.5rem);
    }

    .company-page .company-hero-copy h1 > small {
        margin-top: 17px;
        font-size: 0.94rem;
    }

    .company-page .company-hero-lead {
        margin-top: 17px;
        font-size: 0.84rem;
        line-height: 1.75;
    }

    .company-hero-scroll {
        right: 17px;
        bottom: 24px;
    }

    .company-page .company-hero::after {
        right: -60%;
        bottom: -50%;
    }

    .company-profile-aside {
        min-height: 570px;
        padding: 0;
    }

    .company-profile-aside-content {
        padding: 36px 26px;
    }

    .company-profile-aside-image {
        object-position: 60% center;
    }
}
