:root {
    --bg: #fff;
    --fg: #111;
    --max: 100%;
    --gutter: clamp(18px, 3vw, 44px);
    --ui-blue: #3D6AE2;
    --ui-blue-dark: #2347cc;
    --muted: rgba(17, 17, 17, .68);
    --line: rgba(17, 17, 17, .12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Noto Sans JP", system-ui, -apple-system, "Yu Gothic", sans-serif;
    color: var(--fg);
    background: var(--bg);
    font-size: 15px;
    line-height: 1.75;
}

a {
    color: inherit;
    text-decoration: none;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    height: 76px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.topbar__inner,
.container {
    width: min(var(--max), 100%);
    margin: 0 auto;
    padding-inline: var(--gutter);
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.brand img {
    width: 92px;
    height: 92px;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 24px;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, .8);
}

.backHome {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid var(--ui-blue);
    background: var(--ui-blue);
    color: #fff;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: background .2s ease, border-color .2s ease;
}

.backHome:hover {
    background: var(--ui-blue-dark);
    border-color: var(--ui-blue-dark);
}

.hero {
    padding: clamp(60px, 7vw, 100px) 0 28px;
    border-bottom: 1px solid rgba(17, 17, 17, .09);
}

.eyebrow {
    margin: 0 0 12px;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, .58);
}

h1 {
    margin: 0 0 14px;
    font-size: clamp(24px, 3.2vw, 38px);
    line-height: 1.25;
    font-weight: 600;
}

.heroLead {
    margin: 0;
    max-width: 42em;
    color: var(--muted);
    font-size: clamp(14px, 1.4vw, 16px);
}

.perfPagerTrack {
    position: relative;
    z-index: 0;
    isolation: isolate;
    margin-top: clamp(22px, 3vw, 32px);
}

.perfPagerTrack .perfPager {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    margin-top: 0;
}

.perfPager__slider {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 0;
    height: 0;
    transform: translateZ(0);
    pointer-events: none;
    border-radius: 999px;
    background: var(--ui-blue);
    box-shadow: 0 0 0 1px var(--ui-blue);
    opacity: 0;
    transition:
        left 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        top 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        width 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        height 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.perfPager__slider.perfPager__slider--hover {
    background: var(--ui-blue-dark);
    box-shadow: 0 0 0 1px var(--ui-blue-dark);
}

.perfPager a {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-size: 13px;
    letter-spacing: .04em;
    color: rgba(17, 17, 17, .78);
    background: #fff;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.perfPager a:hover:not([aria-current="page"]) {
    border-color: rgba(17, 17, 17, .28);
    background: rgba(17, 17, 17, .04);
}

.perfPager a[aria-current="page"] {
    z-index: 2;
    color: rgba(17, 17, 17, .78);
    background: #fff;
    border-color: var(--line);
    font-weight: 500;
}

.perfPager a[aria-current="page"]:hover {
    background: #fff;
    border-color: var(--line);
}

.perfPagerTrack.perfPagerTrack--ready .perfPager a[aria-current="page"] {
    z-index: 3;
    color: #fff;
    background: transparent;
    border-color: transparent;
}

.perfPagerTrack.perfPagerTrack--ready .perfPager a[aria-current="page"]:hover {
    background: transparent;
    border-color: transparent;
}

main.container {
    padding-top: clamp(36px, 5vw, 56px);
    padding-bottom: clamp(70px, 8vw, 110px);
}

.prose {
    max-width: 42em;
}

.prose h2 {
    margin: 2.2em 0 .75em;
    font-size: clamp(17px, 1.6vw, 20px);
    font-weight: 600;
    line-height: 1.4;
}

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

.prose p {
    margin: 0 0 1em;
    color: var(--muted);
}

.prose ul {
    margin: 0 0 1.2em;
    padding-left: 1.25em;
    color: var(--muted);
}

.prose li {
    margin-bottom: .4em;
}

.backToHub {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 2.5rem;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ui-blue);
}

.backToHub:hover {
    text-decoration: underline;
}

.perfDetail--thermal {
    --th-radius: 14px;
    --th-radius-sm: 10px;
    --th-line: rgba(17, 17, 17, .09);
    --th-line-soft: rgba(17, 17, 17, .06);
    --th-surface: #fff;
    --th-canvas: #f7f7f6;
    --th-canvas-deep: #f0efed;
    --th-muted: rgba(17, 17, 17, .62);
    --th-muted2: rgba(17, 17, 17, .48);
    --th-shadow: 0 1px 0 rgba(17, 17, 17, .05), 0 22px 56px rgba(17, 17, 17, .06);
    --th-shadow-soft: 0 1px 0 rgba(17, 17, 17, .04), 0 12px 36px rgba(17, 17, 17, .04);
    background: var(--th-canvas);
    color: var(--fg);
}

.perfDetail--thermal .thermalHero {
    background: var(--th-surface);
    border-bottom: 1px solid var(--th-line-soft);
    padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 64px);
}

.perfDetail--thermal .thermalHero__inner {
    width: 100%;
    margin: 0 auto;
    padding-inline: clamp(18px, 3vw, 44px);
}

.perfDetail--thermal .thermalHero__label {
    margin: 0 0 16px;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--th-muted2);
}

.perfDetail--thermal .thermalHero__title {
    margin: 0 0 clamp(20px, 3vw, 28px);
    max-width: 16ch;
    font-size: clamp(32px, 5.2vw, 52px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #0a0a0a;
}

.perfDetail--thermal .thermalHero__specs {
    --th-spec-accent: #5f7384;
    --th-spec-accent-soft: rgba(95, 115, 132, .78);
    margin-top: clamp(18px, 5.2vw, 50px);
    margin-bottom: clamp(36px, 5.5vw, 72px);
    margin-left: 0;
    margin-right: 0;
    max-width: min(100%, 72rem);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 3.5vw, 40px) clamp(24px, 5vw, 56px);
    align-items: stretch;
}

.perfDetail--thermal .thermalHero__spec {
    margin: 0;
    padding: 0;
    min-width: 0;
}

.perfDetail--thermal .thermalHero__specCluster {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1.2vw, 12px);
    margin: 0;
    padding-left: clamp(12px, 2vw, 16px);
    border-left: 2px solid rgba(90, 140, 165, .28);
}

.perfDetail--thermal .thermalHero__specValueRow {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.06em 0.38em;
    margin: 0;
    line-height: 1;
}

.perfDetail--thermal .thermalHero__specValueRow--text {
    align-items: center;
    align-self: stretch;
    min-height: clamp(44px, 9.5vw, 86px);
    flex-wrap: wrap;
    justify-content: flex-start;
}

.perfDetail--thermal .thermalHero__specHeadline {
    display: block;
    margin: 0;
    font-family: "Noto Sans JP", "Inter", system-ui, sans-serif;
    font-size: clamp(20px, 1.7vw, 36px);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: 0.02em;
    color: #0a0a0a;
    max-width: 100%;
}

.perfDetail--thermal .thermalHero__specHeadline--window {
    white-space: nowrap;
    max-width: none;
    width: max-content;
}

@media (min-width: 1024px) {
    .perfDetail--thermal .thermalHero__specs:has(.thermalHero__specHeadline--window) {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(420px, 1.2fr);
    }

    .perfDetail--thermal .thermalHero__spec:has(.thermalHero__specHeadline--window) .thermalHero__specValueRow--text {
        flex-wrap: nowrap;
    }

    .perfDetail--thermal .thermalHero__specHeadline--window {
        font-size: clamp(28px, 1.2vw, 32px);
        line-height: 1.16;
    }
}

.perfDetail--thermal .thermalHero__specDigit {
    font-family: "Inter", system-ui, sans-serif;
    font-size: clamp(44px, 9.5vw, 86px);
    font-weight: 500;
    letter-spacing: -0.045em;
    color: #0a0a0a;
}

.perfDetail--thermal .thermalHero__specSuffix {
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: clamp(15px, 1.85vw, 18px);
    font-weight: 500;
    letter-spacing: .05em;
    color: rgba(17, 17, 17, .48);
}

.perfDetail--thermal .thermalHero__specUnit {
    font-family: "Inter", system-ui, sans-serif;
    font-size: clamp(12px, 1.35vw, 13px);
    font-weight: 500;
    letter-spacing: .06em;
    color: var(--th-spec-accent-soft);
}

.perfDetail--thermal .thermalHero__specLabel {
    margin: 0;
    font-family: "Noto Sans JP", "Inter", system-ui, sans-serif;
    font-size: clamp(12px, 1.35vw, 14px);
    font-weight: 500;
    letter-spacing: .16em;
    color: var(--th-spec-accent);
}

.perfDetail--thermal .thermalHero__specMeta {
    margin: clamp(2px, 0.5vw, 4px) 0 0;
    font-size: clamp(12.5px, 1.45vw, 14px);
    font-weight: 400;
    letter-spacing: .03em;
    line-height: 1.5;
    color: var(--th-spec-accent-soft);
}

@media (min-width: 641px) and (max-width: 1023px) {
    .perfDetail--thermal .thermalHero__specs {
        grid-template-columns: 1fr 1fr;
    }

    
    .perfDetail--thermal .thermalHero__spec:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: stretch;
        max-width: none;
        width: 100%;
    }
}

@media (min-width: 1024px) {
    .perfDetail--thermal .thermalHero__specHeadline {
        font-size: clamp(32px, 1.35vw, 40px);
        line-height: 1.16;
    }
}

@media (min-width: 641px) {
    
    .perfDetail--thermal .thermalHero__spec:first-child {
        padding-right: 0;
        border-right: none;
    }
}

@media (max-width: 640px) {
    .perfDetail--thermal .thermalHero__specs {
        grid-template-columns: 1fr;
        gap: clamp(18px, 5vw, 28px);
        margin-top: clamp(40px, 8.5vw, 56px);
    }

    .perfDetail--thermal .thermalHero__spec + .thermalHero__spec {
        padding-top: clamp(18px, 4.5vw, 26px);
        border-top: 1px solid rgba(17, 17, 17, .08);
    }

    .perfDetail--thermal .thermalHero__spec:first-child {
        padding-right: 0;
        border-right: none;
    }

    
    .perfDetail--thermal .thermalHero__specHeadline {
        font-size: clamp(23px, 4.6vw, 30px);
        line-height: 1.2;
    }
}

.perfDetail--thermal .thermalHero__pager {
    margin-top: 0;
}

.perfDetail--thermal .thermalEm {
    font-weight: 500;
    color: rgba(17, 17, 17, .88);
}

.perfDetail--thermal .thermalMain {
    padding: clamp(56px, 9vw, 104px) 0 clamp(80px, 12vw, 120px);
}

.perfDetail--thermal .thermalMain__inner {
    width: 100%;
    margin: 0 auto;
    padding-inline: clamp(18px, 3vw, 44px);
}

.perfDetail--thermal .thermalSection {
    margin-bottom: clamp(72px, 12vw, 128px);
}

.perfDetail--thermal .thermalSection.fade-reveal {
    opacity: 0;
    transition: opacity .7s ease;
    will-change: opacity;
}

.perfDetail--thermal .thermalSection.fade-reveal.is-visible {
    opacity: 1;
}

.perfDetail--thermal .thermalRevealBand.fade-reveal {
    opacity: 0;
    transition: opacity .7s ease;
    will-change: opacity;
}

.perfDetail--thermal .thermalRevealBand.fade-reveal.is-visible {
    opacity: 1;
}

.perfDetail--thermal .thermalMetricCard.fade-reveal {
    opacity: 0;
    transition: opacity .7s ease;
    will-change: opacity;
}

.perfDetail--thermal .thermalMetricCard.fade-reveal.is-visible {
    opacity: 1;
}

.perfDetail--thermal .thermalFeatureCardWrap.fade-reveal {
    opacity: 0;
    transition: opacity .7s ease;
    will-change: opacity;
}

.perfDetail--thermal .thermalFeatureCardWrap.fade-reveal.is-visible {
    opacity: 1;
}

.perfDetail--thermal .thermalDisclaimer.fade-reveal,
.perfDetail--thermal .thermalBackWrap.fade-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1);
    will-change: opacity, transform;
}

.perfDetail--thermal .thermalDisclaimer.fade-reveal.is-visible,
.perfDetail--thermal .thermalBackWrap.fade-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.perfDetail--thermal .thermalSection:last-of-type {
    margin-bottom: clamp(48px, 8vw, 72px);
}

.perfDetail--thermal .thermalSection__intro {
    margin-bottom: clamp(32px, 5vw, 48px);
    max-width: 51em;
}

.perfDetail--thermal .thermalSection__intro--narrow {
    max-width: 36em;
}

.perfDetail--thermal .thermalIntroIndent {
    padding-left: clamp(10px, 1.8vw, 22px);
}

.perfDetail--thermal .thermalSection__intro--materials {
    max-width: none;
    margin-bottom: clamp(26px, 4vw, 40px);
    display: flex;
    align-items: center;
}

.perfDetail--thermal .thermalSection__intro--materials .thermalSection__label {
    margin: 0;
    padding: 10px 14px 10px 0;
    font-size: 11px;
    letter-spacing: .28em;
    color: rgba(17, 17, 17, .7);
    position: relative;
}

.perfDetail--thermal .thermalSection__intro--materials .thermalSection__label::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(140px, 26vw, 340px);
    height: 1px;
    background: linear-gradient(90deg, rgba(17, 17, 17, .34), rgba(17, 17, 17, .08));
}

.perfDetail--thermal .thermalSection__label {
    margin: 0 0 12px;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--th-muted2);
}

.perfDetail--thermal .thermalSection__title {
    margin: 0 0 clamp(14px, 2vw, 18px);
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 600;
    line-height: 1.28;
    letter-spacing: -0.02em;
    color: #0a0a0a;
}

.perfDetail--thermal .thermalSection__lede {
    margin: 0;
    font-size: clamp(14px, 1.2vw, 15px);
    line-height: 1.95;
    letter-spacing: .02em;
    color: var(--th-muted);
}

.perfDetail--thermal .thermalSection__intro .thermalSection__lede + .thermalSection__lede {
    margin-top: clamp(0.55em, 1.1vw, 0.85em);
}

.perfDetail--thermal .ua-chart-section {
    width: 100%;
    padding: 0;
}

.perfDetail--thermal .ua-chart-card {
    margin: 0;
    padding: 0;
    background: transparent;
    color: #111;
    max-width: 560px;
}

.perfDetail--thermal .ua-chart-header {
    margin-bottom: clamp(22px, 2.4vw, 28px);
}

.perfDetail--thermal .ua-chart-label {
    display: block;
    margin-bottom: 4px;
    font-size: 10px;
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.42);
}

.perfDetail--thermal .ua-chart-header h3 {
    margin: 0;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: rgba(17, 17, 17, 0.82);
}

.perfDetail--thermal .ua-chart-header p {
    display: none;
}

.perfDetail--thermal .ua-chart {
    display: grid;
    gap: 12px;
    position: relative;
    padding-left: 0;
}

.perfDetail--thermal .ua-chart-guide {
    position: absolute;
    right: 8px;
    top: 58%;
    bottom: auto;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: auto 24px;
    align-items: center;
    gap: 12px;
    max-width: min(42%, 190px);
    padding: 7px 9px 7px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.34);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 18px rgba(17, 17, 17, 0.05);
}

.perfDetail--thermal .ua-chart-guide__arrow {
    position: relative;
    width: 24px;
    min-height: 56px;
}

.perfDetail--thermal .ua-chart-guide__text p {
    margin: 0;
    font-size: 9.5px;
    line-height: 1.45;
    letter-spacing: 0.02em;
    color: rgba(17, 17, 17, 0.5);
}

.perfDetail--thermal .ua-chart-guide__text p + p {
    margin-top: 1px;
}

.perfDetail--thermal .ua-chart-guide__arrow::before {
    content: "";
    position: absolute;
    right: 8px;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: rgba(17, 17, 17, 0.45);
}

.perfDetail--thermal .ua-chart-guide__arrow::after {
    content: "";
    position: absolute;
    right: 8px;
    top: 6px;
    width: 10px;
    height: 1px;
    background: rgba(17, 17, 17, 0.45);
    transform-origin: right center;
    transform: rotate(-38deg);
}

.perfDetail--thermal .ua-chart-row {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 12px;
}

.perfDetail--thermal .ua-value {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(17, 17, 17, 0.65);
}

.perfDetail--thermal .ua-bar-wrap {
    position: relative;
    min-height: 32px;
    display: flex;
    align-items: center;
}

.perfDetail--thermal .ua-bar {
    width: var(--bar-width);
    min-width: 78px;
    height: 32px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    background: #ececec;
    color: rgba(17, 17, 17, 0.8);
    border-radius: 999px;
}

.perfDetail--thermal .ua-bar span {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
}

.perfDetail--thermal .ua-bar small {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 7px;
    border-radius: 999px;
    border: 1px solid #d8d8d8;
    background: #ffffff;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #777777;
    white-space: nowrap;
    min-width: 0;
}

.perfDetail--thermal .ua-chart-row.is-current .ua-bar {
    background: #efa6a1;
    color: #ffffff;
}

.perfDetail--thermal .ua-chart-row.is-current .ua-value {
    color: #111;
    font-weight: 600;
}

.perfDetail--thermal .ua-current-line {
    position: absolute;
    left: calc(var(--bar-width, 46%) + 10px);
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    max-width: calc(100% - (var(--bar-width, 46%) + 14px));
}

.perfDetail--thermal .ua-current-line::before {
    content: "";
    width: 14px;
    height: 1px;
    background: #e78781;
}

.perfDetail--thermal .ua-current-line span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #8f4a46;
    white-space: nowrap;
}

.perfDetail--thermal .ua-chart-note {
    display: none;
}

.perfDetail--thermal .thermalMetricCard--ua .ua-chart-note {
    display: block;
    margin: 14px 0 0;
    font-size: 10px;
    line-height: 1.65;
    letter-spacing: .02em;
    color: rgba(17, 17, 17, .45);
}

@media (max-width: 760px) {
    .perfDetail--thermal .thermalMetricCard--ua .ua-chart-section {
        margin-top: 32px;
        padding-top: 26px;
        border-top: 1px solid rgba(17, 17, 17, 0.1);
    }

    .perfDetail--thermal .thermalMetricCard--ua .ua-chart-header {
        margin-bottom: clamp(26px, 4vw, 32px);
    }

    .perfDetail--thermal .ua-chart-guide {
        right: 4px;
        top: 61%;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        gap: 0;
        max-width: min(40%, 132px);
        padding: 6px 6px 6px 7px;
        border-radius: 9px;
    }

    .perfDetail--thermal .ua-chart-guide__text {
        flex: 1 1 auto;
        min-width: 0;
        padding-right: 9px;
    }

    .perfDetail--thermal .ua-chart-guide__text p {
        font-size: 8.2px;
        line-height: 1.24;
        word-break: keep-all;
        white-space: normal;
        letter-spacing: 0;
    }

    .perfDetail--thermal .ua-chart-guide__arrow {
        flex: 0 0 16px;
        width: 16px;
        min-height: 40px;
    }

    .perfDetail--thermal .ua-chart-guide__arrow::before,
    .perfDetail--thermal .ua-chart-guide__arrow::after {
        right: 2px;
    }

    .perfDetail--thermal .ua-chart-guide__arrow::after {
        width: 6px;
    }

    .perfDetail--thermal .ua-current-line {
        left: calc(var(--bar-width, 46%) + 8px);
        right: 2px;
        top: 50%;
        transform: translateY(-50%);
        gap: 4px;
        max-width: calc(100% - (var(--bar-width, 46%) + 12px));
    }

    .perfDetail--thermal .ua-current-line::before {
        width: 8px;
    }

    .perfDetail--thermal .ua-current-line span {
        font-size: 9px;
        letter-spacing: 0.03em;
        white-space: nowrap;
        line-height: 1.2;
    }

    .perfDetail--thermal .ua-bar small {
        font-size: 9px;
        padding: 1px 6px;
        margin-left: 6px;
    }
}

.perfDetail--thermal .thermalMetricCard--ua .ua-chart-section {
    margin: 0;
}

.perfDetail--thermal .thermalMetricCard--ua .ua-chart-card {
    max-width: none;
}

.perfDetail--thermal .thermalDualGrid {
    display: grid;
    gap: clamp(20px, 3vw, 28px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    
    position: relative;
    isolation: isolate;
}

@media (max-width: 640px) {
    .perfDetail--thermal .thermalDualGrid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.perfDetail--thermal .thermalDualGrid > .thermalFeatureCardWrap {
    min-width: 0;
}

.perfDetail--thermal .thermalMain.seismicMobileFadeSplit .thermalSection[aria-label="Materials"] .thermalDualGrid > .thermalFeatureCardWrap {
    max-width: 700px;
}

@media (min-width: 641px) {
    .perfDetail--thermal .thermalMain.seismicMobileFadeSplit .thermalSection[aria-label="Materials"] .thermalDualGrid {
        grid-template-columns: repeat(2, minmax(0, 700px));
        justify-content: start;
    }
}

@media (min-width: 1024px) {
    .perfDetail--thermal .thermalMain.seismicMobileFadeSplit .thermalSection[aria-label="Materials"] .thermalDualGrid > .thermalFeatureCardWrap.is-focus-expanded {
        max-width: none;
    }
}

.perfDetail--thermal .thermalFeatureCardWrap {
    border-radius: var(--th-radius);
    overflow: hidden;
    box-shadow: var(--th-shadow);
    background: #141414;
}

.perfDetail--thermal .thermalFocusBackdrop {
    position: fixed;
    inset: 0;
    background: rgba(6, 8, 12, .56);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .52s cubic-bezier(.2, .85, .25, 1);
    z-index: 980;
}

.perfDetail--thermal .thermalFeatureCardWrap--light {
    background: #fafaf9;
    box-shadow:
        0 1px 0 rgba(17, 17, 17, .06),
        0 18px 44px rgba(17, 17, 17, .07);
}

.perfDetail--thermal .thermalFeatureCardWrap--light .thermalFeatureCard {
    background: #fafaf9;
}

.perfDetail--thermal .thermalFeatureCardWrap--light .thermalFeatureCard__media {
    background: #fff;
    padding: clamp(16px, 3vw, 28px);
}

.perfDetail--thermal .thermalFeatureCardWrap--light .thermalFeatureCard__media::after {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 42%, rgba(250, 250, 249, .92) 78%, #fafaf9 100%);
}

.perfDetail--thermal .thermalFeatureCardWrap--light .thermalFeatureCard__media img {
    object-fit: contain;
    
    object-position: center 40%;
}

.perfDetail--thermal .thermalFeatureCardWrap--light .thermalFeatureCard__tag {
    color: rgba(17, 17, 17, .48);
}

.perfDetail--thermal .thermalFeatureCardWrap--light .thermalFeatureCard__title {
    margin-bottom: 10px;
    color: #0a0a0a;
}

.perfDetail--thermal .thermalFeatureCardWrap--window .thermalFeatureCard__lead {
    gap: 4px;
}

.perfDetail--thermal .thermalFeatureCardWrap--window .thermalFeatureCard__title {
    margin-bottom: 10px;
}

.perfDetail--thermal .thermalFeatureCardWrap--window .thermalFeatureCard__media::after {
    display: none;
}

.perfDetail--thermal .thermalFeatureCardWrap--light .thermalFeatureCard__toggle {
    color: #111;
    border-color: rgba(17, 17, 17, .22);
    background: rgba(255, 255, 255, .9);
}

.perfDetail--thermal .thermalFeatureCardWrap--light .thermalFeatureCard__toggle:hover {
    background: #fff;
    border-color: rgba(17, 17, 17, .38);
}

.perfDetail--thermal .thermalFeatureCardWrap--light .thermalFeatureCard__toggleOpen {
    color: rgba(17, 17, 17, .5);
}

.perfDetail--thermal .thermalFeatureCardWrap--structuralCalc {
    background: #141414;
    box-shadow: var(--th-shadow);
}

.perfDetail--thermal .thermalFeatureCardWrap--structuralCalc .thermalFeatureCard {
    background: #141414;
}

.perfDetail--thermal .thermalFeatureCardWrap--structuralCalc .thermalFeatureCard__media {
    background: #1a1a1a;
    padding: 0;
}

.perfDetail--thermal .thermalFeatureCardWrap--structuralCalc .thermalFeatureCard__media::after {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .14) 0%, rgba(0, 0, 0, .42) 52%, rgba(0, 0, 0, .74) 100%),
        radial-gradient(120% 70% at 50% 100%, rgba(0, 0, 0, .4), transparent 72%);
}

.perfDetail--thermal .thermalFeatureCardWrap--structuralCalc .thermalFeatureCard__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.perfDetail--thermal .thermalFeatureCardWrap--structuralCalc.is-expanded .thermalFeatureCard__media img,
.perfDetail--thermal .thermalFeatureCardWrap--structuralCalc.is-focus-expanded .thermalFeatureCard__media img {
    object-fit: contain;
}

@media (max-width: 768px) {
    .perfDetail--thermal .thermalFeatureCardWrap--structuralCalc.is-expanded .thermalFeatureCard__media img,
    .perfDetail--thermal .thermalFeatureCardWrap--structuralCalc.is-focus-expanded .thermalFeatureCard__media img {
        object-fit: cover;
    }
}

@media (min-width: 769px) {
    .perfDetail--thermal .thermalFeatureCardWrap--structuralCalc.is-expanded .thermalFeatureCard__media,
    .perfDetail--thermal .thermalFeatureCardWrap--structuralCalc.is-focus-expanded .thermalFeatureCard__media {
        background: #fff;
    }
}

.perfDetail--thermal .thermalFeatureCardWrap--structuralCalc .thermalFeatureCard__tag {
    color: rgba(255, 255, 255, .78);
}

.perfDetail--thermal .thermalFeatureCardWrap--structuralCalc .thermalFeatureCard__title {
    color: #fff;
}

.perfDetail--thermal .thermalFeatureCardWrap--structuralCalc .thermalFeatureCard__toggle {
    color: #fff;
    border-color: rgba(255, 255, 255, .45);
    background: rgba(0, 0, 0, .18);
}

.perfDetail--thermal .thermalFeatureCardWrap--structuralCalc .thermalFeatureCard__toggle:hover {
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .58);
}

.perfDetail--thermal .thermalFeatureCardWrap--structuralCalc .thermalFeatureCard__toggleOpen {
    color: rgba(255, 255, 255, .72);
}

.perfDetail--thermal .thermalFeatureCard {
    position: relative;
    min-height: clamp(260px, 30vw, 420px);
    border-radius: 0;
    background: #141414;
    box-shadow: none;
    overflow: hidden;
}

.perfDetail--thermal .thermalFeatureCard__media {
    position: absolute;
    inset: 0;
    background: #222;
}

.perfDetail--thermal .thermalFeatureCard__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .12) 0%, rgba(0, 0, 0, .42) 54%, rgba(0, 0, 0, .72) 100%),
        radial-gradient(120% 70% at 50% 100%, rgba(0, 0, 0, .36), transparent 72%);
    pointer-events: none;
}

.perfDetail--thermal .thermalFeatureCard__media picture {
    display: block;
    width: 100%;
    height: 100%;
}

.perfDetail--thermal .thermalFeatureCard__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.perfDetail--thermal .thermalFeatureCard__media[data-seismic-hardware-media] > .thermalHardwareJointVideo,
.perfDetail--thermal .thermalFeatureCard__media[data-seismic-hardware-media] > .thermalHardwareJointFallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform-origin: center center;
    
    transform: scale(1.28);
}

.perfDetail--thermal .thermalFeatureCard__media[data-seismic-hardware-media] > .thermalHardwareJointFallback {
    display: block;
}

.perfDetail--thermal .thermalFeatureCard__media[data-seismic-hardware-media] > .thermalHardwareJointVideo {
    display: none;
    pointer-events: none;
}

.perfDetail--thermal .thermalFeatureCard__media[data-seismic-hardware-media].is-video-playing > .thermalHardwareJointFallback {
    display: none;
}

.perfDetail--thermal .thermalFeatureCard__media[data-seismic-hardware-media].is-video-playing > .thermalHardwareJointVideo {
    display: block;
}

.perfDetail--thermal .thermalFeatureCard__media[data-seismic-hardware-media]::after {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .08) 50%, rgba(0, 0, 0, .28) 100%),
        radial-gradient(120% 70% at 50% 100%, rgba(0, 0, 0, .1), transparent 72%);
}

.perfDetail--thermal .thermalFeatureCardWrap.is-expanded:has([data-seismic-hardware-media]) .thermalFeatureCard {
    background: linear-gradient(90deg, #e8e6e2 0%, #f7f6f4 14%, #ffffff 32%, #ffffff 68%, #f7f6f4 86%, #e8e6e2 100%);
}

.perfDetail--thermal .thermalFeatureCardWrap.is-expanded:has([data-seismic-hardware-media]) .thermalFeatureCard__media[data-seismic-hardware-media] {
    background: linear-gradient(90deg, #e8e6e2 0%, #f7f6f4 14%, #ffffff 32%, #ffffff 68%, #f7f6f4 86%, #e8e6e2 100%);
}

.perfDetail--thermal .thermalFeatureCardWrap.is-expanded:has([data-seismic-hardware-media]) .thermalFeatureCard__media[data-seismic-hardware-media] > .thermalHardwareJointVideo,
.perfDetail--thermal .thermalFeatureCardWrap.is-expanded:has([data-seismic-hardware-media]) .thermalFeatureCard__media[data-seismic-hardware-media] > .thermalHardwareJointFallback {
    object-fit: contain;
    transform: none;
}

@media (max-width: 768px) {
    .perfDetail--thermal .thermalFeatureCardWrap.is-expanded:has([data-seismic-hardware-media]) .thermalFeatureCard__media[data-seismic-hardware-media] > .thermalHardwareJointVideo,
    .perfDetail--thermal .thermalFeatureCardWrap.is-expanded:has([data-seismic-hardware-media]) .thermalFeatureCard__media[data-seismic-hardware-media] > .thermalHardwareJointFallback,
    .perfDetail--thermal .thermalFeatureCardWrap.is-focus-expanded:has([data-seismic-hardware-media]) .thermalFeatureCard__media[data-seismic-hardware-media] > .thermalHardwareJointVideo,
    .perfDetail--thermal .thermalFeatureCardWrap.is-focus-expanded:has([data-seismic-hardware-media]) .thermalFeatureCard__media[data-seismic-hardware-media] > .thermalHardwareJointFallback {
        object-fit: cover;
        transform: scale(1.28);
    }

    .perfDetail--thermal .thermalFeatureCardWrap.is-expanded:has([data-seismic-hardware-media]) .thermalFeatureCard,
    .perfDetail--thermal .thermalFeatureCardWrap.is-expanded:has([data-seismic-hardware-media]) .thermalFeatureCard__media[data-seismic-hardware-media],
    .perfDetail--thermal .thermalFeatureCardWrap.is-focus-expanded:has([data-seismic-hardware-media]) .thermalFeatureCard,
    .perfDetail--thermal .thermalFeatureCardWrap.is-focus-expanded:has([data-seismic-hardware-media]) .thermalFeatureCard__media[data-seismic-hardware-media] {
        background: #1a1a1a;
    }
}

.perfDetail--thermal .thermalFeatureCardWrap.is-expanded:has([data-seismic-hardware-media]) .thermalFeatureCard__media[data-seismic-hardware-media]::after {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .05) 52%, rgba(0, 0, 0, .2) 100%),
        radial-gradient(90% 65% at 50% 100%, rgba(0, 0, 0, .08), transparent 70%);
}

.perfDetail--thermal .thermalNeomaProse.seismicHardwareExpandProse .thermalNeomaProse__p + .thermalNeomaProse__p {
    margin-top: clamp(8px, 1vw, 12px);
}

.perfDetail--thermal .seismicHardwareHeroRow {
    display: block;
    width: 100%;
    margin: clamp(24px, 3.6vw, 48px) 0 clamp(22px, 2.8vw, 38px);
    box-sizing: border-box;
}

.perfDetail--thermal .seismicHardwareHeroRow .thermalFeatureExpand__figure {
    margin: 0;
}

.perfDetail--thermal .seismicHardwareHeroRow__figure {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: var(--th-radius-sm);
    overflow: hidden;
}

.perfDetail--thermal .seismicHardwareHeroRow__figure img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
}

.perfDetail--thermal .seismicHardwareHeroMaker {
    position: absolute;
    right: clamp(14px, 2.4vw, 26px);
    bottom: clamp(14px, 2.4vw, 26px);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: clamp(6px, 1vw, 12px);
    margin: 0;
    padding: 0;
    text-align: right;
    pointer-events: none;
}

.perfDetail--thermal .seismicHardwareHeroMakerLine {
    margin: 0;
    font-family: "Noto Sans JP", system-ui, -apple-system, "Yu Gothic", sans-serif;
    font-size: clamp(12px, 1.02vw, 14px);
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: .03em;
    color: #0a0a0a;
    white-space: nowrap;
}

.perfDetail--thermal .seismicHardwareHeroProductBrand {
    margin: 0;
    font-family: "Noto Sans JP", system-ui, -apple-system, "Yu Gothic", sans-serif;
    font-size: clamp(17px, 2.05vw, 22px);
    font-weight: 700;
    line-height: 1.24;
    letter-spacing: .08em;
    color: #0a0a0a;
}

@media (max-width: 767px) {
    .perfDetail--thermal .seismicHardwareHeroMaker {
        right: clamp(10px, 3.2vw, 16px);
        bottom: clamp(10px, 3.2vw, 16px);
        gap: clamp(3px, 1vw, 6px);
    }

    .perfDetail--thermal .seismicHardwareHeroProductBrand {
        font-size: clamp(15px, 4.2vw, 14px);
        letter-spacing: .06em;
    }

    .perfDetail--thermal .seismicHardwareHeroMakerLine {
        font-size: clamp(9px, 3.1vw, 7.5px);
    }
}

.perfDetail--thermal .seismicStructuralFigure {
    display: block;
    align-self: center;
    margin: clamp(20px, 2.8vw, 34px) auto 0;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 600px;
    padding: 0;
    background: transparent;
}

.perfDetail--thermal .seismicStructuralFigure img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .perfDetail--thermal .seismicStructuralFigure {
        margin-top: 18px;
    }
}

.perfDetail--thermal .seismicHssPointGrid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    width: 100%;
    margin: 0;
    padding: clamp(22px, 2.8vw, 34px) 0 0;
    border-top: 1px solid var(--th-line-soft);
    box-sizing: border-box;
}

.perfDetail--thermal .seismicHssPointSection {
    margin: 0;
    padding: 0;
    min-width: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.perfDetail--thermal .seismicHssPointSection__title {
    margin: 0 0 clamp(18px, 2.2vw, 26px);
    font-family: "Noto Sans JP", system-ui, -apple-system, "Yu Gothic", sans-serif;
    font-size: clamp(16px, 1.5vw, 19px);
    font-weight: 600;
    line-height: 1.42;
    letter-spacing: .04em;
    color: #0a0a0a;
}

.perfDetail--thermal .seismicHssPointSection__body .thermalNeomaProse__p {
    max-width: none;
    margin: 0;
    font-size: 13px;
    line-height: 1.85;
}

.perfDetail--thermal .seismicHssPointSection__body .thermalNeomaProse__p + .thermalNeomaProse__p {
    margin-top: clamp(8px, 1vw, 12px);
}

.perfDetail--thermal .seismicHssPointSection__body .thermalNeomaProse__hl {
    font-weight: 600;
    letter-spacing: .024em;
    color: rgba(17, 17, 17, .9);
}

.perfDetail--thermal .seismicHssPointSection__header {
    margin: 0 0 clamp(22px, 3.2vw, 40px);
    padding: 0;
    max-width: 100%;
}

.perfDetail--thermal .seismicHssPointSection__eyebrow {
    margin: 14px 0 clamp(4px, 0.85vw, 6px);
    font-family: "Inter", system-ui, sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, .42);
}

.perfDetail--thermal .seismicHssPointSection--topicBlock .seismicHssPointSection__title {
    margin: 0;
    padding: 0;
    max-width: 100%;
    line-height: 1.34;
}

.perfDetail--thermal .seismicHssPointSection--topicBlock .seismicHssPointSection__header {
    margin-bottom: clamp(16px, 2.2vw, 26px);
    text-align: center;
}

.perfDetail--thermal .seismicHssTopicList {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    row-gap: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.perfDetail--thermal .seismicHssTopic {
    margin: 0;
    padding: clamp(28px, 4vw, 48px) 0 clamp(30px, 4.25vw, 50px);
    border: none;
    border-radius: 0;
    background: transparent;
    box-sizing: border-box;
    min-width: 0;
}

.perfDetail--thermal .seismicHssTopic:not(:last-child) {
    border-bottom: 1px solid color-mix(in srgb, var(--th-line-soft) 94%, transparent);
}

.perfDetail--thermal .seismicHssTopic__heading {
    display: block;
    margin: 0 0 clamp(22px, 3vw, 34px);
    padding: 0;
    border-bottom: none;
    font-family: "Noto Sans JP", system-ui, -apple-system, "Yu Gothic", sans-serif;
    font-weight: unset;
    line-height: 1.36;
    text-align: left;
}

.perfDetail--thermal .seismicHssTopic__titleText {
    display: block;
    max-width: 100%;
    text-align: left;
    font-size: clamp(20.5px, 2.12vw, 28px);
    font-weight: 700;
    line-height: 1.38;
    letter-spacing: .012em;
    color: rgba(6, 6, 6, .98);
}

.perfDetail--thermal .seismicHssTopic__titleEm {
    font-weight: inherit;
}

.perfDetail--thermal .seismicHssTopic__heading .seismicHssTopic__num {
    font-size: clamp(20.5px, 2.12vw, 28px);
    letter-spacing: .012em;
    color: rgba(6, 6, 6, .98);
}

.perfDetail--thermal .seismicHssTopic__body {
    padding-top: 0;
    padding-right: 0;
    max-width: none;
    width: 100%;
}

.perfDetail--thermal .seismicHssTopic__body .thermalNeomaProse__p {
    max-width: min(54em, 100%);
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.72;
    letter-spacing: .025em;
    color: var(--th-muted);
}

.perfDetail--thermal .seismicHssTopic__body .thermalNeomaProse__p + .thermalNeomaProse__p {
    margin-top: clamp(12px, 1.55vw, 18px);
}

.perfDetail--thermal .seismicHssTopic__body .thermalNeomaProse__hl {
    font-weight: 600;
    letter-spacing: .02em;
    color: rgba(17, 17, 17, .84);
}

.perfDetail--thermal .seismicHssTopic__num {
    font-weight: 700;
    font-size: clamp(12.25px, 1.08vw, 13.75px);
    letter-spacing: .026em;
    font-variant-numeric: tabular-nums;
    color: rgba(10, 10, 10, .94);
    white-space: nowrap;
}

.perfDetail--thermal .seismicHssTopic__body > .thermalNeomaProse__p:last-of-type {
    margin-bottom: 0;
}

.perfDetail--thermal .seismicHssTopic__figure {
    position: relative;
    width: 100%;
    max-width: min(100%, 500px);
    margin: clamp(20px, 2.8vw, 30px) 0 0;
    padding: 0;
    border: 1px solid color-mix(in srgb, var(--th-line-soft) 88%, transparent);
    border-radius: var(--th-radius-sm);
    overflow: hidden;
    background: color-mix(in srgb, var(--th-line-soft) 10%, transparent);
}

.perfDetail--thermal .seismicHssTopic__figure img {
    display: block;
    width: 100%;
    height: auto;
}

.perfDetail--thermal .seismicHssTopic__figureCaption {
    position: absolute;
    left: clamp(11px, 1.4vw, 15px);
    bottom: clamp(11px, 1.4vw, 15px);
    z-index: 2;
    margin: 0;
    padding: 0;
    font-family: "Noto Sans JP", system-ui, -apple-system, "Yu Gothic", sans-serif;
    font-size: clamp(10.5px, 0.9vw, 11.5px);
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .86);
    pointer-events: none;
}

.perfDetail--thermal .seismicHssTopic__figure--safety {
    overflow: visible;
}

.perfDetail--thermal .seismicHssTopic__figureOverlay {
    position: absolute;
    left: clamp(12px, 1.6vw, 18px);
    right: clamp(12px, 1.6vw, 18px);
    top: clamp(12px, 1.6vw, 18px);
    bottom: auto;
    z-index: 2;
    margin: 0;
    text-align: center;
    pointer-events: none;
}

.perfDetail--thermal .seismicHssTopic__figureOverlayTitle {
    margin: 0;
    font-family: "Noto Sans JP", system-ui, -apple-system, "Yu Gothic", sans-serif;
    font-size: clamp(13px, 1.15vw, 15px);
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: .02em;
    color: rgba(17, 17, 17, .9);
    text-align: center;
}

.perfDetail--thermal .seismicHssTopic__figureOverlayText {
    margin: 6px 0 0;
    font-family: "Noto Sans JP", system-ui, -apple-system, "Yu Gothic", sans-serif;
    font-size: clamp(11px, 0.95vw, 12.5px);
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: .02em;
    color: rgba(17, 17, 17, .72);
}

.perfDetail--thermal .seismicHssTopic__body--mediaSplit {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2.2vw, 22px);
}

.perfDetail--thermal .seismicHssTopic--mediaSplit,
.perfDetail--thermal .seismicHssTopic--mediaSplitReverse {
    padding: clamp(22px, 3.1vw, 34px) 0 clamp(24px, 3.4vw, 38px);
}

.perfDetail--thermal .seismicHssTopic--mediaSplit .seismicHssTopic__figure {
    margin: 0;
}

.perfDetail--thermal .seismicHssTopic--mediaSplitReverse .seismicHssTopic__figure {
    margin: 0;
}

.perfDetail--thermal .seismicHssTopic--mediaSplit .seismicHssTopic__figure:has(.seismicHssTopic__figureCaption)::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    z-index: 1;
    height: 42%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .34) 100%);
    pointer-events: none;
}

.perfDetail--thermal .seismicHssTopic__body--mediaSplit .seismicHssTopic__copy,
.perfDetail--thermal .seismicHssTopic__body--mediaSplitReverse .seismicHssTopic__copy {
    min-width: 0;
}

.perfDetail--thermal .seismicHssTopic--mediaSplit .seismicHssTopic__eyebrow,
.perfDetail--thermal .seismicHssTopic--mediaSplitReverse .seismicHssTopic__eyebrow {
    margin: 15px 0 clamp(3px, -0.9vw, 6px);
    font-family: "Inter", system-ui, sans-serif;
    font-size: clamp(10px, 0.82vw, 11px);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, .38);
}

.perfDetail--thermal .seismicHssTopic--mediaSplit .seismicHssTopic__copy .seismicHssTopic__heading,
.perfDetail--thermal .seismicHssTopic--mediaSplitReverse .seismicHssTopic__copy .seismicHssTopic__heading {
    margin: 0 0 clamp(18px, 2.2vw, 24px);
}

.perfDetail--thermal .seismicHssTopic--mediaSplitReverse:has(.seismicHssTopic__figure--safety) .seismicHssTopic__copy .seismicHssTopic__heading {
    margin-bottom: clamp(32px, 3.6vw, 44px);
}

.perfDetail--thermal .seismicHssTopic--mediaSplit .seismicHssTopic__copy .thermalNeomaProse__p,
.perfDetail--thermal .seismicHssTopic--mediaSplitReverse .seismicHssTopic__copy .thermalNeomaProse__p {
    max-width: 420px;
}

.perfDetail--thermal .seismicHssTopic--mediaSplit .seismicHssTopic__copy .thermalNeomaProse__p + .thermalNeomaProse__p,
.perfDetail--thermal .seismicHssTopic--mediaSplitReverse .seismicHssTopic__copy .thermalNeomaProse__p + .thermalNeomaProse__p {
    margin-top: clamp(10px, 1.25vw, 14px);
}

.perfDetail--thermal .seismicHssTopic--mediaSplitReverse .seismicHssTopic__copy .thermalNeomaProse__p .seismicHssTopic__num {
    font-weight: 700;
    color: rgba(10, 10, 10, .94);
}

@media (min-width: 768px) {
    .perfDetail--thermal .seismicHssTopic__body--mediaSplit {
        display: grid;
        grid-template-columns: min(100%, 500px) minmax(0, 1fr);
        align-items: start;
        column-gap: clamp(18px, 2.1vw, 28px);
        row-gap: 0;
    }

    .perfDetail--thermal .seismicHssTopic__body--mediaSplit .seismicHssTopic__figure {
        grid-column: 1;
        grid-row: 1;
    }

    .perfDetail--thermal .seismicHssTopic__body--mediaSplit .seismicHssTopic__copy {
        grid-column: 2;
        grid-row: 1;
        align-self: start;
    }

    .perfDetail--thermal .seismicHssTopic__body--mediaSplit .seismicHssTopic__figure:has(.seismicHssTopic__figureCaption) img {
        transform: scale(1.14);
        transform-origin: center center;
    }

    .perfDetail--thermal .seismicHssTopic__body--mediaSplitReverse {
        display: grid;
        grid-template-columns: minmax(0, 1fr) min(100%, 500px);
        align-items: start;
        column-gap: clamp(18px, 2.1vw, 28px);
        row-gap: 0;
    }

    .perfDetail--thermal .seismicHssTopic__body--mediaSplitReverse .seismicHssTopic__copy {
        grid-column: 1;
        grid-row: 1;
        align-self: start;
        order: unset;
        min-width: 0;
    }

    .perfDetail--thermal .seismicHssTopic__body--mediaSplitReverse .seismicHssTopic__figure {
        grid-column: 2;
        grid-row: 1;
        order: unset;
        margin: 0;
    }

    .perfDetail--thermal .seismicHssTopic__body--mediaSplitReverse .seismicHssTopic__figure--chart img {
        transform: none;
    }

    .perfDetail--thermal .seismicHssTopic--mediaSplitReverse:has(.seismicHssTopic__figure--safety) .seismicHssTopic__body--mediaSplitReverse {
        grid-template-columns: minmax(0, 1.35fr) min(100%, 400px);
        column-gap: clamp(22px, 2.6vw, 36px);
    }

    .perfDetail--thermal .seismicHssTopic--mediaSplitReverse:has(.seismicHssTopic__figure--safety) .seismicHssTopic__copy .thermalNeomaProse__p {
        max-width: min(540px, 100%);
    }

    .perfDetail--thermal .seismicHssTopic--mediaSplitReverse:has(.seismicHssTopic__figure--safety) .seismicHssTopic__copy .seismicHssTopic__heading {
        margin-bottom: clamp(34px, 3.8vw, 48px);
    }

    .perfDetail--thermal .seismicHssTopic__body--mediaSplitReverse .seismicHssTopic__figure--safety {
        max-width: min(100%, 400px);
        border: none;
        background: transparent;
        overflow: visible;
    }

    .perfDetail--thermal .seismicHssTopic__body--mediaSplitReverse .seismicHssTopic__figure--safety img {
        width: 100%;
        height: auto;
        object-fit: contain;
        transform: none;
        margin-top: clamp(16px, 2vw, 26px);
    }
}

@media (max-width: 767px) {
    .perfDetail--thermal .seismicHssTopic__body--mediaSplitReverse {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 2.2vw, 22px);
    }

    .perfDetail--thermal .seismicHssTopic__body--mediaSplitReverse .seismicHssTopic__copy {
        order: 2;
        min-width: 0;
    }

    .perfDetail--thermal .seismicHssTopic__body--mediaSplitReverse .seismicHssTopic__figure {
        order: 1;
        margin: 0;
    }

    .perfDetail--thermal .seismicHssTopic__body--mediaSplitReverse .seismicHssTopic__figure--safety {
        max-width: min(100%, 400px);
        border: none;
        background: transparent;
        overflow: visible;
        order: 2;
        margin-top: clamp(14px, 2.2vw, 20px);
    }

    .perfDetail--thermal .seismicHssTopic--mediaSplitReverse:has(.seismicHssTopic__figure--safety) .seismicHssTopic__copy {
        order: 1;
    }

    .perfDetail--thermal .seismicHssTopic--mediaSplitReverse:has(.seismicHssTopic__figure--safety) .seismicHssTopic__copy .seismicHssTopic__heading {
        margin-bottom: clamp(16px, 2.4vw, 22px);
    }

    .perfDetail--thermal .seismicHssTopic__body--mediaSplitReverse .seismicHssTopic__figure--safety img {
        width: 100%;
        height: auto;
        object-fit: contain;
        margin-top: 2px;
    }

    .perfDetail--thermal .seismicHssTopic--mediaSplitReverse:has(.seismicHssTopic__figure--safety) {
        padding-bottom: 0;
    }
}

.perfDetail--thermal .seismicHssTopicCompare {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    width: 100%;
    max-width: 100%;
    gap: clamp(10px, 1.85vw, 18px);
    margin-top: clamp(18px, 2.65vw, 30px);
    padding: clamp(15px, 2.35vw, 22px) clamp(14px, 2.1vw, 20px);
    box-sizing: border-box;
    border: 1px solid color-mix(in srgb, var(--th-line-soft) 88%, transparent);
    border-radius: var(--th-radius-sm);
    background: color-mix(in srgb, var(--th-line-soft) 10%, transparent);
}

@media (min-width: 768px) {
    .perfDetail--thermal .seismicHssTopicCompare {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

.perfDetail--thermal .seismicHssTopicCompare__title {
    grid-column: 1 / -1;
    margin: 0 0 clamp(8px, 1.35vw, 12px);
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: clamp(12px, 1.1vw, 13.5px);
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: .03em;
    color: rgba(17, 17, 17, .68);
    text-align: center;
}

.perfDetail--thermal .seismicHssTopicCompare__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    min-width: 0;
}

.perfDetail--thermal .seismicHssTopicCompare__item--hss .seismicHssTopicCompare__figure {
    color: rgba(7, 7, 7, .98);
    font-weight: 700;
}

.perfDetail--thermal .seismicHssTopicCompare__label {
    display: block;
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: clamp(11px, .95vw, 12.5px);
    font-weight: 500;
    line-height: 1.42;
    letter-spacing: .03em;
    color: rgba(17, 17, 17, .6);
}

.perfDetail--thermal .seismicHssTopicCompare__value {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 1px;
    line-height: 1;
}

.perfDetail--thermal .seismicHssTopicCompare__figure {
    font-family: "Inter", system-ui, sans-serif;
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    letter-spacing: .02em;
    color: rgba(17, 17, 17, .66);
}

.perfDetail--thermal .seismicHssTopicCompare__unit {
    font-family: "Inter", system-ui, sans-serif;
    font-size: clamp(12px, 1.02vw, 13px);
    font-weight: 600;
    letter-spacing: .04em;
    color: rgba(17, 17, 17, .5);
}

.perfDetail--thermal .seismicHssTopicCompare__flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.perfDetail--thermal .seismicHssTopicCompare__arrow {
    font-family: "Inter", system-ui, sans-serif;
    font-size: clamp(17px, 1.6vw, 20px);
    font-weight: 600;
    letter-spacing: 0;
    color: rgba(17, 17, 17, .4);
}

@media (max-width: 768px) {
    .perfDetail--thermal .seismicHssTopicCompare {
        gap: 10px;
        padding: 16px 14px;
    }

    .perfDetail--thermal .seismicHssTopicCompare__title {
        margin-bottom: 8px;
        font-size: 12px;
        line-height: 1.45;
    }

    .perfDetail--thermal .seismicHssTopicCompare__label {
        font-size: 11px;
    }

    .perfDetail--thermal .seismicHssTopicCompare__figure {
        font-size: clamp(20px, 6vw, 24px);
    }

    .perfDetail--thermal .seismicHssTopicCompare__unit {
        font-size: 12px;
    }

    .perfDetail--thermal .seismicHssTopicCompare__arrow {
        font-size: 17px;
    }
}

.perfDetail--thermal .thermalFeatureCard__content {
    position: relative;
    z-index: 1;
    min-height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 12px;
    padding: clamp(24px, 3.2vw, 34px);
}

.perfDetail--thermal .thermalFeatureCard__lead {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.perfDetail--thermal .thermalFeatureCardWrap--light .thermalFeatureCard__lead {
    gap: 4px;
}

.perfDetail--thermal .thermalFeatureCard__tag {
    margin: 0;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .68);
}

.perfDetail--thermal .thermalFeatureCard__title {
    margin: 0;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #fff;
}

.perfDetail--thermal .thermalFeatureCard__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-height: 44px;
    padding: 0 18px 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .45);
    margin: 0;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    color: #fff;
    background: rgba(0, 0, 0, .22);
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .25s ease;
}

.perfDetail--thermal .thermalFeatureCard__toggle:hover {
    background-color: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .78);
    transform: translateY(-1px);
}

.perfDetail--thermal .thermalFeatureCard__togglePilot {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.perfDetail--thermal .thermalFeatureCard__togglePulse {
    position: relative;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
}

.perfDetail--thermal .thermalFeatureCard__toggleRipple {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(56, 189, 248, .55);
    box-shadow:
        0 0 10px rgba(56, 189, 248, .45),
        0 0 22px rgba(59, 130, 246, .25);
    animation: thermalToggleRipple 2.4s cubic-bezier(.22, 1, .36, 1) infinite;
    pointer-events: none;
}

.perfDetail--thermal .thermalFeatureCard__toggleRipple:nth-child(2) {
    animation-delay: 1.2s;
}

.perfDetail--thermal .thermalFeatureCard__toggleDot {
    position: relative;
    z-index: 2;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(145deg, #7dd3fc 0%, #38bdf8 45%, #0ea5e9 100%);
    box-shadow:
        0 0 10px rgba(56, 189, 248, .95),
        0 0 22px rgba(59, 130, 246, .4);
    animation: thermalToggleDotBlink 1.75s ease-in-out infinite;
}

.perfDetail--thermal .thermalFeatureCard__toggleOpen {
    font-family: "Inter", system-ui, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .82);
}

.perfDetail--thermal .thermalFeatureCardWrap.is-expanded .thermalFeatureCard__toggleRipple {
    animation-play-state: paused;
    opacity: 0;
    transition: opacity .35s ease;
}

.perfDetail--thermal .thermalFeatureCardWrap.is-expanded .thermalFeatureCard__toggleDot {
    animation-play-state: paused;
    opacity: .55;
    box-shadow: 0 0 8px rgba(56, 189, 248, .35);
}

@media (prefers-reduced-motion: reduce) {
    .perfDetail--thermal .thermalFeatureCard__toggleRipple,
    .perfDetail--thermal .thermalFeatureCard__toggleDot {
        animation: none !important;
    }

    .perfDetail--thermal .thermalFeatureCard__toggleRipple {
        display: none;
    }

    .perfDetail--thermal .thermalFeatureCard__toggleDot {
        opacity: 1;
    }
}

@keyframes thermalToggleRipple {
    0% {
        transform: scale(.45);
        opacity: .95;
    }

    100% {
        transform: scale(2.85);
        opacity: 0;
    }
}

@keyframes thermalToggleDotBlink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .28;
        transform: scale(.88);
    }
}

.perfDetail--thermal .thermalFeatureExpand {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .4s ease;
}

.perfDetail--thermal .thermalFeatureCardWrap.is-expanded .thermalFeatureExpand {
    grid-template-rows: 1fr;
}

.perfDetail--thermal .thermalFeatureExpand__inner {
    overflow: hidden;
    min-height: 0;
    padding: 0 clamp(20px, 3vw, 28px);
    background: var(--th-surface);
    border-top: 1px solid var(--th-line-soft);
}

.perfDetail--thermal .thermalFeatureExpand__closeSecondary {
    display: none;
}

.perfDetail--thermal .thermalFeatureExpand__inner > p {
    margin: 0 0 1em;
    font-size: 14px;
    line-height: 1.92;
    letter-spacing: .02em;
    color: var(--th-muted);
}

.perfDetail--thermal .thermalFeatureExpand__inner > p:last-child {
    margin-bottom: 0;
}

.perfDetail--thermal .thermalFeatureExpand__inner--neoma .thermalNeomaProse {
    max-width: 38em;
    margin: 0 0 clamp(20px, 2.5vw, 24px);
}

.perfDetail--thermal .thermalNeomaProse__lede {
    margin: 0 0 clamp(14px, 1.6vw, 18px);
    max-width: 100%;
    font-family: "Noto Sans JP", system-ui, -apple-system, "Yu Gothic", sans-serif;
    font-size: clamp(16px, 1.7vw, 20px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .01em;
    color: #0a0a0a;
}

.perfDetail--thermal .thermalNeomaProse__ledeSub {
    display: inline-block;
    width: 100%;
    margin-top: 0.06em;
    font-family: "Noto Sans JP", system-ui, -apple-system, "Yu Gothic", sans-serif;
    font-size: clamp(18px, 1.9vw, 24px);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #0a0a0a;
}

.perfDetail--thermal .thermalFeatureExpand__inner--neoma .thermalNeomaProse__lede,
.perfDetail--thermal .thermalFeatureExpand__inner--neoma .thermalNeomaProse__ledeSub {
    font-size: clamp(18px, 1.9vw, 24px);
    line-height: 1.3;
    font-weight: 700;
}

.perfDetail--thermal .thermalNeomaProse__ledeSubNote {
    font-size: 0.86em;
    font-weight: 500;
    letter-spacing: .03em;
    color: rgba(17, 17, 17, .72);
}

.perfDetail--thermal .thermalNeomaProse__brand.thermalEm {
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: .06em;
}

.perfDetail--thermal .thermalNeomaProse__p {
    margin: 0;
    max-width: 40em;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.72;
    letter-spacing: .025em;
    color: var(--th-muted);
}

.perfDetail--thermal .thermalNeomaProse__p + .thermalNeomaProse__p {
    margin-top: 6px;
}

.perfDetail--thermal .thermalNeomaProse__p:last-of-type {
    margin-bottom: 0;
}

.perfDetail--thermal .thermalNeomaProse__hl {
    font-weight: 600;
    color: rgba(17, 17, 17, .82);
    letter-spacing: .02em;
}

.perfDetail--thermal .thermalNeomaRationale {
    max-width: 40em;
    background: var(--th-surface);
}

.perfDetail--thermal .thermalNeomaRationale--whyAdopt {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    
    margin: clamp(18px, 2.2vw, 28px) 0 clamp(30px, 3.5vw, 44px);
    padding: clamp(20px, 2.4vw, 32px) 0 0;
    background: transparent;
    border: none;
    border-top: 1px solid rgba(17, 17, 17, .12);
    border-radius: 0;
}

.perfDetail--thermal .thermalNeomaRationale--whyAdopt .thermalNeomaProse__lede {
    margin: 0 0 clamp(22px, 2.5vw, 32px);
}

.perfDetail--thermal .thermalNeomaRationale__body p {
    margin: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: .03em;
    color: rgba(17, 17, 17, .55);
}

.perfDetail--thermal .thermalNeomaRationale__body p + p {
    margin-top: 0.55em;
}

@media (min-width: 1024px) {
    .perfDetail--thermal .thermalNeomaRationale--whyAdopt .thermalNeomaRationale__body p {
        max-width: 52em;
    }

    .perfDetail--thermal .insulation-chart-block {
        margin-top: 72px;
    }

    .perfDetail--thermal .thermalNeomaRationale__body p {
        font-size: 13.5px;
    }

    .perfDetail--thermal .thermalFeatureExpand__inner--neoma .thermalNeomaProse {
        max-width: 56em;
    }

    .perfDetail--thermal .thermalNeomaProse__lede {
        font-size: clamp(20px, 1.95vw, 26px);
    }

    .perfDetail--thermal .thermalNeomaProse__ledeSub {
        font-size: clamp(24px, 2.2vw, 30px);
    }

    .perfDetail--thermal .thermalFeatureExpand__inner--neoma .thermalNeomaProse__lede,
    .perfDetail--thermal .thermalFeatureExpand__inner--neoma .thermalNeomaProse__ledeSub {
        font-size: clamp(24px, 2.2vw, 30px);
    }

    .perfDetail--thermal .thermalFeatureExpand__inner--neoma .thermalNeomaProse__lede + .thermalNeomaProse__p {
        margin-top: 44px;
    }

    .perfDetail--thermal .thermalNeomaProse__p {
        max-width: none;
    }

    .perfDetail--thermal .thermalNeomaProse__ledeSubNote {
        font-size: 0.66em;
    }

}

.perfDetail--thermal .thermalFeatureExpand__inner--neoma .seismicHardwareExpandProse .thermalNeomaProse__lede,
.perfDetail--thermal .thermalFeatureExpand__inner--neoma .seismicHardwareExpandProse .thermalNeomaProse__ledeSub,
.perfDetail--thermal .thermalFeatureExpand__inner--neoma .seismicHssPointSection--topicBlock .seismicHssPointSection__title {
    font-family: "Noto Sans JP", system-ui, -apple-system, "Yu Gothic", sans-serif;
    font-size: clamp(16px, 4.1vw, 20px);
    line-height: 1.44;
    font-weight: 700;
    letter-spacing: .012em;
    color: #0a0a0a;
}

.perfDetail--thermal .thermalFeatureExpand__inner--neoma .seismicHardwareExpandProse .thermalNeomaProse__lede {
    margin-bottom: clamp(18px, 2.8vw, 30px);
}

.perfDetail--thermal .thermalFeatureExpand__inner--neoma .seismicHardwareExpandProse .thermalNeomaProse__ledeSub {
    display: inline-block;
    width: 100%;
    margin-top: 0.08em;
}

.perfDetail--thermal .thermalFeatureExpand__inner--neoma .seismicHardwareExpandProse .thermalNeomaProse__lede + .thermalNeomaProse__p {
    margin-top: 0;
}

@media (max-width: 767px) {
    .perfDetail--thermal .thermalFeatureExpand__inner--neoma .seismicHardwareExpandProse .thermalNeomaProse__lede,
    .perfDetail--thermal .thermalFeatureExpand__inner--neoma .seismicHardwareExpandProse .thermalNeomaProse__ledeSub,
    .perfDetail--thermal .thermalFeatureExpand__inner--neoma .seismicHssPointSection--topicBlock .seismicHssPointSection__title {
        font-size: clamp(19px, 6.2vw + 4px, 26px);
        line-height: 1.41;
        letter-spacing: .01em;
    }

    .perfDetail--thermal .seismicHssPointSection--topicBlock .seismicHssPointSection__eyebrow {
        font-size: clamp(11px, 2.9vw + 3px, 12.5px);
        letter-spacing: .2em;
    }

    .perfDetail--thermal .thermalFeatureExpand__inner--neoma .seismicHardwareExpandProse .thermalNeomaProse__lede {
        margin-bottom: clamp(30px, 7.2vw, 44px);
    }
}

@media (min-width: 768px) {
    .perfDetail--thermal .thermalFeatureExpand__inner--neoma .seismicHardwareExpandProse .thermalNeomaProse__lede,
    .perfDetail--thermal .thermalFeatureExpand__inner--neoma .seismicHardwareExpandProse .thermalNeomaProse__ledeSub,
    .perfDetail--thermal .thermalFeatureExpand__inner--neoma .seismicHssPointSection--topicBlock .seismicHssPointSection__title {
        font-size: clamp(18px, 2.35vw, 26px);
        line-height: 1.42;
    }
}

@media (min-width: 1024px) {
    .perfDetail--thermal .thermalFeatureExpand__inner--neoma .seismicHardwareExpandProse .thermalNeomaProse__lede,
    .perfDetail--thermal .thermalFeatureExpand__inner--neoma .seismicHardwareExpandProse .thermalNeomaProse__ledeSub,
    .perfDetail--thermal .thermalFeatureExpand__inner--neoma .seismicHssPointSection--topicBlock .seismicHssPointSection__title {
        font-size: clamp(23px, 2.72vw + 2px, 34px);
        line-height: 1.38;
        letter-spacing: .01em;
    }

    .perfDetail--thermal .thermalFeatureExpand__inner--neoma .seismicHardwareExpandProse .thermalNeomaProse__lede + .thermalNeomaProse__p {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .perfDetail--thermal .thermalFeatureExpand__inner--neoma .thermalNeomaProse__lede + .thermalNeomaProse__p {
        margin-top: 32px;
    }

    .perfDetail--thermal .thermalFeatureExpand__inner--neoma .seismicHardwareExpandProse .thermalNeomaProse__lede + .thermalNeomaProse__p {
        margin-top: 0;
    }
}

.perfDetail--thermal .thermalFeatureExpand__figure {
    margin: clamp(16px, 2.5vw, 22px) 0 0;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(17, 17, 17, .04);
}

.perfDetail--thermal .thermalFeatureExpand__figure img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.perfDetail--thermal .thermalFeatureCardWrap--light .thermalFeatureExpand__figure {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: clamp(12px, 2vw, 18px);
}

.perfDetail--thermal .thermalFeatureCardWrap--light .thermalFeatureExpand__figure img {
    width: min(50%, 550px);
    max-width: 100%;
}

.perfDetail--thermal .thermalFeatureCardWrap--airInnerVent .thermalFeatureExpand__figure {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: clamp(12px, 2vw, 18px);
}

.perfDetail--thermal .thermalFeatureCardWrap--airInnerVent .thermalFeatureExpand__figure img {
    width: min(50%, 550px);
    max-width: 100%;
}

.perfDetail--thermal .thermalFeatureCardWrap--structuralCalc .thermalFeatureExpand__figure {
    display: block;
    margin: clamp(16px, 18.5vw, 75px) auto 0;
    padding: 0;
    width: 100%;
    max-width: 600px;
    background: transparent;
    border-radius: 0;
    overflow: visible;
}

.perfDetail--thermal .thermalFeatureCardWrap--structuralCalc .thermalFeatureExpand__figure img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
    border-radius: 0;
}

@media (max-width: 768px) {
    .perfDetail--thermal .thermalFeatureCardWrap--structuralCalc .thermalFeatureExpand__figure {
        margin-top: clamp(26px, 8vw, 44px);
    }
}

.perfDetail--thermal .thermalFeatureExpand__inner--windowStory {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
}

.perfDetail--thermal .thermalModalReveal.fade-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .65s ease, transform .65s cubic-bezier(.2, .7, .2, 1);
    will-change: opacity, transform;
}

.perfDetail--thermal .thermalModalReveal.fade-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .perfDetail--thermal .thermalModalReveal.fade-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.perfDetail--thermal .thermalWindowStorySection + .thermalWindowStorySection {
    margin-top: clamp(34px, 4vw, 52px);
    padding-top: clamp(28px, 3.2vw, 40px);
    border-top: 1px solid rgba(17, 17, 17, .1);
}

.perfDetail--thermal .thermalWindowStorySection--intro {
    margin-top: 0;
    padding-top: clamp(16px, 2.5vw, 28px);
    border-top: none;
}

.perfDetail--thermal .thermalWindowStorySection__eyebrow {
    margin: 0 0 clamp(14px, 1.6vw, 18px);
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: clamp(12px, 1.05vw, 13px);
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: .08em;
    color: rgba(17, 17, 17, .52);
}

.perfDetail--thermal .thermalWindowStorySection__label {
    margin: 0 0 clamp(10px, 1.2vw, 14px);
    font-family: "Inter", system-ui, sans-serif;
    font-size: clamp(9px, 0.85vw, 10px);
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, .38);
}

.perfDetail--thermal .thermalWindowStorySection__headline {
    margin: 0 0 clamp(14px, 1.6vw, 20px);
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: clamp(24px, 2.4vw, 34px);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: .02em;
    color: #0a0a0a;
}

.perfDetail--thermal .thermalWindowStorySection__subtitle {
    margin: 0 0 clamp(18px, 2.2vw, 28px);
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: clamp(14px, 1.3vw, 17px);
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: .02em;
    color: rgba(17, 17, 17, .72);
}

.perfDetail--thermal .thermalWindowStorySection--intro .thermalWindowStorySection__body p {
    line-height: 1.85;
}

.perfDetail--thermal .thermalWindowStorySection--intro .thermalWindowStorySection__body p + p {
    margin-top: clamp(8px, 1vw, 12px);
}

.perfDetail--thermal .thermalWindowStorySection--intro .thermalWindowStorySection__headline {
    margin-bottom: clamp(18px, 2.2vw, 28px);
}

.perfDetail--thermal .thermalWindowStorySection--intro .thermalWindowStorySection__heroFigure {
    margin-top: clamp(36px, 4.5vw, 52px);
}

.perfDetail--thermal .thermalWindowStorySection__title {
    margin: 0 0 clamp(18px, 2.2vw, 28px);
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: clamp(24px, 2.4vw, 34px);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: .02em;
    color: #0a0a0a;
}

.perfDetail--thermal .thermalWindowStorySection__title--section {
    font-size: clamp(20px, 1.9vw, 28px);
    margin-bottom: clamp(22px, 2.6vw, 30px);
}

.perfDetail--thermal .thermalWindowStorySection__body p {
    margin: 0;
    font-size: clamp(13px, 1.05vw, 14px);
    line-height: 2;
    letter-spacing: .025em;
    color: var(--th-muted);
}

.perfDetail--thermal .thermalWindowStorySection__body p + p {
    margin-top: clamp(12px, 1.4vw, 16px);
}

.perfDetail--thermal .thermalWindowStorySection__heroFigure {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: clamp(24px, 3vw, 36px) 0 0;
    border-radius: 14px;
}

.perfDetail--thermal .thermalWindowStorySection__heroMedia {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    line-height: 0;
    align-self: center;
}

.perfDetail--thermal .thermalWindowStorySection__heroMedia img {
    display: block;
    max-width: 100%;
    max-height: 450px;
    width: auto;
    height: auto;
    margin-inline: auto;
}

@media (min-width: 1086px) {
    .perfDetail--thermal .thermalWindowStorySection__heroFigure {
        display: block;
        overflow-x: hidden;
    }

    .perfDetail--thermal .thermalWindowStorySection__heroMedia {
        width: 100%;
        align-self: auto;
    }

    .perfDetail--thermal .thermalWindowStorySection__heroMedia img {
        margin-inline: 0;
        transform: translateX(-12%);
    }

    .perfDetail--thermal .thermalWindowStorySection__heroMaker {
        position: absolute;
        right: clamp(156px, calc(10vw + 100px), 220px);
        bottom: clamp(14px, 2.2vw, 22px);
        z-index: 1;
        margin: 0;
        max-width: min(calc(100% - 312px), 340px);
        text-align: right;
        align-self: auto;
    }
}

.perfDetail--thermal .thermalWindowStorySection__heroMaker {
    margin: clamp(10px, 2.5vw, 14px) 0 0;
    max-width: 100%;
    text-align: center;
    align-self: center;
}

@media (max-width: 640px) {
    .perfDetail--thermal .thermalWindowStorySection--intro .thermalWindowStorySection__heroMedia img {
        max-height: clamp(260px, 58vw, 320px);
    }

    .perfDetail--thermal .thermalWindowStorySection__heroMaker {
        margin-top: clamp(18px, 4.5vw, 26px);
    }

    .perfDetail--thermal .thermalWindowStorySection--compare {
        padding-top: clamp(56px, 10vw, 72px);
    }

    .perfDetail--thermal .thermalWindowShowcase__duo .thermalWindowShowcase__card:first-child {
        padding-top: clamp(20px, 5vw, 28px);
    }

    .perfDetail--thermal .thermalWindowStorySection__caseTitleJa {
        font-size: clamp(14px, 3.8vw, 16px);
    }
}

.perfDetail--thermal .thermalWindowStorySection__heroMakerLabel {
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: clamp(12px, 1.05vw, 13px);
    font-weight: 500;
    letter-spacing: .06em;
    color: rgba(17, 17, 17, .52);
}

.perfDetail--thermal .thermalWindowStorySection__heroMakerName {
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: clamp(13px, 1.15vw, 15px);
    font-weight: 500;
    letter-spacing: .04em;
    color: rgba(17, 17, 17, .62);
}

.perfDetail--thermal .thermalWindowStorySection--compare {
    padding-top: clamp(44px, 5vw, 60px);
}

.perfDetail--thermal .thermalWindowStorySection--compare .thermalWindowStorySection__headline {
    margin-bottom: clamp(14px, 1.6vw, 20px);
}

.perfDetail--thermal .thermalWindowStorySection--compare .thermalWindowStorySection__body {
    margin-bottom: clamp(24px, 3vw, 36px);
}

.perfDetail--thermal .thermalWindowStorySection--compare .thermalWindowStorySection__body p {
    line-height: 1.85;
}

.perfDetail--thermal .thermalWindowShowcase {
    display: grid;
    gap: clamp(24px, 3vw, 36px);
}

.perfDetail--thermal .thermalWindowShowcase__duo {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 22px);
}

.perfDetail--thermal .thermalWindowShowcase__card {
    display: flex;
    flex-direction: column;
    gap: clamp(14px, 1.8vw, 18px);
    margin: 0;
    padding: clamp(18px, 2.2vw, 24px);
    border: 1px solid rgba(17, 17, 17, .08);
    border-radius: 18px;
    background: rgba(255, 255, 255, .72);
}

.perfDetail--thermal .thermalWindowShowcase__card--feature {
    border-color: rgba(17, 17, 17, .16);
    background: #f7f7f7;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .72);
}

.perfDetail--thermal .thermalWindowShowcase__media {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    line-height: 0;
}

.perfDetail--thermal .thermalWindowShowcase__media img {
    display: block;
    width: 100%;
    height: auto;
}

.perfDetail--thermal .thermalWindowShowcase__caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 1.4vw, 14px);
    margin: 0;
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: clamp(12px, 1vw, 13px);
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: .04em;
    color: rgba(17, 17, 17, .58);
    text-align: center;
}

.perfDetail--thermal .thermalWindowShowcase__caption::before,
.perfDetail--thermal .thermalWindowShowcase__caption::after {
    content: "";
    flex: 0 0 auto;
    width: clamp(28px, 4.5vw, 44px);
    height: 1px;
    background: rgba(17, 17, 17, .16);
}

.perfDetail--thermal .thermalWindowShowcase__featureCaption {
    margin: 0;
    text-align: center;
}

.perfDetail--thermal .thermalWindowShowcase__featureTitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 1.4vw, 14px);
    margin: 0;
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: clamp(12px, 1.05vw, 13px);
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: .04em;
    color: rgba(17, 17, 17, .72);
}

.perfDetail--thermal .thermalWindowShowcase__featureTitle::before,
.perfDetail--thermal .thermalWindowShowcase__featureTitle::after {
    content: "";
    flex: 0 0 auto;
    width: clamp(28px, 4.5vw, 44px);
    height: 1px;
    background: rgba(17, 17, 17, .16);
}

.perfDetail--thermal .thermalWindowShowcase__featureText {
    margin: clamp(6px, 0.8vw, 8px) 0 0;
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: clamp(13px, 1.05vw, 14px);
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: .025em;
    color: var(--th-muted);
}

@media (max-width: 640px) {
    .perfDetail--thermal .thermalWindowShowcase {
        gap: 0;
    }

    .perfDetail--thermal .thermalWindowShowcase__duo {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .perfDetail--thermal .thermalWindowShowcase__card {
        padding: 0;
        border: none;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        gap: clamp(12px, 3.2vw, 16px);
    }

    .perfDetail--thermal .thermalWindowShowcase__duo .thermalWindowShowcase__card:not(:first-child) {
        padding-top: clamp(40px, 9vw, 52px);
    }

    .perfDetail--thermal .thermalWindowShowcase__card--feature {
        border: none;
        background: transparent;
        box-shadow: none;
        padding-top: clamp(32px, 8vw, 48px);
        gap: clamp(20px, 5vw, 28px);
    }
}

.perfDetail--thermal .thermalWindowCompare {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 22px);
}

.perfDetail--thermal .thermalWindowCompare__item {
    display: flex;
    flex-direction: column;
    gap: clamp(14px, 1.8vw, 18px);
    padding: clamp(18px, 2.2vw, 24px);
    border: 1px solid rgba(17, 17, 17, .08);
    border-radius: 18px;
    background: rgba(255, 255, 255, .72);
}

.perfDetail--thermal .thermalWindowCompare__item--featured {
    border-color: rgba(17, 17, 17, .16);
    background: #f7f7f7;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .72);
}

.perfDetail--thermal .thermalWindowCompare__name {
    margin: 0;
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: clamp(13px, 1.1vw, 15px);
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: .03em;
    color: #0a0a0a;
}

.perfDetail--thermal .thermalWindowCompare__media {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
}

.perfDetail--thermal .thermalWindowCompare__media--placeholder {
    aspect-ratio: 4 / 3;
    background: linear-gradient(180deg, #eceff3 0%, #e3e7ec 100%);
}

.perfDetail--thermal .thermalWindowCompare__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.perfDetail--thermal .thermalWindowCompare__list li {
    position: relative;
    padding-left: 1.05em;
    font-size: clamp(12px, 1vw, 13px);
    line-height: 1.85;
    letter-spacing: .03em;
    color: rgba(17, 17, 17, .62);
}

.perfDetail--thermal .thermalWindowCompare__list li + li {
    margin-top: .45em;
}

.perfDetail--thermal .thermalWindowCompare__list li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: rgba(17, 17, 17, .38);
}

.perfDetail--thermal .thermalWindowCompare__item--featured .thermalWindowCompare__list li {
    color: rgba(17, 17, 17, .72);
}

.perfDetail--thermal .thermalWindowStorySection + .thermalWindowStorySection.thermalWindowStorySection--philosophy {
    margin-top: clamp(14px, 2.2vw, 22px);
    padding-top: 0;
    border-top: none;
}

.perfDetail--thermal .thermalWindowStorySection--philosophy {
    text-align: center;
}

.perfDetail--thermal .thermalWindowStorySection--case {
    text-align: center;
}

.perfDetail--thermal .thermalWindowStorySection__caseHead {
    margin-bottom: clamp(20px, 2.6vw, 28px);
}

.perfDetail--thermal .thermalWindowStorySection__caseTitle {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35em 0.5em;
    margin: 0 0 clamp(12px, 1.4vw, 16px);
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: clamp(14px, 1.2vw, 16px);
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: .06em;
    color: rgba(17, 17, 17, .72);
}

.perfDetail--thermal .thermalWindowStorySection__caseTitleEn {
    font-family: "Inter", system-ui, sans-serif;
    font-size: clamp(11px, 1vw, 13px);
    font-weight: 500;
    letter-spacing: .08em;
    color: rgba(17, 17, 17, .48);
}

.perfDetail--thermal .thermalWindowStorySection__caseTitleSep {
    font-weight: 400;
    color: rgba(17, 17, 17, .28);
}

.perfDetail--thermal .thermalWindowStorySection__caseLead {
    margin: 0;
    text-align: center;
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: clamp(13px, 1.05vw, 14px);
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: .025em;
    color: var(--th-muted);
}

.perfDetail--thermal .thermalWindowStorySection__caseFigure {
    margin: 0;
}

.perfDetail--thermal .thermalWindowStorySection__caseMedia {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    line-height: 0;
}

.perfDetail--thermal .thermalWindowStorySection__caseMedia img {
    display: block;
    width: 100%;
    height: auto;
}

.perfDetail--thermal .thermalWindowStorySection__title--philosophy {
    margin-bottom: clamp(20px, 2.4vw, 28px);
    font-size: clamp(18px, 1.7vw, 24px);
    letter-spacing: .06em;
}

.perfDetail--thermal .thermalWindowPhilosophy__body {
    max-width: 34em;
    margin: 0 auto;
}

.perfDetail--thermal .thermalWindowPhilosophy__body p {
    margin: 0;
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: clamp(13px, 1.05vw, 14px);
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: .025em;
    color: var(--th-muted);
}

.perfDetail--thermal .thermalWindowPhilosophy__body p + p {
    margin-top: clamp(14px, 1.6vw, 18px);
}

@media (max-width: 640px) {
    .perfDetail--thermal .thermalWindowStorySection__caseLead {
        text-align: left;
    }

    .perfDetail--thermal .thermalWindowStorySection--philosophy {
        text-align: left;
    }

    .perfDetail--thermal .thermalWindowPhilosophy__body {
        max-width: none;
        margin: 0;
        text-align: left;
    }

    .perfDetail--thermal .thermalWindowPhilosophy__body p {
        text-align: left;
    }
}

@media (max-width: 760px) {
    .perfDetail--thermal .thermalWindowCompare {
        grid-template-columns: 1fr;
    }

    .perfDetail--thermal .thermalWindowStorySection__headline {
        font-size: clamp(22px, 6vw, 28px);
    }

    .perfDetail--thermal .thermalWindowStorySection__subtitle {
        font-size: clamp(13px, 3.8vw, 16px);
    }

    .perfDetail--thermal .thermalWindowStorySection__title {
        font-size: clamp(22px, 6vw, 28px);
    }
}

.perfDetail--thermal .thermalFeatureCardWrap--window .thermalWindowProseHead.thermalNeomaProse {
    max-width: 100%;
    margin: 0 0 clamp(20px, 2.2vw, 32px);
}

.perfDetail--thermal .thermalFeatureCardWrap--window .thermalWindowProseBody.thermalNeomaProse {
    margin: 0;
    max-width: none;
}

.perfDetail--thermal .thermalFeatureCardWrap--window .thermalWindowProseBody .thermalNeomaProse__p + .thermalNeomaProse__p {
    margin-top: clamp(10px, 1.1vw, 15px);
}

.perfDetail--thermal .thermalFeatureCardWrap--window .thermalWindowMediaRow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: clamp(10px, 1.2vw, 16px);
    margin: clamp(20px, 2.8vw, 32px) 0 0;
    min-width: 0;
    max-width: 100%;
}

.perfDetail--thermal .thermalFeatureCardWrap--window .thermalFeatureExpand__figure--windowMedia {
    display: flex;
    flex: 0 1 auto;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    min-width: 0;
    max-width: 100%;
}

.perfDetail--thermal .thermalFeatureCardWrap--window .thermalFeatureExpand__figure--windowMedia img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 500px;
    height: auto;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

.perfDetail--thermal .thermalFeatureCardWrap--window .thermalWindowMediaRow .thermalWindowMaker {
    margin: 0;
    max-width: min(300px, 100%);
    align-self: center;
    flex: 0 0 auto;
}

@media (min-width: 996px) {
    .perfDetail--thermal .thermalFeatureCardWrap--window .thermalWindowProseHead.thermalNeomaProse {
        margin: 0 0 clamp(22px, 2.2vw, 40px);
    }

    .perfDetail--thermal .thermalFeatureCardWrap--window .thermalWindowExpandGrid {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(200px, min(40vw, 400px));
        gap: clamp(24px, 2.5vw, 40px);
        align-items: center;
    }

    .perfDetail--thermal .thermalFeatureCardWrap--window .thermalWindowExpandGrid > .thermalWindowProseBody {
        min-width: 0;
        align-self: center;
    }

    .perfDetail--thermal .thermalFeatureCardWrap--window .thermalWindowExpandGrid > .thermalWindowMediaRow {
        display: block;
        margin-top: 0;
        width: 100%;
        max-width: 100%;
        align-self: center;
    }

    .perfDetail--thermal .thermalFeatureCardWrap--window .thermalWindowFigureWithBadge {
        position: relative;
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 14px;
        overflow: hidden;
        
    }

    .perfDetail--thermal .thermalFeatureCardWrap--window .thermalWindowFigureWithBadge.thermalFeatureExpand__figure--windowMedia {
        overflow: hidden;
    }

    .perfDetail--thermal .thermalFeatureCardWrap--window .thermalWindowFigureWithBadge > img {
        display: block;
        max-width: 100%;
        max-height: min(420px, 50vh);
        width: auto;
        height: auto;
        margin: 0 auto;
    }

    .perfDetail--thermal .thermalFeatureCardWrap--window .thermalWindowFigureWithBadge .thermalWindowMaker {
        position: absolute;
        left: 12px;
        bottom: 12px;
        z-index: 1;
        max-width: min(calc(100% - 24px), 300px);
        
    }

    .perfDetail--thermal .thermalFeatureCardWrap--window .thermalWindowMaker {
        padding: 9px 12px;
    }

    .perfDetail--thermal .thermalFeatureCardWrap--window .thermalWindowMaker .insulation-chart-headMakerLabel {
        font-size: 0.7rem;
    }

    .perfDetail--thermal .thermalFeatureCardWrap--window .thermalWindowMaker .insulation-chart-headMakerName {
        font-size: 0.86rem;
    }

    
    .perfDetail--thermal .thermalFeatureCardWrap--window .thermalWindowProseBody .thermalNeomaProse__p:nth-of-type(2),
    .perfDetail--thermal .thermalFeatureCardWrap--window .thermalWindowProseBody .thermalNeomaProse__p:nth-of-type(3) {
        margin-top: clamp(15px, 1.5vw, 22px);
    }
}

@media (min-width: 1024px) {
    .perfDetail--thermal .thermalFeatureCardWrap--window .thermalWindowProseHead.thermalNeomaProse {
        margin-bottom: 44px;
    }
}

@media (max-width: 995px) {
    
    .perfDetail--thermal .thermalFeatureCardWrap--window .thermalWindowProseHead.thermalNeomaProse {
        margin: 0 0 32px;
    }
    .perfDetail--thermal .thermalFeatureCardWrap--window .thermalWindowExpandGrid {
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 2.5vw, 28px);
    }

    .perfDetail--thermal .thermalFeatureCardWrap--window .thermalWindowExpandGrid .thermalWindowProseBody.thermalNeomaProse,
    .perfDetail--thermal .thermalFeatureCardWrap--window .thermalWindowExpandGrid .thermalWindowMediaRow {
        margin: 0;
    }

    .perfDetail--thermal .thermalFeatureCardWrap--window .thermalWindowMediaRow {
        display: block;
    }

    .perfDetail--thermal .thermalFeatureCardWrap--window .thermalWindowFigureWithBadge {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(10px, 2.2vw, 14px);
        overflow: visible;
        border-radius: 0;
    }

    .perfDetail--thermal .thermalFeatureCardWrap--window .thermalWindowFigureWithBadge .thermalWindowMaker {
        position: static;
        left: auto;
        bottom: auto;
        z-index: auto;
    }
}

.perfDetail--thermal .insulation-chart-block {
    margin-top: 56px;
    padding: clamp(20px, 3.2vw, 32px);
    border-radius: 22px;
    background: #f2f4f7;
    border: 1px solid #e4e7ed;
}

.perfDetail--thermal .insulation-chart-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(200px, 320px);
    grid-template-areas:
        "lead media"
        "body media";
    gap: clamp(18px, 2.8vw, 34px);
    align-items: start;
    margin-bottom: 32px;
}

.perfDetail--thermal .insulation-chart-headLead,
.perfDetail--thermal .insulation-chart-headBody {
    min-width: 0;
}

.perfDetail--thermal .insulation-chart-headLead {
    grid-area: lead;
}

.perfDetail--thermal .insulation-chart-headBody {
    grid-area: body;
}

.perfDetail--thermal .insulation-chart-compareNote {
    margin: 0 0 28px;
    font-size: 0.82rem;
    line-height: 1.6;
    color: #6b7280;
}

.perfDetail--thermal .insulation-chart-subtitle {
    margin: 0;
}

.perfDetail--thermal .insulation-chart-head .thermalNeomaProse__p + .thermalNeomaProse__p {
    margin-top: 10px;
}

.perfDetail--thermal .insulation-chart-headMedia {
    grid-area: media;
    position: relative;
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
}

.perfDetail--thermal .insulation-chart-headMedia img {
    display: block;
    width: 100%;
    height: auto;
}

.perfDetail--thermal .insulation-chart-headMaker {
    position: absolute;
    left: 12px;
    bottom: 12px;
    margin: 0;
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(17, 17, 17, 0.46);
    backdrop-filter: blur(2px);
}

.perfDetail--thermal .insulation-chart-headMakerLabel {
    font-size: 0.63rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.84);
}

.perfDetail--thermal .insulation-chart-headMakerName {
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.perfDetail--thermal .insulation-chart {
    display: grid;
    gap: 14px;
    padding: 28px;
    border: 1px solid #e7e9ee;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.04);
}

.perfDetail--thermal .insulation-chart-row {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 20px;
    align-items: center;
}

.perfDetail--thermal .insulation-chart-name {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.perfDetail--thermal .material-name {
    font-size: 0.96rem;
    line-height: 1.5;
    font-weight: 500;
    color: #1f2328;
}

.perfDetail--thermal .material-spec {
    font-size: 0.82rem;
    line-height: 1.5;
    color: #7a818c;
}

.perfDetail--thermal .insulation-chart-bar-area {
    position: relative;
    width: 100%;
    height: 44px;
    border-radius: 999px;
    background: #f3f4f6;
    overflow: hidden;
}

.perfDetail--thermal .insulation-chart-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    padding-right: 14px;
    border-radius: 999px;
    background: #cfd4dc;
}

.perfDetail--thermal .insulation-chart-row.featured .insulation-chart-bar {
    justify-content: space-between;
    padding-left: 14px;
    background: #b42318;
}

.perfDetail--thermal .insulation-chart-row.featured .bar-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.95);
}

.perfDetail--thermal .insulation-chart-row.featured .material-name {
    font-weight: 700;
}

.perfDetail--thermal .insulation-chart-row.featured .material-spec {
    color: #b42318;
}

.perfDetail--thermal .bar-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.perfDetail--thermal .insulation-chart-note {
    margin: 16px 0 0;
    font-size: 0.82rem;
    line-height: 1.8;
    color: #6b7280;
}

@media (max-width: 768px) {
    .perfDetail--thermal .insulation-chart-block {
        margin-top: 40px;
        padding: 16px 14px 18px;
        border-radius: 16px;
    }

    .perfDetail--thermal .insulation-chart-head {
        grid-template-columns: 1fr;
        grid-template-areas:
            "lead"
            "media"
            "body";
        gap: 14px;
        margin-bottom: 24px;
    }

    .perfDetail--thermal .insulation-chart-headBody {
        margin-top: 20px;
    }

    .perfDetail--thermal .insulation-chart-headMedia {
        justify-self: center;
        margin-inline: auto;
        max-width: min(100%, 340px);
        transform: none;
        display: grid;
        gap: 8px;
    }

    .perfDetail--thermal .insulation-chart-headMaker {
        position: static;
        left: auto;
        bottom: auto;
        display: inline-flex;
        flex-direction: row;
        align-items: baseline;
        gap: 0;
        padding: 0;
        transform: none;
        justify-self: center;
        border: none;
        background: transparent;
        backdrop-filter: none;
        white-space: nowrap;
    }

    .perfDetail--thermal .insulation-chart-headMakerLabel {
        font-size: 0.58rem;
        color: rgba(17, 17, 17, 0.62);
    }

    .perfDetail--thermal .insulation-chart-headMakerLabel::after {
        content: "：";
    }

    .perfDetail--thermal .insulation-chart-headMakerName {
        font-size: 0.72rem;
        color: rgba(17, 17, 17, 0.88);
    }

    .perfDetail--thermal .insulation-chart-compareNote {
        margin: 0 0 14px;
        font-size: 0.76rem;
        line-height: 1.65;
    }

    .perfDetail--thermal .insulation-chart {
        gap: 12px;
        padding: 18px;
        border-radius: 18px;
    }

    .perfDetail--thermal .insulation-chart-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .perfDetail--thermal .insulation-chart-bar-area {
        height: 40px;
    }

    .perfDetail--thermal .material-name {
        font-size: 0.92rem;
    }

    .perfDetail--thermal .material-spec {
        font-size: 0.78rem;
    }

    .perfDetail--thermal .bar-value {
        font-size: 0.8rem;
    }

    .perfDetail--thermal .insulation-chart-note {
        font-size: 0.76rem;
        line-height: 1.7;
    }
}

.perfDetail--thermal .thermalFeatureCardWrap.is-expanded .thermalFeatureExpand__inner {
    padding-top: clamp(20px, 3vw, 28px);
    padding-bottom: clamp(22px, 3.2vw, 30px);
}

@media (prefers-reduced-motion: reduce) {
    .perfDetail--thermal .thermalFeatureExpand {
        transition: none;
    }

    .perfDetail--thermal .thermalFocusBackdrop {
        transition: none;
    }

    .perfDetail--thermal .thermalFeatureCardWrap.is-focus-expanded {
        animation: none;
    }
}

@media (max-width: 1023px) {
    .perfDetail--thermal .thermalFeatureCard {
        min-height: 250px;
    }

    .perfDetail--thermal .thermalFeatureCard__content {
        padding: 22px 20px 24px;
    }

    .perfDetail--thermal .thermalFeatureCard__title {
        font-size: clamp(20px, 7vw, 28px);
    }

    .perfDetail--thermal .thermalSection__intro--materials .thermalSection__label::after {
        width: min(34vw, 120px);
    }

    .perfDetail--thermal .thermalFeatureCardWrap--light .thermalFeatureExpand__figure img,
    .perfDetail--thermal .thermalFeatureCardWrap--airInnerVent .thermalFeatureExpand__figure img {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 995px) {
    .perfDetail--thermal .thermalFeatureCardWrap--window .thermalFeatureExpand__figure--windowMedia img,
    .perfDetail--thermal .thermalFeatureCardWrap--window .thermalWindowFigureWithBadge > img {
        max-width: 100%;
        max-height: min(400px, 58vh);
        width: auto;
        height: auto;
    }
}

@media (max-width: 768px) {
    .perfDetail--thermal .thermalFeatureCardWrap--window .thermalFeatureExpand__figure--windowMedia img,
    .perfDetail--thermal .thermalFeatureCardWrap--window .thermalWindowFigureWithBadge > img {
        max-width: 100%;
        max-height: min(360px, 52.2vh);
        width: auto;
        height: auto;
    }
}

@media (min-width: 641px) {
    .perfDetail--thermal.thermal-modal-open {
        overflow: hidden;
    }

    
    .perfDetail--thermal.thermal-modal-open .perfDetailContent {
        position: relative;
        z-index: 1100;
    }

    .perfDetail--thermal.thermal-modal-open .thermalFocusBackdrop {
        opacity: 1;
        pointer-events: auto;
    }

    
    .perfDetail--thermal .thermalSection:has(.thermalFeatureCardWrap.is-focus-expanded) {
        position: relative;
        z-index: 10;
    }

    .perfDetail--thermal .thermalFeatureCardWrap.is-focus-expanded {
        position: fixed;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: min(1100px, calc(100vw - 72px));
        max-height: calc(100vh - 72px);
        overflow: auto;
        z-index: 1000;
        animation: thermalFocusCardIn .72s cubic-bezier(.19, 1, .22, 1);
    }

    .perfDetail--thermal .thermalFeatureCardWrap.is-focus-expanded .thermalFeatureExpand__inner {
        position: relative;
        overflow: visible;
        padding-bottom: clamp(34px, 4.2vw, 44px);
    }

    .perfDetail--thermal .thermalFeatureCardWrap--window.is-focus-expanded {
        background: var(--th-surface);
    }

    .perfDetail--thermal .thermalFeatureCardWrap--window.is-focus-expanded .thermalFeatureExpand__inner--windowStory {
        width: 100%;
        max-width: none;
    }

    .perfDetail--thermal .thermalFeatureCardWrap.is-focus-expanded .thermalFeatureExpand__closeSecondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: clamp(10px, 1.6vw, 18px);
        bottom: clamp(10px, 1.2vw, 18px);
        width: 48px;
        height: 48px;
        border-radius: 999px;
        border: 1px solid rgba(17, 17, 17, .22);
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 8px 20px rgba(17, 17, 17, .14);
        font-size: 28px;
        line-height: 1;
        color: rgba(17, 17, 17, .72);
        cursor: pointer;
        transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
    }

    .perfDetail--thermal .thermalFeatureCardWrap.is-focus-expanded .thermalFeatureExpand__closeSecondary:hover {
        transform: scale(1.04);
        background: #fff;
        box-shadow: 0 10px 24px rgba(17, 17, 17, .18);
    }
}

@keyframes thermalFocusCardIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -48.8%) scale(.94);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.perfDetail--thermal .thermalMetricGrid {
    display: grid;
    gap: clamp(18px, 2.5vw, 24px);
}

@media (min-width: 768px) {
    .perfDetail--thermal .thermalMetricGrid {
        grid-template-columns: 1fr;
        align-items: stretch;
    }
}

.perfDetail--thermal .thermalMetricCard {
    display: flex;
    flex-direction: column;
    padding: clamp(26px, 4vw, 38px) clamp(24px, 3.5vw, 34px);
    border-radius: var(--th-radius);
    background: var(--th-surface);
    box-shadow: var(--th-shadow);
    border: 1px solid var(--th-line-soft);
}

.perfDetail--thermal .thermalMetricCard__split {
    display: flex;
    flex-direction: column;
    gap: clamp(18px, 2.2vw, 24px);
}

.perfDetail--thermal .thermalMetricCard__main {
    min-width: 0;
}

.perfDetail--thermal .thermalMetricCard__side {
    min-width: 0;
}

.perfDetail--thermal .thermalMetricCard__figure {
    margin: 0;
}

.perfDetail--thermal .thermalMetricCard__figureImage {
    display: block;
    width: min(100%, 280px);
    height: auto;
    margin: 0 auto;
    border-radius: 0;
}

.perfDetail--thermal .thermalMetricCard__figureCaption {
    margin: 10px 0 0;
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: .02em;
    color: rgba(17, 17, 17, .62);
    text-align: center;
}

.perfDetail--thermal .thermalMetricCard__side--placeholder {
    display: none;
}

.perfDetail--thermal .thermalMetricCard--c .thermalMetricCard__figureImage--balance {
    display: block;
    max-height: 500px;
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin-left: auto;
    margin-right: auto;
}

.perfDetail--thermal .thermalMetricCard__diagramBlock {
    width: 100%;
    max-width: 100%;
}

.perfDetail--thermal .thermalMetricCard__balanceCatch {
    width: 100%;
    margin-top: 10px;
    margin-bottom: clamp(6px, 1.2vw, 10px);
}

.perfDetail--thermal .thermalMetricCard__balanceCatchText {
    width: min(100%, 400px);
    max-width: min(100%, 400px);
    margin: 0 auto;
    font-size: clamp(13px, 1.05vw, 14px);
    font-weight: 400;
    line-height: 2;
    letter-spacing: .025em;
    text-align: center;
    color: var(--th-muted);
}

.perfDetail--thermal .thermalMetricCard__balanceCatchLine {
    display: block;
}

@media (max-width: 768px) {
    .perfDetail--thermal .thermalMetricCard--c .thermalMetricCard__split {
        gap: 28px;
    }

    .perfDetail--thermal .thermalMetricCard--c .thermalMetricCard__side--diagram {
        margin-top: 6px;
        padding-inline: 0;
        padding-bottom: clamp(8px, 2vw, 14px);
    }

    .perfDetail--thermal .thermalMetricCard__balanceCatch {
        margin-top: 10px;
        margin-bottom: clamp(4px, 1.5vw, 8px);
    }

    .perfDetail--thermal .thermalMetricCard--c .thermalMetricCard__figureImage--balance {
        width: 100%;
        max-width: 100%;
    }
}

.perfDetail--thermal .thermalMetricCard__name {
    margin: 0 0 12px;
    font-size: clamp(22px, 1.7vw, 24px);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: #0a0a0a;
}

.perfDetail--thermal .thermalMetricCard__nameSub {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.03em;
    color: rgba(17, 17, 17, 0.45);
}

.perfDetail--thermal .thermalMetricCard--c .thermalMetricCard__name {
    margin-bottom: 10px;
}

.perfDetail--thermal .thermalMetricCard__nameSub--philosophy {
    margin-top: 0;
    margin-bottom: clamp(18px, 2.2vw, 24px);
    font-size: clamp(14px, 1.25vw, 15px);
    font-weight: 500;
    line-height: 1.85;
    letter-spacing: .03em;
    color: var(--th-muted);
}

.perfDetail--thermal .thermalMetricCard--c .thermalMetricCard__designStandard {
    margin-top: 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    color: rgba(17, 17, 17, .48);
}

.perfDetail--thermal .thermalMetricCard--c .thermalMetricCard__value--c {
    margin-top: 6px;
    margin-bottom: 8px;
}

.perfDetail--thermal .thermalMetricCard__valueDefine--c {
    margin: 0 0 clamp(20px, 2.4vw, 26px);
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: .03em;
    color: rgba(17, 17, 17, .48);
}

.perfDetail--thermal .thermalMetricCard__prose--c {
    padding-top: 0;
}

.perfDetail--thermal .thermalMetricCard__prose--c p {
    font-size: clamp(13px, 1.05vw, 14px);
    line-height: 2;
    letter-spacing: .025em;
}

.perfDetail--thermal .thermalMetricCard__grade {
    margin: 0 0 6px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: .03em;
    color: var(--th-muted);
}

.perfDetail--thermal .thermalMetricCard__gradeNote {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .02em;
    color: rgba(17, 17, 17, .45);
}

.perfDetail--thermal .thermalMetricCard__value {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0 .35em;
    margin: 8px 0 22px;
    font-family: "Inter", system-ui, sans-serif;
    font-size: clamp(34px, 5.5vw, 48px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #0a0a0a;
}

.perfDetail--thermal .thermalMetricCard__designStandard {
    font-family: "Noto Sans JP", system-ui, sans-serif;
}

.perfDetail--thermal .thermalMetricCard__valueLead {
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: .38em;
    font-weight: 600;
    letter-spacing: .04em;
    color: rgba(17, 17, 17, .72);
}

.perfDetail--thermal .thermalMetricCard__valueNote--c {
    font-family: "Noto Sans JP", system-ui, sans-serif;
}

.perfDetail--thermal .thermalMetricCard__unit {
    font-size: .42em;
    font-weight: 500;
    letter-spacing: .02em;
    color: rgba(17, 17, 17, .55);
}

.perfDetail--thermal .thermalMetricCard__suffix {
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: .34em;
    font-weight: 500;
    letter-spacing: .06em;
    color: rgba(17, 17, 17, .5);
}

.perfDetail--thermal .thermalMetricCard__prose {
    margin-top: 0;
    padding-top: 4px;
}

.perfDetail--thermal .thermalMetricCard__prose p {
    margin: 0 0 1em;
    font-size: 13px;
    line-height: 1.9;
    letter-spacing: .02em;
    color: var(--th-muted);
}

.perfDetail--thermal .thermalMetricCard__prose p:last-child {
    margin-bottom: 0;
}

@media (min-width: 996px) {
    .perfDetail--thermal .thermalMetricCard__split {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(320px, .92fr);
        align-items: stretch;
        gap: clamp(20px, 2.4vw, 34px);
    }

    .perfDetail--thermal .thermalMetricCard--ua .thermalMetricCard__main {
        padding-right: clamp(16px, 1.8vw, 24px);
    }

    .perfDetail--thermal .thermalMetricCard--ua .thermalMetricCard__side,
    .perfDetail--thermal .thermalMetricCard--c .thermalMetricCard__side {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-self: stretch;
        padding-left: clamp(18px, 2vw, 28px);
        border-left: 1px solid rgba(17, 17, 17, 0.1);
    }

    .perfDetail--thermal .thermalMetricCard__side--placeholder {
        display: block;
        min-height: 180px;
    }

    .perfDetail--thermal .thermalMetricCard--c .thermalMetricCard__figure--balance {
        display: block;
        margin: 0;
    }
}

.perfDetail--thermal .thermalApproach {
    max-width: 68em;
    border-top: 1px solid var(--th-line);
}

.perfDetail--thermal .thermalApproach__item {
    padding: clamp(22px, 3vw, 28px) 0;
    border-bottom: 1px solid var(--th-line);
}

.perfDetail--thermal .thermalApproach__head {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: .04em;
    color: #161616;
}

.perfDetail--thermal .thermalApproach__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.92;
    letter-spacing: .02em;
    color: var(--th-muted);
}

@media (min-width: 768px) {
    .perfDetail--thermal .thermalApproach__item {
        display: grid;
        grid-template-columns: minmax(160px, 32%) 1fr;
        gap: 12px 32px;
        align-items: start;
    }

    .perfDetail--thermal .thermalApproach__head {
        margin: 0;
        padding-top: 2px;
    }
}

.perfDetail--thermal .thermalDisclaimer {
    max-width: 52em;
    margin: 0 auto clamp(40px, 6vw, 56px);
    padding: clamp(20px, 3vw, 26px) clamp(22px, 3vw, 28px);
    border-radius: var(--th-radius-sm);
    background: rgba(255, 255, 255, .65);
    border: 1px solid var(--th-line-soft);
    box-shadow: 0 1px 0 rgba(17, 17, 17, .03);
}

.perfDetail--thermal .thermalDisclaimer p {
    margin: 0;
    font-size: 12px;
    line-height: 1.85;
    letter-spacing: .03em;
    color: rgba(17, 17, 17, .48);
}

@media (max-width: 768px) {
    .perfDetail--thermal .thermalDisclaimer {
        margin: 22px auto 42px;
        padding: 0 clamp(6px, 2.8vw, 12px);
        border-radius: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .perfDetail--thermal .thermalDisclaimer p {
        font-size: 11px;
        line-height: 1.8;
        letter-spacing: .025em;
        color: rgba(17, 17, 17, .42);
    }
}

.perfDetail--thermal .thermalBackWrap {
    margin: 0;
    text-align: center;
}

.backToHub.thermalBack {
    margin-top: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: clamp(220px, 24vw, 280px);
    padding: 14px 20px 13px;
    border: 1px solid rgba(17, 17, 17, .16);
    border-radius: 999px;
    background: transparent;
    color: #111;
    text-decoration: none;
    text-transform: none;
    letter-spacing: normal;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    transition: background-color .24s ease, color .24s ease, border-color .24s ease, transform .24s ease;
}

.backToHub.thermalBack .thermalBack__en {
    font-family: "Inter", system-ui, sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    line-height: 1.2;
    color: rgba(17, 17, 17, .72);
}

.backToHub.thermalBack .thermalBack__ja {
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .06em;
    line-height: 1.35;
    color: #111;
}

@media (hover: hover) and (pointer: fine) {
    .backToHub.thermalBack:hover {
        background: #111;
        border-color: #111;
        color: #fff;
        text-decoration: none;
        transform: translateY(-1px);
    }

    .backToHub.thermalBack:hover .thermalBack__en,
    .backToHub.thermalBack:hover .thermalBack__ja {
        color: rgba(255, 255, 255, .94);
    }
}

.backToHub.thermalBack:active {
    background: #111;
    border-color: #111;
    color: #fff;
    transform: scale(0.98);
    transition-duration: .1s;
}

.backToHub.thermalBack:active .thermalBack__en,
.backToHub.thermalBack:active .thermalBack__ja {
    color: rgba(255, 255, 255, .94);
}

.backToHub.thermalBack:focus-visible {
    outline: 2px solid rgba(17, 17, 17, .32);
    outline-offset: 3px;
}

@media (max-width: 480px) {
    .backToHub.thermalBack {
        min-width: 0;
        width: 100%;
        max-width: 320px;
        padding: 13px 18px 12px;
    }
}

.footer {
    padding: 34px 20px 18px;
    background: #111;
    color: rgba(255, 255, 255, .7);
    border-top: 1px solid rgba(255, 255, 255, .16);
    font-size: 11px;
    letter-spacing: .04em;
}

.footer .footer__grid {
    display: grid;
    grid-template-columns: minmax(200px, 1.25fr) repeat(2, minmax(0, 1fr));
    gap: 22px 24px;
    align-items: stretch;
}

.footer__intro {
    grid-column: 1;
    grid-row: 1;
    align-self: stretch;
    min-width: 0;
}

.footer__col--nav {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.footer__col--sitemap {
    grid-column: 3;
    grid-row: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.footer__navMain,
.footer__sitemapMain {
    flex: 1 1 auto;
    min-height: 0;
}

.footer__socialBridge {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
}

.footer__socialBridge .socialRow {
    margin-top: 0;
    width: 100%;
    flex-wrap: wrap;
    row-gap: 8px;
}

@media (min-width: 901px) {
    .footer__col--nav .footer__socialBridge--desktop {
        margin-top: 44px;
    }
}

.footer__socialStrip--mobile {
    display: none;
}

.footer__col {
    min-width: 0;
}

.footer__navLead {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.footer__navTitle {
    margin: 0;
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, .92);
    line-height: 1.45;
}

.footer__navTitle--mobile {
    display: none;
}

.footer__navRule {
    margin: 0;
    height: 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .22);
}

.footer__col--sitemap .footer__navLead ~ .footer__navLead {
    margin-top: 18px;
}

.footer__contactBtns {
    display: grid;
    gap: 8px;
    margin-top: 0;
}

.footer__col--sitemap .footer__contactBtns {
    flex: 0 0 auto;
    margin-top: 22px;
}

.footerBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .32);
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .92);
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: 11px;
    letter-spacing: .04em;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
    box-sizing: border-box;
}

.footerBtn:hover {
    background: var(--ui-blue);
    border-color: var(--ui-blue);
    color: #fff;
}

.footer__brand {
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .92);
    margin: 0 0 10px;
    display: inline-flex;
    align-items: center;
}

.footer__brandLogo {
    display: block;
    width: min(112px, 28vw);
    height: auto;
}

.footer__text {
    margin: 0;
    color: rgba(255, 255, 255, .58);
    line-height: 1.8;
}

.footer__address {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 32px 0 0;
    font-style: normal;
}

.footer__phone {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 0;
}

.footer__phoneLabel {
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    line-height: 1.4;
    color: rgba(255, 255, 255, .55);
}

.footer__phoneKind {
    margin-top: 8px;
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .06em;
    line-height: 1.4;
    color: rgba(255, 255, 255, .72);
}

.footer__phoneNum {
    margin-top: 4px;
    font-family: "Inter", system-ui, sans-serif;
    font-size: clamp(30px, 3.8vw, 42px);
    font-weight: 600;
    letter-spacing: .05em;
    line-height: 1.1;
    color: rgba(255, 255, 255, .94);
    text-decoration: none;
    transition: color .2s ease;
}

.footer__phoneNum:hover {
    color: #fff;
}

.footer__phoneHours {
    margin: 2px 0 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .04em;
    line-height: 1.5;
    color: rgba(255, 255, 255, .48);
}

.footerLinks {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.footerLinks a {
    color: rgba(255, 255, 255, .7);
}

.footerLinks a:hover {
    color: #fff;
}

.footerLinks [aria-current="page"] {
    color: rgba(255, 255, 255, .7);
    font-weight: inherit;
}

.footerPrivacyLink[aria-current="page"] {
    color: rgba(255, 255, 255, .95);
}

.socialRow {
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.socialIcon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .28);
    color: rgba(255, 255, 255, .76);
    display: grid;
    place-items: center;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.socialIcon svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
    display: block;
}

.socialIcon:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .55);
    background: rgba(255, 255, 255, .08);
}

.footerPrivacyLink {
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: 11px;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, .7);
    line-height: 1.5;
    transition: color .2s ease;
}

.footerPrivacyLink:hover {
    color: #fff;
}

.footer__socialBridge .footerPrivacyLink {
    margin-left: 10px;
    padding-left: 14px;
    border-left: 1px solid rgba(255, 255, 255, .22);
    align-self: center;
    white-space: nowrap;
}

.footerBottom {
    display: block;
    margin-top: 22px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    font-family: "Inter", system-ui, sans-serif;
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    text-align: center;
}

.footer .footerBottom {
    display: block;
    grid-template-columns: none;
    justify-items: center;
    justify-content: center;
}

@media (min-width: 901px) {
    .footerBottom {
        margin-top: 40px;
    }
}

.perfDetail {
    padding-top: 84px;
    box-sizing: border-box;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

.perfDetailContent {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    width: 100%;
}

.perfDetailBreadcrumb {
    width: min(var(--max), 100%);
    margin: 0 auto;
    padding: 6px var(--gutter) 10px;
    box-sizing: border-box;
    flex: 0 0 auto;
}

.perfDetailBreadcrumb__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 4px;
    column-gap: 0;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .04em;
    color: rgba(17, 17, 17, .46);
}

.perfDetailBreadcrumb__item {
    display: inline-flex;
    align-items: center;
}

.perfDetailBreadcrumb__sep {
    margin: 0 6px;
    color: rgba(17, 17, 17, .26);
    font-weight: 400;
    user-select: none;
}

.perfDetailBreadcrumb__list a {
    color: inherit;
    text-decoration: none;
}

.perfDetailBreadcrumb__list a:hover {
    color: rgba(17, 17, 17, .72);
}

.perfDetailBreadcrumb__current {
    color: rgba(17, 17, 17, .46);
}

.perfDetail.perfDetail--thermal.perfDetail--solidHeader .perfDetailBreadcrumb {
    width: 100%;
    max-width: none;
    background-color: var(--th-surface);
}

.perfDetailContent > main.container,
.perfDetailContent > main.thermalMain {
    flex: 0 0 auto;
}

.perfDetailSpacer {
    flex: 1 1 auto;
    min-height: 0;
}

.perfDetail .footer {
    padding-bottom: 18px;
}

.perfDetail .footerBottom {
    display: flex;
    justify-content: center;
    text-align: center;
    padding-bottom: 0;
}

.perfDetail .topbar {
    position: fixed;
    inset: 0 0 auto 0;
    height: 84px;
    display: flex;
    align-items: center;
    z-index: 50;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    transition: background .28s ease, border-color .28s ease, backdrop-filter .28s ease;
}

.perfDetail .topbar.topbar--scrolled {
    background: rgba(255, 255, 255, .28);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom-color: rgba(17, 17, 17, .1);
}

.perfDetail.perfDetail--solidHeader #topbar.topbar {
    background: rgba(255, 255, 255, .28);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom-color: rgba(17, 17, 17, .1);
}

@media (min-width: 861px) {

    .perfDetail .topbar.topbar--scrolled,
    .perfDetail.perfDetail--solidHeader #topbar.topbar {
        background: rgba(255, 255, 255, .94);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-bottom-color: rgba(17, 17, 17, .12);
    }
}

.perfDetail .topbar__inner {
    width: min(var(--max), 100%);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.perfDetail .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
    position: relative;
}

.perfDetail .brand__mark {
    width: 100px;
    height: 100px;
    object-fit: contain;
    transition: opacity .24s ease;
}

.perfDetail .brand__mark--dark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    pointer-events: none;
}

.perfDetail .brand__mark--light {
    opacity: 0;
}

.perfDetail .brand__mark--dark {
    opacity: 1;
}

.perfDetail .topbar--scrolled .brand__mark--light {
    opacity: 0;
}

.perfDetail .topbar--scrolled .brand__mark--dark {
    opacity: 1;
}

.perfDetail .nav {
    display: flex;
    align-items: center;
    gap: 33px;
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 12px;
    color: rgba(17, 17, 17, .88);
    transition: color .24s ease;
}

.perfDetail .topbar--scrolled .nav {
    color: rgba(17, 17, 17, .88);
}

.perfDetail .nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: .85;
}

.perfDetail .nav a::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    opacity: .9;
    flex-shrink: 0;
}

.perfDetail .nav a:hover {
    opacity: 1;
}

.perfDetail .nav a:hover::before {
    opacity: 1;
}

.perfDetail .topbarRight {
    display: none;
}

.perfDetail .topbarQuickActions {
    display: none;
}

.perfDetail .mobileQuickActions {
    display: none;
}

.perfDetail .hamburger {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: opacity .24s ease;
}

.perfDetail .hamburger i,
.perfDetail .hamburger i::before,
.perfDetail .hamburger i::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 19px;
    height: 1px;
    background: rgba(17, 17, 17, .84);
    transform: translateX(-50%);
    transition: transform .34s cubic-bezier(.22, .76, .22, 1), top .34s cubic-bezier(.22, .76, .22, 1), opacity .24s ease;
    border-radius: 2px;
}

.perfDetail .topbar--scrolled .hamburger i,
.perfDetail .topbar--scrolled .hamburger i::before,
.perfDetail .topbar--scrolled .hamburger i::after {
    background: rgba(17, 17, 17, .84);
}

.perfDetail .hamburger i {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.perfDetail .hamburger i::before {
    display: none;
}

.perfDetail .hamburger i::after {
    top: 7px;
}

.perfDetail .hamburger.is-open i {
    opacity: 1;
}

.perfDetail .hamburger.is-open i {
    transform: translateX(-50%) translateY(-50%) rotate(45deg) scaleX(1.02);
    background: rgba(17, 17, 17, .9);
}

.perfDetail .hamburger.is-open i::after {
    top: 0;
    transform: translateX(-50%) rotate(-90deg) scaleX(1.02);
    background: rgba(17, 17, 17, .9);
}

.perfDetail .overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .38);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
    z-index: 48;
}

.perfDetail .overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.perfDetail .drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(78vw, 320px);
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    background: rgba(247, 247, 247, .98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateX(100%);
    transition: transform .26s ease;
    z-index: 49;
    padding-top: calc(88px + env(safe-area-inset-top, 0px));
    border-left: 1px solid rgba(0, 0, 0, .08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.perfDetail .drawer.is-open {
    transform: translateX(0);
}

.perfDetail .drawer__scroll {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
}

.perfDetail .drawer__inner {
    padding: 0 22px 22px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    gap: 0;
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 13px;
    color: rgba(17, 17, 17, .92);
}

.perfDetail .drawer__inner .drawerLink {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(17, 17, 17, .08);
}

.perfDetail .drawer__inner .drawerLink::after {
    content: "く";
    font-family: "Inter", system-ui, sans-serif;
    font-size: 12px;
    transform: rotate(180deg);
    color: rgba(17, 17, 17, .62);
}

.perfDetail .drawer__footer {
    margin-top: auto;
    flex-shrink: 0;
    padding: 0 22px 24px;
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px) + 12px);
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.perfDetail .drawer__actions {
    display: grid;
    gap: 8px;
    margin: 16px 0 14px;
}

.perfDetail .drawerBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    border-radius: 999px;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: 1px solid rgba(17, 17, 17, .2);
    color: rgba(17, 17, 17, .9);
    background: rgba(255, 255, 255, .78);
}

.perfDetail .drawerBtn:hover,
.perfDetail .drawerBtn:focus-visible,
.perfDetail .drawerBtn:active {
    background: var(--ui-blue);
    border-color: var(--ui-blue);
    color: #fff;
    outline: none;
}

.perfDetail .drawerSocial {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 2px;
}

.perfDetail .drawerSocial .socialIcon {
    width: 26px;
    height: 26px;
    border-color: rgba(17, 17, 17, .24);
    color: rgba(17, 17, 17, .8);
    background: rgba(255, 255, 255, .6);
}

.perfDetail .drawerSocial .socialIcon:hover {
    color: #fff;
    border-color: var(--ui-blue);
    background: var(--ui-blue);
}

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

@media (max-width: 860px) {
    .perfDetail {
        padding-top: 64px;
    }

    .perfDetail .nav {
        display: none;
    }

    .perfDetail .topbar__inner {
        justify-content: space-between;
    }

    .perfDetail .topbarRight {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-right: 0px;
    }

    .perfDetail .hamburger {
        display: inline-block;
        transform: translateY(-5px);
    }

    .perfDetail .brand__mark {
        width: 64px;
        height: 64px;
    }

    .perfDetail .topbar {
        height: 64px;
    }

    .perfDetail .drawer {
        padding-top: calc(64px + env(safe-area-inset-top, 0px) + 20px);
    }

    .perfDetail .drawer__inner {
        padding-top: 6px;
        padding-bottom: 14px;
    }

    .drawer {
        padding-top: calc(64px + env(safe-area-inset-top, 0px) + 20px);
    }

    .drawer__inner {
        padding-top: 6px;
        padding-bottom: 14px;
    }

    .drawer__inner .drawerLink,
    .perfDetail .drawer__inner .drawerLink {
        padding: 9px 0;
    }

    .perfDetail .mobileQuickActions {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 46;
        display: none;
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        background: rgba(17, 17, 17, .24);
        border-top: 1px solid rgba(17, 17, 17, .16);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        transition: transform .24s ease, opacity .24s ease;
    }

    .perfDetail .mobileQuickActions .siteTab {
        box-sizing: border-box;
        display: grid;
        place-items: center;
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        width: auto;
        min-height: 58px;
        border: none;
        background: rgba(255, 255, 255, .92);
        color: #111;
        font-family: "Inter", system-ui, sans-serif;
        letter-spacing: .08em;
        font-size: 11px;
        text-decoration: none;
        transition: background .2s ease, color .2s ease;
    }

    .perfDetail .topbarQuickActions {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .perfDetail .topbarQuickLink {
        display: inline-flex;
        align-items: center;
        font-family: "Inter", system-ui, sans-serif;
        font-weight: 600;
        letter-spacing: .08em;
        text-transform: uppercase;
        text-decoration: none;
        color: rgba(17, 17, 17, .88);
        font-size: 12px;
        white-space: nowrap;
    }

    .perfDetail .topbarQuickLink::before {
        content: "・";
        margin-right: 7px;
        opacity: .95;
    }

    .perfDetail .topbar--scrolled .topbarQuickLink {
        color: rgba(17, 17, 17, .88);
    }

    .perfDetail .mobileQuickActions .siteTab:hover,
    .perfDetail .mobileQuickActions .siteTab:focus-visible {
        background: var(--ui-blue);
        color: #fff;
    }

    @media (max-width: 460px) {
        .perfDetail .brand {
            min-width: 160px;
        }

        .perfDetail .topbarQuickActions {
            gap: 8px;
        }

        .perfDetail .topbarQuickLink {
            font-size: 11px;
            letter-spacing: .06em;
        }

        .perfDetail .topbarQuickLink::before {
            margin-right: 5px;
        }
    }

    @media (max-width: 375px) {
        .perfDetail .brand {
            min-width: 140px;
        }

        .perfDetail .topbarQuickActions {
            gap: 6px;
            margin-left: -20px;
        }

        .perfDetail .topbarQuickLink {
            font-size: 11px;
            letter-spacing: .06em;
        }

        .perfDetail .topbarQuickLink::before {
            margin-right: 5px;
        }
    }
}

.topbarRight {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hamburger {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
}

.hamburger i,
.hamburger i::before,
.hamburger i::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 19px;
    height: 1px;
    background: rgba(17, 17, 17, .84);
    transform: translateX(-50%);
    transition: transform .34s cubic-bezier(.22, .76, .22, 1), top .34s cubic-bezier(.22, .76, .22, 1), opacity .24s ease;
    border-radius: 2px;
}

.hamburger i {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.hamburger i::before {
    display: none;
}

.hamburger i::after {
    top: 7px;
}

.hamburger.is-open i {
    opacity: 1;
    transform: translateX(-50%) translateY(-50%) rotate(45deg) scaleX(1.02);
}

.hamburger.is-open i::after {
    top: 0;
    transform: translateX(-50%) rotate(-90deg) scaleX(1.02);
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .38);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
    z-index: 48;
}

.overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(78vw, 320px);
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    background: rgba(247, 247, 247, .98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateX(100%);
    transition: transform .26s ease;
    z-index: 49;
    padding-top: calc(88px + env(safe-area-inset-top, 0px));
    border-left: 1px solid rgba(0, 0, 0, .08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.drawer.is-open {
    transform: translateX(0);
}

.drawer__scroll {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
}

.drawer__inner {
    padding: 0 22px 22px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    gap: 0;
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 13px;
    color: rgba(17, 17, 17, .92);
}

.drawer__inner .drawerLink {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(17, 17, 17, .08);
    opacity: .9;
}

.drawer__inner .drawerLink::after {
    content: "く";
    font-family: "Inter", system-ui, sans-serif;
    font-size: 12px;
    transform: rotate(180deg);
    color: rgba(17, 17, 17, .62);
}

.drawer__footer {
    margin-top: auto;
    flex-shrink: 0;
    padding: 0 22px 24px;
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px) + 12px);
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.drawer__actions {
    display: grid;
    gap: 8px;
    margin: 16px 0 14px;
}

.drawerBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    border-radius: 999px;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: 1px solid rgba(17, 17, 17, .2);
    color: rgba(17, 17, 17, .9);
    background: rgba(255, 255, 255, .78);
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.drawerBtn:hover,
.drawerBtn:focus-visible,
.drawerBtn:active {
    background: var(--ui-blue);
    border-color: var(--ui-blue);
    color: #fff;
    outline: none;
}

.drawerSocial {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 2px;
}

.drawerSocial .socialIcon {
    width: 26px;
    height: 26px;
    border-color: rgba(17, 17, 17, .24);
    color: rgba(17, 17, 17, .8);
    background: rgba(255, 255, 255, .6);
}

.drawerSocial .socialIcon:hover {
    color: #fff;
    border-color: var(--ui-blue);
    background: var(--ui-blue);
}

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

@media (max-width: 900px) {
    .nav {
        display: none;
    }

    .brand img {
        width: 58px;
        height: 58px;
    }

    .backHome {
        display: none;
    }

    .hamburger {
        display: inline-block;
    }

    .footer .footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 10px;
        align-items: start;
    }

    .footer__intro {
        grid-column: 1 / -1;
        grid-row: 1;
        padding-bottom: 20px;
    }

    .footer__address {
        margin-top: 48px;
    }

    .footer__col--nav {
        grid-column: 1;
        grid-row: 2;
    }

    .footer__col--sitemap {
        grid-column: 2;
        grid-row: 2;
    }

    .footer__navTitle--desktop {
        display: none;
    }

    .footer__navTitle--mobile {
        display: block;
    }

    .footer__socialStrip--mobile {
        display: block;
        margin-top: 40px;
    }

    .footer__socialBridge--desktop {
        display: none !important;
    }

    .footer__socialBridge--mobileBand {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .footer__socialBridge--mobileBand .socialRow {
        justify-content: center;
        flex-wrap: nowrap;
        width: auto;
        max-width: 100%;
        margin-inline: auto;
    }

    .footer__socialBridge--mobileBand .footerPrivacyLink {
        white-space: nowrap;
    }

    .perfDetail .footer {
        padding-inline: 0;
    }

    .footerBottom {
        padding-bottom: calc(64px + env(safe-area-inset-bottom));
    }

    .perfDetail .footerBottom {
        padding-bottom: 0;
    }
}

