/* Zen Kaku Gothic New（自前ホスト・日本語グリフを1ファイルに統合）
   Google Fontsの100分割配信を避けつつ元のフォントを復元。display:swapで描画は非ブロック。 */
@font-face {
    font-family: "Zen Kaku Gothic New";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/zen-kaku-gothic-new-400.woff2") format("woff2");
}

/* 対応エリア個別ページ: Nettが選ばれる理由 */
.area-reasons {
    overflow: hidden;
    padding: clamp(72px, 8vw, 116px) 24px clamp(88px, 10vw, 144px);
    background: #fff;
    color: #17263a;
    font-family: "Zen Kaku Gothic New", var(--font);
}

.area-reasons__head {
    margin: 0 auto clamp(66px, 7vw, 100px);
    text-align: center;
}

.area-reasons__kicker {
    margin: 0 0 8px;
    color: #1767c8;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.area-reasons__head h2 {
    margin: 0;
    color: #17263a;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: 0.04em;
}

.area-reasons__lead.section-lead {
    max-width: 760px;
    margin: 22px auto 0;
    color: #4d6378;
    font-size: clamp(14px, 1.45vw, 16px);
    font-weight: 500;
    line-height: 1.9;
    letter-spacing: 0.045em;
    text-align: center;
}

.area-reasons__list {
    max-width: 1080px;
    margin: 0 auto;
}

.area-reason {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.96fr);
    align-items: center;
    gap: clamp(42px, 7vw, 92px);
    min-height: 390px;
}

.area-reason + .area-reason {
    margin-top: clamp(86px, 10vw, 138px);
}

.area-reason::before {
    position: absolute;
    top: 54px;
    right: 8%;
    bottom: -34px;
    left: 3%;
    z-index: 0;
    border: 4px solid #f4e79b;
    content: none;
}

.area-reason--reverse {
    grid-template-columns: minmax(360px, 0.96fr) minmax(0, 1fr);
}

.area-reason--reverse::before {
    right: 3%;
    left: 8%;
}

.area-reason--reverse .area-reason__copy {
    grid-column: 2;
    grid-row: 1;
}

.area-reason--reverse .area-reason__photo {
    grid-column: 1;
    grid-row: 1;
}

.area-reason__copy,
.area-reason__photo {
    position: relative;
    z-index: 1;
}

.area-reason__copy {
    padding: 30px 0 20px clamp(18px, 3vw, 42px);
}

.area-reason--reverse .area-reason__copy {
    padding-right: clamp(18px, 3vw, 42px);
    padding-left: 0;
}

.area-reason__number {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 0 0 10px;
    width: fit-content;
    padding: 9px 20px 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0b63c7, #1687db);
    color: #fff;
    line-height: 1;
    box-shadow: 0 9px 18px rgba(12, 100, 199, 0.24);
}

.area-reason__number span {
    font-size: clamp(13px, 1.2vw, 16px);
    font-weight: 800;
}

.area-reason__number b {
    font-family: "Roboto", var(--font);
    font-size: clamp(17px, 1.5vw, 21px);
    font-weight: 700;
    letter-spacing: 0;
}

.area-reason__copy h3 {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    margin: 0 0 20px;
    font-size: clamp(21px, 2.5vw, 32px);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: 0.03em;
}

.area-reason__copy h3 span {
    display: inline-block;
    padding: 5px 13px 7px;
    background: rgba(255, 255, 255, 0.96);
    color: #17263a;
    border-left: 4px solid #1687db;
    border-image: linear-gradient(180deg, #3fa0e8 0%, #0b63c7 100%) 1;
    box-shadow: 7px 8px 18px rgba(8, 38, 73, 0.16);
}

/* 青グラデーションのカーテンが左→右に流れ、通過後に文字が現れる */
.area-reason__copy h3 span {
    position: relative;
}

.area-reason__copy h3 span::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, #3fa0e8 0%, #0b63c7 100%);
    transform: scaleX(0);
    transform-origin: left center;
    pointer-events: none;
}

.area-reason.is-visible .area-reason__copy h3 span::after {
    animation: area-reason-curtain 800ms cubic-bezier(0.65, 0, 0.35, 1) both;
}

.area-reason.is-visible .area-reason__copy h3 span:nth-child(1)::after { animation-delay: 200ms; }
.area-reason.is-visible .area-reason__copy h3 span:nth-child(2)::after { animation-delay: 480ms; }

/* カーテンが覆い切るまで帯と文字を隠しておく */
.area-reason.is-visible .area-reason__copy h3 span:nth-child(1) {
    animation: area-reason-band-hold 1ms linear 600ms backwards;
}
.area-reason.is-visible .area-reason__copy h3 span:nth-child(2) {
    animation: area-reason-band-hold 1ms linear 880ms backwards;
}

@keyframes area-reason-curtain {
    0%    { transform: scaleX(0); transform-origin: left center; }
    50%   { transform: scaleX(1); transform-origin: left center; }
    50.1% { transform: scaleX(1); transform-origin: right center; }
    100%  { transform: scaleX(0); transform-origin: right center; }
}

@keyframes area-reason-band-hold {
    from {
        color: transparent;
        background-color: transparent;
        border-color: transparent;
        border-image: none;
        box-shadow: none;
    }
    to {
        color: transparent;
        background-color: transparent;
        border-color: transparent;
        border-image: none;
        box-shadow: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .area-reason__copy h3 span::after { content: none; }
    .area-reason.is-visible .area-reason__copy h3 span { animation: none; }
}

.area-reason__text {
    max-width: 500px;
    margin: 0;
    color: #34465a;
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.03em;
    padding: 16px 19px 17px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 8px 10px 24px rgba(8, 38, 73, 0.12);
}

.area-reason__photo {
    position: relative;
    isolation: isolate;
    height: clamp(280px, 29vw, 390px);
    margin: 0;
    overflow: visible;
    background: transparent;
}

.area-reason__photo::before,
.area-reason__photo::after {
    position: absolute;
    content: "";
}

.area-reason__photo::before {
    top: -14px;
    right: 16px;
    bottom: 16px;
    left: -14px;
    z-index: 3;
    border: 3px solid #0878cf;
    background: transparent;
    box-shadow: none;
    pointer-events: none;
}

.area-reason__photo::after {
    display: none;
}

.area-reason--reverse .area-reason__photo::before {
    right: -14px;
    left: 16px;
}

.area-reason--reverse .area-reason__photo::after {
    right: 18px;
    left: -18px;
}

.area-reason__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.area-reason__photo-main {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 38px rgba(6, 34, 68, 0.24);
    filter: saturate(1.05) contrast(1.02);
}

.area-reason__photo .area-reason__photo-blur {
    position: absolute;
    inset: -16px -18px -22px;
    z-index: 0;
    width: calc(100% + 36px);
    height: calc(100% + 38px);
    opacity: 0.42;
    filter: blur(20px) saturate(1.55) contrast(1.08);
    transform: scale(1.03);
    pointer-events: none;
}

@media (min-width: 768px) {
    .area-reason,
    .area-reason--reverse {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        gap: 0;
    }

    .area-reason .area-reason__photo {
        grid-column: 1 / 8;
        grid-row: 1;
    }

    .area-reason .area-reason__copy {
        grid-column: 7 / 13;
        grid-row: 1;
        z-index: 4;
        padding: 34px 0 22px;
    }

    .area-reason--reverse .area-reason__photo {
        grid-column: 6 / 13;
        grid-row: 1;
    }

    .area-reason--reverse .area-reason__copy {
        grid-column: 1 / 7;
        grid-row: 1;
        padding: 34px 0 22px;
    }

    .area-reason__copy h3 {
        margin-left: -16px;
    }

    .area-reason--reverse .area-reason__copy h3 {
        align-items: flex-end;
        margin-right: -16px;
        margin-left: 0;
    }

    .area-reason--reverse .area-reason__number {
        margin-left: auto;
    }

    .area-reason--reverse .area-reason__text {
        margin-left: auto;
    }
}

.area-reason:nth-child(1) .area-reason__photo img {
    object-position: center 48%;
}

.area-reason:nth-child(2) .area-reason__photo img {
    object-position: center 55%;
}

.area-reason:nth-child(3) .area-reason__photo img {
    object-position: center 52%;
}

.area-reason:nth-child(1) .area-reason__photo--hakusan-owner img {
    object-position: center 14%;
}

@media (max-width: 767px) {
    .area-reasons {
        padding: 60px 27px 24px;
    }

    .area-reasons__head {
        margin-bottom: 42px;
    }

    .area-reasons__head h2 {
        font-size: 27px;
        line-height: 1.45;
        letter-spacing: 0.025em;
    }

    .area-reasons__head h2 span {
        white-space: nowrap;
    }

    .area-reasons__lead.section-lead {
        max-width: 330px;
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.95;
        letter-spacing: 0.035em;
    }

    .area-reason,
    .area-reason--reverse {
        display: flex;
        flex-direction: column;
        gap: 0;
        min-height: 0;
    }

    .area-reason + .area-reason {
        margin-top: 52px;
    }

    .area-reason::before,
    .area-reason--reverse::before {
        top: 56px;
        right: -5px;
        bottom: -28px;
        left: 18px;
        border-width: 3px;
    }

    .area-reason__copy,
    .area-reason--reverse .area-reason__copy {
        display: contents;
    }

    .area-reason__number {
        position: relative;
        z-index: 2;
        order: 1;
        align-self: flex-start;
        margin: 0 0 -8px 12px;
    }

    .area-reason__number b {
        font-size: 18px;
    }

    .area-reason__photo,
    .area-reason--reverse .area-reason__photo {
        order: 2;
        width: 100%;
        height: 220px;
        margin: 0;
    }

    .area-reason__photo::before,
    .area-reason--reverse .area-reason__photo::before {
        top: -9px;
        right: 10px;
        bottom: 10px;
        left: -9px;
        border-width: 2px;
        box-shadow: none;
    }

    .area-reason__photo::after,
    .area-reason--reverse .area-reason__photo::after {
        top: 10px;
        right: -11px;
        bottom: -11px;
        left: 11px;
        box-shadow: 0 12px 22px rgba(7, 28, 46, 0.2);
    }

    .area-reason__photo-main {
        box-shadow: 0 12px 26px rgba(6, 34, 68, 0.2);
    }

    .area-reason__photo .area-reason__photo-blur {
        inset: -10px -11px -15px;
        width: calc(100% + 22px);
        height: calc(100% + 25px);
        opacity: 0.48;
        filter: blur(13px) saturate(1.5) contrast(1.06);
    }

    .area-reason__copy h3 {
        position: relative;
        z-index: 3;
        order: 3;
        align-self: flex-start;
        gap: 5px;
        margin: -27px 0 18px 0;
        font-size: 22px;
    }

    .area-reason__copy h3 span {
        padding: 5px 10px 6px;
        border-left-width: 3px;
        box-shadow: 5px 6px 14px rgba(8, 38, 73, 0.15);
    }

    .area-reason__text {
        position: relative;
        z-index: 2;
        order: 4;
        margin: -2px 0 0;
        padding: 14px 16px 15px;
        font-size: 13px;
        line-height: 1.9;
    }
}
@font-face {
    font-family: "Zen Kaku Gothic New";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../fonts/zen-kaku-gothic-new-500.woff2") format("woff2");
}
@font-face {
    font-family: "Zen Kaku Gothic New";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/zen-kaku-gothic-new-700.woff2") format("woff2");
}

:root {
    --base: #1b1e29;
    --white: #fff;
    --muted: rgba(255, 255, 255, 0.72);
    --font: "Roboto", "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", "YuGothic", Meiryo, "Noto Sans JP", sans-serif;
}

* {
    box-sizing: border-box;
}

.sp-only {
    display: none;
}

.pc-only {
    display: inline;
}

html {
    min-height: 100%;
    overflow-x: clip;
    background: var(--base);
}

body {
    min-height: 100%;
    margin: 0;
    overflow-x: clip;
    color: var(--base);
    font-family: var(--font);
    letter-spacing: 0;
}

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

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

button {
    border: 0;
    background: none;
    color: inherit;
    font: inherit;
}

.site-header {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: minmax(120px, 200px) 1fr auto;
    align-items: center;
    width: 100%;
    height: 100px;
    padding: 0 16px 0 24px;
    color: var(--white);
    transition:
        background-color 360ms ease,
        color 360ms ease,
        box-shadow 360ms ease,
        backdrop-filter 360ms ease;
}

.header-logo {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    color: var(--white);
    opacity: 1;
    pointer-events: auto;
}

.hero-logo {
    display: none;
}

.header-logo img {
    display: block;
    width: 122px;
    height: auto;
}

.global-nav {
    display: flex;
    justify-content: flex-end;
    gap: 21px;
    padding-right: 30px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.global-nav a {
    transition:
        color 360ms ease,
        opacity 180ms ease,
        text-shadow 360ms ease;
}

.global-nav a:hover {
    opacity: 0.68;
}

.header-contact {
    position: relative;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-width: 116px;
    min-height: 36px;
    padding: 8px 16px 9px;
    border: 0;
    border-radius: 5px;
    background: var(--base);
    color: var(--white);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.contact-button__icon svg {
    display: block;
    width: 18px;
    height: 18px;
}

.contact-button__chevron svg {
    display: block;
    width: 14px;
    height: 14px;
    transition: transform 240ms ease;
}

.header-contact[data-open="true"] .contact-button__chevron svg,
.header-contact:hover .contact-button__chevron svg {
    transform: rotate(180deg);
}

.header-contact__menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 320px;
    padding: 8px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(20, 40, 70, 0.18), 0 4px 14px rgba(20, 40, 70, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 200ms ease, transform 200ms ease, visibility 0s linear 200ms;
    z-index: 20;
}


/* Bridge the gap so hover doesn't drop when moving to the menu. */

.header-contact__menu::before {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 12px;
    content: "";
}

.header-contact:hover .header-contact__menu,
.header-contact[data-open="true"] .header-contact__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
}

.header-contact__item {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 16px 14px;
    border-radius: 12px;
    color: #1a2336;
    transition: background 180ms ease;
}

.header-contact__item+.header-contact__item {
    border-top: 1px solid rgba(20, 40, 70, 0.08);
}

.header-contact__item:hover {
    background: rgba(20, 60, 120, 0.05);
}

.header-contact__icon {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: #2c3a52;
}

.header-contact__icon svg {
    width: 26px;
    height: 26px;
}

.header-contact__icon--line {
    border-radius: 12px;
    background: #06c755;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.header-contact__body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.header-contact__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.header-contact__phone {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.header-contact__desc {
    color: #7c889a;
    font-size: 13px;
    line-height: 1.4;
}

.header-contact__arrow {
    color: #b3bccb;
    font-size: 20px;
    line-height: 1;
}

.menu-button {
    display: none;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    height: 100dvh;
    z-index: 9;
    display: none;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    pointer-events: none;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.is-open,
.mobile-menu.is-closing {
    display: block;
}

.mobile-menu.is-open {
    pointer-events: auto;
}

.mobile-menu::before {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient( 90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.18) 48%, rgba(255, 255, 255, 0) 100%);
    content: "";
    opacity: 0;
    transform: translateX(-115%);
}

.mobile-menu__bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(8, 12, 18, 0.6), rgba(8, 12, 18, 0.74)), linear-gradient(90deg, rgba(8, 12, 18, 0.62), rgba(8, 12, 18, 0.2) 48%, rgba(8, 12, 18, 0.5)), url("../img/glass-film-hero-03.webp?v=202606191807") center / cover no-repeat;
    clip-path: inset(0 100% 0 0);
    transform: translateX(-2%);
    will-change: clip-path, transform;
}

.mobile-menu__container {
    position: relative;
    z-index: 2;
    min-height: 100dvh;
    overflow: visible;
    opacity: 0;
    transform: scale(1.01);
}

.mobile-menu__content {
    width: min(440px, calc(100% - 48px));
    min-height: 100dvh;
    margin: 0 auto;
    padding: clamp(112px, 15vh, 150px) 0 max(42px, env(safe-area-inset-bottom));
}

.mobile-menu__nav {
    display: grid;
    gap: 28px;
}

.mobile-menu__link {
    position: relative;
    display: flex;
    align-items: end;
    width: 100%;
    padding: 0 34px 0 0;
    border-bottom: 0;
    color: var(--base);
}

.mobile-menu__link::after {
    position: absolute;
    right: 0;
    top: 50%;
    color: rgba(255, 255, 255, 0.46);
    font-family: "Roboto", var(--font);
    font-size: 22px;
    line-height: 1;
    content: "→";
    transform: translateY(-50%);
    transition: color 220ms ease, transform 220ms ease;
}

.mobile-menu__link:hover::after {
    color: rgba(255, 255, 255, 0.86);
    transform: translate(5px, -50%);
}

.mobile-menu__link:hover {
    opacity: 0.68;
}

.mobile-menu__link span {
    font-family: "Zen Kaku Gothic New", var(--font);
    color: #fff;
    font-size: clamp(15px, 4vw, 18px);
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.4;
}

.mobile-menu__contact {
    margin-top: 42px;
}

.mobile-menu__contact-copy {
    position: relative;
    width: fit-content;
    margin: 0 auto 22px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0.1em;
    text-align: center;
}

.mobile-menu__contact-copy::before,
.mobile-menu__contact-copy::after {
    position: absolute;
    bottom: 8px;
    width: 34px;
    height: 1px;
    border-top: 2px dashed rgba(255, 255, 255, 0.34);
    content: "";
}

.mobile-menu__contact-copy::before {
    right: calc(100% + 14px);
    transform: rotate(54deg);
    transform-origin: right center;
}

.mobile-menu__contact-copy::after {
    left: calc(100% + 14px);
    transform: rotate(-54deg);
    transform-origin: left center;
}

.mobile-menu__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.mobile-menu__action {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 11px 34px 12px 18px;
    border: 0;
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.45;
    text-align: center;
    transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-menu__action::after {
    position: absolute;
    right: 17px;
    top: 50%;
    font-family: "Roboto", var(--font);
    font-size: 20px;
    line-height: 1;
    content: "→";
    transform: translateY(-50%);
}

.mobile-menu__action:hover {
    opacity: 0.86;
    transform: translateY(-1px);
}

.mobile-menu__action-icon {
    display: inline-grid;
    flex: 0 0 auto;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
}

.mobile-menu__action-icon svg {
    width: 17px;
    height: 17px;
}

.mobile-menu__action--form {
    background: #ff8f08;
    color: #fff;
}

.mobile-menu__action--phone {
    border: 1px solid rgba(23, 103, 200, 0.26);
    background: #fff;
    color: #1767c8;
    box-shadow: 0 7px 18px rgba(23, 103, 200, 0.16);
}

.mobile-menu__action--phone .mobile-menu__action-icon {
    background: rgba(23, 103, 200, 0.14);
    color: #1767c8;
}

.mobile-menu__action--line {
    background: #05b842;
    color: #fff;
}

.mobile-menu__action--line::before {
    display: inline-block;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    margin-right: 8px;
    background: currentColor;
    color: #fff;
    content: "";
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 5C9.9 5 5 9.2 5 14.5c0 3.3 1.9 6.2 4.8 7.9l-.9 3.4c-.1.5.4.9.8.6l4.2-2.5c.7.1 1.4.2 2.1.2 6.1 0 11-4.2 11-9.5S22.1 5 16 5Z'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 5C9.9 5 5 9.2 5 14.5c0 3.3 1.9 6.2 4.8 7.9l-.9 3.4c-.1.5.4.9.8.6l4.2-2.5c.7.1 1.4.2 2.1.2 6.1 0 11-4.2 11-9.5S22.1 5 16 5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.mobile-menu__close-bottom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    min-height: 42px;
    margin-top: 2px;
    padding: 0 8px 0 0;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 360ms ease, transform 460ms cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.mobile-menu__close-bottom span:first-child {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.56);
    border-radius: 999px;
    background: rgba(12, 16, 22, 0.22);
}

.mobile-menu__close-bottom span:first-child::before,
.mobile-menu__close-bottom span:first-child::after {
    position: absolute;
    width: 16px;
    height: 1px;
    background: currentColor;
    content: "";
}

.mobile-menu__close-bottom span:first-child::before {
    transform: rotate(45deg);
}

.mobile-menu__close-bottom span:first-child::after {
    transform: rotate(-45deg);
}

.mobile-menu.is-open .mobile-menu__close-bottom {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 320ms, 320ms;
}

.mobile-menu__nav [data-menu-item]:nth-child(1) {
    transition-delay: 400ms;
}

.mobile-menu__nav [data-menu-item]:nth-child(2) {
    transition-delay: 460ms;
}

.mobile-menu__nav [data-menu-item]:nth-child(3) {
    transition-delay: 520ms;
}

.mobile-menu__nav [data-menu-item]:nth-child(4) {
    transition-delay: 580ms;
}

.mobile-menu__nav [data-menu-item]:nth-child(5) {
    transition-delay: 640ms;
}

.mobile-menu__nav [data-menu-item]:nth-child(6) {
    transition-delay: 700ms;
}

.mobile-menu__nav [data-menu-item]:nth-child(7) {
    transition-delay: 760ms;
}

.mobile-menu__nav [data-menu-item]:nth-child(8) {
    transition-delay: 820ms;
}

[data-menu-item] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 520ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 520ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.mobile-menu.is-open .mobile-menu__bg {
    animation: mobile-menu-slide-in 900ms cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.mobile-menu.is-open::before {
    animation: mobile-menu-film-sweep 900ms cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.mobile-menu.is-open .mobile-menu__container {
    animation: mobile-menu-fade-in 760ms cubic-bezier(0.22, 0.61, 0.36, 1) 260ms forwards;
}

.mobile-menu.is-open [data-menu-item] {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.is-open .mobile-menu__contact {
    transition-delay: 820ms;
}

.mobile-menu.is-closing .mobile-menu__bg {
    animation: mobile-menu-slide-out 700ms cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

.mobile-menu.is-closing .mobile-menu__container {
    opacity: 0;
    transform: scale(1.01);
    transition: opacity 260ms ease, transform 260ms ease;
}

.mobile-menu.is-closing [data-menu-item] {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 260ms ease, transform 260ms ease;
}

@keyframes mobile-menu-slide-in {
    from {
        clip-path: inset(0 100% 0 0);
        transform: translateX(-2%);
    }
    to {
        clip-path: inset(0 0 0 0);
        transform: translateX(0);
    }
}

@keyframes mobile-menu-slide-out {
    from {
        clip-path: inset(0 0 0 0);
        transform: translateX(0);
    }
    to {
        clip-path: inset(0 0 0 100%);
        transform: translateX(2%);
    }
}

@keyframes mobile-menu-film-sweep {
    0% {
        opacity: 0;
        transform: translateX(-115%);
    }
    18% {
        opacity: 0.7;
    }
    100% {
        opacity: 0;
        transform: translateX(115%);
    }
}

@keyframes mobile-menu-fade-in {
    from {
        opacity: 0;
        transform: scale(1.01);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background: var(--base);
}

.hero::before {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    height: 220px;
    background: linear-gradient(180deg, rgba(12, 18, 28, 0.58), rgba(12, 18, 28, 0));
    content: "";
    pointer-events: none;
}

.hero::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(27, 30, 41, 0.34), rgba(27, 30, 41, 0.02) 39%, rgba(27, 30, 41, 0.26) 100%), linear-gradient(0deg, rgba(27, 30, 41, 0.36), rgba(27, 30, 41, 0) 45%);
    content: "";
    pointer-events: none;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-media {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100svh;
    opacity: 0;
    animation: hero-fade-1 15s infinite;
}

.hero-media:nth-child(2) {
    animation-name: hero-fade-2;
}

.hero-media:nth-child(3) {
    animation-name: hero-fade-3;
}

.hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    animation: hero-drift 15s ease-out infinite;
}

.hero-media:nth-child(2) img {
    object-position: 44% center;
    animation-delay: -5s;
}

.hero-media:nth-child(3) img {
    object-position: 42% center;
    animation-delay: -10s;
}

.hero-logo {
    display: none;
}

.hero-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-logo span,
.site-footer__logo span {
    display: block;
    margin-top: 4px;
    color: #c9d1d8;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.hero-logo span {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.42), 0 2px 8px rgba(12, 20, 30, 0.22);
}

.hero-scroll {
    position: absolute;
    z-index: 3;
    bottom: clamp(34px, 5vw, 58px);
    left: clamp(24px, 3.45vw, 54px);
    display: grid;
    justify-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.86);
    pointer-events: none;
}

.hero-scroll__text {
    font-family: "Roboto", var(--font);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    line-height: 1;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-shadow: 0 1px 10px rgba(10, 18, 28, 0.36);
}

.hero-scroll__line {
    position: relative;
    width: 1px;
    height: 84px;
    background: rgba(255, 255, 255, 0.28);
    overflow: hidden;
}

.hero-scroll__line::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.96);
    content: "";
    transform: translateY(-100%);
    animation: hero-scroll-line 2.25s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.hero-scroll__dot {
    display: none;
}

@keyframes hero-scroll-line {
    0% {
        transform: translateY(-100%);
    }
    46% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100%);
    }
}


@media (max-width: 767px) {
    .hero-scroll {
        bottom: 30px;
        left: 24px;
        gap: 12px;
    }
    .hero-scroll__line {
        height: 64px;
    }
}

.hero-copy {
    position: absolute;
    z-index: 2;
    right: 10.4%;
    bottom: 23.9%;
    display: flex;
    flex-direction: column;
    gap: 0.35em;
    margin: 0;
    color: var(--white);
    writing-mode: vertical-rl;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: clamp(33px, 2.92vw, 42px);
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.3em;
    text-shadow: 0 1px 20px rgba(27, 30, 41, 0.22);
}

.hero-copy span {
    display: inline-block;
    opacity: 0;
    filter: blur(8px);
    transform: translateY(18px);
    animation: hero-copy-float 1300ms cubic-bezier(0.16, 1, 0.3, 1) 600ms forwards;
}

.hero-copy span:nth-child(2) {
    animation-delay: 820ms;
}

.hero-cta {
    position: absolute;
    z-index: 3;
    right: 7.4%;
    bottom: clamp(38px, 8.2vw, 112px);
    display: grid;
    justify-items: center;
    gap: 14px;
    width: min(312px, 30vw);
    color: #fff;
    opacity: 0;
    transform: translateY(18px);
    animation: hero-cta-rise 1000ms cubic-bezier(0.16, 1, 0.3, 1) 1200ms forwards;
}

.hero-cta__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-shadow: 0 2px 14px rgba(10, 18, 28, 0.36);
}

.hero-cta__note span {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.72);
}

.hero-cta__button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    min-height: 54px;
    padding: 0 24px 0 34px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 999px;
    background: transparent;
    box-shadow:
        0 16px 34px rgba(8, 18, 30, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        inset 0 -1px 0 rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.08em;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.hero-cta__button::before {
    content: none;
}

.hero-cta__button span,
.hero-cta__button i {
    position: relative;
    z-index: 1;
}

.hero-cta__button i {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    color: #fff;
    font-style: normal;
    font-size: 22px;
    line-height: 1;
}

@keyframes hero-cta-rise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-label {
    position: absolute;
    z-index: 2;
    bottom: 80px;
    left: 3.45vw;
    display: grid;
    justify-items: start;
    gap: 8px;
    color: var(--white);
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: clamp(30px, 3.25vw, 48px);
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: 0.03em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.hero-label span {
    position: relative;
    display: block;
    padding: 9px 24px 12px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 7px;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.4) 46%, rgba(255, 255, 255, 0.23)), linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(189, 213, 229, 0.12));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74), inset 0 -1px 0 rgba(255, 255, 255, 0.28), 0 12px 26px rgba(12, 23, 32, 0.16);
    backdrop-filter: blur(11px) saturate(1.22);
}

.hero-label span::after {
    position: absolute;
    inset: 1px 1px auto;
    height: 46%;
    border-radius: 6px 6px 20px 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
    content: "";
    pointer-events: none;
}

.mobile-floating-cta {
    display: none;
}

.about {
    position: relative;
    min-height: auto;
    padding: 80px 0 40px;
    overflow: clip;
    background: #fff;
    color: #1d241f;
    font-family: "Zen Kaku Gothic New", var(--font);
}

.about::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(248, 246, 239, 0.16), rgba(248, 246, 239, 0.5) 52%, rgba(248, 246, 239, 0.18)), radial-gradient(circle at 65% 48%, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.08) 52%);
    content: "";
    pointer-events: none;
}

.about__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(430px, 0.72fr) minmax(720px, 0.95fr);
    gap: clamp(72px, 5.8vw, 96px);
    align-items: center;
    width: min(1100px, calc(100% - 48px));
    min-height: 520px;
    margin: 0 auto;
}

.about__media {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    min-height: 520px;
    transform: translateX(90px);
}

.about__content {
    grid-column: 1;
    grid-row: 1;
}

.about__image {
    position: absolute;
    margin: 0;
    overflow: hidden;
    background: #e8e9e6;
    opacity: 1;
    transform: translate3d(var(--about-x, 0px), var(--about-y, 0px), 0);
    transform-origin: center;
    transition: transform 900ms cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

.about.is-visible .about__image {
    opacity: 1;
    transform: translate3d(var(--about-x, 0px), var(--about-y, 0px), 0);
}

.about__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.86) contrast(0.96) brightness(1.04);
    transform: scale(1);
}

.about.is-visible .about__image img {
    transform: scale(1);
}

.about__image--l1 {
    --about-x: -60px;
    --about-y: -30px;
    top: 0;
    left: 0;
    width: 252px;
    height: 300px;
}

.about__image--r1 {
    --about-x: 30px;
    --about-y: -30px;
    top: 38px;
    left: 273px;
    width: 125px;
    height: 112px;
}

.about__image--l2 {
    --about-x: -30px;
    --about-y: 30px;
    top: 320px;
    left: 40px;
    width: 217px;
    height: 182px;
}

.about__image--r2 {
    --about-x: 60px;
    --about-y: 30px;
    top: 175px;
    left: 273px;
    width: 230px;
    height: 245px;
}

.about__content {
    position: relative;
}

.about__content::before {
    position: absolute;
    z-index: 0;
    top: -32px;
    left: -28px;
    color: rgba(29, 36, 31, 0.07);
    font-family: "Roboto", var(--font);
    font-size: clamp(96px, 12vw, 180px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 0.85;
    pointer-events: none;
    content: "ABOUT";
    filter: blur(var(--about-bg-blur, 26px));
    transform: translate(var(--about-bg-x, -26px), var(--about-bg-y, -34px));
    will-change: filter, transform;
}

.about__kicker,
.about__title,
.about__text {
    position: relative;
    z-index: 1;
}

.about__kicker {
    display: inline-block;
    position: relative;
    margin: 0 0 36px;
    padding-bottom: 12px;
    color: #5b6770;
    font-family: "Roboto", var(--font);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.28em;
    visibility: hidden;
}

.about__kicker::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 1px;
    background: #5b6770;
    content: "";
}

.about__title {
    margin: 0;
    color: #1d241f;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: clamp(32px, 2.92vw, 42px);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.06em;
}


/* Heading soft fade-up (same feel as other sections). */

.about__kicker,
.about__title {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1100ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 1100ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.about__title {
    transition-delay: 120ms;
}

.about.is-visible .about__kicker,
.about.is-visible .about__title {
    opacity: 1;
    transform: translateY(0);
}

.about__text {
    width: min(520px, 100%);
    margin: 32px 0 44px;
    color: rgba(37, 48, 42, 0.82);
    font-size: 17px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.08em;
}

.about__text--mobile {
    display: none;
}

.about__kicker,
.about__title span {
    display: inline-block;
}

.about__kicker::after {
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 720ms cubic-bezier(0.22, 0.61, 0.36, 1) 220ms;
}

.about.is-visible .about__kicker::after {
    transform: scaleX(1);
}

.about__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
    color: #a48760;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.about__link span {
    display: block;
    width: 9px;
    height: 9px;
    border: 1px solid rgba(29, 36, 31, 0.2);
    border-radius: 50%;
}

.about__link em {
    position: relative;
    font-style: normal;
}

.about__link em::after {
    position: absolute;
    right: 0;
    bottom: -4px;
    left: 0;
    height: 1px;
    background: currentColor;
    transform-origin: left;
    transition: transform 240ms ease;
    content: "";
}

.about__link:hover em::after {
    transform: scaleX(0.35);
}

@media (max-width: 1180px) {
    .about {
        padding: 72px 0 56px;
    }
    .about__inner {
        grid-template-columns: minmax(0, 1fr) 460px;
        gap: 48px;
        width: min(1100px, calc(100% - 56px));
        min-height: 480px;
    }
    .about__media {
        width: 100%;
        max-width: 450px;
        min-height: 480px;
        justify-self: end;
        transform: none;
    }
    .about__content {
        margin-left: 56px;
    }
    .about__image--l1 {
        width: 220px;
        height: 270px;
    }
    .about__image--r1 {
        top: 36px;
        left: 240px;
        width: 110px;
        height: 100px;
    }
    .about__image--l2 {
        top: 296px;
        left: 36px;
        width: 200px;
        height: 168px;
    }
    .about__image--r2 {
        top: 158px;
        left: 240px;
        width: 210px;
        height: 222px;
    }
}

@media (max-width: 860px) {
    .about {
        min-height: auto;
        padding: 86px 0 92px;
    }
    .about__inner {
        display: flex;
        flex-direction: column;
        gap: 58px;
        width: min(560px, 100%);
        min-height: 0;
    }
    .about__media {
        order: 2;
        width: 100%;
        min-height: 580px;
    }
    .about__content {
        order: 1;
        width: 100%;
        margin-left: 0;
    }
    .about__content::before {
        left: 8px;
        font-size: 145px;
    }
    .about__title {
        font-size: clamp(36px, 10.4vw, 50px);
        letter-spacing: 0.06em;
    }
    .about__text {
        margin-top: 28px;
        font-size: 14px;
        line-height: 1.95;
    }
    .about__image--l1 {
        top: 0;
        left: 0;
        width: 62%;
        height: 320px;
    }
    .about__image--r1 {
        top: 72px;
        right: 0;
        left: auto;
        width: 34%;
        height: 142px;
    }
    .about__image--l2 {
        top: 342px;
        left: 4%;
        width: 48%;
        height: 210px;
    }
    .about__image--r2 {
        top: 262px;
        right: 0;
        left: auto;
        width: 48%;
        height: 246px;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 74px 0 78px;
    }
    .about__media {
        min-height: 520px;
    }
    .about__image--l1 {
        width: 61%;
        height: 288px;
    }
    .about__image--r1 {
        top: 70px;
        width: 34%;
        height: 124px;
    }
    .about__image--l2 {
        top: 316px;
        left: 2%;
        width: 49%;
        height: 178px;
    }
    .about__image--r2 {
        top: 254px;
        width: 49%;
        height: 218px;
    }
}

@media (max-width: 1023px) {
    .about {
        padding: 76px 0 48px;
    }
    .about__inner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: min(700px, calc(100% - 72px));
        min-height: 0;
    }
    .about__content {
        order: 1;
        width: 100%;
        margin-left: 0;
    }
    .about__content::before {
        left: 8px;
        font-size: 110px;
    }
    .about__kicker {
        display: none;
    }
    .about__title {
        font-size: 28px;
        line-height: 1.18;
        letter-spacing: 0.04em;
    }
    .about__content .about__text {
        display: none;
    }
    .about__media {
        order: 2;
        width: 100%;
        max-width: none;
        min-height: clamp(280px, 42vw, 380px);
        margin: 60px auto 34px;
        transform: none;
    }
    .about__text--mobile {
        order: 3;
        display: block;
        width: 100%;
        margin: 0 0 6px;
        font-size: clamp(16px, 2.8vw, 20px);
        line-height: 2;
    }
    .about__more--pc {
        display: none;
    }
    .about__more--sp {
        display: flex;
        justify-content: center;
        order: 4;
        width: 100%;
        margin: 16px 0 0;
        text-align: center;
    }
    .about__image--l1 {
        --about-x: 0px;
        z-index: 2;
        top: clamp(78px, 10vw, 96px);
        left: 0;
        width: min(58vw, 400px);
        height: auto;
        aspect-ratio: 16 / 9;
    }
    .about__image--l1 img {
        object-position: top center;
    }
    .about__image--r1 {
        --about-x: 0px;
        z-index: 1;
        top: 0;
        right: 0;
        left: auto;
        width: min(54vw, 400px);
        height: auto;
        aspect-ratio: 16 / 9;
    }
    .about__image--l2,
    .about__image--r2 {
        display: none;
    }
}

@media (max-width: 480px) {
    .about__inner {
        width: calc(100% - 52px);
    }
    .about__content::before {
        left: 10px;
        font-size: 110px;
    }
    .about__title {
        font-size: 28px;
        line-height: 1.2;
    }
    .about__media {
        min-height: 250px;
        margin-top: 60px;
        margin-bottom: 28px;
    }
    .about__image--l1 {
        top: 78px;
        left: 0;
        width: 82%;
    }
    .about__image--r1 {
        right: 0;
        width: 72%;
    }
    .about__text--mobile {
        font-size: 14px;
        line-height: 1.95;
    }
}

@media (max-width: 1023px) {
    .concerns {
        padding-top: 48px;
    }
}

.about__text span {
    display: block;
    filter: blur(26px);
    transform: translate(-26px, -34px);
    will-change: filter, transform;
}

.concerns {
    position: relative;
    min-height: 900px;
    padding: 82px 0;
    overflow: hidden;
    background: #f5f8fb url("../img/concerns-bg.webp?v=202606191807") center / cover no-repeat;
}

.concerns::before {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.22) 42%, rgba(228, 236, 243, 0.34) 100%), linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(241, 247, 251, 0.56));
    content: "";
}

.concerns-inner {
    position: relative;
    z-index: 1;
    width: min(1100px, calc(100% - 48px));
    margin: 0 auto;
    text-align: center;
}

.section-kicker {
    display: inline-grid;
    margin: 0;
    color: #738391;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.22em;
    line-height: 1;
}

.section-kicker::after {
    width: 52px;
    height: 2px;
    margin: 26px auto 0;
    background: #8796a4;
    content: "";
}

.section-title {
    margin: 36px 0 0;
    color: #121823;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: clamp(32px, 2.92vw, 42px);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.14em;
}

.section-lead {
    margin: 22px 0 0;
    color: #303947;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.14em;
}

[data-reveal-heading]>.section-kicker,
[data-reveal-heading]>h2,
[data-reveal-heading]>.section-title,
[data-reveal-heading]>.section-lead,
[data-reveal-heading]>.choose__en,
[data-reveal-heading]>.choose__bar,
[data-reveal-heading]>.choose__lead,
[data-reveal-heading]>.service-area__catch,
[data-reveal-heading]>.service-area__text,
[data-reveal-heading]>.faq__lead,
[data-reveal-heading]>.contact__kicker,
[data-reveal-heading]>.contact__title,
[data-reveal-heading]>.contact__lead,
[data-reveal-heading]>.contact__sublead {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1100ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 1100ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

[data-reveal-heading]>.section-title,
[data-reveal-heading]>h2,
[data-reveal-heading]>.choose__en,
[data-reveal-heading]>.service-area__catch,
[data-reveal-heading]>.contact__title {
    transition-delay: 120ms;
}

[data-reveal-heading]>.section-lead,
[data-reveal-heading]>.choose__bar,
[data-reveal-heading]>.service-area__text,
[data-reveal-heading]>.faq__lead,
[data-reveal-heading]>.contact__lead {
    transition-delay: 240ms;
}

[data-reveal-heading]>.choose__lead,
[data-reveal-heading]>.contact__sublead {
    transition-delay: 360ms;
}

[data-reveal-heading].is-visible>.section-kicker,
[data-reveal-heading].is-visible>h2,
[data-reveal-heading].is-visible>.section-title,
[data-reveal-heading].is-visible>.section-lead,
[data-reveal-heading].is-visible>.choose__en,
[data-reveal-heading].is-visible>.choose__bar,
[data-reveal-heading].is-visible>.choose__lead,
[data-reveal-heading].is-visible>.service-area__catch,
[data-reveal-heading].is-visible>.service-area__text,
[data-reveal-heading].is-visible>.faq__lead,
[data-reveal-heading].is-visible>.contact__kicker,
[data-reveal-heading].is-visible>.contact__title,
[data-reveal-heading].is-visible>.contact__lead,
[data-reveal-heading].is-visible>.contact__sublead {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal-item] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1100ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 1100ms cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: opacity, transform;
}

[data-reveal-item].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.works-slider__track>[data-reveal-item]:nth-child(2),
.instagram-grid>[data-reveal-item]:nth-child(2),
.voice__cards>[data-reveal-item]:nth-child(2) {
    transition-delay: 120ms;
}

.works-slider__track>[data-reveal-item]:nth-child(3),
.instagram-grid>[data-reveal-item]:nth-child(3),
.voice__cards>[data-reveal-item]:nth-child(3) {
    transition-delay: 220ms;
}

.works-slider__track>[data-reveal-item]:nth-child(4),
.instagram-grid>[data-reveal-item]:nth-child(4) {
    transition-delay: 320ms;
}

.instagram-grid>[data-reveal-item]:nth-child(5) {
    transition-delay: 420ms;
}

.instagram-grid>[data-reveal-item]:nth-child(6) {
    transition-delay: 520ms;
}

.pricing-table__list>[data-reveal-item]:nth-child(1) {
    transition-delay: 120ms;
}

.pricing-table__list>[data-reveal-item]:nth-child(2) {
    transition-delay: 220ms;
}

.pricing-table__list>[data-reveal-item]:nth-child(3) {
    transition-delay: 320ms;
}

.pricing-table__list>[data-reveal-item]:nth-child(4) {
    transition-delay: 420ms;
}

.pricing-table__list>[data-reveal-item]:nth-child(5) {
    transition-delay: 520ms;
}

.pricing__toggle-reveal[data-reveal-item] {
    transition-delay: 620ms;
}


/* Works (施工事例) cards: no fade-up reveal animation. */

.work-card[data-reveal-item] {
    opacity: 1;
    transform: none;
    transition: none;
}

.concerns-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    margin-top: 54px;
}

.concern-card {
    position: relative;
    display: grid;
    grid-template-columns: 132px 1px 1fr;
    align-items: center;
    min-height: 174px;
    padding: 36px 38px 36px 34px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.44)), rgba(255, 255, 255, 0.54);
    box-shadow: 0 22px 45px rgba(106, 125, 143, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px) saturate(1.12);
    opacity: 0;
    text-align: left;
    transform: translateY(40px);
    transition: opacity 1100ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 1100ms cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 240ms ease, border-color 240ms ease;
}

.concern-card:nth-child(2) {
    transition-delay: 120ms;
}

.concern-card:nth-child(3) {
    transition-delay: 180ms;
}

.concern-card:nth-child(4) {
    transition-delay: 300ms;
}

.concern-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.concern-icon {
    display: inline-grid;
    place-items: center;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(234, 240, 246, 0.72);
    color: #31475a;
}

.concern-icon svg {
    width: 58px;
    height: 58px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.4;
}

.concern-separator {
    display: block;
    width: 1px;
    height: 54px;
    background: rgba(179, 191, 202, 0.58);
}

.concern-text {
    padding-left: 36px;
    color: #111824;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 24px;
    line-height: 1.85;
    letter-spacing: 0.12em;
}

.concern-arrow {
    position: absolute;
    right: 36px;
    bottom: 36px;
    width: 34px;
    height: 12px;
}

.concern-arrow::before,
.concern-arrow::after {
    position: absolute;
    right: 0;
    background: #8b9aaa;
    content: "";
}

.concern-arrow::before {
    bottom: 2px;
    width: 34px;
    height: 1px;
}

.concern-arrow::after {
    bottom: 2px;
    width: 11px;
    height: 1px;
    transform: rotate(35deg);
    transform-origin: right center;
}

.concerns-more {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 154px;
    margin-top: 58px;
    padding: 0 50px 16px 18px;
    border-bottom: 1px solid rgba(140, 154, 168, 0.36);
    color: #4f5e6d;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.16em;
}

.concerns-more .concern-arrow {
    right: 4px;
    bottom: 18px;
}

@media (max-width: 1180px) {
    .concerns {
        min-height: auto;
        padding: 84px 0 90px;
    }
    .concerns-grid {
        gap: 24px;
        margin-top: 48px;
    }
    .concern-card {
        grid-template-columns: 104px 1px 1fr;
        min-height: 140px;
        padding: 26px 26px 26px 24px;
    }
    .concern-icon {
        width: 80px;
        height: 80px;
    }
    .concern-icon svg {
        width: 48px;
        height: 48px;
    }
    .concern-separator {
        height: 48px;
    }
    .concern-text {
        padding-left: 24px;
        font-size: 20px;
        line-height: 1.7;
    }
}


/* Tablet / phone: shrink the concern cards' icons and text further. */

@media (max-width: 1023px) {
    .concerns-grid {
        gap: 20px;
        margin-top: 42px;
    }
    .concern-card {
        grid-template-columns: 84px 1px 1fr;
        min-height: 118px;
        padding: 22px 22px 22px 20px;
    }
    .concern-icon {
        width: 60px;
        height: 60px;
    }
    .concern-icon svg {
        width: 36px;
        height: 36px;
    }
    .concern-separator {
        height: 40px;
    }
    .concern-text {
        padding-left: 20px;
        font-size: 16px;
        line-height: 1.65;
    }
}

.sky-seat {
    position: relative;
    height: 240lvh;
    min-height: 760px;
    background: #eef5f8;
}

.sky-seat__sticky {
    position: sticky;
    top: 0;
    height: 100lvh;
    overflow: hidden;
    background: #eef5f8;
    --sky-frame-clip: inset(calc((100svh - 34.875vw) / 2) 19vw);
    --sky-frame-width: 62vw;
    --sky-frame-height: 34.875vw;
    --sky-bg-width: 100vw;
    --sky-bg-height: 56.25vw;
}

.sky-seat__sticky::before {
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    width: var(--sky-bg-width);
    height: var(--sky-bg-height);
    background: url("../img/moviebg1.webp?v=202606191807") center / cover no-repeat;
    content: "";
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.sky-seat__frame {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    clip-path: inset(calc((100svh - 34.875vw) / 2) 19vw);
    will-change: clip-path;
}

.sky-seat__frame::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 13, 20, 0.18), rgba(8, 22, 34, 0.08) 38%, rgba(8, 20, 31, 0.3)), linear-gradient(180deg, rgba(4, 16, 26, 0.04), rgba(2, 12, 20, 0.22));
    content: "";
    pointer-events: none;
}

.sky-seat__frame img,
.sky-seat__frame video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
    will-change: transform;
}

.sky-seat__title {
    position: absolute;
    z-index: 2;
    top: 50.5%;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 0;
    color: #fff;
    text-align: center;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    will-change: transform, opacity;
}

.sky-seat__kicker {
    color: rgba(255, 255, 255, 0.94);
    font-family: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
    font-size: clamp(16px, 1.25vw, 21px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.5em;
    padding-left: 0.5em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.44), 0 8px 22px rgba(0, 0, 0, 0.28);
    opacity: 0;
    transform: translateY(16px) scale(0.88);
    transform-origin: center;
    transition: opacity 260ms ease, transform 520ms cubic-bezier(0.18, 1.28, 0.32, 1);
}

.sky-seat__heading {
    margin: 0;
    color: #fff;
    font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", "Noto Serif JP", Georgia, serif;
    font-size: clamp(44px, 4.25vw, 72px);
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: 0.13em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.34), 0 8px 18px rgba(0, 0, 0, 0.42), 0 18px 34px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px) scale(0.88);
    transform-origin: center;
    transition: opacity 280ms ease 70ms, transform 560ms cubic-bezier(0.18, 1.28, 0.32, 1) 70ms;
}

.sky-seat__rule {
    display: block;
    width: min(56vw, 680px);
    height: 2px;
    background: linear-gradient(90deg, #d6bd78, rgba(214, 189, 120, 0.76), rgba(214, 189, 120, 0));
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: opacity 240ms ease 170ms, transform 520ms cubic-bezier(0.18, 1.28, 0.32, 1) 170ms;
}

.sky-seat__title.is-title-visible .sky-seat__kicker,
.sky-seat__title.is-title-visible .sky-seat__heading {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.sky-seat__title.is-title-visible .sky-seat__rule {
    opacity: 0.95;
    transform: scaleX(1);
}


/* Tablet / phone sky-seat layout lives in the trailing 1023px block. */

.spbr {
    display: none;
}

.choose {
    position: relative;
    overflow: hidden;
    padding: 86px 0 74px;
    background: radial-gradient(circle at 9% 12%, rgba(184, 192, 185, 0.2), rgba(255, 255, 255, 0) 17rem), radial-gradient(circle at 88% 38%, rgba(210, 204, 194, 0.18), rgba(255, 255, 255, 0) 22rem), linear-gradient(180deg, #fbfaf7, #f8f6f1);
    color: #343434;
    font-family: "Zen Kaku Gothic New", var(--font);
}

.choose::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 19%, rgba(255, 255, 255, 0) 81%, rgba(255, 255, 255, 0.8)), radial-gradient(ellipse at center, rgba(255, 255, 255, 0) 45%, rgba(216, 210, 200, 0.2) 100%);
    content: "";
    pointer-events: none;
}

.choose__inner {
    position: relative;
    z-index: 1;
    width: min(1100px, 100%);
    margin: 0 auto;
}

.choose__head {
    width: min(900px, 100%);
    margin-left: 64px;
}

.choose__head h2 {
    margin: 0;
    color: #292929;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: clamp(32px, 2.92vw, 42px);
    font-weight: 400;
    line-height: 1.52;
    letter-spacing: 0.1em;
}

.choose__head h2 span {
    display: block;
    white-space: nowrap;
}

.choose__head h2 span:first-child {
    position: relative;
    z-index: 0;
    width: max-content;
    max-width: 100%;
}

.choose__head h2 span:first-child::after {
    position: absolute;
    left: 0;
    right: 0.1em;
    bottom: -0.04em;
    z-index: -1;
    height: 2px;
    background: linear-gradient(90deg, rgba(186, 156, 88, 0), rgba(186, 156, 88, 0.9) 8%, rgba(216, 191, 117, 0.95) 88%, rgba(216, 191, 117, 0));
    box-shadow: 0 0 10px rgba(216, 191, 117, 0.28);
    content: "";
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1) 900ms;
}

[data-reveal-heading].is-visible > h2 span:first-child::after {
    transform: scaleX(1);
}

.choose__en {
    margin: 18px 0 0;
    color: rgba(52, 52, 52, 0.38);
    font-family: "Times New Roman", serif;
    font-size: 17px;
    letter-spacing: 0.45em;
}

.choose__bar {
    display: block;
    width: 34px;
    height: 1px;
    margin-top: 25px;
    background: rgba(52, 52, 52, 0.28);
}

.choose__lead {
    margin: 25px 0 0;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    line-height: 2.05;
    letter-spacing: 0.14em;
}

.choose__side {
    position: absolute;
    z-index: 1;
    color: rgba(52, 52, 52, 0.58);
    font-family: "Times New Roman", serif;
    font-size: 11px;
    letter-spacing: 0.42em;
    writing-mode: vertical-rl;
}

.choose__side--left {
    top: 52px;
    left: 33px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.choose__side--left span {
    width: 1px;
    height: 226px;
    background: rgba(52, 52, 52, 0.28);
}

.choose__side--left p,
.choose__side--right {
    margin: 0;
}

.choose__side--right {
    right: 38px;
    bottom: 76px;
}

.choose__side--right::after {
    display: block;
    width: 1px;
    height: 92px;
    margin: 24px auto 0;
    background: rgba(52, 52, 52, 0.26);
    content: "";
}

.choose__ghost {
    position: absolute;
    z-index: 0;
    top: 46px;
    right: -28px;
    margin: 0;
    color: rgba(52, 52, 52, 0.055);
    font-family: "Times New Roman", serif;
    font-size: clamp(64px, 8.6vw, 132px);
    font-weight: 400;
    letter-spacing: 0.14em;
    line-height: 0.8;
    writing-mode: vertical-rl;
}

.choose-item {
    position: relative;
    display: grid;
    align-items: start;
    justify-content: center;
    gap: clamp(28px, 3.2vw, 52px);
    margin-top: clamp(80px, 10vw, 120px);
}

.choose-item__body,
.choose-item__image,
.choose-item__control {
    opacity: 0;
    transform: translateY(46px);
    transition: opacity 1050ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 1050ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.choose-item__image {
    transition-delay: 100ms;
}

.choose-item__control {
    transition-delay: 360ms;
}

.choose-item__body {
    transition-delay: 260ms;
}

.choose-item--text-right .choose-item__body {
    transition-delay: 260ms;
}

.choose-item__image>img,
.choose-item__compare img,
.choose-item__before-after img,
.choose-item__ba-layer img,
.choose-item__slide img {
    transform: scale(1.12);
    transition: transform 1600ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.choose-item.is-visible .choose-item__body,
.choose-item.is-visible .choose-item__image,
.choose-item.is-visible .choose-item__control {
    opacity: 1;
    transform: translateY(0);
}

.choose-item.is-visible .choose-item__image>img,
.choose-item.is-visible .choose-item__compare img,
.choose-item.is-visible .choose-item__before-after img,
.choose-item.is-visible .choose-item__ba-layer img,
.choose-item.is-visible .choose-item__slide img {
    transform: scale(1);
}

.choose-item--text-left {
    grid-template-columns: minmax(320px, 390px) minmax(420px, 540px);
}

.choose-item--text-right {
    grid-template-columns: minmax(420px, 540px) minmax(320px, 390px);
}

.choose-item--third {
    margin-top: 120px;
}

.choose-item--third .choose-item__body h3 {
    line-height: 1.52;
}

.choose-item--last {
    margin-top: 120px;
}

.choose__inner > .choose-item:nth-of-type(odd) {
    grid-template-columns: minmax(320px, 390px) minmax(420px, 540px);
}

.choose__inner > .choose-item:nth-of-type(odd) .choose-item__body {
    order: 1;
}

.choose__inner > .choose-item:nth-of-type(odd) .choose-item__image {
    order: 2;
}

.choose__inner > .choose-item:nth-of-type(even) {
    grid-template-columns: minmax(420px, 540px) minmax(320px, 390px);
}

.choose__inner > .choose-item:nth-of-type(even) .choose-item__image {
    order: 1;
}

.choose__inner > .choose-item:nth-of-type(even) .choose-item__body {
    order: 2;
}

.choose__inner > .choose-item:nth-of-type(odd) .choose-item__media-tabs {
    align-self: flex-end;
}

.choose__inner > .choose-item:nth-of-type(even) .choose-item__media-tabs {
    align-self: flex-start;
}

.choose-item__body {
    position: relative;
    z-index: 2;
    min-width: 0;
    max-width: 390px;
}

.choose-item__titleline {
    display: flex;
    align-items: center;
    gap: 28px;
}

.choose-item__titleline span:last-child {
    width: 70px;
    height: 1px;
    background: rgba(52, 52, 52, 0.3);
}

.choose-item__number {
    color: #333;
    font-family: "Times New Roman", serif;
    font-size: 37px;
    line-height: 1;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.choose-item__category {
    color: #2f2f2f;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.14em;
    white-space: nowrap;
}

.choose-item__body h3 {
    margin: 26px 0 0;
    color: #2f2f2f;
    white-space: normal;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.42;
    letter-spacing: 0.15em;
}

.choose-item__body p {
    margin: 22px 0 0;
    color: #555;
    font-size: 14px;
    white-space: nowrap;
    font-weight: 500;
    line-height: 2.05;
    letter-spacing: 0.16em;
}

.choose-item__image {
    aspect-ratio: 16 / 9;
    height: auto;
    max-height: 310px;
    margin: 0;
    overflow: hidden;
    background: #e8e5df;
}

.choose-item__image--slider {
    position: relative;
    width: 540px;
    max-width: 100%;
    height: 304px;
    aspect-ratio: 16 / 9;
}

.choose-item__slide {
    position: absolute;
    inset: 0;
    display: block;
    overflow: hidden;
    opacity: 0;
    transition: opacity 800ms ease;
}

.choose-item__slide.is-active {
    opacity: 1;
}

.choose-item__slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.78) contrast(0.93) brightness(1.08);
}

.choose-item__slide b {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    background: rgba(20, 24, 32, 0.62);
    color: #fff;
    font-family: "Times New Roman", serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
}

.choose-item__image--compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    aspect-ratio: 3 / 2;
    overflow: visible;
    background: none;
}

.choose-item__compare {
    position: relative;
    display: block;
    overflow: hidden;
    background: #e8e5df;
}

.choose-item__compare img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.78) contrast(0.93) brightness(1.08);
}

.choose-item__compare b {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    background: rgba(20, 24, 32, 0.62);
    color: #fff;
    font-family: "Times New Roman", serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
}

.choose-item__image--before-after {
    position: relative;
    width: 540px;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    max-height: none;
    cursor: ew-resize;
    touch-action: pan-y;
    user-select: none;
}

.choose-item__image--media-slider {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 540px;
    max-width: 100%;
    aspect-ratio: auto;
    max-height: none;
    overflow: visible;
    background: transparent;
}

.choose-item__media-track,
.choose-item__media-slide {
    position: absolute;
    inset: 0;
    display: block;
}

.choose-item__media-track {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f6f8fa;
}

.choose-item__media-slide {
    opacity: 0;
    transform: scale(1.04);
    pointer-events: none;
    transition:
        opacity 420ms ease,
        transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.choose-item__media-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
    pointer-events: auto;
}

.choose-item__media-slide > .choose-item__image--before-after {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    aspect-ratio: auto;
}

.choose-item__media-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.choose-item__media-tabs {
    position: static;
    align-self: flex-end;
    z-index: 3;
    display: inline-flex;
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.64);
    box-shadow: 0 12px 28px rgba(20, 38, 56, 0.14);
    backdrop-filter: blur(14px) saturate(1.12);
    -webkit-backdrop-filter: blur(14px) saturate(1.12);
}

.choose-item--text-right .choose-item__media-tabs {
    align-self: flex-start;
}

.choose-item__media-tabs button {
    min-width: 54px;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    color: #27435f;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition:
        background 220ms ease,
        color 220ms ease,
        box-shadow 220ms ease;
}

.choose-item__media-tabs button.is-active {
    background: #1b5fc2;
    color: #fff;
    box-shadow: 0 8px 18px rgba(27, 95, 194, 0.26);
}

.choose-item__ba-layer {
    position: absolute;
    inset: 0;
    display: block;
    overflow: hidden;
    background: #e8e5df;
}

.choose-item__ba-layer--after {
    z-index: 2;
    clip-path: inset( 0 var(--after-right, calc(100% - var(--compare, 50%))) 0 var(--after-left, 0%));
}

.choose-item__ba-layer img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.78) contrast(0.93) brightness(1.08);
}

.choose-item__ba-label {
    position: absolute;
    z-index: 4;
    top: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(20, 24, 32, 0.68);
    color: #fff;
    font-family: "Times New Roman", serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 0s linear 180ms;
}

.choose-item__ba-label--before {
    left: 10px;
}

.choose-item__ba-label--after {
    right: 10px;
}

.choose-item__image--before-after.is-before-full .choose-item__ba-label--after,
.choose-item__image--before-after.is-after-full .choose-item__ba-label--before {
    opacity: 0;
    visibility: hidden;
}

.choose-item__ba-divider {
    position: absolute;
    z-index: 5;
    top: 0;
    bottom: 0;
    left: var(--compare, 50%);
    width: 2px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 0 0 1px rgba(35, 45, 52, 0.16);
    transform: translateX(-50%);
    pointer-events: none;
}

.choose-item__ba-divider::before {
    position: absolute;
    bottom: calc(50% + 34px);
    left: 50%;
    width: max-content;
    max-width: 150px;
    padding: 5px 9px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    color: #fff;
    box-shadow: 0 8px 22px rgba(24, 42, 56, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.86);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    text-align: center;
    white-space: nowrap;
    content: "左右に動かして比較";
    transform: translateX(-50%);
    backdrop-filter: blur(10px) saturate(1.12);
    text-shadow: 0 1px 4px rgba(18, 32, 44, 0.42);
    pointer-events: none;
}

.choose-item__ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 10px 24px rgba(16, 28, 36, 0.18);
    color: #fff;
    font-family: "Times New Roman", serif;
    font-size: 20px;
    line-height: 1;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(8px);
}

.choose-item__ba-handle::before,
.choose-item__ba-handle::after {
    position: absolute;
    inset: -2px;
    z-index: -1;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.46);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.42);
    content: "";
    animation: mado-pulse 1.9s cubic-bezier(0.2, 0.55, 0.35, 1) infinite;
}

.choose-item__ba-handle::after {
    animation-delay: 0.65s;
}

.choose-item__ba-range {
    position: absolute;
    z-index: 6;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
}

.choose-item__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.78) contrast(0.93) brightness(1.08);
}

.choose-item--text-left .choose-item__image img {
    object-position: center;
}

.choose-item--text-right .choose-item__image img {
    object-position: 38% center;
}

.choose-item--third .choose-item__image img {
    object-position: center 55%;
}

.choose-item--last .choose-item__image img {
    object-position: center;
}

.choose-item__image--thermo {
    background: #1a1a2e;
}

.choose-item__image--thermo img {
    object-fit: contain;
    filter: none;
}

.choose-item__control {
    display: grid;
    justify-items: center;
    gap: 18px;
    color: #333;
    font-family: "Times New Roman", serif;
}

.choose-item__control p {
    position: relative;
    display: grid;
    gap: 14px;
    margin: 0;
    font-size: 17px;
    line-height: 1;
    text-align: center;
}

.choose-item__control p::after {
    position: absolute;
    top: 17px;
    left: 27px;
    width: 36px;
    height: 1px;
    background: rgba(52, 52, 52, 0.42);
    transform: rotate(-52deg);
    content: "";
}

.choose-item__control i {
    display: block;
    width: 1px;
    height: 58px;
    background: rgba(52, 52, 52, 0.32);
}

.choose-item__control div {
    display: flex;
    gap: 12px;
}

.choose-item__control b {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(52, 52, 52, 0.24);
}

.choose-item__control b:first-child,
.choose-item--text-right .choose-item__control b:last-child {
    background: rgba(52, 52, 52, 0.72);
}

.choose-item__control em {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 14px;
    color: rgba(52, 52, 52, 0.78);
    font-size: 23px;
    font-style: normal;
    line-height: 1;
}

.choose-item__control em+em {
    margin-top: -32px;
    margin-left: 58px;
}

.choose__closing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    margin: 52px 0 0;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.32em;
}

.choose__closing span {
    width: 68px;
    height: 1px;
    background: rgba(52, 52, 52, 0.32);
}

.choose__more {
    margin: 48px 0 0;
    text-align: center;
}

.works {
    position: relative;
    padding: 84px 0 70px;
    overflow: hidden;
    background: #edf2f6 url("../img/works-bg.webp?v=202606191807") center / cover no-repeat;
    color: var(--base);
    font-family: "Zen Kaku Gothic New", var(--font);
}

.works::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.08) 46%, rgba(255, 255, 255, 0.42)), radial-gradient(circle at 50% 58%, rgba(255, 255, 255, 0.22), rgba(207, 218, 228, 0.32) 100%);
    content: "";
    pointer-events: none;
}

.works__inner {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.about-page .works__inner {
    width: min(1100px, calc(100% - 48px));
}

.works__head {
    margin-bottom: 54px;
    text-align: left;
}

.works__head .section-kicker {
    color: #667889;
}

.works__head .section-kicker::after {
    margin-left: 0;
    background: #7f8f9e;
}

.works__head .section-title,
.works__head .section-lead {
    color: var(--base);
}

.works-slider {
    --works-gap: 26px;
    --works-peek: 0.32;
    --works-card-width: calc((100% - (var(--works-gap) * 2)) / (3 + var(--works-peek)));
}

.works-slider__viewport {
    width: 100%;
    padding: 0 0 8px;
    overflow: hidden;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}

.works-slider__viewport.is-dragging {
    cursor: grabbing;
}

.works-slider__track {
    display: flex;
    gap: var(--works-gap);
    align-items: stretch;
    transition: transform 620ms cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

.work-card {
    position: relative;
    flex: 0 0 var(--works-card-width);
    min-width: 0;
}

.work-card__link {
    display: flex;
    position: relative;
    flex-direction: column;
    height: 100%;
    color: inherit;
    overflow: hidden;
    border-radius: 8px;
    cursor: default;
    filter: drop-shadow(0 18px 38px rgba(48, 70, 92, 0.1));
}

.work-card__image {
    position: relative;
    order: 1;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0;
    overflow: hidden;
    background: #f4f7f9;
    cursor: zoom-in;
}

.work-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-user-drag: none;
    filter: saturate(0.86) contrast(0.98) brightness(1.02);
    transition: filter 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.works-slider .work-card:nth-child(1) .work-card__image img {
    object-position: 43% center;
}

.works-slider .work-card:nth-child(2) .work-card__image img {
    object-position: 45% center;
    filter: saturate(0.74) contrast(0.9) brightness(1.18);
}

.works-slider .work-card:nth-child(3) .work-card__image img {
    object-position: 58% center;
    filter: saturate(0.78) contrast(1.02) brightness(0.93);
}

.works-slider .work-card:nth-child(4) .work-card__image img {
    object-position: 52% center;
    filter: saturate(0.72) contrast(0.95) brightness(1.08);
}

.work-card__image:hover img {
    filter: saturate(0.92) contrast(1) brightness(1.03);
}

.work-card__badge {
    position: absolute;
    inset: 0 auto auto 0;
    display: grid;
    justify-items: start;
    padding: 22px 0 0 22px;
    color: #fff;
}

.work-card__index {
    display: grid;
    justify-items: start;
    color: #fff;
    font-family: "Roboto", var(--font);
    font-size: clamp(24px, 2vw, 32px);
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(15, 22, 33, 0.55);
}

.work-card__index::after {
    width: 34px;
    height: 2px;
    margin-top: 14px;
    background: currentColor;
    content: "";
}

.work-card__zoom-hint {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px 7px;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 10px 26px rgba(24, 39, 56, 0.16);
    color: #1f2733;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    pointer-events: none;
    transform: translateY(0);
    transition: background 280ms ease, box-shadow 280ms ease, transform 280ms ease;
}

.work-card__image:hover .work-card__zoom-hint {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 30px rgba(24, 39, 56, 0.2);
    transform: translateY(-2px);
}

.work-card__date {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.88);
    font-family: "Roboto", var(--font);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.work-card__panel {
    z-index: 2;
    position: relative;
    order: 2;
    flex: 1 1 auto;
    min-height: 150px;
    margin-top: -1px;
    padding: 24px 64px 22px 28px;
    border-radius: 0 0 5px 5px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
}

.work-card__meta {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 10px;
    margin-top: 14px;
}

.work-card__category {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    color: #303947;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.08em;
}

.work-card__category span {
    display: inline-flex;
    align-items: center;
    min-height: 31px;
    padding: 5px 13px 6px;
    border-radius: 3px;
    background: #eef0f2;
}

.work-card__title {
    margin: 0;
    color: var(--base);
    font-size: clamp(17px, 1.35vw, 23px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.08em;
}

.work-card__desc {
    margin: 12px 0 0;
    color: #303947;
    font-size: clamp(13px, 0.95vw, 16px);
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.08em;
}

.work-card__arrow {
    position: absolute;
    right: 28px;
    bottom: 30px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(27, 30, 41, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
    color: var(--base);
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    transition: background 200ms ease, color 200ms ease;
}

.work-card__link:hover .work-card__arrow {
    background: var(--base);
    color: #fff;
}

.works__bottom {
    display: grid;
    grid-template-columns: auto minmax(220px, 1fr) auto;
    align-items: center;
    gap: clamp(28px, 5vw, 76px);
    width: min(1100px, calc(100% - 48px));
    margin: 48px auto 0;
}

.works__more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    width: fit-content;
    min-width: 236px;
    min-height: 70px;
    padding: 0 34px;
    border: 0;
    border-radius: 5px;
    background: var(--base);
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.04em;
    box-shadow: 0 16px 28px rgba(17, 22, 31, 0.2);
    transition: color 200ms ease, background 200ms ease;
}

.works__more:hover {
    background: #2a303b;
    color: var(--white);
}

.works__more--head {
    grid-column: 2;
    grid-row: 1 / span 2;
    justify-self: end;
    margin-top: 2px;
}

.works__more::after {
    content: "→";
    font-size: 30px;
    line-height: 1;
}

.works__nav {
    display: flex;
    gap: 24px;
}

.works__nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    background: var(--white);
    color: var(--base);
    cursor: pointer;
    font-family: "Times New Roman", serif;
    font-size: 42px;
    line-height: 1;
    box-shadow: 0 12px 24px rgba(20, 28, 40, 0.12);
    transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.works__nav-button:hover {
    border-color: var(--base);
    background: var(--base);
    color: #fff;
}

.works__line {
    position: relative;
    flex: 1;
    display: block;
    height: 3px;
    border-radius: 999px;
    background: #dfe2e4;
}

.works__line span {
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 3px;
    border-radius: 999px;
    background: var(--base);
    content: "";
    transform: translateY(-50%);
    transition: width 420ms ease, left 420ms ease;
}

.works__counter {
    margin: 0;
    color: var(--base);
    font-family: "Roboto", var(--font);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.works__hint {
    grid-column: 1 / -1;
    margin: -12px 0 0;
    color: rgba(27, 30, 41, 0.42);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-align: center;
}

.instagram-section {
    position: relative;
    padding: 72px 0 86px;
    overflow: hidden;
    background: radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.94), rgba(246, 250, 253, 0.72) 46%, rgba(226, 236, 245, 0.9) 100%), linear-gradient(180deg, #f8fbfd 0%, #edf5fa 100%);
    color: #1f3348;
    font-family: "Zen Kaku Gothic New", var(--font);
}

.instagram-section::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.5)), radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0) 36%);
    content: "";
    pointer-events: none;
}

.instagram-section__inner {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.instagram-section__head {
    text-align: center;
}


/* Match the お客様の声 (voice) head design. */

.instagram-section__head .section-kicker {
    color: #8a9aab;
    font-family: "Roboto", var(--font);
}

.instagram-section__head .section-kicker::after {
    background: #9aabba;
}

.instagram-section__head .section-title {
    color: #303139;
    font-size: clamp(32px, 2.92vw, 42px);
    font-weight: 400;
    letter-spacing: 0.22em;
}

.instagram-section__head .section-lead {
    color: #303139;
    font-size: 16px;
    letter-spacing: 0.14em;
}

.instagram-panel {
    width: min(1100px, 100%);
    margin: 44px auto 0;
    padding: 32px clamp(34px, 6.4vw, 88px) 34px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 30px 70px rgba(67, 94, 120, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
}

.instagram-panel__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 30px;
    color: #668bb9;
}

.instagram-panel__icon,
.instagram-section__button svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.instagram-panel__icon {
    width: 46px;
    height: 46px;
}

.instagram-panel__brand span {
    width: 1px;
    height: 40px;
    background: rgba(85, 116, 150, 0.44);
}

.instagram-panel__brand b {
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.instagram-post {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 4px;
    background: #e8eff4;
    color: #234b76;
}

.instagram-post::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(18, 42, 64, 0.1));
    content: "";
    pointer-events: none;
}

.instagram-post img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.86) contrast(0.96) brightness(1.06);
    transform: scale(1.01);
    transition: transform 520ms ease;
}

.instagram-post:hover img {
    transform: scale(1.045);
}

.instagram-post__stack {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 21px;
    height: 21px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(18, 38, 58, 0.26);
}

.instagram-post__stack::before {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 17px;
    height: 17px;
    border: 2px solid rgba(255, 255, 255, 0.88);
    border-radius: 3px;
    content: "";
}

.instagram-post__copy {
    position: absolute;
    z-index: 3;
    top: 43%;
    left: 14%;
    display: grid;
    justify-items: start;
    gap: 9px;
    max-width: 76%;
    transform: translateY(-50%);
}

.instagram-post__copy small,
.instagram-post__copy strong,
.instagram-post__copy em {
    display: inline-block;
    width: fit-content;
    padding: 3px 10px 5px;
    background: rgba(255, 255, 255, 0.86);
    color: #234f7b;
    font-style: normal;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.12em;
    box-shadow: 0 1px 8px rgba(255, 255, 255, 0.24);
}

.instagram-post__copy small {
    font-size: clamp(11px, 1vw, 15px);
}

.instagram-post__copy strong {
    font-size: clamp(14px, 1.4vw, 21px);
}

.instagram-post__copy em {
    font-size: clamp(12px, 1.05vw, 16px);
}

.instagram-post__copy--center {
    top: 42%;
    left: 50%;
    justify-items: center;
    color: #234f7b;
    text-align: center;
    transform: translate(-50%, -50%);
}

.instagram-post__copy--center small,
.instagram-post__copy--center strong,
.instagram-post__copy--center em {
    background: transparent;
    box-shadow: none;
}

.instagram-post__copy--center small {
    padding: 0;
    font-size: clamp(18px, 1.8vw, 28px);
    letter-spacing: 0.12em;
}

.instagram-post__copy--center strong {
    padding: 0;
    font-size: clamp(25px, 2.5vw, 40px);
    font-weight: 500;
    letter-spacing: 0.16em;
}

.instagram-post__copy--center em {
    padding: 0;
    font-size: clamp(14px, 1.3vw, 19px);
}

.instagram-section__button {
    display: grid;
    grid-template-columns: 32px 1fr 32px;
    align-items: center;
    gap: 18px;
    width: min(430px, 100%);
    min-height: 56px;
    margin: 34px auto 0;
    padding: 0 28px;
    border: 1.5px solid #6389b8;
    border-radius: 50px;
    color: #214c78;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.instagram-section__button:hover {
    border-color: #214c78;
    background: #214c78;
    color: #fff;
}

.instagram-section__button svg {
    width: 26px;
    height: 26px;
    stroke-width: 3.4;
}

.instagram-section__button i {
    font-size: 24px;
    font-style: normal;
    line-height: 1;
}

.works-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 260ms ease;
}

.works-modal[hidden] {
    display: none;
}

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

.works-modal:not(.is-open) {
    transition-duration: 140ms;
}

.works-modal:not(.is-open) .works-modal__dialog {
    transition-duration: 140ms;
}

.works-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 18, 26, 0.78);
    backdrop-filter: blur(6px);
    cursor: pointer;
}

.works-modal__dialog {
    position: relative;
    z-index: 1;
    width: auto;
    max-width: min(1080px, calc(100vw - 48px));
    max-height: calc(100vh - 64px);
    background: transparent;
    box-shadow: 0 40px 90px rgba(8, 12, 22, 0.4);
    overflow: hidden;
    transform: scale(0.96);
    transition: transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.works-modal.is-open .works-modal__dialog {
    transform: scale(1);
}

.works-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(15, 18, 26, 0.7);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: background 200ms ease;
}

.works-modal__close:hover {
    background: rgba(15, 18, 26, 0.92);
}

.works-modal__figure {
    margin: 0;
    overflow: hidden;
    background: #1d2029;
}

.works-modal__image {
    display: block;
    width: auto;
    max-width: min(1080px, calc(100vw - 48px));
    max-height: calc(100vh - 64px);
    object-fit: contain;
}

body.has-modal-open {
    overflow: hidden;
}

.film-lightbox {
    position: fixed;
    inset: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 240ms ease;
}
.film-lightbox[hidden] { display: none; }
.film-lightbox.is-open { opacity: 1; pointer-events: auto; }
.film-lightbox:not(.is-open) { transition-duration: 160ms; }
.film-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 12, 22, 0.88);
    backdrop-filter: blur(6px);
    cursor: pointer;
}
.film-lightbox__figure {
    position: relative;
    z-index: 1;
    width: min(90vw, 900px);
    margin: 0;
    transform: scale(0.94);
    transition: transform 260ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.film-lightbox.is-open .film-lightbox__figure { transform: scale(1); }
.film-lightbox__image {
    width: 100%;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}
.film-lightbox__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    cursor: pointer;
    transition: background 180ms ease;
}
.film-lightbox__close:hover { background: rgba(255, 255, 255, 0.26); }
.film-lightbox__close svg { width: 20px; height: 20px; }

.film-lineup__media.choose-item__image { cursor: zoom-in; }

.pricing {
    position: relative;
    padding: 130px 0 130px;
    background: #f5f8fb url("../img/concerns-bg.webp?v=202606191807") center / cover no-repeat;
    color: #121823;
    overflow: hidden;
}

.pricing::before {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.22) 42%, rgba(228, 236, 243, 0.34) 100%), linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(241, 247, 251, 0.56));
    content: "";
    pointer-events: none;
}

.pricing__inner {
    position: relative;
    z-index: 1;
    width: min(1100px, 100%);
    margin: 0 auto;
    max-width: min(1100px, calc(100% - 48px));
}

.pricing__head {
    margin-bottom: 50px;
    text-align: left;
}

.pricing__head .section-kicker {
    text-align: left;
}

.pricing__head .section-kicker::after {
    margin-left: 0;
}

.pricing__head .section-title {
    font-size: clamp(32px, 2.92vw, 42px);
    font-weight: 500;
    letter-spacing: 0.12em;
}

.pricing__head .section-lead {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.9;
}

.pricing-table {
    margin-bottom: 30px;
    padding: 36px 40px 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.44)), rgba(255, 255, 255, 0.54);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 12px;
    box-shadow: 0 22px 45px rgba(106, 125, 143, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px) saturate(1.12);
}

.pricing-table__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.pricing-table__title {
    margin: 0;
    color: #121823;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.pricing-table__note {
    margin: 0;
    color: #738391;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
}

.pricing-table__list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-table__row {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 20px 26px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(106, 125, 143, 0.08);
}

.pricing-table__icon {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(234, 240, 246, 0.78);
    color: #31475a;
}

.pricing-table__icon svg {
    width: 30px;
    height: 30px;
}

.pricing-table__icon b {
    position: absolute;
    inset: 0;
    display: inline-grid;
    place-items: center;
    color: #31475a;
    font-family: "Roboto", var(--font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.pricing-table__icon--uv svg {
    opacity: 0.85;
}

.pricing-table__body {
    min-width: 0;
}

.pricing-table__name {
    margin: 0;
    color: #121823;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.pricing-table__desc {
    margin: 6px 0 0;
    color: #5a6878;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.75;
}

.pricing-table__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: #121823;
    font-family: "Roboto", var(--font);
}

.pricing-table__amount {
    font-size: clamp(24px, 2.4vw, 30px);
    font-weight: 500;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.pricing-table__unit {
    color: #738391;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.pricing__subtitle {
    margin: 0 auto 28px;
    color: #08204a;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: clamp(26px, 2.7vw, 38px);
    font-weight: 700;
    letter-spacing: 0.14em;
}

.pricing__toggle {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(14px, 2.6vw, 34px);
    width: min(680px, 100%);
    min-height: 94px;
    padding: 11px 18px 11px 28px;
    border: 2px solid rgba(126, 184, 255, 0.72);
    border-radius: 999px;
    font-size: clamp(21px, 2.1vw, 30px);
    background: radial-gradient(circle at 12% 50%, rgba(244, 250, 255, 0.96), rgba(255, 255, 255, 0.68) 22%, rgba(235, 245, 255, 0.72) 100%), rgba(255, 255, 255, 0.78);
    box-shadow: 0 24px 58px rgba(48, 104, 171, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.96), inset 0 -1px 0 rgba(126, 184, 255, 0.18);
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.pricing__toggle::before,
.pricing__toggle::after {
    position: absolute;
    z-index: -1;
    top: -26px;
    right: 74px;
    width: 108px;
    height: 178px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    transform: rotate(24deg);
    content: "";
}

.pricing__toggle::after {
    right: 60px;
    border-color: rgba(255, 255, 255, 0.52);
}

.pricing__toggle:hover {
    border-color: rgba(74, 152, 247, 0.86);
    background: radial-gradient(circle at 12% 50%, rgba(255, 255, 255, 1), rgba(249, 252, 255, 0.78) 24%, rgba(226, 241, 255, 0.82) 100%), rgba(255, 255, 255, 0.88);
    box-shadow: 0 28px 66px rgba(48, 104, 171, 0.18), inset 0 1px 0 rgba(255, 255, 255, 1), inset 0 -1px 0 rgba(126, 184, 255, 0.24);
    transform: translateY(-2px);
}

.pricing__toggle-mark {
    display: inline-grid;
    flex: 0 0 auto;
    place-items: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.86));
    color: #1d75e4;
    box-shadow: 0 14px 30px rgba(38, 102, 184, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.pricing__toggle-mark svg {
    width: 38px;
    height: 38px;
}

.pricing__toggle-text {
    flex: 1 1 auto;
    min-width: 0;
    font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", "Noto Serif JP", serif;
    line-height: 1.2;
    white-space: nowrap;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.pricing__toggle-icon {
    display: inline-grid;
    flex: none;
    place-items: center;
    width: 60px;
    height: 60px;
    border: 6px solid rgba(255, 255, 255, 0.88);
    border-radius: 50%;
    background: radial-gradient(circle at 38% 30%, rgba(51, 96, 180, 0.92), rgba(6, 32, 81, 1) 72%);
    color: #fff;
    box-shadow: 0 15px 34px rgba(11, 42, 92, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.28);
    transition: background 220ms ease, transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.pricing__toggle-icon svg {
    width: 28px;
    height: 28px;
}

.pricing__toggle[aria-expanded="true"] .pricing__toggle-icon {
    transform: rotate(90deg);
}

.pricing__toggle-note {
    margin: 0 0 22px;
    color: #4a5a72;
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
}

.pricing__collapse {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 380ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.pricing__collapse-inner {
    overflow: hidden;
    min-height: 0;
}

.pricing__collapse.is-open {
    grid-template-rows: 1fr;
}

.pricing__panel {
    padding: 44px 44px 52px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.44)), rgba(255, 255, 255, 0.54);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 12px;
    box-shadow: 0 22px 45px rgba(106, 125, 143, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px) saturate(1.12);
}

.pricing__field {
    border: 0;
    padding: 0;
    margin: 0 0 42px;
}

.pricing__field:last-of-type {
    margin-bottom: 32px;
}

.pricing__label {
    display: block;
    margin-bottom: 18px;
    color: #121823;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.14em;
}

.pricing-types {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.pricing-type {
    position: relative;
    display: block;
    cursor: pointer;
}

.pricing-type input {
    position: absolute;
    opacity: 0;
    inset: 0;
    cursor: pointer;
}

.pricing-type__inner {
    position: relative;
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 18px;
    row-gap: 6px;
    padding: 22px 24px 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(135, 150, 164, 0.22);
    border-radius: 8px;
    transition: border-color 200ms ease, background 200ms ease, color 200ms ease, box-shadow 240ms ease;
}

.pricing-type input:checked+.pricing-type__inner {
    background: #121823;
    border-color: #121823;
    color: #fff;
    box-shadow: 0 14px 36px rgba(18, 22, 36, 0.22);
}

.pricing-type input:checked+.pricing-type__inner::after {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #8796a4;
    color: #121823;
    font-size: 14px;
    font-weight: 700;
    content: "✓";
}

.pricing-type__icon {
    grid-row: 1 / 3;
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    color: #31475a;
    transition: color 200ms ease;
}

.pricing-type input:checked+.pricing-type__inner .pricing-type__icon {
    color: #fff;
}

.pricing-type__icon svg {
    width: 30px;
    height: 30px;
}

.pricing-type__badge {
    display: inline-flex;
    align-self: start;
    padding: 3px 10px;
    background: rgba(135, 150, 164, 0.18);
    border-radius: 3px;
    color: #4f6275;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    white-space: nowrap;
    width: fit-content;
}

.pricing-type input:checked+.pricing-type__inner .pricing-type__badge {
    background: #8796a4;
    color: #121823;
}

.pricing-type__name {
    grid-column: 2;
    color: inherit;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.pricing-type__desc {
    grid-column: 1 / -1;
    margin-top: 2px;
    color: rgba(26, 29, 39, 0.6);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.6;
}

.pricing-type input:checked+.pricing-type__inner .pricing-type__desc {
    color: rgba(255, 255, 255, 0.72);
}

.pricing-windows {
    display: grid;
    gap: 12px;
}

.pricing-windows__header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 44px;
    gap: 16px;
    padding: 0 4px;
    color: #738391;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.pricing-window {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 44px;
    gap: 16px;
    align-items: center;
}

.pricing-window__caption {
    display: none;
}

.pricing-window__cell {
    display: block;
}

.pricing-window__cell input {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(135, 150, 164, 0.28);
    border-radius: 4px;
    color: #121823;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.04em;
    appearance: none;
    -moz-appearance: textfield;
}

.pricing-window__cell input::-webkit-outer-spin-button,
.pricing-window__cell input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pricing-window__cell input:focus {
    outline: 2px solid rgba(135, 150, 164, 0.5);
    outline-offset: -1px;
}

.pricing-window__remove {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    color: #738391;
    cursor: pointer;
    transition: background 200ms ease, color 200ms ease;
}

.pricing-window__remove:hover {
    background: rgba(135, 150, 164, 0.14);
    color: #121823;
}

.pricing-window__remove svg {
    width: 18px;
    height: 18px;
}

.pricing-windows__add {
    margin-top: 14px;
    padding: 12px 22px;
    background: transparent;
    border: 1px dashed rgba(135, 150, 164, 0.45);
    border-radius: 4px;
    color: #31475a;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 200ms ease, border-color 200ms ease;
}

.pricing-windows__add:hover {
    background: rgba(135, 150, 164, 0.08);
    border-color: rgba(135, 150, 164, 0.7);
}

.pricing-summary {
    margin-top: 36px;
    padding: 38px 42px 42px;
    background: #1f2a3a;
    border-radius: 6px;
    color: #fff;
    text-align: center;
}

.pricing-summary__label {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.14em;
}

.pricing-summary__total {
    margin: 14px 0 0;
    color: #c8d4df;
    font-family: "Roboto", var(--font);
    font-size: clamp(48px, 6vw, 84px);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1;
}

.pricing-summary__total small {
    margin-left: 4px;
    font-size: 0.4em;
    color: #c8d4df;
    letter-spacing: 0.05em;
}

.pricing-summary__area {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.pricing-summary__area span {
    color: #fff;
    font-weight: 600;
}

.pricing-summary__actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.pricing-summary__cta--line {
    background: #05b842;
    border: 1px solid #05b842;
    color: #fff;
}

.pricing-summary__cta--line:hover {
    background: #04a83c;
    border-color: #04a83c;
}

.pricing-summary__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 24px;
    border-radius: 4px;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 200ms ease;
}

.pricing-summary__cta:hover {
    transform: translateY(-2px);
}

.pricing-summary__cta svg {
    width: 20px;
    height: 20px;
}

.pricing-summary__cta--phone {
    background: #fff;
    border: 1px solid rgba(23, 103, 200, 0.26);
    color: #1767c8;
    box-shadow: 0 7px 18px rgba(23, 103, 200, 0.16);
}

.pricing-summary__cta--phone:hover {
    background: #f6fbff;
    border-color: rgba(23, 103, 200, 0.4);
}

.pricing-summary__cta--mail {
    background: #ff8f08;
    border: 1px solid #ff8f08;
    color: #fff;
}

.pricing-summary__cta--mail:hover {
    background: #f08400;
    border-color: #f08400;
}

.pricing__note {
    margin: 20px 0 0;
    color: #738391;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.85;
}

.price-sim-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 28px auto 0;
    padding: 14px 32px;
    border: 2px solid rgba(45, 110, 170, 0.5);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.85);
    color: #1a3a5c;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.price-sim-toggle:hover {
    background: rgba(232, 244, 255, 0.95);
    border-color: rgba(45, 110, 170, 0.8);
}

.price-sim-toggle__icon {
    display: flex;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.price-sim-toggle[aria-expanded="true"] .price-sim-toggle__icon {
    transform: rotate(180deg);
}

.price-sim-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.price-sim-body.is-open {
    max-height: 3000px;
}

.voice {
    position: relative;
    min-height: 900px;
    padding: 96px 0 94px;
    overflow: hidden;
    background: #f7f9fa url("../img/voice-bg.webp?v=202606191807") center / cover no-repeat;
    color: #262a32;
    font-family: "Zen Kaku Gothic New", var(--font);
}

.voice::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.4) 46%, rgba(255, 255, 255, 0.82)), radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.18) 48%, rgba(229, 236, 240, 0.3) 100%);
    content: "";
    pointer-events: none;
}

.voice__inner {
    position: relative;
    z-index: 1;
    width: min(1100px, calc(100% - 48px));
    margin: 0 auto;
}

.voice__vertical {
    position: absolute;
    z-index: 1;
    top: 88px;
    left: clamp(28px, 10.5vw, 170px);
    margin: 0;
    color: rgba(38, 42, 50, 0.86);
    font-size: clamp(21px, 1.8vw, 30px);
    font-weight: 500;
    line-height: 1.9;
    letter-spacing: 0.34em;
    writing-mode: vertical-rl;
}

.voice__vertical::after {
    display: block;
    width: 1px;
    height: 86px;
    margin: 24px auto 0;
    background: rgba(38, 42, 50, 0.36);
    content: "";
}

.voice__head {
    text-align: center;
}

.voice__head .section-kicker {
    color: #8a9aab;
    font-family: "Roboto", var(--font);
}

.voice__head .section-kicker::after {
    background: #9aabba;
}

.voice__head .section-title {
    color: #303139;
    font-size: clamp(32px, 2.92vw, 42px);
    font-weight: 400;
    letter-spacing: 0.22em;
}

.voice__head .section-lead {
    color: #303139;
    font-size: 16px;
    letter-spacing: 0.14em;
}

.voice__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.voice__cards--single {
    grid-template-columns: minmax(0, 1fr);
    width: calc((100% - 48px) / 3);
    margin-right: auto;
    margin-left: auto;
}

.voice-card {
    position: relative;
    min-width: 0;
}

.voice-card__photo {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 50%;
    width: min(210px, 62%);
    aspect-ratio: 1.45 / 1;
    margin: 0;
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    background: #edf1f4;
    box-shadow: 0 18px 32px rgba(27, 34, 44, 0.16);
    transform: translateX(-50%);
}

.voice-card__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 34%;
    filter: saturate(0.9) contrast(0.98) brightness(1.04);
}

.voice-card__body {
    position: relative;
    min-height: 0;
    padding: 20px 20px 26px;
    overflow: hidden;
    border: 1px solid rgba(102, 120, 137, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 22px 44px rgba(40, 47, 56, 0.12);
    backdrop-filter: blur(14px);
}

.voice-card__image {
    position: relative;
    z-index: 1;
    aspect-ratio: 16 / 9;
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    background: #eef3f6;
}

.voice-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.voice-card__text {
    position: relative;
    padding-top: 16px;
}

.voice-card__illustration {
    position: absolute;
    top: 10px;
    right: 0;
    z-index: 3;
    width: min(90px, 28%);
    height: auto;
    pointer-events: none;
}

.voice-card__quote {
    display: none;
}

.voice-card__body p {
    position: relative;
    z-index: 1;
    margin: 28px 0 0;
    color: #1f3347;
    font-size: 16px;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.12em;
}

.voice-card__name {
    color: #1f3347;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-align: right;
}

.voice__more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 54px;
    width: min(320px, 100%);
    min-height: 58px;
    margin: 50px auto 0;
    border: 1px solid #557ca1;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    color: #557ca1;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.22em;
    transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.voice__more:hover {
    background: #557ca1;
    color: #fff;
    transform: translateY(-2px);
}


/* Tighten the gap between the voice and pricing sections below desktop. */

@media (max-width: 1180px) {
    .voice {
        min-height: auto;
        padding: 100px 0 88px;
    }
    .pricing {
        padding: 96px 0 104px;
    }
}

.service-area {
    --service-area-photo-width: calc(100vw - clamp(96px, 12vw, 220px));
    position: relative;
    overflow: hidden;
    padding: 0 0 120px;
    background: linear-gradient(180deg, #f7fafc 0%, #fff 46%, #eef4f8 100%);
}

.service-area__photo {
    width: var(--service-area-photo-width);
    max-width: var(--service-area-photo-width);
    height: clamp(260px, 28vw, 450px);
    margin: 0 auto 0 0;
    overflow: hidden;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 22px 48px rgba(49, 71, 90, 0.13);
    clip-path: inset(0 100% 0 0);
    transition: clip-path 820ms cubic-bezier(0.12, 0.86, 0.18, 1);
    will-change: clip-path;
}

.service-area.is-visible .service-area__photo {
    clip-path: inset(0 0 0 0);
}

.service-area__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
}

.service-area__inner {
    position: relative;
    width: min(1080px, 100%);
    min-height: clamp(390px, 31vw, 500px);
    margin: clamp(46px, 6vw, 82px) auto 0;
    padding: 0 24px;
}

.service-area__content {
    position: relative;
    z-index: 2;
    max-width: 510px;
}

.service-area .section-kicker {
    color: #557ca1;
    font-family: "Roboto", var(--font);
}

.service-area .section-kicker::after {
    margin-right: auto;
    margin-left: 0;
    background: #557ca1;
}

.service-area .section-title {
    margin-top: 26px;
    color: #151b25;
    font-size: clamp(32px, 2.92vw, 42px);
    letter-spacing: 0.12em;
}

.service-area__catch {
    margin: 32px 0 0;
    color: #121823;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: clamp(23px, 2.2vw, 32px);
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0.13em;
}

.service-area__text {
    margin: 20px 0 0;
    color: #3f4c5a;
    font-size: 15px;
    font-weight: 500;
    line-height: 2.05;
    letter-spacing: 0.08em;
}

.service-area__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.service-area__list li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 18px;
    border: 1px solid rgba(85, 124, 161, 0.36);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #557ca1;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.service-area__map {
    --service-area-map-x: translateX(0);
    position: absolute;
    z-index: 1;
    top: clamp(-35px, -1.5vw, 0px);
    right: 24px;
    width: min(500px, 46%);
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transform: var(--service-area-map-x) translateY(40px);
    transform-origin: center top;
    /* 街の写真(clip-path 820ms)が表示され終わってから発火させるため、開始を900ms遅らせる */
    transition: opacity 900ms cubic-bezier(0.22, 0.61, 0.36, 1) 900ms, transform 900ms cubic-bezier(0.22, 0.61, 0.36, 1) 900ms;
    will-change: opacity, transform;
}

.service-area.is-visible .service-area__map {
    opacity: 1;
    transform: var(--service-area-map-x) translateY(0);
}

.service-area__map::before {
    position: absolute;
    inset: 10% 2% 4% 2%;
    border-radius: 50%;
    background: rgba(85, 124, 161, 0.1);
    filter: blur(28px);
    content: "";
}

.service-area__map img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 26px 34px rgba(49, 71, 90, 0.16));
}

.faq {
    position: relative;
    overflow: hidden;
    padding: 86px 0 92px;
    background: radial-gradient(circle at 16% 12%, rgba(85, 124, 161, 0.12), transparent 34%), linear-gradient(180deg, #eef4f8 0%, #f8fbfd 54%, #f7fafc 100%);
    color: #152231;
    font-family: "Zen Kaku Gothic New", var(--font);
}

.faq::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0.54), transparent 38%), radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.8), transparent 30%);
    content: "";
    pointer-events: none;
}

.faq__inner {
    position: relative;
    z-index: 1;
    width: min(880px, calc(100% - 48px));
    margin: 0 auto;
}

.faq__head {
    margin-bottom: 60px;
    text-align: center;
}


/* Match the お客様の声 (voice) head design. */

.faq .section-kicker {
    color: #8a9aab;
    font-family: "Roboto", var(--font);
}

.faq .section-kicker::after {
    margin-right: auto;
    margin-left: auto;
    background: #9aabba;
}

.faq .section-title {
    margin-top: 36px;
    color: #303139;
    font-size: clamp(32px, 2.92vw, 42px);
    font-weight: 400;
    letter-spacing: 0.22em;
}

.faq__lead {
    max-width: 640px;
    margin: 22px auto 0;
    color: #303139;
    font-size: 16px;
    font-weight: 500;
    line-height: 2.05;
    letter-spacing: 0.14em;
}

.faq__list {
    display: grid;
    gap: 16px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid rgba(85, 124, 161, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 34px rgba(40, 58, 78, 0.08);
    transition: opacity 900ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 900ms cubic-bezier(0.22, 0.61, 0.36, 1), border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.faq-item:hover {
    border-color: rgba(85, 124, 161, 0.34);
    box-shadow: 0 20px 42px rgba(40, 58, 78, 0.12);
}

.faq-item.is-open {
    border-color: rgba(85, 124, 161, 0.4);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 46px rgba(40, 58, 78, 0.13);
}

.faq-item summary {
    position: relative;
    display: grid;
    grid-template-columns: 44px 1fr 28px;
    align-items: center;
    gap: 18px;
    min-height: 78px;
    padding: 20px 26px;
    color: #172536;
    cursor: pointer;
    list-style: none;
    transition: color 200ms ease;
}

.faq-item summary:hover {
    color: #0d1c2e;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item__label {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(234, 240, 246, 0.72);
    color: #31475a;
    font-family: "Roboto", var(--font);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
}

.faq-item__question {
    min-width: 0;
    font-size: 16.5px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.08em;
}

.faq-item__icon {
    position: relative;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(85, 124, 161, 0.1);
    transition: background 240ms ease;
}

.faq-item.is-open .faq-item__icon {
    background: #557ca1;
}

.faq-item__icon::before,
.faq-item__icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 1.5px;
    background: #557ca1;
    content: "";
    transform: translate(-50%, -50%);
    transition: transform 240ms ease, background 240ms ease;
}

.faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-item__icon::before,
.faq-item.is-open .faq-item__icon::after {
    background: #fff;
}

.faq-item.is-open .faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item__answer {
    overflow: hidden;
    padding: 0 26px 0 88px;
    will-change: height;
    transition: height 360ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.faq-item__answer p {
    margin: 0;
    padding: 18px 0 26px;
    border-top: 1px solid rgba(85, 124, 161, 0.16);
    color: #3f4c5a;
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.08em;
}

.contact {
    position: relative;
    overflow: hidden;
    padding: 82px 0 88px;
    background: #f7fafc url("../img/glass-film-hero-02.webp?v=202606191807") center / cover no-repeat;
    color: #0f263d;
    font-family: "Zen Kaku Gothic New", var(--font);
}

.contact::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(247, 250, 252, 0.92), rgba(255, 255, 255, 0.7) 48%, rgba(247, 250, 252, 0.94)), linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 250, 252, 0.72));
    backdrop-filter: blur(4px);
    content: "";
}

.contact__inner {
    position: relative;
    z-index: 1;
    width: min(900px, 100%);
    margin: 0 auto;
}

.contact__head {
    text-align: center;
}


/* Match the お客様の声 (voice) / よくある質問 (faq) head design. */

.contact__head .section-kicker {
    color: #8a9aab;
    font-family: "Roboto", var(--font);
}

.contact__head .section-kicker::after {
    margin-right: auto;
    margin-left: auto;
    background: #9aabba;
}

.contact__head .section-title {
    margin-top: 36px;
    color: #303139;
    font-size: clamp(32px, 2.92vw, 42px);
    font-weight: 400;
    letter-spacing: 0.22em;
}

.contact__head .section-lead {
    max-width: 640px;
    margin: 22px auto 0;
    color: #303139;
    font-size: 16px;
    font-weight: 500;
    line-height: 2.05;
    letter-spacing: 0.14em;
}

.contact__sublead {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin: 40px 0 0;
    color: #0f263d;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.contact__sublead span {
    width: 20px;
    height: 1px;
    background: #0f263d;
}

.contact__sublead span:first-child {
    transform: rotate(55deg);
}

.contact__sublead span:last-child {
    transform: rotate(-55deg);
}

.contact__actions {
    display: grid;
    grid-template-columns: minmax(0, 360px);
    justify-content: center;
    gap: 20px;
    width: min(760px, 100%);
    margin: 30px auto 24px;
}

.contact__action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    min-width: 0;
    min-height: 68px;
    padding: 0 24px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.08em;
    transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

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

.contact__action--phone {
    background: linear-gradient(135deg, #f6a11b, #ff9600);
    color: #fff;
    box-shadow: 0 14px 30px rgba(246, 151, 12, 0.24);
}

.contact__action--line {
    border: 1px solid #46ad55;
    background: rgba(255, 255, 255, 0.78);
    color: #39a34a;
}

.contact__action--line:hover {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 30px rgba(57, 163, 74, 0.12);
}

.contact__action-icon {
    flex: 0 0 auto;
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
}

.contact__action-icon svg {
    width: 26px;
    height: 26px;
}

.contact__line-badge {
    flex: 0 0 auto;
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #46ad55;
    color: #fff;
    font-family: "Roboto", var(--font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0;
}

.contact__arrow {
    flex: 0 0 auto;
    margin-left: auto;
    font-family: "Roboto", var(--font);
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
}

.contact__form {
    width: min(820px, 100%);
    margin: 0 auto;
    padding: 24px 44px 26px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 24px 48px rgba(32, 52, 72, 0.1);
    backdrop-filter: blur(14px);
}

.contact__row {
    margin-top: 15px;
}

.contact__row:first-child {
    margin-top: 0;
}

/* CF7 が万一挿入する <br> を無効化 */
.contact__row br {
    display: none;
}

.contact__row > p {
    margin: 0;
    width: 100%;
    min-width: 0;
}

.contact__row label {
    display: block;
    margin-bottom: 12px;
    padding-left: 4px;
    color: #0d2237;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.contact__row label span {
    margin-left: 0;
    margin-top: 10px;
    color: #f39a18;
    font-size: 11px;
    letter-spacing: 0.06em;
}

.wpcf7 {
    width: 100%;
}

.contact__row .wpcf7-form-control-wrap,
.contact__form .wpcf7-form-control-wrap {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
}

.contact__form * {
    box-sizing: border-box;
}

.contact__row input,
.contact__row select,
.contact__row textarea,
.contact__form input.wpcf7-form-control,
.contact__form select.wpcf7-form-control,
.contact__form textarea.wpcf7-form-control {
    width: 100% !important;
    min-height: 46px;
    padding: 11px 18px;
    border: 1px solid rgba(145, 159, 177, 0.34);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    color: #0f263d;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.06em;
    box-shadow: inset 0 1px 3px rgba(32, 52, 72, 0.04);
}

.contact__row select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #8493a6 50%), linear-gradient(135deg, #8493a6 50%, transparent 50%);
    background-position: calc(100% - 24px) 50%, calc(100% - 16px) 50%;
    background-size: 8px 8px, 8px 8px;
    background-repeat: no-repeat;
}

.contact__row textarea {
    min-height: 96px;
    resize: vertical;
}

.contact__row input::placeholder,
.contact__row textarea::placeholder {
    color: #9aa7b8;
}

.contact__row input:focus,
.contact__row select:focus,
.contact__row textarea:focus {
    outline: 2px solid rgba(85, 124, 161, 0.28);
    border-color: rgba(85, 124, 161, 0.5);
}

.contact__row--textarea label {
    padding-top: 0;
}

.contact__privacy {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin: 22px 0 0;
    padding: 14px 0;
    border-radius: 8px;
    color: #0f263d;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-decoration: underline;
    text-underline-offset: 4px;
    cursor: pointer;
}

.contact__privacy .wpcf7-form-control-wrap {
    display: inline-flex !important;
    align-items: center;
    gap: 24px;
}

.contact__privacy input {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin: 0 10px 0 0;
    vertical-align: middle;
    border: 1px solid #a9b5c3;
    accent-color: #0b263f;
    cursor: pointer;
}

.contact__submit {
    display: grid;
    grid-template-columns: 1fr 40px;
    align-items: center;
    width: 100%;
    min-height: 58px;
    margin-top: 22px;
    padding: 0 36px;
    border-radius: 8px;
    background: #0b263f;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.12em;
    cursor: pointer;
    box-shadow: 0 14px 26px rgba(11, 38, 63, 0.16);
    transition: transform 200ms ease, background 200ms ease;
}

.contact__submit:hover {
    background: #133857;
    transform: translateY(-2px);
}

.contact__submit span:first-child {
    justify-self: center;
}

.contact__submit span:last-child {
    justify-self: end;
    font-family: "Roboto", var(--font);
    font-size: 30px;
    font-weight: 400;
}

.news {
    position: relative;
    padding: 88px 0 82px;
    background: #fff;
    color: #142233;
    font-family: "Zen Kaku Gothic New", var(--font);
}

.news__inner {
    width: min(1060px, calc(100% - 48px));
    margin: 0 auto;
}

.news__head {
    display: block;
    margin-bottom: 34px;
    text-align: left;
}

.news__head .section-title {
    margin-top: 28px;
    font-size: clamp(32px, 2.92vw, 42px);
    letter-spacing: 0.18em;
}

.news__list {
    border-top: 1px solid rgba(102, 120, 137, 0.22);
}

.news-item {
    display: grid;
    grid-template-columns: 132px 104px 1fr;
    gap: 22px;
    align-items: center;
    min-height: 84px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(102, 120, 137, 0.18);
    color: inherit;
    transition: color 200ms ease, padding-left 200ms ease;
}

.news-item[data-reveal-item] {
    transition:
        opacity 1100ms cubic-bezier(0.22, 0.61, 0.36, 1),
        transform 1100ms cubic-bezier(0.22, 0.61, 0.36, 1),
        color 200ms ease,
        padding-left 200ms ease;
}

.news__list>[data-reveal-item]:nth-child(2) {
    transition-delay: 120ms;
}

.news__list>[data-reveal-item]:nth-child(3) {
    transition-delay: 220ms;
}

.news-item:hover {
    color: #1767c8;
    padding-left: 10px;
}

.news-item time {
    color: #667889;
    font-family: "Roboto", var(--font);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.news-item__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 5px 12px;
    border: 1px solid rgba(102, 120, 137, 0.26);
    border-radius: 999px;
    color: #667889;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.news-item p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.8;
}

.columns {
    position: relative;
    overflow: hidden;
    padding: 88px 0 96px;
    background:
        radial-gradient(circle at 16% 16%, rgba(190, 211, 229, 0.28), transparent 34%),
        linear-gradient(180deg, #f4f9fc 0%, #ffffff 100%);
    color: #142233;
    font-family: "Zen Kaku Gothic New", var(--font);
}

.columns__inner {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.columns__head {
    margin-bottom: 44px;
    text-align: left;
}

.columns__head .section-kicker::after {
    margin-right: 0;
    margin-left: 0;
}

.columns__head .section-title {
    margin-top: 34px;
    font-size: clamp(32px, 2.92vw, 42px);
    letter-spacing: 0.18em;
}

.column-slider {
    --works-gap: 26px;
    --works-peek: 0.32;
    --works-card-width: calc((100% - (var(--works-gap) * 2)) / (3 + var(--works-peek)));
}

.column-card {
    flex: 0 0 var(--works-card-width);
    min-width: 0;
}

.column-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 38px rgba(48, 70, 92, 0.1);
    color: inherit;
    cursor: pointer;
    transition: transform 240ms ease, box-shadow 240ms ease;
}

.column-card__link:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 54px rgba(48, 70, 92, 0.14);
}

.column-card__image {
    margin: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #eaf1f6;
}

.column-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.column-card__link:hover .column-card__image img {
    transform: scale(1.045);
}

.column-card__body {
    flex: 1 1 auto;
    padding: 24px 24px 28px;
}

.column-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin: 0 0 16px;
    color: #667889;
    font-family: "Roboto", var(--font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.column-card__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(102, 120, 137, 0.12);
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 11px;
}

.column-card h3 {
    margin: 0;
    color: #142233;
    font-size: clamp(17px, 1.45vw, 22px);
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.55;
}

.column-card__body > p:last-child {
    margin: 14px 0 0;
    color: #536272;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.85;
}

.columns__bottom {
    margin-top: 42px;
}

@media (max-width: 1023px) {
    .news {
        padding: 72px 0 70px;
    }
    .news-item {
        grid-template-columns: 118px 96px 1fr;
        gap: 16px;
    }
    .columns {
        padding: 76px 0 84px;
    }
    .column-slider {
        --works-gap: 18px;
        --works-peek: 0.28;
        --works-card-width: calc((100% - var(--works-gap)) / (2 + var(--works-peek)));
    }
}

@media (max-width: 767px) {
    .news {
        padding: 58px 0 58px;
    }
    .news__inner,
    .columns__inner {
        width: calc(100% - 36px);
    }
    .news__head {
        margin-bottom: 26px;
    }
    .news__head .section-title,
    .columns__head .section-title {
        margin-top: 24px;
        font-size: 32px;
    }
    .news-item {
        grid-template-columns: auto auto 1fr;
        gap: 10px 10px;
        min-height: 0;
        padding: 20px 0;
    }
    .news-item time {
        font-size: 13px;
    }
    .news-item__tag {
        min-height: 27px;
        font-size: 11px;
    }
    .news-item p {
        grid-column: 1 / -1;
        font-size: 14px;
        line-height: 1.75;
    }
    .columns {
        padding: 62px 0 68px;
    }
    .columns__head {
        margin-bottom: 30px;
    }
    .columns__head .section-lead {
        font-size: 14px;
        letter-spacing: 0.08em;
    }
    .column-slider {
        --works-gap: 14px;
        --works-peek: 0.18;
        --works-card-width: 82%;
    }
    .column-card__body {
        padding: 20px 18px 22px;
    }
    .columns__bottom {
        grid-template-columns: auto 1fr auto;
        gap: 16px;
        width: 100%;
        margin-top: 28px;
    }
    .columns__bottom .works__nav {
        gap: 10px;
    }
    .columns__bottom .works__nav-button {
        width: 46px;
        height: 46px;
        font-size: 34px;
    }
}

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 72px 0 42px;
    background: radial-gradient(circle at 14% 24%, rgba(186, 204, 219, 0.35), transparent 34%), linear-gradient(135deg, #f6f9fb 0%, #eef4f8 44%, #f9fbfc 100%);
    color: #1b2430;
    font-family: "Zen Kaku Gothic New", var(--font);
}

.site-footer::before {
    position: absolute;
    inset: -20%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.5), transparent 36%), radial-gradient(circle at 72% 12%, rgba(255, 255, 255, 0.82), transparent 32%);
    filter: blur(16px);
    content: "";
    pointer-events: none;
}

.site-footer__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) 1.45fr;
    column-gap: clamp(44px, 6.5vw, 92px);
    width: min(1280px, calc(100% - 140px));
    margin: 0 auto;
}

.site-footer__brand {
    min-width: 0;
}

.site-footer__tagline {
    margin: 0 0 20px;
    color: #1b2430;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.site-footer__logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    width: 132px;
}

.site-footer__logo img {
    display: block;
    width: 100%;
    height: auto;
    filter: brightness(0) saturate(100%) invert(11%) sepia(16%) saturate(819%) hue-rotate(178deg) brightness(95%) contrast(92%);
    opacity: 0.94;
}

.site-footer__tel {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin: 24px 0 0;
    color: #1d2633;
    font-family: "Roboto", "Zen Kaku Gothic New", var(--font);
}

.site-footer__tel span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.site-footer__tel a {
    font-size: clamp(24px, 2.25vw, 32px);
    font-weight: 400;
    letter-spacing: 0.12em;
    line-height: 1;
}

.site-footer__info {
    display: grid;
    gap: 14px;
    margin-top: 24px;
    font-style: normal;
}

.site-footer__info p {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 16px;
    align-items: start;
    margin: 0;
    color: #263243;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.72;
    letter-spacing: 0.08em;
}

.site-footer__icon {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    color: #9eb2c4;
}

.site-footer__icon svg,
.site-footer__social svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-footer__icon svg {
    stroke-width: 1.9;
}

.site-footer__social {
    display: flex;
    gap: 22px;
    margin-top: 22px;
}

.site-footer__social a {
    display: inline-grid;
    place-items: center;
    width: 31px;
    height: 31px;
    color: #a4b5c6;
    transition: color 180ms ease, transform 180ms ease;
}

.site-footer__social a:hover {
    color: #1b2430;
    transform: translateY(-2px);
}

.site-footer__social svg {
    stroke-width: 1.7;
}

.site-footer__nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-self: center;
    min-height: 250px;
    border-right: 1px solid rgba(119, 137, 154, 0.45);
}

.site-footer__nav ul {
    display: grid;
    align-content: start;
    gap: 34px;
    min-width: 0;
    margin: 0;
    padding: 28px clamp(24px, 3.6vw, 48px);
    border-left: 1px solid rgba(119, 137, 154, 0.45);
    list-style: none;
}

.site-footer__nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #1d2b3a;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.6;
    transition: color 180ms ease, transform 180ms ease;
}

.site-footer__nav a::before {
    color: #9eb2c4;
    font-family: "Roboto", var(--font);
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    content: "›";
}

.site-footer__nav a:hover {
    color: #557c9f;
    transform: translateX(3px);
}

.site-footer__copy {
    grid-column: 1 / -1;
    margin: 52px 0 0;
    padding-top: 26px;
    border-top: 1px solid rgba(119, 137, 154, 0.5);
    color: #1b2430;
    font-family: "Roboto", var(--font);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
}


/* Tighten vertical gaps between the lower sections below desktop. */

@media (max-width: 1180px) {
    .service-area {
        padding-bottom: 96px;
    }
    .faq {
        padding: 76px 0 82px;
    }
    .contact {
        padding: 76px 0 84px;
    }
}

@media (max-width: 960px) {
    .service-area {
        --service-area-photo-width: calc(100vw - 42px);
        padding: 0 0 82px;
    }
    .service-area__photo {
        height: clamp(190px, 34vw, 260px);
    }
    .service-area__inner {
        position: static;
        width: min(680px, calc(100% - 40px));
        min-height: 0;
        margin-top: clamp(20px, 3vw, 36px);
        padding: 0;
    }
    .service-area__content {
        max-width: none;
        text-align: left;
    }
    .service-area .section-kicker::after {
        margin-right: auto;
        margin-left: 0;
    }
    .service-area__list {
        justify-content: flex-start;
    }
    /* Map floats over the bottom-right of the photo (positioned against the section). */
    .service-area__map {
        --service-area-map-x: translateX(0);
        top: calc(clamp(190px, 34vw, 260px) - 130px);
        right: clamp(8px, 3vw, 36px);
        width: min(360px, 50vw);
    }
    .service-area__map img {
        width: 100%;
    }
    .faq {
        padding: 72px 0 78px;
    }
    .faq__inner {
        width: min(680px, calc(100% - 40px));
    }
    .faq__head {
        margin-bottom: 36px;
        text-align: center;
    }
    .faq .section-kicker::after {
        margin-right: auto;
        margin-left: auto;
    }
    .faq__lead {
        max-width: 560px;
        margin-right: auto;
        margin-left: auto;
    }
    .voice {
        min-height: auto;
        padding: 80px 0 82px;
    }
    .voice__inner {
        width: min(680px, calc(100% - 40px));
    }
    .voice__vertical {
        display: none;
    }
    .voice__cards {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 36px;
    }
    .voice__cards--single {
        width: 100%;
    }
    .voice-card {
        padding-top: 0;
    }
    .voice-card__photo {
        width: min(210px, 58%);
    }
    .voice-card__body {
        min-height: 0;
        padding: 18px 18px 24px;
    }
    .voice-card__illustration {
        top: 12px;
        right: 16px;
        width: min(118px, 38%);
    }
    .voice-card__quote {
        right: 16px;
        bottom: 16px;
        width: 60px;
        height: 46px;
    }
    .voice-card__body p {
        margin-right: 0;
        margin-left: 0;
        font-size: 15px;
        line-height: 2;
    }
    .pricing {
        padding: 80px 0;
    }
    .pricing__inner {
        width: min(680px, calc(100% - 40px));
        max-width: min(680px, calc(100% - 40px));
    }
    .pricing::before {
        background: rgba(246, 245, 240, 0.95);
    }
    .pricing-table {
        padding: 24px 18px 22px;
    }
    .pricing-table__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .pricing-table__row {
        grid-template-columns: 52px 1fr;
        grid-template-areas: "icon body" "price price";
        gap: 16px;
        padding: 18px 18px 20px;
    }
    .pricing-table__icon {
        grid-area: icon;
        width: 52px;
        height: 52px;
    }
    .pricing-table__icon svg {
        width: 26px;
        height: 26px;
    }
    .pricing-table__body {
        grid-area: body;
    }
    .pricing-table__price {
        grid-area: price;
        justify-content: flex-end;
        padding-top: 4px;
        border-top: 1px solid rgba(26, 29, 39, 0.08);
        margin-top: 4px;
        padding-top: 10px;
    }
    .pricing__panel {
        padding: 28px 22px 32px;
    }
    .pricing__toggle {
        gap: 14px;
        width: calc(100% - 12px);
        min-height: 72px;
        padding: 10px 30px 10px 16px;
        font-size: 17px;
        letter-spacing: 0.05em;
    }
    .pricing__toggle-text {
        white-space: nowrap;
        line-height: 1.35;
        text-align: left;
    }
    .pricing__toggle::before,
    .pricing__toggle::after {
        right: 48px;
        width: 72px;
        height: 120px;
    }
    .pricing__toggle::after {
        right: 38px;
    }
    .pricing__toggle-mark {
        width: 38px;
        height: 38px;
    }
    .pricing__toggle-mark svg {
        width: 23px;
        height: 23px;
    }
    .pricing__toggle-icon {
        display: none;
    }
    .pricing-types {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .pricing-windows__header {
        display: none;
    }
    .pricing-window {
        grid-template-columns: 1fr 1fr 44px;
        grid-template-areas: "w h r" "c c .";
        row-gap: 10px;
    }
    .pricing-window__cell:nth-child(1) {
        grid-area: w;
    }
    .pricing-window__cell:nth-child(2) {
        grid-area: h;
    }
    .pricing-window__cell:nth-child(3) {
        grid-area: c;
        max-width: 160px;
    }
    .pricing-window__remove {
        grid-area: r;
    }
    .pricing-window__caption {
        display: block;
        margin-bottom: 6px;
        color: #5b6070;
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.08em;
    }
    .pricing-summary {
        padding: 28px 22px 32px;
    }
    .pricing-summary__actions {
        grid-template-columns: 1fr;
    }
    .pricing-summary__cta {
        gap: 10px;
        min-height: 62px;
        padding: 16px 18px;
        font-size: 14px;
        line-height: 1.35;
        letter-spacing: 0.06em;
    }
    .pricing-summary__cta--mail {
        font-size: clamp(13px, 3.7vw, 14px);
        white-space: nowrap;
    }
    .pricing-summary__cta svg {
        width: 18px;
        height: 18px;
    }
    .contact {
        padding: 68px 0 76px;
    }
    .contact__inner {
        width: min(720px, calc(100% - 40px));
    }
    .contact__actions {
        grid-template-columns: 1fr;
        gap: 14px;
        width: 100%;
        margin: 8px auto 28px;
    }
    .contact__form {
        width: 100%;
        padding: 20px 18px 24px;
    }
    .contact__row--textarea label {
        padding-top: 0;
    }
    .site-footer {
        padding: 62px 0 38px;
    }
    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 42px;
        width: min(620px, calc(100% - 44px));
    }
    .site-footer__brand {
        text-align: left;
    }
    .site-footer__tel,
    .site-footer__info p,
    .site-footer__social {
        justify-content: flex-start;
    }
    .site-footer__info {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
    .site-footer__info p {
        text-align: left;
    }
    .site-footer__nav {
        min-height: 0;
    }
    .site-footer__nav ul {
        gap: 22px;
        padding: 22px 22px;
    }
    .site-footer__copy {
        margin-top: 6px;
    }
}

@media (max-width: 720px) {
    .works-modal {
        padding: 18px;
    }
    .works-modal__dialog,
    .works-modal__image {
        max-width: calc(100vw - 36px);
        max-height: calc(100vh - 36px);
    }
}

@media (max-width: 1180px) {
    .works__inner {
        width: calc(100% - 72px);
    }
    .instagram-panel {
        padding-inline: 46px;
    }
    .works-slider {
        --works-gap: 18px;
        --works-peek: 0.32;
    }
    .works-slider__viewport {
        width: 100%;
    }
    .work-card__panel {
        min-height: 220px;
        padding: 28px 62px 24px 24px;
    }
    .work-card__title {
        font-size: 18px;
    }
}


/* Match the FAQ's generous side gutters across the other sections (tablet range). */

@media (min-width: 961px) and (max-width: 1180px) {
    .concerns-inner,
    .works__inner,
    .voice__inner,
    .instagram-section__inner {
        width: min(1100px, calc(100% - 144px));
    }
    .pricing__inner {
        width: min(1100px, calc(100% - 144px));
        max-width: min(1100px, calc(100% - 144px));
    }
    .service-area__inner {
        width: min(1080px, calc(100% - 144px));
    }
    .contact__actions {
        margin-bottom: 68px;
    }
}

@media (max-width: 860px) {
    .works {
        padding: 64px 0 76px;
    }
    .instagram-section {
        padding: 62px 0 72px;
    }
    .instagram-section__inner {
        width: calc(100% - 36px);
    }
    .instagram-section__lead {
        font-size: 14px;
    }
    .instagram-panel {
        margin-top: 34px;
        padding: 24px 20px 28px;
        border-radius: 18px;
    }
    .instagram-panel__brand {
        gap: 18px;
        margin-bottom: 22px;
    }
    .instagram-panel__icon {
        width: 38px;
        height: 38px;
    }
    .instagram-panel__brand b {
        font-size: 30px;
    }
    .instagram-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .instagram-post__copy {
        left: 10%;
        max-width: 82%;
    }
    .works__inner {
        width: calc(100% - 56px);
    }
    .works__head {
        margin-bottom: 30px;
    }
    .works-slider {
        --works-gap: 16px;
        --works-peek: 0;
        --works-card-width: calc(100% - 64px);
    }
    .work-card {
        padding-right: 0;
    }
    .work-card__badge {
        width: 58px;
        padding-top: 20px;
    }
    .work-card__index {
        font-size: 24px;
    }
    .work-card__zoom-hint {
        top: 12px;
        right: 12px;
        min-height: 28px;
        padding: 5px 9px 6px;
        font-size: 10px;
        letter-spacing: 0.04em;
    }
    .work-card__date {
        font-size: 13px;
    }
    .work-card__panel {
        min-height: 0;
        padding: 18px 18px 18px 18px;
    }
    .work-card__title {
        font-size: 16px;
        line-height: 1.4;
    }
    .work-card__desc {
        margin-top: 8px;
        font-size: 12.5px;
        line-height: 1.6;
    }
    .work-card__meta {
        align-items: center;
        margin-top: 12px;
    }
    .work-card__category {
        gap: 6px;
        font-size: 12px;
    }
    .work-card__category span {
        min-height: 26px;
        padding: 4px 10px 5px;
    }
    .work-card__arrow {
        position: static;
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    .works__bottom {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 22px;
        width: 100%;
        margin-top: 15px;
    }
    .works__more--head {
        display: none;
    }
    .works__nav {
        grid-column: 1;
        grid-row: 2;
        gap: 14px;
    }
    .works__line {
        grid-column: 2;
        grid-row: 2;
    }
    .works__counter {
        grid-column: 3;
        grid-row: 2;
        font-size: 16px;
    }
    .works__hint {
        grid-row: 3;
        margin-top: 0;
        font-size: 12px;
    }
}

@media (max-width: 420px) {
    .instagram-section__title {
        font-size: 38px;
    }
    .instagram-section__lead {
        letter-spacing: 0.08em;
    }
    .instagram-panel {
        padding: 20px 12px 24px;
    }
    .instagram-panel__brand {
        gap: 14px;
    }
    .instagram-panel__brand span {
        height: 32px;
    }
    .instagram-grid {
        gap: 8px;
    }
    .instagram-post__stack {
        top: 9px;
        right: 9px;
        width: 17px;
        height: 17px;
    }
    .instagram-post__stack::before {
        width: 14px;
        height: 14px;
    }
    .instagram-post__copy {
        gap: 6px;
    }
    .instagram-post__copy small,
    .instagram-post__copy strong,
    .instagram-post__copy em {
        padding: 2px 7px 4px;
        letter-spacing: 0.06em;
    }
    .instagram-post__copy--center strong {
        font-size: 20px;
        letter-spacing: 0.04em;
    }
    .instagram-post__copy--center small {
        font-size: 13px;
    }
    .instagram-post__copy--center em {
        font-size: 12px;
    }
    .instagram-post__copy--center {
        right: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        transform: translateY(-50%);
    }
    .instagram-section__button {
        grid-template-columns: 26px 1fr 26px;
        min-height: 52px;
        padding: 0 18px;
        border-radius: 13px;
        font-size: 13px;
    }
    .work-card__arrow {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }
}

/* クロスフェード中に背景が透けて暗くならないよう、
   前面のスライドが完全に不透明になってから背面を消す */
@keyframes hero-fade-1 {
    0%,
    42% {
        opacity: 1;
    }
    50%,
    84% {
        opacity: 0;
    }
    90%,
    100% {
        opacity: 1;
    }
}

@keyframes hero-fade-2 {
    0%,
    28% {
        opacity: 0;
    }
    38%,
    73% {
        opacity: 1;
    }
    80%,
    100% {
        opacity: 0;
    }
}

@keyframes hero-fade-3 {
    0%,
    61% {
        opacity: 0;
    }
    71%,
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes hero-drift {
    0% {
        transform: scale(1.1);
    }
    33% {
        transform: scale(1.025);
    }
    100% {
        transform: scale(1.1);
    }
}

@keyframes hero-copy-float {
    0% {
        opacity: 0;
        filter: blur(8px);
        transform: translateY(18px);
    }
    55% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-copy span {
        opacity: 1;
        filter: none;
        transform: none;
        animation: none;
    }
    .about__kicker,
    .about__title {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .sky-seat__kicker,
    .sky-seat__heading,
    .sky-seat__rule {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .service-area__photo {
        clip-path: inset(0 0 0 0);
        transition: none;
    }
    .service-area__map {
        opacity: 1;
        transform: var(--service-area-map-x) translateY(0) scale(1);
        transition: none;
    }
    [data-reveal-heading]>.section-kicker,
    [data-reveal-heading]>h2,
    [data-reveal-heading]>.section-title,
    [data-reveal-heading]>.section-lead,
    [data-reveal-heading]>.choose__en,
    [data-reveal-heading]>.choose__bar,
    [data-reveal-heading]>.choose__lead,
    [data-reveal-heading]>.service-area__catch,
    [data-reveal-heading]>.service-area__text,
    [data-reveal-heading]>.faq__lead,
    [data-reveal-heading]>.contact__kicker,
    [data-reveal-heading]>.contact__title,
    [data-reveal-heading]>.contact__lead,
    [data-reveal-heading]>.contact__sublead {
        opacity: 1;
        transform: none;
        transition: none;
    }
    [data-reveal-item] {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .about__kicker,
    .about__text span {
        opacity: 1;
        filter: none;
        transform: none;
    }
    .about__kicker::after {
        opacity: 1;
        transform: scaleX(1);
        transition: none;
    }
    .choose__head h2 span:first-child::after {
        transform: scaleX(1);
        transition: none;
    }
    .mobile-menu.is-open .mobile-menu__bg,
    .mobile-menu.is-closing .mobile-menu__bg,
    .mobile-menu.is-open .mobile-menu__container {
        animation: none;
    }
    .mobile-menu.is-open .mobile-menu__bg,
    .mobile-menu.is-open .mobile-menu__container,
    .mobile-menu.is-open [data-menu-item] {
        clip-path: inset(0 0 0 0);
        opacity: 1;
        transform: none;
        transition: none;
    }
    .mobile-menu.is-open::before {
        display: none;
    }
}

@media (max-width: 1080px) {
    .site-header {
        grid-template-columns: 1fr auto;
        height: 100px;
        padding-left: 24px;
    }
    body.is-menu-open .site-header,
    body.is-menu-closing .site-header {
        color: var(--white);
    }
    .global-nav,
    .header-contact {
        display: none;
    }
    .menu-button {
        display: inline-flex;
        position: relative;
        align-items: center;
        justify-content: center;
        width: 68px;
        height: 68px;
        color: var(--white);
    }
    .menu-button span {
        position: absolute;
        width: 28px;
        height: 1px;
        background: currentColor;
        transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1), background 300ms ease;
    }
    .menu-button span:first-child {
        transform: translateY(-5px);
    }
    .menu-button span:last-child {
        transform: translateY(5px);
    }
    .menu-button[aria-expanded="true"] {
        color: var(--white);
    }
    body.is-header-dark:not(.is-menu-open):not(.is-menu-closing) .menu-button {
        color: #1b2735;
    }
    body.is-header-dark:not(.is-menu-open):not(.is-menu-closing) .menu-button span {
        background: #1b2735;
    }
    body.is-header-dark:not(.is-menu-open):not(.is-menu-closing) .header-logo {
        color: #1b2735;
    }
    body.is-menu-open .menu-button span,
    body.is-menu-closing .menu-button span,
    .menu-button[aria-expanded="true"] span {
        background: var(--white);
    }
    .menu-button[aria-expanded="true"] span:first-child {
        transform: rotate(45deg);
    }
    .menu-button[aria-expanded="true"] span:last-child {
        transform: rotate(-45deg);
    }
}


/* Tablet: enlarge the hero copy and logo. */

@media (min-width: 768px) and (max-width: 1023px) {
    .hero-logo {
        width: clamp(112px, 13vw, 140px);
    }
    .hero-copy {
        font-size: clamp(50px, 5.8vw, 58px);
    }
}

@media (max-width: 767px) {
    .site-header {
        height: 80px;
        padding-left: 18px;
    }
    .menu-button {
        width: 58px;
        height: 58px;
        transform: translateY(10px);
    }
    .hero {
        height: var(--hero-mobile-height, 100svh);
        min-height: var(--hero-mobile-height, 100svh);
        max-height: var(--hero-mobile-height, 100svh);
    }
    .hero-media {
        height: 100%;
    }
    .hero-media img {
        object-position: 40% center;
    }
    .hero-media:nth-child(2) img {
        object-position: 45% center;
    }
    .hero-media:nth-child(3) img {
        object-position: 43% center;
    }
    .hero-logo {
        top: 50px;
        left: 18px;
        width: 88px;
    }
    .hero-copy {
        right: 22px;
        left: auto;
        top: 54%;
        bottom: auto;
        transform: translateY(-50%);
        display: flex;
        writing-mode: vertical-rl;
        font-size: 30px;
        line-height: 1.45;
        letter-spacing: 0.28em;
    }
    .hero-copy span {
        display: inline-block;
        white-space: nowrap;
        animation-name: none;
    }
    .hero-copy span:nth-child(2) {
        animation-name: none;
    }
    body.hero-img-loaded .hero-copy span {
        animation-name: hero-copy-float;
        animation-delay: 600ms;
    }
    body.hero-img-loaded .hero-copy span:nth-child(2) {
        animation-delay: 820ms;
    }
    .hero-cta {
        right: 18px;
        bottom: 20px;
        width: min(318px, calc(100vw - 36px));
        gap: 10px;
    }
    .hero-cta__note {
        gap: 8px;
        font-size: 11px;
        letter-spacing: 0.05em;
    }
    .hero-cta__button {
        min-height: 52px;
        padding: 0 18px 0 26px;
        font-size: 14px;
        letter-spacing: 0.06em;
    }
    .hero-cta__button i {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }
    .hero-label {
        right: 14px;
        bottom: 28px;
        left: 14px;
        font-size: clamp(24px, 7.6vw, 32px);
    }
    .hero-label span {
        max-width: 100%;
        padding: 8px 14px 10px;
        border-radius: 6px;
    }
    .mobile-floating-cta {
        position: fixed;
        z-index: 9;
        right: 14px;
        bottom: max(14px, env(safe-area-inset-bottom));
        left: 14px;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
        padding: 5px 10px;
        border: 1px solid rgba(111, 126, 143, 0.48);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 18px 38px rgba(24, 39, 54, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.78);
        backdrop-filter: blur(12px) saturate(1.08);
        opacity: 0;
        visibility: hidden;
        transform: translateY(18px);
        transition: opacity 420ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 520ms;
        pointer-events: none;
    }
    body.is-mobile-cta-visible:not(.is-menu-open):not(.is-form-focus) .mobile-floating-cta {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition-delay: 0s;
        pointer-events: auto;
    }
    body.is-form-focus .mobile-floating-cta {
        opacity: 0;
        visibility: hidden;
        transform: translateY(18px);
        pointer-events: none;
    }
    .mobile-floating-cta__item {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        min-height: 54px;
        padding: 6px 2px;
        color: #172941;
        font-size: 12px;
        font-weight: 700;
        line-height: 1.25;
        letter-spacing: 0.03em;
        text-align: center;
        appearance: none;
        border: 0;
        background: transparent;
        font-family: inherit;
        cursor: pointer;
    }
    .mobile-floating-cta__item+.mobile-floating-cta__item::before {
        position: absolute;
        top: 9px;
        bottom: 9px;
        left: 0;
        width: 1px;
        background: rgba(106, 121, 138, 0.45);
        content: "";
    }
    .mobile-floating-cta__icon {
        display: inline-grid;
        place-items: center;
        flex: 0 0 auto;
        width: 28px;
        height: 28px;
        color: #5d6878;
        font-size: 0;
        letter-spacing: 0;
    }
    .mobile-floating-cta__icon svg {
        width: 28px;
        height: 28px;
    }
    .mobile-floating-cta__item--line .mobile-floating-cta__icon {
        color: #05b842;
    }
    .mobile-floating-cta__item--line .mobile-floating-cta__icon img {
        width: 22px;
        height: 22px;
        border-radius: 6px;
        display: block;
    }
    .mobile-floating-cta__item>span:last-child {
        white-space: nowrap;
    }
    .concerns {
        min-height: auto;
        padding: 66px 0 72px;
    }
    .section-kicker {
        font-size: 12px;
    }
    .section-kicker::after {
        margin-top: 20px;
    }
    .section-title {
        margin-top: 15px;
        font-size: 28px;
        letter-spacing: 0.1em;
    }
    /* Keep the concerns title on a single line on small screens. */
    #concerns-title {
        font-size: clamp(20px, 6vw, 26px);
        letter-spacing: 0.04em;
        white-space: nowrap;
    }
    .sp-only {
        display: inline;
    }
    .pc-only {
        display: none;
    }
    .concerns-inner .section-lead {
        margin-bottom: 30px;
    }
    .section-lead {
        margin-top: 16px;
        font-size: 14px;
        letter-spacing: 0.08em;
    }
    .concerns-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 38px;
    }
    .concern-card {
        grid-template-columns: 84px 1px 1fr;
        min-height: 110px;
        padding: 10px;
        border-radius: 13px;
    }
    .concern-icon {
        width: 66px;
        height: 66px;
    }
    .concern-icon svg {
        width: 42px;
        height: 42px;
    }
    .concern-separator {
        height: 44px;
    }
    .concern-text {
        padding-left: 22px;
        font-size: 18px;
        line-height: 1.75;
        letter-spacing: 0.08em;
        font-weight: 500;
    }
    .concern-arrow {
        right: 20px;
        bottom: 18px;
        width: 28px;
    }
    .concern-arrow::before {
        width: 28px;
    }
    .concerns-more {
        margin-top: 40px;
    }
    .service-area {
        --service-area-photo-width: calc(100vw - 28px);
        padding: 0 0 70px;
    }
    .service-area__photo {
        height: 200px;
    }
    .service-area__inner {
        position: static;
        width: calc(100% - 36px);
        margin-top: 28px;
        padding: 0;
    }
    .service-area .section-title {
        margin-top: 15px;
        font-size: 30px;
    }
    .service-area__catch {
        margin-top: 24px;
        font-size: 18px;
        letter-spacing: 0.09em;
        font-weight: 400;
        line-height: 1.5;
    }
    .service-area__text {
        font-size: 13px;
        line-height: 1.9;
        letter-spacing: 0.06em;
        text-align: left;
    }
    .service-area__list {
        gap: 8px;
        margin-top: 24px;
    }
    .service-area__list li {
        min-height: 34px;
        padding: 7px 14px;
        font-size: 12px;
    }
    .service-area__map img {
        width: 100%;
    }
    .service-area__map {
        top: 80px;
        right: 0;
        width: min(280px, 60vw);
    }
    .faq {
        padding: 58px 0 64px;
    }
    .faq__inner {
        width: calc(100% - 36px);
        gap: 28px;
    }
    .faq .section-title {
        margin-top: 15px;
        font-size: 28px;
    }
    .faq__lead {
        margin-top: 10px;
        font-size: 14px;
        line-height: 1.9;
        letter-spacing: 0.06em;
        text-align: left;
    }
    .faq__list {
        gap: 12px;
    }
    .faq-item summary {
        grid-template-columns: 36px 1fr 26px;
        gap: 12px;
        min-height: 68px;
        padding: 16px 16px;
    }
    .faq-item__label {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    .faq-item__question {
        font-size: 14px;
        line-height: 1.65;
        letter-spacing: 0.06em;
    }
    .faq-item__answer {
        padding: 0 16px 0 64px;
    }
    .faq-item__answer p {
        padding-bottom: 20px;
        font-size: 13px;
        line-height: 1.85;
        letter-spacing: 0.05em;
    }
    .contact {
        padding: 62px 0 70px;
    }
    .contact__head .section-title {
        margin-top: 15px;
        font-size: 28px;
    }
    .contact__head .section-lead {
        margin-top: 10px;
        font-size: 14px;
        line-height: 1.9;
        letter-spacing: 0.06em;
    }
    .contact__sublead {
        gap: 12px;
        font-size: 12px;
        letter-spacing: 0.06em;
    }
    .contact__row {
        margin-top: 10px;
    }
    .contact__row label {
        margin-bottom: 6px;
    }
    .contact__actions {
        margin: 8px auto 24px;
    }
    .contact__action {
        min-height: 64px;
        padding: 0 18px;
        font-size: 15px;
        letter-spacing: 0.06em;
    }
    .contact__line-badge {
        width: 32px;
        height: 32px;
        font-size: 8px;
    }
    .contact__arrow {
        font-size: 26px;
    }
    .contact__form {
        padding: 16px 16px 22px;
        border-radius: 10px;
    }
    .contact__row input,
    .contact__row select,
    .contact__row textarea {
        min-height: 48px;
        padding: 12px 14px;
        font-size: 16px;
    }
    .contact__row textarea {
        min-height: 140px;
    }
    .contact__privacy {
        align-items: center;
        padding: 16px 0;
        font-size: 14px;
        line-height: 1.6;
    }
    .contact__privacy input {
        width: 24px;
        height: 24px;
    }
    .contact__submit {
        min-height: 58px;
        padding: 0 22px;
        font-size: 17px;
    }
    .site-footer {
        padding: 48px 0 30px;
    }
    .site-footer__inner {
        width: calc(100% - 36px);
        gap: 30px;
    }
    .site-footer__tagline {
        margin-bottom: 16px;
        font-size: 12px;
        letter-spacing: 0.12em;
    }
    .site-footer__logo {
        width: 108px;
    }
    .site-footer__tel {
        gap: 12px;
        margin-top: 20px;
    }
    .site-footer__tel span {
        font-size: 11px;
    }
    .site-footer__tel a {
        font-size: clamp(21px, 6.2vw, 27px);
        letter-spacing: 0.08em;
    }
    .site-footer__info {
        gap: 13px;
        margin-top: 22px;
    }
    .site-footer__info p {
        grid-template-columns: 21px 1fr;
        gap: 12px;
        font-size: 12px;
        letter-spacing: 0.05em;
    }
    .site-footer__icon {
        width: 21px;
        height: 21px;
    }
    .site-footer__nav {
        grid-template-columns: 1fr;
        border-top: 0;
        border-right: 0;
    }
    .site-footer__nav ul {
        gap: 0;
        padding: 0;
        border-bottom: 0;
        border-left: 0;
    }
    .site-footer__nav li+li {
        border-top: 0;
    }
    .site-footer__nav a {
        width: 100%;
        min-height: 50px;
        padding: 0 4px;
        font-size: 13px;
    }
    .site-footer__copy {
        margin-top: 0;
        padding-top: 26px;
        border-top: 0;
        font-size: 11px;
        line-height: 1.7;
        text-align: left;
    }
    .sky-seat {
        height: 190lvh;
        min-height: 560px;
    }
    .sky-seat__sticky {
        --sky-frame-clip: inset(calc((100svh - 31.5vw) / 2) 22vw);
        --sky-frame-width: 56vw;
        --sky-frame-height: 31.5vw;
        --sky-bg-width: 100vw;
        --sky-bg-height: 56.25vw;
    }
    .sky-seat__frame {
        clip-path: inset(calc((100svh - 31.5vw) / 2) 22vw);
    }
    .sky-seat__title {
        top: 50%;
        left: 24px;
        right: 20px;
        gap: 14px;
        transform: translateY(-50%);
        white-space: normal;
    }
    .sky-seat__kicker {
        font-size: 13px;
        letter-spacing: 0.42em;
        padding-left: 0.42em;
    }
    .sky-seat__heading {
        font-size: clamp(26px, 7vw, 38px);
        line-height: 1.28;
        letter-spacing: 0.08em;
    }
    .sky-seat__rule {
        width: min(78vw, 360px);
    }
    .choose {
        padding: 64px 18px 58px;
    }
    .choose__inner {
        width: 100%;
    }
    .choose__head {
        margin-left: 0;
    }
    .choose__head h2 {
        font-size: 26px;
        letter-spacing: 0.08em;
    }
    .choose__head h2 span {
        white-space: normal;
    }
    .choose__en {
        font-size: 12px;
        letter-spacing: 0.34em;
    }
    .choose__bar {
        margin-top: 10px;
    }
    .choose__lead {
        margin-top: 10px;
        font-size: 13px;
        letter-spacing: 0.08em;
    }
    .choose__side,
    .choose__ghost {
        display: none;
    }
    .choose-item,
    .choose-item--text-left,
    .choose-item--text-right {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 46px;
        width: 100%;
        min-width: 0;
    }
    .choose-item--text-right .choose-item__control {
        order: 3;
    }
    .choose-item--text-right .choose-item__image {
        order: 1;
    }
    .choose-item--text-right .choose-item__body {
        order: 2;
    }
    .choose__inner > .choose-item:nth-of-type(odd) .choose-item__body {
        order: 1;
    }
    .choose__inner > .choose-item:nth-of-type(odd) .choose-item__image {
        order: 2;
    }
    .choose__inner > .choose-item:nth-of-type(even) .choose-item__image {
        order: 1;
    }
    .choose__inner > .choose-item:nth-of-type(even) .choose-item__body {
        order: 2;
    }
    .choose__inner > .choose-item:nth-of-type(odd) .choose-item__media-tabs,
    .choose__inner > .choose-item:nth-of-type(even) .choose-item__media-tabs {
        align-self: flex-start;
    }
    .choose-item__image {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }
    .choose-item__image--media-slider {
        aspect-ratio: auto;
        max-height: none;
    }
    .choose-item__image--slider {
        width: 100%;
        height: auto;
    }
    .choose-item__body,
    .choose-item__control {
        width: 100%;
        max-width: none;
        min-width: 0;
    }
    .choose-item__titleline {
        gap: 20px;
    }
    .choose-item__titleline span:last-child {
        width: 56px;
    }
    .choose-item__number {
        font-size: 26px;
    }
    .choose-item__body h3 {
        margin-top: 11px;
        font-size: 22px;
        letter-spacing: 0.06em;
        white-space: normal;
    }
    .choose-item__body p {
        margin-top: 14px;
        font-size: 13px;
        letter-spacing: 0.08em;
        white-space: normal;
    }
    .choose-item__control {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 18px;
    }
    .choose-item__control i {
        width: 42px;
        height: 1px;
    }
    .choose-item__control em+em {
        margin-top: 0;
        margin-left: -10px;
    }
    .choose__closing {
        gap: 16px;
        margin-top: 42px;
        font-size: 12px;
        letter-spacing: 0.16em;
    }
    .choose__closing span {
        width: 34px;
    }
    .choose__more {
        margin-top: 36px;
    }
    .spbr {
        display: block;
    }
}

@media (max-width: 1023px) {
    .about {
        padding-bottom: 48px;
    }
    .concerns {
        padding-top: 52px;
    }
    /* Sky-seat becomes a fixed 16:9 band (full content, no bars, no crop). */
    .sky-seat {
        height: auto;
        min-height: 0;
        background: #0d1922;
    }
    .sky-seat__sticky {
        position: relative;
        top: auto;
        height: auto;
        aspect-ratio: 16 / 9;
        background: #0d1922;
    }
    .sky-seat__sticky::before {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform: none;
    }
    .sky-seat__frame {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        clip-path: inset(30%);
    }
    /* Side gutters for the choose section */
    .choose {
        padding-left: clamp(24px, 6vw, 48px);
        padding-right: clamp(24px, 6vw, 48px);
    }
    .choose-item,
    .choose-item--text-left,
    .choose-item--text-right {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 40px;
        width: 100%;
        min-width: 0;
    }
    .choose__head+.choose-item {
        margin-top: 45px;
    }
    .choose__inner > .choose-item:nth-of-type(odd),
    .choose__inner > .choose-item:nth-of-type(even) {
        grid-template-columns: 1fr;
    }
    .choose__inner > .choose-item:nth-of-type(odd) .choose-item__image,
    .choose__inner > .choose-item:nth-of-type(even) .choose-item__image {
        order: 1;
    }
    .choose__inner > .choose-item:nth-of-type(odd) .choose-item__body,
    .choose__inner > .choose-item:nth-of-type(even) .choose-item__body {
        order: 2;
    }
    .choose-item--text-right .choose-item__image {
        order: 1;
    }
    .choose-item--text-right .choose-item__body {
        order: 2;
    }
    .choose-item__image {
        order: 1;
    }
    .choose-item__body {
        order: 2;
        transition-delay: 260ms;
    }
    /* Hide the slide control UI (numbers, dots, arrows) */
    .choose-item__control {
        display: none;
    }
    /* Unify all choose images to 16:9 and make them full width */
    .choose-item__image,
    .choose-item__image--slider {
        aspect-ratio: 16 / 9;
        max-height: none;
        width: 100%;
        height: auto;
    }
    .choose-item__image--media-slider {
        aspect-ratio: auto;
        max-height: none;
    }
    .choose-item__image--media-slider::after {
        content: "※ タップで切り替えられます";
        display: block;
        color: rgba(60, 80, 100, 0.52);
        font-size: 11px;
        letter-spacing: 0.06em;
        text-align: left;
    }
    .choose-item__media-tabs,
    .choose-item--text-right .choose-item__media-tabs {
        align-self: flex-start;
    }
    .choose-item__ba-divider::before {
        bottom: calc(50% + 36px);
        padding: 4px 8px;
        font-size: 10px;
    }
    .choose-item__ba-handle {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }
    .choose-item__ba-range {
        inset: -12px 0;
        height: calc(100% + 24px);
    }
}

@media (max-width: 480px) {
    .works-slider {
        --works-card-width: calc(100% - 84px);
    }
}


/* Mobile: tighten vertical spacing between sections. */

@media (max-width: 767px) {
    .about {
        padding-top: 52px;
        padding-bottom: 44px;
    }
    .concerns {
        padding-top: 50px;
        padding-bottom: 52px;
    }
    .choose {
        padding-top: 54px;
        padding-bottom: 48px;
    }
    .choose-item,
    .choose-item--text-left,
    .choose-item--text-right {
        margin-top: 55px;
    }
    .works {
        padding-top: 40px;
        padding-bottom: 52px;
    }
    .instagram-section {
        padding-top: 48px;
        padding-bottom: 52px;
    }
    .voice {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .pricing {
        padding-top: 52px;
        padding-bottom: 52px;
    }
    .service-area {
        padding-bottom: 52px;
    }
    .faq {
        padding-top: 46px;
        padding-bottom: 50px;
    }
    .contact {
        padding-top: 52px;
        padding-bottom: 56px;
    }
    .voice__head .section-title,
    .instagram-section__head .section-title {
        font-size: 28px;
    }
    .section-lead {
        margin-top: 10px;
    }
    .voice__head .section-lead,
    .instagram-section__head .section-lead {
        font-size: 14px;
    }
    .voice-card__body {
        padding: 14px 14px 22px;
    }
    .instagram-section__button {
        border-radius: 50px;
    }
    .instagram-panel {
        margin-top: 30px;
    }
    .pricing__head {
        margin-bottom: 40px;
    }
    .service-area__catch {
        margin-top: 10px;
    }
    .contact {
        padding-top: 40px;
    }
}


/* Mobile: unify all section side gutters to 15px. */

@media (max-width: 767px) {
    .about__inner,
    .concerns-inner,
    .works__inner,
    .instagram-section__inner,
    .voice__inner,
    .service-area__inner,
    .faq__inner,
    .contact__inner,
    .site-footer__inner {
        width: calc(100% - 30px);
        max-width: calc(100% - 30px);
        margin-left: auto;
        margin-right: auto;
    }
    .pricing__inner {
        width: calc(100% - 30px);
        max-width: calc(100% - 30px);
    }
    .choose {
        padding-left: 15px;
        padding-right: 15px;
    }
    .pricing__head .section-title {
        font-weight: 400;
    }
}


/* Mobile: section headings use font-weight 400. */

@media (max-width: 767px) {
    .section-title,
    .voice__head .section-title,
    .faq .section-title,
    .instagram-section__head .section-title,
    .contact__head .section-title,
    .about__title,
    .choose__head h2 {
        font-weight: 400;
    }
}


/* About page */

.about-page {
    background: #f7fafc;
    color: var(--base);
}

.about-page .site-header,
.home .site-header,
.front-page .site-header {
    background: transparent;
    color: var(--white);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}


.header-logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.header-logo span {
    display: block;
    color: currentColor;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.04em;
    white-space: nowrap;
    opacity: 0.8;
}

/* 個別エリアページ（白山市など）：明るいヒーロー背景でも読めるよう濃紺＋白グロー。
   メニューを開いた時（暗いオーバーレイ）は基本の白に戻す。 */
.single-service_area:not(.is-menu-open):not(.is-menu-closing) .header-logo span {
    color: #123a5e;
    opacity: 1;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.75), 0 0 2px rgba(255, 255, 255, 0.5);
}

@media (max-width: 767px) {
    .header-logo img {
        width: 88px;
    }
}

/* 白背景ページ: ハンバーガーを濃色に上書き（スクロール後も含む） */
.column-page .menu-button span,
.news-page .menu-button span,
.heat-film-page .menu-button span {
    background: #1b2735;
}

.about-kv {
    position: relative;
    display: grid;
    min-height: 100svh;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(245, 250, 253, 0.9), rgba(255, 255, 255, 0.98) 58%, rgba(238, 246, 251, 0.84)),
        radial-gradient(circle at 18% 24%, rgba(110, 181, 222, 0.2), transparent 34%),
        radial-gradient(circle at 82% 68%, rgba(122, 174, 199, 0.18), transparent 36%);
    place-items: center;
    font-family: "Zen Kaku Gothic New", var(--font);
    isolation: isolate;
}

.about-kv::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: url("../img/glass-film-hero-02.webp?v=202606191807") center / cover no-repeat;
    content: "";
    opacity: 0.18;
    filter: saturate(0.8) brightness(1.14);
}

.about-kv::after {
    position: absolute;
    right: max(24px, 8vw);
    bottom: max(46px, 9vh);
    z-index: -1;
    width: min(520px, 42vw);
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(141, 169, 187, 0.38);
    border-radius: 4px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(216, 233, 244, 0.2)),
        url("../img/about-film-install.webp?v=202606191807") center / cover no-repeat;
    box-shadow: 0 28px 70px rgba(36, 60, 78, 0.16);
    content: "";
    opacity: 0.82;
}

.about-kv__glass {
    position: absolute;
    inset: 9vh 9vw auto auto;
    z-index: -1;
    width: min(430px, 34vw);
    aspect-ratio: 1;
    border: 1px solid rgba(143, 174, 194, 0.28);
    border-radius: 50%;
    background: radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.86), rgba(218, 233, 243, 0.18) 54%, rgba(255, 255, 255, 0));
    filter: blur(0.2px);
}

.about-kv__inner {
    position: relative;
    width: min(1020px, calc(100% - 80px));
    padding: 150px 0 120px;
}

.about-kv__label {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin: 0 0 30px;
    color: #607382;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.24em;
}

.about-kv__label::after {
    display: block;
    width: 58px;
    height: 1px;
    background: currentColor;
    content: "";
    opacity: 0.56;
}

.about-kv h1 {
    margin: 0;
    color: #182329;
    font-size: clamp(48px, 7.2vw, 104px);
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: 0.1em;
}

.about-kv__lead {
    width: min(560px, 78%);
    margin: 48px 0 0;
    color: #34464f;
    font-size: clamp(15px, 1.22vw, 18px);
    font-weight: 500;
    line-height: 2.15;
    letter-spacing: 0.08em;
}

.about-kv__sounds {
    position: absolute;
    inset: auto 0 110px auto;
    display: grid;
    gap: 20px;
    color: rgba(27, 40, 49, 0.72);
    font-size: clamp(22px, 2.4vw, 36px);
    font-weight: 700;
    letter-spacing: 0.22em;
    transform: rotate(-8deg);
}

.about-kv__sounds span {
    display: block;
    text-shadow: 0 10px 24px rgba(54, 91, 113, 0.16);
}

.about-kv__sounds span:nth-child(2) {
    margin-left: 62px;
}

.about-kv__sounds span:nth-child(3) {
    margin-left: 118px;
}

.about-kv--city {
    display: block;
    min-height: 100svh;
    background: #dff4fb url("../img/about-ishikawa-cityscape-sharp.webp?v=202606191807") center / cover no-repeat;
}

.about-kv--city::before {
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(244, 251, 254, 0.06), rgba(255, 255, 255, 0.04) 40%, rgba(214, 239, 249, 0.26)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02) 58%, rgba(255, 255, 255, 0.14));
    opacity: 1;
    filter: none;
}

.about-kv--city::after,
.about-kv--city .about-kv__glass {
    display: none;
}

.about-kv--city .about-kv__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    width: min(1120px, calc(100% - 80px));
    min-height: 100svh;
    margin: 0 auto;
    padding: 112px 0 72px;
}

.about-kv--city .about-kv__label {
    grid-column: 1;
    align-self: end;
    margin: 0 0 32px;
    color: rgba(20, 55, 90, 0.78);
    text-shadow: 0 1px 18px rgba(255, 255, 255, 0.55);
}

.about-kv--city .about-kv__lead {
    grid-column: 1;
    align-self: end;
    width: min(540px, 54vw);
    margin: 0;
    color: #173653;
    text-shadow: 0 1px 18px rgba(255, 255, 255, 0.68);
}

.about-kv--city h1 {
    grid-column: 2;
    grid-row: 1 / span 2;
    justify-self: end;
    align-self: start;
    margin: 0;
    color: #073774;
    font-size: clamp(48px, 5.2vw, 74px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 16px rgba(255, 255, 255, 0.34);
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.about-kv--framed {
    position: relative;
    display: block;
    min-height: auto;
    margin: 100px auto 0;
    padding: 0 0 96px;
    overflow: visible;
    background-color: #f8fbfc;
    background-image: radial-gradient(rgba(91, 123, 145, 0.16) 1px, transparent 1px);
    background-size: 8px 8px;
    z-index: 1;
}

.about-kv--framed::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 300px;
    background: #fff;
    content: "";
}

.about-kv--framed::after {
    display: none;
}

.about-kv__photo {
    position: relative;
    z-index: 1;
    width: calc(100% - 8.56vw);
    height: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 30px 0 30px 30px;
    background: #dff4fb;
}

.about-kv__photo img {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 30px 0 30px 0;
    object-fit: cover;
    object-position: center;
    filter: none;
}

.about-kv__title-panel {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: end;
    gap: 28px;
    width: 40vw;
    min-width: 600px;
    height: 140px;
    margin: -60px 0 0 0;
    padding: 45px 0 0 calc(4.28vw + 40px);
    border-radius: 0 30px 30px 0;
    background: #fff;
    color: var(--base);
    box-shadow: none;
}

.about-kv__title-panel h1 {
    margin: 0;
    color: #263238;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.03em;
    writing-mode: horizontal-tb;
}

.about-kv__title-panel p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 6px;
    color: #8ba4b4;
    font-family: "Roboto", var(--font);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.about-kv__title-panel p::before {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d6bf1c;
    content: "";
}

@media (max-width: 1023px) {
    .about-kv {
        min-height: 760px;
    }
    .about-kv::after {
        right: 28px;
        bottom: 54px;
        width: min(420px, 56vw);
    }
    .about-kv__glass {
        top: 10vh;
        right: 2vw;
        width: 46vw;
    }
    .about-kv__inner {
        width: calc(100% - 72px);
        padding: 132px 0 170px;
    }
    .about-kv h1 {
        font-size: clamp(45px, 9vw, 78px);
    }
    .about-kv__lead {
        width: min(520px, 86%);
    }
    .about-kv__sounds {
        right: 4vw;
        bottom: 88px;
    }
    .about-kv--city .about-kv__inner {
        width: calc(100% - 56px);
        padding-top: 104px;
    }
    .about-kv--city h1 {
        font-size: clamp(44px, 8vw, 66px);
    }
    .about-kv--city .about-kv__lead {
        width: min(500px, 58vw);
    }
    .about-kv--framed {
        min-height: auto;
        margin-top: 100px;
        padding-bottom: 78px;
    }
    .about-kv__photo {
        width: calc(100% - 8.56vw);
        height: 470px;
    }
    .about-kv__title-panel {
        width: 58vw;
        min-width: 520px;
        height: 126px;
        margin-top: -54px;
        padding: 38px 0 0 calc(4.28vw + 34px);
    }
}

@media (max-width: 767px) {
    .about-kv {
        min-height: 100svh;
        place-items: start center;
    }
    .about-kv::before {
        opacity: 0.14;
    }
    .about-kv::after {
        right: 15px;
        bottom: 48px;
        width: calc(100% - 30px);
        opacity: 0.72;
    }
    .about-kv__glass {
        top: 88px;
        right: -24vw;
        width: 78vw;
    }
    .about-kv__inner {
        width: calc(100% - 30px);
        padding: 126px 0 260px;
    }
    .about-kv__label {
        margin-bottom: 24px;
        font-size: 12px;
        letter-spacing: 0.2em;
    }
    .about-kv__label::after {
        width: 42px;
    }
    .about-kv h1 {
        font-size: clamp(38px, 12vw, 58px);
        line-height: 1.34;
        letter-spacing: 0.06em;
    }
    .about-kv__lead {
        width: 100%;
        margin-top: 34px;
        font-size: 14px;
        line-height: 2;
    }
    .about-kv__sounds {
        right: 22px;
        bottom: 118px;
        gap: 12px;
        font-size: 21px;
        letter-spacing: 0.16em;
    }
    .about-kv__sounds span:nth-child(2) {
        margin-left: 34px;
    }
    .about-kv__sounds span:nth-child(3) {
        margin-left: 66px;
    }
    .about-kv--city {
        min-height: 100svh;
        background-position: 42% center;
    }
    .about-kv--city .about-kv__inner {
        display: grid;
        grid-template-columns: 1fr auto;
        width: calc(100% - 30px);
        min-height: 100svh;
        padding: 92px 0 46px;
    }
    .about-kv--city .about-kv__label {
        align-self: end;
        margin-bottom: 22px;
        color: rgba(16, 49, 82, 0.8);
    }
    .about-kv--city h1 {
        grid-column: 2;
        grid-row: 1 / span 2;
        font-size: clamp(38px, 12vw, 54px);
        line-height: 1.14;
        letter-spacing: 0.06em;
    }
    .about-kv--city .about-kv__lead {
        width: min(230px, 58vw);
        font-size: 13px;
        line-height: 1.85;
        color: #173653;
    }
    .about-kv--framed {
        min-height: auto;
        margin-top: 78px;
        padding-bottom: 56px;
    }
    .about-kv--framed::before {
        height: 200px;
    }
    .about-kv__photo {
        width: 90%;
        height: 300px;
        margin-top: 20px;
        border-radius: 15px;
    }
    .about-kv__photo img {
        border-radius: 15px;
    }
    .about-kv__title-panel {
        flex-wrap: wrap;
        gap: 12px 18px;
        width: min(86vw, 420px);
        min-width: 0;
        height: 104px;
        margin-top: -44px;
        padding: 28px 0 0 28px;
        border-radius: 0 18px 18px 0;
    }
    .about-kv__title-panel h1 {
        font-size: 30px;
    }
    .about-kv__title-panel p {
        margin-bottom: 4px;
        font-size: 15px;
    }
}


/* About page: Kon Sumai inspired hero */

.about-kv--kon {
    position: relative;
    display: block;
    min-height: 620px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #0d2736;
    color: #fff;
    isolation: isolate;
}

.about-kv--kon::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: none;
    background: none;
    content: "";
}

.about-kv--kon::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    display: block;
    width: 112%;
    background: url("../img/about-ishikawa-cityscape-sharp.webp?v=202606191807") center bottom / 100% auto no-repeat;
    content: "";
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transform-origin: 50% 100%;
    animation: about-kv-image-pan 1.6s cubic-bezier(0.645, 0.045, 0.355, 1) 0.22s both;
}

.about-kv__jimoto {
    position: relative;
    z-index: 2;
    width: 100%;
    justify-self: stretch;
    min-height: 620px;
}

.about-kv__jimoto h1 {
    position: absolute;
    top: auto;
    right: 10.4%;
    bottom: 23.9%;
    z-index: 2;
    margin: 0;
    color: #fff;
    font-size: 40px;
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: -0.02em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    opacity: 0;
    filter: blur(12px);
    translate: 0 18px;
    animation: about-kv-title-reveal 0.86s cubic-bezier(0.22, 1, 0.36, 1) 1.55s both;
    will-change: opacity, filter, translate;
}

.about-kv__jimoto h1::after {
    position: absolute;
    top: 220px;
    left: 38px;
    display: none;
    width: 1px;
    height: 280px;
    background: rgba(255, 255, 255, 0.9);
    content: "";
}

.about-kv__film-animation {
    display: none;
    position: absolute;
    top: clamp(178px, 26vh, 280px);
    left: clamp(28px, 9vw, 150px);
    z-index: 1;
    width: min(430px, 34vw);
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 4px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(186, 222, 239, 0.08)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.14),
        0 24px 70px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    pointer-events: none;
    backdrop-filter: blur(1.5px);
    animation: about-frame-glow 6.8s ease-in-out infinite;
}

.about-kv__film-animation::before,
.about-kv__film-animation::after {
    position: absolute;
    z-index: 2;
    background: rgba(255, 255, 255, 0.42);
    content: "";
}

.about-kv__film-animation::before {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
}

.about-kv__film-animation::after {
    top: 50%;
    right: 0;
    left: 0;
    height: 1px;
}

.about-kv__window-frame {
    position: absolute;
    inset: 13px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.38);
    box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.12);
}

.about-kv__film-sheet {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(100deg, rgba(255, 255, 255, 0.28), rgba(211, 238, 249, 0.52) 42%, rgba(255, 255, 255, 0.16)),
        repeating-linear-gradient(100deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 15px);
    opacity: 0.78;
    clip-path: inset(0 100% 0 0);
    animation: about-film-apply 6.8s cubic-bezier(0.74, 0, 0.18, 1) infinite;
}

.about-kv__clean-line {
    position: absolute;
    top: -22%;
    bottom: -22%;
    left: -18%;
    z-index: 3;
    width: 42px;
    border-right: 1px solid rgba(255, 255, 255, 0.76);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.82), transparent);
    opacity: 0;
    filter: blur(0.2px);
    transform: translateX(-120%) rotate(-8deg);
    animation: about-clean-sweep 6.8s cubic-bezier(0.76, 0, 0.18, 1) infinite;
}

.about-kv__shine {
    position: absolute;
    top: -38%;
    left: -42%;
    z-index: 4;
    width: 54%;
    height: 180%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.88), transparent);
    opacity: 0;
    transform: translateX(-80%) rotate(24deg);
    animation: about-glass-shine 6.8s ease-in-out infinite;
}

.about-kv__kon-sounds {
    position: absolute;
    bottom: 15vw;
    right: 42vw;
    z-index: 1;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
}

.about-kv__kon-sounds p {
    position: absolute;
    display: block;
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
    writing-mode: vertical-rl;
}

.about-kv__kon-sounds p:nth-child(1) {
    left: 0;
    bottom: 0;
}

.about-kv__kon-sounds p:nth-child(2) {
    left: -0.45vw;
    bottom: 42px;
}

.about-kv__kon-sounds p:nth-child(3) {
    left: 0.5vw;
    bottom: 92px;
}

@keyframes about-film-apply {
    0%,
    16% {
        clip-path: inset(0 100% 0 0);
    }
    50%,
    84% {
        clip-path: inset(0 0 0 0);
    }
    100% {
        clip-path: inset(0 100% 0 0);
    }
}

@keyframes about-clean-sweep {
    0%,
    13% {
        opacity: 0;
        transform: translateX(-120%) rotate(-8deg);
    }
    20% {
        opacity: 0.95;
    }
    50% {
        opacity: 0.95;
        transform: translateX(1180%) rotate(-8deg);
    }
    58%,
    100% {
        opacity: 0;
        transform: translateX(1180%) rotate(-8deg);
    }
}

@keyframes about-glass-shine {
    0%,
    52% {
        opacity: 0;
        transform: translateX(-80%) rotate(24deg);
    }
    64% {
        opacity: 0.65;
    }
    80%,
    100% {
        opacity: 0;
        transform: translateX(340%) rotate(24deg);
    }
}

@keyframes about-frame-glow {
    0%,
    100% {
        border-color: rgba(255, 255, 255, 0.4);
        box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, 0.12),
            0 24px 70px rgba(0, 0, 0, 0.12);
    }
    54% {
        border-color: rgba(255, 255, 255, 0.76);
        box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, 0.24),
            0 28px 86px rgba(255, 255, 255, 0.12);
    }
}

@keyframes about-kv-image-pan {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-10.7%, 0, 0);
    }
}

@keyframes about-kv-title-reveal {
    0% {
        opacity: 0;
        filter: blur(12px);
        translate: 0 18px;
    }
    100% {
        opacity: 1;
        filter: blur(0);
        translate: 0 0;
    }
}

@media (max-width: 1023px) {
    .about-kv--kon {
        min-height: 460px;
        margin-top: 0;
    }
    .about-kv--kon::after {
        width: 118%;
        animation-name: about-kv-image-pan-tablet;
    }
    .about-kv__jimoto {
        min-height: 460px;
    }
    .about-kv__jimoto h1 {
        top: auto;
        right: 10.4%;
        bottom: 23.9%;
        font-size: 36px;
    }
    .about-kv__film-animation {
        top: 250px;
        left: 7vw;
        width: min(330px, 42vw);
    }
    .about-kv__kon-sounds {
        right: 38vw;
        bottom: 18vw;
    }
}

@media (max-width: 767px) {
    .about-kv--kon {
        height: 340px;
        min-height: unset;
        margin-top: 0;
        background: #0d2736;
    }
    .about-kv--kon::after {
        top: 0;
        bottom: -4px;
        width: 166%;
        background-size: cover;
        background-position: center center;
        animation-name: about-kv-image-pan-mobile;
    }
    .about-kv__jimoto {
        height: 340px;
        min-height: unset;
    }
    .about-kv__jimoto h1 {
        top: 110px;
        right: 32px;
        bottom: auto;
        transform: none;
        font-size: 26px;
        line-height: 1.45;
        letter-spacing: 0.04em;
    }
    .about-kv__jimoto h1::after {
        top: 140px;
        left: 19px;
        height: 80px;
    }
    .about-kv__film-animation {
        top: auto;
        bottom: 54px;
        left: 18px;
        width: min(230px, 58vw);
        opacity: 0.82;
    }
    .about-kv__clean-line {
        width: 30px;
    }
    .about-kv__kon-sounds {
        right: 38vw;
        bottom: 30vw;
        left: auto;
    }
    .about-kv__kon-sounds p {
        font-size: 12px;
    }
    .about-kv__kon-sounds p:nth-child(1) {
        left: 0;
    }
    .about-kv__kon-sounds p:nth-child(2) {
        left: -0.83vw;
    }
    .about-kv__kon-sounds p:nth-child(3) {
        left: 0.83vw;
    }
}

@keyframes about-kv-image-pan-tablet {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-15.25%, 0, 0);
    }
}

@keyframes about-kv-image-pan-mobile {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-39.75%, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-kv__film-animation,
    .about-kv--kon::after,
    .about-kv__film-sheet,
    .about-kv__clean-line,
    .about-kv__shine {
        animation: none;
    }
    .about-kv__film-sheet {
        clip-path: inset(0 0 0 0);
    }
    .about-kv__clean-line,
    .about-kv__shine {
        opacity: 0;
    }
    .about-kv__jimoto h1 {
        animation: none;
        opacity: 1;
        filter: none;
        translate: none;
    }
}

/* About page: mission section */

.about-mission {
    position: relative;
    width: min(1075px, calc(100% - 80px));
    min-height: 760px;
    margin: -88px auto 120px;
    padding-top: 56px;
    color: #1f2a2f;
    font-family: "Zen Kaku Gothic New", var(--font);
}

.about-mission .txt {
    position: relative;
    z-index: 2;
    width: min(620px, 58%);
}

.about-mission .title {
    position: absolute;
    right: -455px;
    bottom: 548px;
    text-align: right;
    white-space: nowrap;
}

.about-mission .title i {
    display: inline-block;
    color: #8a7d66;
    font-family: "Roboto", var(--font);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.2em;
    opacity: 0.85;
}

.about-mission .title h1 {
    display: inline-block;
    margin: 0 0 0 20px;
    color: #1f2a2f;
    font-family: "Times New Roman", "Yu Mincho", "YuMincho", serif;
    font-size: 27px;
    font-weight: 400;
    letter-spacing: 0.16em;
}

.about-mission .title h1 span {
    padding-left: 2px;
    letter-spacing: 0.2em;
}

.about-mission .title-en {
    margin: 0 0 40px;
    color: #9b8a68;
    font-family: "Roboto", var(--font);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.15em;
    white-space: nowrap;
}

.about-mission .title-en .line {
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
}

.about-mission .title-en .line::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    height: 1px;
    background: currentColor;
    content: "";
}

.about-mission .txt h3 {
    margin: -10px 0 30px -1px;
    color: #1f2a2f;
    font-family: "Times New Roman", "Yu Mincho", "YuMincho", serif;
    font-size: 31px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.13em;
}

.about-mission .txt p {
    margin: 0 0 17px;
    color: #344047;
    font-size: 17px;
    font-weight: 500;
    line-height: 2.1;
    letter-spacing: 0.1em;
}

.about-mission .txt p:last-of-type {
    margin-top: 30px;
}

.about-mission .img {
    position: absolute;
    right: -5px;
    bottom: 10px;
    z-index: 1;
    width: 360px;
}

.about-mission .img figure {
    margin: 0;
}

.about-mission .img figure:first-of-type {
    margin-bottom: 30px;
}

.about-mission .img img {
    display: block;
    width: 100%;
    aspect-ratio: 360 / 240;
    height: auto;
    object-fit: cover;
}

@media (min-width: 1600px) {
    .about-mission {
        margin-top: -150px;
    }
}

@media (max-width: 1023px) {
    .about-mission {
        width: min(900px, calc(100% - 56px));
        margin-top: -48px;
    }
    .about-mission .txt {
        width: min(560px, 62%);
    }
    .about-mission .title {
        right: -345px;
    }
    .about-mission .img {
        width: 300px;
    }
}

@media (max-width: 767px) {
    .about-mission {
        width: 100%;
        min-height: 0;
        margin: 0 auto 90px;
        padding-top: 0;
    }
    .about-mission .txt {
        width: auto;
        margin-bottom: 80px;
        padding: 0 9.5%;
    }
    .about-mission .title {
        top: -16px;
        right: 10%;
        bottom: auto;
        text-align: left;
    }
    .about-mission .title i {
        position: absolute;
        top: -5px;
        left: -13px;
        font-size: 10px;
        line-height: 1;
        transform: rotate(90deg) scale(0.8);
        transform-origin: left center;
    }
    .about-mission .title h1 {
        margin: 0;
        font-size: 14px;
        letter-spacing: 0.25em;
        writing-mode: vertical-rl;
        white-space: nowrap;
    }
    .about-mission .title-en {
        margin-bottom: 24px;
        margin-left: 1px;
        font-size: 12px;
        letter-spacing: 0.12em;
    }
    .about-mission .txt h3 {
        margin: 0 0 24px -1px;
        font-size: 20px;
        line-height: 1.75;
        letter-spacing: 0.13em;
    }
    .about-mission .txt p {
        margin-bottom: 18px;
        font-size: 15px;
        line-height: 1.95;
        letter-spacing: 0.06em;
        text-align: justify;
    }
    .about-mission .txt p br {
        display: none;
    }
    .about-mission .txt p:last-of-type {
        margin-top: 22px;
    }
    .about-mission .img {
        position: static;
        width: auto;
        padding: 0 7.5%;
    }
    .about-mission .img figure:first-of-type {
        margin-bottom: 13px;
    }
    .about-mission .img img {
        width: 100%;
        aspect-ratio: 16 / 10;
    }
}

/* About hero (PC): zoom into the lower band so the cityscape shows, not the sky. */
@media (min-width: 1024px) {
  .about-page .about-kv--kon::after {
    background-position: center bottom;
    background-size: 135% auto;
  }
}

/* About page: concept section */

.about-concept {
    position: relative;
    display: flex;
    align-items: stretch;
    box-sizing: border-box;
    width: min(1140px, calc(100% - 56px));
    margin: 132px auto 0;
    padding: 100px 0 0 64px;
    color: #1f2a2f;
    font-family: "Zen Kaku Gothic New", var(--font);
}

.about-concept .wide {
    display: inline-block;
}

.about-concept .narrow {
    display: none;
}

.about-concept__ttl {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    color: #17232d;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.45;
}

.about-concept__ttl.line::before {
    position: absolute;
    top: -40px;
    left: 0;
    display: block;
    width: 40px;
    height: 1px;
    background: #667889;
    content: "";
}

.about-concept h3 {
    position: absolute;
    top: 126px;
    left: calc(64px + 350px - 6px);
    z-index: 3;
    color: #1f2a2f;
    font-family: "Times New Roman", "Yu Mincho", "YuMincho", serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.58;
    letter-spacing: 0.18em;
    white-space: nowrap;
    transform: translateX(-100%);
    writing-mode: vertical-rl;
}

.about-concept .img {
    position: relative;
    align-self: flex-start;
    width: 350px;
    min-width: 350px;
    aspect-ratio: 4 / 5;
    margin: 0;
}

.about-concept .img::before {
    position: absolute;
    inset: -18px 18px 18px -18px;
    z-index: 0;
    border: 1px solid rgba(120, 108, 86, 0.4);
    border-radius: 18px;
    content: "";
}

.about-concept .img img {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 30px 56px -26px rgba(74, 60, 38, 0.45);
    filter: saturate(0.92);
}

.about-concept .img::after {
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: 16px;
    background: linear-gradient(118deg, transparent 55%, rgba(255, 255, 255, 0.10) 64%, transparent 76%);
    content: "";
    pointer-events: none;
}

.about-concept > div {
    margin-right: -20px;
    padding: 0 0 0 74px;
}

.about-concept p {
    margin: 0 0 17px;
    color: rgba(70, 64, 52, 0.88);
    font-size: 15px;
    font-weight: 400;
    line-height: 2.2;
    letter-spacing: 0.07em;
    text-align: justify;
}

.about-concept p.name {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    margin: 48px 0 0;
    padding-top: 28px;
    border-top: 1px solid rgba(120, 108, 86, 0.32);
    letter-spacing: 0;
}

.about-concept p.name span {
    font-size: 11.5px;
    letter-spacing: 0.14em;
    color: rgba(120, 108, 86, 0.95);
}

.about-concept p.name strong {
    display: flex;
    align-items: baseline;
    gap: 16px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: rgba(70, 64, 52, 0.8);
}

.about-concept p.name strong em {
    font-family: "Times New Roman", "Yu Mincho", "YuMincho", serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.26em;
    color: #33302a;
}

.about-concept [data-reveal-item] {
    transform: translateY(40px);
    transition-duration: 1100ms;
    transition-property: opacity, transform;
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.about-concept [data-reveal-item].is-visible {
    transform: translateY(0);
}

.about-concept .about-concept__ttl[data-reveal-item] {
    transition-delay: 0ms;
}

.about-concept h3[data-reveal-item] {
    transform: translateX(-100%) translateY(40px);
    transition-delay: 100ms;
}

.about-concept h3[data-reveal-item].is-visible {
    transform: translateX(-100%) translateY(0);
}

.about-concept .img[data-reveal-item] {
    transition-delay: 180ms;
}

.about-concept > div[data-reveal-item] {
    transition-delay: 280ms;
}

@media (max-width: 1180px) and (min-width: 1024px) {
    .about-concept {
        width: calc(100% - 40px);
        padding-left: 24px;
    }
    .about-concept h3 {
        left: calc(24px + 330px - 6px);
    }
    .about-concept .img {
        width: 330px;
        min-width: 330px;
    }
    .about-concept > div {
        padding-left: 58px;
    }
}

@media (max-width: 1023px) {
    .about-concept {
        width: min(900px, calc(100% - 40px));
        margin-top: 110px;
        padding-left: 24px;
    }
    .about-concept__ttl {
        left: 0;
        font-size: 22px;
    }
    .about-concept .img {
        width: 300px;
        min-width: 300px;
    }
    .about-concept h3 {
        left: calc(24px + 300px - 6px);
    }
    .about-concept > div {
        margin-right: 0;
        padding-left: 58px;
    }
}

@media (max-width: 767px) {
    .about-concept {
        display: block;
        width: 100%;
        margin: 52px auto 0;
        padding: 20px 15px 0;
    }
    .about-concept__ttl {
        position: relative;
        top: auto;
        left: auto;
        margin: 0 0 32px;
        font-size: 22px;
    }
    .about-concept__ttl.line::before {
        top: -16px;
    }
    .about-concept .wide {
        display: none;
    }
    .about-concept .narrow {
        display: inline-block;
    }
    .about-concept h3 {
        position: absolute;
        top: 100px;
        right: 48px;
        z-index: 3;
        margin: 0;
        font-size: 18px;
        line-height: 1.58;
        letter-spacing: 0.18em;
        white-space: nowrap;
        writing-mode: vertical-rl;
        transform: none;
    }
    .about-concept h3[data-reveal-item] {
        transform: translateX(16px);
    }
    .about-concept h3[data-reveal-item].is-visible {
        transform: translateX(0);
    }
    .about-concept .img {
        position: relative;
        width: min(86%, 340px);
        min-width: 0;
        margin: 0 auto 30px;
    }
    .about-concept .img::before {
        inset: -12px 12px 12px -12px;
    }
    .about-concept .img img {
        position: relative;
        aspect-ratio: 4 / 5;
        height: auto;
    }
    .about-concept > div {
        padding: 0;
    }
    .about-concept p {
        margin-bottom: 18px;
        line-height: 2;
        text-align: justify;
    }
    .about-concept p br {
        display: none;
    }
    .about-concept p.name {
        margin: 36px 0 0;
    }
    .about-concept p.name strong {
        gap: 12px;
    }
    .about-concept p.name strong em {
        font-size: 22px;
    }
}

/* About page: yusan-style content layout */

.about-content {
    position: relative;
    margin: 0 auto;
    padding: 48px 0 220px;
    overflow: hidden;
    background: #f6fbfd;
    color: #1f2a2f;
    font-family: "Zen Kaku Gothic New", var(--font);
}

.about-content::before {
    position: absolute;
    top: 58%;
    right: 5.5vw;
    display: block;
    width: min(360px, 25vw);
    aspect-ratio: 1 / 1.28;
    background: url("../img/town.webp?v=202606191807") center / contain no-repeat;
    content: "";
    opacity: 0.3;
    pointer-events: none;
    filter: saturate(0.9);
}

.about-content .content-inner {
    position: relative;
    z-index: 1;
    width: min(1060px, calc(100% - 120px));
    margin: 0 auto 0 16.6666666667vw;
}

.about-content .ttl {
    margin: 0;
    color: #17232d;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.45;
}

.about-content .ttl.line {
    position: relative;
}

.about-content .ttl.line::before {
    position: absolute;
    top: -40px;
    left: 0;
    display: block;
    width: 40px;
    height: 1px;
    background: #667889;
    content: "";
}

.about-content .pc {
    display: block;
}

.about-content .about-con {
    margin-top: 100px;
}

.about-content .about-con:nth-of-type(2) {
    position: relative;
}

.about-content .about-con:nth-of-type(2)::before {
    display: none;
    content: none;
}

.about-content .about-con dl {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
}

.about-content .about-con dt {
    width: 210px;
    margin: 0;
    color: #17232d;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.1em;
}

.about-content .about-con dd {
    width: calc(100% - 210px);
    margin: 0;
    color: #33444d;
    font-size: 15px;
    font-weight: 500;
    line-height: 2.05;
    letter-spacing: 0.08em;
}

.about-content .service {
    font-weight: 700;
}

.about-content .about-con dd > p:first-child {
    margin-top: 0;
}

.about-content .service-list {
    max-width: 670px;
    margin-top: 45px;
}

.about-content .service-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 70px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-content .service-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(25% - 53px);
    min-width: 94px;
    text-align: center;
}

.about-content .service-icon {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    border: 1px solid rgba(102, 120, 137, 0.32);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.76);
    color: #667889;
    box-shadow: 0 16px 34px rgba(80, 94, 108, 0.1);
}

.about-content .service-icon svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-content .service-list li p {
    margin: 10px 0 0;
    color: #263540;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.about-content .office {
    margin-left: auto;
}

.about-content .office:not(:first-of-type) {
    margin-top: 30px;
}

.about-content .office a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.about-content .office-ttl {
    margin: 0 0 8px;
    color: #17232d;
    font-weight: 700;
}

.about-content .office-ttl::before {
    display: inline-block;
    width: 11px;
    height: 11px;
    margin-right: 7px;
    border: 2px solid #667889;
    border-radius: 50%;
    content: "";
}

.about-content .office p,
.about-content .area p {
    margin: 0;
}

.about-content .area .area-txt {
    margin-bottom: 30px;
}

.about-content .area p,
.about-content .area dl {
    width: min(540px, 100%);
}

.about-content .area dl {
    margin: 16px 0 0;
}

.about-content .area dl dt {
    width: 100%;
    margin: 0;
    color: #667889;
    font-family: "Roboto", var(--font);
    font-size: 16px;
    letter-spacing: 0.18em;
}

.about-content .area dl dd {
    display: inline;
    width: auto;
    margin: 0;
}

.about-content .area dl dd:not(:last-child)::after {
    content: "、";
}

.about-content [data-reveal-item] {
    transform: translateY(40px);
    transition-duration: 1100ms;
    transition-property: opacity, transform;
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.about-content [data-reveal-item].is-visible {
    transform: translateY(0);
}

.about-content .about-con:nth-of-type(1)[data-reveal-item] {
    transition-delay: 100ms;
}

.about-content .about-con:nth-of-type(2)[data-reveal-item] {
    transition-delay: 180ms;
}

.about-content .about-con:nth-of-type(3)[data-reveal-item] {
    transition-delay: 260ms;
}

@media (max-width: 1180px) and (min-width: 1024px) {
    .about-content .content-inner {
        width: calc(100% - 88px);
        margin-left: 44px;
        margin-right: 44px;
    }
}

@media (max-width: 1023px) {
    .about-content {
        padding: 48px 0 170px;
    }
    .about-content .content-inner {
        width: min(900px, calc(100% - 72px));
        margin-left: auto;
        margin-right: auto;
    }
    .about-content .about-con dt {
        width: 180px;
    }
    .about-content .about-con dd {
        width: calc(100% - 180px);
    }
    .about-content .service-list {
        max-width: 100%;
    }
    .about-content .service-list ul {
        gap: 34px 46px;
    }
    .about-content .service-list li {
        width: calc(25% - 35px);
    }
}

@media (max-width: 767px) {
    .about-content {
        padding: 44px 15px 135px;
    }
    .about-content::before {
        top: 66%;
        right: -64px;
        width: 210px;
        height: auto;
        aspect-ratio: 1 / 1.28;
        opacity: 0.18;
    }
    .about-content .content-inner {
        width: 100%;
        margin: 0;
    }
    .about-content .ttl {
        font-size: 20px;
    }
    .about-content .ttl.line::before {
        top: -34px;
    }
    .about-content .about-con {
        margin-top: 64px;
    }
    .about-content .about-con:first-of-type {
        margin-top: 42px;
    }
    .about-content .about-con:nth-of-type(2)::before {
        display: none;
    }
    .about-content .about-con dl {
        display: block;
    }
    .about-content .about-con dt {
        width: 100%;
        margin: 0;
        font-size: 18px;
    }
    .about-content .about-con dd {
        width: 100%;
        margin-top: 16px;
        font-size: 14px;
        line-height: 2;
        letter-spacing: 0.06em;
    }
    .about-content .service-list {
        margin-top: 25px;
    }
    .about-content .service-list ul {
        gap: 30px 0;
        justify-content: space-between;
    }
    .about-content .service-list li {
        width: 30%;
        min-width: 0;
    }
    .about-content .service-icon {
        width: 64px;
        height: 64px;
    }
    .about-content .service-icon svg {
        width: 34px;
        height: 34px;
    }
    .about-content .service-list li p {
        font-size: 11px;
        white-space: normal;
    }
    .about-content .pc {
        display: none !important;
    }
    .about-content .office:not(:first-of-type) {
        margin-top: 32px;
    }
    .about-content .area .area-txt {
        margin-bottom: 26px;
    }
    .about-content .area dl dt {
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-content [data-reveal-item] {
        filter: none;
    }
}

/* Pricing: window hotspot + price bubble (パンッと出る吹き出し料金) */

.pricing-mado {
    position: relative;
    margin: 88px 0 76px;
}

.pricing-mado__head {
    margin-bottom: 40px;
    text-align: center;
}

.pricing-mado__title {
    margin: 0 0 14px;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #16202c;
}

.pricing-mado__lead {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.9;
    letter-spacing: 0.05em;
    color: #51606e;
}

.pricing-mado__lead b {
    font-weight: 700;
    color: #2d6e9e;
}

.pricing-mado__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mado-card {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 22px;
    background: #dfe8ef;
    box-shadow:
        0 1px 2px rgba(18, 32, 47, 0.08),
        0 14px 34px -14px rgba(18, 32, 47, 0.28);
    cursor: pointer;
    transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.45s ease;
    -webkit-tap-highlight-color: transparent;
}

.mado-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 2px 4px rgba(18, 32, 47, 0.08),
        0 26px 48px -16px rgba(18, 32, 47, 0.36);
}

.mado-card__media {
    position: absolute;
    inset: 0;
    display: block;
}

.mado-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 1s cubic-bezier(0.2, 0.7, 0.3, 1), filter 0.5s ease;
}

.mado-card:hover .mado-card__media img {
    transform: scale(1.05);
}

.mado-card.is-open .mado-card__media img {
    filter: brightness(0.88) saturate(0.92);
}

.mado-card__num {
    position: absolute;
    top: 16px;
    left: 18px;
    z-index: 3;
    font-family: "Roboto", var(--font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: #fff;
    text-shadow: 0 1px 10px rgba(10, 22, 34, 0.45);
}

.mado-card__label {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 56px 20px 16px;
    background: linear-gradient(180deg, transparent, rgba(13, 24, 36, 0.58) 80%);
    text-align: left;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mado-card.is-open .mado-card__label {
    opacity: 0;
}

.mado-card__name {
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
}

.mado-card__size {
    font-family: "Roboto", var(--font);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.82);
}

/* ---------- pulsing hotspot (パンパン点滅マーカー) ---------- */

.mado-card__spot {
    position: absolute;
    top: var(--spot-y, 36%);
    left: var(--spot-x, 50%);
    z-index: 5;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    transform: translate(-50%, -50%);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.mado-card__spot:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 2px;
    border-radius: 50%;
}

/* core dot */
.mado-card__spot i {
    position: relative;
    z-index: 2;
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #2e6fd8;
    border: 4px solid #fff;
    box-shadow: 0 2px 10px rgba(13, 36, 64, 0.45), 0 0 0 5px rgba(46, 111, 216, 0.30);
    transition: transform 0.35s cubic-bezier(0.3, 1.5, 0.5, 1), background 0.3s ease;
}

.mado-card:hover .mado-card__spot i {
    transform: scale(1.12);
}

/* blinking ripple rings */
.mado-card__spot::before,
.mado-card__spot::after {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(86, 148, 230, 0.45);
    content: "";
    animation: mado-pulse 1.9s cubic-bezier(0.2, 0.55, 0.35, 1) infinite;
}

.mado-card__spot::after {
    animation-delay: 0.65s;
}

@keyframes mado-pulse {
    0% { transform: scale(0.34); opacity: 0.95; }
    70% { transform: scale(1.45); opacity: 0; }
    100% { transform: scale(1.45); opacity: 0; }
}

/* open: marker stays solid, rings stop */
.mado-card.is-open .mado-card__spot::before,
.mado-card.is-open .mado-card__spot::after {
    animation: none;
    opacity: 0;
}

.mado-card.is-open .mado-card__spot i {
    background: #1c4f9e;
    transform: scale(1.05);
}

/* tap hint pill below the marker */
.mado-card__spot-hint {
    position: absolute;
    top: calc(var(--spot-y, 36%) + 34px);
    left: var(--spot-x, 50%);
    z-index: 4;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(46, 111, 216, 0.2);
    box-shadow: 0 8px 20px -8px rgba(13, 36, 64, 0.4);
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #2e5fa8;
    white-space: nowrap;
    transform: translateX(-50%);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    animation: mado-hint-bob 2.4s ease-in-out infinite;
}

/* small tail pointing up at the marker */
.mado-card__spot-hint::before {
    position: absolute;
    top: -5px;
    left: calc(50% - 5px);
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.94);
    border-top: 1px solid rgba(46, 111, 216, 0.2);
    border-left: 1px solid rgba(46, 111, 216, 0.2);
    transform: rotate(45deg);
    content: "";
}

@keyframes mado-hint-bob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(4px); }
}

.mado-card.is-open .mado-card__spot-hint {
    opacity: 0;
    transform: translateX(-50%) scale(0.85);
    animation: none;
}

/* ---------- speech bubble (パーンと出る吹き出し) ---------- */

.mado-card__bubble {
    position: absolute;
    top: calc(var(--spot-y, 36%) + 36px);
    left: 50%;
    z-index: 6;
    width: min(86%, 320px);
    padding: 18px 20px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(46, 111, 216, 0.16);
    box-shadow:
        0 2px 6px rgba(13, 36, 64, 0.10),
        0 24px 48px -16px rgba(13, 36, 64, 0.38);
    text-align: left;
    transform: translateX(-50%) scale(0.4);
    transform-origin: 50% -26px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* bubble tail pointing at the hotspot */
.mado-card__bubble::before {
    position: absolute;
    top: -8px;
    left: calc(50% - 9px);
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(46, 111, 216, 0.16);
    border-left: 1px solid rgba(46, 111, 216, 0.16);
    transform: rotate(45deg);
    content: "";
}

.mado-card.is-open .mado-card__bubble {
    visibility: visible;
    pointer-events: auto;
    animation: mado-baan 0.55s cubic-bezier(0.24, 1.65, 0.4, 1) both;
}

@keyframes mado-baan {
    0% { transform: translateX(-50%) scale(0.4); opacity: 0; }
    60% { transform: translateX(-50%) scale(1.05); opacity: 1; }
    80% { transform: translateX(-50%) scale(0.985); }
    100% { transform: translateX(-50%) scale(1); opacity: 1; }
}

@keyframes price-case-panel-in {
    from { opacity: 0; transform: translateX(-16px); }
    to   { opacity: 1; transform: translateX(0); }
}

.mado-card__bubble-head {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 8px;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #2e5fa8;
}

.mado-card__bubble-head i {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #2e6fd8;
    box-shadow: 0 0 0 3px rgba(46, 111, 216, 0.18);
}

.mado-card__bubble-price {
    margin: 0 0 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(46, 95, 168, 0.25);
    font-family: "Roboto", var(--font);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #14283f;
}

.mado-card__bubble-price span {
    font-size: 0.6em;
    font-weight: 600;
    color: #51606e;
}

.mado-card__bubble-specs {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 0 0 14px;
}

.mado-card__bubble-specs > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mado-card__bubble-specs dt {
    flex-shrink: 0;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #6b7886;
}

.mado-card__bubble-specs dd {
    margin: 0;
    font-family: "Roboto", var(--font);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #1d2c3c;
    text-align: right;
}

.mado-card__chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #eaf2fc;
    border: 1px solid rgba(46, 111, 216, 0.22);
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #2e5fa8;
}

.mado-card__chip::before {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2e6fd8;
    content: "";
}

.mado-card__bubble-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2e6fd8, #1c4f9e);
    box-shadow: 0 10px 22px -10px rgba(28, 79, 158, 0.65);
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #fff;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.mado-card__bubble-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px -10px rgba(28, 79, 158, 0.75);
    filter: brightness(1.06);
    opacity: 1;
}

.mado-card__bubble-cta span {
    font-family: "Roboto", var(--font);
    transition: transform 0.25s ease;
}

.mado-card__bubble-cta:hover span {
    transform: translateX(3px);
}

/* bubble content stagger */
.mado-card__bubble-head,
.mado-card__bubble-price,
.mado-card__bubble-specs {
    opacity: 0;
}

.mado-card.is-open .mado-card__bubble-head { animation: mado-rise 0.4s 0.16s cubic-bezier(0.2, 0.8, 0.3, 1) both; }
.mado-card.is-open .mado-card__bubble-price { animation: mado-rise 0.4s 0.24s cubic-bezier(0.2, 0.8, 0.3, 1) both; }
.mado-card.is-open .mado-card__bubble-specs { animation: mado-rise 0.4s 0.32s cubic-bezier(0.2, 0.8, 0.3, 1) both; }

@keyframes mado-rise {
    from { transform: translateY(10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.pricing-mado__note {
    margin: 26px auto 0;
    max-width: 760px;
    font-size: 12px;
    line-height: 1.9;
    letter-spacing: 0.04em;
    color: #6b7886;
    text-align: center;
}

@media (max-width: 1023px) {
    .pricing-mado .pricing-mado__item[data-reveal-item],
    .pricing-mado .pricing-mado__note[data-reveal-item] {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .pricing-mado__grid {
        display: grid;
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: min(420px, 74%);
        gap: 18px;
        margin: 0 -5%;
        padding: 8px 5% 18px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .pricing-mado__grid::-webkit-scrollbar {
        display: none;
    }
    .pricing-mado__item {
        scroll-snap-align: center;
    }
    .mado-card__bubble {
        width: min(92%, 320px);
    }
}

@media (max-width: 767px) {
    .pricing-mado {
        margin: 64px 0 56px;
    }
    .pricing-mado__head {
        margin-bottom: 26px;
    }
    .pricing-mado__lead {
        font-size: 13.5px;
    }
    .pricing-mado__grid {
        grid-auto-columns: 82%;
        margin: 0 -7.5%;
        padding: 8px 7.5% 18px;
        gap: 14px;
    }
    .pricing-mado .mado-card {
        aspect-ratio: 4 / 5.35;
    }
    .pricing-mado .mado-card__bubble {
        top: auto;
        bottom: 16px;
        width: calc(100% - 28px);
        max-width: none;
        padding: 15px 16px 14px;
        border-radius: 16px;
        transform-origin: 50% 0;
    }
    .pricing-mado .mado-card__bubble::before {
        top: -7px;
    }
    .pricing-mado .mado-card__bubble-head {
        margin-bottom: 6px;
        font-size: 11.5px;
        line-height: 1.35;
    }
    .pricing-mado .mado-card__bubble-price {
        margin-bottom: 9px;
        padding-bottom: 9px;
        font-size: 27px;
    }
    .pricing-mado .mado-card__bubble-specs {
        gap: 5px;
        margin-bottom: 10px;
    }
    .pricing-mado .mado-card__bubble-specs dt,
    .pricing-mado .mado-card__bubble-specs dd,
    .pricing-mado .mado-card__chip {
        font-size: 10.5px;
    }
    .pricing-mado .mado-card__bubble-cta {
        min-height: 42px;
        padding: 10px 12px;
        border-radius: 10px;
        font-size: 12.5px;
    }
    .pricing-mado__note {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mado-card,
    .mado-card__media img {
        transition: none;
    }
    .mado-card__spot::before,
    .mado-card__spot::after,
    .choose-item__ba-handle::before,
    .choose-item__ba-handle::after {
        animation: none;
        opacity: 0;
    }
    .mado-card__spot-hint {
        animation: none;
    }
    .mado-card.is-open .mado-card__bubble,
    .mado-card.is-open .mado-card__bubble-head,
    .mado-card.is-open .mado-card__bubble-price,
    .mado-card.is-open .mado-card__bubble-specs,
    .mado-card.is-open .mado-card__bubble-cta {
        animation: none;
        opacity: 1;
        transform: translateX(-50%);
    }
    .mado-card.is-open .mado-card__bubble-head,
    .mado-card.is-open .mado-card__bubble-price,
    .mado-card.is-open .mado-card__bubble-specs,
    .mado-card.is-open .mado-card__bubble-cta {
        transform: none;
    }
}

/* About page: representative message (代表挨拶) */

.about-message {
    position: relative;
    margin: 0 0 140px;
    padding: 110px 0 120px;
    overflow: hidden;
    background:
        radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.55), transparent 42%),
        radial-gradient(circle at 8% 88%, rgba(255, 250, 240, 0.4), transparent 38%),
        linear-gradient(160deg, #ece5d8, #f3eee4 58%, #e8e0d0);
    color: #3a352c;
    font-family: "Zen Kaku Gothic New", var(--font);
}

/* hairline top edge */
.about-message::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(120, 108, 86, 0.25), transparent);
    content: "";
}

/* ghost typography */
.about-message__ghost {
    position: absolute;
    top: 34px;
    right: -22px;
    margin: 0;
    font-family: "Times New Roman", serif;
    font-size: clamp(96px, 13vw, 190px);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(120, 108, 86, 0.18);
    user-select: none;
    pointer-events: none;
}

.about-message__inner {
    position: relative;
    width: min(1140px, calc(100% - 80px));
    margin: 0 auto;
}

.about-message__head {
    display: flex;
    align-items: baseline;
    gap: 18px;
    margin-bottom: 64px;
}

.about-message .title-en--light {
    margin: 0;
    color: #9b8a68;
    font-family: "Roboto", var(--font);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.15em;
    white-space: nowrap;
}

.about-message .title-en--light .line {
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
}

.about-message .title-en--light .line::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    height: 1px;
    background: currentColor;
    content: "";
}

.about-message__sub {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: rgba(90, 80, 60, 0.62);
}

.about-message__grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 76px;
    align-items: start;
}

/* photo with offset frame */
.about-message__photo {
    position: relative;
    margin: 26px 0 0;
}

.about-message__photo::before {
    position: absolute;
    inset: -18px 18px 18px -18px;
    z-index: 0;
    border: 1px solid rgba(120, 108, 86, 0.4);
    border-radius: 18px;
    content: "";
}

.about-message__photo img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 30px 56px -26px rgba(74, 60, 38, 0.45);
    filter: saturate(0.92);
}

/* glass shine over the photo */
.about-message__photo::after {
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: 16px;
    background: linear-gradient(118deg, transparent 55%, rgba(255, 255, 255, 0.10) 64%, transparent 76%);
    content: "";
    pointer-events: none;
}

.about-message__photo figcaption {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 18px;
    padding-left: 2px;
}

.about-message__photo figcaption strong {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #33302a;
}

.about-message__photo figcaption span {
    font-family: "Roboto", var(--font);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(120, 108, 86, 0.9);
}

.about-message__body {
    max-width: 600px;
}

.about-message__body h3 {
    margin: 0 0 40px;
    font-family: "Times New Roman", "Yu Mincho", "YuMincho", serif;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.14em;
    color: #33302a;
}

.about-message__text p {
    margin: 0 0 24px;
    font-size: 15px;
    font-weight: 400;
    line-height: 2.2;
    letter-spacing: 0.07em;
    color: rgba(70, 64, 52, 0.88);
    text-align: justify;
}

.about-message__sign {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid rgba(120, 108, 86, 0.32);
}

.about-message__sign span {
    font-size: 11.5px;
    letter-spacing: 0.14em;
    color: rgba(120, 108, 86, 0.95);
}

.about-message__sign strong {
    display: flex;
    align-items: baseline;
    gap: 16px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: rgba(70, 64, 52, 0.8);
}

.about-message__sign strong em {
    font-family: "Times New Roman", "Yu Mincho", "YuMincho", serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.26em;
    color: #33302a;
}

@media (max-width: 1023px) {
    .about-message__grid {
        grid-template-columns: 330px 1fr;
        gap: 48px;
    }
}

@media (max-width: 767px) {
    .about-message {
        margin-bottom: 90px;
        padding: 72px 0 80px;
    }
    .about-message__ghost {
        top: 22px;
        right: -10px;
        font-size: 84px;
    }
    .about-message__inner {
        width: 100%;
        padding: 0 9.5%;
    }
    .about-message__head {
        margin-bottom: 40px;
    }
    .about-message__grid {
        grid-template-columns: none;
        gap: 0;
    }
    .about-message__body h3 {
        margin-bottom: 28px;
        font-size: 24px;
        line-height: 1.75;
    }
    .about-message__photo {
        order: 2;
        margin: 10px 0 36px;
    }
    .about-message__photo::before {
        inset: -12px 12px 12px -12px;
    }
    .about-message__body {
        display: contents;
    }
    .about-message__body h3 {
        order: 1;
    }
    .about-message__text {
        order: 3;
    }
    .about-message__text p {
        font-size: 14.5px;
        line-height: 2.05;
    }
    .about-message__sign {
        order: 4;
        margin-top: 28px;
    }
    .about-message__grid {
        display: flex;
        flex-direction: column;
    }
}

/* FAQ page */

.faq-page {
    background: #f7fafc;
}

/* hero: rich navy band, echoes the about KV / footer */
.faq-hero {
    position: relative;
    padding: 176px 0 104px;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.8), transparent 48%),
        radial-gradient(circle at 12% 88%, rgba(96, 175, 224, 0.3), transparent 44%),
        linear-gradient(165deg, #c4e1f5, #e6f4fc 52%, #a9d3ee);
    color: #1f2e3d;
    font-family: "Zen Kaku Gothic New", var(--font);
}

.column-page .faq-hero {
    background: url('../img/c_bg.webp') center center / cover no-repeat;
    color: #fff;
}

.column-page .faq-hero::before {
    background: rgba(10, 20, 35, 0.42);
    height: 100%;
    opacity: 1;
    filter: none;
    -webkit-mask-image: none;
    mask-image: none;
}

.column-page .faq-hero .faq-hero__kicker,
.column-page .faq-hero h1,
.column-page .faq-hero .faq-hero__breadcrumb,
.column-page .faq-hero .faq-hero__breadcrumb a,
.column-page .faq-hero .faq-hero__breadcrumb em {
    color: #fff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

/* コラム・お知らせ（暗い写真背景）ページはキッカー下線も白に */
.column-page .faq-hero .faq-hero__kicker::after,
.news-page .faq-hero .faq-hero__kicker::after {
    background: #fff;
}

.news-page .faq-hero,
.contact-page .faq-hero {
    background: url('../img/news_bg.webp') center center / cover no-repeat;
    color: #fff;
}

.news-page .faq-hero::before,
.contact-page .faq-hero::before {
    background: rgba(10, 20, 35, 0.42);
    height: 100%;
    opacity: 1;
    filter: none;
    -webkit-mask-image: none;
    mask-image: none;
}

.news-page .faq-hero .faq-hero__kicker,
.news-page .faq-hero h1,
.news-page .faq-hero .faq-hero__breadcrumb,
.news-page .faq-hero .faq-hero__breadcrumb a,
.news-page .faq-hero .faq-hero__breadcrumb em,
.contact-page .faq-hero .faq-hero__kicker,
.contact-page .faq-hero h1,
.contact-page .faq-hero .faq-hero__breadcrumb,
.contact-page .faq-hero .faq-hero__breadcrumb a,
.contact-page .faq-hero .faq-hero__breadcrumb em {
    color: #fff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}


/* 料金・よくある質問・お知らせ一覧のキッカーは見出しのグレー（.section-kicker と同色）に */
.price-page .faq-hero .faq-hero__kicker,
.faq-page .faq-hero .faq-hero__kicker,
.category-news .faq-hero .faq-hero__kicker {
    color: #738391;
    text-shadow: none;
}

.price-page .faq-hero .faq-hero__kicker::after,
.faq-page .faq-hero .faq-hero__kicker::after,
.category-news .faq-hero .faq-hero__kicker::after {
    background: #738391;
}

/* faint Kanazawa skyline along the bottom edge */
.faq-hero::before {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 72%;
    background: url("../img/about-ishikawa-cityscape-sharp.webp?v=202606191807") center bottom / cover no-repeat;
    content: "";
    opacity: 0.32;
    filter: saturate(0.75) brightness(1.12);
    -webkit-mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.9) 78%);
    mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.9) 78%);
    pointer-events: none;
}

/* bottom hairline glow */
.faq-hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(110, 160, 200, 0.45), transparent);
    content: "";
}

/* floating glass panes */
.faq-hero__deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.faq-hero__pane {
    position: absolute;
    border: 1px solid rgba(120, 160, 195, 0.4);
    border-radius: 6px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(212, 233, 246, 0.18) 55%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.3), transparent);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.35),
        0 30px 60px -18px rgba(54, 86, 115, 0.25);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    overflow: hidden;
    opacity: 0;
    animation:
        faq-hero-pane-in 1.2s cubic-bezier(0.22, 1, 0.36, 1) both,
        faq-hero-pane-float 9s ease-in-out 1.2s infinite alternate;
}

/* glare line inside each pane */
.faq-hero__pane::after {
    position: absolute;
    top: -30%;
    bottom: -30%;
    left: -30%;
    width: 38%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    content: "";
    transform: skewX(-14deg) translateX(-40%);
    animation: faq-hero-pane-glare 7s ease-in-out 2.2s infinite;
}

.faq-hero__pane--a {
    top: 16%;
    right: 7%;
    width: 250px;
    height: 320px;
    transform: rotate(-9deg);
    animation-delay: 0.35s, 1.2s;
}

.faq-hero__pane--b {
    top: 44%;
    right: 21%;
    width: 165px;
    height: 215px;
    transform: rotate(7deg);
    animation-delay: 0.55s, 2.6s;
    animation-duration: 1.2s, 11s;
}

.faq-hero__pane--c {
    top: -8%;
    right: 30%;
    width: 120px;
    height: 160px;
    transform: rotate(-14deg);
    animation-delay: 0.75s, 0.6s;
    animation-duration: 1.2s, 8s;
}

@keyframes faq-hero-pane-in {
    from {
        opacity: 0;
        translate: 0 26px;
    }
    to {
        opacity: 1;
        translate: 0 0;
    }
}

@keyframes faq-hero-pane-float {
    from {
        translate: 0 -7px;
    }
    to {
        translate: 0 9px;
    }
}

@keyframes faq-hero-pane-glare {
    0%, 58% {
        transform: skewX(-14deg) translateX(-40%);
        opacity: 0;
    }
    66% {
        opacity: 1;
    }
    82%, 100% {
        transform: skewX(-14deg) translateX(420%);
        opacity: 0;
    }
}

/* one-shot light sweep across the band */
.faq-hero__shine {
    position: absolute;
    top: -30%;
    bottom: -30%;
    left: -24%;
    width: 22%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.65) 50%, transparent);
    transform: skewX(-14deg) translateX(-30%);
    opacity: 0;
    animation: faq-hero-shine 1.5s cubic-bezier(0.6, 0.05, 0.3, 1) 1s both;
}

@keyframes faq-hero-shine {
    0% {
        opacity: 0;
        transform: skewX(-14deg) translateX(-30%);
    }
    18% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: skewX(-14deg) translateX(640%);
    }
}

/* staggered entrance for the copy */
.faq-hero__kicker,
.faq-hero h1,
.faq-hero__lead,
.faq-hero__breadcrumb {
    opacity: 0;
    filter: blur(8px);
    translate: 0 16px;
    animation: faq-hero-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.faq-hero__kicker { animation-delay: 0.15s; }
.faq-hero h1 { animation-delay: 0.3s; }
.faq-hero__lead { animation-delay: 0.45s; }
.faq-hero__breadcrumb { animation-delay: 0.6s; }

@keyframes faq-hero-rise {
    to {
        opacity: 1;
        filter: blur(0);
        translate: 0 0;
    }
}

/* ghost slides in from the right */
.faq-hero__ghost {
    animation: faq-hero-ghost 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

@keyframes faq-hero-ghost {
    from {
        opacity: 0;
        translate: 60px 0;
    }
    to {
        opacity: 1;
        translate: 0 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .faq-hero__pane,
    .faq-hero__pane::after,
    .faq-hero__shine,
    .faq-hero__kicker,
    .faq-hero h1,
    .faq-hero__lead,
    .faq-hero__breadcrumb,
    .faq-hero__ghost {
        animation: none;
        opacity: 1;
        filter: none;
        translate: none;
    }
    .faq-hero__pane::after,
    .faq-hero__shine {
        opacity: 0;
    }
}

.faq-hero__ghost {
    position: absolute;
    top: 46px;
    right: -14px;
    margin: 0;
    font-family: "Times New Roman", serif;
    font-size: clamp(120px, 17vw, 250px);
    font-style: italic;
    line-height: 1;
    letter-spacing: 0.05em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(45, 110, 158, 0.16);
    user-select: none;
    pointer-events: none;
}

.faq-hero__inner {
    position: relative;
    width: min(1140px, calc(100% - 80px));
    margin: 0 auto;
}

.faq-hero__kicker {
    margin: 0 0 16px;
    font-family: "Roboto", var(--font);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: #5aabf0;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.18);
}

.faq-hero__kicker::after {
    display: block;
    width: 34px;
    height: 1px;
    margin-top: 10px;
    background: #5aabf0;
    content: "";
}

/* 写真背景KVのお問い合わせページでは、キッカー下線を白に */
.contact-page .faq-hero__kicker::after {
    background: #fff;
}

.faq-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(30px, 3.6vw, 44px);
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #16283a;
}

.faq-hero__lead {
    margin: 0 0 34px;
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0.06em;
    color: #44586b;
}

.faq-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Roboto", var(--font);
    font-size: 12px;
    letter-spacing: 0.08em;
}

.faq-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
    transition: color 0.2s ease;
}

.faq-hero__breadcrumb a:hover {
    color: #fff;
    opacity: 1;
}

.faq-hero__breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.faq-hero__breadcrumb em {
    font-style: normal;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

/* board: sticky category nav + groups */
.faq-board {
    display: grid;
    grid-template-columns: 264px 1fr;
    gap: 72px;
    width: min(1140px, calc(100% - 80px));
    margin: 88px auto 110px;
    font-family: "Zen Kaku Gothic New", var(--font);
}

.faq-board__nav {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-self: start;
}

.faq-board__nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(33, 56, 82, 0.08);
    box-shadow: 0 8px 22px -14px rgba(18, 32, 47, 0.3);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #1f2e3d;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-board__nav a:hover {
    transform: translateX(4px);
    border-color: rgba(45, 110, 158, 0.35);
    box-shadow: 0 12px 26px -14px rgba(18, 32, 47, 0.4);
    opacity: 1;
}

.faq-board__nav a i {
    font-family: "Roboto", var(--font);
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: #2d6e9e;
}

.faq-board__nav a b {
    display: inline-grid;
    place-items: center;
    min-width: 22px;
    height: 22px;
    margin-left: auto;
    border-radius: 999px;
    background: #eaf2f9;
    font-family: "Roboto", var(--font);
    font-size: 11.5px;
    font-weight: 600;
    color: #2d6e9e;
}

.faq-board__body {
    display: flex;
    flex-direction: column;
    gap: 64px;
    min-width: 0;
}

.faq-group {
    scroll-margin-top: 100px;
}

.faq-group__head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(33, 56, 82, 0.12);
}

.faq-group__num {
    margin: 0;
    font-family: "Roboto", var(--font);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(45, 110, 158, 0.4);
}

.faq-group__head h2 {
    margin: 0;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #16202c;
}

.faq-group__head p {
    margin: 3px 0 0;
    font-family: "Roboto", var(--font);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8a9aab;
}

.faq-group .faq-item {
    margin-bottom: 12px;
}

.faq-group .faq-item__answer a {
    color: #2d6e9e;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* bottom CTA band */
.faq-cta {
    padding: 0 0 120px;
    font-family: "Zen Kaku Gothic New", var(--font);
}

.faq-cta__inner {
    position: relative;
    width: min(960px, calc(100% - 80px));
    margin: 0 auto;
    padding: 64px 48px 56px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 84% 16%, rgba(86, 148, 230, 0.16), transparent 46%),
        linear-gradient(160deg, #0e1b2a, #14263a 62%, #0f2032);
    color: #eef4f9;
    text-align: center;
    box-shadow: 0 36px 70px -34px rgba(10, 24, 40, 0.65);
}

.faq-cta__kicker,
.faq-cta h2,
.faq-cta__lead,
.faq-cta__actions,
.faq-cta__note {
    position: relative;
    z-index: 1;
}

.faq-cta__kicker {
    margin: 0 0 14px;
    font-family: "Roboto", var(--font);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: #8fa6bd;
}

.faq-cta h2 {
    margin: 0 0 14px;
    font-size: clamp(21px, 2.4vw, 27px);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #f4f8fb;
}

.faq-cta__lead {
    margin: 0 0 30px;
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.05em;
    color: rgba(228, 238, 246, 0.78);
}

.faq-cta__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.faq-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 220px;
    padding: 15px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.faq-cta__btn span {
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
}

.faq-cta__btn svg {
    width: 100%;
    height: 100%;
}

.faq-cta__btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    opacity: 1;
}

.faq-cta__btn--form {
    background: linear-gradient(135deg, #2e6fd8, #1c4f9e);
    color: #fff;
    box-shadow: 0 14px 28px -12px rgba(28, 79, 158, 0.7);
}

.faq-cta__btn--line {
    background: #20b54e;
    color: #fff;
    box-shadow: 0 14px 28px -12px rgba(22, 122, 56, 0.6);
}

.faq-cta__btn--phone {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    font-family: "Roboto", var(--font);
    letter-spacing: 0.06em;
}

.faq-cta__note {
    margin: 22px 0 0;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: rgba(143, 166, 189, 0.95);
}

@media (max-width: 1023px) {
    .faq-board {
        grid-template-columns: none;
        gap: 40px;
        margin-top: 64px;
    }
    .faq-board__nav {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .faq-cta__actions {
        flex-direction: column;
        align-items: center;
    }
    .faq-cta__btn {
        width: min(360px, 100%);
    }
}

@media (max-width: 767px) {
    .faq-hero {
        padding: 100px 0 48px;
    }
    .faq-hero__pane--a {
        top: 6%;
        right: -8%;
        width: 150px;
        height: 200px;
    }
    .faq-hero__pane--b {
        top: 58%;
        right: 4%;
        width: 92px;
        height: 124px;
    }
    .faq-hero__pane--c {
        display: none;
    }
    .faq-hero__inner {
        width: auto;
        padding: 0 15px;
    }
    .faq-hero__lead {
        font-size: 13.5px;
    }
    .faq-board {
        width: auto;
        margin: 48px 0 72px;
        padding: 0 15px;
    }
    .faq-board__nav {
        grid-template-columns: 1fr;
    }
    .faq-board__body {
        gap: 48px;
    }
    .faq-group__head h2 {
        font-size: 18px;
    }
    .faq-cta {
        padding-bottom: 80px;
    }
    .faq-cta__inner {
        width: auto;
        margin: 0 5%;
        padding: 44px 24px 40px;
    }
    .faq-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .faq-cta__btn {
        min-width: 0;
    }
}

/* Price page */

.price-page {
    background: #f7fafc;
}

.price-sec {
    padding: 96px 0;
    font-family: "Zen Kaku Gothic New", var(--font);
}

.line-estimate-standalone {
    overflow: hidden;
    padding: clamp(40px, 6vw, 80px) 0;
    background:
        radial-gradient(circle at 78% 12%, rgba(32, 185, 52, 0.14), transparent 34%),
        radial-gradient(circle at 8% 80%, rgba(115, 206, 93, 0.16), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #fbfffb 52%, #f2faed 100%);
}

.line-estimate-standalone .line-estimate {
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: none;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: clamp(22px, 4vw, 54px);
    padding-right: clamp(22px, 4vw, 54px);
}

.price-sec--tint {
    background: linear-gradient(180deg, #eef4f9, #f3f7fb);
}

.price-sec__head {
    width: min(1140px, calc(100% - 80px));
    margin: 0 auto 52px;
    text-align: center;
}

.price-sec .section-kicker {
    color: #8a9aab;
    font-family: "Roboto", var(--font);
}

.price-sec .section-kicker::after {
    background: #9aabba;
}

/* 対応エリアページ：英語のセクション見出しを左右ラインで統一 */
.area-page .area-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 0;
    color: #0879bd;
    font-family: "Roboto", var(--font);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.18em;
}

.area-page .area-section-kicker::before,
.area-page .area-section-kicker::after {
    width: 28px;
    height: 2px;
    margin: 0;
    flex: 0 0 auto;
    border-radius: 999px;
    background: linear-gradient(90deg, #20bfd4, #1670ce);
    content: "";
}

.area-page .area-section-kicker::before {
    background: linear-gradient(90deg, #1670ce, #20bfd4);
}

@media (max-width: 767px) {
    .area-page .area-section-kicker {
        gap: 8px;
        font-size: 10.5px;
        letter-spacing: 0.12em;
    }

    .area-page .area-section-kicker::before,
    .area-page .area-section-kicker::after {
        width: 16px;
    }
}

.price-sec__lead {
    margin: 18px 0 0;
    font-size: 14.5px;
    line-height: 1.9;
    letter-spacing: 0.05em;
    color: #51606e;
}

.price-sec__accent {
    font-weight: 700;
    color: #2d6e9e;
}

.price-sec .pricing-table,
.price-sec .pricing__panel {
    width: min(1140px, calc(100% - 80px));
    margin-right: auto;
    margin-left: auto;
}

.price-sec__note {
    width: min(1140px, calc(100% - 80px));
    margin: 22px auto 0;
    font-size: 12px;
    line-height: 1.9;
    letter-spacing: 0.04em;
    color: #6b7886;
    text-align: center;
}

.pricing-mado--page {
    width: min(1140px, calc(100% - 80px));
    margin: 0 auto;
}

.price-sec#estimate-panel {
    scroll-margin-top: 80px;
}

.price-sec--case {
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.92), transparent 34%),
        linear-gradient(180deg, #f8fbfd, #eef4f9);
}

.price-case {
    position: relative;
    width: min(1140px, calc(100% - 80px));
    margin: 0 auto;
}

.price-case__photo {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    background: #dfe8ef;
    border: 1px solid rgba(102, 120, 137, 0.18);
    box-shadow: 0 30px 70px -34px rgba(18, 32, 47, 0.36);
}

.price-case__photo::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(9, 20, 32, 0.02), rgba(9, 20, 32, 0.2)),
        radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.35), transparent 42%);
    pointer-events: none;
    content: "";
}

.price-case__photo img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 640px;
    object-fit: cover;
    object-position: center;
}

.price-case__spot {
    position: absolute;
    top: var(--y);
    left: var(--x);
    z-index: 4;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transform: translate(-50%, -50%);
    -webkit-tap-highlight-color: transparent;
}

.price-case__spot::before,
.price-case__spot::after {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.52);
    content: "";
    animation: mado-pulse 1.9s cubic-bezier(0.2, 0.55, 0.35, 1) infinite;
}

.price-case__spot::after {
    animation-delay: 0.65s;
}

.price-case__spot span {
    position: relative;
    z-index: 2;
    display: block;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: #2e6fd8;
    border: 4px solid #fff;
    box-shadow: 0 2px 14px rgba(13, 36, 64, 0.42), 0 0 0 6px rgba(46, 111, 216, 0.24);
}

.price-case__spot em {
    position: absolute;
    top: -3px;
    right: -3px;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(20, 34, 51, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.75);
    font-family: "Roboto", var(--font);
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.price-case__spot.is-active span {
    background: #e03030;
    border-color: #fff;
    box-shadow: 0 2px 14px rgba(224, 48, 48, 0.45), 0 0 0 6px rgba(224, 48, 48, 0.22);
    transform: scale(1.12);
}

.price-case__spot.is-active::before,
.price-case__spot.is-active::after {
    animation: none;
    opacity: 0;
}

.price-case__hint {
    position: absolute;
    left: 50%;
    bottom: 22px;
    z-index: 5;
    padding: 9px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.76);
    box-shadow: 0 12px 28px -16px rgba(13, 36, 64, 0.45);
    color: #275b91;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    transform: translateX(-50%);
}

.price-case__panels {
    position: absolute;
    top: clamp(108px, calc(var(--case-y, 38%) + 42px), calc(100% - 278px));
    left: var(--case-x, 50%);
    z-index: 7;
    width: min(320px, 86%);
    min-height: 246px;
    transform: translateX(-50%);
}

.price-case__panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 246px;
    padding: 18px 20px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(46, 111, 216, 0.16);
    box-shadow:
        0 2px 6px rgba(13, 36, 64, 0.10),
        0 24px 48px -16px rgba(13, 36, 64, 0.38);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.4);
    transform-origin: 50% -24px;
    transition: opacity 360ms ease, transform 360ms cubic-bezier(0.22, 0.61, 0.36, 1), visibility 360ms ease;
}

.price-case__panel::before {
    position: absolute;
    top: -8px;
    left: calc(50% - 9px);
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(46, 111, 216, 0.16);
    border-left: 1px solid rgba(46, 111, 216, 0.16);
    transform: rotate(45deg);
    content: "";
}

.price-case__panel.is-active {
    opacity: 1;
    visibility: visible;
    transform: none;
    animation: price-case-panel-in 380ms ease both;
}

.price-case__label {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 8px;
    color: #2e5fa8;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.price-case__label::before {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #2e6fd8;
    box-shadow: 0 0 0 3px rgba(46, 111, 216, 0.18);
    content: "";
}

.price-case__panel h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    color: #142233;
    font-size: 20px;
    line-height: 1.45;
    letter-spacing: 0.06em;
}

.price-case__price {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(46, 95, 168, 0.25);
    color: #14283f;
    font-family: "Roboto", var(--font);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.price-case__price span {
    margin-left: 8px;
    color: #667889;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 13px;
    font-weight: 700;
}

.price-case__panel dl {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 7px;
    margin: 0;
}

.price-case__panel dl div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.price-case__panel dt,
.price-case__panel dd {
    margin: 0;
    font-size: 13px;
    letter-spacing: 0.05em;
}

.price-case__panel dt {
    flex-shrink: 0;
    color: #667889;
    font-weight: 500;
}

.price-case__panel dd {
    color: #142233;
    font-weight: 700;
    text-align: right;
}

.price-case__summary {
    position: absolute;
    top: clamp(18px, 3vw, 34px);
    left: clamp(18px, 3vw, 34px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 400ms ease;
    bottom: auto;
    z-index: 7;
    display: grid;
    gap: 4px;
    width: min(292px, 42%);
    padding: 17px 20px;
    border-radius: 16px;
    background: rgba(20, 34, 51, 0.92);
    color: #fff;
    box-shadow: 0 24px 48px -28px rgba(18, 34, 51, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.price-case__summary span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.price-case__summary strong {
    font-family: "Roboto", var(--font);
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.price-case.has-selection .price-case__summary {
    opacity: 1;
    pointer-events: auto;
}

.price-case__summary small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    letter-spacing: 0.04em;
}

/* included / excluded cards */
.price-includes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    width: min(1040px, calc(100% - 80px));
    margin: 0 auto;
}

.price-includes__card {
    padding: 34px 36px 30px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(33, 56, 82, 0.08);
    box-shadow: 0 16px 36px -22px rgba(18, 32, 47, 0.35);
}

.price-includes__card h3 {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 20px;
    font-size: 16.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #16202c;
}

.price-includes__card h3 span {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
}

.price-includes__card h3 svg {
    width: 16px;
    height: 16px;
}

.price-includes__card--in h3 span {
    background: linear-gradient(135deg, #2e6fd8, #1c4f9e);
}

.price-includes__card--ex h3 span {
    background: #8a9aab;
}

.price-includes__card ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.price-includes__card li {
    position: relative;
    padding: 12px 0 12px 22px;
    border-bottom: 1px dashed rgba(33, 56, 82, 0.14);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #344047;
}

.price-includes__card li:last-child {
    border-bottom: 0;
}

.price-includes__card li::before {
    position: absolute;
    top: 50%;
    left: 4px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    transform: translateY(-50%);
    content: "";
}

.price-includes__card--in li::before {
    background: #2e6fd8;
}

.price-includes__card--ex li::before {
    background: #aab7c4;
}

/* flow steps: timeline stepper */
.price-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: min(1140px, calc(100% - 80px));
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

/* connecting line through the nodes */
.price-flow::before {
    position: absolute;
    top: 9px;
    right: 10%;
    left: 10%;
    height: 2px;
    background: linear-gradient(90deg, #2e6fd8, #7fa9d8 55%, rgba(138, 154, 171, 0.45));
    content: "";
}

.price-flow__step {
    position: relative;
    display: flex;
    flex-direction: column;
}

/* node on the line */
.price-flow__node {
    position: relative;
    z-index: 1;
    display: block;
    width: 20px;
    height: 20px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #2e6fd8;
    box-shadow: 0 0 0 5px rgba(46, 111, 216, 0.14);
}

/* pulsing ring on the free-survey step, echoing the window hotspots */
.price-flow__step--free .price-flow__node::after {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(46, 111, 216, 0.55);
    content: "";
    animation: mado-pulse 2.1s cubic-bezier(0.2, 0.55, 0.35, 1) infinite;
}

.price-flow__card {
    position: relative;
    flex: 1;
    padding: 26px 20px 22px;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(176deg, #ffffff, #fbfdff 70%, #f4f8fc);
    border: 1px solid rgba(33, 56, 82, 0.08);
    box-shadow: 0 16px 34px -24px rgba(18, 32, 47, 0.45);
    text-align: center;
    transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.price-flow__step:hover .price-flow__card {
    transform: translateY(-6px);
    border-color: rgba(46, 111, 216, 0.28);
    box-shadow: 0 26px 44px -24px rgba(18, 32, 47, 0.55);
}

/* top accent bar */
.price-flow__card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #2e6fd8, #6ea3dd);
    content: "";
    opacity: 0;
    transition: opacity 0.35s ease;
}

.price-flow__step:hover .price-flow__card::before,
.price-flow__step--free .price-flow__card::before {
    opacity: 1;
}

/* big ghost numeral */
.price-flow__ghost {
    position: absolute;
    top: -2px;
    right: 10px;
    margin: 0;
    font-family: "Roboto", var(--font);
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: rgba(45, 110, 158, 0.08);
    pointer-events: none;
}

.price-flow__icon {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin: 2px auto 16px;
    border-radius: 50%;
    background: #eaf2f9;
    color: #2d6e9e;
    transition: background 0.35s ease, color 0.35s ease, transform 0.35s cubic-bezier(0.3, 1.4, 0.5, 1), box-shadow 0.35s ease;
}

.price-flow__icon svg {
    width: 26px;
    height: 26px;
}

.price-flow__step:hover .price-flow__icon {
    background: linear-gradient(135deg, #2e6fd8, #1c4f9e);
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 12px 24px -10px rgba(28, 79, 158, 0.6);
}

.price-flow__step h3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #16202c;
}

.price-flow__step h3 em {
    display: inline-block;
    padding: 2px 11px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2e6fd8, #1c4f9e);
    font-size: 10.5px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #fff;
    box-shadow: 0 6px 14px -6px rgba(28, 79, 158, 0.6);
}

.price-flow__step--free .price-flow__card {
    padding-right: 12px;
    padding-left: 12px;
}

.price-flow__step--free h3 {
    gap: 2px;
}

.price-flow__step--free h3 > span,
.price-flow__step--free .price-flow__meta {
    white-space: nowrap;
}

.price-flow__step--free h3 em {
    margin-top: 3px;
}

.price-flow__step--free .price-flow__meta {
    gap: 5px;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 10px;
    letter-spacing: .06em;
}

.price-flow__card > p:not(.price-flow__ghost):not(.price-flow__meta) {
    margin: 0 0 14px;
    font-size: 12.5px;
    line-height: 1.9;
    letter-spacing: 0.03em;
    color: #51606e;
    text-align: left;
}

.price-flow__meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: auto auto 0;
    padding: 5px 13px;
    border-radius: 999px;
    background: rgba(138, 154, 171, 0.12);
    font-family: "Roboto", var(--font);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #5d6f80;
}

.price-flow__meta::before {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #2e6fd8;
    content: "";
}

@media (prefers-reduced-motion: reduce) {
    .price-flow__step--free .price-flow__node::after {
        animation: none;
        opacity: 0;
    }
    .price-flow__card,
    .price-flow__icon {
        transition: none;
    }
}

/* faq teaser */
.price-sec--faq .price-sec__faq-list {
    width: min(860px, calc(100% - 80px));
    margin: 0 auto;
}

.price-sec--faq .faq-item {
    margin-bottom: 12px;
}

.price-sec__more {
    margin-top: 30px;
    text-align: center;
}

.price-sec__more a:not(.glass-btn) {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 30px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(45, 110, 158, 0.3);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #2d6e9e;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-sec__more a:not(.glass-btn):hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px -12px rgba(28, 79, 158, 0.45);
    opacity: 1;
}

.price-sec__more a:not(.glass-btn) span {
    font-family: "Roboto", var(--font);
    transition: transform 0.25s ease;
}

.price-sec__more a:not(.glass-btn):hover span {
    transform: translateX(3px);
}

@media (max-width: 1023px) {
    .price-sec {
        padding: 72px 0;
    }
    .price-case {
        width: min(720px, calc(100% - 48px));
    }
    .price-case__photo img {
        min-height: 0;
        aspect-ratio: 1477 / 1108;
    }
    .price-case__panels {
        top: clamp(92px, calc(var(--case-y, 38%) + 34px), calc(100% - 238px));
        left: var(--case-x, 50%);
        width: min(300px, 48%);
        min-height: 222px;
    }
    .price-case__panel {
        min-height: 222px;
    }
    .price-case__summary {
        top: 18px;
        right: auto;
        bottom: auto;
        left: 18px;
        width: min(280px, 44%);
    }
    .price-flow {
        grid-template-columns: repeat(3, 1fr);
    }
    .price-flow::before {
        content: none;
    }
    .price-flow__node {
        display: none;
    }
}

@media (max-width: 767px) {
    .price-sec {
        padding: 50px 0;
    }
    .price-sec__head {
        width: auto;
        margin-bottom: 34px;
        padding: 0 7.5%;
    }
    .price-sec__lead {
        font-size: 13.5px;
        text-align: left;
    }
    .price-sec .pricing-table,
    .price-sec .pricing__panel,
    .pricing-mado--page,
    .price-case,
    .price-sec__note {
        width: auto;
        margin-right: 5%;
        margin-left: 5%;
    }
    .price-case {
        margin-right: 5%;
        margin-left: 5%;
    }
    .price-case__photo {
        border-radius: 18px;
    }
    .price-case__spot {
        width: 46px;
        height: 46px;
    }
    .price-case__spot span {
        width: 16px;
        height: 16px;
        border-width: 3px;
    }
    .price-case__spot em {
        width: 20px;
        height: 20px;
        font-size: 9px;
    }
    .price-case__hint {
        bottom: 14px;
        padding: 8px 14px;
        font-size: 11px;
    }
    .price-case__panels {
        position: static;
        top: auto;
        left: auto;
        width: auto;
        height: auto;
        min-height: 0;
        margin-top: 10px;
        transform: none;
    }
    .price-case__panel {
        position: static;
        inset: auto;
        display: none;
        min-height: 0;
        padding: 14px 16px;
        border-radius: 14px;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
        animation: none;
    }
    .price-case__panel::before {
        display: none;
    }
    .price-case__panel.is-active {
        display: block;
        animation: price-case-panel-in 380ms ease both;
    }
    .price-case__panel.is-active .price-case__price {
        animation: price-case-num-flash 600ms ease-out 80ms both;
    }
    .price-case__label {
        margin-bottom: 5px;
        font-size: 10px;
    }
    .price-case__panel h3 {
        margin-bottom: 6px;
        font-size: 16px;
        line-height: 1.3;
        letter-spacing: 0.03em;
    }
    .price-case__price {
        margin-bottom: 8px;
        padding-bottom: 8px;
        border-bottom: 1px dashed rgba(46, 95, 168, 0.25);
        font-size: 24px;
    }
    .price-case__price span {
        margin-left: 4px;
        font-size: 11px;
    }
    .price-case__panel dl div {
        gap: 10px;
    }
    .price-case__panel dt,
    .price-case__panel dd {
        font-size: 11px;
    }
    .price-case__summary {
        position: static;
        left: auto;
        bottom: auto;
        width: auto;
        margin-top: 10px;
        padding: 12px 14px;
        border-radius: 12px;
    }
    .price-case__summary span {
        font-size: 10px;
    }
    .price-case__summary strong {
        font-size: 22px;
    }
    .price-case__summary small {
        font-size: 9px;
    }
    .pricing-mado--page .pricing-mado__grid {
        margin: 0 -5.5%;
        padding-right: 5.5%;
        padding-left: 5.5%;
    }
    .price-includes {
        grid-template-columns: none;
        gap: 16px;
        width: auto;
        margin: 0 5%;
    }
    .price-includes__card {
        padding: 26px 22px 22px;
    }
    .price-flow {
        grid-template-columns: none;
        gap: 18px;
        width: auto;
        margin: 0 5%;
        padding-left: 30px;
    }
    .price-flow::before {
        top: 8px;
        right: auto;
        bottom: auto;
        left: 9px;
        width: 2px;
        height: calc(var(--flow-progress, 0) * (100% - 16px));
        background: linear-gradient(180deg, #2e6fd8, #7fa9d8 55%, rgba(138, 154, 171, 0.45));
        content: "";
    }
    .price-flow__node {
        display: block;
        position: absolute;
        top: 24px;
        left: -30px;
        width: 16px;
        height: 16px;
        margin: 0;
        border-width: 3px;
        box-shadow: 0 0 0 4px rgba(46, 111, 216, 0.14);
        transform: translateX(-50%);
        margin-left: 9px;
    }
    .price-flow__card {
        padding: 22px 20px 20px;
        text-align: left;
    }
    .price-flow__icon {
        width: 46px;
        height: 46px;
        margin: 0 0 12px;
    }
    .price-flow__icon svg {
        width: 21px;
        height: 21px;
    }
    .price-flow__step h3 {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }
    .price-flow__ghost {
        font-size: 52px;
    }
    .price-sec--faq .price-sec__faq-list {
        width: auto;
        margin: 0 5%;
    }
}

/* Generic "more" pill button (section → sub-page links) */

.more-btn {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(340px, 100%);
    min-height: 62px;
    padding: 14px 60px 14px 32px;
    overflow: hidden;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.92);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.12)),
        rgba(255, 255, 255, 0.18);
    -webkit-backdrop-filter: blur(22px) saturate(1.4);
    backdrop-filter: blur(22px) saturate(1.4);
    box-shadow:
        0 20px 38px rgba(36, 72, 110, 0.12),
        0 8px 18px rgba(110, 154, 198, 0.08),
        0 2px 7px rgba(255, 255, 255, 0.82),
        inset 0 1px 1px rgba(255, 255, 255, 1),
        inset 0 10px 18px rgba(255, 255, 255, 0.3),
        inset 0 -12px 22px rgba(84, 124, 164, 0.13),
        inset 0 -1px 0 rgba(60, 96, 132, 0.2);
    font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.04em;
    color: #143b68;
    text-decoration: none;
    text-align: center;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.92);
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.more-btn::before,
.more-btn::after {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    content: "";
}

.more-btn::before {
    top: 5px;
    left: 14px;
    right: 14px;
    height: 48%;
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.1)),
        linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
    filter: blur(0.1px);
    opacity: 0.86;
}

.more-btn::after {
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(116deg, transparent 0 30%, rgba(255, 255, 255, 0.82) 42%, transparent 55%),
        radial-gradient(ellipse at 50% 108%, rgba(73, 116, 154, 0.18), transparent 48%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.58), transparent 18% 82%, rgba(255, 255, 255, 0.38));
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.74),
        inset 0 0 0 2px rgba(124, 165, 205, 0.12),
        inset 0 0 24px rgba(255, 255, 255, 0.5);
    opacity: 0.58;
    transform: translateX(-24%);
    transition: opacity 260ms ease, transform 620ms ease;
}

.more-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.96);
    box-shadow:
        0 24px 44px rgba(36, 72, 110, 0.16),
        0 9px 20px rgba(110, 154, 198, 0.1),
        0 2px 8px rgba(255, 255, 255, 0.86),
        inset 0 1px 1px rgba(255, 255, 255, 1),
        inset 0 10px 18px rgba(255, 255, 255, 0.34),
        inset 0 -12px 22px rgba(84, 124, 164, 0.16),
        inset 0 -1px 0 rgba(60, 96, 132, 0.22);
    opacity: 1;
}

.more-btn:hover::after {
    opacity: 0.72;
    transform: translateX(20%);
}

.more-btn span {
    position: absolute;
    top: 50%;
    right: 25px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    font-family: inherit;
    font-size: 21px;
    line-height: 1;
    transition: transform 220ms ease;
}

.more-btn:hover span {
    transform: translate(4px, -50%);
}

.about__more {
    margin: 30px 0 0;
}

.service-area__more .more-btn {
    border-color: rgba(45, 110, 170, 0.55);
    box-shadow:
        0 20px 38px rgba(36, 72, 110, 0.12),
        0 8px 18px rgba(110, 154, 198, 0.08),
        0 2px 7px rgba(255, 255, 255, 0.82),
        inset 0 1px 1px rgba(255, 255, 255, 1),
        inset 0 10px 18px rgba(255, 255, 255, 0.3),
        inset 0 -12px 22px rgba(84, 124, 164, 0.13),
        inset 0 -1px 0 rgba(45, 110, 170, 0.35),
        0 0 0 1px rgba(45, 110, 170, 0.18);
}

.about__more .more-btn {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.18)),
        rgba(255, 255, 255, 0.24);
    -webkit-backdrop-filter: blur(12px) saturate(1.18);
    backdrop-filter: blur(12px) saturate(1.18);
    color: #174878;
    text-shadow: none;
}

.about__more .more-btn::before {
    opacity: 0.54;
}

.about__more .more-btn::after {
    opacity: 0.24;
}

.about__more .more-btn:hover::after {
    opacity: 0.38;
}

.about__more--sp {
    display: none;
}

@media (max-width: 1023px) {
    .about__more--pc {
        display: none;
    }
    .about__more--sp {
        display: flex;
        justify-content: center;
        order: 4;
        width: 100%;
        margin: 34px 0 24px;
        text-align: center;
    }
}

.faq__more {
    margin: 36px 0 0;
    text-align: center;
}

.pricing__more {
    position: relative;
    margin: 48px 0 0;
    text-align: center;
}

@media (max-width: 767px) {
    .about__more--sp {
        margin: 28px 0 18px;
    }
    .faq__more {
        margin-top: 28px;
    }
    .pricing__more {
        margin-top: 36px;
    }
    .more-btn {
        width: min(340px, calc(100% - 12px));
        min-height: 58px;
        padding: 13px 54px 13px 26px;
        font-size: 14px;
        letter-spacing: 0.03em;
        line-height: 1.35;
    }
    .more-btn::before,
    .more-btn::after {
        right: 26px;
        width: 58px;
        height: 104px;
    }
    .more-btn::after {
        right: 16px;
    }
    .more-btn span {
        right: 23px;
        font-size: 20px;
    }
}

/* header nav: 7 items — tighten on mid-size screens */
@media (max-width: 1366px) {
    .global-nav {
        gap: 16px;
        font-size: 13.5px;
        padding-right: 20px;
    }
}

/* FAQ / Price pages: dark header text over the light hero */
.faq-page .site-header,
.price-page .site-header {
    color: #1b2735;
}

/* faq/price: トップは白、スクロールで濃色は is-header-dark に任せる */

/* Price page hero: full photo background (price_bg) */
.price-page .faq-hero::before {
    height: 100%;
    background:
        linear-gradient(90deg, rgba(238, 247, 253, 0.94) 16%, rgba(238, 247, 253, 0.55) 46%, rgba(238, 247, 253, 0.08) 72%),
        url("../img/price_bg.webp?v=202606191807") center 62% / cover no-repeat;
    opacity: 1;
    filter: none;
    -webkit-mask-image: none;
    mask-image: none;
}

/* LINE quick estimate block on the top pricing section */
.line-estimate {
    position: relative;
    overflow: hidden;
    width: min(1280px, calc(100vw - 32px));
    max-width: none;
    margin: clamp(54px, 7vw, 92px) auto clamp(42px, 5vw, 72px);
    margin-left: 50%;
    padding: clamp(32px, 4.8vw, 64px) clamp(22px, 4vw, 54px);
    translate: -50% 0;
    border-radius: 34px;
    background:
        radial-gradient(circle at 78% 12%, rgba(32, 185, 52, 0.14), transparent 34%),
        radial-gradient(circle at 8% 80%, rgba(115, 206, 93, 0.16), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #fbfffb 52%, #f2faed 100%);
    border: 1px solid rgba(19, 173, 46, 0.14);
    box-shadow: 0 24px 70px rgba(27, 92, 52, 0.11);
    color: #182130;
}

.line-estimate__leaf {
    display: none;
}

.line-estimate__hero,
.line-estimate__bottom {
    position: relative;
    z-index: 2;
}

.line-estimate__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: clamp(22px, 2.8vw, 40px);
    align-items: center;
}

.line-estimate__copy {
    position: relative;
}

.line-estimate__icon {
    position: absolute;
    left: -12px;
    top: 44px;
    width: 100px;
    height: auto;
    pointer-events: none;
}

.line-estimate__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 50px;
    padding: 0;
    border: none;
    border-radius: 0;
    color: #07932a;
    font-size: clamp(14px, 1.3vw, 20px);
    font-weight: 800;
    letter-spacing: 0.06em;
    background: none;
    box-shadow: none;
}

.line-estimate__badge img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: block;
    flex-shrink: 0;
}

.line-estimate__badge span,
.line-estimate__line-icon {
    display: inline-grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, #13c946, #06a831);
    font-family: Arial, sans-serif;
    font-weight: 900;
    letter-spacing: 0;
}

.line-estimate__badge span {
    width: 44px;
    height: 32px;
    border-radius: 17px;
    font-size: 11px;
}

.line-estimate__copy h3 {
    margin: 0;
    max-width: 780px;
    padding-left: clamp(28px, 2.8vw, 40px);
    color: #20242a;
    font-size: clamp(27px, 2.3vw, 38px);
    line-height: 1.32;
    letter-spacing: 0.045em;
    font-weight: 900;
}

.line-estimate__copy h3 span {
    color: #0aa32b;
}

.line-estimate__checks {
    display: grid;
    gap: 12px;
    margin: clamp(22px, 3vw, 34px) 0 0;
    padding: clamp(16px, 2vw, 22px) clamp(18px, 2.4vw, 28px);
    border: 1px solid rgba(24, 168, 45, 0.28);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.82);
    list-style: none;
}

.line-estimate__checks li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #20252b;
    font-size: clamp(15px, 1.2vw, 19px);
    font-weight: 800;
    line-height: 1.6;
}

.line-estimate__checks li::before {
    content: "✓";
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    margin-top: calc((1.6em - 24px) / 2 - 2px);
    border: 2px solid #16b53d;
    border-radius: 50%;
    color: #10ac36;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}

.line-estimate__micro {
    margin: 24px 0 16px;
    text-align: center;
}

.line-estimate__micro img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.line-estimate__cta {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    width: min(100%, 480px);
    margin: 0 auto;
    padding: 17px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #08c33d, #05a42e);
    color: #fff;
    text-decoration: none;
    font-size: clamp(18px, 1.5vw, 25px);
    font-weight: 900;
    letter-spacing: 0.12em;
    box-shadow: 0 18px 28px rgba(14, 171, 46, 0.28);
    transition: transform 240ms ease, box-shadow 240ms ease;
}

.line-estimate__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 36px rgba(14, 171, 46, 0.34);
}

.line-estimate__line-icon {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background: #fff;
    color: #0ab33c;
    font-size: 11px;
}

.line-estimate__cta i {
    font-style: normal;
    font-size: 34px;
    line-height: 1;
}

.line-estimate__privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 14px 0 0;
    color: #6e7477;
    font-size: 14px;
    letter-spacing: 0.12em;
}

.line-estimate__privacy span {
    color: #10a833;
}

.line-estimate__visual {
    position: relative;
}

.line-estimate__visual img {
    width: 100%;
    display: block;
    border-radius: 16px;
}

.line-estimate__mock {
    display: none;
}

/* scroll reveal: section自体はフェードのみ、子要素をstaggerで浮かせる */
.line-estimate[data-reveal-item] {
    transform: none;
    transition: opacity 400ms ease;
}

/* セクション上部：is-visibleで時間差アニメーション */
.line-estimate__badge,
.line-estimate__icon,
.line-estimate__copy h3,
.line-estimate__checks,
.line-estimate__visual {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 900ms cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 900ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.line-estimate.is-visible .line-estimate__badge   { opacity: 1; transform: none; transition-delay:  80ms; }
.line-estimate.is-visible .line-estimate__icon    { opacity: 1; transform: none; transition-delay: 120ms; }
.line-estimate.is-visible .line-estimate__copy h3 { opacity: 1; transform: none; transition-delay: 180ms; }
.line-estimate.is-visible .line-estimate__visual  { opacity: 1; transform: none; transition-delay: 200ms; }
.line-estimate.is-visible .line-estimate__checks  { opacity: 1; transform: none; transition-delay: 300ms; }

.line-estimate__phone {
    position: absolute;
    left: 0;
    top: 28%;
    z-index: 4;
    width: 174px;
    padding: 14px 9px 12px;
    border: 7px solid #111;
    border-radius: 32px;
    background: #fff;
    box-shadow: 0 18px 30px rgba(15, 33, 48, 0.18);
    transform: rotate(-1deg);
}

.line-estimate__phone-bar {
    display: block;
    width: 52px;
    height: 5px;
    margin: 0 auto 8px;
    border-radius: 999px;
    background: #222;
}

.line-estimate__phone-title {
    margin: 0 0 8px;
    color: #1d2730;
    font-size: 9px;
    font-weight: 800;
}

.line-estimate__chat {
    width: max-content;
    max-width: 128px;
    margin: 8px 0;
    padding: 8px 10px;
    border-radius: 12px;
    font-size: 10px;
    line-height: 1.55;
    font-weight: 700;
}

.line-estimate__chat--user {
    margin-left: auto;
    background: #96ee74;
    color: #13531f;
}

.line-estimate__chat--shop {
    background: #f5f7f8;
    color: #36424b;
}

.line-estimate__chat-photo img {
    width: 112px;
    aspect-ratio: 4 / 3;
    display: block;
    margin-left: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(16, 40, 52, 0.13);
}

.line-estimate__desktop {
    position: relative;
    margin-left: 64px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(26, 61, 35, 0.13);
    box-shadow: 0 26px 60px rgba(30, 75, 52, 0.12);
}

.line-estimate__window-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 28px;
    margin: -8px 0 14px;
}

.line-estimate__window-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d5dbdc;
}

.line-estimate__window-bar i {
    display: block;
    flex: 1;
    height: 16px;
    margin-left: 24px;
    border-radius: 999px;
    background: #edf2f1;
}

.line-estimate__desktop-grid {
    display: grid;
    grid-template-columns: 1.18fr 0.82fr;
    gap: 20px;
    align-items: stretch;
}

.line-estimate__desktop figure,
.line-estimate__desktop figure img {
    margin: 0;
}

.line-estimate__desktop figcaption {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
    color: #243029;
    font-size: 14px;
    font-weight: 900;
}

.line-estimate__desktop figcaption span {
    color: #0ab735;
}

.line-estimate__desktop figure img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(16, 38, 52, 0.12);
}

.line-estimate__quote {
    padding: 16px 2px 8px;
}

.line-estimate__quote p {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 900;
}

.line-estimate__quote strong {
    display: block;
    margin-bottom: 16px;
    color: #08a92f;
    font-size: clamp(27px, 2.35vw, 38px);
    line-height: 1;
    letter-spacing: 0.04em;
}

.line-estimate__quote dl {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 14px 0;
    border-top: 1px solid rgba(28, 45, 35, 0.12);
    border-bottom: 1px solid rgba(28, 45, 35, 0.12);
}

.line-estimate__quote dl div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    font-size: 13px;
    font-weight: 800;
}

.line-estimate__quote dt,
.line-estimate__quote dd {
    margin: 0;
}

.line-estimate__quote small {
    display: block;
    margin-top: 13px;
    color: #6f7678;
    font-size: 11px;
    line-height: 1.8;
}

.line-estimate__mini-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: -6px 8px 0 118px;
    padding: 0;
    list-style: none;
}

.line-estimate__mini-steps li {
    position: relative;
    min-height: 132px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 15px 34px rgba(33, 93, 50, 0.12);
}

.line-estimate__mini-steps li + li::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 15px solid #16bd3c;
    transform: translateY(-50%);
}

.line-estimate__mini-steps span,
.line-estimate__steps > li > span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #23c84d, #08a630);
    color: #fff;
    font-weight: 900;
    font-size: 20px;
}

.line-estimate__mini-steps img {
    width: 100%;
    height: 70px;
    margin-top: 8px;
    object-fit: cover;
    border-radius: 10px;
}

.line-estimate__mini-steps b {
    display: block;
    margin-top: 10px;
    color: #19242d;
    font-size: 14px;
    text-align: center;
}

.line-estimate__send-phone {
    display: grid;
    place-items: center;
    height: 70px;
    margin-top: 8px;
    border-radius: 12px;
    background: linear-gradient(145deg, #1d2528, #0e1518);
    color: #10c33f;
    font-family: Arial, sans-serif;
    font-weight: 900;
}

.line-estimate__paper {
    display: grid;
    place-items: center;
    height: 70px;
    margin-top: 8px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(18, 177, 52, 0.18);
    color: #08a831;
}

.line-estimate__paper em {
    font-style: normal;
    font-weight: 900;
}

.line-estimate__bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(22px, 2.6vw, 36px);
    margin-top: clamp(30px, 4vw, 58px);
}

.line-estimate__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(18px, 2vw, 26px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.line-estimate__steps li {
    position: relative;
    padding: 24px 24px 26px;
    min-height: 210px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 44px rgba(30, 73, 50, 0.11);
}

.line-estimate__steps li + li::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 16px solid #16bd3c;
    transform: translateY(-50%);
}

.line-estimate__steps i {
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    margin: 18px 0 16px;
    border-radius: 50%;
    background: rgba(13, 181, 49, 0.08);
    color: #0bab34;
    font-style: normal;
}

.line-estimate__steps svg {
    width: 44px;
    height: 44px;
}

.line-estimate__steps h4 {
    margin: 0 0 12px;
    color: #182330;
    font-size: clamp(18px, 1.35vw, 21px);
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.5;
}

.line-estimate__steps p {
    margin: 0;
    color: #4f5960;
    font-size: 14px;
    line-height: 1.9;
    font-weight: 650;
}

.line-estimate__benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-content: center;
    margin: clamp(14px, 2vw, 22px) 0 0;
    padding: 0;
    list-style: none;
}

.line-estimate__benefits li {
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: start;
    gap: 8px 16px;
    padding: 18px 22px;
    border-radius: 18px;
    background: rgba(236, 248, 230, 0.92);
    box-shadow: inset 0 0 0 1px rgba(16, 173, 45, 0.08);
}

.line-estimate__benefits span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #0aac34;
    border: 2px solid rgba(13, 174, 49, 0.38);
    font-weight: 900;
}

.line-estimate__benefits b {
    color: #0b9d2f;
    font-size: 17px;
    letter-spacing: 0.06em;
}

.line-estimate__benefits em {
    grid-column: 2;
    color: #5b6268;
    font-style: normal;
    font-size: 13px;
    line-height: 1.7;
}

@media (max-width: 1023px) {
    .line-estimate {
        width: auto;
        max-width: none;
        margin-top: 46px;
        margin-left: auto;
        margin-right: auto;
        padding: 34px 18px 28px;
        translate: none;
        border-radius: 24px;
    }

    .line-estimate__hero,
    .line-estimate__bottom {
        grid-template-columns: 1fr;
    }

    .line-estimate__copy h3 {
        max-width: none;
    }

    .line-estimate__copy {
        text-align: center;
    }

    .line-estimate__checks {
        text-align: left;
    }

    .line-estimate__visual {
        min-height: auto;
        padding-top: 18px;
    }

    .line-estimate__phone {
        left: 0;
        top: 38px;
        width: 142px;
    }

    .line-estimate__desktop {
        margin-left: 86px;
        padding: 18px;
    }

    .line-estimate__desktop-grid {
        grid-template-columns: 1fr;
    }

    .line-estimate__mini-steps {
        margin: 18px 0 0;
    }

    .line-estimate__steps {
        grid-template-columns: 1fr;
    }

    .line-estimate__benefits {
        grid-template-columns: 1fr;
    }

    .line-estimate__steps li + li::before {
        left: 50%;
        top: -17px;
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-top: 16px solid #16bd3c;
        border-bottom: 0;
        transform: translateX(-50%);
    }
}

@media (max-width: 767px) {
    .line-estimate {
        margin-inline: -10px;
        padding: 28px 14px 24px;
        border-radius: 20px;
    }

    .line-estimate__badge {
        margin: 0 0 26px;
        padding: 0;
        font-size: 13px;
        letter-spacing: 0.06em;
        gap: 7px;
    }

    .line-estimate__badge span {
        width: 36px;
        height: 27px;
        font-size: 9px;
    }

    .line-estimate__copy h3 {
        padding-left: 0;
        font-size: clamp(21px, 5.8vw, 28px);
        letter-spacing: 0.04em;
        text-align: center;
    }

    .line-estimate__icon {
        left: 48px;
        top: 36px;
        width: 54px;
    }

    .line-estimate__checks {
        padding: 16px 14px;
        gap: 20px;
    }

    .line-estimate__checks li {
        font-size: 13px;
        gap: 10px;
    }

    .line-estimate__micro {
        margin: 6px 0 2px;
        letter-spacing: 0.08em;
    }

    .line-estimate__mock {
        display: block;
        margin: 26px 0 6px;
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 1100ms cubic-bezier(0.22, 0.61, 0.36, 1),
                    transform 1100ms cubic-bezier(0.22, 0.61, 0.36, 1);
    }

    .line-estimate__mock.is-visible {
        opacity: 1;
        transform: none;
    }

    .line-estimate__mock img {
        width: 100%;
        display: block;
        border-radius: 16px;
    }

    .line-estimate__visual {
        display: none;
    }

    .line-estimate__cta {
        padding: 14px 18px;
        gap: 10px;
        font-size: 16px;
        letter-spacing: 0.06em;
    }

    .line-estimate__line-icon {
        width: 36px;
        height: 36px;
        font-size: 9px;
    }

    .line-estimate__phone {
        position: relative;
        inset: auto;
        width: min(180px, 58vw);
        margin: 0 auto -18px;
        transform: none;
    }

    .line-estimate__desktop {
        margin: 0;
        padding: 14px;
        border-radius: 18px;
    }

    .line-estimate__desktop figcaption {
        font-size: 12px;
    }

    .line-estimate__quote {
        padding: 8px 0 0;
    }

    .line-estimate__quote strong {
        font-size: 29px;
    }

    .line-estimate__mini-steps {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .line-estimate__mini-steps li {
        min-height: auto;
    }

    .line-estimate__mini-steps li + li::before {
        left: 50%;
        top: -11px;
        border-left: 9px solid transparent;
        border-right: 9px solid transparent;
        border-top: 12px solid #16bd3c;
        border-bottom: 0;
        transform: translateX(-50%);
    }

    .line-estimate__steps li {
        padding: 22px;
    }

    .line-estimate__benefits li {
        grid-template-columns: 38px 1fr;
        gap: 10px 14px;
        padding: 15px;
    }

    .line-estimate__benefits em {
        grid-column: 2;
    }
}

/* photo already provides glass texture — keep panes minimal */
.price-page .faq-hero__pane--b,
.price-page .faq-hero__pane--c {
    display: none;
}

.price-page .faq-hero__pane--a {
    border-color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 767px) {
    .price-page .faq-hero {
        height: 260px;
        min-height: unset;
        padding: 76px 0 32px;
    }
    .price-page .faq-hero::before {
        background:
            linear-gradient(180deg, rgba(238, 247, 253, 0.92) 30%, rgba(238, 247, 253, 0.5) 62%, rgba(238, 247, 253, 0.12)),
            url("../img/price_bg.webp?v=202606191807") center 70% / cover no-repeat;
    }
}

/* FAQ page hero: same full-photo treatment as the price hero (keeps the cityscape image) */
.faq-page .faq-hero::before {
    height: 100%;
    background:
        linear-gradient(90deg, rgba(238, 247, 253, 0.94) 12%, rgba(238, 247, 253, 0.58) 42%, rgba(238, 247, 253, 0.08) 72%),
        url("../img/faq-window-hero.webp?v=202606191807") center 48% / cover no-repeat;
    opacity: 1;
    filter: none;
    -webkit-mask-image: none;
    mask-image: none;
}

.faq-page .faq-hero__pane--b,
.faq-page .faq-hero__pane--c {
    display: none;
}

.faq-page .faq-hero__pane--a {
    border-color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 767px) {
    .faq-page .faq-hero {
        height: 260px;
        min-height: unset;
        padding: 76px 0 32px;
    }
    .faq-page .faq-hero::before {
        background:
            linear-gradient(180deg, rgba(238, 247, 253, 0.92) 30%, rgba(238, 247, 253, 0.5) 62%, rgba(238, 247, 253, 0.12)),
            url("../img/faq-window-hero.webp?v=202606191807") center 52% / cover no-repeat;
    }
}

/* Area page */

.area-page {
    background: #f7fafc;
}

/* hero: window view photo, same treatment as price hero */
.area-page .faq-hero::before {
    height: 100%;
    background:
        linear-gradient(90deg, rgba(238, 247, 253, 0.94) 16%, rgba(238, 247, 253, 0.55) 46%, rgba(238, 247, 253, 0.08) 72%),
        url("../img/glass-film-hero-01.webp?v=202606191807") center 40% / cover no-repeat;
    opacity: 1;
    filter: none;
    -webkit-mask-image: none;
    mask-image: none;
}

.area-page .faq-hero__pane--b,
.area-page .faq-hero__pane--c {
    display: none;
}

.area-page .faq-hero__pane--a {
    border-color: rgba(255, 255, 255, 0.55);
}

.area-page .site-header {
    color: #1b2735;
}

/* area: トップは白、スクロールで濃色は is-header-dark に任せる */

/* Film detail page */

.film-page {
    background: #eef4f9;
}

.film-page .site-header {
    color: #fff;
}

/* film: トップは白、スクロールで濃色は is-header-dark に任せる */

@media (min-width: 1024px) {
    body.is-header-dark .site-header {
        background: transparent;
        color: #1b2735;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    body.is-header-dark .global-nav a {
        color: #1b2735;
        text-shadow: 0 1px 14px rgba(255, 255, 255, 0.55);
    }
}

/* ===== Film Lineup (取扱フィルム詳細) ===== */
.film-lineup {
    position: relative;
    overflow: hidden;
    padding: clamp(80px, 9vw, 140px) 0 clamp(90px, 10vw, 150px);
    background:
        radial-gradient(circle at 9% 12%, rgba(184, 192, 185, 0.2), rgba(255, 255, 255, 0) 17rem),
        radial-gradient(circle at 88% 38%, rgba(210, 204, 194, 0.18), rgba(255, 255, 255, 0) 22rem),
        linear-gradient(180deg, #fbfaf7, #f8f6f1);
    color: #343434;
    font-family: "Zen Kaku Gothic New", var(--font);
}

.film-lineup::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 19%, rgba(255, 255, 255, 0) 81%, rgba(255, 255, 255, 0.8)),
        radial-gradient(ellipse at center, rgba(255, 255, 255, 0) 45%, rgba(216, 210, 200, 0.2) 100%);
    content: "";
    pointer-events: none;
}

.film-lineup__ghost {
    position: absolute;
    top: clamp(28px, 4vw, 64px);
    left: 0;
    z-index: 0;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
    user-select: none;
}

.film-lineup__ghost-track {
    display: flex;
    width: max-content;
    animation: filmLineupGhost 60s linear infinite;
}

.film-lineup__ghost-track span {
    padding: 0 clamp(20px, 3vw, 48px);
    color: rgba(52, 52, 52, 0.055);
    font-family: "Times New Roman", "Yu Mincho", "YuMincho", serif;
    font-size: clamp(96px, 18vw, 260px);
    font-style: italic;
    font-weight: 400;
    line-height: 0.86;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

@keyframes filmLineupGhost {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.film-lineup__inner {
    position: relative;
    z-index: 1;
    width: min(1080px, calc(100% - 64px));
    margin: 0 auto;
    counter-reset: filmLineup;
}

.film-lineup__head {
    display: flex;
    align-items: baseline;
    gap: clamp(20px, 3vw, 40px);
    margin-bottom: clamp(56px, 7vw, 96px);
}

.film-lineup__title {
    margin: 0;
    color: #292929;
    font-family: "Times New Roman", "Yu Mincho", "YuMincho", serif;
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1;
}

.film-lineup__head-label {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: #343434;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    white-space: nowrap;
}

.film-lineup__head-line {
    display: inline-block;
    width: clamp(40px, 6vw, 84px);
    height: 1px;
    background: rgba(16, 32, 51, 0.4);
}

.film-lineup__item {
    position: relative;
    max-width: 760px;
    counter-increment: filmLineup;
}

.film-lineup__item + .film-lineup__item {
    margin-top: clamp(80px, 9vw, 128px);
}

.film-lineup__en {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    color: #2f2f2f;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.14em;
    white-space: nowrap;
}

.film-lineup__en::before {
    content: "No. " counter(filmLineup);
    color: #333;
    font-family: "Times New Roman", serif;
    font-size: 37px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.film-lineup__en::after {
    content: "";
    width: 70px;
    height: 1px;
    background: rgba(52, 52, 52, 0.3);
}

.film-lineup__dot {
    display: none;
}

.film-lineup__badge {
    margin-left: 12px;
    padding: 3px 11px 4px;
    border: 1px solid rgba(58, 90, 120, 0.28);
    border-radius: 999px;
    color: #3a5a78;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.film-lineup__lead {
    margin: 20px 0 0;
    color: #2f2f2f;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 26px;
    font-weight: 400;
    line-height: 1.42;
    letter-spacing: 0.15em;
}

.film-lineup__media {
    width: 100%;
    margin: 0 0 clamp(24px, 3vw, 36px);
    overflow: visible;
}

.film-lineup__media.choose-item__image {
    opacity: 1;
    transform: none;
    transition: none;
}

.film-lineup__media.choose-item__image > img {
    transform: none;
}

.film-lineup__media[data-reveal-item] > img {
    transform: none;
}
.film-lineup__media.choose-item__image[data-reveal-item] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1100ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 1100ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.film-lineup__media.choose-item__image[data-reveal-item].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.film-lineup__item .film-lineup__lead[data-reveal-item] {
    transition: opacity 1100ms cubic-bezier(0.22, 0.61, 0.36, 1) 180ms, transform 1100ms cubic-bezier(0.22, 0.61, 0.36, 1) 180ms;
}
.film-lineup__item .film-lineup__media[data-reveal-item] {
    transition: opacity 1100ms cubic-bezier(0.22, 0.61, 0.36, 1) 360ms, transform 1100ms cubic-bezier(0.22, 0.61, 0.36, 1) 360ms;
}
.film-lineup__item .film-lineup__media.choose-item__image[data-reveal-item] {
    transition: opacity 1100ms cubic-bezier(0.22, 0.61, 0.36, 1) 360ms, transform 1100ms cubic-bezier(0.22, 0.61, 0.36, 1) 360ms;
}
.film-lineup__item .film-lineup__text[data-reveal-item] {
    transition: opacity 1100ms cubic-bezier(0.22, 0.61, 0.36, 1) 540ms, transform 1100ms cubic-bezier(0.22, 0.61, 0.36, 1) 540ms;
}

.film-lineup__media .choose-item__media-track {
    aspect-ratio: 16 / 9;
    max-height: 310px;
    overflow: hidden;
    border-radius: 0;
    background: #e8e5df;
}

.film-lineup__text p {
    margin: 18px 0 0;
    color: #555;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 14px;
    font-weight: 500;
    line-height: 2.05;
    letter-spacing: 0.12em;
}

@media (min-width: 1024px) {
    .film-lineup__inner {
        width: min(1100px, 100%);
    }

    .film-lineup__head {
        width: min(900px, 100%);
        margin-left: 64px;
        margin-bottom: clamp(56px, 7vw, 96px);
    }

    .film-lineup__item {
        display: grid;
        justify-content: center;
        grid-template-columns: minmax(320px, 390px) minmax(420px, 540px);
        grid-template-areas:
            "en media"
            "lead media"
            "text media";
        align-items: center;
        column-gap: clamp(28px, 3.2vw, 52px);
        row-gap: 0;
        max-width: none;
    }

    .film-lineup__item + .film-lineup__item {
        margin-top: clamp(84px, 9vw, 132px);
    }

    .film-lineup__item:nth-of-type(even) {
        grid-template-columns: minmax(420px, 540px) minmax(320px, 390px);
        grid-template-areas:
            "media en"
            "media lead"
            "media text";
    }

    .film-lineup__item:nth-of-type(even) .choose-item__media-tabs {
        align-self: flex-start;
    }

    .film-lineup__en {
        grid-area: en;
    }

    .film-lineup__lead {
        grid-area: lead;
    }

    .film-lineup__media {
        grid-area: media;
        margin: 0;
    }

    .film-lineup__text {
        grid-area: text;
    }
}

@media (max-width: 767px) {
    .film-lineup {
        padding-bottom: 60px;
    }

    .film-lineup__inner {
        width: min(100% - 40px, 460px);
    }

    .film-lineup__head {
        gap: 16px;
        margin-bottom: 48px;
    }

    .film-lineup__head-label {
        gap: 12px;
        font-size: 11px;
        letter-spacing: 0.12em;
    }

    .film-lineup__lead {
        font-size: 24px;
        margin-bottom: 30px;
        letter-spacing: 0.04em;
    }

    .film-lineup__item + .film-lineup__item {
        margin-top: 55px;
    }

    .film-lineup__en {
        gap: 20px;
    }

    .film-lineup__en::before {
        font-size: 26px;
    }

    .film-lineup__en::after {
        width: 56px;
    }
}

.film-kv {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    padding: 106px 0 58px;
    background:
        linear-gradient(90deg, rgba(9, 20, 32, 0.72), rgba(9, 20, 32, 0.16) 36%, rgba(238, 246, 250, 0.08) 58%, rgba(9, 20, 32, 0.42)),
        linear-gradient(180deg, #eaf3f8, #f8fbfd);
}

.film-kv::before {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(8, 16, 26, 0.66), transparent 26%, transparent 74%, rgba(8, 16, 26, 0.48)),
        linear-gradient(180deg, rgba(8, 16, 26, 0.32), transparent 30%, rgba(8, 16, 26, 0.18));
    pointer-events: none;
    content: "";
}

.film-kv::after {
    content: none;
}

.film-kv__copy {
    position: absolute;
    z-index: 4;
    top: 50%;
    left: clamp(36px, 7vw, 126px);
    width: min(580px, calc(100% - 72px));
    color: #fff;
    text-shadow: 0 14px 34px rgba(9, 20, 32, 0.38);
    transform: translateY(-43%);
}

.film-kv__kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.film-kv__kicker::before {
    width: 36px;
    height: 1px;
    background: rgba(255, 255, 255, 0.78);
    content: "";
}

.film-kv h1 {
    margin: 0;
    font-family: "Zen Kaku Gothic New", var(--font);
    max-width: 12.5em;
    font-size: clamp(30px, 3.05vw, 44px);
    font-weight: 700;
    line-height: 1.42;
    letter-spacing: 0.04em;
}

.film-kv__lead {
    margin: 24px 0 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    font-size: clamp(13px, 1.1vw, 15px);
    font-weight: 700;
    line-height: 1.95;
    letter-spacing: 0.06em;
}

.film-kv__breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 34px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.film-kv__breadcrumb a {
    transition: opacity 180ms ease;
}

.film-kv__breadcrumb a:hover {
    opacity: 0.72;
}

.film-kv__breadcrumb em {
    font-style: normal;
}

.film-kv__kicker { animation: about-kv-title-reveal 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s both; }
.film-kv h1 { animation: about-kv-title-reveal 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.38s both; }
.film-kv__lead { animation: about-kv-title-reveal 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.58s both; }
.film-kv__breadcrumb { animation: about-kv-title-reveal 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.72s both; }

.film-kv__slider {
    position: relative;
    z-index: 1;
    width: max-content;
    height: 610px;
    min-height: 0;
}

.film-kv__track {
    display: flex;
    gap: 24px;
    height: 100%;
    padding-left: 5vw;
    animation: film-kv-flow 46s linear infinite;
    will-change: transform;
}

.film-kv__group {
    display: grid;
    grid-template-columns: 230px 560px 300px 340px 560px 300px;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
    height: 100%;
}

.film-kv__card {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 24px 56px -34px rgba(9, 20, 32, 0.45);
}

.film-kv__card--window {
    border-radius: 999px 999px 18px 18px;
}

.film-kv__card--medium.film-kv__card--window {
    border-radius: 160px 160px 16px 16px;
}

.film-kv__card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
}

.film-kv__group > :nth-child(1) { grid-column: 1; grid-row: 1; }
.film-kv__group > :nth-child(2) { grid-column: 2; grid-row: 1 / span 2; }
.film-kv__group > :nth-child(3) { grid-column: 3; grid-row: 1; }
.film-kv__group > :nth-child(4) { grid-column: 4; grid-row: 1 / span 2; }
.film-kv__group > :nth-child(5) { grid-column: 1; grid-row: 2; }
.film-kv__group > :nth-child(6) { grid-column: 3; grid-row: 2; }
.film-kv__group > :nth-child(7) { grid-column: 5; grid-row: 1 / span 2; }
.film-kv__group > :nth-child(8) { grid-column: 6; grid-row: 1; }
.film-kv__group > :nth-child(9) { grid-column: 6; grid-row: 2; }

@keyframes film-kv-flow {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 12px));
    }
}

@media (prefers-reduced-motion: reduce) {
    .film-kv__track {
        animation: none;
    }
}

@media (max-width: 1023px) {
    .film-kv {
        min-height: 660px;
        padding: 86px 0 48px;
    }
    .film-kv__copy {
        top: auto;
        bottom: 56px;
        left: 7%;
        width: min(520px, 86%);
        transform: none;
    }
    .film-kv__slider {
        height: 500px;
        min-height: 0;
    }
    .film-kv__group {
        grid-template-columns: 170px 400px 220px 240px 400px 220px;
        gap: 18px;
    }
    .film-kv__track {
        gap: 18px;
        padding-left: 4vw;
        animation-duration: 38s;
    }
}

@media (max-width: 767px) {
    .film-kv {
        min-height: 590px;
        padding: 70px 0 38px;
    }
    .film-kv::before {
        background:
            linear-gradient(180deg, rgba(8, 16, 26, 0.18), transparent 28%, rgba(8, 16, 26, 0.72)),
            linear-gradient(90deg, rgba(8, 16, 26, 0.38), transparent 46%);
    }
    .film-kv__copy {
        bottom: 34px;
        left: 6%;
        width: 88%;
    }
    .film-kv h1 {
        max-width: 12em;
        font-size: 27px;
        line-height: 1.36;
        letter-spacing: 0.02em;
    }
    .film-kv__lead {
        margin-top: 16px;
        padding-top: 16px;
        font-size: 12px;
        line-height: 1.8;
    }
    .film-kv__breadcrumb {
        margin-top: 22px;
        font-size: 10.5px;
    }
    .film-kv__slider {
        height: 430px;
        min-height: 0;
    }
    .film-kv__group {
        grid-template-columns: 128px 280px 170px 188px 280px 170px;
        gap: 14px;
    }
    .film-kv__track {
        gap: 14px;
        animation-duration: 30s;
    }
    .film-kv__card {
        border-radius: 12px;
    }
}

.film-select {
    position: relative;
    padding: 104px 0 118px;
    background:
        radial-gradient(circle at 24% 18%, rgba(132, 190, 244, 0.18), transparent 32%),
        radial-gradient(circle at 78% 70%, rgba(132, 226, 221, 0.14), transparent 34%),
        linear-gradient(180deg, #f8fbfd, #edf5fb);
    color: #10253f;
    font-family: "Zen Kaku Gothic New", var(--font);
}

.film-select__inner {
    width: min(1040px, calc(100% - 48px));
    margin: 0 auto;
    padding: clamp(44px, 5vw, 70px) clamp(20px, 4vw, 58px) clamp(54px, 6vw, 84px);
    border-radius: 36px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.68)),
        rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(121, 176, 224, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        0 34px 90px -56px rgba(38, 93, 140, 0.42);
}

.film-select__head {
    text-align: center;
}

.film-select__head .section-kicker {
    color: #5d7fa0;
}

.film-select__head .section-kicker::after {
    background: linear-gradient(90deg, #2e86ea, rgba(46, 134, 234, 0.22));
}

.film-select__head .section-title {
    margin-top: 20px;
    color: #092b5d;
    font-size: clamp(34px, 4.4vw, 58px);
    line-height: 1.35;
    letter-spacing: 0.08em;
}

.film-select__lead {
    margin: 22px 0 0;
    color: #273f5b;
    font-size: clamp(15px, 1.7vw, 20px);
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.08em;
}

.film-select__map {
    position: relative;
    width: min(860px, 100%);
    aspect-ratio: 0.86 / 1;
    margin: 48px auto 0;
}

.film-select__map::before,
.film-select__map::after {
    position: absolute;
    inset: 17% 16% 15%;
    z-index: 0;
    border-radius: 50%;
    background:
        linear-gradient(#9db6d1 0 0) 50% 0 / 2px 100% no-repeat,
        linear-gradient(#9db6d1 0 0) 0 50% / 100% 2px no-repeat;
    opacity: 0.34;
    content: "";
    mask-image: radial-gradient(circle, transparent 0 25%, #000 26% 100%);
}

.film-select__map::after {
    transform: rotate(45deg);
    opacity: 0.22;
}

.film-select__center {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: min(320px, 40%);
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 50%;
    border: 9px solid rgba(148, 209, 252, 0.54);
    background: #fff;
    box-shadow:
        0 0 0 8px rgba(172, 219, 252, 0.38),
        0 28px 58px -38px rgba(40, 92, 138, 0.42);
    transform: translate(-50%, -50%);
}

.film-select__center img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.74;
}

.film-select__center::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.55));
    content: "";
}

.film-select__center p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #083571;
    font-size: clamp(22px, 3.3vw, 34px);
    font-weight: 700;
    line-height: 1.42;
    letter-spacing: 0.08em;
    text-align: center;
    text-shadow: 0 2px 14px rgba(255, 255, 255, 0.86);
}

.film-select__bubble {
    position: absolute;
    z-index: 3;
    display: grid;
    place-items: center;
    gap: 8px;
    width: min(210px, 25%);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.66) 62%, rgba(255, 255, 255, 0.42)),
        var(--bubble-bg, rgba(230, 244, 255, 0.84));
    border: 2px solid var(--bubble, #5aaaf5);
    box-shadow:
        inset 10px 12px 26px rgba(255, 255, 255, 0.8),
        inset -12px -14px 24px rgba(63, 112, 160, 0.08),
        0 18px 38px -24px var(--bubble, #5aaaf5);
    color: var(--bubble, #2e7fd4);
    transition: transform 260ms ease, box-shadow 260ms ease;
}

.film-select__bubble::before {
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.76);
    content: "";
}

.film-select__bubble:hover {
    transform: translateY(-4px);
    box-shadow:
        inset 10px 12px 26px rgba(255, 255, 255, 0.86),
        inset -12px -14px 24px rgba(63, 112, 160, 0.1),
        0 24px 48px -24px var(--bubble, #5aaaf5);
}

.film-select__icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
}

.film-select__icon svg {
    width: 100%;
    height: 100%;
}

.film-select__bubble > span:last-child {
    position: relative;
    z-index: 1;
    font-size: clamp(17px, 2vw, 25px);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-align: center;
}

.film-select__bubble--security {
    --bubble: #2d7fe0;
    --bubble-bg: rgba(231, 244, 255, 0.9);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.film-select__bubble--privacy {
    --bubble: #e95498;
    --bubble-bg: rgba(255, 235, 245, 0.9);
    top: 24%;
    left: 3%;
}

.film-select__bubble--mirror {
    --bubble: #17a8b8;
    --bubble-bg: rgba(229, 250, 252, 0.9);
    top: 24%;
    right: 3%;
}

.film-select__bubble--uv {
    --bubble: #8b66e9;
    --bubble-bg: rgba(242, 236, 255, 0.9);
    bottom: 13%;
    left: 0;
}

.film-select__bubble--shatter {
    --bubble: #4dad43;
    --bubble-bg: rgba(238, 250, 235, 0.9);
    right: 0;
    bottom: 12%;
}

.film-select__bubble--heat {
    --bubble: #f28a1d;
    --bubble-bg: rgba(255, 242, 225, 0.92);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.film-select__bubble--security:hover,
.film-select__bubble--heat:hover {
    transform: translateX(-50%) translateY(-4px);
}

@media (max-width: 767px) {
    .film-select {
        padding: 72px 0 84px;
    }
    .film-select__inner {
        width: min(440px, calc(100% - 28px));
        padding: 38px 14px 42px;
        border-radius: 26px;
    }
    .film-select__head .section-title {
        font-size: 31px;
        letter-spacing: 0.05em;
    }
    .film-select__lead {
        font-size: 14px;
    }
    .film-select__map {
        aspect-ratio: 0.58 / 1;
        margin-top: 34px;
    }
    .film-select__center {
        width: 48%;
    }
    .film-select__bubble {
        width: 33%;
    }
    .film-select__icon {
        width: 42px;
        height: 42px;
    }
    .film-select__bubble > span:last-child {
        font-size: 14px;
    }
    .film-select__bubble--security {
        top: 2%;
    }
    .film-select__bubble--privacy {
        top: 25%;
        left: 0;
    }
    .film-select__bubble--mirror {
        top: 25%;
        right: 0;
    }
    .film-select__bubble--uv {
        bottom: 18%;
    }
    .film-select__bubble--shatter {
        bottom: 18%;
    }
}

.film-select {
    padding: clamp(86px, 10vw, 140px) 0;
    background:
        linear-gradient(90deg, rgba(102, 120, 137, 0.08) 1px, transparent 1px) 0 0 / 72px 72px,
        linear-gradient(180deg, #f7fbfe 0%, #eef6fb 100%);
}

.film-select__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(300px, 0.86fr) minmax(420px, 1.14fr);
    grid-template-areas:
        "intro visual"
        "list visual"
        "thumbs thumbs";
    gap: 34px 48px;
    width: min(1180px, calc(100% - 72px));
    margin: 0 auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.film-select__intro {
    grid-area: intro;
    position: relative;
    z-index: 2;
    align-self: end;
    padding-top: 38px;
}

.film-select__intro .section-kicker {
    color: #667889;
}

.film-select__intro .section-kicker::after {
    background: #8da1b3;
}

.film-select__intro .section-title {
    position: relative;
    margin-top: 24px;
    color: #102033;
    font-size: clamp(34px, 4.2vw, 60px);
    line-height: 1.18;
    letter-spacing: 0.08em;
}

.film-select__title-bg {
    position: absolute;
    left: -0.08em;
    top: -0.72em;
    z-index: -1;
    color: rgba(102, 120, 137, 0.08);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(72px, 12vw, 170px);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
}

.film-select__intro h3 {
    margin: 38px 0 0;
    color: #102033;
    font-size: clamp(24px, 2.7vw, 38px);
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0.08em;
}

.film-select__lead {
    margin: 24px 0 0;
    color: #435568;
    font-size: 16px;
    font-weight: 600;
    line-height: 2.05;
    letter-spacing: 0.08em;
}

.film-select__button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    min-width: 270px;
    margin-top: 36px;
    padding: 18px 22px 18px 28px;
    border-radius: 999px;
    border: 1px solid rgba(102, 120, 137, 0.28);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(236, 246, 253, 0.72)),
        rgba(255, 255, 255, 0.84);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 18px 48px -32px rgba(42, 78, 112, 0.42);
    color: #0b376e;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.film-select__button span:last-child {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 8px 22px -14px rgba(16, 32, 51, 0.6);
}

.film-select__visual {
    grid-area: visual;
    position: relative;
    min-height: 560px;
    overflow: hidden;
    border-radius: 34px 34px 90px 34px;
    box-shadow: 0 42px 90px -60px rgba(24, 46, 70, 0.56);
}

.film-select__visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 34, 52, 0.02), rgba(13, 34, 52, 0.18));
    content: "";
}

.film-select__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.film-select__visual-label {
    position: absolute;
    right: 28px;
    bottom: 26px;
    z-index: 1;
    color: rgba(255, 255, 255, 0.82);
    font-family: "Cormorant Garamond", serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
}

.film-select__list {
    grid-area: list;
    position: relative;
    z-index: 3;
    display: grid;
    gap: 12px;
}

.film-select__item {
    position: relative;
    display: grid;
    grid-template-columns: 54px 1fr auto;
    grid-template-areas:
        "num main arrow"
        "num sub arrow";
    align-items: center;
    column-gap: 18px;
    min-height: 82px;
    padding: 18px 22px;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(102, 120, 137, 0.18);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 24px 56px -44px rgba(30, 62, 92, 0.48);
    color: #102033;
    transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.film-select__item::before {
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, #92caff, #667889);
    content: "";
    opacity: 0;
    transition: opacity 260ms ease;
}

.film-select__item:hover {
    transform: translateX(8px);
    border-color: rgba(102, 120, 137, 0.38);
    box-shadow: 0 28px 62px -42px rgba(30, 62, 92, 0.58);
}

.film-select__item:hover::before {
    opacity: 1;
}

.film-select__num {
    grid-area: num;
    color: rgba(102, 120, 137, 0.48);
    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
}

.film-select__item-main {
    grid-area: main;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.film-select__item-sub {
    grid-area: sub;
    margin-top: 5px;
    color: #667889;
    font-family: "Cormorant Garamond", serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.film-select__arrow {
    grid-area: arrow;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #edf5fb;
    color: #0b376e;
}

.film-select__thumbs {
    grid-area: thumbs;
    display: grid;
    grid-template-columns: 1.1fr 0.8fr 1fr;
    gap: 18px;
    width: min(760px, 70%);
    margin: -68px 0 0 auto;
    pointer-events: none;
}

.film-select__thumb {
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border-radius: 22px;
    box-shadow: 0 28px 58px -44px rgba(24, 46, 70, 0.58);
}

.film-select__thumb:nth-child(2) {
    margin-top: 42px;
}

.film-select__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1023px) {
    .film-select {
        padding: 82px 0 94px;
    }

    .film-select__inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "intro"
            "visual"
            "list"
            "thumbs";
        gap: 30px;
        width: min(720px, calc(100% - 40px));
    }

    .film-select__intro {
        padding-top: 18px;
    }

    .film-select__intro h3 {
        margin-top: 26px;
        font-size: clamp(24px, 5.2vw, 36px);
    }

    .film-select__visual {
        min-height: auto;
        aspect-ratio: 16 / 10;
        border-radius: 26px 26px 64px 26px;
    }

    .film-select__visual-label {
        right: 20px;
        bottom: 18px;
        font-size: clamp(38px, 10vw, 70px);
    }

    .film-select__thumbs {
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 767px) {
    .film-select {
        padding: 66px 0 76px;
    }

    .film-select__inner {
        width: min(440px, calc(100% - 28px));
        gap: 24px;
    }

    .film-select__intro .section-title {
        font-size: 32px;
    }

    .film-select__title-bg {
        font-size: 74px;
        top: -0.54em;
    }

    .film-select__intro h3 {
        font-size: 23px;
        line-height: 1.72;
    }

    .film-select__lead {
        font-size: 14px;
        line-height: 1.95;
    }

    .film-select__button {
        width: 100%;
        min-width: 0;
        margin-top: 28px;
        padding: 16px 18px 16px 22px;
        font-size: 13px;
    }

    .film-select__list {
        gap: 10px;
    }

    .film-select__item {
        grid-template-columns: 44px 1fr auto;
        column-gap: 14px;
        min-height: 76px;
        padding: 16px 16px;
        border-radius: 17px;
    }

    .film-select__num {
        font-size: 30px;
    }

    .film-select__item-main {
        font-size: 15px;
    }

    .film-select__item-sub {
        font-size: 12px;
    }

    .film-select__arrow {
        width: 32px;
        height: 32px;
    }

    .film-select__thumbs {
        grid-template-columns: 1fr 1fr;
    }

    .film-select__thumb:nth-child(2) {
        margin-top: 26px;
    }

    .film-select__thumb:nth-child(3) {
        display: none;
    }
}

.film-select {
    padding: clamp(82px, 9vw, 124px) 0 clamp(86px, 9vw, 132px);
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(83, 160, 205, 0.18) 1px, transparent 1px) 0 0 / 92px 92px,
        linear-gradient(0deg, rgba(83, 160, 205, 0.14) 1px, transparent 1px) 0 0 / 92px 92px,
        #e8f7f9;
    color: #102033;
}

.film-select::before,
.film-select::after {
    content: none;
}

.film-select__inner {
    position: relative;
    z-index: 1;
    display: block;
    width: min(1100px, calc(100% - 48px));
    margin: 0 auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.film-select__intro {
    position: relative;
    z-index: 2;
    display: block;
    padding: 0;
    text-align: center;
}

.film-select__intro .section-kicker {
    justify-content: center;
    color: #3a84bd;
}

.film-select__intro .section-kicker::after {
    margin-inline: auto;
    background: #3a84bd;
}

.film-select__intro .section-title {
    position: relative;
    margin: 18px auto 0;
    color: #0b315e;
    font-size: clamp(34px, 4.2vw, 58px);
    line-height: 1.28;
    letter-spacing: 0.08em;
}

.film-select__title-bg {
    display: none;
}

.film-select__lead {
    margin: 18px 0 0;
    color: #365a78;
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 700;
    line-height: 1.9;
    letter-spacing: 0.08em;
}

.film-select__diagram {
    position: relative;
    width: min(980px, 100%);
    aspect-ratio: 1.18;
    margin: clamp(34px, 5vw, 58px) auto 0;
}

.film-select__diagram::before {
    position: absolute;
    inset: 13% 20%;
    z-index: 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.76);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.76),
        0 34px 74px -58px rgba(30, 88, 130, 0.56);
    content: "";
}

.film-select__diagram::after {
    content: none;
}

.film-select__center {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 32%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 50%;
    border: 10px solid rgba(255, 255, 255, 0.78);
    background: #fff;
    box-shadow:
        0 0 0 13px rgba(255, 255, 255, 0.44),
        0 34px 70px -50px rgba(22, 80, 128, 0.55);
    transform: translate(-50%, -50%);
}

.film-select__center::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(36, 129, 196, 0.24)),
        radial-gradient(circle at 48% 36%, transparent 0 38%, rgba(13, 55, 92, 0.24) 100%);
    content: "";
}

.film-select__center::after {
    content: none;
}

.film-select__center-ring {
    position: absolute;
    inset: 18px;
    z-index: 3;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.64);
    pointer-events: none;
}

.film-select__center img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.film-select__center p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #fff;
    font-size: clamp(16px, 2vw, 25px);
    font-weight: 800;
    line-height: 1.42;
    letter-spacing: 0.08em;
    text-align: center;
    text-shadow: 0 3px 18px rgba(4, 39, 74, 0.56);
}

.film-select__orb {
    --orb: #4daee3;
    position: absolute;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 28%;
    aspect-ratio: 1;
    padding: 28px;
    border-radius: 50%;
    background: rgba(76, 174, 227, 0.92);
    border: 10px solid rgba(127, 204, 238, 0.34);
    box-shadow:
        0 0 0 10px rgba(75, 174, 227, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.24),
        0 28px 62px -48px rgba(20, 78, 126, 0.64);
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: transform 260ms ease, filter 260ms ease;
}

.film-select__orb:hover {
    transform: translateY(-6px) scale(1.015);
    filter: brightness(1.04);
}

.film-select__orb-hex {
    position: absolute;
    inset: 27%;
    background: rgba(44, 151, 211, 0.28);
    clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
}

.film-select__orb .film-select__num {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    margin: 0 0 10px;
    color: #fff;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: clamp(16px, 2.1vw, 24px);
    font-weight: 800;
    line-height: 1;
}

.film-select__orb .film-select__item-main {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    padding: 0 18px;
    color: #fff;
    font-size: clamp(16px, 2.1vw, 24px);
    font-weight: 800;
    line-height: 1.28;
    letter-spacing: 0.08em;
    white-space: normal;
    overflow-wrap: anywhere;
}

.film-select__orb .film-select__item-sub {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: clamp(11px, 1.4vw, 15px);
    font-weight: 800;
    letter-spacing: 0.06em;
    white-space: normal;
}

.film-select__orb--heat {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.film-select__orb--heat:hover {
    transform: translateX(-50%) translateY(-6px) scale(1.015);
}

.film-select__orb--uv {
    top: 22%;
    right: 3%;
}

.film-select__orb--privacy {
    right: 13%;
    bottom: 3%;
}

.film-select__orb--security {
    bottom: 3%;
    left: 13%;
}

.film-select__orb--shatter {
    top: 22%;
    left: 3%;
}

.film-select__orb--mirror {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.film-select__orb--mirror:hover {
    transform: translateX(-50%) translateY(-6px) scale(1.015);
}

.film-select__visual,
.film-select__list,
.film-select__thumbs,
.film-select__button {
    display: none;
}

@media (max-width: 1023px) {
    .film-select__inner {
        width: min(760px, calc(100% - 32px));
    }

    .film-select__diagram {
        aspect-ratio: 0.78;
        max-width: 620px;
    }

    .film-select__diagram::before {
        inset: 24% 15%;
    }

    .film-select__center {
        width: 38%;
    }

    .film-select__orb {
        width: 33%;
        padding: 20px;
        border-width: 8px;
    }

    .film-select__orb--heat {
        top: 0;
    }

    .film-select__orb--uv {
        top: 18%;
        right: 0;
    }

    .film-select__orb--privacy {
        right: 2%;
        bottom: 14%;
    }

    .film-select__orb--security {
        left: 2%;
        bottom: 14%;
    }

    .film-select__orb--shatter {
        top: 18%;
        left: 0;
    }

    .film-select__orb--mirror {
        bottom: 0;
    }
}

@media (max-width: 767px) {
    .film-select {
        padding: 62px 0 72px;
    }

    .film-select__inner {
        width: min(430px, calc(100% - 24px));
    }

    .film-select__intro .section-title {
        font-size: 34px;
    }

    .film-select__diagram {
        aspect-ratio: 0.54;
        max-width: 390px;
        margin-top: 32px;
    }

    .film-select__diagram::before {
        inset: 29% 11%;
    }

    .film-select__center {
        width: 48%;
        border-width: 7px;
        box-shadow:
            0 0 0 8px rgba(255, 255, 255, 0.44),
            0 24px 52px -38px rgba(22, 80, 128, 0.55);
    }

    .film-select__center p {
        font-size: 16px;
    }

    .film-select__orb {
        width: 42%;
        padding: 14px;
        border-width: 7px;
    }

    .film-select__orb .film-select__num {
        margin-bottom: 6px;
        font-size: 16px;
    }

    .film-select__orb .film-select__item-main {
        padding: 0 6px;
        font-size: 14px;
        line-height: 1.24;
    }

    .film-select__orb .film-select__item-sub {
        margin-top: 5px;
        font-size: 9px;
    }

    .film-select__orb--heat {
        top: 0;
    }

    .film-select__orb--uv {
        top: 18%;
        right: 0;
    }

    .film-select__orb--privacy {
        right: 0;
        bottom: 18%;
    }

    .film-select__orb--security {
        left: 0;
        bottom: 18%;
    }

    .film-select__orb--shatter {
        top: 18%;
        left: 0;
    }

    .film-select__orb--mirror {
        bottom: 0;
    }
}

/* film-worry ------------------------------------------------ */
.film-worry {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(16px, 2.6vw, 26px);
    margin-top: clamp(36px, 5vw, 58px);
}

.film-worry__top {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(150px, 24vw, 210px) clamp(36px, 6vw, 64px);
    width: min(640px, 100%);
}

/* 中央から放射する同心円リング */
.film-worry__top::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(540px, 84vw);
    aspect-ratio: 1;
    border-radius: 50%;
    background: repeating-radial-gradient(
        circle,
        transparent 0 26px,
        rgba(120, 168, 208, 0.1) 26px 27px
    );
    z-index: 0;
    pointer-events: none;
}

.film-worry__card {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(8px, 1.2vw, 12px);
    padding: clamp(18px, 2.6vw, 26px) clamp(14px, 2vw, 22px) clamp(28px, 3.4vw, 38px);
    background: #fff;
    border-radius: 22px;
    box-shadow:
        0 2px 12px -4px rgba(10, 44, 80, 0.1),
        0 14px 34px -16px rgba(10, 44, 80, 0.14);
    color: #2b4a6f;
    font-family: "Zen Kaku Gothic New", var(--font);
    text-decoration: none;
    text-align: center;
    min-height: clamp(118px, 17vw, 150px);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.film-worry__card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 4px 20px -4px rgba(10, 44, 80, 0.16),
        0 18px 42px -16px rgba(10, 44, 80, 0.2);
}

/* 吹き出しのしっぽ（中央円へ向かう三角・円より前面） */
.film-worry__card::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 14px;
    background: #fff;
    z-index: 5;
    filter: drop-shadow(0 2px 3px rgba(10, 44, 80, 0.18));
}

.film-worry__card--tl::after,
.film-worry__card--tr::after {
    bottom: -11px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.film-worry__card--bl::after,
.film-worry__card--br::after,
.film-worry__card--bc::after {
    top: -11px;
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
}

.film-worry__card--tl::after { right: 40px; }
.film-worry__card--tr::after { left: 40px; }
.film-worry__card--bl::after { right: 40px; }
.film-worry__card--br::after { left: 40px; }
.film-worry__card--bc::after { left: 50%; transform: translateX(-50%); }

/* テキスト下の点線区切り */
.film-worry__card::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: clamp(13px, 1.8vw, 18px);
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background-image: linear-gradient(90deg, rgba(120, 160, 200, 0.5) 0 4px, transparent 4px);
    background-size: 8px 1px;
    background-repeat: repeat-x;
}

.film-worry__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(42px, 5.6vw, 54px);
    height: clamp(42px, 5.6vw, 54px);
    flex-shrink: 0;
}

.film-worry__icon svg {
    width: 100%;
    height: 100%;
}

.film-worry__card p {
    margin: 0;
    font-size: clamp(11.5px, 1.1vw, 13.5px);
    font-weight: 700;
    line-height: 1.74;
    letter-spacing: 0.04em;
}

/* 中央円（カード背面・太い白リング） */
.film-worry__center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: clamp(200px, 36%, 280px);
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 50%;
    border: clamp(10px, 1.6vw, 16px) solid #fff;
    box-shadow:
        0 0 0 1px rgba(200, 220, 238, 0.7),
        0 14px 50px -16px rgba(10, 44, 80, 0.26);
}

.film-worry__center img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.film-worry__card--bc {
    width: min(290px, 100%);
    min-height: clamp(96px, 13vw, 116px);
    padding: clamp(16px, 2.2vw, 22px) clamp(18px, 2.4vw, 28px) clamp(26px, 3.2vw, 34px);
}

.film-worry__hint {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    color: rgba(43, 74, 111, 0.5);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

@media (max-width: 767px) {
    .film-worry__top {
        gap: clamp(96px, 30vw, 140px) clamp(20px, 5vw, 30px);
        width: min(340px, calc(100% - 16px));
    }

    .film-worry__top::before {
        width: min(330px, 90vw);
        background: repeating-radial-gradient(
            circle,
            transparent 0 18px,
            rgba(120, 168, 208, 0.1) 18px 19px
        );
    }

    .film-worry__card {
        min-height: 92px;
        padding: 14px 9px 22px;
        border-radius: 16px;
        gap: 6px;
    }

    .film-worry__card::before {
        bottom: 11px;
        width: 64%;
    }

    .film-worry__card::after {
        width: 18px;
        height: 11px;
    }

    .film-worry__card--tl::after,
    .film-worry__card--tr::after { bottom: -9px; }
    .film-worry__card--bl::after,
    .film-worry__card--br::after,
    .film-worry__card--bc::after { top: -9px; }

    .film-worry__card--tl::after { right: 26px; }
    .film-worry__card--tr::after { left: 26px; }
    .film-worry__card--bl::after { right: 26px; }
    .film-worry__card--br::after { left: 26px; }

    .film-worry__icon {
        width: 36px;
        height: 36px;
    }

    .film-worry__card p {
        font-size: 10.5px;
        line-height: 1.64;
    }

    .film-worry__center {
        width: clamp(150px, 48vw, 185px);
        border-width: 10px;
    }

    .film-worry__card--bc {
        width: min(230px, 100%);
        min-height: 84px;
        padding: 12px 14px 20px;
    }

    .film-worry__hint {
        font-size: 11px;
    }
}

.film-select:has(.film-worry) {
    padding: clamp(86px, 9vw, 124px) 0 clamp(92px, 10vw, 148px);
    background:
        radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.9), transparent 28%),
        linear-gradient(90deg, rgba(83, 160, 205, 0.18) 1px, transparent 1px) 0 0 / 92px 92px,
        linear-gradient(0deg, rgba(83, 160, 205, 0.14) 1px, transparent 1px) 0 0 / 92px 92px,
        linear-gradient(180deg, #f6fafc 0%, #edf4f8 100%);
}

.film-select:has(.film-worry) .film-select__intro .section-kicker {
    color: #667889;
}

.film-select:has(.film-worry) .film-select__intro .section-kicker::after {
    background: #667889;
}

.film-select:has(.film-worry) .film-select__intro .section-title {
    color: #102033;
    font-size: clamp(34px, 4.1vw, 58px);
    letter-spacing: 0.12em;
}

.film-select:has(.film-worry) .film-select__lead {
    color: #4e6476;
}

.film-select:has(.film-worry) .film-worry {
    width: min(1060px, 100%);
    margin-inline: auto;
    margin-top: clamp(44px, 5vw, 68px);
}

.film-select:has(.film-worry) .film-worry__top {
    width: min(720px, 100%);
}

.film-select:has(.film-worry) .film-worry__top::before {
    width: min(620px, 86vw);
    background:
        linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(102, 120, 137, 0.16) 50%, transparent calc(50% + 0.5px)),
        linear-gradient(180deg, transparent calc(50% - 0.5px), rgba(102, 120, 137, 0.13) 50%, transparent calc(50% + 0.5px)),
        radial-gradient(circle, transparent 0 36%, rgba(255, 255, 255, 0.54) 36% 37%, transparent 37%),
        radial-gradient(circle, transparent 0 58%, rgba(102, 120, 137, 0.12) 58% 58.5%, transparent 59%);
}

.film-select:has(.film-worry) .film-worry__card {
    min-height: clamp(124px, 16vw, 156px);
    border: 1px solid rgba(102, 120, 137, 0.2);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(245, 250, 252, 0.72)),
        rgba(255, 255, 255, 0.76);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.86),
        0 26px 70px -52px rgba(16, 32, 51, 0.42);
    color: #102033;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.film-select:has(.film-worry) .film-worry__card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 120, 137, 0.34);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 34px 82px -54px rgba(16, 32, 51, 0.54);
}

.film-select:has(.film-worry) .film-worry__card::after {
    background: rgba(250, 253, 255, 0.94);
    filter: drop-shadow(0 1px 2px rgba(16, 32, 51, 0.12));
}

.film-select:has(.film-worry) .film-worry__card::before {
    background-image: linear-gradient(90deg, rgba(102, 120, 137, 0.38) 0 4px, transparent 4px);
}

.film-select:has(.film-worry) .film-worry__icon {
    width: clamp(38px, 4.8vw, 48px);
    height: clamp(38px, 4.8vw, 48px);
    color: #667889;
    opacity: 0.88;
}

.film-select:has(.film-worry) .film-worry__icon svg,
.film-select:has(.film-worry) .film-worry__icon svg * {
    stroke: currentColor;
}

.film-select:has(.film-worry) .film-worry__icon text {
    fill: currentColor;
}

.film-select:has(.film-worry) .film-worry__card p {
    color: #182a3a;
    font-size: clamp(12px, 1.05vw, 14px);
    font-weight: 800;
}

.film-select:has(.film-worry) .film-worry__center {
    width: clamp(330px, 50%, 460px);
    border: clamp(10px, 1.4vw, 15px) solid rgba(255, 255, 255, 0.86);
    border-radius: 50%;
    box-shadow:
        0 0 0 1px rgba(102, 120, 137, 0.18),
        0 34px 82px -58px rgba(16, 32, 51, 0.5);
}

.film-select:has(.film-worry) .film-worry__center::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(255, 255, 255, 0.34) 50%, transparent calc(50% + 0.5px)),
        linear-gradient(180deg, transparent calc(50% - 0.5px), rgba(255, 255, 255, 0.22) 50%, transparent calc(50% + 0.5px));
    content: "";
}

.film-select:has(.film-worry) .film-worry__card--bc {
    width: min(320px, 100%);
}

.film-select:has(.film-worry) .film-worry__hint {
    color: rgba(102, 120, 137, 0.62);
}

@media (max-width: 767px) {
    .film-select:has(.film-worry) {
        padding: 68px 0 78px;
    }

    .film-select:has(.film-worry) .film-worry__top {
        width: min(350px, calc(100% - 16px));
    }

    .film-select:has(.film-worry) .film-worry__top::before {
        width: min(350px, 92vw);
    }

    .film-select:has(.film-worry) .film-worry__card {
        min-height: 96px;
        border-radius: 7px;
    }

    .film-select:has(.film-worry) .film-worry__center {
        width: clamp(190px, 58vw, 230px);
        border-width: 8px;
    }
}

/* ─── Film Concern Comparison Slider ─── */
.film-worry-slider {
    position: relative;
    overflow: hidden;
    padding: clamp(72px, 8vw, 108px) 0 clamp(74px, 8vw, 110px);
    background:
        radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.94), transparent 32%),
        radial-gradient(circle at 16% 10%, rgba(255, 255, 255, 0.74), transparent 24%),
        radial-gradient(circle at 84% 18%, rgba(210, 230, 244, 0.34), transparent 28%),
        linear-gradient(90deg, rgba(102, 120, 137, 0.07) 1px, transparent 1px) 0 0 / 38px 38px,
        linear-gradient(0deg, rgba(102, 120, 137, 0.06) 1px, transparent 1px) 0 0 / 38px 38px,
        #eef6fb;
    font-family: "Zen Kaku Gothic New", var(--font);
    color: #102033;
}

.film-worry-slider::before,
.film-worry-slider::after {
    position: absolute;
    width: 34vw;
    height: 34vw;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.42);
    filter: blur(6px);
    content: "";
    pointer-events: none;
}

.film-worry-slider::before {
    top: -18vw;
    left: -14vw;
}

.film-worry-slider::after {
    right: -18vw;
    bottom: -20vw;
}

.film-worry-slider__inner {
    position: relative;
    z-index: 1;
    width: min(506px, 100%);
    margin: 0 auto;
}

.film-worry-slider__head {
    width: min(430px, calc(100% - 48px));
    margin: 0 auto clamp(24px, 4vw, 38px);
    text-align: center;
}

.film-worry-slider__head h2 {
    margin: 12px 0 0;
    color: #102033;
    font-size: clamp(28px, 4.2vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.12em;
}

.film-worry-slider__head p:not(.section-kicker) {
    margin: 12px 0 0;
    color: #526578;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.9;
    letter-spacing: 0.08em;
}

.film-worry-slider__viewport {
    overflow: visible;
    width: 100%;
}

.film-worry-slider__track {
    position: relative;
    width: 85.6%;
    aspect-ratio: 433 / 614;
    margin: 0 auto 34px;
    perspective: 1100px;
    cursor: pointer;
}

.film-worry-slider__track::-webkit-scrollbar {
    display: none;
}

.film-worry-slide {
    position: absolute;
    inset: 0;
    filter: drop-shadow(12px 12px 5px rgba(35, 56, 72, 0.18));
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 18px, -120px) scale(0.78) rotate(-8deg);
    transform-origin: center bottom;
    transition:
        opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.72s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
    z-index: 1;
}

.film-worry-slide.is-active {
    filter: drop-shadow(14px 20px 10px rgba(35, 56, 72, 0.22));
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    z-index: 5;
}

.film-worry-slide.is-prev {
    opacity: 0.46;
    transform: translate3d(-34px, 20px, -90px) scale(0.88) rotate(-7deg);
    z-index: 2;
}

.film-worry-slide.is-next {
    opacity: 0.62;
    transform: translate3d(34px, 12px, -58px) scale(0.92) rotate(6deg);
    z-index: 4;
}

.film-worry-slide.is-leaving {
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 42px, 90px) scale(1.04) rotate(4deg);
    z-index: 6;
}

.film-worry-slide a {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.film-worry-slide__card {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    aspect-ratio: 433 / 614;
    min-height: 0;
    padding: clamp(22px, 5.8vw, 34px) clamp(22px, 5.8vw, 34px) clamp(24px, 6vw, 38px);
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 25px;
    background: #e8f3fb;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.88),
        0 22px 46px -28px rgba(24, 46, 64, 0.38);
}

.film-worry-slide__card::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(13, 30, 48, 0.08), rgba(13, 30, 48, 0.54)),
        radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.58), transparent 22%);
    content: "";
    pointer-events: none;
    z-index: 2;
}

.film-worry-slide__card::after {
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 18px;
    content: "";
    pointer-events: none;
    z-index: 3;
}

.film-worry-slide__card--heat {
    background: linear-gradient(145deg, rgba(255, 244, 204, 0.88), rgba(198, 226, 244, 0.74));
}

.film-worry-slide__card--uv {
    background: linear-gradient(145deg, rgba(218, 237, 255, 0.88), rgba(246, 251, 255, 0.72));
}

.film-worry-slide__card--privacy {
    background: linear-gradient(145deg, rgba(219, 244, 229, 0.88), rgba(238, 247, 243, 0.74));
}

.film-worry-slide__card--security {
    background: linear-gradient(145deg, rgba(230, 235, 246, 0.9), rgba(244, 248, 252, 0.74));
}

.film-worry-slide__icon {
    position: absolute;
    z-index: 4;
    display: grid;
    place-items: center;
    top: clamp(22px, 5.8vw, 34px);
    left: clamp(22px, 5.8vw, 34px);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: #1765bd;
    background: rgba(255, 255, 255, 0.82);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 18px 30px -22px rgba(16, 32, 51, 0.42);
}

.film-worry-slide__icon svg {
    width: 28px;
    height: 28px;
}

.film-worry-slide__catch {
    position: absolute;
    z-index: 4;
    top: clamp(88px, 17vw, 118px);
    left: clamp(24px, 6vw, 36px);
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 8vw, 48px);
    font-weight: 900;
    line-height: 1.16;
    letter-spacing: 0.03em;
    text-shadow: 0 3px 16px rgba(0, 24, 48, 0.35);
}

.film-worry-slide figure {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    margin: 0;
    border-radius: inherit;
    aspect-ratio: auto;
    background: rgba(255, 255, 255, 0.42);
    box-shadow: none;
    transform: none;
}

.film-worry-slide figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.film-worry-slide a:hover figure img {
    transform: scale(1.06);
}

.film-worry-slide__body {
    position: absolute;
    z-index: 4;
    right: clamp(22px, 5.8vw, 34px);
    bottom: clamp(24px, 6vw, 38px);
    left: clamp(22px, 5.8vw, 34px);
    margin: 0;
    padding: 18px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.54);
    color: #fff;
}

.film-worry-slide__body span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 30px;
    margin-bottom: 10px;
    border-radius: 999px;
    color: #0d4b8c;
    background: rgba(255, 255, 255, 0.86);
    font-family: "Roboto", var(--font);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.film-worry-slide__body h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(22px, 5vw, 30px);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: 0.08em;
    text-shadow: 0 3px 14px rgba(0, 24, 48, 0.36);
}

.film-worry-slide__body p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.96);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.9;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 10px rgba(0, 24, 48, 0.28);
}

.film-worry-slider__dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2px;
}

.film-worry-slider__dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(102, 120, 137, 0.32);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
}

.film-worry-slider__dots button.is-active {
    background: #1f6fc8;
    transform: scale(1.25);
}

@media (max-width: 767px) {
    .film-worry-slider {
        padding: 62px 0 76px;
    }

    .film-worry-slider__head {
        width: calc(100% - 44px);
        margin-bottom: 24px;
        text-align: center;
    }

    .film-worry-slider__head h2 {
        font-size: 30px;
    }

    .film-worry-slider__track {
        width: 85.6%;
        margin-bottom: 28px;
    }

    .film-worry-slide {
        transform: translate3d(0, 14px, -110px) scale(0.78) rotate(-7deg);
    }

    .film-worry-slide.is-prev {
        transform: translate3d(-22px, 16px, -86px) scale(0.88) rotate(-6deg);
    }

    .film-worry-slide.is-next {
        transform: translate3d(22px, 10px, -52px) scale(0.92) rotate(6deg);
    }

    .film-worry-slide.is-leaving {
        transform: translate3d(0, 34px, 86px) scale(1.04) rotate(4deg);
    }

    .film-worry-slide__card {
        min-height: 0;
        border-radius: 22px;
    }

    .film-worry-slide__catch {
        top: 88px;
        font-size: clamp(30px, 8.5vw, 40px);
    }

    .film-worry-slide__body p {
        font-size: 12px;
        line-height: 1.75;
    }
}

/* ---------------------------------------------------------- */
.film-type-works {
    position: relative;
    overflow: visible;
    padding: 0;
    background: #0c151c;
    color: #112132;
    font-family: "Zen Kaku Gothic New", var(--font);
}

.film-type-works__heading {
    position: absolute;
    top: clamp(86px, 9vw, 132px);
    left: 50%;
    z-index: 5;
    width: min(1180px, calc(100% - 64px));
    margin: 0 auto;
    min-height: 0;
    color: #fff;
    pointer-events: none;
    transform: translateX(-50%);
}

.film-type-works__kicker {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-family: "Times New Roman", "Yu Mincho", "YuMincho", serif;
    font-size: clamp(18px, 2vw, 30px);
    font-style: italic;
    line-height: 1;
    letter-spacing: 0.03em;
}

.film-type-works__heading h2 {
    position: relative;
    z-index: 2;
    margin: clamp(18px, 2vw, 28px) 0 0;
    color: #fff;
    font-size: clamp(34px, 4.4vw, 64px);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: 0.08em;
}

.film-type-works__heading .film-works-heading--film {
    font-size: clamp(30px, 3.6vw, 52px);
}

/* 統合カルーセル: テーマ(お悩み/フィルム)に応じて見出しを切替表示 */
.film-works-heading--film,
.film-works-large--film {
    display: none;
}

.film-type-works:not(.film-concern-works) .film-works-heading--concern,
.film-type-works:not(.film-concern-works) .film-works-large--concern {
    display: none;
}

.film-type-works:not(.film-concern-works) .film-works-heading--film {
    display: block;
}

.film-type-works:not(.film-concern-works) .film-works-large--film {
    display: block;
}

.film-type-works__large {
    position: absolute;
    top: clamp(-54px, -3vw, -28px);
    left: 0;
    z-index: 1;
    margin: 0;
    color: rgba(255, 255, 255, 0.09);
    font-family: "Times New Roman", "Yu Mincho", "YuMincho", serif;
    font-size: clamp(64px, 11vw, 176px);
    font-style: italic;
    font-weight: 400;
    line-height: 0.82;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.film-type-works__stage {
    position: relative;
    /* お悩み4枚+フィルム5枚=計9枚分のスクロール量 */
    min-height: calc(100svh + 520vh);
    margin-top: 0;
    overflow: visible;
    background: #0c151c;
    isolation: isolate;
}

.film-type-works__sticky {
    position: sticky;
    top: 0;
    min-height: 100svh;
    overflow: hidden;
    display: grid;
    align-items: center;
    padding: clamp(140px, 12vw, 190px) 0 clamp(82px, 8vw, 118px);
    isolation: isolate;
}

.film-type-works__bg,
.film-type-works__overlay {
    position: absolute;
    inset: 0;
}

.film-type-works__bg {
    z-index: 0;
}

.film-type-works__bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    filter: saturate(0.82) contrast(1.02) blur(7px);
    transform: scale(calc(1.05 + (var(--film-progress, 0) * 0.06)));
    transform-origin: center;
    transition:
        opacity 320ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 120ms linear;
}

.film-type-works__bg-image.is-active {
    opacity: 1;
}

.film-type-works__overlay {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(10, 18, 28, 0.82), rgba(10, 18, 28, 0.48) 48%, rgba(10, 18, 28, 0.76)),
        rgba(9, 18, 28, 0.28);
}

.film-type-works__fixed {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.film-type-works__pickup,
.film-type-works__number,
.film-type-works__link {
    position: absolute;
    margin: 0;
    color: #fff;
}

.film-type-works__pickup {
    top: 50%;
    left: clamp(28px, 5vw, 84px);
    font-family: "Times New Roman", "Yu Mincho", "YuMincho", serif;
    font-size: clamp(22px, 3vw, 46px);
    font-style: italic;
    letter-spacing: 0.03em;
    transform: translateY(-50%);
    transform-origin: left center;
    opacity: 0.86;
}

.film-type-works__number {
    top: 50%;
    left: 50%;
    color: rgba(255, 255, 255, 0.22);
    font-family: "Times New Roman", "Yu Mincho", "YuMincho", serif;
    font-size: clamp(140px, 18vw, 310px);
    line-height: 0.75;
    transform: translate(-50%, -48%);
}

.film-type-works__link {
    top: 50%;
    right: clamp(26px, 6vw, 92px);
    bottom: auto;
    font-size: clamp(13px, 1.2vw, 16px);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-decoration: underline;
    text-underline-offset: 9px;
    opacity: 0.92;
    transform: translateY(-50%);
    transition: opacity 260ms ease, transform 260ms ease;
}

.film-type-works__cards {
    position: relative;
    z-index: 3;
    width: min(380px, 28vw);
    aspect-ratio: 315 / 420;
    margin: 0 auto;
    perspective: 1200px;
}

.film-type-card {
    position: absolute;
    inset: 0;
    min-width: 0;
    opacity: 0.54;
    transform: translate3d(0, 112%, -140px) scale(0.86);
    transition:
        opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 520ms ease;
    filter: brightness(0.78) saturate(0.86);
    pointer-events: none;
}

.film-type-works__stage .film-type-card {
    will-change: transform, opacity, filter;
    transition:
        opacity 110ms linear,
        filter 110ms linear;
}

.film-type-card.is-active {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: brightness(1) saturate(1);
    pointer-events: auto;
}

.film-type-card.is-before {
    opacity: 0;
    transform: translate3d(0, -112%, -130px) scale(0.86);
}

.film-type-card.is-after {
    opacity: 0;
    transform: translate3d(0, 112%, -130px) scale(0.86);
}

.film-type-card.is-prev {
    opacity: 0.62;
    transform: translate3d(0, -112%, -130px) scale(0.86);
}

.film-type-card.is-next {
    opacity: 0.62;
    transform: translate3d(0, 112%, -130px) scale(0.86);
}

.film-type-card a {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 2px;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.16),
        0 30px 80px -54px rgba(0, 0, 0, 0.78);
    transition: transform 300ms ease, filter 300ms ease;
}

.film-type-card a:hover {
    transform: translateY(-8px);
    filter: brightness(1.05);
}

.film-type-card figure {
    position: absolute;
    inset: 0;
    margin: 0;
}

.film-type-card figure::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(3, 10, 18, 0.06) 0%, rgba(3, 10, 18, 0.2) 42%, rgba(3, 10, 18, 0.72) 100%),
        linear-gradient(90deg, rgba(5, 18, 32, 0.2), transparent 56%);
    content: "";
}

.film-type-card figure::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background:
        linear-gradient(90deg, transparent 49.6%, rgba(255, 255, 255, 0.16) 50%, transparent 50.4%),
        linear-gradient(180deg, transparent 49.6%, rgba(255, 255, 255, 0.12) 50%, transparent 50.4%);
    content: "";
    pointer-events: none;
}

.film-type-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
}

.film-type-card a:hover img {
    transform: scale(1.055);
}

.film-type-card__body {
    position: absolute;
    inset: auto 0 0;
    padding: clamp(18px, 2vw, 28px);
}

.film-type-card__body span {
    display: block;
    margin-bottom: clamp(58px, 8vw, 116px);
    color: rgba(255, 255, 255, 0.86);
    font-family: "Times New Roman", "Yu Mincho", "YuMincho", serif;
    font-size: clamp(36px, 4.3vw, 72px);
    line-height: 0.8;
    letter-spacing: 0.02em;
}

.film-type-card__body h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(17px, 1.55vw, 22px);
    font-weight: 800;
    line-height: 1.42;
    letter-spacing: 0.06em;
}

.film-type-card__body p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.78;
    letter-spacing: 0.04em;
}

/* タップ/クリック可能を示すCTAボタン（トップページのglass-btn風） ピル本体 */
.film-type-card a::after {
    content: "詳しく見る";
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0 50px 0 18px;
    border-radius: 999px;
    border: 1.5px solid rgba(126, 184, 255, 0.72);
    background: rgba(255, 255, 255, 0.92);
    color: #143b68;
    font-size: clamp(11.5px, 1vw, 13px);
    font-weight: 800;
    letter-spacing: 0.06em;
    white-space: nowrap;
    box-shadow: 0 10px 26px -12px rgba(48, 104, 171, 0.5);
    transition: background 240ms ease, transform 240ms ease;
}

/* CTAボタン 右端の白い丸矢印 */
.film-type-card a::before {
    content: "→";
    position: absolute;
    z-index: 3;
    top: 18px;
    right: 18px;
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    color: #2c4564;
    font-family: "Roboto", var(--font);
    font-size: 15px;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.9), 0 3px 8px rgba(70, 100, 140, 0.22);
    transition: transform 240ms ease, background 240ms ease, color 240ms ease;
}

.film-type-works--hide-detail .film-type-card a::before,
.film-type-works--hide-detail .film-type-card a::after {
    display: none;
}

/* アクティブカードは青パルスで注目を促す（ボタンの色はそのまま） */
.film-type-card.is-active a::after {
    animation: film-card-cta-pulse 1.9s ease-in-out infinite;
}

/* ホバーの青化はマウス環境のみ（スマホのhover貼り付きで青く残るのを防ぐ） */
@media (hover: hover) {
    .film-type-card a:hover::after {
        background: #fff;
    }

    .film-type-card a:hover::before {
        transform: translateX(3px);
        background: linear-gradient(135deg, #2e6fd8, #1c4f9e);
        color: #fff;
    }
}

/* タップ時の押下フィードバック */
.film-type-card a:active {
    transform: scale(0.985);
    filter: brightness(1.04);
}

@keyframes film-card-cta-pulse {
    0%,
    100% {
        box-shadow: 0 10px 26px -12px rgba(48, 104, 171, 0.5), 0 0 0 0 rgba(47, 143, 224, 0.65);
    }
    50% {
        box-shadow: 0 10px 26px -12px rgba(48, 104, 171, 0.5), 0 0 0 12px rgba(47, 143, 224, 0);
    }
}

@media (max-width: 767px) {
    .film-type-card a::after {
        height: 34px;
        padding: 0 42px 0 14px;
        font-size: 11px;
    }
    .film-type-card a::before {
        top: 17px;
        right: 16px;
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .film-type-card.is-active a::after {
        animation: none;
    }
}

.film-concern-works {
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.94), transparent 30%),
        radial-gradient(circle at 82% 70%, rgba(174, 219, 246, 0.34), transparent 34%),
        linear-gradient(180deg, #f5fbff 0%, #eaf4fa 100%);
}

.film-concern-works .film-type-works__stage {
    background:
        linear-gradient(90deg, rgba(91, 146, 182, 0.13) 1px, transparent 1px) 0 0 / 72px 72px,
        linear-gradient(0deg, rgba(91, 146, 182, 0.1) 1px, transparent 1px) 0 0 / 72px 72px,
        radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.96), rgba(232, 245, 252, 0.54) 48%, rgba(216, 234, 244, 0.68) 100%);
}

/* 「フィルムから選ぶ」末尾をフッターの明色へフェードし、下端の段差をなくす */
.film-type-works:not(.film-concern-works) .film-type-works__stage {
    background:
        linear-gradient(90deg, rgba(91, 146, 182, 0.1) 1px, transparent 1px) 0 0 / 72px 72px,
        linear-gradient(0deg, rgba(91, 146, 182, 0.08) 1px, transparent 1px) 0 0 / 72px 72px,
        radial-gradient(circle at 48% 44%, rgba(255, 255, 255, 0.98), rgba(238, 248, 253, 0.68) 50%, rgba(224, 238, 247, 0.78) 100%);
}

.film-type-works:not(.film-concern-works) .film-type-works__bg-image {
    filter: saturate(0.94) contrast(0.98) brightness(1.18) blur(6px);
}

.film-type-works:not(.film-concern-works) .film-type-works__bg-image.is-active {
    opacity: 0.46;
}

.film-type-works:not(.film-concern-works) .film-type-works__overlay {
    background:
        linear-gradient(90deg, rgba(247, 252, 255, 0.88), rgba(255, 255, 255, 0.42) 48%, rgba(239, 248, 253, 0.86)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(188, 218, 236, 0.16));
}

.film-type-works:not(.film-concern-works) .film-type-works__heading h2,
.film-type-works:not(.film-concern-works) .film-type-works__link {
    color: #102033;
    text-shadow: 0 10px 32px rgba(255, 255, 255, 0.76);
}

.film-type-works:not(.film-concern-works) .film-type-works__large {
    color: rgba(76, 112, 138, 0.12);
}

.film-type-works:not(.film-concern-works) .film-type-works__pickup,
.film-type-works:not(.film-concern-works) .film-type-works__number {
    color: rgba(16, 32, 51, 0.68);
}

.film-type-works--dark:not(.film-concern-works) .film-type-works__stage {
    background:
        linear-gradient(180deg, transparent 84%, #f6f9fb 100%),
        #0c151c;
}

.film-type-works--dark:not(.film-concern-works) .film-type-works__bg-image {
    filter: saturate(0.82) contrast(1.02) blur(7px);
}

.film-type-works--dark:not(.film-concern-works) .film-type-works__bg-image.is-active {
    opacity: 1;
}

.film-type-works--dark:not(.film-concern-works) .film-type-works__overlay {
    background:
        linear-gradient(90deg, rgba(10, 18, 28, 0.82), rgba(10, 18, 28, 0.48) 48%, rgba(10, 18, 28, 0.76)),
        rgba(9, 18, 28, 0.28);
}

.film-type-works--dark:not(.film-concern-works) .film-type-works__heading h2,
.film-type-works--dark:not(.film-concern-works) .film-type-works__link,
.film-type-works--dark:not(.film-concern-works) .film-type-works__pickup {
    color: #fff;
    text-shadow: none;
}

.film-type-works--dark:not(.film-concern-works) .film-type-works__large {
    color: rgba(255, 255, 255, 0.07);
}

.film-type-works--dark:not(.film-concern-works) .film-type-works__number {
    color: rgba(255, 255, 255, 0.22);
}

/* ===== 取り扱いメーカー：画像なし・文字のみ ===== */
/* 背景写真を消し、明るいテーマで統一する（カードが暗テーマに切替わっても明るく保つ） */
.film-type-works--maker .film-type-works__bg {
    display: none;
}

.film-type-works--maker.film-type-works--dark:not(.film-concern-works) .film-type-works__stage {
    background:
        linear-gradient(90deg, rgba(91, 146, 182, 0.1) 1px, transparent 1px) 0 0 / 72px 72px,
        linear-gradient(0deg, rgba(91, 146, 182, 0.08) 1px, transparent 1px) 0 0 / 72px 72px,
        radial-gradient(circle at 48% 44%, rgba(255, 255, 255, 0.98), rgba(238, 248, 253, 0.68) 50%, rgba(224, 238, 247, 0.78) 100%);
}

.film-type-works--maker.film-type-works--dark:not(.film-concern-works) .film-type-works__overlay {
    background:
        linear-gradient(90deg, rgba(247, 252, 255, 0.88), rgba(255, 255, 255, 0.42) 48%, rgba(239, 248, 253, 0.86)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(188, 218, 236, 0.16));
}

.film-type-works--maker.film-type-works--dark:not(.film-concern-works) .film-type-works__heading h2,
.film-type-works--maker.film-type-works--dark:not(.film-concern-works) .film-type-works__link,
.film-type-works--maker.film-type-works--dark:not(.film-concern-works) .film-type-works__pickup {
    color: #102033;
    text-shadow: 0 10px 32px rgba(255, 255, 255, 0.76);
}

.film-type-works--maker.film-type-works--dark:not(.film-concern-works) .film-type-works__large {
    color: rgba(76, 112, 138, 0.12);
}

.film-type-works--maker.film-type-works--dark:not(.film-concern-works) .film-type-works__number {
    color: rgba(16, 32, 51, 0.68);
}

/* カード本体：写真を消してクリーンな明るいパネルに */
.film-type-works--maker .film-type-card figure {
    display: none;
}

.film-type-works--maker .film-type-card a {
    background: linear-gradient(165deg, #ffffff, #eef3f7);
    box-shadow:
        0 0 0 1px rgba(20, 45, 70, 0.1),
        0 30px 80px -54px rgba(0, 0, 0, 0.45);
}

.film-type-works--maker .film-type-card__body {
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.film-type-works--maker .film-type-card__body span {
    margin-bottom: 0;
    color: rgba(20, 45, 70, 0.32);
}

.film-type-works--maker .film-type-card__body h3 {
    color: #14202e;
    font-size: clamp(24px, 2.8vw, 38px);
    letter-spacing: 0.08em;
}

/* ===== 取り扱いメーカー（比較用シンプル版） ===== */
.maker-simple {
    padding: clamp(80px, 9vw, 132px) 0;
    background: #fafbfc;
}

.maker-simple__inner {
    width: min(100% - 80px, 1040px);
    margin: 0 auto;
}

.maker-simple__head {
    text-align: center;
    margin-bottom: clamp(48px, 6vw, 78px);
}

.maker-simple__head .section-title {
    font-family: "Times New Roman", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    font-weight: 400;
    letter-spacing: 0.18em;
}

.maker-simple__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(20, 45, 70, 0.12);
    border-bottom: 1px solid rgba(20, 45, 70, 0.12);
}

.maker-simple__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: clamp(40px, 5vw, 64px) 20px;
    text-align: center;
}

.maker-simple__item + .maker-simple__item {
    border-left: 1px solid rgba(20, 45, 70, 0.12);
}

.maker-simple__no {
    color: rgba(20, 45, 70, 0.34);
    font-family: "Times New Roman", "Yu Mincho", "YuMincho", serif;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1;
    letter-spacing: 0.04em;
}

.maker-simple__name {
    color: #14202e;
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.3;
}

.maker-simple__more {
    margin: 56px 0 0;
    text-align: center;
}

.maker-simple__more .glass-btn {
    font-size: 22px;
    padding: 20px 56px;
}

.maker-simple__more .glass-btn__arrow {
    width: 44px;
    height: 44px;
    font-size: 18px;
}

@media (max-width: 767px) {
    .maker-simple__more .glass-btn {
        font-size: 17px;
        padding: 16px 32px;
    }

    .maker-simple__more .glass-btn__arrow {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .maker-simple {
        padding-top: 60px;
    }

    .maker-simple__inner {
        width: min(100% - 40px, 460px);
    }

    .maker-simple__list {
        grid-template-columns: 1fr;
    }

    .maker-simple__item {
        flex-direction: row;
        justify-content: flex-start;
        gap: 22px;
        padding: 26px 8px;
    }

    .maker-simple__item + .maker-simple__item {
        border-left: none;
        border-top: 1px solid rgba(20, 45, 70, 0.12);
    }

    .maker-simple__no {
        font-size: 30px;
        min-width: 46px;
    }

    .maker-simple__name {
        font-size: 17px;
    }
}

.film-concern-works .film-type-works__sticky::before {
    position: absolute;
    inset: 8% 6%;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.56);
    border-radius: 42px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.16)),
        radial-gradient(circle at 50% 46%, rgba(173, 216, 242, 0.26), transparent 42%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.68),
        0 24px 90px -72px rgba(38, 91, 126, 0.58);
    content: "";
    pointer-events: none;
}

.film-concern-works .film-type-works__bg-image {
    opacity: 0;
    filter: saturate(0.96) contrast(0.98) brightness(1.2) blur(6px);
}

.film-concern-works .film-type-works__bg-image.is-active {
    opacity: 0.58;
}

.film-concern-works .film-type-works__overlay {
    background:
        linear-gradient(90deg, rgba(246, 251, 255, 0.84), rgba(255, 255, 255, 0.38) 48%, rgba(239, 248, 253, 0.82)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(188, 218, 236, 0.18)),
        rgba(245, 250, 253, 0.28);
}

.film-concern-works .film-type-works__kicker {
    color: rgba(70, 101, 124, 0.9);
    text-shadow: none;
}

.film-concern-works .film-type-works__heading h2 {
    color: #102033;
    text-shadow: 0 10px 32px rgba(255, 255, 255, 0.72);
}

.film-concern-works .film-type-works__large {
    color: rgba(76, 112, 138, 0.1);
}

.film-concern-works .film-type-works__number {
    color: rgba(58, 95, 123, 0.18);
    text-shadow: 0 0 32px rgba(255, 255, 255, 0.82);
}

.film-concern-works .film-type-works__link {
    color: #102033;
    text-shadow: 0 1px 18px rgba(255, 255, 255, 0.82);
}

.film-concern-works .film-type-works__pickup {
    color: rgba(16, 32, 51, 0.76);
}

.film-concern-works .film-type-card a {
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.12)),
        rgba(255, 255, 255, 0.16);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.48),
        0 34px 86px -52px rgba(45, 93, 125, 0.72);
}

.film-concern-works .film-type-card figure::after {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(15, 43, 65, 0.14) 45%, rgba(5, 20, 34, 0.58) 100%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 58%);
}

.film-concern-works .film-type-card figure::before {
    border-color: rgba(255, 255, 255, 0.28);
    background:
        linear-gradient(90deg, transparent 49.6%, rgba(255, 255, 255, 0.24) 50%, transparent 50.4%),
        linear-gradient(180deg, transparent 49.6%, rgba(255, 255, 255, 0.16) 50%, transparent 50.4%);
}

/* heat-insulation-film page -------------------------------- */
.heat-film-page {
    background: #f4f9fc;
    color: #122235;
}

.heat-hero {
    position: relative;
    overflow: hidden;
    min-height: 100svh;
    padding: clamp(118px, 12vw, 178px) 0 clamp(72px, 8vw, 112px);
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.96), transparent 28%),
        linear-gradient(135deg, #edf7fc 0%, #d9edf7 48%, #f8fbfd 100%);
    isolation: isolate;
}

.heat-hero::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(86, 143, 180, 0.11) 1px, transparent 1px) 0 0 / 86px 86px,
        linear-gradient(0deg, rgba(86, 143, 180, 0.09) 1px, transparent 1px) 0 0 / 86px 86px;
    content: "";
}

.heat-hero__bg {
    position: absolute;
    inset: auto -10% -18% 38%;
    z-index: -1;
    height: 58%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(64, 151, 217, 0.22), transparent 66%);
    filter: blur(8px);
}

.heat-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: clamp(34px, 6vw, 92px);
    align-items: center;
    width: min(1180px, calc(100% - 64px));
    margin: 0 auto;
}

.heat-hero__kicker {
    margin: 0 0 24px;
    color: #5b748a;
    font-family: "Roboto", var(--font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.28em;
}

.heat-hero h1 {
    margin: 0;
    color: #0d2036;
    font-size: clamp(48px, 7vw, 108px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0.08em;
}

.heat-hero__lead {
    width: min(540px, 100%);
    margin: 28px 0 0;
    color: #43586a;
    font-size: clamp(15px, 1.35vw, 18px);
    font-weight: 700;
    line-height: 2.15;
    letter-spacing: 0.08em;
}

.heat-hero__actions,
.heat-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.glass-detail-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-width: 212px;
    min-height: 58px;
    padding: 0 26px;
    border: 1px solid rgba(102, 160, 210, 0.42);
    border-radius: 999px;
    color: #0b3968;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(232, 244, 252, 0.54)),
        rgba(255, 255, 255, 0.58);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 24px 70px -48px rgba(34, 107, 169, 0.6);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.glass-detail-button span {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 28px -18px rgba(10, 36, 60, 0.6);
}

.glass-detail-button--ghost {
    color: #667889;
}

.glass-detail-button--line {
    color: #fff;
    border-color: rgba(0, 196, 70, 0.38);
    background: linear-gradient(135deg, #0bc94f, #08ad42);
}

.heat-hero__visual {
    perspective: 1300px;
    min-height: clamp(420px, 54vw, 680px);
}

.heat-window {
    position: relative;
    width: min(520px, 76vw);
    aspect-ratio: 4 / 5;
    margin-left: auto;
    transform: rotateY(-24deg) rotateX(8deg) rotateZ(1deg);
    transform-style: preserve-3d;
    animation: heatWindowFloat 7s ease-in-out infinite;
}

.heat-window__pane,
.heat-window__edge {
    position: absolute;
    border-radius: 18px;
}

.heat-window__pane--front {
    inset: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.16);
    box-shadow:
        inset 0 0 0 10px rgba(255, 255, 255, 0.34),
        inset 0 0 0 12px rgba(87, 126, 148, 0.18),
        0 46px 110px -58px rgba(13, 38, 58, 0.78);
    transform: translateZ(28px);
}

.heat-window__pane--front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.04) contrast(1.02);
}

.heat-window__pane--front::before {
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background:
        linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(255, 255, 255, 0.5) 50%, transparent calc(50% + 0.5px)),
        linear-gradient(180deg, transparent calc(50% - 0.5px), rgba(255, 255, 255, 0.32) 50%, transparent calc(50% + 0.5px));
    content: "";
}

.heat-window__shine {
    position: absolute;
    inset: -20% auto -20% 18%;
    width: 28%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.54), transparent);
    transform: skewX(-16deg);
    animation: heatWindowShine 4.8s ease-in-out infinite;
}

.heat-window__pane--back {
    inset: 22px -28px -26px 32px;
    border: 1px solid rgba(102, 120, 137, 0.22);
    background: rgba(236, 246, 251, 0.54);
    box-shadow: 0 34px 70px -54px rgba(11, 38, 62, 0.5);
    transform: translateZ(-26px);
}

.heat-window__edge--right {
    top: 20px;
    right: -31px;
    width: 38px;
    height: calc(100% - 6px);
    background: linear-gradient(90deg, rgba(152, 183, 203, 0.28), rgba(255, 255, 255, 0.46));
    transform: rotateY(90deg) translateZ(19px);
    transform-origin: left center;
}

.heat-window__edge--bottom {
    left: 12px;
    bottom: -31px;
    width: calc(100% - 4px);
    height: 38px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(126, 164, 188, 0.22));
    transform: rotateX(90deg) translateZ(19px);
    transform-origin: top center;
}

@keyframes heatWindowFloat {
    0%, 100% { transform: rotateY(-24deg) rotateX(8deg) rotateZ(1deg) translate3d(0, 0, 0); }
    50% { transform: rotateY(-18deg) rotateX(5deg) rotateZ(0deg) translate3d(0, -14px, 0); }
}

@keyframes heatWindowShine {
    0%, 40% { opacity: 0; transform: translateX(-120%) skewX(-16deg); }
    58% { opacity: 0.82; }
    100% { opacity: 0; transform: translateX(360%) skewX(-16deg); }
}

.heat-hero--catalog {
    --heat-hero-delay: 1.4s;
    min-height: 90svh;
    padding: clamp(92px, 7vw, 122px) 0 clamp(34px, 4vw, 56px);
    background:
        linear-gradient(90deg, rgba(102, 120, 137, 0.055) 1px, transparent 1px) 0 0 / 84px 84px,
        linear-gradient(0deg, rgba(102, 120, 137, 0.045) 1px, transparent 1px) 0 0 / 84px 84px,
        #f5f4ec;
}

.heat-hero--catalog::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    background: url("../img/film/kv_2.webp") center / cover no-repeat;
    content: "";
    opacity: 0;
    transform: translateZ(0);
    /* 中央画像の浮かび上がりと同時に、背景をビフォー→アフターへディゾルブで切替 */
    animation: heatHeroBgDissolve 1.5s ease-in-out calc(var(--heat-hero-delay) + 0.24s) forwards;
    will-change: opacity;
    pointer-events: none;
}

.heat-hero--catalog::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    background: url("../img/film/kv_1.webp") center / cover no-repeat;
    content: "";
    opacity: 0;
    transform: translateZ(0);
    animation: heatHeroBgIntro 0.95s ease-out forwards;
    will-change: opacity;
    pointer-events: none;
}

@keyframes heatHeroBgIntro {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes heatHeroBgDissolve {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes heatHeroDarken {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.heat-hero--catalog .heat-hero__inner {
    position: relative;
    z-index: 2;
    display: block;
    width: min(1280px, calc(100% - 72px));
    min-height: calc(90svh - clamp(140px, 11vw, 178px));
    margin: 0 auto;
}

.heat-hero--catalog .heat-hero__kicker {
    position: relative;
    z-index: 3;
    margin: 0;
    color: #667889;
    font-size: 12px;
    letter-spacing: 0.34em;
    text-align: center;
}

.heat-hero__layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(360px, 420px) minmax(220px, 1fr);
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
    min-height: clamp(500px, 58vh, 640px);
    padding-top: clamp(8px, 2.5vw, 34px);
}

.heat-hero--catalog .heat-hero__copy {
    position: relative;
    z-index: 4;
    align-self: center;
    color: #fff;
    text-shadow: 0 12px 32px rgba(9, 20, 32, 0.5);
}

/* film(film-kv)の見出しと同じ：キッカーの左に横線を入れる（白文字） */
.heat-hero__sub {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    color: #fff;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.heat-hero__sub::before {
    width: 36px;
    height: 1px;
    background: rgba(255, 255, 255, 0.82);
    content: "";
}

.heat-hero--catalog h1 {
    max-width: 12.5em;
    margin: 0;
    color: #fff;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: clamp(30px, 3.05vw, 44px);
    font-weight: 700;
    line-height: 1.42;
    letter-spacing: 0.04em;
}

.heat-hero--catalog h1 span {
    display: block;
}

.heat-hero__glass {
    position: relative;
    z-index: 2;
    grid-column: 2;
    justify-self: center;
    overflow: hidden;
    width: min(420px, 100%);
    aspect-ratio: 0.68;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 999px 999px 0 0;
    background: #dce8ed;
    box-shadow:
        inset 0 0 0 10px rgba(255, 255, 255, 0.22),
        inset 0 0 0 11px rgba(102, 120, 137, 0.18),
        0 42px 100px -64px rgba(16, 32, 51, 0.62);
    transform: translateY(-18px);
    opacity: 0;
    visibility: hidden;
    animation: heatCatalogWindow 0.82s cubic-bezier(0.55, 0, 1, 0.45) calc(var(--heat-hero-delay) + 0.24s) forwards;
}

.heat-hero__mado {
    position: relative;
    z-index: 2;
    grid-column: 2;
    justify-self: center;
    width: min(345px, 100%);
    margin: 0 auto;
    transform: translateY(-18px);
    opacity: 0;
    visibility: hidden;
    animation: heatCatalogWindow 0.82s cubic-bezier(0.55, 0, 1, 0.45) calc(var(--heat-hero-delay) + 0.24s) forwards;
    pointer-events: none;
}

.heat-hero__mado img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 36px 58px rgba(16, 32, 51, 0.28));
}

.heat-hero__appeal {
    position: absolute;
    z-index: 5;
    top: clamp(66px, 8vw, 110px);
    left: calc(50% - 258px);
    display: grid;
    gap: 4px;
    min-width: 158px;
    padding: 12px 17px 13px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 18px 18px 18px 4px;
    color: #102033;
    background: rgba(255, 255, 255, 0.88);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.88),
        0 18px 34px -24px rgba(16, 32, 51, 0.34),
        0 0 26px rgba(255, 255, 255, 0.36);
    opacity: 0;
    transform: translate3d(-14px, 22px, 0) scale(0.84) rotate(-4deg);
    transform-origin: right bottom;
    animation:
        heatAppealPop 0.82s cubic-bezier(0.2, 1.35, 0.32, 1) calc(var(--heat-hero-delay) + 0.92s) forwards,
        heatAppealBreathe 3.6s ease-in-out calc(var(--heat-hero-delay) + 1.9s) infinite;
    pointer-events: none;
}

.heat-hero__appeal::after {
    position: absolute;
    right: 18px;
    bottom: -8px;
    width: 16px;
    height: 16px;
    background: inherit;
    border-right: 1px solid rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.78);
    transform: rotate(45deg);
    content: "";
}

.heat-hero__appeal::before {
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: inherit;
    content: "";
    opacity: 0;
    animation: heatAppealPulse 2.8s ease-out calc(var(--heat-hero-delay) + 1.35s) infinite;
}

.heat-hero__appeal span {
    color: #667889;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.heat-hero__appeal strong {
    color: #102033;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: 0.08em;
}

.heat-hero__glass-img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    opacity: 1;
}

.heat-hero__glass-img--sun {
    z-index: 1;
    animation: none;
}

@media (prefers-reduced-motion: reduce) {
    .heat-hero__glass-img--sun {
        animation: none;
        opacity: 0;
    }
}

.heat-hero__glass::before {
    position: absolute;
    inset: 10px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 999px 999px 0 0;
    background:
        linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(255, 255, 255, 0.48) 50%, transparent calc(50% + 0.5px)),
        linear-gradient(180deg, transparent calc(49% - 0.5px), rgba(255, 255, 255, 0.34) 50%, transparent calc(51% + 0.5px));
    content: "";
    pointer-events: none;
    opacity: 1;
}

.heat-hero__glass-frame {
    position: absolute;
    inset: 0;
    z-index: 3;
    border-radius: inherit;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        inset 0 -20px 42px rgba(255, 255, 255, 0.18);
    pointer-events: none;
    opacity: 1;
}

.heat-hero__glass-shine {
    position: absolute;
    inset: -16% auto -16% 12%;
    z-index: 4;
    width: 30%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
    transform: translateX(-150%) skewX(-16deg);
    animation: heatCatalogShine 4.2s ease-in-out calc(var(--heat-hero-delay) + 1.05s) infinite;
    pointer-events: none;
}

.heat-hero__side-copy {
    position: relative;
    z-index: 3;
    align-self: end;
    padding-bottom: clamp(34px, 5vw, 76px);
}

.heat-hero__side-copy p {
    width: min(320px, 100%);
    margin: 0;
    color: #415467;
    font-size: 14px;
    font-weight: 700;
    line-height: 2.2;
    letter-spacing: 0.08em;
}

.heat-hero--catalog .heat-hero__actions {
    display: grid;
    width: min(320px, 100%);
    gap: 12px;
    margin-top: 28px;
}

.heat-hero--catalog .glass-detail-button {
    min-width: 0;
    width: 100%;
    min-height: 54px;
}

.heat-hero__marquee {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: clamp(28px, 4vw, 54px) 0 clamp(20px, 3vw, 42px);
    background: #fff;
    pointer-events: none;
    user-select: none;
}

.heat-hero__marquee-track {
    display: flex;
    width: max-content;
    animation: heatMarquee 56s linear infinite;
}

.heat-hero__marquee-track span {
    padding: 0 clamp(40px, 6vw, 80px);
    color: rgba(102, 120, 137, 0.1);
    font-family: "Times New Roman", "Yu Mincho", "YuMincho", serif;
    font-size: clamp(72px, 13vw, 200px);
    font-style: italic;
    line-height: 0.82;
    white-space: nowrap;
}

@keyframes heatMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@keyframes heatCatalogWindow {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: translateY(42px);
    }
    1% {
        visibility: visible;
    }
    100% {
        opacity: 1;
        visibility: visible;
        transform: translateY(-18px);
    }
}

@keyframes heatCatalogShine {
    0%, 36% {
        opacity: 0;
        transform: translateX(-150%) skewX(-16deg);
    }
    48% {
        opacity: 0.9;
    }
    72%, 100% {
        opacity: 0;
        transform: translateX(360%) skewX(-16deg);
    }
}

@keyframes heatAppealPop {
    0% {
        opacity: 0;
        transform: translate3d(-18px, 24px, 0) scale(0.78) rotate(-6deg);
    }
    64% {
        opacity: 1;
        transform: translate3d(2px, -8px, 0) scale(1.05) rotate(1deg);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    }
}

@keyframes heatAppealBreathe {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    }
    50% {
        transform: translate3d(0, -6px, 0) scale(1.02) rotate(-1deg);
    }
}

@keyframes heatAppealPulse {
    0% {
        opacity: 0.55;
        transform: scale(0.92);
    }
    80%, 100% {
        opacity: 0;
        transform: scale(1.12);
    }
}

.heat-section-head {
    width: min(1080px, calc(100% - 64px));
    margin: 0 auto;
}

.heat-section-head h2 {
    max-width: 820px;
    margin: 18px 0 0;
    color: #102033;
    font-size: clamp(30px, 4.4vw, 58px);
    line-height: 1.38;
    letter-spacing: 0.08em;
}

.heat-intro {
    padding: clamp(86px, 9vw, 132px) 0;
    background: #fff;
}

.heat-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
    gap: clamp(28px, 5vw, 72px);
    width: min(1080px, calc(100% - 64px));
    margin: clamp(36px, 5vw, 64px) auto 0;
}

.heat-intro__grid p {
    margin: 0;
    color: #40576b;
    font-size: 16px;
    font-weight: 700;
    line-height: 2.15;
    letter-spacing: 0.06em;
}

.heat-intro__points {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.heat-intro__points li {
    padding: 18px 20px;
    border: 1px solid rgba(102, 120, 137, 0.16);
    border-radius: 8px;
    background: linear-gradient(145deg, #fff, #f2f8fb);
    color: #102033;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.heat-before-after {
    padding: clamp(90px, 10vw, 148px) 0;
    background:
        linear-gradient(90deg, rgba(88, 146, 184, 0.1) 1px, transparent 1px) 0 0 / 84px 84px,
        linear-gradient(0deg, rgba(88, 146, 184, 0.08) 1px, transparent 1px) 0 0 / 84px 84px,
        #edf6fb;
}

.heat-before-after__inner {
    width: min(1180px, calc(100% - 64px));
    margin: 0 auto;
}

.heat-before-after__inner .heat-section-head {
    width: 100%;
}

.heat-ba-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(12px, 2vw, 24px);
    margin-top: clamp(38px, 5vw, 72px);
}

.heat-ba-card figure {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 8px;
    aspect-ratio: 16 / 10;
    box-shadow: 0 40px 90px -68px rgba(14, 42, 64, 0.68);
}

.heat-ba-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.heat-ba-card figcaption {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 999px;
    color: #fff;
    background: rgba(12, 25, 39, 0.68);
    font-family: "Times New Roman", "Yu Mincho", "YuMincho", serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.heat-benefits {
    padding: clamp(90px, 10vw, 150px) 0;
    background: #fff;
}

.heat-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.4vw, 32px);
    width: min(1080px, calc(100% - 64px));
    margin: clamp(42px, 5vw, 74px) auto 0;
}

.heat-benefit-card {
    min-height: 330px;
    padding: clamp(28px, 3.2vw, 44px);
    border: 1px solid rgba(102, 120, 137, 0.14);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 248, 252, 0.72)),
        #fff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 32px 90px -72px rgba(16, 32, 51, 0.44);
}

.heat-benefit-card__num {
    display: block;
    color: #8fa2b3;
    font-family: "Times New Roman", "Yu Mincho", "YuMincho", serif;
    font-size: 48px;
    line-height: 1;
}

.heat-benefit-card h3 {
    margin: 44px 0 0;
    color: #102033;
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.45;
    letter-spacing: 0.08em;
}

.heat-benefit-card p {
    margin: 22px 0 0;
    color: #4b6173;
    font-size: 14px;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.05em;
}

.heat-energy {
    padding: clamp(96px, 11vw, 158px) 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.9), transparent 24%),
        #eef7fb;
}

.heat-energy__inner {
    display: grid;
    grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
    gap: clamp(34px, 6vw, 86px);
    align-items: center;
    width: min(1080px, calc(100% - 64px));
    margin: 0 auto;
}

.heat-energy__image {
    overflow: hidden;
    margin: 0;
    border-radius: 8px;
    aspect-ratio: 4 / 5;
    box-shadow: 0 42px 90px -70px rgba(13, 42, 64, 0.64);
}

.heat-energy__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.heat-energy__body h2 {
    margin: 18px 0 0;
    color: #102033;
    font-size: clamp(32px, 4.5vw, 62px);
    line-height: 1.32;
    letter-spacing: 0.08em;
}

.heat-energy__body p {
    margin: 28px 0 0;
    color: #40576b;
    font-weight: 700;
    line-height: 2.1;
    letter-spacing: 0.06em;
}

.heat-energy__list {
    display: grid;
    gap: 14px;
    margin: 34px 0 0;
}

.heat-energy__list div {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 18px;
    align-items: center;
    padding: 18px 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
}

.heat-energy__list dt {
    color: #1f6fab;
    font-weight: 800;
}

.heat-energy__list dd {
    margin: 0;
    color: #24394c;
    font-weight: 700;
    line-height: 1.7;
}

.heat-cta {
    padding: clamp(90px, 10vw, 150px) 0;
    background: #fff;
}

.heat-cta__inner {
    width: min(1000px, calc(100% - 64px));
    margin: 0 auto;
    padding: clamp(46px, 6vw, 76px);
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(225, 240, 248, 0.52)),
        url("../img/mado2.webp?v=202606201430") center / cover;
    box-shadow: 0 40px 100px -78px rgba(16, 32, 51, 0.64);
    text-align: center;
}

.heat-cta__inner h2 {
    margin: 18px auto 0;
    max-width: 760px;
    color: #102033;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.45;
    letter-spacing: 0.08em;
}

.heat-cta__inner p:not(.section-kicker) {
    max-width: 680px;
    margin: 22px auto 0;
    color: #40576b;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.06em;
}

.heat-cta__buttons {
    justify-content: center;
}

@media (max-width: 1023px) {
    .heat-hero {
        min-height: auto;
        padding-top: 112px;
    }

    .heat-hero--catalog {
        min-height: auto;
        padding: 92px 0 58px;
    }

    .heat-hero--catalog .heat-hero__inner {
        width: min(780px, calc(100% - 44px));
        min-height: 0;
    }

    .heat-hero__layout {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: 0;
        padding-top: 16px;
    }

    .heat-hero--catalog .heat-hero__copy,
    .heat-hero__side-copy {
        text-align: center;
    }

    .heat-hero__side-copy {
        align-self: center;
        padding-bottom: 0;
    }

    .heat-hero__side-copy p,
    .heat-hero--catalog .heat-hero__actions {
        margin-right: auto;
        margin-left: auto;
    }

    .heat-hero__glass {
        width: min(390px, 74vw);
        order: -1;
    }

    .heat-hero__mado {
        /* 1カラム化したグリッドでベースの grid-column:2 を打ち消す */
        grid-column: 1;
        width: min(280px, 56vw);
        order: -1;
        justify-self: center;
        margin: 0 auto;
    }

    /* 中央よりほんの少し左に見えるよう微調整 */
    .heat-hero__mado img {
        transform: translateX(-6%);
    }

    .heat-hero__appeal {
        top: 42px;
        left: calc(50% - min(235px, 39vw));
        min-width: 148px;
        padding: 11px 15px 12px;
    }

    .heat-hero__appeal strong {
        font-size: 16px;
    }

    .heat-hero__inner,
    .heat-intro__grid,
    .heat-energy__inner {
        grid-template-columns: 1fr;
    }

    .heat-hero__visual {
        min-height: 420px;
    }

    .heat-window {
        margin: 0 auto;
    }

    .heat-benefits__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .heat-hero {
        padding: 94px 0 64px;
    }

    .heat-hero--catalog {
        /* 下のマーキー(WINDOW FILM)が画面内に覗く高さに抑える */
        min-height: auto;
        padding: 84px 0 36px;
    }

    .heat-hero--catalog .heat-hero__inner {
        width: min(100% - 32px, 430px);
    }

    .heat-hero__inner,
    .heat-section-head,
    .heat-before-after__inner,
    .heat-intro__grid,
    .heat-benefits__grid,
    .heat-energy__inner,
    .heat-cta__inner {
        width: min(100% - 32px, 430px);
    }

    .heat-hero h1 {
        font-size: 42px;
    }

    /* 見出しはfilm-kv同様に絶対配置で、フィルム画像に重ねて浮かせる（白文字） */
    .heat-hero__layout {
        align-items: start;
        min-height: 50vh;
    }

    .heat-hero--catalog .heat-hero__copy {
        position: absolute;
        z-index: 4;
        left: 2px;
        bottom: 8%;
        width: min(86%, 360px);
        margin: 0;
        text-align: left;
    }

    .heat-hero--catalog h1 {
        font-size: clamp(26px, 6.6vw, 34px);
        line-height: 1.36;
    }

    .heat-hero__sub {
        margin-bottom: 10px;
        font-size: 12px;
    }

    .heat-hero__glass {
        width: min(292px, 78vw);
        border-radius: 999px 999px 0 0;
    }

    .heat-hero__mado {
        grid-column: 1;
        width: min(210px, 56vw);
        justify-self: center;
        /* 画像を少し下げる */
        margin: 28px auto 0;
    }

    /* 中央よりほんの少し左に見えるよう微調整 */
    .heat-hero__mado img {
        transform: translateX(-6%);
    }

    /* 吹き出しは画像の移動に合わせて上端左に重ねて浮かせる */
    .heat-hero__appeal {
        top: 30px;
        left: calc(50% - 118px);
        min-width: 132px;
        padding: 9px 12px 10px;
        border-radius: 15px 15px 15px 4px;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.9),
            0 16px 30px -16px rgba(16, 32, 51, 0.45),
            0 0 22px rgba(255, 255, 255, 0.4);
    }

    .heat-hero__appeal span {
        font-size: 10px;
        letter-spacing: 0.12em;
    }

    .heat-hero__appeal strong {
        font-size: 14px;
        letter-spacing: 0.06em;
    }

    .heat-hero__side-copy p {
        font-size: 13px;
        line-height: 2;
    }

    .heat-hero__actions,
    .heat-cta__buttons {
        display: grid;
    }

    .glass-detail-button {
        width: 100%;
    }

    .heat-hero__visual {
        min-height: 330px;
    }

    .heat-window {
        width: min(300px, 82vw);
        transform: rotateY(-18deg) rotateX(6deg);
    }

    .heat-ba-card {
        grid-template-columns: 1fr;
    }

    .heat-benefit-card {
        min-height: 0;
    }

    .heat-energy__list div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .heat-cta__inner {
        padding: 38px 22px;
        border-radius: 20px;
    }

    .heat-intro {
        padding: 48px 0 72px;
    }

    .heat-hero__marquee {
        padding-bottom: 10px;
    }
}

@media (max-width: 1023px) {
    .film-type-works {
        padding-top: 0;
    }

    .film-type-works__heading {
        top: 72px;
        width: min(760px, calc(100% - 32px));
    }

    .film-type-works__large {
        margin-bottom: 0;
        font-size: clamp(58px, 14vw, 124px);
        white-space: normal;
    }

    .film-type-works__stage {
        min-height: calc(100svh + 280vh);
        margin-top: 0;
    }

    .film-type-works__sticky {
        min-height: 100svh;
        padding: 154px 0 78px;
    }

    .film-type-works__pickup {
        top: 42px;
        left: 28px;
        transform: none;
        font-size: 24px;
    }

    .film-type-works__number {
        top: 42px;
        right: 24px;
        left: auto;
        font-size: 108px;
        transform: none;
    }

    .film-type-works__link {
        top: auto;
        right: 26px;
        bottom: 36px;
        font-size: 12px;
        transform: none;
    }

    .film-type-works__cards {
        display: block;
        width: min(330px, 58vw);
        margin: 0;
        justify-self: center;
        padding: 0;
        overflow: visible;
        scroll-snap-type: none;
    }

    .film-type-card {
        flex: none;
        scroll-snap-align: none;
    }

    .film-type-card a {
        min-height: 0;
    }
}

@media (max-width: 767px) {
    .film-type-works {
        padding-top: 0;
    }

    .film-type-works__heading {
        top: 110px;
        width: min(430px, calc(100% - 28px));
    }

    .film-type-works__heading h2 {
        font-size: 24px;
    }

    .film-type-works__large {
        font-size: 44px;
        line-height: 0.92;
    }

    .film-type-works__stage {
        min-height: calc(100svh + 420vh);
    }

    /* テーマ切替でカード位置がズレないよう両テーマ共通のパディングにする */
    .film-type-works__sticky {
        align-items: start;
        padding: 200px 0 80px;
    }

    .film-type-works__overlay {
        background:
            linear-gradient(180deg, rgba(10, 18, 28, 0.78), rgba(10, 18, 28, 0.44) 42%, rgba(10, 18, 28, 0.82)),
            rgba(9, 18, 28, 0.3);
    }

    .film-type-works__pickup {
        top: 90px;
        left: 20px;
        font-size: 21px;
    }

    .film-type-works__number {
        top: 90px;
        right: 18px;
        font-size: 82px;
    }

    .film-type-works__cards {
        width: min(260px, 68vw);
        padding: 0;
    }

    .film-type-card {
        flex-basis: auto;
    }

    /* スマホは毎フレームのfilter再描画が重くフレーム落ちの原因になるため無効化し、
       transform/opacityのみで動かしてスクロール追従を滑らかにする */
    .film-type-card,
    .film-type-card.is-active {
        filter: none;
    }

    .film-type-works__stage .film-type-card {
        will-change: transform, opacity;
        transition: opacity 110ms linear;
    }

    .film-type-card a {
        min-height: 0;
        border-radius: 5px;
    }

    .film-type-card__body {
        padding: 18px;
    }

    .film-type-card__body span {
        margin-bottom: 84px;
        font-size: 42px;
    }

    .film-type-card__body h3 {
        font-size: 17px;
    }

    .film-type-card__body p {
        font-size: 12px;
        line-height: 1.7;
    }
}

/* ---------- area hero ---------- */

.area-hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    background:
        radial-gradient(circle at 74% 46%, rgba(255, 255, 255, 0.9), transparent 30%),
        linear-gradient(180deg, #f5f1e8 0%, #f8f4ec 54%, #efe8dc 100%);
    color: #182432;
    font-family: "Zen Kaku Gothic New", var(--font);
    isolation: isolate;
}

.area-hero::before {
    display: none;
}

.area-hero::after {
    position: absolute;
    top: 128px;
    right: 6vw;
    z-index: 0;
    width: min(50vw, 660px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.22) 54%, transparent 70%);
    content: "";
    opacity: 0.95;
}

.area-hero__ghost {
    position: absolute;
    left: clamp(28px, 5vw, 80px);
    bottom: 24px;
    z-index: 0;
    margin: 0;
    color: rgba(102, 120, 137, 0.09);
    font-family: "Times New Roman", "Yu Mincho", "YuMincho", serif;
    font-size: clamp(132px, 18vw, 270px);
    font-style: italic;
    line-height: 0.82;
    letter-spacing: 0;
    pointer-events: none;
}

.area-hero__inner {
    position: relative;
    z-index: 3;
    width: min(1160px, calc(100% - 88px));
    margin: 0 auto;
    padding: 188px 0 104px;
}

.area-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin: 0 0 24px;
    color: #7c705f;
    font-family: "Roboto", var(--font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.28em;
}

.area-hero__kicker::after {
    display: block;
    width: 54px;
    height: 1px;
    background: currentColor;
    content: "";
    opacity: 0.62;
}

.area-hero h1 {
    margin: 0;
    color: #172330;
    font-family: "Times New Roman", "Yu Mincho", "YuMincho", serif;
    font-size: clamp(58px, 8.4vw, 132px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0.08em;
}

.area-hero__lead {
    width: min(520px, 42vw);
    margin: 42px 0 0;
    color: #3a4650;
    font-size: clamp(14px, 1vw, 16px);
    font-weight: 500;
    line-height: 2.15;
    letter-spacing: 0.08em;
}

.area-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: min(500px, 42vw);
    margin: 36px 0 0;
    padding: 0;
    list-style: none;
}

.area-hero__chips li {
    padding: 9px 18px;
    border: 1px solid rgba(124, 112, 95, 0.22);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.54);
    color: #2d3d4d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    box-shadow: 0 12px 24px -20px rgba(52, 70, 86, 0.35);
}

.area-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 54px;
    color: #667889;
    font-size: 12px;
    letter-spacing: 0.12em;
}

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

.area-hero__breadcrumb em {
    color: #263645;
    font-style: normal;
}

.area-hero__map {
    position: absolute;
    right: max(18px, 4.2vw);
    top: 110px;
    z-index: 2;
    width: min(820px, 59vw);
    aspect-ratio: 1200 / 820;
    filter: drop-shadow(0 36px 48px rgba(65, 57, 45, 0.16));
    animation: area-hero-map-in 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.area-hero__map img,
.area-hero__map svg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.area-hero__pref {
    stroke: rgba(248, 244, 236, 0.94);
    stroke-width: 5;
    stroke-linejoin: round;
}

.area-hero__pref--ishikawa {
    fill: #9fb7ba;
}

.area-hero__pref--toyama {
    fill: #c7d0c6;
}

.area-hero__pref--fukui {
    fill: #b7c2b8;
}

.area-hero__route {
    fill: none;
    stroke: rgba(124, 112, 95, 0.42);
    stroke-width: 2;
    stroke-dasharray: 6 10;
    stroke-linecap: round;
}

.area-hero__label,
.area-hero__spot {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    pointer-events: none;
}

.area-hero__label {
    color: rgba(39, 47, 44, 0.58);
    font-family: "Roboto", var(--font);
    font-size: clamp(14px, 1.25vw, 19px);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.area-hero__label--ishikawa {
    top: 46%;
    left: 46%;
    writing-mode: vertical-rl;
}

.area-hero__label--toyama {
    top: 43%;
    right: 9%;
}

.area-hero__label--fukui {
    left: 16%;
    bottom: 12%;
}

.area-hero__spot {
    min-width: 112px;
    padding: 10px 14px;
    border: 1px solid rgba(124, 112, 95, 0.24);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.76);
    color: #26323b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    box-shadow: 0 18px 30px -22px rgba(65, 57, 45, 0.42);
    backdrop-filter: blur(10px);
}

.area-hero__spot b {
    display: block;
    margin-right: 8px;
    color: #7c705f;
    font-family: "Roboto", var(--font);
    font-size: 9px;
    letter-spacing: 0.16em;
}

.area-hero__spot::before {
    position: absolute;
    left: -7px;
    top: 50%;
    width: 11px;
    height: 11px;
    margin: 0;
    border-radius: 50%;
    background: #667889;
    box-shadow: 0 0 0 7px rgba(102, 120, 137, 0.12);
    content: "";
    transform: translateY(-50%);
}

.area-hero__spot--kanazawa {
    top: 50%;
    left: 37%;
}

.area-hero__spot--komatsu {
    top: 67%;
    left: 33%;
}

.area-hero__spot--toyama {
    top: 46%;
    right: 5%;
}

.area-hero__spot--fukui {
    left: 8%;
    bottom: 7%;
}

.area-hero__pin {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-width: 116px;
    padding: 10px 14px 10px 12px;
    border: 1px solid rgba(102, 120, 137, 0.18);
    background: rgba(255, 255, 255, 0.82);
    color: #1f2c38;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.06em;
    box-shadow: 0 16px 30px -22px rgba(65, 57, 45, 0.42);
    backdrop-filter: blur(10px);
}

.area-hero__pin i {
    position: relative;
    display: block;
    flex: 0 0 auto;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #667889;
    box-shadow: 0 0 0 6px rgba(102, 120, 137, 0.13);
}

.area-hero__pin i::before,
.area-hero__pin i::after {
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(102, 120, 137, 0.42);
    border-radius: 50%;
    content: "";
    animation: area-hero-pin-pulse 2.15s cubic-bezier(0.2, 0.55, 0.35, 1) infinite;
}

.area-hero__pin i::after {
    animation-delay: 0.72s;
}

.area-hero__pin b {
    color: #667889;
    font-family: "Roboto", var(--font);
    font-size: 9px;
    letter-spacing: 0.16em;
}

.area-hero__pin--kanazawa {
    top: 50%;
    left: 48%;
}

.area-hero__pin--komatsu {
    top: 61%;
    left: 38%;
}

.area-hero__pin--noto {
    top: 24%;
    left: 68%;
}

.area-hero__pin--toyama {
    top: 47%;
    right: 8%;
}

.area-hero__pin--fukui {
    left: 14%;
    bottom: 10%;
}

@keyframes area-hero-pin-pulse {
    0% {
        opacity: 0.82;
        transform: scale(0.35);
    }
    78%, 100% {
        opacity: 0;
        transform: scale(1.85);
    }
}

@keyframes area-hero-map-in {
    0% {
        opacity: 0;
        transform: translate3d(28px, 28px, 0) scale(0.96);
        filter: blur(8px) drop-shadow(0 38px 48px rgba(61, 81, 98, 0.18));
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0) drop-shadow(0 38px 48px rgba(61, 81, 98, 0.18));
    }
}

/* ---------- map section ---------- */

.area-map {
    padding: 104px 0 84px;
    font-family: "Zen Kaku Gothic New", var(--font);
    background: #f7fafc;
}

.area-map__inner {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 56px;
    align-items: center;
    width: min(1140px, calc(100% - 80px));
    margin: 0 auto;
}

.area-map__txt .section-kicker {
    color: #8a9aab;
    font-family: "Roboto", var(--font);
}

.area-map__txt .section-kicker::after {
    background: #9aabba;
}

.area-map__txt h2 {
    margin: 14px 0 22px;
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #16202c;
}

.area-map__lead {
    margin: 0 0 28px;
    font-size: 14.5px;
    line-height: 2.05;
    letter-spacing: 0.05em;
    color: #44586b;
}

.area-map__legend {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 0 24px;
    padding: 20px 22px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(33, 56, 82, 0.08);
    box-shadow: 0 10px 26px -18px rgba(18, 32, 47, 0.4);
    list-style: none;
}

.area-map__legend-item {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #1f2e3d;
}

.area-map__legend-item i {
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.area-map__legend-item--base i {
    background: #667889;
    box-shadow: 0 0 0 3px rgba(102, 120, 137, 0.22);
}

.area-map__legend-item--base i::after {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1.5px solid rgba(102, 120, 137, 0.58);
    content: "";
    animation: mado-pulse 2.1s cubic-bezier(0.2, 0.55, 0.35, 1) infinite;
}

.area-map__legend-item--main i {
    background: #8fa4b5;
}

.area-map__legend-item--sub i {
    background: #c8d2da;
}

.area-map__note {
    margin: 0;
    font-size: 11.5px;
    line-height: 1.8;
    letter-spacing: 0.04em;
    color: #6b7886;
}

/* the map itself */
.area-map__fig {
    margin: 0;
    padding: 30px 18px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 78% 16%, rgba(255, 255, 255, 0.9), transparent 44%),
        linear-gradient(165deg, #e9f3fa, #f4f9fd 55%, #ddebf5);
    border: 1px solid rgba(120, 160, 195, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 24px 50px -30px rgba(54, 86, 115, 0.45);
}

.area-map__fig svg {
    display: block;
    width: 100%;
    height: auto;
}

.area-map__pref {
    stroke: #fff;
    stroke-width: 2.5;
    stroke-linejoin: round;
}

.area-map__pref--main {
    fill: #bfd0dc;
    filter: drop-shadow(0 6px 14px rgba(102, 120, 137, 0.18));
}

.area-map__pref--sub {
    fill: #e7edf0;
}

.area-map__pref-name {
    fill: #8a9aab;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.area-map__pref-name--main {
    fill: #526577;
}

.area-map__pin circle {
    fill: #8fa4b5;
    stroke: #fff;
    stroke-width: 2;
}

.area-map__pin text {
    fill: #1f2e3d;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    paint-order: stroke;
    stroke: rgba(247, 251, 254, 0.9);
    stroke-width: 3;
}

.area-map__pin--sub circle {
    fill: #aebfce;
}

.area-map__pin--sub text {
    fill: #5d6f80;
    font-weight: 500;
}

.area-map__pin--base circle {
    fill: #667889;
    stroke-width: 2.5;
}

.area-map__pin--base text {
    font-size: 14.5px;
    fill: #16283a;
}

.area-map__pulse {
    fill: rgba(102, 120, 137, 0.4) !important;
    stroke: none !important;
    transform-box: fill-box;
    transform-origin: center;
    animation: area-pin-pulse 2.1s cubic-bezier(0.2, 0.55, 0.35, 1) infinite;
}

.area-map__pulse--late {
    animation-delay: 0.7s;
}

@keyframes area-pin-pulse {
    0% { transform: scale(0.6); opacity: 0.9; }
    75%, 100% { transform: scale(2.4); opacity: 0; }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    border: 0;
}

/* ---------- prefecture detail sections ---------- */

.area-pref {
    padding: 80px 0 88px;
    font-family: "Zen Kaku Gothic New", var(--font);
}

.area-pref--tint {
    background: linear-gradient(180deg, #eef4f9, #f3f7fb);
}

.area-pref--ishikawa {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(247, 251, 254, 0.94) 38%, rgba(241, 247, 252, 0.98)),
        url("../img/about-film-finished.webp?v=202606191807") left center / auto 100% no-repeat;
}

.area-pref--hokuriku {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(241, 247, 252, 0.98), rgba(247, 251, 254, 0.95) 62%, rgba(255, 255, 255, 0.82)),
        url("../img/about-film-finished.webp?v=202606191807") right center / auto 100% no-repeat;
}

.area-pref--hokuriku::after {
    position: absolute;
    left: -7%;
    bottom: 8%;
    width: 34%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 110, 158, 0.1), transparent 68%);
    content: "";
    pointer-events: none;
}

.area-pref--ishikawa::after {
    position: absolute;
    right: -8%;
    top: 16%;
    width: 32%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 110, 158, 0.1), transparent 68%);
    content: "";
    pointer-events: none;
}

.area-pref__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    width: min(1040px, calc(100% - 80px));
    margin: 0 auto;
}

.area-pref__cards--photo {
    position: relative;
    z-index: 1;
    width: min(980px, calc(100% - 80px));
    gap: 24px;
}

.area-pref__card {
    padding: 32px 34px 30px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(33, 56, 82, 0.08);
    box-shadow: 0 16px 36px -22px rgba(18, 32, 47, 0.35);
}

.area-pref__cards--photo .area-pref__card {
    padding: 16px 16px 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow:
        0 18px 38px -24px rgba(18, 32, 47, 0.44),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.area-pref__card--main {
    border: 1px solid rgba(102, 120, 137, 0.34);
    box-shadow: 0 20px 40px -22px rgba(64, 80, 96, 0.36);
}

.area-pref__thumb {
    position: relative;
    overflow: hidden;
    margin: 0 0 16px;
    border-radius: 12px;
    aspect-ratio: 16 / 7;
    background: #eaf2f7;
}

.area-pref__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.area-pref__card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.07em;
    color: #16202c;
}

.area-pref__cards--photo .area-pref__card h3 {
    gap: 10px;
    margin-bottom: 10px;
    font-size: 17px;
}

.area-pref__icon {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d6e9e, #1d6ad8);
    color: #fff;
    box-shadow: 0 8px 16px -10px rgba(29, 106, 216, 0.55);
}

.area-pref__icon svg {
    width: 18px;
    height: 18px;
}

.area-pref__badge {
    display: inline-block;
    padding: 4px 13px;
    border-radius: 999px;
    background: linear-gradient(135deg, #667889, #3f4f5e);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    box-shadow: 0 6px 14px -6px rgba(63, 79, 94, 0.52);
}

.area-pref__card > p {
    margin: 0 0 18px;
    font-size: 13.5px;
    line-height: 1.9;
    letter-spacing: 0.04em;
    color: #51606e;
}

.area-pref__cards--photo .area-pref__card > p {
    margin: 0 2px 14px;
    font-size: 12.5px;
    line-height: 1.8;
}

.area-pref__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.area-pref__chips li {
    padding: 7px 15px;
    border-radius: 999px;
    background: #eef4f9;
    border: 1px solid rgba(70, 110, 150, 0.14);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #2c3e4e;
}

.area-pref__cards--photo .area-pref__chips {
    gap: 7px;
}

.area-pref__cards--photo .area-pref__chips li {
    padding: 6px 13px;
    background: #eef5fb;
    color: #2f526f;
    font-size: 12px;
    font-weight: 700;
}

.area-pref__chips li em {
    font-style: normal;
    font-weight: 700;
    color: #4f6274;
}

.area-pref__card--main .area-pref__chips li {
    background: #edf2f5;
    border-color: rgba(102, 120, 137, 0.24);
}

.area-pref__seo {
    width: min(900px, calc(100% - 80px));
    margin: 40px auto 0;
}

.area-pref__seo p {
    margin: 0;
    font-size: 13.5px;
    line-height: 2.1;
    letter-spacing: 0.05em;
    color: #51606e;
    text-align: justify;
}

.area-pref__seo--glass {
    position: relative;
    z-index: 1;
    width: min(980px, calc(100% - 80px));
    margin-top: 28px;
    padding: 20px 26px;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 14px 32px -26px rgba(18, 32, 47, 0.4);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

@media (max-width: 1023px) {
    .area-hero {
        min-height: auto;
        padding-top: 88px;
    }
    .area-hero::before {
        inset: 118px 28px auto;
        width: auto;
        height: 44%;
        border-radius: 24px;
        background-size: 54px 54px;
    }
    .area-hero::after {
        top: 200px;
        right: -12vw;
        width: 74vw;
    }
    .area-hero__ghost {
        left: 28px;
        bottom: 18px;
        font-size: clamp(112px, 24vw, 210px);
    }
    .area-hero__inner {
        width: min(900px, calc(100% - 56px));
        padding: 142px 0 34px;
    }
    .area-hero h1 {
        font-size: clamp(48px, 9vw, 78px);
    }
    .area-hero__lead,
    .area-hero__chips {
        width: min(620px, 86vw);
    }
    .area-hero__map {
        position: relative;
        right: auto;
        top: auto;
        bottom: auto;
        width: min(760px, 96vw);
        margin: 0 auto 54px;
    }
    .area-hero__pin {
        min-width: auto;
        padding: 9px 12px 9px 10px;
        font-size: 11px;
    }
    .area-map__inner {
        grid-template-columns: none;
        gap: 36px;
    }
}

@media (max-width: 767px) {
    .area-hero__inner {
        width: auto;
        padding: 118px 7.5% 28px;
    }
    .area-hero::before {
        inset: 96px 16px auto;
        height: 360px;
        border-radius: 18px;
        background-size: 42px 42px;
    }
    .area-hero::after {
        top: 220px;
        right: -42vw;
        width: 120vw;
    }
    .area-hero__ghost {
        left: 18px;
        bottom: 14px;
        font-size: clamp(86px, 28vw, 132px);
    }
    .area-hero__kicker {
        margin-bottom: 18px;
        font-size: 11px;
    }
    .area-hero h1 {
        font-size: clamp(42px, 14vw, 58px);
    }
    .area-hero__lead,
    .area-hero__chips {
        width: 100%;
    }
    .area-hero__lead {
        margin-top: 28px;
        font-size: 14px;
        line-height: 2;
    }
    .area-hero__chips {
        gap: 8px;
        margin-top: 26px;
    }
    .area-hero__chips li {
        padding: 7px 12px;
        font-size: 12px;
    }
    .area-hero__head .area-hero__breadcrumb {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .area-hero__map {
        width: min(116vw, 520px);
        margin: 0 -8vw 38px;
    }
    .area-hero__pin {
        gap: 6px;
        padding: 7px 9px;
        font-size: 10px;
        letter-spacing: 0.03em;
    }
    .area-hero__pin i {
        width: 8px;
        height: 8px;
        box-shadow: 0 0 0 5px rgba(102, 120, 137, 0.13);
    }
    .area-hero__pin i::before,
    .area-hero__pin i::after {
        inset: -6px;
    }
    .area-hero__pin b {
        font-size: 8px;
    }
    .area-hero__pin--kanazawa {
        left: 46%;
    }
    .area-hero__pin--toyama {
        right: 5%;
    }
    .area-hero__spot {
        min-width: auto;
        padding: 7px 10px;
        font-size: 10px;
    }
    .area-hero__spot::before {
        width: 8px;
        height: 8px;
        box-shadow: 0 0 0 5px rgba(102, 120, 137, 0.12);
    }
    .area-hero__label {
        font-size: 13px;
    }
    .area-map {
        padding: 56px 0 48px;
    }
    .area-map__inner {
        width: auto;
        padding: 0 7.5%;
    }
    .area-map__fig {
        padding: 18px 8px;
    }
    .area-map__pin text {
        font-size: 15px;
    }
    .area-map__pin--base text {
        font-size: 17px;
    }
    .area-map__pref-name {
        font-size: 16px;
    }
    .area-pref {
        padding: 56px 0 60px;
    }
    .area-pref__cards {
        grid-template-columns: none;
        gap: 16px;
        width: auto;
        margin: 0 5%;
    }
    .area-pref__card {
        padding: 24px 22px 22px;
    }
    .area-pref__seo {
        width: auto;
        margin: 28px 5% 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .area-map__pulse,
    .area-map__legend-item--base i::after {
        animation: none;
        opacity: 0;
    }
}

.service-area__more {
    margin: 30px 0 0;
}

@media (max-width: 767px) {
    .service-area__more {
        text-align: center;
    }
}

/* ---------- rebuilt area page ---------- */

.area-page {
    background: #f6f8f9;
}

.area-kv {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 35%, rgba(255, 255, 255, 0.95), transparent 30%),
        linear-gradient(180deg, #f7f4ed 0%, #f0eadf 100%);
    color: #172330;
    font-family: "Zen Kaku Gothic New", var(--font);
    isolation: isolate;
}

.area-kv::before {
    position: absolute;
    inset: 82px 52px 70px auto;
    z-index: 0;
    width: min(58vw, 760px);
    border: 1px solid rgba(102, 120, 137, 0.15);
    border-radius: 34px;
    background:
        linear-gradient(90deg, rgba(102, 120, 137, 0.07) 1px, transparent 1px),
        linear-gradient(180deg, rgba(102, 120, 137, 0.07) 1px, transparent 1px);
    background-size: 76px 76px;
    content: "";
}

.area-kv::after {
    position: absolute;
    left: clamp(26px, 4vw, 72px);
    bottom: 28px;
    z-index: 0;
    color: rgba(102, 120, 137, 0.08);
    font-family: "Times New Roman", "Yu Mincho", "YuMincho", serif;
    font-size: clamp(118px, 18vw, 260px);
    font-style: italic;
    line-height: 0.8;
    content: "Area";
    pointer-events: none;
}

.area-kv__copy {
    position: relative;
    z-index: 3;
    width: min(1180px, calc(100% - 88px));
    margin: 0 auto;
    padding: 174px 0 170px;
}

.area-kv__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin: 0 0 28px;
    color: #7b7164;
    font-family: "Roboto", var(--font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.28em;
}

.area-kv__eyebrow::after {
    width: 58px;
    height: 1px;
    background: currentColor;
    content: "";
    opacity: 0.6;
}

.area-kv h1 {
    margin: 0;
    color: #142231;
    font-family: "Times New Roman", "Yu Mincho", "YuMincho", serif;
    font-size: clamp(58px, 8.8vw, 136px);
    font-weight: 400;
    line-height: 0.96;
    letter-spacing: 0.1em;
}

.area-kv__lead {
    width: min(520px, 42vw);
    margin: 44px 0 0;
    color: #344554;
    font-size: clamp(14px, 1vw, 16px);
    font-weight: 500;
    line-height: 2.15;
    letter-spacing: 0.08em;
}

.area-kv__breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 56px;
    color: #667889;
    font-size: 12px;
    letter-spacing: 0.12em;
}

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

.area-kv__breadcrumb em {
    color: #253544;
    font-style: normal;
}

.area-kv__map {
    position: absolute;
    top: 76px;
    right: clamp(10px, 4.4vw, 72px);
    z-index: 2;
    width: min(660px, 49vw);
    aspect-ratio: 1200 / 1500;
    filter: drop-shadow(0 28px 52px rgba(80, 88, 92, 0.16));
    animation: area-kv-map-in 1.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.area-kv__map img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.area-kv__pin {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-width: 116px;
    padding: 10px 14px 10px 12px;
    border: 1px solid rgba(102, 120, 137, 0.18);
    background: rgba(255, 255, 255, 0.82);
    color: #1f2c38;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.06em;
    box-shadow: 0 16px 30px -22px rgba(65, 57, 45, 0.42);
    backdrop-filter: blur(10px);
}

.area-kv__pin i {
    position: relative;
    display: block;
    flex: 0 0 auto;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #667889;
    box-shadow: 0 0 0 6px rgba(102, 120, 137, 0.13);
}

.area-kv__pin i::before,
.area-kv__pin i::after {
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(102, 120, 137, 0.42);
    border-radius: 50%;
    content: "";
    animation: area-kv-pin-pulse 2.2s cubic-bezier(0.2, 0.55, 0.35, 1) infinite;
}

.area-kv__pin i::after {
    animation-delay: 0.72s;
}

.area-kv__pin b {
    color: #667889;
    font-family: "Roboto", var(--font);
    font-size: 9px;
    letter-spacing: 0.16em;
}

.area-kv__pin--hokuriku {
    top: 44%;
    left: 38%;
}

.area-kv__pin--kanazawa {
    top: 42%;
    left: 22%;
}

.area-kv__pin--toyama {
    top: 46%;
    right: 16%;
}

.area-kv__pin--fukui {
    top: 58%;
    left: 18%;
}

.area-kv__bottom {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 5.6vw;
    border-top: 1px solid rgba(102, 120, 137, 0.16);
    background: rgba(255, 255, 255, 0.56);
    color: #243442;
    backdrop-filter: blur(14px);
}

.area-kv__bottom p {
    margin: 0;
    font-family: "Roboto", var(--font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.area-kv__bottom ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.area-kv__bottom li {
    padding: 7px 13px;
    border: 1px solid rgba(102, 120, 137, 0.18);
    background: rgba(255, 255, 255, 0.48);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

@keyframes area-kv-map-in {
    0% {
        opacity: 0;
        transform: translate3d(28px, 34px, 0) scale(0.96);
        filter: blur(8px) drop-shadow(0 28px 52px rgba(80, 88, 92, 0.16));
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0) drop-shadow(0 28px 52px rgba(80, 88, 92, 0.16));
    }
}

@keyframes area-kv-pin-pulse {
    0% {
        opacity: 0.82;
        transform: scale(0.35);
    }
    78%, 100% {
        opacity: 0;
        transform: scale(1.85);
    }
}

.area-section {
    padding: 108px 0;
    background: #f7fafc;
    font-family: "Zen Kaku Gothic New", var(--font);
}

.area-section:nth-of-type(even) {
    background: #eef4f8;
}

.area-section__head {
    width: min(1120px, calc(100% - 88px));
    margin: 0 auto 44px;
}

.area-section__head h2,
.area-process__body h2 {
    margin: 16px 0 0;
    color: #162432;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.45;
    letter-spacing: 0.12em;
}

.area-intro__grid,
.area-regions__layout,
.area-process {
    width: min(1120px, calc(100% - 88px));
    margin: 0 auto;
}

.area-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
    gap: 70px;
    align-items: center;
}

.area-intro__text {
    display: grid;
    gap: 18px;
    color: #3c4d5c;
    font-size: 15px;
    font-weight: 500;
    line-height: 2.2;
    letter-spacing: 0.07em;
}

.area-intro__text p {
    margin: 0;
}

.area-intro__photo {
    margin: 0;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 26px 52px -34px rgba(35, 48, 62, 0.42);
}

.area-intro__photo img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.area-regions__layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 18px;
}

.area-region {
    position: relative;
    min-height: 360px;
    padding: 34px 32px 30px;
    border: 1px solid rgba(102, 120, 137, 0.14);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 42px -34px rgba(35, 48, 62, 0.42);
}

.area-region--main {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(238, 245, 248, 0.88)),
        url("../img/town.webp?v=202606191807") right bottom / 54% auto no-repeat;
}

.area-region__num {
    margin: 0 0 42px;
    color: #667889;
    font-family: "Times New Roman", serif;
    font-size: 42px;
    line-height: 1;
}

.area-region h3 {
    margin: 0 0 18px;
    color: #162432;
    font-size: 23px;
    letter-spacing: 0.12em;
}

.area-region p:not(.area-region__num) {
    margin: 0 0 22px;
    color: #47596a;
    font-size: 13.5px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.06em;
}

.area-region ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.area-region li {
    padding: 7px 12px;
    border: 1px solid rgba(102, 120, 137, 0.18);
    background: rgba(255, 255, 255, 0.78);
    color: #263746;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.area-process {
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
    gap: 70px;
    align-items: center;
}

.area-process__visual {
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 24px 52px -32px rgba(26, 42, 55, 0.44);
}

.area-process__visual img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.area-process__steps {
    display: grid;
    gap: 0;
    margin: 38px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(102, 120, 137, 0.18);
}

.area-process__steps li {
    display: flex;
    gap: 22px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid rgba(102, 120, 137, 0.18);
    color: #263746;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.area-process__steps span {
    color: #667889;
    font-family: "Times New Roman", serif;
    font-size: 24px;
}

.area-faq__list {
    width: min(900px, calc(100% - 88px));
    margin: 0 auto;
}

.area-contact {
    padding: 98px 0 110px;
    background:
        linear-gradient(180deg, rgba(22, 34, 48, 0.78), rgba(22, 34, 48, 0.82)),
        url("../img/glass-film-hero-01.webp?v=202606191807") center / cover no-repeat;
    color: #fff;
    font-family: "Zen Kaku Gothic New", var(--font);
}

.area-contact__inner {
    width: min(980px, calc(100% - 88px));
    margin: 0 auto;
    text-align: center;
}

.area-contact__kicker {
    margin: 0 0 16px;
    font-family: "Roboto", var(--font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.28em;
    opacity: 0.76;
}

.area-contact h2 {
    margin: 0;
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.55;
    letter-spacing: 0.12em;
}

.area-contact p:not(.area-contact__kicker) {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.area-contact__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 38px;
}

.area-contact__btn {
    min-width: 210px;
    padding: 16px 24px;
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
}

.area-contact__btn--form {
    background: #ff920f;
}

.area-contact__btn--line {
    background: #05bf46;
}

.area-contact__btn--phone {
    background: #fff;
    color: #1d6fd0;
}

@media (max-width: 1023px) {
    .area-kv {
        min-height: auto;
    }
    .area-kv::before {
        inset: 118px 28px auto;
        width: auto;
        height: 58%;
        border-radius: 24px;
        background-size: 54px 54px;
    }
    .area-kv__copy {
        width: min(900px, calc(100% - 56px));
        padding: 142px 0 32px;
    }
    .area-kv__lead {
        width: min(620px, 86vw);
    }
    .area-kv__map {
        position: relative;
        top: auto;
        right: auto;
        width: min(720px, 90vw);
        margin: 0 auto 86px;
    }
    .area-kv__bottom {
        position: relative;
        align-items: flex-start;
        flex-direction: column;
        padding: 18px 28px;
    }
    .area-intro__grid,
    .area-process,
    .area-regions__layout {
        grid-template-columns: none;
    }
    .area-regions__layout {
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .area-kv__copy {
        width: auto;
        padding: 118px 7.5% 28px;
    }
    .area-kv::before {
        inset: 96px 16px auto;
        height: 430px;
        border-radius: 18px;
        background-size: 42px 42px;
    }
    .area-kv h1 {
        font-size: clamp(42px, 14vw, 58px);
    }
    .area-kv__lead {
        width: 100%;
        margin-top: 28px;
        font-size: 14px;
        line-height: 2;
    }
    .area-kv__breadcrumb {
        margin-top: 34px;
    }
    .area-kv__map {
        width: min(112vw, 480px);
        margin: 0 -6vw 58px;
    }
    .area-kv__pin {
        gap: 6px;
        min-width: auto;
        padding: 7px 9px;
        font-size: 10px;
    }
    .area-kv__pin i {
        width: 8px;
        height: 8px;
    }
    .area-kv__pin i::before,
    .area-kv__pin i::after {
        inset: -6px;
    }
    .area-kv__pin b {
        display: none;
    }
    .area-kv__bottom {
        padding: 16px 7.5%;
    }
    .area-section {
        padding: 64px 0;
    }
    .area-section__head,
    .area-intro__grid,
    .area-regions__layout,
    .area-process,
    .area-faq__list,
    .area-contact__inner {
        width: auto;
        margin-right: 7.5%;
        margin-left: 7.5%;
    }
    .area-section__head {
        margin-bottom: 30px;
    }
    .area-section__head h2,
    .area-process__body h2 {
        font-size: 27px;
    }
    .area-intro__grid,
    .area-process {
        gap: 32px;
    }
    .area-region {
        min-height: auto;
        padding: 26px 22px;
    }
    .area-process__steps li {
        align-items: flex-start;
        font-size: 13px;
        line-height: 1.8;
    }
    .area-contact {
        padding: 70px 0;
    }
    .area-contact__actions {
        flex-direction: column;
    }
    .area-contact__btn {
        width: 100%;
    }
}

/* Area page hero: top-page service-area style (left-anchored photo wipe) */

.area-hero {
    position: relative;
    overflow: hidden;
    padding: 128px 0 84px;
    background: linear-gradient(180deg, #f7fafc 0%, #fff 46%, #eef4f8 100%);
    font-family: "Zen Kaku Gothic New", var(--font);
}

@media (max-width: 1023px) {
    .area-hero {
        padding-top: 64px;
    }
}

@media (max-width: 767px) {
    .area-hero {
        padding: 70px 0 30px;
    }
}

.area-hero__head {
    width: min(1140px, calc(100% - 80px));
    margin: 0 auto 36px;
}

.area-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 26px;
    font-family: "Roboto", var(--font);
    font-size: 12px;
    letter-spacing: 0.08em;
}

.area-hero__breadcrumb a {
    color: rgba(68, 88, 107, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.area-hero__breadcrumb a:hover {
    color: #16283a;
    opacity: 1;
}

.area-hero__breadcrumb span {
    color: rgba(138, 154, 171, 0.7);
}

.area-hero__breadcrumb em {
    font-style: normal;
    color: #16283a;
}

.area-hero__kicker {
    margin: 0 0 14px;
    font-family: "Roboto", var(--font);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: #2d6e9e;
}

.area-hero__kicker::after {
    display: block;
    width: 34px;
    height: 1px;
    margin-top: 10px;
    background: #2d6e9e;
    content: "";
}

.area-hero h1 {
    margin: 0;
    font-size: clamp(30px, 3.6vw, 44px);
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #16283a;
}

.area-hero__breadcrumb,
.area-hero__kicker,
.area-hero h1 {
    opacity: 0;
    filter: blur(8px);
    translate: 0 16px;
    animation: faq-hero-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.area-hero__breadcrumb { animation-delay: 0.4s; }
.area-hero__kicker { animation-delay: 0.1s; }
.area-hero h1 { animation-delay: 0.22s; }

/* left-anchored photo band with wipe reveal (same as top page) */
.area-hero__photo {
    position: relative;
    width: calc(100vw - clamp(96px, 12vw, 220px));
    max-width: calc(100vw - clamp(96px, 12vw, 220px));
    height: clamp(260px, 30vw, 470px);
    margin: 0 auto 0 0;
    overflow: visible;
    border-radius: 0 8px 8px 0;
}

.area-hero__photo > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    filter: drop-shadow(0 20px 30px rgba(49, 71, 90, 0.2));
    transform: scale(1.07);
    clip-path: inset(0 100% 0 0);
    animation: area-hero-photo-wipe 1.05s cubic-bezier(0.12, 0.86, 0.18, 1) 0.46s both;
    will-change: clip-path, transform;
}

@keyframes area-hero-photo-wipe {
    to {
        clip-path: inset(0 0 0 0);
        transform: scale(1);
    }
}

/* floating badge on the photo */
.area-hero__badge {
    position: absolute;
    left: clamp(24px, 5vw, 74px);
    bottom: 20px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 13px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 30px -12px rgba(18, 32, 47, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transform: translateY(12px) scale(0.92);
    animation: area-hero-badge 0.6s cubic-bezier(0.26, 1.5, 0.45, 1) 1.35s both;
}

.area-hero__map-card {
    --area-map-x: 0%;
    position: absolute;
    right: clamp(22px, 5.6vw, 92px);
    bottom: clamp(-220px, -13vw, -118px);
    z-index: 4;
    width: min(560px, 42vw);
    margin: 0;
    padding: clamp(16px, 2.4vw, 28px);
    border: 0;
    border-radius: 26px;
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    opacity: 0;
    transform: translateX(var(--area-map-x)) translateY(38px) scale(0.9);
    transform-origin: 50% 78%;
    filter: blur(7px);
    animation: area-hero-map-pop 1150ms cubic-bezier(0.18, 0.9, 0.24, 1) 1.6s both;
    will-change: opacity, transform, filter;
}

@keyframes area-hero-map-pop {
    0% {
        opacity: 0;
        transform: translateX(var(--area-map-x)) translateY(38px) scale(0.9);
        filter: blur(7px);
    }
    55% {
        opacity: 1;
        filter: blur(0);
    }
    72% {
        transform: translateX(var(--area-map-x)) translateY(-9px) scale(1.015);
    }
    100% {
        opacity: 1;
        transform: translateX(var(--area-map-x)) translateY(0) scale(1);
        filter: blur(0);
    }
}

.area-hero__map-card .map3d__scene {
    animation-duration: 8.5s;
}

.area-hero__map-card .map3d__img {
    filter: drop-shadow(0 16px 22px rgba(33, 76, 116, 0.22));
}

@keyframes area-hero-badge {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.area-hero__badge strong {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #1c4f9e;
}

.area-hero__badge span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #51606e;
}

/* content under the photo */
.area-hero__content {
    width: min(1140px, calc(100% - 80px));
    margin: clamp(84px, 9vw, 132px) auto 0;
}

.area-hero__catch {
    margin: 0 0 20px;
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.1em;
    color: #16202c;
}

.area-hero__text {
    max-width: 760px;
    margin: 0 0 26px;
    font-size: 14.5px;
    line-height: 2.05;
    letter-spacing: 0.05em;
    color: #44586b;
    text-align: justify;
}

.area-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.area-hero__chips li {
    padding: 8px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(70, 110, 150, 0.18);
    box-shadow: 0 4px 12px -8px rgba(18, 32, 47, 0.3);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #2c3e4e;
}

.area-hero__chips li.is-main {
    background: linear-gradient(135deg, #2e6fd8, #1c4f9e);
    border-color: transparent;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 8px 18px -8px rgba(28, 79, 158, 0.6);
}

/* strengths */
.area-strength {
    padding: 80px 0 96px;
    font-family: "Zen Kaku Gothic New", var(--font);
}

.area-strength__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: min(1140px, calc(100% - 80px));
    margin: 0 auto;
}

.area-strength__card {
    padding: 34px 30px 30px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(33, 56, 82, 0.08);
    box-shadow: 0 16px 36px -22px rgba(18, 32, 47, 0.35);
    transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.35s ease;
}

.area-strength__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 46px -24px rgba(18, 32, 47, 0.5);
}

.area-strength__icon {
    display: inline-grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #eaf2f9;
    color: #2d6e9e;
}

.area-strength__icon svg {
    width: 26px;
    height: 26px;
}

.area-strength__card h3 {
    margin: 0 0 12px;
    font-size: 16.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #16202c;
}

.area-strength__card p {
    margin: 0;
    font-size: 13px;
    line-height: 2;
    letter-spacing: 0.04em;
    color: #51606e;
    text-align: justify;
}

/* SEO block heading inside pref sections */
.area-pref__seo h3 {
    margin: 0 0 14px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.07em;
    color: #16202c;
}

@media (max-width: 1023px) {
    .area-strength__grid {
        grid-template-columns: none;
        gap: 16px;
        width: min(640px, calc(100% - 64px));
    }
}

@media (max-width: 767px) {
    .area-hero {
        padding: 70px 0 30px;
    }
    .area-hero__head {
        width: auto;
        margin-bottom: 24px;
        padding: 0 7.5%;
    }
    .area-hero__photo {
        width: calc(100vw - 32px);
        max-width: calc(100vw - 32px);
        height: clamp(420px, 112vw, 560px);
    }
    .area-hero__badge {
        left: 16px;
        bottom: auto;
        top: 20px;
        padding: 10px 16px;
    }
    .area-hero__map-card {
        --area-map-x: 0%;
        right: -6%;
        bottom: -74px;
        width: min(115%, 520px);
        padding: 16px 12px 20px;
        border-radius: 20px;
    }
    .area-hero__content {
        width: auto;
        margin-top: 84px;
        padding: 0 7.5%;
    }
    .area-hero__text {
        font-size: 13.5px;
    }
    .area-strength {
        padding: 56px 0 64px;
    }
    .area-strength__grid {
        width: auto;
        margin: 0 5%;
    }
    .area-strength__card {
        padding: 26px 22px 24px;
    }
}

/* Area strength: bright local-service feature section */
.area-strength {
    position: relative;
    overflow: hidden;
    padding: 96px 0 112px;
    background: #eef6fb;
    isolation: isolate;
}

.area-strength__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(242, 248, 252, 0.9) 35%, rgba(242, 248, 252, 0.96) 100%),
        url("../img/about-film-finished.webp?v=202606191807") left center / cover no-repeat;
}

.area-strength__bg::after {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.34);
    content: "";
}

.area-strength__head {
    position: relative;
    z-index: 2;
    width: min(1000px, calc(100% - 80px));
    margin: 0 auto 52px;
    text-align: center;
}

.area-strength__head .section-kicker {
    color: #23456a;
    font-family: "Times New Roman", "Yu Mincho", "YuMincho", serif;
    font-size: 16px;
    letter-spacing: 0.16em;
}

.area-strength__head .section-kicker::after {
    width: 78px;
    height: 2px;
    margin-top: 20px;
    background: #2d6e9e;
}

.area-strength__head .section-title {
    margin-top: 34px;
    color: #102137;
    font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", "Noto Serif JP", serif;
    font-size: clamp(38px, 4vw, 62px);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-align: center;
}

.area-strength__lead {
    margin: 32px auto 0;
    color: #34485d;
    font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", "Noto Serif JP", serif;
    font-size: clamp(16px, 1.35vw, 20px);
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.08em;
}

.area-strength__badge {
    position: absolute;
    top: 190px;
    right: clamp(42px, 7vw, 140px);
    z-index: 2;
    display: grid;
    place-items: center;
    width: 160px;
    height: 160px;
    border: 1px solid rgba(180, 142, 71, 0.54);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.34);
    color: #b58a39;
    font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", serif;
    text-align: center;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.area-strength__badge span,
.area-strength__badge em {
    display: block;
    font-size: 15px;
    font-style: normal;
    letter-spacing: 0.08em;
}

.area-strength__badge strong {
    display: block;
    margin: 4px 0 2px;
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.02em;
}

.area-strength__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    width: min(1180px, calc(100% - 96px));
    margin: 0 auto;
}

.area-strength__card {
    position: relative;
    min-height: 430px;
    padding: 34px 34px 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.84);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow:
        0 24px 50px rgba(45, 79, 110, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.area-strength__icon {
    width: 72px;
    height: 72px;
    margin: 0 0 30px;
    background: #edf3f8;
    color: #143b68;
}

.area-strength__icon svg {
    width: 31px;
    height: 31px;
}

.area-strength__num {
    position: absolute;
    top: 48px;
    right: 34px;
    color: rgba(99, 126, 155, 0.12);
    font-family: "Times New Roman", "Yu Mincho", serif;
    font-size: 58px;
    font-style: italic;
    line-height: 1;
    letter-spacing: 0.08em;
}

.area-strength__card h3 {
    position: relative;
    margin: 0 0 24px;
    color: #102137;
    font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", "Noto Serif JP", serif;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.area-strength__card h3::after {
    display: block;
    width: 46px;
    height: 2px;
    margin-top: 20px;
    background: #2d6e9e;
    content: "";
}

.area-strength__card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #3f5265;
    font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", "Noto Serif JP", serif;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.95;
    letter-spacing: 0.06em;
    text-align: left;
}

.area-strength__illust {
    position: absolute;
    right: 26px;
    bottom: 24px;
    left: 26px;
    z-index: 1;
    width: calc(100% - 52px);
    height: 116px;
    object-fit: contain;
    object-position: center bottom;
    opacity: 0.78;
}

.area-strength__quality {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 56px auto 1fr 1fr;
    align-items: center;
    gap: 28px;
    width: min(1180px, calc(100% - 96px));
    margin: 36px auto 0;
    padding: 24px 36px;
    border: 1px solid rgba(168, 202, 235, 0.55);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.64);
    box-shadow: 0 16px 36px rgba(45, 79, 110, 0.08);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.area-strength__quality-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    color: #2d6e9e;
}

.area-strength__quality-icon svg {
    width: 38px;
    height: 38px;
}

.area-strength__quality strong {
    color: #2d5f8a;
    font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", serif;
    font-size: 21px;
    letter-spacing: 0.08em;
}

.area-strength__quality p {
    margin: 0;
    color: #3e5266;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: 0.04em;
}

.area-strength__quality p + p {
    padding-left: 28px;
    border-left: 1px solid rgba(102, 120, 137, 0.25);
}

@media (max-width: 1023px) {
    .area-strength {
        padding: 78px 0 86px;
    }
    .area-strength__badge {
        position: static;
        width: 132px;
        height: 132px;
        margin: -22px auto 34px;
    }
    .area-strength__badge strong {
        font-size: 39px;
    }
    .area-strength__grid {
        grid-template-columns: none;
        width: min(620px, calc(100% - 56px));
    }
    .area-strength__card {
        min-height: 350px;
    }
    .area-strength__quality {
        grid-template-columns: 48px 1fr;
        width: min(620px, calc(100% - 56px));
        gap: 12px 20px;
        padding: 22px 24px;
    }
    .area-strength__quality p {
        grid-column: 2;
    }
    .area-strength__quality p + p {
        padding-left: 0;
        border-left: 0;
    }
}

@media (max-width: 767px) {
    .area-strength {
        padding: 62px 0 70px;
    }
    .area-strength__bg {
        background:
            linear-gradient(180deg, rgba(244, 249, 252, 0.9), rgba(244, 249, 252, 0.98)),
            url("../img/about-film-finished.webp?v=202606191807") left top / auto 100% no-repeat;
    }
    .area-strength__head {
        width: auto;
        margin: 0 7% 34px;
    }
    .area-strength__head .section-title {
        margin-top: 26px;
        font-size: 31px;
        line-height: 1.45;
    }
    .area-strength__lead {
        margin-top: 20px;
        font-size: 14px;
        line-height: 2;
    }
    .area-strength__grid {
        width: auto;
        margin: 0 5%;
        gap: 18px;
    }
    .area-strength__card {
        min-height: 336px;
        padding: 28px 24px 24px;
    }
    .area-strength__icon {
        width: 62px;
        height: 62px;
        margin-bottom: 24px;
    }
    .area-strength__num {
        top: 38px;
        right: 26px;
        font-size: 48px;
    }
    .area-strength__card h3 {
        font-size: 21px;
    }
    .area-strength__card p {
        font-size: 13.5px;
    }
    .area-strength__illust {
        bottom: auto;
        top: 16px;
    }
    .area-strength__quality {
        width: auto;
        margin: 26px 5% 0;
        padding: 20px;
        grid-template-columns: 56px 1fr;
        row-gap: 4px;
    }
    .area-strength__quality strong {
        font-size: 18px;
    }
    .area-strength__quality p {
        grid-column: 1 / -1;
    }
    .area-strength__quality p + p {
        padding-left: 0;
        border-left: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .area-hero__breadcrumb,
    .area-hero__kicker,
    .area-hero h1,
    .area-hero__photo,
    .area-hero__photo img,
    .area-hero__badge,
    .area-hero__map-card {
        animation: none;
        opacity: 1;
        filter: none;
        translate: none;
        clip-path: inset(0 0 0 0);
    }
    .area-hero__photo,
    .area-hero__photo img,
    .area-hero__badge {
        transform: none;
    }
    .area-hero__map-card {
        transform: translateX(var(--area-map-x)) translateY(0) scale(1);
    }
}

/* Area map: 3D interactive image map */

.area-map__fig--3d {
    padding: 44px 36px 52px;
}

.area-hero__photo .area-hero__map-card {
    padding: clamp(16px, 2.4vw, 28px);
    background: transparent;
    border: 0;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.area-hero__map-card img {
    border-radius: 0;
    animation: none;
}

.map3d {
    perspective: 1100px;
}

.map3d__scene {
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(var(--rx, 10deg)) rotateY(var(--ry, 0deg));
    will-change: transform;
    animation: map3d-float 7s ease-in-out infinite alternate;
}

.map3d.is-active .map3d__scene {
    animation: none;
}

@keyframes map3d-float {
    from { transform: rotateX(9deg) rotateY(-4deg); }
    to { transform: rotateX(13deg) rotateY(5deg); }
}

.map3d__img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    transform: translateZ(24px);
    filter: drop-shadow(0 18px 26px rgba(33, 76, 116, 0.28));
}

/* soft ground shadow under the floating map */
.map3d__shadow {
    position: absolute;
    inset: 16% 10% 2%;
    background: radial-gradient(closest-side, rgba(35, 70, 105, 0.30), transparent 72%);
    transform: translateZ(-50px) scale(0.96);
    filter: blur(16px);
}

/* prefecture labels */
.map3d__pref {
    position: absolute;
    top: var(--y);
    left: var(--x);
    z-index: 2;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: #7d8fa0;
    white-space: nowrap;
    transform: translate(-50%, -50%) translateZ(38px);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9), 0 0 10px rgba(255, 255, 255, 0.7);
    pointer-events: none;
}

.map3d__pref--main {
    color: #1c4f9e;
    font-size: 15px;
}

/* city pins */
.map3d__pin {
    position: absolute;
    top: var(--y);
    left: var(--x);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #14283f;
    white-space: nowrap;
    transform: translate(-7px, -50%) translateZ(56px);
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95),
        0 0 6px rgba(255, 255, 255, 0.95),
        0 0 12px rgba(255, 255, 255, 0.85);
    cursor: default;
    transition: transform 0.3s cubic-bezier(0.3, 1.4, 0.5, 1);
}

.map3d__pin:hover {
    transform: translate(-7px, -50%) translateZ(72px) scale(1.08);
}

.map3d__pin i {
    position: relative;
    display: inline-block;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #2e6fd8;
    box-shadow: 0 3px 8px rgba(13, 36, 64, 0.4);
    flex-shrink: 0;
}

.map3d__pin--sub {
    font-weight: 700;
    color: #33465a;
}

.map3d__pin--sub i {
    width: 9px;
    height: 9px;
    border-color: #aebfce;
}

.map3d__pin--base {
    font-size: 14px;
    color: #0e2440;
}

.map3d__pin--base i {
    width: 14px;
    height: 14px;
    background: #2e6fd8;
    border-color: #fff;
    box-shadow: 0 4px 10px rgba(13, 36, 64, 0.5), 0 0 0 4px rgba(46, 111, 216, 0.25);
}

.map3d__pin--base i::after {
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 2px solid rgba(46, 111, 216, 0.6);
    content: "";
    animation: mado-pulse 2.1s cubic-bezier(0.2, 0.55, 0.35, 1) infinite;
}

@media (max-width: 767px) {
    .area-map__fig--3d {
        padding: 26px 14px 34px;
    }
    .map3d__pref {
        font-size: 12px;
    }
    .map3d__pref--main {
        font-size: 13px;
    }
    .map3d__pin {
        font-size: 10.5px;
        gap: 4px;
    }
    .map3d__pin i {
        width: 9px;
        height: 9px;
        border-width: 2.5px;
    }
    .map3d__pin--base {
        font-size: 12px;
    }
    .map3d__pin--base i {
        width: 12px;
        height: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .map3d__scene {
        animation: none;
        transform: rotateX(10deg);
    }
    .map3d__pin--base i::after {
        animation: none;
        opacity: 0;
    }
}

/* Glass button (frosted glass / glassmorphism CTA) */

.glass-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 15px 44px;
    border-radius: 999px;
    isolation: isolate;
    overflow: hidden;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #143b68;
    text-decoration: none;
    border: 2px solid rgba(126, 184, 255, 0.72);
    background: radial-gradient(circle at 12% 50%, rgba(244, 250, 255, 0.96), rgba(255, 255, 255, 0.68) 22%, rgba(235, 245, 255, 0.72) 100%), rgba(255, 255, 255, 0.78);
    box-shadow:
        0 24px 58px rgba(48, 104, 171, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        inset 0 -1px 0 rgba(126, 184, 255, 0.18);
    transition:
        transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease,
        background 0.4s ease;
}

/* top specular highlight (glass shine) */
.glass-btn::before {
    position: absolute;
    inset: 1px 1px 45% 1px;
    z-index: -1;
    border-radius: 999px 999px 60% 60% / 999px 999px 100% 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.05));
    content: "";
    opacity: 0.9;
    pointer-events: none;
}

/* moving light streak swept across on hover */
.glass-btn::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.75) 48%, rgba(214, 235, 250, 0.4) 52%, transparent 70%);
    content: "";
    transform: translateX(-130%) skewX(-16deg);
    transition: transform 0.85s cubic-bezier(0.4, 0.1, 0.2, 1);
    pointer-events: none;
}

.glass-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(74, 152, 247, 0.86);
    background: radial-gradient(circle at 12% 50%, rgba(255, 255, 255, 1), rgba(249, 252, 255, 0.78) 24%, rgba(226, 241, 255, 0.82) 100%), rgba(255, 255, 255, 0.88);
    box-shadow:
        0 28px 66px rgba(48, 104, 171, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(126, 184, 255, 0.24);
}

.glass-btn:hover::after {
    transform: translateX(130%) skewX(-16deg);
}

.glass-btn:active {
    transform: translateY(-1px) scale(0.99);
}

.glass-btn:focus-visible {
    outline: 2px solid #2d6e9e;
    outline-offset: 4px;
}

.glass-btn__label {
    position: relative;
    color: #143b68;
}

.glass-btn:hover .glass-btn__label {
    color: #0e2d56;
}

.glass-btn__arrow {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.9), 0 3px 8px rgba(70, 100, 140, 0.2);
    font-family: "Roboto", var(--font);
    font-size: 16px;
    color: #2c4564;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.4s ease, color 0.4s ease;
}

.glass-btn:hover .glass-btn__arrow {
    transform: translateX(4px);
    background: linear-gradient(135deg, #2e6fd8, #1c4f9e);
    color: #fff;
}

@media (max-width: 767px) {
    .glass-btn {
        font-size: 15px;
        padding: 13px 24px;
        gap: 12px;
    }
    .glass-btn__arrow {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .glass-btn,
    .glass-btn::after,
    .glass-btn__arrow {
        transition: none;
    }
    .glass-btn:hover::after {
        transform: translateX(-130%) skewX(-16deg);
    }
}

/* Tablet-only line break (hidden on desktop & narrow phones) */
.tab-br {
    display: none;
}

@media (max-width: 1023px) {
    .tab-br {
        display: inline;
    }
}

/* ─── News Archive Page ─── */
.news-archive {
    padding: 72px 0 96px;
    background: #fff;
    font-family: "Zen Kaku Gothic New", var(--font);
}

.news-archive__inner {
    width: min(860px, calc(100% - 48px));
    margin: 0 auto;
}

.news-archive__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 44px;
}

.news-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 20px;
    border: 1.5px solid rgba(102, 120, 137, 0.28);
    border-radius: 999px;
    background: transparent;
    color: #667889;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
}

.news-filter:hover {
    border-color: #1767c8;
    color: #1767c8;
}

.news-filter.is-active {
    background: #1767c8;
    border-color: #1767c8;
    color: #fff;
}

.news-archive__list {
    border-top: 1px solid rgba(102, 120, 137, 0.22);
}

.news-archive__list:has(.news-archive__empty) {
    border-top: none;
}

.news-archive__list .news-item {
    grid-template-columns: 132px 104px 1fr;
}

.news-item.is-hidden {
    display: none;
}

.news-archive__empty {
    padding: 8px 0 56px;
    color: #667889;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 15px;
}

@media (max-width: 767px) {
    .news-archive {
        padding: 48px 0 72px;
    }
    .news-archive__inner {
        width: calc(100% - 30px);
    }
    .news-archive__filters {
        gap: 8px;
        margin-bottom: 30px;
    }
    .news-filter {
        height: 34px;
        padding: 0 14px;
        font-size: 12px;
    }
    .news-archive__list .news-item {
        grid-template-columns: auto auto 1fr;
    }
}

/* ─── News Detail Page ─── */
.news-detail {
    padding: 56px 0 96px;
    background: #fff;
    font-family: "Zen Kaku Gothic New", var(--font);
}

.news-detail__inner {
    width: min(760px, calc(100% - 48px));
    margin: 0 auto;
}

.news-detail__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 8px;
    margin-bottom: 28px;
    font-size: 12px;
    letter-spacing: 0.06em;
    color: #667889;
}

.news-detail__breadcrumb a {
    color: #667889;
    transition: color 200ms ease;
}

.news-detail__breadcrumb a:hover {
    color: #1767c8;
}

.news-detail__breadcrumb em {
    font-style: normal;
    color: #2a3a4a;
}

.news-detail__eyecatch {
    margin: 0 0 32px;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #eaf1f6;
}

.news-detail__eyecatch img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-detail__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.news-detail__meta time {
    color: #667889;
    font-family: "Roboto", var(--font);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.news-detail__title {
    margin: 0 0 40px;
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.06em;
    color: #14213d;
}

.news-detail__body {
    border-top: 1px solid rgba(102, 120, 137, 0.2);
    padding-top: 40px;
    color: #2a3a4a;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.04em;
}

.news-detail__body p {
    margin: 0 0 1.8em;
}

.news-detail__body h2 {
    margin: 2.4em 0 1em;
    font-size: 1.2em;
    font-weight: 700;
    color: #14213d;
    border-left: 3px solid #1767c8;
    padding-left: 14px;
}

.news-detail__body h3 {
    margin: 2em 0 0.8em;
    font-size: 1.05em;
    font-weight: 700;
    color: #14213d;
}

.news-detail__back {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(102, 120, 137, 0.2);
}

.news-detail__back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1767c8;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    transition: gap 200ms ease;
}

.news-detail__back-link:hover {
    gap: 12px;
}

.news-detail__back-link svg {
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .news-detail {
        padding: 36px 0 72px;
    }
    .news-detail__inner {
        width: calc(100% - 30px);
    }
    .news-detail__eyecatch {
        margin-bottom: 24px;
    }
    .news-detail__title {
        font-size: 22px;
        margin-bottom: 32px;
    }
    .news-detail__body {
        font-size: 15px;
    }
    .news-detail__back {
        margin-top: 48px;
    }
}

/* ─── Column Archive Page ─── */
.column-archive {
    padding: 72px 0 100px;
    background:
        radial-gradient(circle at 12% 20%, rgba(190, 211, 229, 0.22), transparent 38%),
        linear-gradient(180deg, #f4f9fc 0%, #ffffff 100%);
    font-family: "Zen Kaku Gothic New", var(--font);
}

.column-archive__inner {
    width: min(1140px, calc(100% - 48px));
    margin: 0 auto;
}

.column-archive__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 52px;
}

.column-archive__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 28px;
}

.column-archive__grid .column-card {
    flex: none;
    min-width: 0;
}

.column-archive__grid .column-card__link {
    background: #fff;
}

.column-card.is-hidden {
    display: none;
}

@media (max-width: 1023px) {
    .column-archive__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 20px;
    }
}

@media (max-width: 767px) {
    .column-archive {
        padding: 30px 0;
    }
    .column-archive__inner {
        width: calc(100% - 24px);
    }
    .column-archive__filters {
        gap: 8px;
        margin-bottom: 28px;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .column-archive__filters::-webkit-scrollbar {
        display: none;
    }
    .column-archive__filters .news-filter {
        flex-shrink: 0;
    }
    .column-archive__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 10px;
    }
    .column-archive__grid .column-card__image {
        aspect-ratio: 16 / 9;
    }
    .column-archive__grid .column-card__body {
        padding: 12px 14px 16px;
    }
    .column-archive__grid .column-card h3 {
        font-size: 13px;
        letter-spacing: 0.03em;
        line-height: 1.5;
    }
    .column-archive__grid .column-card__meta {
        font-size: 11px;
        gap: 6px;
        margin-bottom: 8px;
    }
    .column-archive__grid .column-card__body > p:last-child {
        display: none;
    }
}

/* ─── Column Detail Page ─── */
.column-detail {
    padding: 72px 0 96px;
    background:
        radial-gradient(circle at 80% 5%, rgba(190, 211, 229, 0.18), transparent 32%),
        #fff;
    font-family: "Zen Kaku Gothic New", var(--font);
}

.column-detail__inner {
    width: min(780px, calc(100% - 48px));
    margin: 0 auto;
}

.column-detail__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.column-detail__meta time {
    color: #667889;
    font-family: "Roboto", var(--font);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.column-detail__title {
    margin: 0 0 40px;
    font-size: clamp(22px, 2.6vw, 34px);
    font-weight: 700;
    line-height: 1.55;
    letter-spacing: 0.06em;
    color: #14213d;
}

.column-detail__eyecatch {
    margin: 0 0 48px;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #eaf1f6;
}

.column-detail__eyecatch img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.column-detail__body {
    color: #2a3a4a;
    font-size: 16px;
    line-height: 2.05;
    letter-spacing: 0.04em;
}

.column-detail__body p {
    margin: 0 0 1.8em;
}

.column-detail__body h2 {
    margin: 2.6em 0 1em;
    padding: 0.8em 1.1em;
    background: linear-gradient(135deg, rgba(23, 103, 200, 0.06), rgba(23, 103, 200, 0.02));
    border-left: 3.5px solid #1767c8;
    border-radius: 0 6px 6px 0;
    font-size: 1.15em;
    font-weight: 700;
    color: #14213d;
    letter-spacing: 0.06em;
    line-height: 1.55;
}

.column-detail__body h3 {
    margin: 2.2em 0 0.8em;
    font-size: 1.05em;
    font-weight: 700;
    color: #14213d;
    letter-spacing: 0.06em;
}

.column-detail__back {
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(102, 120, 137, 0.2);
}

.column-detail__back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1767c8;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    transition: gap 200ms ease;
}

.column-detail__back-link:hover {
    gap: 12px;
}

@media (max-width: 767px) {
    .column-detail {
        padding: 48px 0 72px;
    }
    .column-detail__inner {
        width: calc(100% - 30px);
    }
    .column-detail__title {
        font-size: 22px;
        margin-bottom: 28px;
    }
    .column-detail__eyecatch {
        margin-bottom: 36px;
    }
    .column-detail__body {
        font-size: 15px;
    }
    .column-detail__body h2 {
        font-size: 1.08em;
        padding: 0.7em 1em;
    }
}

/* ─── Article Single Detail ─── */
.article-single {
    background:
        linear-gradient(90deg, rgba(102, 120, 137, 0.06) 1px, transparent 1px) 0 0 / 84px 84px,
        linear-gradient(0deg, rgba(102, 120, 137, 0.045) 1px, transparent 1px) 0 0 / 84px 84px,
        #f6f8f6;
    font-family: "Zen Kaku Gothic New", var(--font);
    color: #172432;
}

/* スマホでは方眼グリッド線が密集して見えるため、下地の単色のみにする */
@media (max-width: 767px) {
    .article-single {
        background: #f6f8f6;
    }
}

.single-article {
    padding: clamp(118px, 12vw, 174px) 0 clamp(94px, 10vw, 150px);
}

.single-article__inner {
    width: min(1180px, calc(100% - 72px));
    margin: 0 auto;
}

.single-article__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    align-items: center;
    margin-bottom: clamp(46px, 6vw, 82px);
    color: #718090;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.single-article__breadcrumb a {
    color: inherit;
}

.single-article__breadcrumb em {
    max-width: 52ch;
    overflow: hidden;
    color: #1b2b3a;
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.single-article__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    column-gap: clamp(32px, 5vw, 74px);
    row-gap: clamp(18px, 2.2vw, 28px);
    align-items: end;
    margin-bottom: clamp(28px, 4vw, 52px);
}

.single-article__label {
    grid-column: 1 / -1;
    margin: 0;
    color: #667889;
    font-family: "Roboto", var(--font);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}

.single-article__header h1 {
    margin: 0;
    color: #102033;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.28;
    letter-spacing: 0.05em;
}

.single-article__lead {
    margin: 0;
    color: #4e6071;
    font-size: 15px;
    font-weight: 700;
    line-height: 2.1;
    letter-spacing: 0.06em;
}

.single-article__visual-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    gap: clamp(24px, 4vw, 56px);
    align-items: stretch;
    margin-bottom: clamp(36px, 4vw, 56px);
}

.single-article__visual-grid:not(:has(.single-article__main-image)) {
    grid-template-columns: 1fr;
}

.single-article__main-image {
    overflow: hidden;
    margin: 0;
    border-radius: 2px;
    aspect-ratio: 16 / 9;
    background: #dfe8ed;
    box-shadow: 0 38px 100px -80px rgba(18, 36, 52, 0.72);
}

.single-article__main-image img,
.single-article__inline-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-article__side-meta {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px;
    min-height: 100%;
    padding: clamp(24px, 3vw, 34px);
    border-top: 1px solid rgba(102, 120, 137, 0.28);
    border-bottom: 1px solid rgba(102, 120, 137, 0.28);
}

.single-article__archive {
    margin: 0;
    color: #667889;
    font-family: "Times New Roman", "Yu Mincho", "YuMincho", serif;
    font-size: 18px;
    font-style: italic;
    letter-spacing: 0.05em;
}

.single-article__archive span {
    display: block;
    margin-top: 10px;
    color: #102033;
    font-size: clamp(56px, 7vw, 96px);
    font-style: normal;
    line-height: 0.85;
}

.single-article__side-meta dl {
    display: grid;
    gap: 18px;
    margin: 0;
}

.single-article__side-meta dl div {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 18px;
    align-items: baseline;
}

.single-article__side-meta dt {
    color: #8a98a6;
    font-family: "Roboto", var(--font);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.single-article__side-meta dd {
    margin: 0;
    color: #1f2f3e;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.7;
}

.single-article__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.single-article__tags li {
    padding: 6px 12px;
    border: 1px solid rgba(102, 120, 137, 0.24);
    border-radius: 999px;
    color: #667889;
    background: rgba(255, 255, 255, 0.54);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.single-article__content-grid {
    display: grid;
    grid-template-columns: minmax(160px, 200px) minmax(0, 760px);
    gap: clamp(20px, 3vw, 48px);
    align-items: start;
}

.single-article__content-grid--full {
    display: block;
}

.single-article__body-col {
    min-width: 0;
}

.single-article__index {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 18px;
    padding-top: 8px;
    color: #667889;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.single-article__index span {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
    color: #102033;
    font-family: "Times New Roman", "Yu Mincho", "YuMincho", serif;
    font-size: 28px;
    font-style: italic;
    font-weight: 400;
}

/* 「Index」の横に添える日本語ラベル（モダンなエディトリアル調） */
.single-article__index span i {
    align-self: center;
    transform: translateY(3px);
    padding-left: 12px;
    border-left: 1px solid rgba(102, 120, 137, 0.35);
    color: #7c8fa1;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.28em;
}

.single-article__index a {
    color: #667889;
}

.single-article__body {
    color: #26394b;
    font-size: 16px;
    font-weight: 700;
    line-height: 2.15;
    letter-spacing: 0.05em;
}

.single-article__body p {
    margin: 0 0 2em;
}

.single-article__body a {
    color: #1767c8;
    border-bottom: 1.5px solid rgba(23, 103, 200, 0.35);
    transition: color 180ms ease, border-color 180ms ease;
}

.single-article__body a:hover {
    color: #0f4fa0;
    border-bottom-color: #0f4fa0;
}

.single-article__body h2 {
    margin: 3.2em 0 1.1em;
    color: #102033;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: 0.08em;
}

.single-article__body h2::before {
    display: block;
    width: 58px;
    height: 1px;
    margin-bottom: 22px;
    background: #667889;
    content: "";
}

.single-article__body h3 {
    margin: 2.4em 0 0.8em;
    color: #102033;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.6;
    letter-spacing: 0.08em;
}

.single-article__inline-image {
    overflow: hidden;
    margin: clamp(36px, 5vw, 58px) 0;
    border-radius: 2px;
    aspect-ratio: 16 / 9;
    background: #dfe8ed;
}

.single-article__author {
    width: 100%;
    margin: clamp(52px, 7vw, 84px) 0 0;
    padding-top: clamp(32px, 4vw, 46px);
    border-top: 1px solid rgba(102, 120, 137, 0.18);
}

.single-article__author-kicker {
    margin: 0 0 10px;
    color: #667889;
    font-family: "Roboto", var(--font);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.28em;
}

.single-article__author h2 {
    margin: 0 0 22px;
    color: #102033;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: 0.08em;
}

.single-article__author-card {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: clamp(24px, 3vw, 32px);
    border: 1px solid rgba(102, 120, 137, 0.18);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(239, 247, 252, 0.62)),
        rgba(255, 255, 255, 0.76);
    box-shadow: 0 30px 80px -70px rgba(16, 32, 51, 0.55);
}

.single-article__author-logo {
    display: grid;
    place-items: center;
    width: 96px;
    height: 96px;
    border: 1px solid rgba(102, 120, 137, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.82);
}

.single-article__author-logo img {
    width: 72px;
    height: auto;
    filter: drop-shadow(0 8px 18px rgba(16, 32, 51, 0.12));
}

.single-article__author-name {
    margin: 0;
    color: #102033;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.single-article__author-role {
    margin: 8px 0 0;
    color: #667889;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.single-article__author-body p:last-child {
    margin: 14px 0 0;
    color: #405267;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.9;
    letter-spacing: 0.05em;
}

.single-article__pager {
    display: flex;
    justify-content: center;
    margin-top: clamp(52px, 7vw, 88px);
    padding-top: 42px;
    border-top: 1px solid rgba(102, 120, 137, 0.18);
}

.single-article__pager a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    min-height: 54px;
    padding: 0 28px;
    border: 1px solid rgba(102, 120, 137, 0.28);
    border-radius: 999px;
    color: #102033;
    background: rgba(255, 255, 255, 0.64);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.article-single__contact {
    padding: 0 0 clamp(88px, 10vw, 140px);
}

@media (max-width: 1023px) {
    .single-article {
        padding-top: 104px;
    }

    .single-article__header,
    .single-article__visual-grid,
    .single-article__content-grid {
        grid-template-columns: 1fr;
    }

    .single-article__index {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 10px 18px;
        padding: 4px 0 18px;
    }

    .single-article__index span {
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 767px) {
    .single-article {
        padding: 88px 0 88px;
    }

    .single-article__inner {
        width: calc(100% - 30px);
    }

    .single-article__breadcrumb {
        margin-bottom: 36px;
    }

    .single-article__breadcrumb em {
        max-width: 26ch;
    }

    .single-article__header {
        gap: 22px;
        margin-bottom: 26px;
    }

    .single-article__header h1 {
        font-size: 24px;
        line-height: 1.34;
    }

    .single-article__lead {
        font-size: 14px;
        line-height: 1.9;
    }

    .single-article__visual-grid {
        gap: 20px;
        margin-bottom: 36px;
    }

    .single-article__main-image {
        aspect-ratio: 16 / 9;
    }

    .single-article__side-meta {
        padding: 22px 0;
    }

    .single-article__archive span {
        font-size: 58px;
    }

    .single-article__content-grid {
        gap: 34px;
    }

    .single-article__body {
        font-size: 15px;
        line-height: 2;
    }

    .single-article__body h2 {
        font-size: 23px;
    }

    .single-article__author-card {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .single-article__author-logo {
        width: 84px;
        height: 84px;
    }

    .single-article__pager a {
        width: 100%;
    }
}

/* ─── Page Top Button ─── */
.page-top-btn {
    position: fixed;
    right: 22px;
    bottom: 36px;
    z-index: 8;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0;
    border: none;
    background: none;
    color: #1b1e29;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 400ms ease, transform 400ms ease, visibility 0s linear 400ms;
}

.page-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
}

.page-top-btn:hover {
    opacity: 0.6;
}

.page-top-btn__line {
    display: block;
    width: 1px;
    height: 52px;
    background: currentColor;
    transform-origin: top center;
    transition: height 300ms ease;
}

.page-top-btn:hover .page-top-btn__line {
    height: 64px;
}

.page-top-btn__text {
    display: block;
    writing-mode: vertical-rl;
    font-family: "Roboto", var(--font);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.22em;
    color: inherit;
}

@media (max-width: 767px) {
    .page-top-btn {
        right: 14px;
        bottom: 104px;
        z-index: 35;
        gap: 8px;
        color: #17304a;
    }

    .page-top-btn__line {
        height: 42px;
    }

    .page-top-btn__text {
        font-size: 9px;
        letter-spacing: 0.18em;
    }
}


/* ============================================================
   Privacy Policy page
   ============================================================ */

.policy-hero {
    padding: 160px 0 72px;
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.7), transparent 46%),
        linear-gradient(160deg, #daedf8 0%, #eef7fd 55%, #d2e9f5 100%);
    color: #1f2e3d;
    font-family: "Zen Kaku Gothic New", var(--font);
}

.policy-hero__inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

.policy-hero__kicker {
    display: block;
    margin: 0 0 16px;
    font-family: "Roboto", var(--font);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.32em;
    color: #738391;
}

.policy-hero__kicker::after {
    display: block;
    width: 28px;
    height: 1px;
    margin-top: 10px;
    background: #738391;
    content: "";
}

.policy-hero h1 {
    margin: 0 0 20px;
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.06em;
    color: #1a2c3e;
}

.policy-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Roboto", var(--font);
    font-size: 12px;
    color: #7899b4;
    letter-spacing: 0.02em;
}

.policy-hero__breadcrumb a {
    color: #7899b4;
    text-decoration: none;
    transition: color 0.2s;
}

.policy-hero__breadcrumb a:hover {
    color: #3a7ebc;
}

.policy-hero__breadcrumb span {
    color: #adc4d8;
}

.policy-hero__breadcrumb em {
    font-style: normal;
    color: #4a6e88;
}

/* content */

.not-found {
    max-width: 720px;
    margin: 0 auto;
    padding: 80px clamp(20px, 5vw, 60px) 120px;
    color: #1b2430;
    font-family: "Zen Kaku Gothic New", var(--font);
    text-align: center;
}

.not-found__lead {
    margin: 0 0 20px;
    font-size: clamp(18px, 2.4vw, 24px);
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #0d2237;
}

.not-found__text {
    margin: 0 0 48px;
    font-size: 15px;
    line-height: 2;
    color: #5a6a7a;
    letter-spacing: 0.06em;
}

.not-found__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.not-found__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    background: #0b263f;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: opacity 0.2s;
}

.not-found__btn svg {
    width: 18px;
    height: 18px;
}

.not-found__btn:hover {
    opacity: 0.8;
}

.not-found__btn--contact {
    background: transparent;
    border: 2px solid #0b263f;
    color: #0b263f;
}

.not-found__links {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 48px;
}

.not-found__links-title {
    margin: 0 0 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #8a9aaa;
    text-transform: uppercase;
}

.not-found__links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.not-found__links a {
    font-size: 14px;
    font-weight: 700;
    color: #0d2237;
    letter-spacing: 0.06em;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.not-found__links a:hover {
    color: #4a7fa5;
}

.policy {
    max-width: 860px;
    margin: 0 auto;
    padding: 80px clamp(20px, 5vw, 60px) 120px;
    color: #1b2430;
    font-family: "Zen Kaku Gothic New", var(--font);
}

.policy__lead {
    margin: 0 0 64px;
    font-size: 15px;
    line-height: 2;
    color: #3a4e60;
}

.policy__section {
    margin: 0 0 52px;
}

.policy__section:last-child {
    margin-bottom: 0;
}

.policy__section h2 {
    position: relative;
    margin: 0 0 20px;
    padding: 0 0 0 18px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: #1a2c3e;
}

.policy__section h2::before {
    position: absolute;
    top: 0.2em;
    left: 0;
    width: 3px;
    height: 1.1em;
    background: #5aabf0;
    border-radius: 2px;
    content: "";
}

.policy__section p,
.policy__section li {
    font-size: 14px;
    line-height: 2;
    color: #3a4e60;
}

.policy__section ul {
    margin: 0;
    padding: 0 0 0 1.4em;
}

.policy__section ul li {
    margin-bottom: 4px;
}

.policy__section address {
    margin: 0;
    font-style: normal;
    font-size: 14px;
    line-height: 2;
    color: #3a4e60;
}

.policy__updated {
    margin-top: 72px;
    padding-top: 28px;
    border-top: 1px solid rgba(100, 140, 170, 0.2);
    font-family: "Roboto", var(--font);
    font-size: 12px;
    color: #8fa8bc;
    letter-spacing: 0.06em;
    text-align: right;
}

@media (max-width: 767px) {
    .policy-hero {
        padding: 120px 0 56px;
    }

    .policy-hero h1 {
        font-size: 24px;
    }

    .policy {
        padding-top: 56px;
        padding-bottom: 88px;
    }

    .policy__lead {
        margin-bottom: 48px;
        font-size: 14px;
    }

    .policy__section h2 {
        font-size: 15px;
    }
}


/* ============================================================
   404 page
   ============================================================ */

.not-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100svh;
    padding: 120px clamp(24px, 6vw, 80px) 80px;
    text-align: center;
    background:
        radial-gradient(circle at 70% 20%, rgba(90, 171, 240, 0.10), transparent 52%),
        radial-gradient(circle at 20% 80%, rgba(90, 171, 240, 0.07), transparent 44%),
        #f4f7fa;
    font-family: "Zen Kaku Gothic New", var(--font);
}

.not-found__num {
    position: relative;
    display: inline-block;
    margin: 0 0 32px;
    font-family: "Roboto", var(--font);
    font-size: clamp(100px, 22vw, 180px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    color: transparent;
    -webkit-text-stroke: 2px rgba(90, 171, 240, 0.5);
    user-select: none;
}

.not-found__num::after {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(100px, 22vw, 180px);
    color: rgba(90, 171, 240, 0.08);
    -webkit-text-stroke: 0;
    content: "404";
    transform: translateY(6px);
    filter: blur(2px);
}

.not-found__title {
    margin: 0 0 16px;
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #1a2c3e;
}

.not-found__lead {
    margin: 0 0 48px;
    font-size: 14px;
    line-height: 2;
    color: #5a7080;
}

.not-found__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 56px;
}

.not-found__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid rgba(90, 171, 240, 0.4);
    border-radius: 100px;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 13px;
    font-weight: 500;
    color: #2a4a6a;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(6px);
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.not-found__link:hover {
    border-color: #5aabf0;
    background: rgba(90, 171, 240, 0.08);
    color: #1a6aaa;
}

.not-found__link--primary {
    background: #5aabf0;
    border-color: #5aabf0;
    color: #fff;
}

.not-found__link--primary:hover {
    background: #3a96e0;
    border-color: #3a96e0;
    color: #fff;
}

.not-found__home-arrow {
    font-size: 16px;
    line-height: 1;
}

@media (max-width: 767px) {
    .not-found__num {
        margin-bottom: 24px;
    }

    .not-found__links {
        flex-direction: column;
        align-items: center;
    }

    .not-found__link {
        width: min(280px, 100%);
        justify-content: center;
    }
}


/* ============================================================
   Sitemap page
   ============================================================ */

.sitemap {
    max-width: 860px;
    margin: 0 auto;
    padding: 80px clamp(20px, 5vw, 60px) 120px;
}

.sitemap__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 52px 40px;
}

.sitemap__group h2 {
    margin: 0 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(90, 171, 240, 0.35);
    font-family: "Roboto", var(--font);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.28em;
    color: #5aabf0;
}

.sitemap__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sitemap__list li {
    position: relative;
}

.sitemap__list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: 14px;
    font-weight: 400;
    color: #2a3d50;
    text-decoration: none;
    transition: color 0.18s, gap 0.18s;
}

.sitemap__list a::before {
    flex-shrink: 0;
    width: 16px;
    height: 1px;
    background: #b0cfe6;
    content: "";
    transition: width 0.18s, background 0.18s;
}

.sitemap__list a:hover {
    color: #3a7ebc;
    gap: 14px;
}

.sitemap__list a:hover::before {
    width: 20px;
    background: #5aabf0;
}

.sitemap__list--sub {
    margin-top: 4px;
    padding-left: 16px;
}

.sitemap__list--sub a {
    font-size: 13px;
    color: #4a6880;
    padding: 5px 0;
}

.sitemap__list--sub a::before {
    width: 10px;
    background: #c8dff0;
}

@media (max-width: 767px) {
    .sitemap {
        padding-top: 56px;
        padding-bottom: 88px;
    }

    .sitemap__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 24px;
    }
}

@media (max-width: 480px) {
    .sitemap__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* ─── Inner Page Banner ─── */
.page-banner {
    padding: 170px 0 60px;
    background: var(--base);
    color: var(--white);
    overflow: hidden;
    font-family: "Zen Kaku Gothic New", var(--font);
}

.page-banner__inner {
    width: min(1060px, calc(100% - 48px));
    margin: 0 auto;
}

.page-banner__kicker {
    display: block;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.4);
    font-family: "Roboto", var(--font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.page-banner h1 {
    margin: 0;
    font-size: clamp(30px, 3.2vw, 48px);
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.3;
}

@media (max-width: 767px) {
    .page-banner {
        padding: 136px 0 44px;
    }
    .page-banner__inner {
        width: calc(100% - 36px);
    }
    .page-banner h1 {
        font-size: 26px;
    }
}


/* Pagination */
.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 52px;
    font-family: "Roboto", var(--font);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.nav-links .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1.5px solid rgba(102, 120, 137, 0.28);
    border-radius: 6px;
    color: #667889;
    transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
}

.nav-links .page-numbers:hover {
    border-color: #1767c8;
    color: #1767c8;
}

.nav-links .page-numbers.current {
    background: #1767c8;
    border-color: #1767c8;
    color: #fff;
}

.nav-links .dots {
    border: none;
}


/* =========================================================
   モバイル パフォーマンス最適化レイヤー（2026-07 追加）
   低性能モバイルGPUで重い視覚効果を軽量化しFCP/LCPを改善。
   デスクトップ（768px以上）には一切影響しない。
   ========================================================= */
@media (max-width: 767px) {
    /* すりガラス効果を無効化（backdrop-filterは毎フレーム背景をぼかすため最も高負荷）。
       各要素は元々 rgba 背景を持つので単色半透明として問題なく表示される。 */
    *,
    *::before,
    *::after {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    /* 全画面ヒーローの無限クロスフェード/ズームを停止（ビューポート全体を常時再描画するため）。
       先頭スライドを静止表示にする。 */
    .hero-media,
    .hero-media img {
        animation: none !important;
    }
    .hero-media {
        opacity: 0 !important;
    }
    .hero-media.is-active {
        opacity: 1 !important;
    }
    .hero-media img {
        transform: none !important;
    }

    /* 半透明バーの視認性を確保（ぼかしが消えるぶん背景を少し濃く） */
    .mobile-floating-cta {
        background: rgba(255, 255, 255, 0.97) !important;
    }
}

/* 低速端末・省電力設定では装飾的な無限アニメと重いぼかしを停止 */
@media (prefers-reduced-motion: reduce) {
    .hero-media,
    .hero-media img {
        animation: none !important;
    }
    /* アニメ停止時も先頭スライドは必ず表示する（真っ黒防止） */
    .hero-media.is-active,
    .hero-media:first-child {
        opacity: 1 !important;
    }
}

/* =========================================================
   対応エリア個別ページ: LPスタイルKV（2026-07 リニューアル）
   参考: 訴求型LPのヒーロー構成（写真コラージュ＋中央白抜き＋
   ボックス見出し＋マーカー強調＋実績バッジ）
   ========================================================= */
.area-lp-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(132px, 13vw, 184px) 24px clamp(52px, 6vw, 80px);
    background: #eef4f9;
    font-family: "Zen Kaku Gothic New", var(--font);
    text-align: center;
}

/* 全面のぼかし背景: 4枚の丸写真が浮いて見えるよう、淡く・ぼかして敷く */
.area-lp-hero::before {
    position: absolute;
    inset: -3%;
    z-index: 0;
    background:
        linear-gradient(rgba(240, 246, 251, 0.78), rgba(240, 246, 251, 0.78)),
        url("../img/glass-film-hero-01.webp") center / cover no-repeat;
    filter: blur(9px);
    content: "";
}

.area-lp-hero__bg { z-index: 0; }

.area-lp-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.area-lp-hero__tile {
    position: absolute;
    background-position: center;
    background-size: cover;
    opacity: 1;
}

/* 外側の角を起点に、中央へ向かってやわらかく溶けるマスク（カンプ再現） */
.area-lp-hero__tile--l1 { top: 0; left: 0; width: 37%; height: 70%;
    -webkit-mask-image: radial-gradient(120% 120% at 0% 0%, #000 46%, transparent 80%);
    mask-image: radial-gradient(120% 120% at 0% 0%, #000 46%, transparent 80%); }
.area-lp-hero__tile--l2 { bottom: 0; left: 0; width: 39%; height: 66%;
    -webkit-mask-image: radial-gradient(120% 120% at 0% 100%, #000 46%, transparent 80%);
    mask-image: radial-gradient(120% 120% at 0% 100%, #000 46%, transparent 80%); }
.area-lp-hero__tile--r1 { top: 0; right: 0; width: 41%; height: 66%;
    -webkit-mask-image: radial-gradient(120% 120% at 100% 0%, #000 46%, transparent 80%);
    mask-image: radial-gradient(120% 120% at 100% 0%, #000 46%, transparent 80%); }
.area-lp-hero__tile--r2 { right: 0; bottom: 0; width: 41%; height: 70%;
    -webkit-mask-image: radial-gradient(120% 120% at 100% 100%, #000 46%, transparent 80%);
    mask-image: radial-gradient(120% 120% at 100% 100%, #000 46%, transparent 80%); }

.area-lp-hero__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 44% 62% at 50% 46%,
        rgba(255, 255, 255, 0.96) 0%,
        rgba(255, 255, 255, 0.7) 55%,
        rgba(255, 255, 255, 0) 80%);
}

/* ヒーロー下端の青いグラデーションライン */
.area-lp-hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    height: clamp(10px, 1.3vw, 16px);
    background: linear-gradient(90deg, #a7d4f3, #2f8bdd 45%, #1767c8);
    content: "";
}

.area-lp-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
}

/* 背景写真は最初から見せ、中央のコピーを順番に立ち上げる */
.area-lp-hero__line1,
.area-lp-hero__line2,
.area-lp-hero__line3,
.area-lp-hero__badges li,
.area-lp-hero__pill {
    opacity: 0;
    animation: area-lp-copy-in 680ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.area-lp-hero__line1 { animation-delay: 0.12s; }
.area-lp-hero__line2 { animation-delay: 0.28s; }
.area-lp-hero__line3 { animation-delay: 0.42s; }
.area-lp-hero__badges li:nth-child(1) { animation-delay: 0.62s; }
.area-lp-hero__badges li:nth-child(2) { animation-delay: 0.72s; }
.area-lp-hero__badges li:nth-child(3) { animation-delay: 0.82s; }
.area-lp-hero__pill { animation-delay: 0.98s; }

@keyframes area-lp-copy-in {
    0% { opacity: 0; transform: translateY(18px) scale(0.97); }
    65% { opacity: 1; transform: translateY(-2px) scale(1.01); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    .area-lp-hero__line1,
    .area-lp-hero__line2,
    .area-lp-hero__line3,
    .area-lp-hero__badges li,
    .area-lp-hero__pill {
        opacity: 1;
        animation: none;
    }
}

.area-lp-hero__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: clamp(22px, 3vw, 34px);
    color: #6d8093;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.area-lp-hero__breadcrumb a { color: #6d8093; }
.area-lp-hero__breadcrumb em { font-style: normal; color: #2a3c4f; }

.area-lp-hero__line1 {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 6px 10px;
    margin: 0 0 14px;
    color: #17263a;
    font-size: clamp(26px, 3.6vw, 46px);
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 0.04em;
}

.area-lp-hero__city {
    display: inline-block;
    padding: 2px 20px 6px;
    border-radius: 12px;
    background: linear-gradient(180deg, #2f8bdd, #1767c8);
    color: #fff;
    font-size: clamp(30px, 4.2vw, 54px);
    box-shadow: 0 8px 20px rgba(23, 103, 200, 0.28);
}

.area-lp-hero__line2 {
    position: relative;
    display: inline-block;
    margin: 0 0 4px;
    color: #17263a;
    font-size: clamp(19px, 2.6vw, 31px);
    font-weight: 900;
    letter-spacing: 0.06em;
}

.area-lp-hero__line2::before,
.area-lp-hero__line2::after {
    position: absolute;
    top: 50%;
    width: 3px;
    height: 1.25em;
    border-radius: 2px;
    background: #17263a;
    content: "";
}

.area-lp-hero__line2::before { left: -1.1em; transform: translateY(-50%) rotate(-24deg); }
.area-lp-hero__line2::after  { right: -1.1em; transform: translateY(-50%) rotate(24deg); }

.area-lp-hero__line3 {
    margin: 0 0 22px;
}

.area-lp-hero__line3 em {
    position: relative;
    display: inline-block;
    padding: 0 6px;
    color: #1767c8;
    font-size: clamp(40px, 6.4vw, 78px);
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1.25;
}

/* 黄色いマーカー: メインコピーに続いて左から伸びる */
.area-lp-hero__line3 em::after {
    position: absolute;
    right: 0;
    bottom: 0.04em;
    left: 0;
    z-index: -1;
    height: 0.42em;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 222, 120, 0) 0%, rgba(255, 226, 130, 0.9) 55%, #ffd76a 100%);
    box-shadow: 0 6px 18px rgba(255, 205, 80, 0.4);
    transform: scaleX(0);
    transform-origin: left center;
    animation: area-lp-underline 800ms cubic-bezier(0.22, 0.61, 0.36, 1) 0.82s forwards;
    content: "";
}

@keyframes area-lp-underline {
    0%   { transform: scaleX(0); }
    55%  { transform: scaleX(1.12); }
    75%  { transform: scaleX(0.94); }
    88%  { transform: scaleX(1.04); }
    100% { transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
    .area-lp-hero__line3 em::after {
        transform: scaleX(1);
        animation: none;
    }
}

.area-lp-hero__pill {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: clamp(32px, 4vw, 52px) 0 14px;
    padding: clamp(13px, 1.8vw, 18px) clamp(28px, 4vw, 52px);
    border-radius: 999px;
    background: linear-gradient(90deg, #0d3a8a 0%, #1767c8 50%, #3fa0e8 100%);
    color: #fff;
    font-size: clamp(14px, 1.7vw, 19px);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(23, 103, 200, 0.4);
    transition: opacity 0.2s, box-shadow 0.2s;
    isolation: isolate;
}

.area-lp-hero__pill::before,
.area-lp-hero__pill::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    border: 3px solid rgba(47, 145, 225, 0.68);
    border-radius: inherit;
    pointer-events: none;
    content: "";
    box-shadow: 0 0 18px rgba(47, 145, 225, 0.28);
    animation: area-lp-pill-ripple 2.35s ease-out infinite;
}

.area-lp-hero__pill::after {
    animation-delay: 1.175s;
}

@keyframes area-lp-pill-ripple {
    0% {
        opacity: 0.68;
        transform: scale(1);
    }
    78%, 100% {
        opacity: 0;
        transform: scale(1.22, 1.62);
    }
}

.area-lp-hero__pill:hover {
    opacity: 0.88;
    box-shadow: 0 12px 30px rgba(23, 103, 200, 0.5);
}

@media (prefers-reduced-motion: reduce) {
    .area-lp-hero__pill::before,
    .area-lp-hero__pill::after {
        animation: none;
    }
}

.area-lp-hero__pill-arrow {
    font-size: 1.3em;
    line-height: 1;
    font-weight: 400;
}

.area-lp-hero__brand {
    margin: 0;
    color: #17263a;
    font-size: clamp(14px, 1.6vw, 18px);
    font-weight: 800;
    letter-spacing: 0.12em;
}

.area-lp-hero__brand span {
    display: block;
}

.area-lp-hero__brand b {
    display: block;
    margin-top: 2px;
    font-family: "Roboto", var(--font);
    font-size: clamp(22px, 2.6vw, 30px);
    letter-spacing: 0.08em;
    color: #1767c8;
}

.area-lp-hero__brand-logo {
    display: block;
    margin: 4px auto 0;
    width: clamp(80px, 10vw, 120px);
    height: auto;
}

.area-lp-hero__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(10px, 1.6vw, 20px);
    margin: clamp(20px, 3vw, 34px) 0 0;
    padding: 0;
    list-style: none;
}

.area-lp-hero__badges li {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.2vw, 14px);
    padding: clamp(12px, 1.8vw, 20px) clamp(14px, 2.2vw, 26px);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(23, 103, 200, 0.16);
}

.area-lp-hero__badge-icon {
    display: block;
    width: clamp(30px, 3.4vw, 44px);
    height: clamp(30px, 3.4vw, 44px);
    color: #1767c8;
}

.area-lp-hero__badge-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.area-lp-hero__badge-icon img {
    display: block;
    width: 34px;
    height: auto;
}

.area-lp-hero__badge-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.area-lp-hero__badge-text span {
    color: #43596d;
    font-size: clamp(10px, 1.1vw, 13px);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.area-lp-hero__badge-text b {
    color: #1767c8;
    font-size: clamp(17px, 2.1vw, 25px);
    font-weight: 900;
    letter-spacing: 0.06em;
}

/* 手書きの「お任せください！」: コピーの後にサインのように現れる */
.area-lp-hero__sign {
    position: absolute;
    top: -5.5em;
    right: clamp(-56px, -4vw, 6px);
    width: clamp(180px, 20vw, 252px);
    height: auto;
    transform: rotate(-6deg);
    transform-origin: center bottom;
    opacity: 0;
    animation: area-lp-sign-in 700ms cubic-bezier(0.22, 0.61, 0.36, 1) 1.12s forwards;
}

@keyframes area-lp-sign-in {
    0%   { opacity: 0; transform: rotate(-6deg) scale(0.8) translateY(8px); }
    60%  { opacity: 1; transform: rotate(-6deg) scale(1.06); }
    100% { opacity: 1; transform: rotate(-6deg) scale(1) translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .area-lp-hero__sign {
        opacity: 1;
        animation: none;
    }
}

@media (max-width: 767px) {
    .area-lp-hero {
        padding: 108px 18px 44px;
    }
    .area-lp-hero--hakusan::before {
        background: #eef4f9;
        filter: none;
    }
    .area-lp-hero--hakusan .area-lp-hero__bg {
        background-color: #dceaf2;
        background-image:
            url("../img/hakusan-hero-mobile-composite.webp?v=202607202201"),
            url("data:image/webp;base64,UklGRsABAABXRUJQVlA4ILQBAADQCwCdASowAEQAP2WUxVmzKSejrvbcAmAsiUAYHDggQPnWVXU6WzfSXRFcHh4fpaaC4otIrNv1XaodtNR9DtRhXBaJ8P+zh/3yHfpwYhyLOcB+ztfidspmp8uUekBwurnGrI+MdUiAAP7DdLYUPOZu+G0S0tEV5LfF98D+fWX2VWaeXDUEnAZmaHGfm1asnf7uXjlHdjQJKWi6dBAhpekt5HDlojNmbmbuVuEQ3jArofGgPOXOJzsjEb2dAGeXwbXISx6NZp463RmIRFgMTmx4oCDNN5qlnM4mhSjjIe/5vp9YMr67HDuXvzIpyqo3tnvRRTwF627XPicqTUfs9w3XdFiZ53LN3RPmMWj3NdMPAgtR+bN6oAXCiWfZVBcVw9PxH4kUmsJGljMk3swER2n67Ov/aQiqRAu6sUWCu0Ci6PQILraz2HWWp/TlamKlsOnevUutZnGz2YNHoBOfMA1Zau266moQtxDT8Z0dDqp0sroa/exi2fd7jr+Akn/xCm9R5h9Cb7uIGoFBhR7GRUdE9PTAp0mjPBB43Fh3IAVuUD/YhCAPyYkw4KiKSZUEMO0MhYAA=");
        background-position: center, center;
        background-size: cover, cover;
        background-repeat: no-repeat, no-repeat;
    }
    .area-lp-hero--hakusan .area-lp-hero__tile {
        display: none;
        background-image: none !important;
    }
    .area-lp-hero__tile--l1 { top: 0; left: 0; width: 62%; height: 52%; }
    .area-lp-hero__tile--l2 { bottom: 0; left: 0; width: 58%; height: 48%; }
    .area-lp-hero__tile--r1 { top: 0; right: 0; width: 62%; height: 52%; }
    .area-lp-hero__tile--r2 { right: 0; bottom: 0; width: 58%; height: 48%; }
    .area-lp-hero__glow {
        background: radial-gradient(ellipse 78% 56% at 50% 44%,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.65) 55%,
            rgba(255, 255, 255, 0) 82%);
    }
    .area-lp-hero__line1 { margin-bottom: 7px; }
    .area-lp-hero__line2::before { left: -0.9em; }
    .area-lp-hero__line2::after { right: -0.9em; }
    /* お任せください！を右上に浮かせる（レイアウトを押し下げない絶対配置） */
    .area-lp-hero__sign {
        top: -3.6em;
        right: -2px;
        width: 150px;
    }
    .area-lp-hero__badges { gap: 8px; }
    .area-lp-hero__badges li {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px 8px;
        gap: 6px;
        border-radius: 14px;
        width: 100px;
        height: 100px;
        text-align: center;
        box-sizing: border-box;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18), 0 2px 6px rgba(0, 0, 0, 0.10);
    }
    .area-lp-hero__badge-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
    }
    .area-lp-hero__badge-text { align-items: center; }
    .area-lp-hero__badge-text span { font-size: 11px; }
    .area-lp-hero__badge-text b { font-size: 18px; }
}

/* ============================================
   エリアLP：お任せくださいセクション
   ============================================ */
.area-lp-worry {
    position: relative;
    overflow: hidden;
    padding: clamp(56px, 8vw, 110px) 24px;
    background: #e8eef6;
}

.area-lp-worry__deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.area-lp-worry__corner {
    position: absolute;
    display: block;
    overflow: hidden;
    width: clamp(190px, 24vw, 350px);
    aspect-ratio: 1;
    opacity: 0.82;
    isolation: isolate;
}

.area-lp-worry__corner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.area-lp-worry__corner::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(216, 235, 252, 0.18), rgba(255, 255, 255, 0.28));
    content: "";
}

.area-lp-worry__corner::after {
    position: absolute;
    z-index: 2;
    width: 82%;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    box-shadow:
        0 0 0 8px rgba(255, 255, 255, 0.28),
        0 0 0 16px rgba(255, 255, 255, 0.2);
    content: "";
}

.area-lp-worry__corner--tr {
    top: 0;
    right: 0;
    clip-path: ellipse(96% 88% at 100% 0);
}

.area-lp-worry__corner--tr::after {
    bottom: -38%;
    left: -36%;
}

.area-lp-worry__corner--bl {
    bottom: 0;
    left: 0;
    clip-path: ellipse(96% 88% at 0 100%);
}

.area-lp-worry__corner--bl::after {
    top: -38%;
    right: -36%;
}

.area-lp-worry__circle {
    position: absolute;
    border-radius: 50%;
}

.area-lp-worry__circle--navy {
    top: clamp(-90px, -7vw, -50px);
    right: clamp(-60px, -4vw, -20px);
    width: clamp(120px, 16vw, 220px);
    height: clamp(120px, 16vw, 220px);
    background: #1d4e9e;
    opacity: 0.9;
}

.area-lp-worry__circle--pale {
    top: 18%;
    left: clamp(-80px, -5vw, -30px);
    width: clamp(90px, 12vw, 170px);
    height: clamp(90px, 12vw, 170px);
    background: #ffffff;
    opacity: 0.55;
}

.area-lp-worry__circle--dot {
    bottom: -34px;
    right: 16%;
    width: clamp(46px, 6vw, 80px);
    height: clamp(46px, 6vw, 80px);
    background: #bcd2ea;
    opacity: 0.8;
}

.area-lp-worry__inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(30px, 4vw, 56px) clamp(20px, 3.5vw, 48px);
    display: grid;
    grid-template-columns: minmax(160px, 1fr) minmax(0, 1.9fr) minmax(160px, 1fr);
    align-items: center;
    gap: clamp(16px, 3vw, 40px);
    text-align: center;
    background: #fff;
    border-radius: clamp(18px, 2.6vw, 30px);
    box-shadow: 0 14px 36px rgba(23, 103, 200, 0.14);
}

.area-lp-worry__inner::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -22px;
    transform: translateX(-50%);
    border-style: solid;
    border-width: 24px 20px 0 20px;
    border-color: #fff transparent transparent transparent;
}

.area-lp-worry__lead {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 clamp(14px, 2vw, 22px);
}

.area-lp-worry__tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 6px;
    background: #1767c8;
    color: #fff;
    font-size: clamp(11px, 1.2vw, 14px);
    font-weight: 700;
    letter-spacing: 0.08em;
}

.area-lp-worry__who {
    margin: 0 0 clamp(8px, 1.2vw, 14px);
    color: #17263a;
    font-size: clamp(17px, 2.2vw, 26px);
    font-weight: 800;
    letter-spacing: 0.06em;
}

.area-lp-worry__who b {
    color: #1767c8;
    font-size: 1.4em;
    letter-spacing: 0.04em;
}

.area-lp-worry__title {
    margin: 0;
    color: #17263a;
    font-size: clamp(22px, 3.4vw, 40px);
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.6;
}

.area-lp-worry__title em {
    position: relative;
    font-style: normal;
    white-space: nowrap;
}

.area-lp-worry__title em b {
    font-family: "Roboto", var(--font);
    color: #1767c8;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.area-lp-worry__title em::after {
    content: "";
    position: absolute;
    left: 2%;
    right: 2%;
    bottom: -0.28em;
    height: 0.32em;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8 Q 16 2 30 7 T 60 7 T 90 7 T 118 6' fill='none' stroke='%236aa9e0' stroke-width='3.4' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

/* 左右カラム（写真＋イラスト／写真＋特徴） */
.area-lp-worry__col {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(14px, 2vw, 26px);
}

.area-lp-worry__photo {
    position: relative;
    margin: 0;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(23, 103, 200, 0.18);
}

.area-lp-worry__photo--left { --worry-rot: -4deg; transform: rotate(-4deg); }
.area-lp-worry__photo--right { --worry-rot: 3deg; transform: rotate(3deg); }

.area-lp-worry__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 実際の施工写真は、横長の枠内でも代表者の顔が入る位置で表示 */
.area-lp-worry__photo--left.area-lp-worry__photo--actual img {
    object-position: center 14%;
}

/* スクロールで「ポン」と飛び出す */
.area-lp-worry__photo {
    opacity: 0;
    transform: rotate(var(--worry-rot, 0deg)) scale(0.5);
    transform-origin: center center;
}

.area-lp-worry__inner.is-visible .area-lp-worry__photo {
    animation: area-lp-worry-pop 640ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.area-lp-worry__inner.is-visible .area-lp-worry__photo--left { animation-delay: 140ms; }
.area-lp-worry__inner.is-visible .area-lp-worry__photo--right { animation-delay: 340ms; }

@keyframes area-lp-worry-pop {
    0% {
        opacity: 0;
        transform: rotate(var(--worry-rot, 0deg)) scale(0.5);
    }
    55% {
        opacity: 1;
        transform: rotate(var(--worry-rot, 0deg)) scale(1.08);
    }
    75% {
        transform: rotate(var(--worry-rot, 0deg)) scale(0.97);
    }
    100% {
        opacity: 1;
        transform: rotate(var(--worry-rot, 0deg)) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .area-lp-worry__photo {
        opacity: 1;
        transform: rotate(var(--worry-rot, 0deg));
    }
    .area-lp-worry__inner.is-visible .area-lp-worry__photo {
        animation: none;
    }
}

.area-lp-worry__house {
    width: clamp(120px, 12vw, 180px);
    height: auto;
}

.area-lp-worry__window-watercolor {
    display: none;
    width: clamp(120px, 12vw, 170px);
    height: auto;
    margin-top: -10px;
    mix-blend-mode: multiply;
}

.area-lp-worry__features {
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.area-lp-worry__features li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 clamp(8px, 1vw, 14px);
    color: #17263a;
    font-size: clamp(10px, 0.9vw, 12px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.area-lp-worry__features li + li {
    border-left: 1px solid #c9d8ea;
}

.area-lp-worry__feature-icon {
    display: block;
    width: clamp(30px, 3vw, 40px);
    height: clamp(30px, 3vw, 40px);
    color: #1d4e9e;
}

.area-lp-worry__feature-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.area-lp-worry__accent {
    position: absolute;
    z-index: 3;
    display: block;
    width: clamp(70px, 7vw, 96px);
    pointer-events: none;
}

.area-lp-worry__accent img {
    display: block;
    width: 100%;
    height: auto;
}

.area-lp-worry__accent--rays {
    top: clamp(-62px, -4vw, -38px);
    left: clamp(-46px, -3vw, -24px);
    transform: rotate(-8deg);
}

.area-lp-worry__accent--sparkles {
    top: clamp(-48px, -3vw, -28px);
    right: clamp(-52px, -3vw, -26px);
    transform: rotate(4deg);
}

@media (max-width: 900px) {
    .area-lp-worry__inner {
        grid-template-columns: 1fr 1fr;
    }
    .area-lp-worry__main {
        grid-column: 1 / -1;
        order: -1;
    }
}

@media (max-width: 767px) {
    .area-lp-worry {
        padding: 46px 18px 60px;
    }
    .area-lp-worry__inner {
        padding: 28px 18px 34px;
        gap: 20px;
    }
    .area-lp-worry__lead {
        gap: 8px;
    }
    .area-lp-worry__title {
        line-height: 1.7;
    }
    .area-lp-worry__house {
        width: 110px;
    }
    .area-lp-worry__features li {
        font-size: 10px;
        padding: 0 6px;
    }
}

/* 対応エリア個別ページ: 添付カンプに合わせたスマートフォンレイアウト */
@media (max-width: 767px) {
    .area-lp-worry {
        padding: 72px 27px 82px;
        background: #eaf1fb;
    }

    .area-lp-worry__corner {
        width: clamp(118px, 42vw, 178px);
        opacity: 0.7;
    }

    .area-lp-worry__corner--tr {
        top: 0;
    }

    .area-lp-worry__corner--bl {
        bottom: 0;
    }

    .area-lp-worry__circle--navy {
        top: -35px;
        right: -43px;
        width: 112px;
        height: 112px;
        opacity: 0.68;
    }

    .area-lp-worry__circle--pale {
        top: -22px;
        left: -34px;
        width: 88px;
        height: 88px;
        opacity: 0.42;
    }

    .area-lp-worry__circle--dot {
        right: auto;
        bottom: -28px;
        left: -23px;
        width: 82px;
        height: 82px;
        background: #8cb9ec;
        opacity: 0.48;
    }

    .area-lp-worry__inner {
        display: grid;
        grid-template-columns: repeat(12, minmax(0, 1fr));
        grid-template-rows: auto auto auto;
        gap: 0;
        min-height: 490px;
        padding: 0 16px 28px;
        border-radius: 22px;
        box-shadow: 0 13px 30px rgba(49, 98, 157, 0.09);
    }

    .area-lp-worry__inner::after {
        bottom: -19px;
        border-width: 20px 17px 0;
    }

    .area-lp-worry__col {
        display: contents;
    }

    .area-lp-worry__photo--left {
        grid-column: 2 / 8;
        grid-row: 1;
        z-index: 2;
        align-self: start;
        width: calc(100% + 12px);
        margin: -31px 0 0 -5px;
        aspect-ratio: 1.12 / 1;
        border: 5px solid #fff;
        border-radius: 16px;
        --worry-rot: -7deg;
        transform: rotate(-7deg);
        box-shadow: 0 8px 20px rgba(30, 67, 111, 0.17);
    }

    .area-lp-worry__photo--left::before {
        content: none;
    }

    .area-lp-worry__photo--left img {
        object-position: 24% 45%;
    }

    .area-lp-worry__main {
        grid-column: 1 / -1;
        grid-row: 2;
        z-index: 1;
        margin-top: 7px;
    }

    .area-lp-worry__lead {
        gap: 7px;
        margin-bottom: 15px;
    }

    .area-lp-worry__tag {
        min-width: 72px;
        padding: 5px 10px 6px;
        border-radius: 6px;
        font-size: 12px;
        line-height: 1;
        letter-spacing: 0.04em;
        box-shadow: 0 3px 8px rgba(23, 103, 200, 0.16);
    }

    .area-lp-worry__who {
        margin-bottom: 0;
        font-size: 21px;
        line-height: 1.5;
        letter-spacing: 0.03em;
    }

    .area-lp-worry__who b {
        font-size: 1.45em;
    }

    .area-lp-worry__title {
        font-size: clamp(22px, 6.4vw, 27px);
        line-height: 1.5;
        letter-spacing: 0.02em;
    }

    .area-lp-worry__title em {
        display: inline-block;
        padding: 0 2px;
    }

    .area-lp-worry__title em b {
        font-size: 1.24em;
    }

    .area-lp-worry__title em::after {
        right: 0;
        bottom: -0.19em;
        left: 0;
        height: 0.28em;
    }

    .area-lp-worry__house {
        grid-column: 1 / 6;
        grid-row: 3;
        align-self: end;
        justify-self: center;
        width: 112px;
        margin: 32px -7px 4px 0;
    }

    .area-lp-worry__window-watercolor {
        display: block;
        grid-column: 1 / 6;
        grid-row: 3;
        align-self: end;
        justify-self: center;
        width: 112px;
        margin: 24px -4px -4px 0;
        opacity: 0;
        transform: scale(0.5);
        transform-origin: center center;
    }

    .area-lp-worry__inner.is-visible .area-lp-worry__window-watercolor {
        animation: area-lp-worry-pop 640ms cubic-bezier(0.22, 0.61, 0.36, 1) 240ms both;
    }

    @media (prefers-reduced-motion: reduce) {
        .area-lp-worry__window-watercolor {
            opacity: 1;
            transform: none;
        }

        .area-lp-worry__inner.is-visible .area-lp-worry__window-watercolor {
            animation: none;
        }
    }

    .area-lp-worry__photo--right {
        grid-column: 6 / 13;
        grid-row: 3;
        z-index: 1;
        align-self: end;
        width: calc(100% + 15px);
        margin: 38px 0 0 -4px;
        aspect-ratio: 1.5 / 1;
        border: 5px solid #fff;
        border-radius: 15px;
        --worry-rot: 4deg;
        transform: rotate(4deg);
        box-shadow: 0 8px 20px rgba(30, 67, 111, 0.14);
    }

    .area-lp-worry__photo--right img {
        object-position: center 40%;
    }

    .area-lp-worry__accent {
        position: static;
        display: block;
        z-index: 3;
        align-self: start;
        pointer-events: none;
    }

    .area-lp-worry__accent img {
        display: block;
        width: 100%;
        height: auto;
    }

    .area-lp-worry__accent--rays {
        grid-column: 1 / 4;
        grid-row: 1;
        justify-self: start;
        width: 58px;
        margin: -54px 0 0 -19px;
        transform: rotate(-28deg);
    }

    .area-lp-worry__accent--sparkles {
        grid-column: 10 / 13;
        grid-row: 3;
        justify-self: end;
        width: 66px;
        margin: 3px -24px 0 0;
        transform: rotate(4deg);
    }

    .area-lp-worry__features {
        grid-column: 1 / -1;
        grid-row: 4;
        width: 100%;
        margin-top: 29px;
    }

    .area-lp-worry__features li {
        flex: 1 1 0;
        gap: 7px;
        min-width: 0;
        padding: 0 7px;
        font-size: 10px;
        line-height: 1.55;
        letter-spacing: 0;
    }

    .area-lp-worry__features li + li {
        border-left: 1px dashed #72ace3;
    }

    .area-lp-worry__feature-icon {
        width: 39px;
        height: 39px;
        color: #1c4c91;
    }
}

/* ============================================
   エリアLP：地域固有コンテンツ（気候・住宅事情）
   ============================================ */
.area-local-note__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2.4vw, 28px);
    max-width: 1100px;
    margin: 0 auto;
}

.area-local-note__card {
    position: relative;
    padding: clamp(24px, 3vw, 36px) clamp(20px, 2.4vw, 28px) clamp(22px, 2.8vw, 32px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(23, 103, 200, 0.10);
    border-top: 3px solid #1767c8;
}

.area-local-note__num {
    margin: 0 0 6px;
    font-family: "Roboto", var(--font);
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 700;
    line-height: 1;
    color: rgba(23, 103, 200, 0.18);
    letter-spacing: 0.02em;
}

.area-local-note__card h3 {
    margin: 0 0 12px;
    color: #17263a;
    font-size: clamp(16px, 1.6vw, 19px);
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: 0.03em;
}

.area-local-note__text {
    margin: 0;
    color: #34465a;
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.02em;
}

/* 白山市：住宅統計から見る窓ガラスフィルムの必要性 */
.hakusan-reasons {
    width: min(1100px, calc(100% - 80px));
    max-width: 1100px;
    margin: 0 auto;
}

.hakusan-reasons__banner {
    position: relative;
    z-index: 2;
    padding: clamp(25px, 3.6vw, 42px) 24px;
    border-radius: 24px;
    background: linear-gradient(120deg, #1bc0d8 0%, #168bc9 50%, #1767c8 100%);
    color: #fff;
    text-align: center;
    box-shadow: 0 16px 38px rgba(23, 103, 200, 0.2);
}

.hakusan-reasons__banner::after {
    position: absolute;
    left: 50%;
    bottom: -18px;
    width: 36px;
    height: 36px;
    background: #168bc9;
    transform: translateX(-50%) rotate(45deg);
    content: "";
}

.hakusan-reasons__banner p {
    margin: 0 0 8px;
    font-family: "Roboto", var(--font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    opacity: 0.82;
}

.hakusan-reasons__banner h3 {
    margin: 0;
    font-size: clamp(23px, 3.2vw, 38px);
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: 0.07em;
}

.hakusan-reasons__facts {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(920px, calc(100% - 40px));
    margin: clamp(38px, 5vw, 56px) auto 0;
    overflow: hidden;
    border: 1px solid #d9eaf5;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(23, 103, 200, 0.14);
}

.hakusan-reasons__facts article {
    padding: clamp(20px, 2.8vw, 30px) 14px;
    text-align: center;
}

.hakusan-reasons__facts article + article {
    border-left: 1px solid #d9eaf5;
}

.hakusan-reasons__fact-label {
    margin: 0 0 7px;
    color: #58758d;
    font-size: 12px;
    font-weight: 700;
}

.hakusan-reasons__fact-value {
    margin: 0;
    color: #1767c8;
    font-family: "Roboto", var(--font);
    line-height: 1;
}

.hakusan-reasons__fact-value b {
    font-size: clamp(30px, 4.2vw, 48px);
    font-weight: 800;
}

.hakusan-reasons__fact-value span {
    margin-left: 4px;
    font-size: 14px;
    font-weight: 700;
}

.hakusan-reasons__facts article > p:last-child {
    margin: 9px 0 0;
    color: #7b8e9e;
    font-size: 11px;
    font-weight: 500;
}

.hakusan-reasons__comparison {
    max-width: 820px;
    margin: clamp(38px, 5vw, 56px) auto 0;
    padding: clamp(22px, 3.4vw, 34px);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(23, 103, 200, 0.1);
}

.hakusan-reasons__comparison-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.hakusan-reasons__comparison-head p {
    margin: 0;
    color: #17304a;
    font-size: clamp(16px, 2vw, 21px);
    font-weight: 800;
}

.hakusan-reasons__comparison-head span {
    color: #8091a0;
    font-size: 10px;
    font-weight: 500;
}

.hakusan-reasons__comparison-row {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr) 76px;
    align-items: center;
    gap: 12px;
}

.hakusan-reasons__comparison-row + .hakusan-reasons__comparison-row {
    margin-top: 14px;
}

.hakusan-reasons__comparison-row > span {
    color: #536b80;
    font-size: 12px;
    font-weight: 700;
}

.hakusan-reasons__comparison-row > i {
    display: block;
    height: 18px;
    overflow: hidden;
    border-radius: 999px;
    background: #e8f1f7;
}

.hakusan-reasons__comparison-row > i b {
    display: block;
    width: var(--compare-width);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #8fc9de 0%, #4a9dca 100%);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 900ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hakusan-reasons__comparison.is-animated .hakusan-reasons__comparison-row > i b {
    transform: scaleX(1);
}

.hakusan-reasons__comparison.is-animated .hakusan-reasons__comparison-row:nth-of-type(3) > i b {
    transition-delay: 140ms;
}

.hakusan-reasons__comparison.is-animated .hakusan-reasons__comparison-row:nth-of-type(4) > i b {
    transition-delay: 280ms;
}

@media (prefers-reduced-motion: reduce) {
    .hakusan-reasons__comparison-row > i b {
        transform: scaleX(1);
        transition: none;
    }
}

.hakusan-reasons__comparison-row.is-hakusan > i b {
    background: linear-gradient(90deg, #22c3bc 0%, #1767c8 100%);
}

.hakusan-reasons__comparison-row em {
    color: #536b80;
    font-family: "Roboto", var(--font);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    text-align: right;
}

.hakusan-reasons__comparison-row.is-hakusan > span,
.hakusan-reasons__comparison-row.is-hakusan em {
    color: #1767c8;
}

.hakusan-reasons__copy {
    max-width: 900px;
    margin: clamp(52px, 7vw, 78px) auto clamp(34px, 5vw, 54px);
    text-align: center;
}

.hakusan-reasons__copy h3 {
    margin: 0;
    color: #12639b;
    font-size: clamp(22px, 3vw, 35px);
    font-weight: 800;
    line-height: 1.65;
    letter-spacing: 0.06em;
}

.hakusan-reasons__copy h3 em {
    color: #178bc9;
    font-style: normal;
    background: linear-gradient(transparent 68%, rgba(32, 192, 199, 0.2) 68%);
}

.hakusan-reasons__copy p {
    margin: 22px auto 0;
    color: #34465a;
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 500;
    line-height: 2.1;
    letter-spacing: 0.035em;
    text-align: left;
}

.hakusan-reasons__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(15px, 2.2vw, 24px);
    width: 100%;
    max-width: none;
    margin-inline: auto;
}

.hakusan-reasons__cards article {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(23, 103, 200, 0.14);
}

.hakusan-reasons__card-head {
    position: relative;
    min-height: 210px;
    padding: clamp(24px, 3vw, 32px) clamp(18px, 2.4vw, 27px) 28px;
    background: linear-gradient(135deg, #1bbbd8 0%, #1689c9 52%, #1767c8 100%);
    color: #fff;
}

.hakusan-reasons__card-head::after {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: -13px;
    width: 26px;
    height: 26px;
    background: #1689c9;
    transform: translateX(-50%) rotate(45deg);
    content: "";
}

.hakusan-reasons__card-num {
    position: absolute;
    top: 15px;
    right: 17px;
    color: rgba(255, 255, 255, 0.2);
    font-family: "Roboto", var(--font);
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.hakusan-reasons__card-stat-label {
    position: relative;
    z-index: 1;
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.045em;
}

.hakusan-reasons__card-stat {
    position: relative;
    z-index: 1;
    margin: 0 0 14px;
    color: #fff;
    font-family: "Roboto", var(--font);
    line-height: 1;
}

.hakusan-reasons__card-stat b {
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 800;
}

.hakusan-reasons__card-stat span {
    margin-left: 4px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 700;
}

.hakusan-reasons__card-head h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #fff;
    font-size: clamp(16px, 1.7vw, 20px);
    font-weight: 800;
    line-height: 1.65;
    letter-spacing: 0.035em;
}

.hakusan-reasons__card-visual {
    position: relative;
    height: auto;
    aspect-ratio: 864 / 530;
    margin: 0;
    overflow: hidden;
    background: #eaf5fb;
}

.hakusan-reasons__card-visual img {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
    object-fit: initial;
}

.hakusan-reasons__card-visual--security img {
    transform: translateY(-37.35%);
}

.hakusan-reasons__card-visual--privacy img {
    transform: translateY(-2.2%);
}

.hakusan-reasons__card-visual--safety img {
    transform: translateY(-69.75%);
}

.hakusan-reasons__card-body {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: clamp(24px, 3vw, 31px) clamp(18px, 2.4vw, 27px) 26px;
}

.hakusan-reasons__card-body > p:not(.hakusan-reasons__card-tag) {
    margin: 0;
    color: #40556a;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.95;
}

.hakusan-reasons__card-tag {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    margin: 18px 0 0;
    padding: 0;
    color: #178bc9;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: color 180ms ease, transform 180ms ease;
}

.hakusan-reasons__card-tag::before {
    margin-right: 6px;
    content: "→";
}

.hakusan-reasons__card-tag:hover {
    color: #075fc8;
    transform: translateX(3px);
}

.film-lineup__item[id] {
    scroll-margin-top: 110px;
}

.hakusan-reasons__sources {
    margin: 22px 0 0;
    color: #718394;
    font-size: 10px;
    line-height: 1.8;
    text-align: right;
}

.hakusan-reasons__sources a {
    color: #1767c8;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 900px) {
    .hakusan-reasons {
        width: calc(100% - 48px);
    }

    .hakusan-reasons__cards {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 640px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width: 767px) {
    .hakusan-reasons {
        width: calc(100% - 36px);
    }

    .hakusan-reasons__cards {
        gap: 44px;
    }

    .hakusan-reasons__banner {
        padding: 23px 14px 25px;
        border-radius: 18px;
    }

    .hakusan-reasons__banner::after {
        bottom: -13px;
        width: 26px;
        height: 26px;
    }

    .hakusan-reasons__banner h3 {
        font-size: clamp(19px, 5.3vw, 22px);
        line-height: 1.65;
        letter-spacing: 0.035em;
    }

    .hakusan-reasons__facts {
        grid-template-columns: repeat(3, 1fr);
        width: calc(100% - 18px);
        margin-top: 32px;
        border-radius: 14px;
    }

    .hakusan-reasons__facts article {
        padding: 17px 4px;
    }

    /* スマホは3カラムなので区切りは縦線に戻す */
    .hakusan-reasons__facts article + article {
        border-top: 0;
        border-left: 1px solid #d9eaf5;
    }

    .hakusan-reasons__fact-label {
        min-height: 2.8em;
        padding: 0 3px;
        font-size: 10px;
        line-height: 1.4;
    }

    .hakusan-reasons__fact-value b {
        font-size: clamp(22px, 7vw, 28px);
    }

    .hakusan-reasons__facts article:nth-child(3) .hakusan-reasons__fact-value b {
        font-size: clamp(19px, 6vw, 24px);
    }

    .hakusan-reasons__fact-value span {
        display: inline-block;
        margin: 0 0 0 3px;
        font-size: 10px;
        vertical-align: baseline;
    }

    .hakusan-reasons__facts article > p:last-child {
        padding: 0 3px;
        font-size: 9px;
        line-height: 1.45;
    }

    .hakusan-reasons__comparison {
        margin-top: 30px;
        padding: 20px 13px;
    }

    .hakusan-reasons__comparison-head {
        display: block;
        margin-bottom: 20px;
    }

    .hakusan-reasons__comparison-head span {
        display: block;
        margin-top: 5px;
    }

    .hakusan-reasons__comparison-row {
        grid-template-columns: 52px minmax(0, 1fr) 66px;
        gap: 8px;
    }

    .hakusan-reasons__copy {
        margin-top: 46px;
        text-align: left;
    }

    .hakusan-reasons__copy h3 {
        line-height: 1.75;
    }

    .hakusan-reasons__copy h3 > span {
        white-space: nowrap;
    }

    .hakusan-reasons__copy p {
        margin-top: 18px;
        font-size: 13px;
        line-height: 2;
    }

    .hakusan-reasons__cards article {
        border-radius: 18px;
    }

    .hakusan-reasons__card-head {
        min-height: 0;
        padding: 25px 20px 29px;
    }

    .hakusan-reasons__card-head h3 {
        font-size: 19px;
    }

    .hakusan-reasons__card-visual {
        height: auto;
    }

    .hakusan-reasons__card-body {
        min-height: 0;
        padding: 25px 20px 24px;
    }

    .hakusan-reasons__card-body > p:not(.hakusan-reasons__card-tag) {
        font-size: 13px;
        line-height: 2;
    }

    .hakusan-reasons__sources {
        font-size: 9px;
        text-align: left;
    }
}

/* ============================================
   エリアLP：窓ガラスフィルムでできること
   ============================================ */
.area-film-about__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(14px, 2vw, 24px);
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.area-film-about__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(24px, 3vw, 34px) clamp(18px, 2.2vw, 26px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(23, 103, 200, 0.10);
}

.area-film-about__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(52px, 5.4vw, 64px);
    height: clamp(52px, 5.4vw, 64px);
    margin-bottom: 14px;
    border-radius: 50%;
    background: #eaf3fc;
    color: #1767c8;
}

.area-film-about__icon svg {
    display: block;
    width: 58%;
    height: 58%;
}

.area-film-about__card h3 {
    margin: 0 0 10px;
    color: #17263a;
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 800;
    letter-spacing: 0.04em;
}

.area-film-about__card p {
    margin: 0;
    color: #34465a;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.9;
    letter-spacing: 0.02em;
}

@media (max-width: 900px) {
    .area-film-about__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .area-film-about__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .area-film-about__card {
        padding: 18px 12px 16px;
        border-radius: 13px;
    }
    .area-film-about__card p {
        font-size: 11.5px;
        line-height: 1.8;
    }
}

/* ============================================
   エリアLP：できることセクション クラフト紙風デザイン
   ============================================ */
.area-film-about--craft {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(rgba(23, 103, 200, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, #eef4f9, #f3f7fb);
    background-size: 5px 5px, 100% 100%;
}

/* 円形スタンプ風の装飾（破線サークル） */
.area-film-about__stamp {
    position: absolute;
    border: 1.5px dashed rgba(23, 103, 200, 0.22);
    border-radius: 50%;
    pointer-events: none;
}

.area-film-about__stamp::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1.5px dashed rgba(23, 103, 200, 0.14);
    border-radius: 50%;
}

.area-film-about__stamp--tl {
    top: -60px;
    left: -60px;
    width: clamp(140px, 16vw, 220px);
    height: clamp(140px, 16vw, 220px);
}

.area-film-about__stamp--br {
    right: -70px;
    bottom: -70px;
    width: clamp(160px, 18vw, 250px);
    height: clamp(160px, 18vw, 250px);
}

/* 見出し: 大きな数字＋黄色マーカー */
.area-film-about__title b {
    display: inline-block;
    margin: 0 2px;
    font-family: "Roboto", var(--font);
    font-size: 1.9em;
    font-weight: 700;
    line-height: 1;
    color: #1767c8;
    vertical-align: -0.08em;
}

.area-film-about__title em {
    position: relative;
    font-style: normal;
    padding: 0 2px;
    background: linear-gradient(transparent 62%, #f7d64c 62%, #f7d64c 92%, transparent 92%);
}

/* ブロブ形のメインビジュアル */
.area-film-about__visual {
    position: relative;
    max-width: 720px;
    margin: 0 auto clamp(36px, 5vw, 56px);
    padding: 0 16px;
}

.area-film-about__blob {
    margin: 0;
    overflow: hidden;
    border-radius: 58% 42% 55% 45% / 52% 48% 55% 45%;
    box-shadow: 0 18px 40px rgba(23, 38, 58, 0.14);
    transform: rotate(-1.5deg);
}

.area-film-about__blob img {
    display: block;
    width: 100%;
    height: clamp(240px, 34vw, 400px);
    object-fit: cover;
}

/* POINTバッジ＋吹き出しラベル */
.area-film-about__point {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.area-film-about__point--1 {
    top: clamp(-28px, -2vw, -16px);
    right: clamp(-8px, 2vw, 36px);
    align-items: flex-end;
}

.area-film-about__point--2 {
    bottom: clamp(-20px, -1.4vw, -10px);
    left: clamp(-6px, 1.6vw, 30px);
}

.area-film-about__point-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(46px, 4.6vw, 58px);
    height: clamp(46px, 4.6vw, 58px);
    border-radius: 50%;
    background: #f7d64c;
    color: #17263a;
    font-family: "Roboto", var(--font);
    font-size: clamp(9px, 0.9vw, 11px);
    font-weight: 700;
    letter-spacing: 0.06em;
    box-shadow: 0 6px 14px rgba(23, 38, 58, 0.16);
}

.area-film-about__point-label {
    display: inline-block;
    padding: 10px 16px;
    background: #fff;
    border-radius: 12px;
    color: #17263a;
    font-size: clamp(11px, 1.1vw, 13px);
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.04em;
    box-shadow: 0 10px 22px rgba(23, 38, 58, 0.14);
}

/* クラフト背景上のカード調整 */
.area-film-about--craft .area-film-about__card {
    box-shadow: 0 10px 24px rgba(23, 38, 58, 0.08);
}

.area-film-about--craft .area-film-about__icon {
    background: #fdf3d2;
    color: #1767c8;
}

@media (max-width: 767px) {
    .area-film-about__visual {
        padding: 0 6px;
        margin-bottom: 30px;
    }
    .area-film-about__blob img {
        height: 230px;
    }
    .area-film-about__point--1 {
        top: -20px;
        right: -2px;
    }
    .area-film-about__point--2 {
        bottom: -14px;
        left: -2px;
    }
    .area-film-about__point-label {
        padding: 8px 12px;
        font-size: 11px;
        border-radius: 10px;
    }
    .area-film-about__stamp--tl {
        top: -50px;
        left: -50px;
    }
    .area-film-about__stamp--br {
        right: -60px;
        bottom: -60px;
    }
}

/* ============================================
   エリアLP：6つの効果 ブロブ写真＋POINTシール＋ネイビー箱
   ============================================ */
.area-film-about__points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(44px, 5vw, 60px) clamp(24px, 3vw, 40px);
    max-width: 1148px;
    margin: 30px auto 4px;
    padding: 26px clamp(24px, 4vw, 48px) 4px;
    list-style: none;
}

.area-film-about__poi {
    position: relative;
}

.area-film-about__poi-blob {
    position: relative;
    margin: 0;
    overflow: hidden;
    box-shadow:
        0 0 0 5px rgba(255, 255, 255, 0.95),
        0 16px 30px rgba(23, 38, 58, 0.13);
    transform: rotate(-1.5deg);
}

.area-film-about__poi-blob--a { border-radius: 58% 42% 55% 45% / 52% 48% 55% 45%; }
.area-film-about__poi-blob--b { border-radius: 45% 55% 48% 52% / 55% 45% 52% 48%; transform: rotate(1.5deg); }
.area-film-about__poi-blob--c { border-radius: 52% 48% 44% 56% / 48% 55% 45% 52%; transform: rotate(-0.8deg); }

.area-film-about__poi-blob img {
    display: block;
    width: 100%;
    height: clamp(170px, 16vw, 210px);
    object-fit: cover;
}

/* 黄色いPOINTシール（ゆがんだ円） */
.area-film-about__poi-seal {
    position: absolute;
    top: -20px;
    left: -8px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: clamp(56px, 5.4vw, 66px);
    height: clamp(56px, 5.4vw, 66px);
    background: #f7d64c;
    border-radius: 48% 52% 45% 55% / 55% 46% 54% 45%;
    transform: rotate(-8deg);
    color: #17263a;
    font-family: "Roboto", var(--font);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 16px rgba(23, 38, 58, 0.18);
}

.area-film-about__poi-seal b {
    font-size: 17px;
    font-weight: 700;
}

.area-film-about__poi:nth-child(even) .area-film-about__poi-seal {
    left: auto;
    right: -8px;
    transform: rotate(8deg);
}

/* ネイビーの説明箱（内側に白フレーム＋吹き出しの三角） */
.area-film-about__poi-box {
    position: relative;
    z-index: 2;
    width: calc(100% - 20px);
    margin: -24px 0 0 auto;
    padding: 20px 18px 18px;
    background: #1d4e9e;
    color: #fff;
    box-shadow: 0 14px 26px rgba(13, 58, 138, 0.24);
}

.area-film-about__poi:nth-child(even) .area-film-about__poi-box {
    margin: -24px auto 0 0;
}

.area-film-about__poi-box::before {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1.6px solid rgba(255, 255, 255, 0.72);
    pointer-events: none;
}

.area-film-about__poi-box::after {
    content: "";
    position: absolute;
    top: -13px;
    left: 30px;
    border-style: solid;
    border-width: 0 9px 14px 9px;
    border-color: transparent transparent #1d4e9e transparent;
}

.area-film-about__poi:nth-child(even) .area-film-about__poi-box::after {
    left: auto;
    right: 30px;
}

.area-film-about__poi-box h3 {
    margin: 0 0 8px;
    font-size: clamp(14px, 1.4vw, 16px);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-align: center;
}

.area-film-about__poi-box p {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.85;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 900px) {
    .area-film-about__points {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .area-film-about__points {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 400px;
        padding-top: 30px;
    }
    .area-film-about__poi-blob img {
        height: 190px;
    }
    .area-film-about__poi-seal {
        top: -18px;
        width: 56px;
        height: 56px;
    }
    .area-film-about__poi-box {
        width: calc(100% - 14px);
        padding: 17px 15px 15px;
    }
    .area-film-about__poi-box p {
        font-size: 11.5px;
        line-height: 1.8;
    }
}

/* ============================================
   エリアLP：できること 簡易版（大ブロブ＋POINT×2）
   ============================================ */
.area-film-about__duo {
    position: relative;
    max-width: 760px;
    margin: clamp(40px, 5vw, 56px) auto 4px;
    padding: 40px 24px 52px;
}

.area-film-about__duo-blob {
    margin: 0;
    overflow: hidden;
    border-radius: 52% 48% 45% 55% / 58% 52% 48% 42%;
    box-shadow:
        0 0 0 6px rgba(255, 255, 255, 0.95),
        0 18px 36px rgba(23, 38, 58, 0.14);
    transform: rotate(-1deg);
}

.area-film-about__duo-blob img {
    display: block;
    width: 100%;
    height: clamp(240px, 34vw, 380px);
    object-fit: cover;
}

.area-film-about__duo-point {
    position: absolute;
    z-index: 3;
}

.area-film-about__duo-point .area-film-about__poi-seal {
    position: absolute;
    top: -24px;
    left: -18px;
    z-index: 2;
}

.area-film-about__duo-point .area-film-about__poi-box {
    position: relative;
    width: auto;
    margin: 0;
    padding: 16px 20px 15px;
}

.area-film-about__duo-point .area-film-about__poi-box p {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0.05em;
    text-align: center;
    color: #fff;
}

/* POINT 1: 右上（しっぽは下向き＝写真を指す） */
.area-film-about__duo-point--1 {
    top: -6px;
    right: 12px;
}

.area-film-about__duo-point--1 .area-film-about__poi-box::after {
    top: auto;
    bottom: -13px;
    left: 26px;
    right: auto;
    border-width: 14px 9px 0 9px;
    border-color: #1d4e9e transparent transparent transparent;
}

/* POINT 2: 左下（しっぽは上向き＝写真を指す） */
.area-film-about__duo-point--2 {
    bottom: -2px;
    left: 12px;
}

.area-film-about__duo-point--2 .area-film-about__poi-box::after {
    top: -13px;
    left: auto;
    right: 34px;
    border-width: 0 9px 14px 9px;
    border-color: transparent transparent #1d4e9e transparent;
}

.area-film-about__duo-note {
    margin: 16px 4px 0 0;
    text-align: right;
    color: #6b7a8d;
    font-size: 12px;
    letter-spacing: 0.06em;
}

@media (max-width: 767px) {
    .area-film-about__duo {
        margin-top: 34px;
        padding: 36px 10px 48px;
    }
    .area-film-about__duo-blob img {
        height: 240px;
    }
    .area-film-about__duo-point .area-film-about__poi-seal {
        top: -20px;
        left: -12px;
    }
    .area-film-about__duo-point .area-film-about__poi-box {
        padding: 12px 14px 11px;
    }
    .area-film-about__duo-point .area-film-about__poi-box p {
        font-size: 11.5px;
        line-height: 1.7;
    }
    .area-film-about__duo-point--1 {
        top: -10px;
        right: 2px;
    }
    .area-film-about__duo-point--2 {
        bottom: -6px;
        left: 2px;
    }
    .area-film-about__duo-note {
        margin-top: 12px;
        font-size: 11px;
    }
}

/* ============================================
   エリアLP：6つの効果 吹き出し2個スタイル
   ============================================ */
.area-film-about__poi {
    padding: 30px 0 34px;
}

/* ネイビーの吹き出し（黄色い円が角から覗く） */
.area-film-about__poi-bub {
    position: absolute;
    z-index: 3;
    background: #1d4e9e;
    padding: 12px 16px 11px;
    box-shadow: 0 12px 24px rgba(13, 58, 138, 0.22);
}

.area-film-about__poi-bub::before {
    content: "";
    position: absolute;
    top: -14px;
    left: -14px;
    z-index: -1;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f7d64c;
}

.area-film-about__poi-bub p {
    margin: 0;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.65;
    letter-spacing: 0.05em;
    text-align: center;
}

/* 上の吹き出し（効果名）: 右上・しっぽ下向き */
.area-film-about__poi-bub--t {
    top: 6px;
    right: -4px;
}

.area-film-about__poi-bub--t p {
    font-size: 13px;
    letter-spacing: 0.08em;
}

.area-film-about__poi-bub--t::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 22px;
    border-style: solid;
    border-width: 13px 8px 0 8px;
    border-color: #1d4e9e transparent transparent transparent;
}

/* 下の吹き出し（ポイント）: 左下・しっぽ上向き */
.area-film-about__poi-bub--b {
    bottom: 4px;
    left: -4px;
}

.area-film-about__poi-bub--b::after {
    content: "";
    position: absolute;
    top: -12px;
    right: 26px;
    border-style: solid;
    border-width: 0 8px 13px 8px;
    border-color: transparent transparent #1d4e9e transparent;
}

/* シールは吹き出しと重ならないよう左上固定・番号入りのまま */
.area-film-about__poi .area-film-about__poi-seal {
    top: 8px;
    left: -10px;
}

.area-film-about__poi:nth-child(even) .area-film-about__poi-seal {
    left: -10px;
    right: auto;
    transform: rotate(-8deg);
}

@media (max-width: 767px) {
    .area-film-about__poi {
        padding: 26px 0 30px;
    }
    .area-film-about__poi-bub {
        padding: 10px 13px 9px;
    }
    .area-film-about__poi-bub p {
        font-size: 11.5px;
    }
    .area-film-about__poi-bub--t p {
        font-size: 12.5px;
    }
    .area-film-about__poi-bub--t {
        top: 2px;
        right: 0;
    }
    .area-film-about__poi-bub--b {
        bottom: 0;
        left: 0;
    }
    .area-film-about__poi-bub::before {
        width: 32px;
        height: 32px;
        top: -12px;
        left: -12px;
    }
}

/* ============================================
   エリアLP：6つの効果 ガラスデザインカード
   ============================================ */
.area-film-about__points--glass {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 2.6vw, 32px);
    max-width: 1080px;
}

.area-film-glass {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    min-height: 480px;
    padding: 170px 14px 14px;
    border-radius: 18px;
    box-shadow: 0 18px 36px rgba(13, 58, 138, 0.16);
    isolation: isolate;
}

.area-film-glass__photo {
    position: absolute;
    inset: 0;
    margin: 0;
    z-index: 0;
}

.area-film-glass__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 左上の斜めネイビー帯 */
.area-film-glass::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, #1b3f7e, #102a54);
    clip-path: polygon(0 0, 40% 0, 12% 58%, 0 58%);
    opacity: 0.94;
}

/* 斜めストライプ装飾 */
.area-film-glass__stripes {
    position: absolute;
    z-index: 1;
    width: 150px;
    height: 84px;
    background: repeating-linear-gradient(115deg,
        rgba(173, 205, 240, 0.75) 0 9px,
        transparent 9px 20px);
    pointer-events: none;
}

.area-film-glass__stripes--tl {
    top: -18px;
    left: -26px;
}

.area-film-glass__stripes--br {
    right: -26px;
    bottom: -14px;
}

/* POINT番号バッジ */
.area-film-glass__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    margin: 0;
    color: #fff;
    line-height: 1;
}

.area-film-glass__badge span {
    display: block;
    font-family: "Roboto", var(--font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.28em;
}

.area-film-glass__badge b {
    display: block;
    margin-top: 6px;
    font-family: "Roboto", var(--font);
    font-size: 44px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.02em;
}

.area-film-glass__badge i {
    display: block;
    width: 38px;
    height: 11px;
    margin-top: 10px;
    background: repeating-linear-gradient(115deg,
        #7fb1e8 0 3px,
        transparent 3px 8px);
}

/* すりガラスパネル */
.area-film-glass__panel {
    position: relative;
    z-index: 2;
    padding: clamp(20px, 2.4vw, 26px) clamp(16px, 2vw, 22px) clamp(14px, 1.8vw, 18px);
    background: rgba(255, 255, 255, 0.16);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 16px;
}

.area-film-glass__panel h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-shadow: 0 2px 10px rgba(10, 30, 60, 0.45);
}

.area-film-glass__panel > p {
    margin: 0 0 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.9;
    letter-spacing: 0.03em;
    text-shadow: 0 2px 8px rgba(10, 30, 60, 0.5);
}

/* 白いベネフィットチップ3個 */
.area-film-glass__chips {
    display: flex;
    align-items: stretch;
    margin: 0;
    padding: 12px 4px;
    list-style: none;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(10, 30, 60, 0.18);
}

.area-film-glass__chips li {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 2px 9px;
    color: #17263a;
    font-size: 10.5px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.area-film-glass__chips li + li {
    border-left: 1px solid #d8e2ee;
}

.area-film-glass__chip-icon {
    display: block;
    flex: none;
    width: 26px;
    height: 26px;
    color: #1d4e9e;
}

.area-film-glass__chip-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

@media (max-width: 900px) {
    .area-film-about__points--glass {
        grid-template-columns: 1fr;
        max-width: 560px;
    }
}

@media (max-width: 767px) {
    .area-film-about__points--glass {
        gap: 18px;
    }
    .area-film-glass {
        min-height: 440px;
        padding: 150px 10px 10px;
        border-radius: 15px;
    }
    /* モバイルはbackdrop-filter無効化のため、パネルを半透明ネイビーで可読性確保 */
    .area-film-glass__panel {
        background: rgba(16, 42, 84, 0.62);
        border-color: rgba(255, 255, 255, 0.3);
    }
    .area-film-glass__badge b {
        font-size: 38px;
    }
    .area-film-glass__chips li {
        font-size: 10px;
        padding: 2px 7px;
        gap: 6px;
    }
    .area-film-glass__chip-icon {
        width: 22px;
        height: 22px;
    }
}

/* ============================================
   施工事例 拡大モーダルのスライダー化
   ============================================ */
.works-modal__dialog {
    width: min(1080px, calc(100vw - 48px));
}

.works-modal__viewport {
    overflow: hidden;
    background: #1d2029;
    touch-action: none;
}

.works-modal__track {
    display: flex;
    transition: transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.works-modal__slide {
    flex: 0 0 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.works-modal__slide img {
    display: block;
    width: 100%;
    max-height: calc(100vh - 64px);
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
    transform-origin: center center;
    will-change: transform;
}

.works-modal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(15, 18, 26, 0.7);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    transition: background 200ms ease, opacity 200ms ease;
}

.works-modal__nav:hover {
    background: rgba(15, 18, 26, 0.92);
}

.works-modal__nav:disabled {
    opacity: 0.3;
    cursor: default;
}

.works-modal__nav--prev { left: 10px; }
.works-modal__nav--next { right: 10px; }

.works-modal__nav[hidden],
.works-modal__counter[hidden] {
    display: none;
}

.works-modal__counter {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    margin: 0;
    padding: 5px 16px;
    border-radius: 999px;
    background: rgba(15, 18, 26, 0.7);
    color: #fff;
    font-family: "Roboto", var(--font);
    font-size: 12px;
    letter-spacing: 0.14em;
}

@media (max-width: 767px) {
    .works-modal__nav {
        width: 38px;
        height: 38px;
        font-size: 22px;
    }
    .works-modal__nav--prev { left: 6px; }
    .works-modal__nav--next { right: 6px; }
}

/* 拡大モーダル: 紺色の余白が出ないよう背景を透明化し、スライド高さを統一 */
.works-modal__dialog {
    background: transparent;
    box-shadow: none;
}

.works-modal__viewport {
    background: transparent;
}

.works-modal__slide {
    height: min(calc(100vh - 120px), 760px);
}

.works-modal__slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 24px 50px rgba(8, 12, 22, 0.45));
}

@media (max-width: 767px) {
    .works-modal__slide {
        height: min(calc(100vh - 140px), 560px);
    }
}

/* ============================================================
   選べる6つの効果：施工前後ビジュアル（film-change）
   ============================================================ */
.film-change {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 16% 7%, rgba(255,255,255,.96) 0 7%, transparent 31%),
        linear-gradient(162deg, #f7fcff 0%, #d8edfa 38%, #eef8fd 74%, #cbe5f4 100%);
}

.film-change .price-sec__head .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #0879bd;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    box-shadow: none;
}

.film-change .price-sec__head .section-kicker::before,
.film-change .price-sec__head .section-kicker::after {
    width: 28px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #20bfd4, #1670ce);
    content: "";
}

.film-change .price-sec__head .section-kicker::before {
    background: linear-gradient(90deg, #1670ce, #20bfd4);
}

@media (max-width: 767px) {
    .film-change .price-sec__head .section-kicker {
        gap: 8px;
        padding: 0;
        font-size: 10.5px;
        letter-spacing: 0.12em;
    }

    .film-change .price-sec__head .section-kicker::before,
    .film-change .price-sec__head .section-kicker::after {
        width: 16px;
    }
}

.film-change::before,
.film-change::after {
    content: "";
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.film-change::before {
    content: none;
}

.film-change::after {
    content: none;
}

.film-change__decor {
    position: absolute;
    z-index: 0;
    width: clamp(280px, 27vw, 420px);
    aspect-ratio: 2 / 3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: .28;
    filter: saturate(.82);
    pointer-events: none;
}

.film-change__decor--a {
    top: 9%;
    left: clamp(-150px, -8vw, -72px);
    background-image: url("../img/film-change-decor-01-generated.webp");
}

.film-change__decor--b {
    top: 32%;
    right: clamp(-150px, -8vw, -72px);
    background-image: url("../img/film-change-decor-02-generated.webp");
}

.film-change__decor--c {
    top: 55%;
    left: clamp(-150px, -8vw, -72px);
    background-image: url("../img/film-change-decor-03-generated.webp");
}

.film-change__decor--d {
    top: 78%;
    right: clamp(-150px, -8vw, -72px);
    background-image: url("../img/film-change-decor-04-generated.webp");
}

.film-change__bub {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.78);
    background: radial-gradient(circle at 30% 25%, #fff 0 6%, rgba(255,255,255,.42) 18%, rgba(141,204,238,.08) 66%, rgba(255,255,255,.32));
    box-shadow: inset -8px -10px 18px rgba(113,190,231,.14), 0 10px 24px rgba(80,151,196,.12);
    pointer-events: none;
}
.film-change__bub--a { width: 132px; height: 132px; top: 23%; right: 4%; }
.film-change__bub--b { width: 58px; height: 58px; top: 42%; left: 7%; }
.film-change__bub--c { width: 92px; height: 92px; bottom: 23%; right: 10%; }
.film-change__bub--d { width: 46px; height: 46px; bottom: 8%; left: 12%; }

.film-change__list {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: clamp(72px, 9vw, 112px);
    max-width: 920px;
    margin: clamp(44px, 6vw, 72px) auto clamp(52px, 7vw, 84px);
    padding: 96px 76px 0 32px;
}

.film-change__message {
    position: absolute;
    top: 0;
    right: 8px;
    z-index: 4;
    width: 150px;
    height: 500px;
    color: #0758b6;
    font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
    letter-spacing: .1em;
    text-shadow: 0 2px 8px rgba(255,255,255,.96);
}

.film-change__message span {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: clamp(17px, 2vw, 24px);
    font-weight: 700;
}

.film-change__message strong {
    position: absolute;
    top: 0;
    right: 38px;
    display: block;
    writing-mode: vertical-rl;
    text-orientation: upright;
    color: #263b5a;
    font-size: clamp(36px, 4.5vw, 50px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: .08em;
}

.film-change__message em {
    color: #075fc8;
    font-size: 1.12em;
    font-style: normal;
}

.film-change__item {
    position: relative;
    width: 100%;
    min-height: 690px;
}

.film-change__ph {
    position: relative;
    margin: 0;
    z-index: 1;
    isolation: isolate;
}

.film-change__ph::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 12px -14px -14px 12px;
    background: rgba(67, 92, 118, .16);
    box-shadow: 10px 14px 28px rgba(31, 63, 94, .18);
}

.film-change__ph--before::after {
    content: "";
    position: absolute;
    right: -56px;
    bottom: -82px;
    z-index: 3;
    width: 86px;
    height: 86px;
    background: url("../img/film-change-arrow-generated.webp") center / contain no-repeat;
    filter: drop-shadow(0 7px 9px rgba(16, 86, 175, .2));
    pointer-events: none;
}

.film-change__ph picture {
    display: block;
    width: 100%;
    height: 100%;
}

.film-change__ph img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 5px solid rgba(255,255,255,.96);
    box-shadow: 0 10px 20px rgba(37,91,135,.16);
}

.film-change__ph--before {
    width: 58%;
    height: auto;
    aspect-ratio: 3 / 2;
}

.film-change__ph--after {
    width: 86%;
    height: auto;
    aspect-ratio: 3 / 2;
    margin: 92px 0 0 10%;
    z-index: 2;
    opacity: 0;
    transform: scale(0.48);
    transform-origin: center center;
    will-change: opacity, transform;
}

.film-change__item.is-visible .film-change__ph--after {
    animation: film-change-after-pop 720ms cubic-bezier(0.22, 0.61, 0.36, 1) 420ms both;
}

@keyframes film-change-after-pop {
    0% {
        opacity: 0;
        transform: scale(0.48);
    }
    58% {
        opacity: 1;
        transform: scale(1.08);
    }
    78% {
        opacity: 1;
        transform: scale(0.97);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .film-change__ph--after {
        opacity: 1;
        transform: none;
        will-change: auto;
    }

    .film-change__item.is-visible .film-change__ph--after {
        animation: none;
    }
}

.film-change__note {
    position: absolute;
    top: 22px;
    right: -26px;
    z-index: 4;
    min-width: 230px;
    max-width: 290px;
    padding: 18px 24px 17px 56px;
    background: linear-gradient(135deg, #ef8fa7 0%, #dd6f91 100%);
    border: 3px solid rgba(255, 255, 255, .98);
    border-radius: 4px;
    box-shadow:
        0 0 0 1px rgba(202, 83, 121, .36),
        7px 9px 0 rgba(180, 109, 137, .12),
        0 14px 25px rgba(116, 72, 122, .2),
        inset 0 1px 0 rgba(255, 255, 255, .95);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: .1em;
    white-space: nowrap;
    text-align: center;
    text-shadow: 0 1px 3px rgba(132, 48, 79, .22);
}

.film-change__note::before {
    content: "POINT";
    position: absolute;
    top: -23px;
    left: -31px;
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    background: linear-gradient(145deg, #ffe278 0%, #ffc94d 100%);
    clip-path: polygon(50% 0, 61% 6%, 73% 4%, 81% 13%, 93% 17%, 96% 30%, 100% 40%, 95% 51%, 97% 64%, 87% 72%, 83% 85%, 70% 88%, 60% 97%, 48% 93%, 36% 100%, 26% 92%, 13% 89%, 10% 76%, 1% 67%, 5% 54%, 0 43%, 7% 33%, 7% 20%, 19% 14%, 27% 4%, 40% 7%);
    color: #1c76aa;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .12em;
    text-shadow: none;
    filter: drop-shadow(0 5px 6px rgba(130, 95, 29, .18));
}

.film-change__note--after {
    background: linear-gradient(135deg, #46bce7 0%, #218dce 100%);
    box-shadow:
        0 0 0 1px rgba(34, 135, 192, .38),
        7px 9px 0 rgba(72, 158, 207, .12),
        0 14px 25px rgba(43, 106, 166, .22),
        inset 0 1px 0 rgba(255, 255, 255, .95);
    color: #fff;
    text-shadow: 0 1px 3px rgba(17, 91, 143, .26);
}

.film-change__note--after::before {
    color: #1779ad;
}

.film-change__damage-note {
    position: absolute;
    top: 31%;
    left: 68%;
    z-index: 5;
    width: 28%;
    height: 32%;
    color: #e43d32;
    filter: drop-shadow(0 3px 4px rgba(93, 29, 24, .28));
    pointer-events: none;
}

.film-change__damage-note--after {
    top: 14%;
    left: 52%;
    z-index: 3;
    width: 34%;
    height: 62%;
    color: #087dd2;
}

.film-change__damage-note.film-change__damage-note--after path {
    stroke-width: 4;
}

.film-change__damage-note--shatter {
    top: 16%;
    left: 52%;
    z-index: 3;
    width: 18%;
    height: 35%;
    color: #087dd2;
}

.film-change__damage-note.film-change__damage-note--shatter path {
    stroke-width: 5;
}

.film-change__damage-note svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.film-change__damage-note path {
    fill: none;
    stroke: currentColor;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* 画像自体はフェードさせず、吹き出しだけポンと弾ませる */
.film-change__item[data-reveal-item] {
    opacity: 1;
    transform: none;
    transition: none;
}

.film-change__note {
    opacity: 0;
    transform: scale(.3);
}

/* 施工前（ネガティブ）：上から重く落ちて、不安げに小刻みに揺れる */
.film-change__note.is-visible {
    animation: film-note-drop-shake 820ms ease-out 120ms both;
}

/* 施工後（ポジティブ）：ポンと弾む */
.film-change__note--after.is-visible {
    animation: film-note-pop 620ms cubic-bezier(.3, 1.4, .5, 1) 120ms both;
}

@keyframes film-note-pop {
    0%   { opacity: 0; transform: scale(.3); }
    55%  { opacity: 1; transform: scale(1.14); }
    75%  { transform: scale(.94); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes film-note-drop-shake {
    0%   { opacity: 0; transform: translateY(-30px); }
    30%  { opacity: 1; transform: translateY(0); }
    42%  { transform: translateY(-6px); }
    52%  { transform: translateY(0); }
    62%  { transform: translateX(-3px) rotate(-1.1deg); }
    72%  { transform: translateX(3px) rotate(1deg); }
    82%  { transform: translateX(-2px) rotate(-0.6deg); }
    91%  { transform: translateX(1px) rotate(0.3deg); }
    100% { opacity: 1; transform: translateX(0) rotate(0); }
}

@media (prefers-reduced-motion: reduce) {
    .film-change__note { opacity: 1; transform: none; }
    .film-change__note.is-visible,
    .film-change__note--after.is-visible { animation: none; }
}

.film-change__tag {
    position: absolute;
    top: -12px;
    left: -12px;
    z-index: 3;
    min-width: 150px;
    padding: 14px 34px 14px 27px;
    color: #174a7c;
    background: linear-gradient(115deg, rgba(255,255,255,1) 0%, #f7fcff 58%, #dcefff 100%);
    clip-path: polygon(0 0, 100% 0, 87% 100%, 0 100%);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .18em;
    line-height: 1;
    text-align: center;
    text-shadow: 0 1px 0 #fff;
    filter: drop-shadow(0 7px 9px rgba(28, 78, 121, .2));
}

.film-change__tag--after {
    color: #fff;
    background: linear-gradient(110deg, #075fc7 0%, #1188e2 58%, #55b9ee 100%);
    clip-path: polygon(8% 0, 100% 0, 88% 100%, 0 100%);
    text-shadow: 0 1px 3px rgba(8, 75, 150, .45);
    filter: drop-shadow(0 8px 10px rgba(7, 84, 166, .28));
}

.film-change__copy {
    position: absolute;
    right: 0;
    bottom: 38px;
    z-index: 3;
    width: min(48%, 370px);
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.film-change__point {
    display: flex;
    align-items: baseline;
    gap: 7px;
    width: fit-content;
    margin: 0 0 9px;
    padding: 8px 18px 9px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0b63c7, #1687db);
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    box-shadow: 0 9px 18px rgba(12, 100, 199, .24);
}

.film-change__point span {
    font-size: 12px;
    letter-spacing: .08em;
}

.film-change__point b {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.film-change__copy-body {
    position: relative;
    min-height: 118px;
    padding: 15px 106px 16px 17px;
    overflow: hidden;
    background: rgba(255, 255, 255, .97);
    border-left: 4px solid #1687db;
    border-image: linear-gradient(180deg, #3fa0e8 0%, #0b63c7 100%) 1;
    box-shadow: 7px 8px 18px rgba(8, 38, 73, .16);
}

.film-change__copy-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    z-index: 0;
    width: 88px;
    height: 88px;
    object-fit: contain;
    transform: translateY(-50%);
    filter: drop-shadow(0 6px 8px rgba(14, 91, 160, .16));
}

.film-change__copy h3,
.film-change__copy p {
    position: relative;
    z-index: 1;
}

.film-change__copy h3 {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin: 0 0 4px;
    color: #17263a;
    font-family: "Zen Kaku Gothic New", var(--font);
    font-size: clamp(21px, 2.5vw, 30px);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: .03em;
}

.film-change__copy h3 span {
    position: relative;
    display: inline-block;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

/* POINTピルと白い説明カードを、それぞれひとまとまりでポップ表示する */
.film-change__point {
    opacity: 0;
    transform: scale(.4);
    transform-origin: left bottom;
}

.film-change__copy.is-visible .film-change__point {
    animation: film-note-pop 560ms cubic-bezier(.3, 1.4, .5, 1) 80ms both;
}

.film-change__copy-body {
    opacity: 0;
    transform: translateY(18px) scale(.9);
    transform-origin: center bottom;
}

.film-change__copy.is-visible .film-change__copy-body {
    animation: film-copy-pop 560ms cubic-bezier(.2, 1.35, .4, 1) 220ms both;
}

.film-change__copy h3,
.film-change__copy p > span,
.film-change__copy p > b {
    opacity: 1;
    transform: none;
}

@keyframes film-copy-pop {
    0%   { opacity: 0; transform: translateY(18px) scale(.9); }
    72%  { opacity: 1; transform: translateY(-3px) scale(1.025); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.film-change__copy p {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 1px;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    color: #315277;
    font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 13px;
    line-height: 1.65;
    letter-spacing: .08em;
}

.film-change__copy p > span,
.film-change__copy p > b {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
    .film-change__point,
    .film-change__copy-body,
    .film-change__copy h3,
    .film-change__copy p > span,
    .film-change__copy p > b { opacity: 1; transform: none; }
    .film-change__copy.is-visible .film-change__point,
    .film-change__copy.is-visible .film-change__copy-body,
    .film-change__copy.is-visible h3,
    .film-change__copy.is-visible p > span,
    .film-change__copy.is-visible p > b { animation: none; }
}

.film-change__copy p > b {
    color: #075fc8;
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 700;
    letter-spacing: .07em;
}

.film-change .price-sec__more {
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .film-change {
        padding-bottom: 58px;
    }

    .film-change__decor {
        display: none;
    }

    .film-change__bub--a { width: 48px; height: 48px; top: 35%; right: 3%; }
    .film-change__bub--b { width: 30px; height: 30px; top: 48%; left: 3%; }
    .film-change__bub--c { width: 42px; height: 42px; bottom: 21%; right: 15%; }
    .film-change__bub--d { width: 28px; height: 28px; bottom: 8%; left: 4%; }

    .film-change__list {
        width: 100%;
        max-width: 480px;
        margin: 30px auto 40px;
        padding: 24px 12px 0;
        gap: 72px;
    }

    .film-change__message {
        display: none;
    }

    .film-change__message strong {
        right: 27px;
    }

    .film-change__message span {
        font-size: clamp(12px, 3.6vw, 16px);
        letter-spacing: .06em;
    }

    .film-change__message strong {
        font-size: clamp(29px, 8.4vw, 37px);
        line-height: 1;
        letter-spacing: .05em;
    }

    .film-change__message em {
        font-size: 1.08em;
    }

    .film-change__item {
        min-height: 0;
    }

    .film-change__ph--before {
        width: 74%;
        height: auto;
        aspect-ratio: 3 / 2;
        margin-left: 2%;
    }

    .film-change__ph--after {
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 2;
        margin: 48px 0 0;
    }

    .film-change__ph img {
        border-width: 3px;
        box-shadow: 0 7px 14px rgba(37,91,135,.15);
    }

    .film-change__ph::before {
        inset: 8px -9px -10px 8px;
        box-shadow: 7px 9px 18px rgba(31, 63, 94, .16);
    }

    .film-change__ph--before::after {
        right: -20px;
        bottom: -40px;
        width: 56px;
        height: 56px;
        filter: drop-shadow(0 5px 7px rgba(16, 86, 175, .18));
    }

    .film-change__note {
        top: 22px;
        right: 6px;
        min-width: 0;
        max-width: 210px;
        padding: 13px 14px 12px 42px;
        border-width: 2px;
        font-size: 12px;
        letter-spacing: .05em;
    }

    .film-change__note::before {
        top: -15px;
        left: -22px;
        width: 56px;
        height: 56px;
        font-size: 9px;
    }

    .film-change__damage-note path {
        stroke-width: 7;
    }

    .film-change__damage-note.film-change__damage-note--after path {
        stroke-width: 5;
    }

    .film-change__tag {
        top: -8px;
        left: -7px;
        min-width: 122px;
        padding: 12px 24px 12px 18px;
        font-size: 14px;
        letter-spacing: .14em;
    }

    .film-change__copy {
        position: relative;
        z-index: 5;
        right: auto;
        bottom: auto;
        width: min(84%, 320px);
        margin: -48px 0 0 8px;
        padding: 0;
    }

    .film-change__copy h3 {
        margin-bottom: 3px;
        font-size: clamp(18px, 5.2vw, 23px);
    }

    .film-change__copy h3 span {
        padding: 0;
        border: 0;
    }

    .film-change__point {
        margin-bottom: 7px;
        padding: 7px 13px 8px;
    }

    .film-change__point span {
        font-size: 10px;
    }

    .film-change__point b {
        font-size: 16px;
    }

    .film-change__copy p {
        gap: 4px;
        padding: 0;
        font-size: clamp(10px, 2.8vw, 12px);
        line-height: 1.55;
    }

    .film-change__copy p > span,
    .film-change__copy p > b {
        padding: 0;
        border: 0;
    }

    .film-change__copy-body {
        min-height: 102px;
        padding: 12px 76px 13px 12px;
        border-left-width: 3px;
    }

    .film-change__copy-icon {
        right: 7px;
        width: 66px;
        height: 66px;
    }

    .film-change__copy p > b {
        font-size: clamp(14px, 4vw, 18px);
    }

    .film-change .price-sec__more {
        margin-top: 0;
    }
}

@media (max-width: 380px) {
    .film-change__list { padding-inline: 10px; }
}

/* ============================================
   対応エリア個別ページ：施工事例のトーン調整
   レイアウトは共通の施工事例スライダーを維持する
   ============================================ */
.works--area {
    background:
        radial-gradient(circle at 8% 18%, rgba(27, 192, 216, 0.14), transparent 28%),
        radial-gradient(circle at 92% 82%, rgba(23, 103, 200, 0.15), transparent 31%),
        linear-gradient(180deg, #f7fbfe 0%, #eaf3fa 52%, #f5f9fc 100%);
    color: #17263a;
}

.works--area::before {
    background:
        radial-gradient(rgba(23, 103, 200, 0.055) 1px, transparent 1px),
        linear-gradient(120deg, rgba(255, 255, 255, 0.7), transparent 46%, rgba(255, 255, 255, 0.38));
    background-size: 7px 7px, 100% 100%;
}

.works--area .works__head .section-kicker {
    color: #178bc9;
}

.works--area .works__head .section-kicker::after {
    background: linear-gradient(90deg, #1bc0d8, #1767c8);
}

.works--area .works__head .section-title {
    color: #17263a;
}

.works--area .works__head .section-lead {
    color: #51697d;
}

.works--area .work-card__link {
    border: 1px solid rgba(23, 103, 200, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    filter: drop-shadow(0 18px 34px rgba(13, 83, 153, 0.14));
}

.works--area .work-card__image {
    background: #dcecf7;
}

.works--area .work-card__zoom-hint {
    border-color: rgba(23, 139, 201, 0.25);
    background: rgba(255, 255, 255, 0.9);
    color: #12639b;
    box-shadow: 0 10px 24px rgba(13, 83, 153, 0.16);
}

.works--area .work-card__panel {
    border-radius: 0 0 17px 17px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow:
        inset 0 3px 0 #1ab2d3,
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.works--area .work-card__title {
    color: #17304a;
}

.works--area .work-card__desc {
    color: #40586d;
}

.works--area .work-card__category {
    color: #1767c8;
}

.works--area .work-card__category span {
    border: 1px solid rgba(23, 103, 200, 0.08);
    background: #eaf4fb;
}

.works--area .work-card__arrow {
    border-color: transparent;
    background: linear-gradient(135deg, #1bc0d8, #1767c8);
    color: #fff;
    box-shadow: 0 9px 20px rgba(23, 103, 200, 0.22);
}

.works--area .work-card__link:hover .work-card__arrow {
    background: #173f77;
    color: #fff;
}

.works--area .works__nav-button {
    border: 1px solid rgba(23, 103, 200, 0.14);
    background: rgba(255, 255, 255, 0.94);
    color: #1767c8;
    box-shadow: 0 10px 24px rgba(13, 83, 153, 0.14);
}

.works--area .works__nav-button:hover {
    border-color: transparent;
    background: linear-gradient(135deg, #1bc0d8, #1767c8);
    color: #fff;
}

.works--area .works__line {
    background: #d5e5f0;
}

.works--area .works__line span {
    background: linear-gradient(90deg, #1bc0d8, #1767c8);
}

.works--area .works__counter {
    color: #1767c8;
    font-weight: 700;
}

.works--area .works__hint {
    color: #70879a;
}

/* 対応エリア個別ページ：ご依頼からの流れ */
.area-flow-section,
.area-price-section {
    position: relative;
    overflow: hidden;
    color: #17263a;
}

.area-flow-section {
    background:
        radial-gradient(circle at 92% 14%, rgba(27, 192, 216, 0.12), transparent 26%),
        radial-gradient(rgba(23, 103, 200, 0.045) 1px, transparent 1px),
        linear-gradient(180deg, #ffffff 0%, #f1f8fc 100%);
    background-size: auto, 8px 8px, auto;
}

.area-price-section {
    background:
        radial-gradient(circle at 8% 18%, rgba(27, 192, 216, 0.13), transparent 28%),
        radial-gradient(circle at 94% 88%, rgba(23, 103, 200, 0.13), transparent 30%),
        linear-gradient(180deg, #edf6fb 0%, #f8fbfd 50%, #eaf3fa 100%);
}

.area-price-section .area-window-price {
    margin-top: clamp(40px, 5vw, 64px);
    padding-top: 0;
    border-top: 0;
}

@media (max-width: 767px) {
    .area-price-section .area-window-price {
        margin-top: 34px;
    }
}

.area-flow-section::after,
.area-price-section::after {
    position: absolute;
    width: clamp(150px, 20vw, 290px);
    aspect-ratio: 1;
    border: 1px dashed rgba(23, 103, 200, 0.14);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.area-flow-section::after {
    top: -90px;
    left: -74px;
}

.area-price-section::after {
    right: -88px;
    bottom: -110px;
}

.area-flow-section > *,
.area-price-section > * {
    position: relative;
    z-index: 1;
}

.area-flow-section .section-kicker,
.area-price-section .section-kicker {
    color: #178bc9;
}

.area-flow-section .section-kicker::after,
.area-price-section .section-kicker::after {
    background: linear-gradient(90deg, #1bc0d8, #1767c8);
}

.area-flow-section .section-title,
.area-price-section .section-title {
    color: #17263a;
}

.area-flow-section .price-sec__lead,
.area-price-section .price-sec__lead {
    color: #51697d;
}

.area-flow-section .price-flow::before {
    height: 3px;
    background: linear-gradient(90deg, #1bc0d8 0%, #168bc9 52%, #1767c8 100%);
}

.area-flow-section .price-flow__node {
    border-color: #168bc9;
    box-shadow: 0 0 0 5px rgba(23, 139, 201, 0.14);
}

.area-flow-section .price-flow__card {
    border-color: rgba(23, 103, 200, 0.13);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.99), rgba(241, 249, 253, 0.97));
    box-shadow: 0 18px 38px -24px rgba(13, 83, 153, 0.42);
}

.area-flow-section .price-flow__card::before {
    height: 4px;
    background: linear-gradient(90deg, #1bc0d8, #1767c8);
    opacity: 1;
}

.area-flow-section .price-flow__ghost {
    top: 14px;
    right: 14px;
    color: rgba(23, 103, 200, 0.09);
}

.area-flow-section .price-flow__icon {
    width: 82px;
    height: 82px;
    margin-top: -1px;
    margin-bottom: 12px;
    background: radial-gradient(circle, #fff 54%, #e6f4fb 100%);
    box-shadow: 0 10px 24px rgba(13, 83, 153, 0.13);
}

.area-flow-section .price-flow__icon img,
.area-price-section .pricing-table__icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.area-flow-section .price-flow__step:hover .price-flow__icon {
    background: radial-gradient(circle, #fff 54%, #dceff9 100%);
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 16px 28px -12px rgba(13, 83, 153, 0.45);
}

.area-flow-section .price-flow__step h3 {
    color: #17304a;
}

.area-flow-section .price-flow__step h3 em {
    background: linear-gradient(135deg, #1bc0d8, #1767c8);
}

.area-flow-section .price-flow__meta {
    background: #e6f3fa;
    color: #37627f;
}

.area-flow-section .price-flow__meta::before {
    background: #178bc9;
}

/* 対応エリア個別ページ：料金の目安 */
.area-price-section .pricing-table {
    border: 1px solid rgba(23, 103, 200, 0.14);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow:
        0 22px 48px rgba(13, 83, 153, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.area-price-section .pricing-table__title {
    color: #17304a;
}

.area-price-section .pricing-table__note {
    color: #70879a;
}

.area-price-section .pricing-table__row {
    border-color: rgba(23, 103, 200, 0.11);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 24px rgba(13, 83, 153, 0.09);
}

.area-price-section .pricing-table__row[data-reveal-item] {
    --pricing-reveal-delay: 0ms;
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    backface-visibility: hidden;
    transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.area-price-section .pricing-table__row[data-reveal-item]:nth-child(2) {
    --pricing-reveal-delay: 60ms;
}

.area-price-section .pricing-table__row[data-reveal-item]:nth-child(3) {
    --pricing-reveal-delay: 120ms;
}

.area-price-section .pricing-table__row[data-reveal-item]:nth-child(4) {
    --pricing-reveal-delay: 180ms;
}

.area-price-section .pricing-table__row[data-reveal-item]:nth-child(5) {
    --pricing-reveal-delay: 240ms;
}

.area-price-section .pricing-table__row[data-reveal-item].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    animation: area-pricing-row-reveal 520ms cubic-bezier(0.22, 1, 0.36, 1) var(--pricing-reveal-delay) backwards;
}

@keyframes area-pricing-row-reveal {
    from {
        opacity: 0;
        transform: translate3d(0, 18px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.area-price-section .pricing-table__row[data-reveal-item].is-visible:hover {
    border-color: rgba(23, 139, 201, 0.3);
    box-shadow: 0 16px 30px rgba(13, 83, 153, 0.14);
    transform: translate3d(0, -2px, 0);
}

.area-price-section .pricing-table__icon {
    width: 68px;
    height: 68px;
    background: radial-gradient(circle, #fff 52%, #e5f3fa 100%);
    box-shadow: 0 9px 20px rgba(13, 83, 153, 0.12);
}

.area-price-section .pricing-table__name {
    color: #17304a;
    font-weight: 700;
}

.area-price-section .pricing-table__desc {
    color: #4f687c;
}

.area-price-section .pricing-table__price {
    color: #1767c8;
}

.area-price-section .pricing-table__amount {
    font-weight: 700;
}

.area-price-section .pricing-table__unit {
    color: #5f7b91;
}

.area-price-section .price-sec__note {
    color: #60798d;
}

@media (max-width: 767px) {
    .area-flow-section .price-flow::before {
        width: 3px;
        height: calc(var(--flow-progress, 0) * (100% - 16px));
        background: linear-gradient(180deg, #1bc0d8, #1767c8);
    }

    .area-flow-section .price-flow__icon {
        width: 66px;
        height: 66px;
        margin-bottom: 10px;
    }

    .area-price-section .pricing-table {
        border-radius: 18px;
    }

    .area-price-section .pricing-table__row {
        border-radius: 14px;
    }

    .area-price-section .pricing-table__icon {
        width: 56px;
        height: 56px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .area-price-section .pricing-table__row[data-reveal-item] {
        opacity: 1;
        transform: none;
        animation: none;
        transition: none;
    }
}

/* 対応エリア個別ページ：LINE写真見積もり */
.area-line-estimate-section {
    position: relative;
    overflow: hidden;
    padding: clamp(72px, 8vw, 112px) 20px;
    background:
        radial-gradient(circle at 7% 18%, rgba(27, 192, 216, 0.14), transparent 28%),
        radial-gradient(circle at 94% 84%, rgba(23, 103, 200, 0.13), transparent 30%),
        radial-gradient(rgba(23, 103, 200, 0.045) 1px, transparent 1px),
        linear-gradient(180deg, #f7fbfe 0%, #eaf4fa 100%);
    background-size: auto, auto, 8px 8px, auto;
}

.area-line-estimate-section .area-line-estimate {
    width: min(1120px, 100%);
    margin: 0 auto;
    margin-left: auto;
    padding: clamp(38px, 4.2vw, 54px);
    translate: none;
    border-color: rgba(23, 139, 201, 0.2);
    background:
        radial-gradient(circle at 92% 12%, rgba(27, 192, 216, 0.15), transparent 31%),
        radial-gradient(circle at 4% 92%, rgba(23, 103, 200, 0.1), transparent 29%),
        linear-gradient(145deg, #ffffff 0%, #f8fcff 58%, #edf7fc 100%);
    box-shadow: 0 28px 70px -34px rgba(13, 83, 153, 0.42);
}

.area-line-estimate-section .area-line-estimate::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 3;
    height: 5px;
    background: linear-gradient(90deg, #1bc0d8, #168bc9 52%, #1767c8 100%);
    content: "";
}

.area-line-estimate-section .line-estimate__hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
    gap: clamp(38px, 5vw, 68px);
}

.area-line-estimate-section .line-estimate__badge {
    margin-bottom: 38px;
}

.area-line-estimate-section .line-estimate__icon {
    top: 62px;
    left: -30px;
    width: 84px;
}

.area-line-estimate-section .line-estimate__copy h2 {
    max-width: 780px;
    margin: 0;
    padding-left: clamp(28px, 2.8vw, 40px);
    color: #17304a;
    font-size: clamp(27px, 2.2vw, 35px);
    font-weight: 900;
    line-height: 1.32;
    letter-spacing: 0.045em;
}

.area-line-estimate-section .line-estimate__copy h2 span {
    color: #1767c8;
}

.area-line-estimate-section .line-estimate__checks {
    gap: 10px;
    margin-top: 26px;
    padding: 18px 22px;
    border-color: rgba(23, 139, 201, 0.23);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 30px -24px rgba(13, 83, 153, 0.35);
}

.area-line-estimate-section .line-estimate__checks li {
    color: #29445d;
    font-size: clamp(14px, 1.05vw, 16px);
    line-height: 1.65;
}

.area-line-estimate-section .line-estimate__checks li::before {
    border-color: #168bc9;
    color: #1767c8;
}

.area-line-estimate-section .line-estimate__visual {
    padding: 18px;
    border: 1px solid rgba(23, 139, 201, 0.15);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 24px 46px -30px rgba(13, 83, 153, 0.48);
}

.area-line-estimate-section .line-estimate__visual img {
    border-radius: 18px;
}

.area-line-estimate-section .line-estimate__micro {
    margin-top: 20px;
}

.area-line-estimate-section .line-estimate__privacy {
    color: #60798d;
}

.area-line-estimate.is-visible .line-estimate__copy h2 {
    opacity: 1;
    transform: none;
    transition-delay: 180ms;
}

.area-line-estimate .line-estimate__copy h2 {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 900ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 900ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (max-width: 767px) {
    .area-line-estimate-section {
        padding: 64px 20px 72px;
    }

    .area-line-estimate-section .area-line-estimate {
        width: 100%;
        margin-inline: auto;
        padding: 30px 14px 26px;
    }

    .area-line-estimate-section .line-estimate__hero {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .area-line-estimate-section .line-estimate__copy h2 {
        padding-left: 0;
        font-size: clamp(21px, 5.8vw, 28px);
        text-align: center;
    }

    .area-line-estimate-section .line-estimate__icon {
        top: 50px;
        left: 4px;
        width: 48px;
    }

    .area-line-estimate-section .line-estimate__checks {
        padding: 16px 14px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .area-line-estimate-section .line-estimate__hero {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   対応エリア個別ページ：地域案内セクション
   ============================================ */
.service-area--local {
    padding: 0 0 clamp(90px, 9vw, 126px);
    background:
        radial-gradient(circle at 8% 12%, rgba(27, 192, 216, 0.12), transparent 27%),
        radial-gradient(circle at 94% 86%, rgba(23, 103, 200, 0.14), transparent 30%),
        radial-gradient(rgba(23, 103, 200, 0.045) 1px, transparent 1px),
        linear-gradient(180deg, #f7fbfe 0%, #eaf4fa 100%);
    background-size: auto, auto, 8px 8px, auto;
}

.service-area--local .service-area__content {
    max-width: 610px;
    padding: clamp(36px, 4.5vw, 54px);
    border: 1px solid rgba(23, 103, 200, 0.13);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.91);
    box-shadow:
        0 24px 52px rgba(13, 83, 153, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(18px) saturate(1.08);
}

.service-area--local .service-area__map {
    z-index: 3;
}

.service-area--local .section-kicker {
    color: #178bc9;
}

.service-area--local .section-kicker::after {
    background: linear-gradient(90deg, #1bc0d8, #1767c8);
}

.service-area--local .section-title {
    color: #17263a;
    font-weight: 700;
}

.service-area--local .service-area__catch {
    padding-left: 18px;
    border-left: 4px solid #1ab2d3;
    color: #17304a;
    font-weight: 700;
}

.service-area--local .service-area__text {
    color: #40586d;
}

.service-area--local .service-area__list li {
    gap: 7px;
    border-color: rgba(23, 139, 201, 0.22);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(229, 244, 251, 0.94));
    color: #1767c8;
    box-shadow: 0 7px 16px rgba(13, 83, 153, 0.08);
}

.service-area--local .service-area__list li::before {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1bc0d8, #1767c8);
    content: "";
}

@media (min-width: 768px) {
    .service-area--local .service-area__content {
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }
}

@media (max-width: 960px) {
    .service-area--local .service-area__content {
        max-width: 560px;
    }
}

@media (max-width: 767px) {
    .service-area--local {
        padding: 0 0 72px;
    }

    .service-area--local .service-area__content {
        z-index: auto;
        max-width: none;
        padding: 28px 22px;
        border-radius: 22px;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .service-area--local .service-area__content > * {
        position: relative;
        z-index: 4;
    }

    .service-area--local .section-title {
        margin-top: 17px;
        font-size: 29px;
    }

    .service-area--local .service-area__catch {
        margin-top: 22px;
        padding-left: 14px;
        font-size: 19px;
        font-weight: 700;
    }

    .service-area--local .service-area__text {
        font-size: 13px;
        line-height: 1.95;
    }

    .service-area--local .service-area__list {
        gap: 8px 7px;
    }

    .service-area--local .service-area__list li {
        min-height: 34px;
        padding: 7px 12px;
        font-size: 11px;
        letter-spacing: 0.08em;
    }
}

/* ============================================
   対応エリア個別ページ：FAQのトーン調整
   ============================================ */
.area-faq-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 14%, rgba(27, 192, 216, 0.14), transparent 28%),
        radial-gradient(circle at 92% 84%, rgba(23, 103, 200, 0.14), transparent 30%),
        radial-gradient(rgba(23, 103, 200, 0.045) 1px, transparent 1px),
        linear-gradient(180deg, #f7fcff 0%, #eaf4fa 100%);
    background-size: auto, auto, 8px 8px, auto;
}

.area-faq-section .section-kicker {
    color: #178bc9;
}

.area-faq-section .section-kicker::after {
    background: linear-gradient(90deg, #1bc0d8, #1767c8);
}

.area-faq-section .section-title {
    color: #17263a;
    font-weight: 700;
}

.area-faq-section .price-sec__lead {
    color: #40586d;
}

.area-faq-section .price-sec__faq-list {
    width: min(920px, calc(100% - 80px));
}

.area-faq-section .faq-item {
    margin-bottom: 14px;
    border-color: rgba(23, 139, 201, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 34px rgba(13, 83, 153, 0.1);
}

.area-faq-section .faq-item:hover {
    border-color: rgba(27, 192, 216, 0.48);
    box-shadow: 0 18px 40px rgba(13, 83, 153, 0.15);
}

.area-faq-section .faq-item.is-open,
.area-faq-section .faq-item[open] {
    border-color: rgba(23, 103, 200, 0.42);
    background: #fff;
    box-shadow: 0 20px 44px rgba(13, 83, 153, 0.16);
}

.area-faq-section .faq-item summary {
    color: #17304a;
}

.area-faq-section .faq-item__label {
    background: linear-gradient(135deg, #1bc0d8, #1767c8);
    color: #fff;
    box-shadow: 0 8px 18px rgba(23, 103, 200, 0.2);
}

.area-faq-section .faq-item__icon {
    background: rgba(27, 192, 216, 0.12);
}

.area-faq-section .faq-item__icon::before,
.area-faq-section .faq-item__icon::after {
    background: #1687db;
}

.area-faq-section .faq-item.is-open .faq-item__icon,
.area-faq-section .faq-item[open] .faq-item__icon {
    background: linear-gradient(135deg, #1bc0d8, #1767c8);
}

.area-faq-section .faq-item.is-open .faq-item__icon::before,
.area-faq-section .faq-item.is-open .faq-item__icon::after,
.area-faq-section .faq-item[open] .faq-item__icon::before,
.area-faq-section .faq-item[open] .faq-item__icon::after {
    background: #fff;
}

.area-faq-section .faq-item__answer p {
    border-top-color: rgba(27, 192, 216, 0.22);
    color: #40586d;
}

@media (max-width: 767px) {
    .area-faq-section .price-sec__faq-list {
        width: auto;
    }

    .area-faq-section .faq-item {
        border-radius: 14px;
    }
}

/* ============================================
   対応エリア個別ページ：お問い合わせCTA
   ============================================ */
.area-contact-cta {
    position: relative;
    padding: clamp(72px, 8vw, 108px) 0 clamp(84px, 9vw, 120px);
    background:
        radial-gradient(circle at 12% 18%, rgba(27, 192, 216, 0.13), transparent 27%),
        radial-gradient(circle at 88% 82%, rgba(23, 103, 200, 0.12), transparent 29%),
        radial-gradient(rgba(23, 103, 200, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, #f7fcff 0%, #eaf4fa 100%);
    background-size: auto, auto, 8px 8px, auto;
}

.area-contact-cta .faq-cta__inner {
    overflow: hidden;
    border: 1px solid rgba(23, 139, 201, 0.2);
    background:
        radial-gradient(circle at 88% 10%, rgba(27, 192, 216, 0.14), transparent 38%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(235, 247, 252, 0.96));
    color: #17304a;
    box-shadow: 0 28px 60px -30px rgba(13, 83, 153, 0.32);
}

.area-contact-cta .faq-cta__inner::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, #1bc0d8, #168bc9 52%, #1767c8);
    content: "";
}

.area-contact-cta__decor {
    position: absolute;
    z-index: 0;
    right: -82px;
    bottom: -128px;
    width: 390px;
    aspect-ratio: 1;
    background: url("../img/area-contact-window-generated.webp") center / contain no-repeat;
    opacity: .24;
    filter: saturate(.82);
    pointer-events: none;
}

.area-contact-cta .faq-cta__kicker {
    color: #178bc9;
    font-weight: 700;
}

.area-contact-cta h2 {
    color: #17304a;
}

.area-contact-cta .faq-cta__lead {
    color: #51697d;
}

.area-contact-cta .faq-cta__btn--form {
    background: linear-gradient(135deg, #1bc0d8, #1767c8);
    box-shadow: 0 14px 28px -12px rgba(23, 103, 200, 0.48);
}

.area-contact-cta .faq-cta__btn--line {
    background: linear-gradient(135deg, #28c75c, #18a94a);
    box-shadow: 0 14px 28px -12px rgba(22, 122, 56, 0.46);
}

.area-contact-cta .faq-cta__btn--phone {
    border: 1px solid rgba(23, 103, 200, 0.28);
    background: rgba(255, 255, 255, 0.78);
    color: #1767c8;
    box-shadow: 0 12px 24px -16px rgba(13, 83, 153, 0.35);
}

.area-contact-cta .faq-cta__note {
    color: #71899c;
}

@media (max-width: 767px) {
    .area-contact-cta {
        padding: 64px 0 76px;
    }

    .area-contact-cta .faq-cta__inner {
        padding: 44px 22px 38px;
        border-radius: 22px;
    }

    .area-contact-cta__decor {
        top: -48px;
        right: -78px;
        bottom: auto;
        width: 230px;
        opacity: .13;
    }
}

/* 白山市ページ：トップページのお客様の声を地域LP向けに再構成 */
.area-voice {
    position: relative;
    padding: clamp(82px, 9vw, 128px) 0 clamp(88px, 10vw, 138px);
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, .92) 0 5%, transparent 28%),
        radial-gradient(circle at 88% 78%, rgba(91, 193, 226, .18), transparent 30%),
        linear-gradient(145deg, #eef9fd 0%, #d8eef8 48%, #edf7fc 100%);
    color: #17304a;
    font-family: "Zen Kaku Gothic New", var(--font);
}

.area-voice::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: radial-gradient(rgba(23, 103, 200, .12) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: .26;
    content: "";
}

.area-voice__circle {
    position: absolute;
    z-index: -1;
    display: block;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 50%;
    background: rgba(255, 255, 255, .24);
    box-shadow: inset 0 0 34px rgba(75, 176, 221, .14);
    pointer-events: none;
}

.area-voice__circle--left {
    top: 19%;
    left: -76px;
    width: 190px;
    height: 190px;
}

.area-voice__circle--right {
    right: -54px;
    bottom: 9%;
    width: 140px;
    height: 140px;
}

.area-voice__inner {
    position: relative;
    z-index: 1;
    width: min(1100px, calc(100% - 80px));
    margin: 0 auto;
}

.area-voice__head {
    text-align: center;
}

.area-voice__kicker {
    margin: 0;
}

.area-voice__head .section-title {
    margin-top: 28px;
    color: #17304a;
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 900;
    letter-spacing: .08em;
}

.area-voice__lead.section-lead {
    max-width: 680px;
    margin: 20px auto 0;
    color: #526d82;
    font-size: clamp(14px, 1.45vw, 16px);
    line-height: 1.9;
    letter-spacing: .05em;
    text-align: center;
}

.area-voice__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.2vw, 26px);
    margin-top: clamp(44px, 6vw, 68px);
}

.area-voice__cards--single {
    grid-template-columns: minmax(0, 350px);
    justify-content: center;
}

.area-voice__cards--two {
    grid-template-columns: repeat(2, minmax(0, 350px));
    justify-content: center;
}

.area-voice-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(44, 142, 196, .2);
    border-radius: 24px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 22px 52px -26px rgba(13, 83, 153, .42), inset 0 1px 0 rgba(255, 255, 255, .98);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition: transform .25s ease, box-shadow .25s ease;
}

.area-voice-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 3;
    height: 5px;
    background: linear-gradient(90deg, #1bc0d8, #168bc9 52%, #1767c8);
    content: "";
}

@media (hover: hover) {
    .area-voice-card:hover {
        box-shadow: 0 28px 58px -24px rgba(13, 83, 153, .5), inset 0 1px 0 #fff;
        transform: translateY(-6px);
    }
}

.area-voice-card__image {
    aspect-ratio: 16 / 9;
    margin: 0;
    overflow: hidden;
    background: #dcecf4;
}

.area-voice-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.area-voice-card__body {
    position: relative;
    min-height: 240px;
    padding: 34px 28px 26px;
}

.area-voice-card__quote {
    position: absolute;
    top: 13px;
    left: 21px;
    color: rgba(23, 139, 201, .16);
    font-family: Georgia, serif;
    font-size: 82px;
    line-height: 1;
}

.area-voice-card__illustration {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 78px;
    height: auto;
    opacity: .18;
    pointer-events: none;
}

.area-voice-card__text {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #29445d;
    font-size: 14px;
    font-weight: 600;
    line-height: 2;
    letter-spacing: .045em;
}

.area-voice-card__name {
    position: relative;
    z-index: 1;
    width: fit-content;
    margin: 24px 0 0 auto;
    padding: 7px 13px;
    border-radius: 999px;
    background: #edf7fc;
    color: #1767c8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
}

@media (max-width: 900px) {
    .area-voice__cards,
    .area-voice__cards--two {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .area-voice {
        padding: 60px 0 78px;
    }

    .area-voice__inner {
        width: calc(100% - 40px);
    }

    .area-voice__head .section-title {
        margin-top: 22px;
        font-size: 30px;
    }

    .area-voice__lead.section-lead {
        margin-top: 16px;
        font-size: 13.5px;
        line-height: 1.85;
    }

    .area-voice__cards,
    .area-voice__cards--single,
    .area-voice__cards--two {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 38px;
    }

    .area-voice-card {
        border-radius: 20px;
    }

    .area-voice-card__body {
        min-height: 0;
        padding: 30px 22px 24px;
    }

    .area-voice-card__text {
        font-size: 13.5px;
        line-height: 1.95;
    }

    .area-voice__circle--left {
        left: -96px;
    }
}
