:root {
    --navy: #103f63;
    /* 深いネイビー */
    --navy-2: #155986;
    --blue: #1f6fb2;
    /* メインブルー */
    --blue-d: #1a5f9c;
    --sky: #57b5ea;
    /* ライトブルー */
    --sky-soft: #dcebfa;
    /* (unused safeguard) */
    --ink: #1c2c3a;
    /* 本文 */
    --paper: #ffffff;
    --bg: #eff8fe;
    /* 青みのある明るい背景 */
    --bg-2: #d9edfa;
    --line: rgba(255, 255, 255, .12);
    --line-d: rgba(12, 39, 66, .10);
    --accent: #f3a526;
    /* 温かみのある琥珀（CTA差し色） */
    --accent-d: #e08f12;
    --muted: #65788a;
    --maxw: 1160px;
    --jp: "Zen Kaku Gothic New", -apple-system, sans-serif;
    --min: "Zen Old Mincho", serif;
    --en: "Jost", sans-serif;
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--jp);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.85;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

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

img {
    max-width: 100%;
    display: block
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px
}

.en {
    font-family: var(--en);
    letter-spacing: .04em
}

.min {
    font-family: var(--min)
}


/* ---------- HEADER ---------- */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: .35s ease;
    padding: 18px 0
}

header.scrolled {
    background: rgba(12, 39, 66, .95);
    backdrop-filter: blur(8px);
    padding: 11px 0;
    box-shadow: 0 6px 24px rgba(12, 39, 66, .25)
}

.hdr-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #fff
}

.logo .mark {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    background: #fff;
    display: grid;
    place-items: center;
    border-radius: 12px;
    padding: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .18)
}

.logo .mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block
}

.logo .nm {
    font-weight: 900;
    font-size: 19px;
    letter-spacing: .02em;
    line-height: 1.2;
    font-family: var(--min)
}

.logo .nm small {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .3em;
    color: var(--sky);
    font-family: var(--en)
}

.hdr-right {
    display: flex;
    align-items: center;
    gap: 20px
}

.hdr-tel {
    color: #fff;
    text-align: right;
    line-height: 1.15
}

.hdr-tel small {
    display: block;
    font-size: 10.5px;
    letter-spacing: .16em;
    color: var(--sky);
    font-weight: 700
}

.hdr-tel b {
    font-family: var(--en);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: .01em
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    letter-spacing: .03em;
    padding: 14px 26px;
    border-radius: 999px;
    transition: .25s ease;
    cursor: pointer;
    border: none;
    font-family: var(--jp);
    font-size: 15px
}

.btn-accent {
    background: var(--accent);
    color: var(--navy);
    box-shadow: 0 8px 22px rgba(243, 165, 38, .4)
}

.btn-accent:hover {
    background: var(--accent-d);
    transform: translateY(-2px)
}

.btn-blue {
    background: #fff;
    color: var(--blue)
}

.hamburger {
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    display: flex;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: #fff;
    transition: .3s;
    border-radius: 2px
}


/* ---------- HERO ---------- */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    padding-top: 96px;
    background: radial-gradient(130% 100% at 78% 8%, #2b86c4 0%, #134c75 48%, #0f4067 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1.4px);
    background-size: 26px 26px;
    mask-image: radial-gradient(circle at 75% 35%, #000, transparent 72%);
    pointer-events: none
}


/* 家のシルエット装飾 */

.hero-house {
    display: none
}

.hero-glow {
    position: absolute;
    left: -14%;
    top: -18%;
    width: 46vw;
    height: 46vw;
    max-width: 560px;
    background: radial-gradient(circle, var(--sky), transparent 65%);
    opacity: .22;
    filter: blur(20px);
    border-radius: 50%;
    pointer-events: none
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 54px 24px;
    width: 100%
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--en);
    font-weight: 500;
    letter-spacing: .16em;
    font-size: 13.5px;
    color: var(--sky);
    margin-bottom: 26px;
    opacity: 0;
    animation: rise .8s .1s forwards
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--accent)
}

.hero h1 {
    font-family: var(--min);
    font-weight: 900;
    font-size: clamp(31px, 5.4vw, 60px);
    line-height: 1.42;
    letter-spacing: .02em;
    margin-bottom: 26px
}

.hero h1 .lines span {
    display: block;
    opacity: 0;
    animation: rise .9s forwards
}

.hero h1 .lines span:nth-child(1) {
    animation-delay: .16s
}

.hero h1 .lines span:nth-child(2) {
    animation-delay: .3s
}

.hero h1 .hl {
    color: #fff;
    background: linear-gradient(transparent 58%, rgba(243, 165, 38, .5) 58%);
    padding: 0 .08em
}

.hero h1 .sky {
    color: var(--sky)
}

.hero p.lead {
    font-size: clamp(15px, 1.7vw, 18.5px);
    max-width: 600px;
    color: #cfe0ee;
    font-weight: 500;
    margin-bottom: 38px;
    line-height: 1.9;
    opacity: 0;
    animation: rise .9s .55s forwards
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    opacity: 0;
    animation: rise .9s .7s forwards
}

.hero-cta .btn {
    padding: 18px 36px;
    font-size: 17px
}

.hero-tel {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.hero-tel small {
    font-size: 12px;
    letter-spacing: .12em;
    color: var(--sky);
    font-weight: 700
}

.hero-tel b {
    font-family: var(--en);
    font-size: 29px;
    font-weight: 600;
    color: #fff;
    line-height: 1
}

.hero-tel em {
    font-style: normal;
    font-size: 12px;
    color: #9fb4c6
}

.trust {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--line);
    background: rgba(0, 0, 0, .18)
}

.trust-grid {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.trust-grid .t {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff
}

.trust-grid .t b {
    font-family: var(--min);
    font-weight: 700;
    font-size: clamp(17px, 2vw, 21px);
    color: var(--accent);
    line-height: 1.3
}

.trust-grid .t span {
    font-size: 12px;
    color: #bccddc;
    letter-spacing: .03em;
    margin-top: 5px
}


/* ---------- SECTION ---------- */

.pad {
    padding: clamp(62px, 9vw, 114px) 0
}

.sec-head {
    margin-bottom: 50px
}

.sec-head .kk {
    display: block;
    font-family: var(--en);
    font-weight: 500;
    letter-spacing: .2em;
    color: var(--blue);
    font-size: 13px;
    margin-bottom: 12px
}

.sec-head h2 {
    font-family: var(--min);
    font-weight: 900;
    font-size: clamp(25px, 3.8vw, 40px);
    line-height: 1.45;
    letter-spacing: .02em
}

.sec-head h2 .u {
    background: linear-gradient(transparent 60%, rgba(74, 159, 216, .32) 60%);
    padding: 0 .05em
}

.sec-head p {
    margin-top: 18px;
    color: var(--muted);
    max-width: 660px;
    font-weight: 500
}

.center {
    text-align: center
}

.center .sec-head {
    margin-left: auto;
    margin-right: auto
}

.center .sec-head p {
    margin-left: auto;
    margin-right: auto
}

.rv {
    opacity: 0;
    transform: translateY(32px);
    transition: .8s cubic-bezier(.2, .7, .2, 1)
}

.rv.in {
    opacity: 1;
    transform: none
}


/* ---------- お悩み ---------- */

.worry {
    background: var(--bg)
}

.worry-lead {
    text-align: center;
    font-family: var(--min);
    font-weight: 700;
    font-size: clamp(20px, 3vw, 30px);
    line-height: 1.6;
    margin-bottom: 46px
}

.worry-lead .b {
    color: var(--blue)
}

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

.wc {
    background: var(--paper);
    border-radius: 16px;
    padding: 28px 26px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(12, 39, 66, .07);
    border: 1px solid var(--line-d)
}

.wc .ck {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bg-2);
    color: var(--blue);
    display: grid;
    place-items: center;
    margin-top: 2px
}

.wc p {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.7
}

.worry-arrow {
    text-align: center;
    margin-top: 46px;
    font-family: var(--min);
    font-weight: 700;
    font-size: clamp(18px, 2.6vw, 26px);
    color: var(--navy)
}

.worry-arrow .hl {
    color: var(--blue);
    background: linear-gradient(transparent 60%, rgba(74, 159, 216, .3) 60%)
}

.worry-inner {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 44px;
    align-items: center
}

.worry-photo {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 18px 44px rgba(12, 39, 66, .14);
    border: 1px solid var(--line-d);
    background: #e3f1fb
}

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

.worry-lead--left {
    text-align: left;
    margin-bottom: 26px
}

.worry-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

@media(max-width:860px) {
    .worry-inner {
        grid-template-columns: 1fr;
        gap: 26px
    }
    .worry-photo {
        aspect-ratio: 16/10;
        max-height: 360px
    }
    .worry-lead--left {
        text-align: center
    }
}

@media(max-width:560px) {
    .worry-list {
        grid-template-columns: 1fr
    }
}


/* ---------- 空き家の可能性 ---------- */

.risk {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(180deg, rgba(10, 42, 68, .60) 0%, rgba(12, 52, 82, .34) 42%, rgba(9, 40, 66, .72) 100%), url("../images/bg-conci.jpg") no-repeat
}

.risk .sec-head h2 {
    color: #fff
}

.risk .sec-head p {
    color: #eef4fa;
    text-shadow: 0 1px 12px rgba(5, 18, 32, .72)
}

.risk .sec-head .kk {
    color: #bfe3ff;
    text-shadow: 0 1px 10px rgba(5, 18, 32, .6)
}

.risk-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    position: relative;
    z-index: 2
}

.rk {
    background: rgba(10, 32, 54, .44);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 14px;
    padding: 26px 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start
}

.rk .ic {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(243, 165, 38, .16);
    border: 1px solid var(--accent);
    color: var(--accent);
    display: grid;
    place-items: center
}

.rk h3 {
    font-family: var(--min);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px
}

.rk p {
    font-size: 14px;
    color: #dbe6f1;
    font-weight: 500
}

.rk .big {
    font-family: var(--en);
    font-weight: 600;
    color: var(--accent);
    font-size: 1.05em
}

.rk h3 .kw {
    color: var(--accent);
    font-weight: 900
}

.risk .sec-head p .kw {
    color: var(--accent);
    font-weight: 700
}

.risk .sec-head h2 .hl {
    color: #fff;
    background: linear-gradient(transparent 56%, rgba(243, 165, 38, .55) 56%);
    padding: 0 .08em
}

.risk-note {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 42px;
    font-family: var(--min);
    font-weight: 700;
    font-size: clamp(17px, 2.4vw, 24px);
    line-height: 1.6;
    text-shadow: 0 2px 14px rgba(5, 18, 32, .6)
}

.risk-note .hl {
    color: var(--accent)
}


/* ---------- ワンストップ（核） ---------- */

.onestop {
    background: var(--bg)
}

.os-flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 18px
}

.os-step {
    background: var(--paper);
    border: 1px solid var(--line-d);
    border-radius: 14px;
    padding: 24px 16px 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 24px rgba(12, 39, 66, .06)
}

.os-step .n {
    width: 42px;
    height: 42px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: var(--en);
    font-weight: 600;
    font-size: 18px
}

.os-step h3 {
    font-size: 14.5px;
    font-weight: 900;
    margin-bottom: 5px
}

.os-step p {
    font-size: 12px;
    color: var(--muted)
}

.os-step::after {
    content: "›";
    position: absolute;
    right: -9px;
    top: 38px;
    color: var(--blue);
    font-size: 26px;
    font-weight: 700;
    font-family: var(--en)
}

.os-step:last-child::after {
    display: none
}

.os-cap {
    text-align: center;
    color: var(--muted);
    font-size: 13.5px;
    margin-bottom: 44px
}

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

.exit {
    background: linear-gradient(170deg, var(--paper), #eef8ff);
    border: 1px solid var(--line-d);
    border-top: 4px solid var(--blue);
    border-radius: 14px;
    padding: 30px 24px;
    text-align: center;
    transition: .3s
}

.exit:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(12, 39, 66, .12)
}

.exit .ic {
    width: 62px;
    height: 62px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--bg);
    color: var(--blue);
    display: grid;
    place-items: center
}

.exit h3 {
    font-family: var(--min);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 9px
}

.exit p {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500
}

.exit .lbl {
    display: inline-block;
    font-family: var(--en);
    font-size: 11px;
    letter-spacing: .12em;
    color: var(--blue);
    margin-bottom: 10px;
    font-weight: 600
}


/* ---------- 選ばれる理由 ---------- */

.reason {
    background: var(--paper)
}

.reason-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.rs {
    position: relative;
    padding: 38px 30px 32px;
    border-radius: 16px;
    background: linear-gradient(180deg, #eef8ff, #ffffff);
    border: 1px solid var(--line-d);
    box-shadow: 0 14px 34px rgba(12, 39, 66, .06)
}

.rs .no {
    font-family: var(--en);
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    background: var(--accent);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 18px
}

.rs .no b {
    font-size: 24px;
    color: var(--navy)
}

.rs h3 {
    font-family: var(--min);
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 13px;
    line-height: 1.45
}

.rs p {
    font-size: 14.5px;
    color: var(--steel, #4a5b6b);
    font-weight: 500
}


/* ---------- 費用・補助金 ---------- */

.cost {
    background: radial-gradient(85% 70% at 90% 4%, rgba(243, 165, 38, .13), transparent 56%), linear-gradient(165deg, #fdf8f0 0%, #f6ecda 100%);
    color: var(--navy);
    overflow: hidden
}

.cost-inner {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 48px;
    align-items: center
}

.cost .sec-head h2 {
    color: var(--navy)
}

.cost-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 6px
}

.cost-list .row {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 18px 22px;
    background: #fffdf8;
    border: 1px solid #ecdfc9;
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(120, 90, 30, .06)
}

.cost-list .row .ic {
    color: var(--accent);
    flex: 0 0 auto;
    margin-top: 2px
}

.cost-list .row b {
    display: block;
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 3px;
    color: var(--navy)
}

.cost-list .row span {
    font-size: 13.5px;
    color: var(--muted)
}

.cost-card {
    background: linear-gradient(160deg, var(--blue), var(--navy));
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    padding: 42px 34px;
    text-align: center;
    box-shadow: 0 26px 54px rgba(0, 0, 0, .3)
}

.cost-card small {
    letter-spacing: .16em;
    font-weight: 700;
    font-size: 12.5px;
    color: var(--sky)
}

.cost-card .big {
    font-family: var(--en);
    font-weight: 600;
    font-size: clamp(48px, 8vw, 84px);
    line-height: 1;
    margin: 8px 0;
    color: #fff
}

.cost-card .big em {
    font-style: normal;
    font-size: .34em;
    vertical-align: top;
    color: var(--accent)
}

.cost-card p {
    font-size: 13.5px;
    color: #d2e0ed;
    margin-top: 6px
}

.cost-card .btn {
    margin-top: 24px
}


/* ---------- 流れ ---------- */

.flow {
    background: var(--bg)
}

.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px
}

.step {
    background: var(--paper);
    border: 1px solid var(--line-d);
    border-radius: 14px;
    padding: 28px 18px 22px;
    position: relative;
    text-align: center;
    box-shadow: 0 8px 22px rgba(12, 39, 66, .05)
}

.step .n {
    width: 46px;
    height: 46px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: var(--en);
    font-weight: 600;
    font-size: 20px
}

.step:nth-child(odd) .n {
    background: var(--blue)
}

.step h3 {
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 7px
}

.step p {
    font-size: 12.5px;
    color: var(--muted);
    font-weight: 500
}

.step::after {
    content: "";
    position: absolute;
    right: -9px;
    top: 48px;
    width: 18px;
    height: 2px;
    background: var(--blue)
}

.step:last-child::after {
    display: none
}


/* ---------- 事例 ---------- */

.cases {
    background: var(--paper)
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.case {
    border: 1px solid var(--line-d);
    border-radius: 14px;
    overflow: hidden;
    transition: .3s;
    background: var(--paper)
}

.case:hover {
    box-shadow: 0 18px 38px rgba(12, 39, 66, .12);
    transform: translateY(-4px)
}

.case .ph {
    height: 190px;
    background: #cfe6f7;
    position: relative;
    overflow: hidden
}

.case .ph .illus {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block
}

.case .ph .lbl {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent);
    color: var(--navy);
    font-size: 11px;
    font-weight: 900;
    padding: 5px 13px;
    border-radius: 999px;
    letter-spacing: .04em
}

.case .ph .note {
    font-size: 12px;
    letter-spacing: .1em
}

.case .bd {
    padding: 24px 22px
}

.case .bd h3 {
    font-family: var(--min);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.5
}

.case .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px
}

.case .meta span {
    font-size: 11.5px;
    background: var(--bg);
    color: var(--blue);
    padding: 4px 12px;
    border-radius: 999px;
    font-weight: 700
}


/* ---------- 声 ---------- */

.voice {
    background: var(--bg)
}

.voice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.vc {
    background: var(--paper);
    border-radius: 16px;
    padding: 30px 28px;
    box-shadow: 0 10px 28px rgba(12, 39, 66, .07);
    position: relative;
    border: 1px solid var(--line-d)
}

.vc::before {
    content: "”";
    position: absolute;
    top: 8px;
    right: 22px;
    font-family: var(--min);
    font-size: 64px;
    color: var(--bg-2);
    line-height: 1
}

.vc .stars {
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-size: 15px
}

.vc p {
    font-size: 14.5px;
    color: var(--ink);
    font-weight: 500;
    position: relative;
    z-index: 1
}

.vc .who {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 12px
}

.vc .who .av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-family: var(--min)
}

.vc .who b {
    font-size: 13.5px;
    display: block
}

.vc .who small {
    font-size: 12px;
    color: var(--muted)
}


/* ---------- FAQ ---------- */

.faq {
    background: var(--paper)
}

.faq-list {
    max-width: 840px;
    margin: 0 auto
}

.qa {
    border: 1px solid var(--line-d);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg)
}

.qa .q {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    cursor: pointer;
    font-weight: 900;
    font-size: 15.5px;
    user-select: none;
    transition: .2s
}

.qa .q:hover {
    background: var(--bg-2)
}

.qa .q .mk {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    background: var(--blue);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--min);
    font-weight: 700;
    font-size: 15px
}

.qa .q .plus {
    margin-left: auto;
    font-size: 22px;
    color: var(--accent-d);
    transition: .3s;
    font-weight: 400
}

.qa.open .q .plus {
    transform: rotate(45deg)
}

.qa .a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    background: var(--paper)
}

.qa .a .in {
    padding: 4px 22px 22px 66px;
    font-size: 14px;
    color: var(--muted);
    font-weight: 500
}


/* ---------- 会社概要 ---------- */

.company {
    background: var(--navy);
    color: #fff
}

.company .sec-head h2 {
    color: #fff
}

.comp-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 46px;
    align-items: start
}

.comp-map {
    margin-top: 40px
}

.comp-map h3 {
    font-size: 16px;
    color: var(--sky);
    font-weight: 700;
    letter-spacing: .03em;
    margin-bottom: 14px
}

.comp-map .frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16/7;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .28)
}

.comp-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(.1)
}

.comp-map .maplink {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--sky);
    text-decoration: none
}

.comp-map .maplink:hover {
    text-decoration: underline
}

@media(max-width:760px) {
    .comp-map .frame {
        aspect-ratio: 4/3
    }
}

.comp-table {
    width: 100%;
    border-collapse: collapse
}

.comp-table th,
.comp-table td {
    text-align: left;
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 14.5px;
    vertical-align: top
}

.comp-table th {
    width: 34%;
    color: var(--sky);
    font-weight: 700;
    letter-spacing: .03em
}

.comp-table td {
    color: #d3dfeb;
    font-weight: 500
}

.lic {
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px
}

.lic h3 {
    font-family: var(--min);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--accent)
}

.lic ul {
    list-style: none
}

.lic li {
    padding: 11px 0;
    border-bottom: 1px dashed var(--line);
    font-size: 13.5px;
    color: #cad7e3;
    display: flex;
    gap: 10px
}

.lic li:last-child {
    border: none
}

.lic li::before {
    content: "✓";
    color: var(--sky);
    font-weight: 900
}


/* ---------- CTA / フォーム ---------- */

.cta {
    background: radial-gradient(110% 120% at 100% 0%, #2e7fbd, transparent 52%), linear-gradient(180deg, #134c75, #0f4067);
    color: #fff
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 52px;
    align-items: center
}

.cta h2 {
    font-family: var(--min);
    font-weight: 900;
    font-size: clamp(26px, 4.2vw, 42px);
    line-height: 1.45;
    margin-bottom: 22px
}

.cta h2 .hl {
    background: linear-gradient(transparent 58%, rgba(243, 165, 38, .5) 58%);
    padding: 0 .08em
}

.cta .lead {
    color: #c4d2df;
    margin-bottom: 32px;
    font-size: 15.5px
}

.cta-tel {
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px 28px;
    margin-bottom: 14px;
    display: block
}

.cta-tel small {
    letter-spacing: .12em;
    color: var(--sky);
    font-weight: 700;
    font-size: 12.5px
}

.cta-tel b {
    display: block;
    font-family: var(--en);
    font-size: clamp(30px, 5vw, 44px);
    font-weight: 600;
    line-height: 1.1
}

.cta-tel em {
    font-style: normal;
    color: #9fb4c6;
    font-size: 12.5px
}

.form {
    background: var(--paper);
    color: var(--ink);
    border-radius: 18px;
    padding: 38px 34px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .4)
}

.form h3 {
    font-family: var(--min);
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 6px
}

.form .sub {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 22px
}

.fg {
    margin-bottom: 16px
}

.fg label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 7px
}

.fg label .req {
    color: var(--accent-d);
    font-size: 11px;
    margin-left: 6px
}

.fg input,
.fg select,
.fg textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1.5px solid var(--bg-2);
    border-radius: 10px;
    font-family: var(--jp);
    font-size: 15px;
    background: var(--bg);
    transition: .2s;
    color: var(--ink)
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    outline: none;
    border-color: var(--blue);
    background: #fff
}

.fg textarea {
    resize: vertical;
    min-height: 90px
}

.form .submit {
    width: 100%;
    justify-content: center;
    padding: 17px;
    font-size: 16px;
    margin-top: 6px
}

.form .privacy {
    font-size: 11.5px;
    color: var(--muted);
    margin-top: 14px;
    text-align: center
}

.form-done {
    display: none;
    text-align: center;
    padding: 30px 10px
}

.form-done .ic {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: grid;
    place-items: center
}

.form-done h3 {
    font-size: 20px;
    margin-bottom: 8px
}

.form-done p {
    font-size: 14px;
    color: var(--muted)
}


/* ---------- FOOTER ---------- */

footer {
    background: #0c3553;
    color: #94a7b8;
    padding: 54px 0 130px
}

.ft-top {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--line)
}

.ft-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #fff
}

.ft-logo .mark {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    background: #fff;
    display: grid;
    place-items: center;
    border-radius: 10px;
    padding: 4px
}

.ft-logo .mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block
}

.ft-logo b {
    font-size: 17px;
    font-weight: 900;
    font-family: var(--min)
}

.ft-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap
}

.ft-nav a {
    font-size: 13.5px;
    transition: .2s
}

.ft-nav a:hover {
    color: var(--sky)
}

.ft-bottom {
    padding-top: 24px;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px
}


/* ---------- 固定CTA（モバイル） ---------- */

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 90;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--navy);
    box-shadow: 0 -6px 20px rgba(0, 0, 0, .25)
}

.sticky-cta a {
    padding: 14px 8px;
    text-align: center;
    font-weight: 900;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px
}

.sticky-cta a small {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .06em;
    opacity: .85
}

.sticky-cta .tel {
    background: var(--navy);
    color: #fff
}

.sticky-cta .est {
    background: var(--accent);
    color: var(--navy)
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(26px)
    }
    to {
        opacity: 1;
        transform: none
    }
}


/* ---------- レスポンシブ ---------- */

@media(max-width:920px) {
    .worry-grid,
    .reason-grid,
    .case-grid,
    .voice-grid {
        grid-template-columns: 1fr 1fr
    }
    .exits {
        grid-template-columns: 1fr 1fr
    }
    .os-flow,
    .steps {
        grid-template-columns: repeat(3, 1fr)
    }
    .os-step::after,
    .step::after {
        display: none
    }
    .risk-grid {
        grid-template-columns: 1fr
    }
    .cost-inner,
    .comp-inner,
    .cta-inner {
        grid-template-columns: 1fr
    }
    .hdr-tel {
        display: none
    }
}

@media(max-width:640px) {
    .hero-bg {
        object-position: center 60%
    }
    .hdr-right .btn:not(.hamburger) {
        display: none
    }
    .hamburger {
        display: flex
    }
    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px 12px
    }
    .worry-grid,
    .reason-grid,
    .case-grid,
    .voice-grid,
    .exits,
    .os-flow,
    .steps {
        grid-template-columns: 1fr
    }
    .hero-cta {
        flex-direction: column;
        align-items: stretch
    }
    .hero-cta .btn {
        justify-content: center
    }
    .sticky-cta {
        display: grid
    }
    footer {
        padding-bottom: 118px
    }
    .wrap {
        padding: 0 18px
    }
}

.mnav {
    position: fixed;
    inset: 0;
    background: rgba(10, 33, 56, .98);
    z-index: 999;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 300px;
    left: auto;
    right: 0;
}

.mnav.show {
    display: flex
}

.mnav a {
    color: #fff;
    font-size: 19px;
    font-weight: 900;
    padding: 13px;
    font-family: var(--min)
}

.mnav .close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 34px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    z-index: 0;
    opacity: .92
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(95deg, rgba(11, 44, 72, .92) 0%, rgba(11, 44, 72, .78) 34%, rgba(11, 44, 72, .4) 64%, rgba(11, 44, 72, .34) 100%), linear-gradient(180deg, transparent 58%, rgba(11, 44, 72, .55) 86%, rgba(11, 44, 72, .82) 100%)
}

.case .ph .lbl {
    z-index: 3
}

.case .ph .ph-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    display: block
}

.concierge {
    background: radial-gradient(75% 90% at 88% -12%, rgba(87, 181, 234, .28), transparent 55%), linear-gradient(155deg, #1c5d89 0%, #154f78 42%, #0d3a5c 100%);
    color: #fff;
    position: relative;
    overflow: hidden
}

.concierge::before {
    content: "";
    position: absolute;
    left: -8%;
    bottom: -22%;
    width: 46vw;
    height: 46vw;
    max-width: 520px;
    background: radial-gradient(circle, #2e7fbd, transparent 65%);
    opacity: .45;
    filter: blur(12px);
    border-radius: 50%
}

.conc-inner {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2
}

.concierge .sec-head {
    margin-bottom: 24px
}

.concierge .sec-head h2 {
    color: #fff
}

.concierge .sec-head h2 .u {
    background: linear-gradient(transparent 58%, rgba(243, 165, 38, .45) 58%)
}

.conc-lead {
    color: #cdd9e4;
    font-size: 15.5px;
    margin-bottom: 26px;
    line-height: 1.95
}

.conc-lead strong {
    color: #fff
}

.conc-points {
    display: flex;
    flex-direction: column;
    gap: 13px
}

.conc-points .cp {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 17px 20px
}

.conc-points .cp .ic {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(243, 165, 38, .16);
    border: 1px solid var(--accent);
    color: var(--accent);
    display: grid;
    place-items: center
}

.conc-points .cp b {
    display: block;
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 3px
}

.conc-points .cp span {
    font-size: 13.5px;
    color: #bcc9d6;
    font-weight: 500
}

.conc-visual {
    justify-self: center;
    width: 100%;
    max-width: 430px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 32px 24px 24px
}

.conc-visual svg {
    width: 100%;
    height: auto;
    display: block
}

.conc-visual .conc-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px
}

.conc-visual .cap {
    text-align: center;
    margin-top: 14px;
    font-size: 13px;
    color: #bcc9d6
}

@media(max-width:860px) {
    .conc-inner {
        grid-template-columns: 1fr;
        gap: 34px
    }
    .conc-visual {
        order: -1;
        max-width: 360px
    }
}

.watch {
    background: var(--paper)
}

.watch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 6px
}

.wi {
    background: linear-gradient(180deg, #eef8ff, #fff);
    border: 1px solid var(--line-d);
    border-radius: 14px;
    padding: 24px 22px;
    text-align: left;
    transition: .3s
}

.wi:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(12, 39, 66, .1)
}

.wi .ic {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--bg);
    color: var(--blue);
    display: grid;
    place-items: center;
    margin-bottom: 14px
}

.wi b {
    display: block;
    font-size: 15.5px;
    font-weight: 900;
    margin-bottom: 6px
}

.wi span {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500
}

.wi b .opt {
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--accent);
    background: rgba(243, 165, 38, .14);
    border: 1px solid var(--accent);
    border-radius: 999px;
    padding: 2px 9px;
    letter-spacing: .03em
}

.watch-feature {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 34px;
    align-items: center;
    background: linear-gradient(160deg, #195a86, #0f4067);
    color: #fff;
    border-radius: 18px;
    padding: 38px 40px;
    margin-top: 30px;
    text-align: left
}

.watch-feature h3 {
    font-family: var(--min);
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px
}

.watch-feature h3 .pic {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: rgba(243, 165, 38, .16);
    border: 1px solid var(--accent);
    color: var(--accent);
    display: grid;
    place-items: center
}

.watch-feature p {
    font-size: 14px;
    color: #c8d4e0;
    font-weight: 500
}

.watch-plans {
    display: flex;
    flex-direction: column;
    gap: 11px
}

.watch-plans .wp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px 18px
}

.watch-plans .wp b {
    font-size: 15px;
    font-weight: 900
}

.watch-plans .wp em {
    font-style: normal;
    font-family: var(--en);
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: .04em
}

.watch-note {
    color: var(--muted);
    font-size: 12.5px;
    margin-top: 22px;
    line-height: 1.85;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto
}

.watch-emg {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    text-align: left;
    background: linear-gradient(160deg, #fff7ea, #fff);
    border: 1px solid #f3d49a;
    border-left: 4px solid var(--accent);
    border-radius: 14px;
    padding: 22px 26px;
    margin: 24px auto 0;
    max-width: 880px
}

.watch-emg .emg-ic {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(243, 165, 38, .14);
    color: var(--accent);
    display: grid;
    place-items: center
}

.watch-emg b {
    font-family: var(--min);
    font-size: 17px;
    color: var(--navy);
    display: block;
    margin-bottom: 6px
}

.watch-emg p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.8
}

@media(max-width:860px) {
    .watch-grid {
        grid-template-columns: 1fr 1fr
    }
    .watch-feature {
        grid-template-columns: 1fr;
        gap: 22px
    }
}

@media(max-width:560px) {
    .watch-grid {
        grid-template-columns: 1fr
    }
}

.about {
    background: #f6f1e8
}

.about .sec-head h2 {
    color: var(--ink)
}

.about .sec-head h2 .u {
    background: linear-gradient(transparent 58%, rgba(243, 165, 38, .4) 58%)
}

.about-photo {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 26px 56px rgba(80, 60, 30, .22);
    border: 7px solid #fff;
    max-width: 920px;
    margin: 0 auto;
    position: relative
}

.about-photo img {
    width: 100%;
    display: block
}

.about-cap {
    text-align: center;
    color: var(--muted);
    font-size: 13.5px;
    margin-top: 18px
}

.about-text {
    max-width: 760px;
    margin: 30px auto 0;
    text-align: center;
    color: #4a4031;
    font-size: 15.5px;
    line-height: 2;
    font-weight: 500
}

.about-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 30px
}

.about-chips span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #ecdcc2;
    color: #5b4a2e;
    font-weight: 700;
    font-size: 14px;
    padding: 11px 20px;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(80, 60, 30, .08)
}

.about-chips span::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent)
}

.subsidy .sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 6px
}

.sub-card {
    position: relative;
    background: linear-gradient(180deg, #eef8ff, #fff);
    border: 1px solid var(--line-d);
    border-radius: 16px;
    padding: 32px 30px;
    box-shadow: 0 12px 32px rgba(12, 39, 66, .07)
}

.sub-card .sub-tag {
    display: inline-block;
    font-family: var(--en);
    font-size: 12px;
    letter-spacing: .1em;
    font-weight: 600;
    color: #fff;
    background: var(--blue);
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 14px
}

.sub-card h3 {
    font-family: var(--min);
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 14px
}

.sub-card .amt {
    font-family: var(--min);
    font-weight: 700;
    font-size: 21px;
    color: var(--navy);
    display: flex;
    align-items: baseline;
    gap: 5px
}

.sub-card .amt b {
    font-family: var(--en);
    font-weight: 600;
    font-size: 52px;
    color: var(--blue);
    line-height: .9
}

.sub-card .amt-sub {
    color: var(--muted);
    font-size: 14px;
    margin: 6px 0 18px
}

.sub-card .amt-sub strong {
    color: var(--accent-d)
}

.sub-card ul {
    list-style: none;
    border-top: 1px dashed var(--line-d);
    padding-top: 16px
}

.sub-card li {
    font-size: 13.5px;
    color: var(--ink);
    font-weight: 500;
    padding: 6px 0 6px 26px;
    position: relative
}

.sub-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 900
}

.sub-note-small {
    text-align: center;
    color: var(--muted);
    font-size: 12.5px;
    margin-top: 16px
}

.sub-point {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    background: var(--navy);
    color: #fff;
    border-radius: 16px;
    padding: 32px 34px;
    margin-top: 30px
}

.sub-point-ic {
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: rgba(243, 165, 38, .16);
    border: 1px solid var(--accent);
    color: var(--accent);
    display: grid;
    place-items: center
}

.sub-point h3 {
    font-family: var(--min);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 12px
}

.sub-point p {
    font-size: 14px;
    color: #cdd9e4;
    font-weight: 500
}

.sub-point strong {
    color: var(--accent)
}

.sub-disclaimer {
    font-size: 12px;
    color: var(--muted);
    margin-top: 22px;
    line-height: 1.85
}

.sub-disclaimer a {
    color: var(--blue);
    text-decoration: underline
}

@media(max-width:760px) {
    .subsidy .sub-grid {
        grid-template-columns: 1fr
    }
    .sub-point {
        flex-direction: column;
        gap: 14px
    }
}

#cases .case-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 880px;
    margin: 0 auto;
    gap: 26px
}

#cases .case .ba {
    display: flex;
    height: 200px
}

#cases .case .ba figure {
    position: relative;
    flex: 1;
    margin: 0;
    overflow: hidden;
    background: #cfe6f7
}

#cases .case .ba figure+figure {
    border-left: 3px solid #fff
}

#cases .case .ba img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

#cases .case .ba figcaption {
    position: absolute;
    left: 10px;
    bottom: 10px;
    font-size: 11.5px;
    font-weight: 900;
    color: #fff;
    background: rgba(16, 63, 99, .85);
    padding: 3px 12px;
    border-radius: 999px;
    letter-spacing: .05em
}

#cases .case .ba figure.after figcaption {
    background: var(--blue)
}

#cases .case .bd .area {
    display: inline-block;
    background: var(--accent);
    color: var(--navy);
    font-size: 11.5px;
    font-weight: 900;
    padding: 4px 13px;
    border-radius: 999px;
    margin-bottom: 12px;
    letter-spacing: .04em
}

@media(max-width:760px) {
    #cases .case-grid {
        grid-template-columns: 1fr
    }
}

.column .col-intro-note {
    text-align: center;
    color: var(--muted);
    font-size: 12.5px;
    margin-top: -32px;
    margin-bottom: 40px
}

.col-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.col-card {
    background: var(--paper);
    border: 1px solid var(--line-d);
    border-radius: 16px;
    overflow: hidden;
    transition: .3s;
    display: flex;
    flex-direction: column;
    text-align: left
}

.col-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 42px rgba(12, 39, 66, .12)
}

.col-thumb {
    height: 132px;
    position: relative;
    display: grid;
    place-items: center;
    color: #fff
}

.col-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    font-size: 11.5px;
    font-weight: 900;
    color: #fff;
    background: rgba(0, 0, 0, .22);
    padding: 5px 13px;
    border-radius: 999px
}

.col-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1
}

.col-date {
    font-family: var(--en);
    font-size: 12.5px;
    color: var(--muted);
    letter-spacing: .04em;
    margin-bottom: 9px
}

.col-body h3 {
    font-size: 16.5px;
    font-weight: 900;
    line-height: 1.65;
    margin-bottom: 11px
}

.col-body p {
    font-size: 13.5px;
    color: var(--muted);
    font-weight: 500;
    flex: 1;
    line-height: 1.8
}

.col-more {
    margin-top: 15px;
    font-size: 13.5px;
    font-weight: 900;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.col-foot {
    text-align: center;
    margin-top: 42px
}

.btn-line {
    background: transparent;
    border: 2px solid var(--blue);
    color: var(--blue)
}

.btn-line:hover {
    background: var(--blue);
    color: #fff
}

@media(max-width:860px) {
    .col-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:560px) {
    .col-grid {
        grid-template-columns: 1fr
    }
}

.company .contact-card .row {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 13px 0;
    border-bottom: 1px dashed var(--line)
}

.company .contact-card .row:last-of-type {
    border: none
}

.company .contact-card .row span {
    font-size: 11.5px;
    color: var(--sky);
    letter-spacing: .06em;
    font-weight: 700
}

.company .contact-card .row b {
    font-size: 21px;
    color: #fff;
    letter-spacing: .02em;
    font-weight: 800
}

.company .contact-card .row b.mail {
    font-size: 15px
}

.lic-block {
    margin-top: 48px
}

.lic-block>h3 {
    font-family: var(--min);
    font-size: 21px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px
}

.lic-intro {
    color: #cdd9e5;
    font-size: 14px;
    line-height: 1.95;
    max-width: 880px;
    margin-bottom: 26px
}

.lic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.lic-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--line);
    border-radius: 13px;
    padding: 20px 20px 18px;
    display: flex;
    flex-direction: column
}

.lic-card .cat {
    font-size: 13.5px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 7px;
    line-height: 1.5
}

.lic-card .no {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 13px;
    color: var(--sky);
    font-weight: 700;
    margin-bottom: 9px;
    word-break: break-all
}

.lic-card .sc {
    font-size: 12.5px;
    color: #cdd9e5;
    line-height: 1.8;
    flex: 1
}

.lic-card .vd {
    font-size: 11.5px;
    color: #9fb2c2;
    margin-top: 11px;
    padding-top: 9px;
    border-top: 1px dashed var(--line)
}

.lic-note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 18px
}

@media(max-width:880px) {
    .lic-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:560px) {
    .lic-grid {
        grid-template-columns: 1fr
    }
}

.comp-photos {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 42px
}

.comp-photos figure {
    position: relative;
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    height: 262px;
    border: 1px solid var(--line)
}

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

.comp-photos figure img {
    object-position: center 28%
}

.comp-photos figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(7, 28, 45, .88));
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.6;
    padding: 30px 16px 13px
}

@media(max-width:760px) {
    .comp-photos {
        grid-template-columns: 1fr;
        gap: 12px
    }
    .comp-photos figure {
        height: 200px
    }
}