@charset "UTF-8";

/* ============================================
   1. CSS Variables
   ============================================ */
:root {
    /* ロゴカラー準拠：ダークシアン×aqua×ピンク */
    --c-navy:        #0a3a3d;  /* メイン暗色（見出し・ダーク背景の中間） */
    --c-navy-deep:   #042325;  /* 最深部 */
    --c-navy-light:  #15595c;  /* 中間 */
    --c-gold:        #00ffff;  /* aqua明（暗背景上の装飾線・英字ラベル） */
    --c-gold-light:  #99ffff;
    --c-gold-dark:   #047070;  /* 濃シアン（白背景の文字色用） */
    --c-pink:        #b53d72;  /* 濃ピンク（CTA・数字・チェックマーク用） */
    --c-pink-light:  #d85a8e;
    --c-pink-deep:   #8c2a5a;
    --c-em-blue:     #0099b8;  /* 強調用の濃い水色（em / 英字ラベル）視認性高 */
    --c-white:       #ffffff;
    --c-cream:       #f0f9f9;  /* 極薄aqua寄り */
    --c-gray-50:     #f5f7f7;
    --c-gray-100:    #e6eced;
    --c-gray-300:    #c0c8c9;
    --c-gray-500:    #7a8585;
    --c-gray-700:    #475353;
    --c-gray-900:    #1a2627;
    --c-text:        #1a2627;
    --c-text-sub:    #5a6868;
    --c-bg-soft:     #e8f3f3;

    --ff-jp-sans:    "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
    --ff-jp-serif:   "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "YuMincho", serif;
    --ff-en-display: "Cinzel", "Times New Roman", serif;

    --container:     1200px;
    --container-sm:  960px;
    --container-narrow: 880px;

    --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out:   cubic-bezier(0.65, 0, 0.35, 1);
}

/* ============================================
   2. Reset / Base
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--ff-jp-sans);
    font-weight: 400;
    color: var(--c-text);
    line-height: 1.8;
    background: var(--c-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s; }
a:hover { color: var(--c-gold); }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6, p, dl, dd { margin: 0; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; padding: 0; }
em { font-style: normal; color: var(--c-em-blue); }
.pc-only { display: inline; }
.sp-only { display: none; }
@media (max-width: 768px) {
    .pc-only { display: none; }
    .sp-only { display: inline; }
}

/* ============================================
   3. Layout helpers
   ============================================ */
.container { width: 100%; max-width: calc(var(--container) + 40px); margin: 0 auto; padding: 0 20px; }

.section-head { text-align: center; margin-bottom: 60px; }
.section-en {
    display: inline-block;
    font-family: var(--ff-en-display);
    font-size: 13px;
    letter-spacing: .35em;
    color: var(--c-gold-dark);  /* 白背景でも見える濃シアン */
    margin-bottom: 14px;
    position: relative;
    padding: 0 36px;
    font-weight: 700;
}
.section-en::before, .section-en::after {
    content: ""; position: absolute; top: 50%;
    width: 24px; height: 1px; background: var(--c-gold-dark);
}
/* 暗背景時はaqua明のまま映える */
.section-head--light .section-en { color: var(--c-gold); }
.section-head--light .section-en::before,
.section-head--light .section-en::after { background: var(--c-gold); }
.section-en::before { left: 0; }
.section-en::after { right: 0; }
.section-title {
    font-family: var(--ff-jp-serif);
    font-size: clamp(26px, 3.4vw, 40px);
    font-weight: 700;
    color: var(--c-navy);
    line-height: 1.5;
    letter-spacing: .04em;
}
.section-title em { color: var(--c-em-blue); font-style: normal; }
.section-desc {
    margin-top: 18px;
    font-size: 15px;
    color: var(--c-text-sub);
    line-height: 1.9;
}
.section-head--light .section-title { color: var(--c-white); }
.section-head--light .section-desc { color: rgba(255,255,255,.75); }

.text-gold { color: var(--c-em-blue); font-weight: 700; }

/* ============================================
   4. Buttons
   ============================================ */
.btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 18px 32px;
    font-size: 14px; font-weight: 700;
    letter-spacing: .15em;
    border-radius: 2px;
    transition: all .35s var(--ease-out);
    position: relative; overflow: hidden;
}
.btn__arrow { transition: transform .3s var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--gold {
    background: linear-gradient(135deg, var(--c-pink) 0%, var(--c-pink-light) 100%);
    color: var(--c-white);
    box-shadow: 0 10px 30px rgba(216,90,142,.35);
}
.btn--gold::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--c-pink-light) 0%, var(--c-pink) 100%);
    opacity: 0; transition: opacity .35s var(--ease-out);
}
.btn--gold > span { position: relative; z-index: 1; }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(216,90,142,.5); color: var(--c-white); }
.btn--gold:hover::before { opacity: 1; }

.btn--ghost {
    background: transparent;
    color: var(--c-white);
    border: 1px solid rgba(255,255,255,.4);
}
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: var(--c-gold); color: var(--c-gold); }

/* ============================================
   5. Header
   ============================================ */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(10,31,68,.0);
    transition: background .35s var(--ease-out), backdrop-filter .35s, box-shadow .35s;
    padding: 16px 0;
}
.site-header.is-scrolled {
    background: rgba(10,31,68,.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0,0,0,.15);
    padding: 12px 0;
}
.site-header__inner {
    max-width: calc(var(--container) + 40px);
    margin: 0 auto; padding: 0 20px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
}
.site-logo { display: inline-flex; align-items: center; gap: 14px; }
.site-logo__img { max-height: 48px; width: auto; transition: max-height .35s; }
.is-scrolled .site-logo__img { max-height: 40px; }
.site-logo__company {
    font-family: var(--ff-jp-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--c-white);
    letter-spacing: .08em;
    line-height: 1;
    white-space: nowrap;
    text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.is-scrolled .site-logo__company { font-size: 16px; }

.global-nav__list {
    display: flex; gap: 22px; align-items: center;
}
.global-nav__list li a {
    color: var(--c-white); font-size: 14px; font-weight: 500;
    letter-spacing: .08em; padding: 8px 0;
    position: relative;
}
.global-nav__list li a::after {
    content: ""; position: absolute; bottom: 2px; left: 50%;
    width: 0; height: 1px; background: var(--c-gold);
    transition: width .35s var(--ease-out), left .35s var(--ease-out);
}
.global-nav__list li a:hover { color: var(--c-gold); }
.global-nav__list li a:hover::after { width: 100%; left: 0; }

.header-cta--pc { display: flex; align-items: center; gap: 16px; }
.header-phone { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.2; }
.header-phone__label { font-size: 11px; color: rgba(255,255,255,.65); letter-spacing: .1em; }
.header-phone__number {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--c-white); font-size: 18px; font-weight: 700;
    font-family: var(--ff-en-display);
}
.header-phone__number svg { width: 16px; height: 16px; color: var(--c-gold); }
.cta-pill {
    display: inline-flex; align-items: center; gap: 12px;
    background: linear-gradient(135deg, var(--c-pink) 0%, var(--c-pink-light) 100%);
    color: var(--c-white); padding: 10px 20px;
    border-radius: 2px;
    transition: transform .3s, box-shadow .3s;
}
.cta-pill:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(216,90,142,.45); color: var(--c-white); }
.cta-pill__body { display: flex; flex-direction: column; line-height: 1.2; }
.cta-pill__title { font-size: 13px; font-weight: 700; }
.cta-pill__sub { font-size: 10px; letter-spacing: .15em; opacity: .8; }
.cta-pill__arrow { font-weight: 700; }

.hamburger { display: none; }
.nav-overlay { display: none; }

/* ============================================
   6. HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden;
    color: var(--c-white);
    padding: 120px 0 80px;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg-img {
    width: 100%; height: 100%; object-fit: cover;
    animation: kenBurns 28s ease-in-out infinite alternate;
}
.hero__bg-placeholder {
    width: 100%; height: 100%;
    background:
        radial-gradient(circle at 30% 40%, rgba(184,147,90,.25), transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(22,43,86,.5), transparent 60%),
        linear-gradient(135deg, var(--c-navy-deep) 0%, var(--c-navy) 50%, var(--c-navy-light) 100%);
    animation: kenBurns 28s ease-in-out infinite alternate;
}
.hero__bg-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(10,31,68,.55) 0%, rgba(10,31,68,.75) 100%);
}
@keyframes kenBurns {
    0%   { transform: scale(1)   translate(0, 0); }
    100% { transform: scale(1.12) translate(-2%, -2%); }
}

.hero__particles {
    position: absolute; inset: 0; pointer-events: none;
    z-index: 1;
}
.hero__particles span {
    position: absolute;
    width: 6px; height: 6px;
    background: var(--c-gold);
    border-radius: 50%;
    opacity: .25;
    animation: floatParticle 12s ease-in-out infinite;
    box-shadow: 0 0 12px rgba(184,147,90,.5);
}
.hero__particles span:nth-child(1) { top: 15%; left: 12%; animation-delay: 0s; }
.hero__particles span:nth-child(2) { top: 65%; left: 18%; animation-delay: 1.5s; }
.hero__particles span:nth-child(3) { top: 35%; left: 75%; animation-delay: 3s; }
.hero__particles span:nth-child(4) { top: 80%; left: 85%; animation-delay: 4.5s; }
.hero__particles span:nth-child(5) { top: 25%; left: 50%; animation-delay: 6s; }
.hero__particles span:nth-child(6) { top: 70%; left: 60%; animation-delay: 1s; width: 4px; height: 4px; }
.hero__particles span:nth-child(7) { top: 45%; left: 25%; animation-delay: 2.5s; width: 4px; height: 4px; }
.hero__particles span:nth-child(8) { top: 55%; left: 90%; animation-delay: 7s; width: 8px; height: 8px; }
.hero__particles span:nth-child(9) { top: 12%; left: 65%; animation-delay: 5s; width: 4px; height: 4px; }
.hero__particles span:nth-child(10){ top: 88%; left: 40%; animation-delay: 8s; width: 5px; height: 5px; }
@keyframes floatParticle {
    0%, 100% { transform: translateY(0) translateX(0); opacity: .2; }
    50%      { transform: translateY(-30px) translateX(15px); opacity: .5; }
}

.hero__inner {
    position: relative; z-index: 2;
    width: 100%; text-align: center;
}
.hero__brand {
    display: inline-flex; align-items: center; gap: 16px;
    margin-bottom: 36px;
}
.hero__brand-line { display: inline-block; width: 60px; height: 1px; background: var(--c-gold); }
.hero__brand-text {
    font-family: var(--ff-en-display);
    font-size: 13px; letter-spacing: .4em;
    color: var(--c-gold); font-weight: 700;
}
.hero__title {
    font-family: var(--ff-jp-serif);
    font-size: clamp(36px, 6.5vw, 84px);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: .04em;
    margin-bottom: 36px;
}
.hero__title-line { display: block; }
.hero__title em { color: var(--c-gold); font-style: normal; position: relative; }
.hero__title em::after {
    content: ""; position: absolute; bottom: -.08em; left: 0; right: 0;
    height: 2px; background: var(--c-pink);
    transform: scaleX(0); transform-origin: left;
    animation: lineGrow 1.2s 1.8s var(--ease-out) forwards;
}
@keyframes lineGrow { to { transform: scaleX(1); } }

.hero__lead {
    font-size: clamp(15px, 1.7vw, 18px);
    line-height: 2;
    color: rgba(255,255,255,.9);
    margin-bottom: 48px;
    max-width: 720px; margin-left: auto; margin-right: auto;
}
.hero__cta {
    display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 16px;
    margin-bottom: 100px;
}
.hero__scroll {
    display: inline-flex; flex-direction: column; align-items: center; gap: 12px;
    color: rgba(255,255,255,.6);
}
.hero__scroll-text { font-family: var(--ff-en-display); font-size: 11px; letter-spacing: .35em; }
.hero__scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--c-gold), transparent);
    position: relative; overflow: hidden;
}
.hero__scroll-line::before {
    content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 30%;
    background: var(--c-gold);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0%   { transform: translateY(-100%); }
    100% { transform: translateY(300%); }
}

/* ============================================
   7. INTRO
   ============================================ */
.intro {
    padding: 120px 0;
    background: var(--c-cream);
    position: relative;
}
.intro::before {
    content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 1px; height: 60px; background: var(--c-gold);
}
.intro__inner { max-width: var(--container-sm); margin: 0 auto; text-align: center; }
.intro__title {
    font-family: var(--ff-jp-serif);
    font-size: clamp(24px, 3.4vw, 38px);
    font-weight: 700;
    color: var(--c-navy);
    line-height: 1.6;
    letter-spacing: .04em;
    margin-bottom: 36px;
}
.intro__title em { color: var(--c-gold); font-style: normal; }
.intro__lead {
    font-size: 15px; line-height: 2.1;
    color: var(--c-gray-700);
    margin-bottom: 48px;
}
.intro__sign {
    display: inline-flex; align-items: center; gap: 20px;
    font-family: var(--ff-jp-serif);
    font-size: clamp(16px, 1.8vw, 19px);
    color: var(--c-navy);
    font-weight: 700;
    letter-spacing: .15em;
}
.intro__sign-line { display: inline-block; width: 40px; height: 1px; background: var(--c-gold); }

/* ============================================
   8. SERVICES
   ============================================ */
.services {
    padding: 120px 0;
    background: var(--c-white);
    position: relative;
}
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.service-card {
    background: var(--c-white);
    border: 1px solid var(--c-gray-100);
    transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .5s;
    will-change: transform;
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    border-color: var(--c-gold);
    box-shadow: 0 24px 60px rgba(10,31,68,.12);
}
.service-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--c-gold), var(--c-gold-light), var(--c-gold));
    transform: scaleX(0); transform-origin: left;
    transition: transform .6s var(--ease-out);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--c-navy);
}
.service-card__img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .8s var(--ease-out);
}
.service-card:hover .service-card__img { transform: scale(1.06); }
.service-card__img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(184,147,90,.5);
    background:
        radial-gradient(circle at 30% 30%, var(--c-navy-light), var(--c-navy-deep));
}
.service-card__img-placeholder svg { width: 60%; height: 60%; }
.service-card__num {
    position: absolute; top: 16px; left: 16px;
    font-family: var(--ff-en-display);
    font-size: 28px; font-weight: 900;
    color: var(--c-gold);
    letter-spacing: .05em;
    padding: 6px 14px;
    background: rgba(10,31,68,.85);
    border: 1px solid var(--c-gold);
}
.service-card__body { padding: 32px 28px 36px; }
.service-card__en {
    font-family: var(--ff-en-display);
    font-size: 12px; letter-spacing: .3em;
    color: var(--c-em-blue); font-weight: 700;
    display: block; margin-bottom: 8px;
}
.service-card__title {
    font-family: var(--ff-jp-serif);
    font-size: 20px; font-weight: 700;
    color: var(--c-navy);
    line-height: 1.5;
    margin-bottom: 16px;
    letter-spacing: .03em;
}
.service-card__desc {
    font-size: 14px; line-height: 1.9;
    color: var(--c-text-sub);
    margin-bottom: 20px;
}
.service-card__points { border-top: 1px solid var(--c-gray-100); padding-top: 18px; }
.service-card__points li {
    font-size: 13px;
    color: var(--c-gray-700);
    padding: 6px 0 6px 22px;
    position: relative;
}
.service-card__points li::before {
    content: ""; position: absolute; left: 0; top: 14px;
    width: 12px; height: 1px; background: var(--c-gold);
}

/* ============================================
   9. FEATURES (dark section)
   ============================================ */
.features {
    padding: 120px 0;
    position: relative;
    color: var(--c-white);
    overflow: hidden;
}
.features__bg {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(0,255,255,.10), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(216,90,142,.08), transparent 50%),
        linear-gradient(135deg, var(--c-navy-deep) 0%, var(--c-navy) 50%, var(--c-navy-light) 100%);
    overflow: hidden;
}
.features__bg-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .35;
    z-index: 0;
}
.features__bg::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(4,35,37,.7) 0%, rgba(10,58,61,.55) 100%);
    z-index: 1;
}
.features__bg::before {
    content: ""; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    z-index: 2;
}
.features .container { position: relative; z-index: 1; }
.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    padding: 36px 28px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
    transition: transform .4s var(--ease-out), background .4s, border-color .4s;
    position: relative;
    overflow: hidden;
}
.feature-card::after {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(184,147,90,.15), transparent 50%);
    opacity: 0; transition: opacity .4s;
    pointer-events: none;
}
.feature-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,.05);
    border-color: rgba(184,147,90,.4);
}
.feature-card:hover::after { opacity: 1; }
.feature-card__icon {
    width: 56px; height: 56px;
    margin-bottom: 20px;
    color: var(--c-gold);
}
.feature-card__icon svg { width: 100%; height: 100%; }
.feature-card__title {
    font-family: var(--ff-jp-serif);
    font-size: 18px; font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.5;
    color: var(--c-white);
}
.feature-card__desc {
    font-size: 13.5px; line-height: 1.9;
    color: rgba(255,255,255,.7);
}

/* ============================================
   10. WORRIES
   ============================================ */
.worries {
    padding: 120px 0;
    background: var(--c-bg-soft);
    position: relative;
}
.worries__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 60px;
}
.worry-card {
    background: var(--c-white);
    padding: 24px 20px 24px 56px;
    position: relative;
    border-left: 3px solid var(--c-gold);
    box-shadow: 0 4px 16px rgba(10,31,68,.06);
    transition: transform .3s, box-shadow .3s;
}
.worry-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(10,31,68,.12); }
.worry-card__check {
    position: absolute; top: 22px; left: 18px;
    width: 28px; height: 28px;
    background: var(--c-pink);
    color: var(--c-white);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
}
.worry-card__check svg { width: 16px; height: 16px; }
.worry-card__text {
    font-size: 14px;
    color: var(--c-text);
    line-height: 1.7;
    font-weight: 500;
}
.worries__cta { text-align: center; }
.worries__cta-lead {
    font-family: var(--ff-jp-serif);
    font-size: clamp(20px, 2.6vw, 28px);
    color: var(--c-navy);
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1.6;
}
.worries__cta-arrow {
    font-size: 30px;
    color: var(--c-pink);
    margin-top: 10px;
    animation: bounceArrow 1.6s ease-in-out infinite;
}
@keyframes bounceArrow {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(8px); }
}

/* ============================================
   11. STATS
   ============================================ */
.stats {
    padding: 120px 0;
    position: relative;
    color: var(--c-white);
    overflow: hidden;
}
.stats__bg {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0,255,255,.12), transparent 40%),
        linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-deep) 100%);
    overflow: hidden;
}
.stats__bg-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .35;
    z-index: 0;
}
.stats__bg::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(4,35,37,.7) 0%, rgba(10,58,61,.55) 100%);
    z-index: 1;
}
.stats__bg::after {
    content: ""; position: absolute; inset: 0;
    background:
        repeating-linear-gradient(45deg, transparent 0 60px, rgba(255,255,255,.025) 60px 61px);
    z-index: 2;
}
.stats .container { position: relative; z-index: 1; }
.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat-item { text-align: center; padding: 24px 16px; }
.stat-item__num {
    font-family: var(--ff-en-display);
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    color: var(--c-pink);
    line-height: 1;
    letter-spacing: -.02em;
    display: inline-flex; align-items: baseline; gap: 6px;
}
.stat-item__unit {
    font-size: .35em;
    font-weight: 700;
    color: var(--c-white);
    letter-spacing: .05em;
}
.stat-item__label {
    font-family: var(--ff-jp-serif);
    font-size: 17px; font-weight: 700;
    margin-top: 14px;
    letter-spacing: .04em;
}
.stat-item__sub {
    font-size: 12px;
    color: rgba(255,255,255,.6);
    margin-top: 8px;
}
.stats__note {
    margin-top: 40px;
    font-size: 11px;
    color: rgba(255,255,255,.4);
    text-align: center;
    letter-spacing: .08em;
}

/* ============================================
   12. FLOW
   ============================================ */
.flow { padding: 120px 0; background: var(--c-white); }
.flow__steps {
    max-width: var(--container-narrow);
    margin: 0 auto;
    position: relative;
}
.flow__line {
    position: absolute;
    left: 39px;
    top: 40px; bottom: 40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--c-gold) 0%, var(--c-gold) var(--scroll-progress, 0%), var(--c-gray-100) var(--scroll-progress, 0%), var(--c-gray-100) 100%);
}
.flow__step {
    display: flex; gap: 32px;
    padding: 28px 0;
    position: relative;
    align-items: flex-start;
}
.flow__step-num {
    flex-shrink: 0;
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-light) 100%);
    color: var(--c-gold);
    font-family: var(--ff-en-display);
    font-size: 24px; font-weight: 900;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 28px rgba(10,31,68,.2);
    border: 2px solid var(--c-gold);
    z-index: 1;
    transition: transform .4s var(--ease-out);
}
.flow__step:hover .flow__step-num { transform: scale(1.08) rotate(-4deg); }
.flow__step-body { flex: 1; padding-top: 14px; }
.flow__step-title {
    font-family: var(--ff-jp-serif);
    font-size: 20px; font-weight: 700;
    color: var(--c-navy);
    margin-bottom: 8px;
    letter-spacing: .04em;
}
.flow__step-desc {
    font-size: 14px; line-height: 1.9;
    color: var(--c-text-sub);
}

/* ============================================
   13. VOICES
   ============================================ */
.voices { padding: 120px 0; background: var(--c-cream); }
.voices__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: var(--container-sm);
    margin: 0 auto;
}
.voice-card {
    background: var(--c-white);
    padding: 48px 36px 36px;
    position: relative;
    box-shadow: 0 12px 40px rgba(10,31,68,.08);
    transition: transform .5s var(--ease-out), box-shadow .5s;
    will-change: transform;
    border-top: 3px solid var(--c-gold);
}
.voice-card:hover {
    box-shadow: 0 20px 50px rgba(10,31,68,.14);
}
.voice-card__quote-mark {
    position: absolute; top: 16px; right: 28px;
    font-family: var(--ff-en-display);
    font-size: 80px;
    color: var(--c-gold);
    opacity: .15;
    line-height: 1;
}
.voice-card__stars {
    color: var(--c-gold);
    letter-spacing: .15em;
    font-size: 16px;
    margin-bottom: 14px;
}
.voice-card__title {
    font-family: var(--ff-jp-serif);
    font-size: 19px; font-weight: 700;
    color: var(--c-navy);
    margin-bottom: 16px;
    line-height: 1.5;
}
.voice-card__body p {
    font-size: 14px; line-height: 2;
    color: var(--c-gray-700);
    margin-bottom: 20px;
}
.voice-card__meta {
    border-top: 1px solid var(--c-gray-100);
    padding-top: 16px;
    display: flex; flex-direction: column; gap: 4px;
}
.voice-card__industry, .voice-card__role {
    font-size: 12px;
    color: var(--c-gray-500);
    letter-spacing: .04em;
}
.voice-card__role { color: var(--c-navy); font-weight: 700; }

/* ============================================
   14. CEO
   ============================================ */
.ceo { padding: 120px 0; background: var(--c-white); }
.ceo__inner {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 64px;
    align-items: start;
    max-width: var(--container-sm);
    margin: 0 auto;
}
/* 代表者写真なし：中央1カラム */
.ceo__inner--nophoto {
    grid-template-columns: 1fr;
    max-width: var(--container-narrow);
    text-align: center;
}
.ceo__inner--nophoto .ceo__message p { text-align: left; }
.ceo__inner--nophoto .ceo__sign { justify-content: center; }
.ceo__photo-wrap { position: relative; }
.ceo__photo {
    width: 100%; aspect-ratio: 4 / 5;
    object-fit: cover;
    position: relative; z-index: 1;
}
.ceo__photo-placeholder {
    width: 100%; aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, var(--c-navy-light), var(--c-navy));
    color: rgba(184,147,90,.4);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 14px;
    position: relative; z-index: 1;
    font-size: 12px; letter-spacing: .2em;
}
.ceo__photo-placeholder svg { width: 30%; height: auto; }
.ceo__photo-deco {
    position: absolute; top: 20px; left: -20px; right: 20px; bottom: -20px;
    border: 2px solid var(--c-gold);
    z-index: 0;
}
.ceo__title {
    font-family: var(--ff-jp-serif);
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 700;
    color: var(--c-navy);
    line-height: 1.5;
    margin: 14px 0 24px;
    letter-spacing: .04em;
}
.ceo__title em { color: var(--c-em-blue); font-style: normal; }
.ceo__message p {
    font-size: 14.5px; line-height: 2;
    color: var(--c-gray-700);
    margin-bottom: 18px;
}
.ceo__message strong { color: var(--c-navy); }
.ceo__sign {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--c-gray-100);
    display: flex; align-items: baseline; gap: 14px;
}
.ceo__sign-role { font-size: 12px; color: var(--c-gray-500); letter-spacing: .1em; }
.ceo__sign-name {
    font-family: var(--ff-jp-serif);
    font-size: 17px; font-weight: 700;
    color: var(--c-navy);
    letter-spacing: .06em;
}

/* ============================================
   15. FAQ
   ============================================ */
.faq { padding: 120px 0; background: var(--c-bg-soft); }
.faq__list { max-width: var(--container-narrow); margin: 0 auto; }
.faq-item {
    background: var(--c-white);
    margin-bottom: 12px;
    border: 1px solid var(--c-gray-100);
    transition: border-color .3s, box-shadow .3s;
}
.faq-item[open] { border-color: var(--c-gold); box-shadow: 0 8px 24px rgba(10,31,68,.06); }
.faq-item__q {
    display: flex; align-items: center; gap: 18px;
    padding: 22px 28px;
    cursor: pointer;
    list-style: none;
    user-select: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q-mark, .faq-item__a-mark {
    flex-shrink: 0;
    width: 32px; height: 32px;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--ff-en-display);
    font-weight: 700;
    border-radius: 50%;
    font-size: 14px;
}
.faq-item__q-mark { background: var(--c-navy); color: var(--c-gold); }
.faq-item__a-mark { background: var(--c-pink); color: var(--c-white); }
.faq-item__q-text {
    flex: 1;
    font-family: var(--ff-jp-serif);
    font-size: 16px; font-weight: 700;
    color: var(--c-navy);
    line-height: 1.6;
    letter-spacing: .03em;
}
.faq-item__q-toggle {
    flex-shrink: 0;
    width: 22px; height: 22px;
    position: relative;
}
.faq-item__q-toggle::before, .faq-item__q-toggle::after {
    content: ""; position: absolute; top: 50%; left: 50%;
    background: var(--c-gold);
    transition: transform .3s var(--ease-out);
}
.faq-item__q-toggle::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-item__q-toggle::after  { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-item__q-toggle::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item__a {
    display: flex; gap: 18px;
    padding: 0 28px 26px 28px;
    border-top: 1px dashed var(--c-gray-100);
    margin-top: -1px; padding-top: 22px;
}
.faq-item__a-text {
    font-size: 14px; line-height: 2;
    color: var(--c-gray-700);
}

/* ============================================
   16. FOOTER CTA
   ============================================ */
.footer-cta {
    position: relative;
    padding: 100px 0;
    color: var(--c-white);
    overflow: hidden;
}
.footer-cta__bg {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(circle at 70% 30%, rgba(216,90,142,.18), transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(0,255,255,.1), transparent 50%),
        linear-gradient(135deg, var(--c-navy-deep) 0%, var(--c-navy) 100%);
    overflow: hidden;
}
.footer-cta__bg-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .35;
    z-index: 0;
}
.footer-cta__bg::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(4,35,37,.72) 0%, rgba(10,58,61,.6) 100%);
    z-index: 1;
}
.footer-cta__bg::before {
    content: ""; position: absolute; inset: 0;
    background:
        repeating-linear-gradient(135deg, transparent 0 80px, rgba(255,255,255,.03) 80px 81px);
    z-index: 2;
}
.footer-cta .container { position: relative; z-index: 1; }
.footer-cta__head { text-align: center; margin-bottom: 50px; }
.footer-cta__head-en {
    display: inline-block;
    font-family: var(--ff-en-display);
    font-size: 13px; letter-spacing: .35em;
    color: var(--c-gold); font-weight: 700;
    margin-bottom: 16px;
}
.footer-cta__title {
    font-family: var(--ff-jp-serif);
    font-size: clamp(26px, 3.4vw, 40px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .04em;
    margin-bottom: 18px;
}
.footer-cta__lead { font-size: 15px; line-height: 1.9; color: rgba(255,255,255,.8); }
.footer-cta__btns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1080px;
    margin: 0 auto;
}
.footer-cta__btn {
    display: flex; align-items: center; gap: 22px;
    padding: 26px 30px;
    background: var(--c-white);
    color: var(--c-navy);
    border-radius: 2px;
    transition: transform .35s var(--ease-out), box-shadow .35s;
    position: relative;
    overflow: hidden;
}
.footer-cta__btn::after {
    content: "→";
    position: absolute;
    right: 24px; top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: 700;
    color: var(--c-gold-dark);
    transition: transform .35s var(--ease-out), color .35s;
    opacity: .6;
}
.footer-cta__btn:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0,0,0,.3); color: var(--c-navy); }
.footer-cta__btn:hover::after { transform: translateY(-50%) translateX(4px); opacity: 1; color: var(--c-pink); }
.footer-cta__btn-icon {
    flex-shrink: 0;
    width: 56px; height: 56px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--c-cream);
    border-radius: 50%;
    color: var(--c-navy);
}
.footer-cta__btn--phone .footer-cta__btn-icon { background: var(--c-pink); color: var(--c-white); }
.footer-cta__btn--mail  .footer-cta__btn-icon { background: var(--c-navy); color: var(--c-gold); }
.footer-cta__btn--line  .footer-cta__btn-icon { background: #e8f7eb; }
.footer-cta__btn-icon svg { width: 26px; height: 26px; }
.footer-cta__btn-body {
    flex: 1;
    display: flex; flex-direction: column;
    line-height: 1.3; text-align: left;
    padding-right: 28px;
}
.footer-cta__btn-title { font-size: 14px; font-weight: 700; color: var(--c-text-sub); }
.footer-cta__btn-number {
    font-family: var(--ff-en-display);
    font-size: 24px; font-weight: 700;
    color: var(--c-navy);
    margin: 3px 0;
    letter-spacing: -.01em;
}
.footer-cta__btn-sub { font-size: 12px; color: var(--c-gray-500); }

/* ============================================
   17. FOOTER
   ============================================ */
.site-footer {
    background: #050d23;
    color: rgba(255,255,255,.7);
    padding: 80px 0 0;
}
.site-footer__inner {
    max-width: calc(var(--container) + 40px);
    margin: 0 auto; padding: 0 20px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}
.site-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.site-footer__logo-img { max-height: 48px; }
.site-footer__logo-company {
    font-family: var(--ff-jp-serif);
    font-size: 19px;
    font-weight: 700;
    color: var(--c-white);
    letter-spacing: .08em;
    line-height: 1;
    white-space: nowrap;
}
.site-footer__tagline {
    font-size: 13px; line-height: 1.9;
    margin-bottom: 28px;
    color: rgba(255,255,255,.6);
}
.site-footer__info dt {
    font-size: 11px; letter-spacing: .15em;
    color: var(--c-gold);
    margin-top: 14px; margin-bottom: 4px;
    font-weight: 700;
}
.site-footer__info dd {
    font-size: 13px; line-height: 1.7;
    color: rgba(255,255,255,.8);
}
.site-footer__tel {
    color: var(--c-white) !important;
    font-family: var(--ff-en-display);
    font-size: 18px;
    font-weight: 700;
}
.site-footer__heading {
    font-family: var(--ff-en-display);
    font-size: 12px; letter-spacing: .3em;
    color: var(--c-gold);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-footer__heading--mt { margin-top: 32px; }
.site-footer__list li { padding: 6px 0; font-size: 13px; }
.site-footer__list a { color: rgba(255,255,255,.7); transition: color .3s, padding-left .3s; }
.site-footer__list a:hover { color: var(--c-gold); padding-left: 4px; }
.site-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 24px 20px;
    text-align: center;
}
.site-footer__copyright {
    font-size: 11px;
    color: rgba(255,255,255,.4);
    letter-spacing: .1em;
}

/* ============================================
   18. Scroll animations base state
   ============================================ */
.js-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.js-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.js-text-reveal { overflow: hidden; }
.js-text-reveal > span {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 1.2s var(--ease-out);
}
.js-text-reveal.is-visible > span { transform: translateY(0); }

/* ============================================
   18.5 RECOGNITION（メディア掲載バッジ）
   ============================================ */
.recognition {
    padding: 64px 0;
    background:
        linear-gradient(90deg, rgba(0,153,184,.04) 0%, rgba(216,90,142,.04) 100%),
        var(--c-cream);
    position: relative;
}
.recognition::before, .recognition::after {
    content: ""; position: absolute; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-em-blue), transparent);
}
.recognition::before { top: 0; }
.recognition::after  { bottom: 0; }

.recognition__inner {
    display: flex;
    align-items: center;
    gap: 36px;
    max-width: 880px;
    margin: 0 auto;
    padding: 28px 40px;
    background: var(--c-white);
    text-decoration: none;
    color: inherit;
    box-shadow: 0 12px 36px rgba(10,58,61,.08);
    transition: transform .4s var(--ease-out), box-shadow .4s;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}
.recognition__inner::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--c-em-blue) 0%, var(--c-pink) 100%);
}
.recognition__inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(10,58,61,.14);
    color: inherit;
}

.recognition__badge {
    flex-shrink: 0;
    width: 160px;
    transition: transform .5s var(--ease-out);
}
.recognition__inner:hover .recognition__badge {
    transform: rotate(-4deg) scale(1.06);
}
.recognition__badge-img {
    width: 100%;
    height: auto;
    display: block;
}
.recognition__badge-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    background:
        radial-gradient(circle at 50% 30%, var(--c-em-blue), var(--c-navy-deep) 70%);
    color: var(--c-white);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    font-family: var(--ff-en-display);
    line-height: 1;
    text-align: center;
    border-radius: 50%;
    border: 4px solid var(--c-em-blue);
}
.recognition__badge-placeholder-num { font-size: 42px; font-weight: 900; }
.recognition__badge-placeholder-sub { font-size: 11px; letter-spacing: .25em; margin-top: 4px; opacity: .9; }

.recognition__body {
    flex: 1;
    padding-left: 28px;
    border-left: 1px solid var(--c-gray-100);
}
.recognition__label {
    display: block;
    font-family: var(--ff-en-display);
    font-size: 11px;
    letter-spacing: .35em;
    color: var(--c-em-blue);
    font-weight: 700;
    margin-bottom: 10px;
}
.recognition__title {
    font-family: var(--ff-jp-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--c-navy);
    line-height: 1.5;
    letter-spacing: .03em;
    margin-bottom: 10px;
}
.recognition__title em { color: var(--c-em-blue); font-style: normal; }
.recognition__desc {
    font-size: 13px;
    line-height: 1.85;
    color: var(--c-text-sub);
    margin-bottom: 14px;
}
.recognition__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--c-pink);
}
.recognition__link-arrow {
    transition: transform .3s var(--ease-out);
}
.recognition__inner:hover .recognition__link-arrow {
    transform: translateX(6px);
}

/* ============================================
   19. VALUES（社名由来3本柱）
   ============================================ */
.values {
    padding: 120px 0;
    background: var(--c-cream);
    position: relative;
}
.values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: var(--container-sm);
    margin: 0 auto;
}
.value-card {
    background: var(--c-white);
    padding: 48px 32px 40px;
    text-align: center;
    position: relative;
    border-bottom: 4px solid var(--c-gold);
    transition: transform .5s var(--ease-out), box-shadow .5s;
    overflow: hidden;
}
.value-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--c-gold), var(--c-gold-light), var(--c-gold));
    transform: scaleX(0); transform-origin: left;
    transition: transform .6s var(--ease-out);
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(10,31,68,.1); }
.value-card:hover::before { transform: scaleX(1); }
.value-card__letter {
    font-family: var(--ff-en-display);
    font-size: 100px;
    font-weight: 900;
    line-height: 1;
    color: var(--c-gold);
    opacity: .18;
    margin-bottom: -20px;
    letter-spacing: -.04em;
}
.value-card__en {
    display: block;
    font-family: var(--ff-en-display);
    font-size: 12px;
    letter-spacing: .35em;
    color: var(--c-gold);
    font-weight: 700;
    margin-bottom: 10px;
}
.value-card__title {
    font-family: var(--ff-jp-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--c-navy);
    line-height: 1.5;
    letter-spacing: .04em;
    margin-bottom: 14px;
}
.value-card__desc {
    font-size: 14px;
    line-height: 1.9;
    color: var(--c-text-sub);
    text-align: left;
}

/* ============================================
   20. STATS テキスト型バリアント
   ============================================ */
.stat-item__num--text {
    font-size: clamp(28px, 3.6vw, 44px) !important;
    letter-spacing: .04em;
    line-height: 1.2;
    font-weight: 700;
}
.stat-item__num--text span {
    font-family: var(--ff-jp-serif);
    background: linear-gradient(135deg, var(--c-pink) 0%, var(--c-pink-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--c-pink);
}

/* ============================================
   21. TOPICS / NEWS（CPT表示）
   ============================================ */
.topics {
    padding: 120px 0;
    background: var(--c-white);
}
.topics__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.topic-card {
    background: var(--c-white);
    border: 1px solid var(--c-gray-100);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform .4s var(--ease-out), box-shadow .4s, border-color .4s;
    position: relative;
}
.topic-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--c-gold), var(--c-gold-dark));
    transform: scaleX(0); transform-origin: left;
    transition: transform .5s var(--ease-out);
    z-index: 1;
}
.topic-card:hover { transform: translateY(-6px); border-color: var(--c-gold-dark); box-shadow: 0 20px 40px rgba(10,58,61,.12); color: inherit; }
.topic-card:hover::before { transform: scaleX(1); }
.topic-card__thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--c-bg-soft);
    position: relative;
}
.topic-card__img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease-out);
}
.topic-card:hover .topic-card__img { transform: scale(1.08); }
.topic-card__thumb--placeholder {
    display: flex; align-items: center; justify-content: center;
    color: var(--c-gray-300);
    background: linear-gradient(135deg, var(--c-bg-soft), var(--c-cream));
}
.topic-card__thumb--placeholder svg { width: 40%; height: 40%; }
.topic-card__body {
    padding: 22px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.topic-card__date {
    display: block;
    font-family: var(--ff-en-display);
    font-size: 12px;
    color: var(--c-gold-dark);
    letter-spacing: .08em;
    margin-bottom: 10px;
    font-weight: 700;
}
.topic-card__title {
    font-family: var(--ff-jp-serif);
    font-size: 16px;
    font-weight: 700;
    color: var(--c-navy);
    line-height: 1.6;
    letter-spacing: .03em;
    margin-bottom: 10px;
}
.topic-card__desc {
    font-size: 13px;
    line-height: 1.8;
    color: var(--c-text-sub);
    margin-bottom: auto;
    padding-bottom: 14px;
}
.topic-card__more {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--c-pink);
}
.topic-card--placeholder { opacity: .65; pointer-events: none; }
.topics__cta {
    text-align: center;
    margin-top: 48px;
}
.topics__note {
    margin-top: 32px;
    text-align: center;
    font-size: 12px;
    color: var(--c-gray-500);
    letter-spacing: .04em;
    line-height: 1.7;
}

/* ============================================
   22. 下層ページ共通：ページヒーロー
   ============================================ */
.page-hero {
    position: relative;
    padding: 160px 0 70px;
    color: var(--c-white);
    overflow: hidden;
    text-align: center;
}
.page-hero__bg {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(0,255,255,.14), transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(216,90,142,.12), transparent 50%),
        linear-gradient(135deg, var(--c-navy-deep) 0%, var(--c-navy) 55%, var(--c-navy-light) 100%);
}
.page-hero__bg::after {
    content: ""; position: absolute; inset: 0;
    background:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 72%);
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__en {
    display: inline-block;
    font-family: var(--ff-en-display);
    font-size: 13px; letter-spacing: .4em;
    color: var(--c-gold);
    font-weight: 700;
    margin-bottom: 14px;
}
.page-hero__title {
    font-family: var(--ff-jp-serif);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .05em;
}
.page-hero__title em { color: var(--c-gold); font-style: normal; }
.page-hero__lead {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255,255,255,.82);
}
.breadcrumb {
    position: relative; z-index: 1;
    margin-top: 24px;
    font-size: 12px;
    color: rgba(255,255,255,.6);
    letter-spacing: .04em;
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: color .3s; }
.breadcrumb a:hover { color: var(--c-gold); }
.breadcrumb span { margin: 0 8px; opacity: .5; }

/* ============================================
   23. 下層ページ共通：本文ブロック
   ============================================ */
.page-section { padding: 90px 0; }
.page-section--soft { background: var(--c-bg-soft); }
.page-section--cream { background: var(--c-cream); }
.page-lead {
    max-width: var(--container-narrow);
    margin: 0 auto 56px;
    text-align: center;
    font-size: 15px;
    line-height: 2;
    color: var(--c-gray-700);
}
.page-lead strong { color: var(--c-navy); }

/* サービス詳細（事業紹介） */
.svc-detail {
    max-width: var(--container-sm);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 72px;
}
.svc-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.svc-block:nth-child(even) .svc-block__media { order: 2; }
.svc-block__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--c-navy);
}
.svc-block__media img { width: 100%; height: 100%; object-fit: cover; }
.svc-block__media-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(0,255,255,.4);
    background: radial-gradient(circle at 35% 30%, var(--c-navy-light), var(--c-navy-deep));
}
.svc-block__media-placeholder svg { width: 45%; height: 45%; }
.svc-block__num {
    position: absolute; top: 16px; left: 16px;
    font-family: var(--ff-en-display);
    font-size: 24px; font-weight: 900;
    color: var(--c-gold);
    background: rgba(4,35,37,.82);
    border: 1px solid var(--c-gold);
    padding: 5px 14px;
}
.svc-block__en {
    display: block;
    font-family: var(--ff-en-display);
    font-size: 12px; letter-spacing: .3em;
    color: var(--c-em-blue);
    font-weight: 700; margin-bottom: 8px;
}
.svc-block__title {
    font-family: var(--ff-jp-serif);
    font-size: clamp(22px, 2.6vw, 28px);
    font-weight: 700;
    color: var(--c-navy);
    line-height: 1.5;
    margin-bottom: 16px;
    letter-spacing: .03em;
}
.svc-block__desc {
    font-size: 14.5px; line-height: 2;
    color: var(--c-text-sub);
    margin-bottom: 20px;
}
.svc-block__points { border-top: 1px solid var(--c-gray-100); padding-top: 18px; }
.svc-block__points li {
    font-size: 14px; color: var(--c-gray-700);
    padding: 7px 0 7px 24px; position: relative;
}
.svc-block__points li::before {
    content: ""; position: absolute; left: 0; top: 15px;
    width: 14px; height: 2px; background: var(--c-em-blue);
}

/* 会社概要テーブル */
.info-table {
    max-width: var(--container-narrow);
    margin: 0 auto;
    width: 100%;
    border-collapse: collapse;
    background: var(--c-white);
    box-shadow: 0 12px 40px rgba(10,58,61,.06);
}
.info-table th, .info-table td {
    text-align: left;
    padding: 22px 28px;
    border-bottom: 1px solid var(--c-gray-100);
    font-size: 14.5px;
    line-height: 1.8;
    vertical-align: top;
}
.info-table th {
    width: 30%;
    background: var(--c-bg-soft);
    color: var(--c-navy);
    font-weight: 700;
    font-family: var(--ff-jp-serif);
    letter-spacing: .04em;
    white-space: nowrap;
}
.info-table td { color: var(--c-gray-700); }
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: none; }
.info-map {
    max-width: var(--container-narrow);
    margin: 40px auto 0;
    aspect-ratio: 16 / 7;
    border: 1px solid var(--c-gray-100);
    overflow: hidden;
}
.info-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* お問い合わせカード */
.contact-cards {
    max-width: var(--container-sm);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.contact-card {
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
    padding: 40px 28px;
    background: var(--c-white);
    border: 1px solid var(--c-gray-100);
    border-top: 3px solid var(--c-em-blue);
    text-decoration: none; color: inherit;
    transition: transform .4s var(--ease-out), box-shadow .4s;
}
.contact-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(10,58,61,.12); color: inherit; }
.contact-card__icon {
    width: 56px; height: 56px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--c-bg-soft);
    color: var(--c-navy);
    margin-bottom: 18px;
}
.contact-card--phone .contact-card__icon { background: var(--c-pink); color: #fff; }
.contact-card--mail  .contact-card__icon { background: var(--c-navy); color: var(--c-gold); }
.contact-card--line  .contact-card__icon { background: #e8f7eb; color: #06c755; }
.contact-card__icon svg { width: 26px; height: 26px; }
.contact-card__label {
    font-family: var(--ff-en-display);
    font-size: 11px; letter-spacing: .3em;
    color: var(--c-em-blue); font-weight: 700;
    margin-bottom: 8px;
}
.contact-card__value {
    font-family: var(--ff-jp-serif);
    font-size: 19px; font-weight: 700;
    color: var(--c-navy);
    margin-bottom: 6px;
    letter-spacing: .02em;
}
.contact-card__sub { font-size: 12px; color: var(--c-gray-500); }
.contact-note {
    max-width: var(--container-narrow);
    margin: 44px auto 0;
    padding: 24px 28px;
    background: var(--c-bg-soft);
    font-size: 13px; line-height: 1.9;
    color: var(--c-gray-700);
    text-align: center;
    border-radius: 2px;
}

/* 法務テキスト（プライバシー等） */
.legal {
    max-width: var(--container-narrow);
    margin: 0 auto;
}
.legal__intro {
    font-size: 14.5px; line-height: 2;
    color: var(--c-gray-700);
    margin-bottom: 40px;
}
.legal__item { margin-bottom: 36px; }
.legal__heading {
    font-family: var(--ff-jp-serif);
    font-size: 19px; font-weight: 700;
    color: var(--c-navy);
    padding-left: 16px;
    border-left: 4px solid var(--c-em-blue);
    margin-bottom: 14px;
    letter-spacing: .03em;
}
.legal__body, .legal__body p {
    font-size: 14px; line-height: 2;
    color: var(--c-gray-700);
}
.legal__body ul { margin: 12px 0 0; padding: 0; }
.legal__body li {
    font-size: 14px; line-height: 1.9;
    color: var(--c-gray-700);
    padding: 4px 0 4px 22px; position: relative;
}
.legal__body li::before {
    content: ""; position: absolute; left: 0; top: 14px;
    width: 12px; height: 2px; background: var(--c-em-blue);
}
.legal__date {
    margin-top: 48px;
    text-align: right;
    font-size: 13px;
    color: var(--c-gray-500);
}

/* 下層ページ末尾CTA */
.page-cta {
    text-align: center;
    margin-top: 64px;
}

/* ============================================
   24. お問い合わせフォーム
   ============================================ */
.form-banner {
    max-width: var(--container-narrow);
    margin: 0 auto 36px;
    padding: 18px 24px;
    border-radius: 2px;
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
}
.form-banner--ok {
    background: #e6f7f3;
    border: 1px solid var(--c-em-blue);
    color: #0a5f55;
}
.form-banner--err {
    background: #fdeef3;
    border: 1px solid var(--c-pink);
    color: var(--c-pink-deep);
}
.form-required-note { display: inline-block; margin-left: 6px; font-size: 12px; color: var(--c-pink); }
.contact-form {
    max-width: var(--container-narrow);
    margin: 0 auto;
    background: var(--c-white);
    padding: 44px 48px;
    box-shadow: 0 12px 40px rgba(10,58,61,.06);
    border-radius: 2px;
}
.form-row { margin-bottom: 24px; }
.form-row--half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.contact-form label {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--c-navy);
    letter-spacing: .04em;
    margin-bottom: 8px;
}
.form-req { color: var(--c-pink); font-size: 13px; }
.contact-form input,
.contact-form textarea {
    width: 100%;
    background: var(--c-bg-soft);
    border: 1px solid var(--c-gray-100);
    border-radius: 2px;
    padding: 13px 15px;
    font-size: 15px;
    font-family: inherit;
    color: var(--c-text);
    line-height: 1.7;
    transition: border-color .3s, box-shadow .3s, background .3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: var(--c-white);
    border-color: var(--c-em-blue);
    box-shadow: 0 0 0 3px rgba(0,153,184,.12);
}
.contact-form textarea { resize: vertical; min-height: 150px; }
.form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-submit { text-align: center; margin-top: 32px; }
.form-submit .btn { cursor: pointer; border: none; }
.form-privacy-note {
    margin-top: 18px;
    font-size: 12px;
    color: var(--c-gray-500);
}
.form-privacy-note a { color: var(--c-em-blue); text-decoration: underline; }

/* ============================================
   25. 投稿（ブログ／お知らせ）本文・一覧
   ============================================ */
.page-hero--article { padding: 150px 0 56px; }
.page-hero__title--article {
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.55;
    max-width: 920px;
    margin: 0 auto;
}

/* 本文（旧記事のHTML・画像が入る） */
.single .entry-content {
    max-width: var(--container-narrow);
    margin: 0 auto;
    font-size: 15.5px;
    line-height: 2;
    color: var(--c-gray-900);
}
/* ★最重要：旧記事の固定幅画像がスマホで暴走しないように */
.entry-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 24px auto;
    border-radius: 2px;
}
.entry-content p { margin: 0 0 1.5em; }
.entry-content a { color: var(--c-em-blue); text-decoration: underline; }
.entry-content a:hover { color: var(--c-pink); }
.entry-content h2 {
    font-family: var(--ff-jp-serif);
    font-size: 24px; font-weight: 700;
    color: var(--c-navy);
    line-height: 1.5;
    margin: 2em 0 .8em;
    padding: 14px 0 14px 18px;
    border-left: 4px solid var(--c-em-blue);
    background: var(--c-bg-soft);
}
.entry-content h3 {
    font-family: var(--ff-jp-serif);
    font-size: 20px; font-weight: 700;
    color: var(--c-navy);
    margin: 1.8em 0 .6em;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--c-gray-100);
}
.entry-content h4 { font-size: 17px; font-weight: 700; color: var(--c-navy); margin: 1.6em 0 .5em; }
.entry-content ul, .entry-content ol { margin: 0 0 1.5em; padding-left: 1.4em; }
.entry-content ul li { list-style: disc; margin-bottom: .5em; }
.entry-content ol li { list-style: decimal; margin-bottom: .5em; }
.entry-content blockquote {
    margin: 1.5em 0; padding: 18px 24px;
    background: var(--c-cream);
    border-left: 4px solid var(--c-gold-dark);
    color: var(--c-gray-700); font-size: 14.5px;
}
.entry-content table { width: 100%; border-collapse: collapse; margin: 1.5em 0; font-size: 14px; }
.entry-content th, .entry-content td { border: 1px solid var(--c-gray-100); padding: 10px 14px; text-align: left; }
.entry-content th { background: var(--c-bg-soft); }
.entry-content iframe, .entry-content video { max-width: 100%; }
.entry-content figure { margin: 24px 0; max-width: 100%; }
.entry-content figcaption { font-size: 12px; color: var(--c-gray-500); text-align: center; margin-top: 8px; }

/* 記事下ナビ */
.single__nav {
    max-width: var(--container-narrow);
    margin: 56px auto 0;
    padding-top: 32px;
    border-top: 1px solid var(--c-gray-100);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
}
.single__nav-item--next { text-align: right; }
.single__nav-item--list { text-align: center; }
.single__nav-item a:not(.btn) { display: inline-flex; flex-direction: column; gap: 4px; text-decoration: none; }
.single__nav-dir { font-size: 12px; color: var(--c-em-blue); font-weight: 700; }
.single__nav-title { font-size: 13px; color: var(--c-gray-700); line-height: 1.5; }
.single__nav-item a:not(.btn):hover .single__nav-title { color: var(--c-pink); }

/* ページネーション */
.pagination { margin-top: 56px; }
.pagination .nav-links {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 8px;
}
.pagination .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 44px; height: 44px; padding: 0 12px;
    background: var(--c-white);
    border: 1px solid var(--c-gray-100);
    color: var(--c-navy);
    font-family: var(--ff-en-display); font-weight: 700;
    text-decoration: none;
    transition: background .3s, color .3s, border-color .3s;
}
.pagination .page-numbers:hover { border-color: var(--c-em-blue); color: var(--c-em-blue); }
.pagination .page-numbers.current {
    background: var(--c-navy); color: var(--c-gold); border-color: var(--c-navy);
}

/* 記事ナビ・本文 モバイル */
@media (max-width: 768px) {
    .single .entry-content { font-size: 15px; }
    .entry-content h2 { font-size: 20px; }
    .entry-content h3 { font-size: 18px; }
    .single__nav { grid-template-columns: 1fr; gap: 16px; text-align: center; }
    .single__nav-item--next { text-align: center; }
    .single__nav-item a:not(.btn) { align-items: center; }
}
