@charset "utf-8";

/* =========================================================
   つながり｜お中元・お歳暮代行サービス  -  style.css
   - 配色: 朱赤 #cb3716 / 地 #ffffff(白) / 文字 #222 / LINE緑 #06c755
   - 見出し: 明朝(Shippori Mincho B1 / Zen Old Mincho)
   - 本文: ゴシック(Zen Kaku Gothic Antique / Noto Sans JP)
   - レスポンシブ: PC(min-width:768px) / SP(max-width:767px) を別ブロックで定義
   ========================================================= */

/* ---------- global reset ---------- */
* {
    box-sizing: border-box;
}
html,
body {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
a {
    text-decoration: none;
    color: inherit;
    transition:
        opacity 0.2s ease,
        color 0.2s ease,
        background-color 0.2s ease;
}
button {
    font-family: inherit;
    cursor: pointer;
    border: 0px;
    background: transparent;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}
ul,
ol,
li {
    list-style: none;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
}
p {
    margin: 0px 0px 0px 0px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px 0px 0px 0px;
    font-weight: inherit;
    line-height: 1.4;
}
main {
    flex: 1 0 auto;
}

body {
    color: #222222;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: "Zen Kaku Gothic Antique", "Noto Sans JP", sans-serif;
    font-weight: 300;
    line-height: 1.9;
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-size-adjust: 100%;
}

/* 明朝見出し共通 */
.mincho {
    font-family: "Shippori Mincho B1", "Zen Old Mincho", serif;
}

/* スクリーンリーダー専用（視覚的に隠すが SEO/支援技術には伝える） */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    overflow: hidden;
    clip: rect(0px, 0px, 0px, 0px);
    white-space: nowrap;
    border: 0px;
}

/* fade-in (Intersection Observer) */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0px);
}

/* 見出し下のアンダーライン（画面イン時に中央から左右へ伸びる） */
.underline {
    position: relative;
    padding-bottom: 20px;
}
.underline::after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 48px;
    height: 2px;
    margin: 0px auto 0px auto;
    background-color: #cb3716;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.7s ease-in-out;
}
.underline.is-visible::after {
    transform: scaleX(1);
}

/* =========================================================
   splash screen（ロゴ立ち上げ→朱赤ライン→全体フェードアウト）
   ※ JS 無効でも splashOut アニメで必ず消える
   ========================================================= */
.splash {
    position: fixed;
    inset: 0px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    animation: splashOut 2.2s cubic-bezier(0.4, 0, 0.2, 1) 3.5s forwards;
}
.splash-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.splash-logo {
    width: auto;
    opacity: 0;
    transform: translateY(12px) scale(0.94);
    animation: splashLogoIn 2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}
.splash-line {
    display: block;
    height: 1px;
    background-color: #cb3716;
    transform: scaleX(0);
    transform-origin: center;
    animation: splashLineIn 2.4s ease-in-out 0.9s forwards;
}
@keyframes splashLogoIn {
    to {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
}
@keyframes splashLineIn {
    to {
        transform: scaleX(1);
    }
}
@keyframes splashOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}
@media (prefers-reduced-motion: reduce) {
    .splash {
        animation: splashOut 0.4s ease 0.8s forwards;
    }
    .splash-logo {
        opacity: 1;
        transform: none;
        animation: none;
    }
    .splash-line {
        transform: scaleX(1);
        animation: none;
    }
}
/* セッション内で表示済みなら最初から出さない（チラつき防止） */
.splash-seen .splash {
    display: none;
}

/* =========================================================
   site header (fixed) + drawer nav
   ========================================================= */
.site-header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 60;
}
.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-logo {
    display: block;
}
.site-logo img {
    width: auto;
}

/* MENU トリガー（朱赤の丸ボタン） */
.menu-trigger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #cb3716;
    color: #ffffff;
    border-radius: 50%;
    z-index: 60;
}
.menu-trigger:hover {
    background-color: #b32f12;
}
.menu-trigger .bars {
    display: block;
    position: relative;
}
.menu-trigger .bars span {
    display: block;
    position: absolute;
    left: 0px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 8px;
    transition:
        top 0.3s ease,
        transform 0.3s ease,
        opacity 0.3s ease;
}
.menu-trigger .bars span:nth-child(1) {
    top: 0px;
}
.menu-trigger .bars span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}
.menu-trigger .bars span:nth-child(3) {
    top: 100%;
    transform: translateY(-100%);
}
.menu-trigger .label {
    display: block;
    letter-spacing: 0.12em;
    font-weight: 400;
}

/* open 状態：×印（上下のバーを中央へ寄せてクロス、中央のバーは消す） */
.menu-trigger.is-open .bars span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.menu-trigger.is-open .bars span:nth-child(2) {
    opacity: 0;
}
.menu-trigger.is-open .bars span:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

/* drawer */
.drawer {
    position: fixed;
    top: 0px;
    right: 0px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: -8px 0px 32px rgba(34, 34, 34, 0.12);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 55;
    overflow-x: hidden;
    overflow-y: auto;
}
.drawer.is-open {
    transform: translateX(0px);
}

/* 背景にうっすら浮かぶ「つながり」ロゴ（ウォーターマーク） */
.drawer::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 40px;
    width: 130%;
    height: auto;
    aspect-ratio: 400 / 150;
    transform: translateX(-50%) rotate(-8deg);
    background-image: url(../images/common/logo.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

/* リストは背景ロゴより前面に */
.drawer-list {
    position: relative;
    z-index: 1;
}
/* 項目を順番にフェードイン（開いたときだけ delay を効かせる） */
.drawer-list li {
    border-bottom: 1px solid #e6ded2;
    opacity: 0;
    transform: translateX(24px);
    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}
.drawer.is-open .drawer-list li {
    opacity: 1;
    transform: translateX(0px);
}
.drawer.is-open .drawer-list li:nth-child(1) {
    transition-delay: 0.18s;
}
.drawer.is-open .drawer-list li:nth-child(2) {
    transition-delay: 0.26s;
}
.drawer.is-open .drawer-list li:nth-child(3) {
    transition-delay: 0.34s;
}
.drawer.is-open .drawer-list li:nth-child(4) {
    transition-delay: 0.42s;
}
.drawer.is-open .drawer-list li:nth-child(5) {
    transition-delay: 0.5s;
}
.drawer.is-open .drawer-list li:nth-child(6) {
    transition-delay: 0.58s;
}
.drawer.is-open .drawer-list li:nth-child(7) {
    transition-delay: 0.66s;
}
.drawer.is-open .drawer-list li:nth-child(8) {
    transition-delay: 0.74s;
}
.drawer.is-open .drawer-list li:nth-child(9) {
    transition-delay: 0.82s;
}
.drawer-list a {
    display: block;
}
.drawer-list a:hover {
    color: #cb3716;
}
@media (prefers-reduced-motion: reduce) {
    .drawer-list li {
        opacity: 1;
        transform: none;
        transition: none;
    }
    /* 記念日リマインドのばらばら演出は控えめに（横移動・時間差を無効化） */
    .remind-list .remind-card.fade-in {
        transform: none;
        transition-delay: 0s;
    }
}
.drawer-overlay {
    position: fixed;
    inset: 0px;
    background-color: rgba(34, 34, 34, 0.4);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
    z-index: 54;
}
.drawer-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* =========================================================
   #1 hero
   ========================================================= */
.section-hero {
    position: relative;
    background-color: #ffffff;
    /* 麻の葉テクスチャ（透過PNG）を白地に重ね、下方向は白へフェードして about へ滑らかに繋ぐ */
    background-image:
        linear-gradient(to bottom, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 1) 100%),
        url(../images/hero/bg.webp);
    background-size: cover, cover;
    background-position:
        center top,
        center top;
    background-repeat: no-repeat, no-repeat;
    text-align: center;
}
.hero-inner {
    position: relative;
    margin: 0px auto 0px auto;
}
/* hero テキスト共通（色・太さ）→ 個別差分は下で上書き */
.hero-label,
.hero-catch,
.hero-sub,
.hero-line {
    color: #1f1f1f;
    font-weight: 400;
}
.hero-catch {
    line-height: 1.5;
}
.hero-sub {
    letter-spacing: 0.08em;
}
.hero-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.hero-title img {
    display: block;
    margin: 0px auto 0px auto;
    width: auto;
}
.line-icon {
    flex: none;
}

/* 2カラムボタン */
.hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0px auto 0px auto;
}
/* hero 通過後に画面下へ追従（transform は hero-item と競合するため left/right+auto で中央寄せ） */
.hero-actions.is-stuck {
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 16px;
    z-index: 40;
    margin: 0px auto 0px auto;
    animation: ctaStickIn 0.45s ease forwards;
}
@keyframes ctaStickIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}
.hero-actions.is-stuck.is-leaving {
    animation: ctaStickOut 0.4s ease forwards;
    pointer-events: none;
}
@keyframes ctaStickOut {
    from {
        opacity: 1;
        transform: translateY(0px);
    }
    to {
        opacity: 0;
        transform: translateY(16px);
    }
}
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 400;
    letter-spacing: 0.04em;
    border-radius: 8px;
}
.hero-btn svg {
    vertical-align: -0.125em;
    line-height: 1;
    transition: transform 0.2s ease;
}
.hero-btn-primary {
    background-color: #cb3716;
    color: #ffffff;
    box-shadow: 0px 8px 20px rgba(203, 55, 22, 0.24);
}
.hero-btn-primary:hover {
    background-color: #b32f12;
}
.hero-btn-outline {
    background-color: #ffffff;
    color: #cb3716;
    border: 2px solid #cb3716;
}
.hero-btn-outline:hover svg {
    animation: arrowNudge 1.2s ease-in-out infinite;
}
@keyframes arrowNudge {
    0%,
    100% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(5px);
    }
}

/* hero 各要素のスタッガー表示（スプラッシュ終了後 .section-hero.is-ready で発火）
   .js が無い環境（JS無効）では隠さず通常表示する */
.js .hero-item {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
}
.section-hero.is-ready .hero-item {
    opacity: 1;
    transform: translateY(0px);
}
/* 子の並び: 1=贈物DX / 2=筆文字(対象外) / 3=贈る想い / 4=お中元 / 5=LINE行 / 6=ボタン */
.section-hero.is-ready .hero-item:nth-child(1) {
    transition-delay: 0s;
}
.section-hero.is-ready .hero-item:nth-child(3) {
    transition-delay: 0.2s;
}
.section-hero.is-ready .hero-item:nth-child(4) {
    transition-delay: 0.4s;
}
.section-hero.is-ready .hero-item:nth-child(5) {
    transition-delay: 0.6s;
}
.section-hero.is-ready .hero-item:nth-child(6) {
    transition-delay: 0.8s;
}
.section-hero.is-ready .hero-cta .hero-item {
    transition-delay: 0.8s;
}

/* =========================================================
   #2 about
   ========================================================= */
.section-about {
    background-color: #ffffff;
    text-align: center;
}
.about-inner {
    margin: 0px auto 0px auto;
}

/* 合成ビジュアル：ギフト箱（中央）＋丸写真3点（重ね） */
.about-visual {
    position: relative;
    width: 100%;
    margin: 0px auto 0px auto;
    aspect-ratio: 564 / 417;
}
.about-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: auto;
}
.about-circle {
    position: absolute;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0px 10px 28px rgba(34, 34, 34, 0.16);
}
.about-circle-sake {
    top: -4%;
    left: 26%;
    width: 30%;
}
.about-circle-wagyu {
    bottom: 4%;
    left: 4%;
    width: 36%;
}
.about-circle-phone {
    top: 28%;
    right: 2%;
    width: 40%;
}

/* 箱→sake→wagyu→phone をバラバラに表示（ビジュアルが画面に入ったら順番に）
   .about-visual.fade-in 自体は動かさず観測トリガーに使う。JS無効時は隠さない */
.about-visual.fade-in {
    opacity: 1;
    transform: none;
}
.js .about-box {
    opacity: 0;
    transition: opacity 0.8s ease;
}
.js .about-circle {
    opacity: 0;
    transform: scale(0.8);
    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-visual.is-visible .about-box {
    opacity: 1;
}
.about-visual.is-visible .about-circle {
    opacity: 1;
    transform: scale(1);
}
.about-visual.is-visible .about-circle-sake {
    transition-delay: 0.25s;
}
.about-visual.is-visible .about-circle-wagyu {
    transition-delay: 0.45s;
}
.about-visual.is-visible .about-circle-phone {
    transition-delay: 0.65s;
}

/* notes・本文は各自 .fade-in で画面イン時に表示（見出しはフェードなし） */
.about-notes {
    text-align: left;
}
.about-notes li {
    color: #888888;
}
.about-title {
    color: #1f1f1f;
    font-weight: 400;
}
.about-text {
    color: #333333;
}

/* =========================================================
   #3 feature（3枚の完成カード画像を並べる）
   ========================================================= */
/* 引き上げ量(margin-bottom) = service の角丸の深さ にして隙間を feature 背景で埋める（値は PC/SP の @media で指定） */
.section-feature {
    background-color: #f6f2ec;
    text-align: center;
}
.feature-grid {
    display: grid;
    margin: 0px auto 0px auto;
}
.feature-card {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    aspect-ratio: 434 / 700;
    object-fit: cover;
    object-position: top center;
} /* 下側をトリミングして高さを短く */

/* カードを1枚ずつ「ふわっ」と表示（下から浮き上がる柔らかいイージング） */
.feature-card.fade-in {
    opacity: 0;
    transform: translateY(48px) scale(0.98);
    transition:
        opacity 1.1s ease,
        transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.feature-card.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0px) scale(1);
}
.section-feature .feature-card:nth-child(2) {
    transition-delay: 0.35s;
}
.section-feature .feature-card:nth-child(3) {
    transition-delay: 0.7s;
}

/* スライダー操作・複製カード（PC では非表示・SP の @media で表示） */
.feature-controls {
    display: none;
}
.feature-clone {
    display: none;
} /* JS が前後に挿入する複製。SP のスライダー時のみ表示 */
.feature-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #d8c79c;
    color: #b08e3e;
    box-shadow: 0px 2px 8px rgba(34, 34, 34, 0.08);
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}
.feature-arrow:hover {
    background-color: #b08e3e;
    color: #ffffff;
}
.feature-counter {
    color: #1f1f1f;
    letter-spacing: 0.12em;
}
.feature-counter .feature-current {
    color: #b08e3e;
    font-weight: 700;
}

/* =========================================================
   #4 service（和紙背景＋サービスカード画像を縦に並べる）
   ========================================================= */
.section-service {
    position: relative;
    z-index: 1; /* feature の上に重ねてカーブを見せる */
    /* 背景画像の上に白を重ねて薄く見せる（数値 0.6 を上げるほど薄くなる） */
    background-image: linear-gradient(
            rgba(255, 255, 255, 0.6),
            rgba(255, 255, 255, 0.6)
        ),
        url(../images/service/bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.service-inner {
    margin: 0px auto 0px auto;
    text-align: center;
}
/* セクション見出し（feature / service 共通） */
.service-label,
.feature-label,
.voice-label,
.step-label,
.remind-label {
    color: #b08e3e;
    letter-spacing: 0.3em;
}
.service-title,
.feature-title,
.voice-title,
.step-title,
.remind-title {
    color: #1f1f1f;
    font-weight: 400;
}
/* セクションのリード文（feature / service 共通） */
.service-lead,
.feature-lead,
.step-lead,
.voice-lead,
.remind-lead {
    color: #555555;
}

/* サービスメニューのカード */
.service-main {
    display: flex;
    justify-content: center;
} /* 1行目：メインを中央に1枚 */
.service-row {
    display: grid;
} /* 2行目：4枚を横並び */
.service-card {
    display: block;
    width: 100%;
    height: auto;
}
.service-card.fade-in {
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-row .service-card:nth-child(2) {
    transition-delay: 0.1s;
}
.service-row .service-card:nth-child(3) {
    transition-delay: 0.2s;
}
.service-row .service-card:nth-child(4) {
    transition-delay: 0.3s;
}

/* 番号付き 写真＋テキストの交互レイアウト（service 内・カードの下に表示） */
.service-flow {
    text-align: left;
}
.flow-item {
    display: grid;
    align-items: center;
}
.flow-img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 12px;
}
.flow-body {
    position: relative;
}
.flow-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #b08e3e;
    color: #ffffff;
}
.flow-title {
    color: #1f1f1f;
    font-weight: 400;
    line-height: 1.5;
}
.flow-green {
    color: #06c755;
} /* LINE 緑 */
.flow-gold {
    color: #b08e3e;
}
.flow-sub {
    color: #b08e3e;
}
.flow-rule {
    display: block;
    width: 40px;
    height: 1px;
    background-color: #cdbf9c;
}
.flow-text {
    color: #000000;
}

/* =========================================================
   #5 vision / mission / value（和紙背景に中央寄せの理念）
   ========================================================= */
.section-vmv {
    background-color: #f5f0e4;
    background-image: url(../images/vision/bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}
.vmv-inner {
    margin: 0px auto 0px auto;
}
.vmv-label {
    color: #b4b4b3;
    letter-spacing: 0.1em;
    font-weight: 900;
}
.vmv-heading,
.vmv-text {
    color: #4a4a4a;
}
.vmv-heading {
    font-weight: 800;
}
.vmv-divider {
    display: block;
    height: 1px;
    background-color: #e0d6c2;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.7s ease-in-out;
}
.vmv-divider.is-visible {
    transform: scaleX(1);
}
.vmv-values {
    display: grid;
}
.vmv-value:nth-child(2) {
    transition-delay: 0.12s;
}
.vmv-value:nth-child(3) {
    transition-delay: 0.24s;
}
.vmv-value:nth-child(4) {
    transition-delay: 0.36s;
}
.vmv-value-title {
    color: #1f1f1f;
    font-weight: 800;
}
.vmv-value-text {
    color: #4a4a4a;
}

/* =========================================================
   #6 step（カンタン！登録方法）
   ========================================================= */
.section-step {
    background-color: #ffffff;
    text-align: center;
}

/* =========================================================
   #5.5 remind（記念日リマインド）
   ※ backup レイアウト準拠：3カード（タイトル→番号付き見出し→画像→説明）
   ========================================================= */
.section-remind {
    background-color: #f6f2ec;
    text-align: center;
}
.remind-inner {
    margin: 0px auto 0px auto;
    text-align: center;
}
/* カード共通（PC は横並び・SP は縦積み。具体の幅・余白は @media で指定） */
.remind-list {
    margin: 0px auto 0px auto;
    text-align: left;
}
.remind-card {
    position: relative;
}
/* タイトル：水引アイコン＋テキスト */
.remind-card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1f1f1f;
    font-weight: 700;
}
.remind-card-title::before {
    content: "";
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-image: url(../images/common/mizuhiki.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
/* 番号付き見出し（番号は朱赤・やや大きめ） */
.remind-card-head {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #1f1f1f;
    font-weight: 700;
    line-height: 1.4;
}
.remind-num {
    color: #cb3716;
    font-size: 150%;
    position: relative;
    top: -2px;
}
/* 画像（16:9 で切り抜き） */
.remind-card-image {
    aspect-ratio: 16 / 9;
}
.remind-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.remind-card-text {
    color: #555555;
}
.step-inner {
    margin: 0px auto 0px auto;
}
.step-media {
    margin: 0px auto 0px auto;
}
.step-media img {
    display: block;
    width: 100%;
    height: auto;
} /* イラストをそのまま中央に（背景ボックスなし） */
.step-name {
    color: #1f1f1f;
    font-weight: 400;
    line-height: 1.5;
}
.step-text {
    color: #555555;
}
.step-benefits {
    display: grid;
}
.step-benefits li {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #cb3716;
    color: #ffffff;
    border-radius: 8px;
}
.step-benefits li:nth-child(2) {
    transition-delay: 0.1s;
}
.step-benefits li:nth-child(3) {
    transition-delay: 0.2s;
}
.step-benefits li:nth-child(4) {
    transition-delay: 0.3s;
}

/* =========================================================
   #11 footer（追従CTAバー＋フッター）
   ========================================================= */
/* #8 brand（つながりロゴ） */
.section-brand {
    background-color: #ffffff;
    text-align: center;
}
.brand-logo {
    display: block;
    width: auto;
    margin: 0px auto 0px auto;
}

.site-footer {
    position: relative;
    text-align: center;
    background-color: #252525;
}
.page-top {
    position: fixed;
    z-index: 45;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid #dcdcdc;
    border-radius: 50%;
    box-shadow: 0px 4px 16px rgba(34, 34, 34, 0.12);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.page-top.is-visible {
    opacity: 1;
    pointer-events: auto;
}
.page-top:hover {
    border-color: #cb3716;
}
.page-top img {
    width: 20px;
    height: auto;
    opacity: 0.7;
}
.footer-inner {
    margin: 0px auto 0px auto;
}
.footer-logo {
    display: block;
    height: auto;
    margin: 0px auto 0px auto;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.footer-links a {
    color: #b7b1a6;
    letter-spacing: 0.04em;
}
.footer-links a:hover {
    color: #ffffff;
}
.footer-copy {
    color: #8a8a8a;
}

/* =========================================================
   PC ( min-width: 768px )
   ========================================================= */
@media (min-width: 768px) {
    .splash-logo {
        height: 150px;
        margin: 0px 0px 28px 0px;
    }
    .splash-line {
        width: 480px;
    }

    .site-header-inner {
        padding: 24px 40px 24px 40px;
    }
    .site-logo img {
        height: 56px;
    }
    .menu-trigger {
        width: 72px;
        height: 72px;
    }
    .menu-trigger .bars {
        width: 26px;
        height: 18px;
        margin: 0px 0px 4px 0px;
    }
    .menu-trigger .bars span {
        width: 26px;
        height: 2px;
        margin: 0px 0px 6px 0px;
    }
    .menu-trigger .bars span:last-child {
        margin: 0px 0px 0px 0px;
    }
    .menu-trigger .label {
        font-size: 10px;
        margin: 0px 0px 0px 0px;
    }

    .drawer {
        width: 360px;
        padding: 120px 0px 40px 0px;
    }
    .drawer-list a {
        padding: 20px 40px 20px 40px;
        font-size: 16px;
    }

    .section-hero {
        padding: 88px 40px 160px 40px;
    }
    .hero-inner {
        max-width: 720px;
    }
    .hero-label {
        font-size: 32px;
        margin: 0px 0px 64px 0px;
    }
    .hero-title img {
        height: 360px;
        margin: 0px auto 40px auto;
    }
    .hero-catch {
        font-size: 32px;
        margin: 0px 0px 16px 0px;
    }
    .hero-sub {
        font-size: 18px;
        margin: 0px 0px 40px 0px;
    }
    .hero-line {
        font-size: 24px;
        margin: 0px 0px 32px 0px;
    }
    .line-icon {
        width: 28px;
        height: 28px;
        margin: 0px 10px 0px 0px;
    }
    .hero-actions {
        gap: 24px;
        max-width: 600px;
    }
    .hero-cta {
        min-height: 64px;
    }
    .hero-actions.is-stuck {
        width: 600px;
    }
    .hero-btn {
        height: 64px;
        font-size: 16px;
    }

    .section-about {
        padding: 160px 40px 120px 40px;
    }
    .about-inner {
        max-width: 800px;
    } /* 本文が各文1行に収まる幅。狭い画面では自然に折り返す */
    .about-visual {
        max-width: 600px;
        margin: 0px auto 24px auto;
    }
    .about-notes {
        max-width: 600px;
        margin: 0px auto 0px auto;
    }
    .about-notes li {
        font-size: 13px;
        line-height: 2;
    }
    .about-title {
        font-size: 32px;
        margin: 0px 0px 32px 0px;
    }
    .about-text {
        font-size: 16px;
        margin: 0px 0px 72px 0px;
    }
    .about-text p {
        margin: 0px 0px 8px 0px;
    }

    /* ドーム：引き上げ量(-160px) = service の角丸(160px)。隙間を feature 背景で埋める */
    .section-feature {
        padding: 120px 40px 480px 40px;
        margin: 0px 0px -160px 0px;
    }
    .section-service {
        padding: 200px 40px 120px 40px;
        border-radius: 50% 50% 0px 0px / 160px 160px 0px 0px;
    }

    /* 見出し系（feature / service 共通） */
    .feature-label,
    .service-label,
    .voice-label,
    .step-label,
    .remind-label {
        font-size: 13px;
        margin: 0px 0px 12px 0px;
    }
    .feature-title,
    .service-title,
    .remind-title {
        font-size: 32px;
        margin: 0px 0px 24px 0px;
    }
    .feature-lead,
    .service-lead,
    .step-lead,
    .voice-lead,
    .remind-lead {
        font-size: 16px;
        line-height: 2.9;
        margin: 0px auto 48px auto;
        max-width: 720px;
    }

    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        max-width: 1200px;
    }
    .service-inner {
        max-width: 1120px;
    }

    /* 以前のカード */
    .service-list {
        max-width: 900px;
        margin: 0px auto 120px auto;
    } /* 下に交互レイアウトを置くぶん余白 */
    .service-main {
        margin: 0px 0px 16px 0px;
    }
    .service-main .service-card {
        width: 62%;
    } /* 行カードより大きく */
    .service-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* 交互レイアウト（PC：写真とテキストを左右2カラム、偶数は写真を右へ） */
    .service-flow {
        max-width: 1120px;
        margin: 0px auto 0px auto;
    }
    .flow-item {
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        margin: 0px 0px 96px 0px;
    }
    .flow-item:last-child {
        margin: 0px 0px 0px 0px;
    }
    .flow-item:nth-child(even) .flow-media {
        order: 2;
    }
    .flow-num {
        width: 48px;
        height: 48px;
        font-size: 16px;
        margin: 0px 0px 20px 0px;
    }
    .flow-title {
        font-size: 32px;
        margin: 0px 0px 8px 0px;
    }
    .flow-sub {
        font-size: 16px;
        margin: 0px 0px 20px 0px;
    }
    .flow-rule {
        margin: 0px 0px 20px 0px;
    }
    .flow-text {
        font-size: 16px;
        line-height: 2;
    }

    /* vision / mission / value */
    .section-vmv {
        padding: 128px 40px 128px 40px;
    }
    .vmv-inner {
        max-width: 760px;
    }
    .vmv-label {
        font-size: 40px;
        margin: 0px 0px 8px 0px;
    }
    .vmv-heading,
    .vmv-value-title {
        font-size: 36px;
        margin: 0px 0px 24px 0px;
    }
    .vmv-text {
        font-size: 16px;
        line-height: 2.2;
    }
    .vmv-text p {
        margin: 0px 0px 16px 0px;
    }
    .vmv-text p:last-child {
        margin: 0px 0px 0px 0px;
    }
    .vmv-divider {
        width: 100%;
        max-width: 560px;
        margin: 0px auto 72px auto;
    }
    .vmv-values {
        grid-template-columns: 1fr;
        gap: 48px;
        max-width: 560px;
        margin: 0px auto 0px auto;
        text-align: center;
    }
    .vmv-block:not(:last-of-type) {
        margin: 0px 0px 72px 0px;
    }
    .vmv-value-text {
        font-size: 16px;
        line-height: 2;
    }

    /* step（登録方法） */
    .section-step {
        padding: 120px 40px 120px 40px;
    }
    .section-remind {
        padding: 120px 40px 120px 40px;
    }
    .remind-inner {
        max-width: 1320px;
    }
    /* PC：3カードを横並び（gap 48px・各カード均等幅） */
    .remind-list {
        display: flex;
        align-items: flex-start;
        gap: 48px;
        max-width: 1320px;
        margin: 0px auto 0px auto;
    }
    .remind-card {
        flex: 1 1 0;
    }
    .remind-card-title {
        font-size: 18px;
        margin: 0px 0px 16px 0px;
    }
    .remind-card-head {
        font-size: 20px;
        margin: 0px 0px 20px 0px;
    }
    .remind-card-image {
        margin: 0px 0px 16px 0px;
    }
    .remind-card-text {
        font-size: 16px;
        line-height: 2;
    }
    /* PC：1→2→3 をばらばらに（左から／下から／右から＋時間差）。
       初期位置をカードごとに変え、is-visible で原点へ戻す。 */
    .remind-list .remind-card.fade-in:nth-child(1) {
        transform: translate(-32px, 24px);
        transition-delay: 0s;
    }
    .remind-list .remind-card.fade-in:nth-child(2) {
        transform: translate(0px, 52px);
        transition-delay: 0.18s;
    }
    .remind-list .remind-card.fade-in:nth-child(3) {
        transform: translate(32px, 24px);
        transition-delay: 0.36s;
    }
    /* 同詳細度のため、原点復帰ルールは必ず後に置いて勝たせる */
    .remind-list .remind-card.fade-in.is-visible {
        transform: translate(0px, 0px);
    }
    .step-inner {
        max-width: 640px;
    }
    .step-title {
        font-size: 32px;
        margin: 0px 0px 24px 0px;
    }
    .step-list {
        margin: 0px 0px 72px 0px;
    }
    .step-item {
        margin: 0px 0px 72px 0px;
    }
    .step-item:last-child {
        margin: 0px 0px 0px 0px;
    }
    .step-media {
        max-width: 380px;
        margin: 0px auto 24px auto;
    }
    .step-name {
        font-size: 24px;
        margin: 0px 0px 16px 0px;
    }
    .step-text {
        font-size: 16px;
        line-height: 2;
    }
    .step-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        max-width: 640px;
        margin: 0px auto 0px auto;
    }
    .step-benefits li {
        height: 64px;
        font-size: 16px;
    }

    /* voice */
    .section-voice {
        padding: 96px 64px 96px 64px;
    }
    .section-voice::before {
        top: 32px;
        right: 32px;
        bottom: 32px;
        left: 32px;
    }
    .voice-inner {
        max-width: 1000px;
    }
    .voice-title {
        font-size: 32px;
        margin: 0px 0px 24px 0px;
    }
    .voice-list {
        max-width: 860px;
    }
    /* PC：左に「番号＋文章」、右にアバター（縦中央） */
    .voice-card {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "num    avatar"
            "main   avatar";
        column-gap: 40px;
        margin: 0px 0px 48px 0px;
    }
    .voice-card:last-child {
        margin: 0px 0px 0px 0px;
    }
    .voice-num {
        justify-self: start;
        align-self: start;
        width: 48px;
        height: 48px;
        font-size: 16px;
        margin: 0px 0px 16px 0px;
    }
    .voice-headline {
        font-size: 20px;
        margin: 0px 0px 16px 0px;
    }
    .voice-text {
        font-size: 16px;
        line-height: 2;
    }
    .voice-text p {
        margin: 0px 0px 4px 0px;
    }
    .voice-person {
        align-self: center;
        width: 200px;
    }
    .voice-avatar {
        width: 160px;
        height: 160px;
        margin: 0px auto 0px auto;
    }
    .voice-person-photo {
        margin: 0px 0px 8px 0px;
    }
    .voice-person-biz {
        font-size: 14px;
    }
    .voice-person-role {
        font-size: 13px;
        margin: 2px 0px 4px 0px;
    }
    .voice-person-name {
        font-size: 17px;
    }
    .page-top {
        right: 32px;
        bottom: 32px;
    }
    /* brand */
    .section-brand {
        padding: 96px 40px 96px 40px;
    }
    .brand-logo {
        height: 120px;
    }
    .site-footer {
        padding: 56px 40px 56px 40px;
    }
    .footer-inner {
        max-width: 1000px;
    }
    .footer-logo {
        width: 140px;
        margin: 0px auto 24px auto;
    }
    .footer-links {
        gap: 12px 28px;
        margin: 0px 0px 24px 0px;
    }
    .footer-links a {
        font-size: 13px;
    }
    .footer-copy {
        font-size: 12px;
    }
}

/* =========================================================
   SP ( max-width: 767px )
   ========================================================= */
@media (max-width: 767px) {
    /* PC 向けの改行（<br class="br-pc">）は SP では無効化 */
    .br-pc {
        display: none;
    }

    .splash-logo {
        height: 110px;
        margin: 0px 0px 20px 0px;
    }
    .splash-line {
        width: 280px;
    }

    .site-header-inner {
        padding: 16px 16px 16px 16px;
    }
    .site-logo img {
        height: 40px;
    }
    .menu-trigger {
        width: 56px;
        height: 56px;
    }
    .menu-trigger .bars {
        width: 22px;
        height: 15px;
        margin: 0px 0px 3px 0px;
    }
    .menu-trigger .bars span {
        width: 22px;
        height: 2px;
        margin: 0px 0px 5px 0px;
    }
    .menu-trigger .bars span:last-child {
        margin: 0px 0px 0px 0px;
    }
    .menu-trigger .label {
        font-size: 8px;
        margin: 0px 0px 0px 0px;
    }

    .drawer {
        width: 78%;
        max-width: 320px;
        padding: 96px 0px 32px 0px;
    }
    .drawer-list a {
        padding: 16px 24px 16px 24px;
        font-size: 15px;
    }

    .section-hero {
        padding: 112px 24px 72px 24px;
    }
    .hero-inner {
        max-width: 100%;
    }
    .hero-label {
        font-size: 17px;
        margin: 0px 0px 20px 0px;
    }
    .hero-title img {
        height: 232px;
        margin: 0px auto 32px auto;
    }
    .hero-catch {
        font-size: 28px;
        margin: 0px 0px 12px 0px;
    }
    .hero-sub {
        font-size: 15px;
        margin: 0px 0px 32px 0px;
    }
    .hero-line {
        font-size: 14px;
        margin: 0px 0px 24px 0px;
    }
    .line-icon {
        width: 20px;
        height: 20px;
        margin: 0px 8px 0px 0px;
    }
    .hero-actions {
        gap: 12px;
        max-width: 100%;
    }
    .hero-cta {
        min-height: 56px;
    }
    .hero-actions.is-stuck {
        width: 92%;
    }
    .hero-btn {
        height: 56px;
        font-size: 13px;
        gap: 6px;
    }

    .section-about {
        padding: 112px 24px 72px 24px;
    }
    .about-inner {
        max-width: 100%;
    }
    .about-visual {
        max-width: 420px;
        margin: 0px auto 20px auto;
    }
    .about-notes {
        max-width: 420px;
        margin: 0px auto 0px auto;
    }
    .about-notes li {
        font-size: 12px;
        line-height: 1.9;
    }
    .about-title {
        font-size: 23px;
        margin: 0px 0px 24px 0px;
    }
    .about-text {
        font-size: 14px;
        margin: 0px 0px 32px 0px;
    }
    .about-text p {
        margin: 0px 0px 8px 0px;
    }

    .section-feature {
        padding: 72px 16px 140px 16px;
        margin: 0px 0px -72px 0px;
    }
    .section-service {
        padding: 124px 24px 72px 24px;
        border-radius: 50% 50% 0px 0px / 72px 72px 0px 0px;
    }

    /* 見出し系（feature / service 共通） */
    .feature-label,
    .service-label,
    .voice-label,
    .step-label,
    .remind-label {
        font-size: 11px;
        margin: 0px 0px 10px 0px;
    }
    .feature-title,
    .service-title,
    .remind-title {
        font-size: 24px;
        margin: 0px 0px 16px 0px;
    }
    .feature-lead,
    .service-lead,
    .step-lead,
    .voice-lead,
    .remind-lead {
        font-size: 14px;
        line-height: 2.6;
        margin: 0px auto 32px auto;
    }
    .feature-lead {
        max-width: 420px;
    } /* feature-grid 幅に合わせる */
    .service-lead {
        max-width: 420px;
    } /* service-flow 幅に合わせる */
    .step-lead {
        max-width: 420px;
    }
    .voice-lead {
        max-width: 420px;
    }

    /* feature：横スライダー（自動／矢印／カウンター） */
    .feature-grid {
        display: flex;
        grid-template-columns: none;
        gap: 16px;
        max-width: none;
        margin: 0px 0px 0px 0px;
        padding: 8px 18% 8px 18%; /* 左右余白で前後カードを覗かせ、端カードも中央寄せ可能に */
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .feature-grid::-webkit-scrollbar {
        display: none;
    }
    .feature-card {
        flex: 0 0 64%;
        scroll-snap-align: center;
    } /* 1枚64%幅に縮小・中央スナップ */
    .feature-clone {
        display: block;
    } /* SP では複製も表示してシームレスにつなぐ */
    .feature-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 24px;
        margin: 24px auto 0px auto;
    }
    .feature-arrow {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    .feature-counter {
        font-size: 15px;
        min-width: 56px;
    }

    .service-inner {
        max-width: 100%;
    }

    /* 以前のカード */
    .service-list {
        max-width: 400px;
        margin: 0px auto 64px auto;
    } /* 下に交互レイアウトを置くぶん余白 */
    .service-main {
        margin: 0px 0px 12px 0px;
    }
    .service-main .service-card {
        width: 100%;
    }
    .service-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* 交互レイアウト（SP：1カラム・文章 → 写真の順） */
    .service-flow {
        max-width: 460px;
        margin: 0px auto 0px auto;
    }
    .flow-item {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 0px 0px 56px 0px;
    }
    .flow-item:last-child {
        margin: 0px 0px 0px 0px;
    }
    .flow-body {
        order: 1;
    }
    .flow-media {
        order: 2;
    }
    .flow-item:nth-child(even) .flow-media {
        order: 2;
    }
    .flow-num {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin: 0px 0px 16px 0px;
    }
    .flow-title {
        font-size: 24px;
        margin: 0px 0px 8px 0px;
    }
    .flow-sub {
        font-size: 14px;
        margin: 0px 0px 16px 0px;
    }
    .flow-rule {
        margin: 0px 0px 16px 0px;
    }
    .flow-text {
        font-size: 14px;
        line-height: 2;
    }

    /* vision / mission / value */
    .section-vmv {
        padding: 80px 24px 80px 24px;
    }
    .vmv-inner {
        max-width: 100%;
    }
    .vmv-label {
        font-size: 32px;
        margin: 0px 0px 6px 0px;
    }
    .vmv-heading,
    .vmv-value-title {
        font-size: 24px;
        margin: 0px 0px 16px 0px;
    }
    .vmv-text {
        font-size: 14px;
        line-height: 2;
    }
    .vmv-text p {
        margin: 0px 0px 16px 0px;
    }
    .vmv-text p:last-child {
        margin: 0px 0px 0px 0px;
    }
    .vmv-divider {
        width: 100%;
        margin: 0px auto 48px auto;
    }
    .vmv-values {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 0px 0px 0px 0px;
    }
    .vmv-block:not(:last-of-type) {
        margin: 0px 0px 48px 0px;
    }
    .vmv-value-text {
        font-size: 14px;
        line-height: 2;
    }

    /* step（登録方法） */
    .section-step {
        padding: 80px 24px 80px 24px;
    }
    .section-remind {
        padding: 80px 24px 80px 24px;
    }
    .remind-inner {
        max-width: 100%;
    }
    /* SP：3カードを縦積み（カード間 40px） */
    .remind-list {
        max-width: 460px;
        margin: 0px auto 0px auto;
    }
    .remind-card {
        margin: 0px 0px 40px 0px;
    }
    .remind-card:last-child {
        margin: 0px 0px 0px 0px;
    }
    .remind-card-title {
        font-size: 16px;
        margin: 0px 0px 12px 0px;
    }
    .remind-card-head {
        font-size: 18px;
        margin: 0px 0px 16px 0px;
    }
    .remind-card-image {
        margin: 0px 0px 12px 0px;
    }
    .remind-card-text {
        font-size: 14px;
        line-height: 2;
    }
    .step-inner {
        max-width: 420px;
    }
    .step-title {
        font-size: 24px;
        margin: 0px 0px 20px 0px;
    }
    .step-list {
        margin: 0px 0px 48px 0px;
    }
    .step-item {
        margin: 0px 0px 56px 0px;
    }
    .step-item:last-child {
        margin: 0px 0px 0px 0px;
    }
    .step-media {
        max-width: 300px;
        margin: 0px auto 20px auto;
    }
    .step-name {
        font-size: 20px;
        margin: 0px 0px 12px 0px;
    }
    .step-text {
        font-size: 14px;
        line-height: 2;
    }
    .step-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 440px;
        margin: 0px auto 0px auto;
    }
    .step-benefits li {
        height: 56px;
        font-size: 16px;
    }

    /* SP：4つのチップをまとめてではなく1つずつ順番に表示 */
    .step-benefits.fade-in {
        opacity: 1;
        transform: none;
    } /* ブロック全体のフェードは無効化 */
    .step-benefits li {
        opacity: 0;
        transform: translateY(16px) scale(0.96);
        transition:
            opacity 0.5s ease,
            transform 0.5s ease;
    }
    .step-benefits.is-visible li {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
    .step-benefits.is-visible li:nth-child(1) {
        transition-delay: 0.08s;
    }
    .step-benefits.is-visible li:nth-child(2) {
        transition-delay: 0.2s;
    }
    .step-benefits.is-visible li:nth-child(3) {
        transition-delay: 0.32s;
    }
    .step-benefits.is-visible li:nth-child(4) {
        transition-delay: 0.44s;
    }

    /* voice（SP：横並びだと窮屈なので縦積み・アバターを上に中央配置） */
    .section-voice {
        padding: 56px 28px 56px 28px;
    }
    .section-voice::before {
        top: 16px;
        right: 16px;
        bottom: 16px;
        left: 16px;
    }
    .voice-inner {
        max-width: 100%;
    }
    .voice-title {
        font-size: 24px;
        margin: 0px 0px 16px 0px;
    }
    .voice-list {
        max-width: 400px;
    }
    /* SP：白カード化。上段＝ヘッダー(アバター＋肩書き)、下段＝見出し＋本文。番号は左上バッジ */
    .voice-card {
        grid-template-columns: 1fr;
        grid-template-areas:
            "avatar"
            "main";
        row-gap: 16px;
        text-align: left;
        position: relative;
        margin: 0px 0px 24px 0px;
        padding: 24px 20px 24px 20px;
        background-color: #ffffff;
        border: 1px solid #ece4d6;
        border-radius: 12px;
    }
    .voice-card:last-child {
        margin: 0px 0px 0px 0px;
    }
    .voice-num {
        position: absolute;
        top: 16px;
        left: 16px;
        width: 32px;
        height: 32px;
        font-size: 14px;
        margin: 0px 0px 0px 0px;
    }
    /* ヘッダー：アバター＋肩書きを左寄せで横並び。左上の番号バッジと重ならないよう左に余白 */
    .voice-person {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 23px;
        padding: 0px 0px 16px 48px;
        border-bottom: 1px solid #f0ebe0;
    }
    .voice-person-photo {
        flex-shrink: 0;
        gap: 4px;
    }
    .voice-avatar {
        width: 64px;
        height: 64px;
        margin: 0px 0px 0px 0px;
        flex-shrink: 0;
    }
    .voice-person-meta {
        text-align: left;
    }
    .voice-person-biz {
        font-size: 16px;
        line-height: 1.5;
    }
    .voice-person-role {
        font-size: 16px;
        margin: 1px 0px 1px 0px;
    }
    .voice-person-name {
        font-size: 15px;
    }
    .voice-main {
        width: 100%;
    }
    .voice-headline {
        font-size: 17px;
        margin: 0px 0px 10px 0px;
    }
    .voice-text {
        font-size: 14px;
        line-height: 1.9;
    }
    .voice-text p {
        margin: 0px 0px 4px 0px;
    }
    .voice-text br {
        display: none;
    } /* PC 向けの改行を無効化して自然に折り返す */
    .page-top {
        right: 16px;
        bottom: 80px;
    }
    /* brand */
    .section-brand {
        padding: 64px 24px 64px 24px;
    }
    .brand-logo {
        height: 72px;
    }
    .site-footer {
        padding: 32px 24px 48px 24px;
    }
    .footer-inner {
        max-width: 100%;
    }
    .footer-logo {
        width: 110px;
        margin: 0px auto 20px auto;
    }
    .footer-links {
        flex-direction: column;
        gap: 14px;
        margin: 0px 0px 24px 0px;
    }
    .footer-links a {
        font-size: 13px;
    }
    .footer-copy {
        font-size: 11px;
    }
}

/* =========================================================
   DUMMY（スクロール確認用・後で削除）
   ========================================================= */
/* =========================================================
   #7 voice（お客様の声・Coming Soon）
   ========================================================= */
.section-voice {
    position: relative;
    background-color: #ffffff;
    text-align: center;
}
/* 賞状風のゴールド二重罫を CSS で描画（画像の引き伸ばしによる歪み・線消えを回避）。
   inset の値は PC/SP の @media で指定 */
.section-voice::before {
    content: "";
    position: absolute;
    border: 1px solid #c2a04c;
    outline: 1px solid #c2a04c;
    outline-offset: 4px; /* 内側の罫と4px間隔で外側にもう1本＝二重罫 */
    pointer-events: none;
}
.voice-inner {
    margin: 0px auto 0px auto;
}
/* 証言カード */
.voice-list {
    margin: 0px auto 0px auto;
    text-align: left;
}
/* グリッド配置（領域名で配置するので DOM 順に依存しない）。具体の areas は PC/SP で指定 */
.voice-card {
    display: grid;
    align-items: center;
}
.voice-main {
    grid-area: main;
    min-width: 0px;
}
.voice-num {
    grid-area: num;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #b08e3e;
    color: #ffffff;
}
.voice-person {
    grid-area: avatar;
}
.voice-headline {
    color: #1f1f1f;
    font-weight: 400;
    line-height: 1.5;
}
.voice-accent {
    color: #b08e3e;
}
.voice-text {
    color: #555555;
}
.voice-person {
    text-align: center;
    margin: 0px 0px 0px 0px;
}
.voice-avatar {
    display: block;
    border-radius: 50%;
    background-color: #e7e0d3;
    object-fit: cover;
    margin: 0px auto 0px auto;
}
/* アバター画像＋氏名を縦に積む（氏名は画像の下） */
.voice-person-photo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
/* アバター下の属性表記（業態・地域／役職／イニシャル様） */
.voice-person-meta {
    display: block;
    text-align: center;
}
.voice-person-biz {
    display: block;
    color: #555555;
}
.voice-person-role {
    display: block;
    color: #777777;
}
.voice-person-name {
    display: block;
    color: #1f1f1f;
    font-weight: 400;
    letter-spacing: 0.04em;
}
.voice-person-name small {
    font-size: 0.72em;
    margin: 0px 0px 0px 2px;
}

/* =========================================================
   contact page（お問い合わせ）
   ========================================================= */
.section-contact {
    background-color: #ffffff;
    text-align: center;
}
.contact-inner {
    margin: 0px auto 0px auto;
}
.section-thanks {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.contact-label {
    color: #b08e3e;
    letter-spacing: 0.3em;
}
.contact-title {
    color: #1f1f1f;
    font-weight: 400;
}
.contact-lead {
    color: #555555;
}
.contact-form {
    text-align: left;
}
.form-label {
    display: block;
    color: #1f1f1f;
    font-weight: 500;
}
.form-req {
    display: inline-block;
    background-color: #cb3716;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 500;
}
.form-input,
.form-textarea {
    display: block;
    width: 100%;
    border: 1px solid #d8cfc0;
    border-radius: 8px;
    background-color: #fbf9f5;
    color: #222222;
    font-family: inherit;
}
.form-input:focus,
.form-textarea:focus {
    border-color: #b08e3e;
    background-color: #ffffff;
    outline: none;
}
.form-textarea {
    resize: vertical;
    line-height: 1.8;
}
.form-agree {
    text-align: center;
}
.form-agree-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #333333;
    cursor: pointer;
}
.form-agree-label a {
    color: #b08e3e;
    text-decoration: underline;
}
.form-error {
    color: #cb3716;
    text-align: center;
}
.form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #cb3716;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: 0px 8px 20px rgba(203, 55, 22, 0.24);
}
.form-submit:hover {
    background-color: #b32f12;
}
.header-home {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1f1f1f;
}
.header-home:hover {
    color: #cb3716;
}
.page-contact .site-header {
    background-color: #ffffff;
    box-shadow: 0px 2px 12px rgba(34, 34, 34, 0.06);
}

@media (min-width: 768px) {
    .section-contact {
        padding: 168px 40px 120px 40px;
    }
    .section-thanks {
        padding: 120px 40px 120px 40px;
    }
    .contact-inner {
        max-width: 720px;
    }
    .contact-label {
        font-size: 13px;
        margin: 0px 0px 12px 0px;
    }
    .contact-title {
        font-size: 32px;
        margin: 0px 0px 24px 0px;
    }
    .contact-lead {
        font-size: 16px;
        line-height: 2;
        margin: 0px auto 48px auto;
    }
    .contact-lead p {
        margin: 0px 0px 4px 0px;
    }
    .contact-form {
        max-width: 640px;
        margin: 0px auto 0px auto;
    }
    .form-row {
        margin: 0px 0px 24px 0px;
    }
    .form-label {
        font-size: 15px;
        margin: 0px 0px 8px 0px;
    }
    .form-req {
        font-size: 11px;
        margin: 0px 0px 0px 8px;
        padding: 2px 8px 2px 8px;
    }
    .form-input {
        height: 52px;
        padding: 0px 16px 0px 16px;
        font-size: 16px;
    }
    .form-textarea {
        padding: 12px 16px 12px 16px;
        font-size: 16px;
    }
    .form-agree {
        margin: 32px 0px 32px 0px;
        font-size: 15px;
    }
    .form-error {
        font-size: 14px;
        margin: 0px 0px 16px 0px;
    }
    .form-submit {
        width: 280px;
        height: 64px;
        font-size: 16px;
        margin: 0px auto 0px auto;
    }
    .header-home {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .section-contact {
        padding: 112px 24px 72px 24px;
    }
    .section-thanks {
        padding: 96px 24px 96px 24px;
    }
    .contact-inner {
        max-width: 100%;
    }
    .contact-label {
        font-size: 11px;
        margin: 0px 0px 10px 0px;
    }
    .contact-title {
        font-size: 24px;
        margin: 0px 0px 20px 0px;
    }
    .contact-lead {
        font-size: 14px;
        line-height: 1.9;
        margin: 0px auto 32px auto;
    }
    .contact-lead p {
        margin: 0px 0px 4px 0px;
    }
    .contact-form {
        max-width: 100%;
        margin: 0px auto 0px auto;
    }
    .form-row {
        margin: 0px 0px 20px 0px;
    }
    .form-label {
        font-size: 14px;
        margin: 0px 0px 8px 0px;
    }
    .form-req {
        font-size: 10px;
        margin: 0px 0px 0px 8px;
        padding: 2px 6px 2px 6px;
    }
    .form-input {
        height: 48px;
        padding: 0px 12px 0px 12px;
        font-size: 16px;
    }
    .form-textarea {
        padding: 10px 12px 10px 12px;
        font-size: 16px;
    }
    .form-agree {
        margin: 24px 0px 24px 0px;
        font-size: 14px;
    }
    .form-error {
        font-size: 13px;
        margin: 0px 0px 16px 0px;
    }
    .form-submit {
        width: 100%;
        height: 56px;
        font-size: 15px;
        margin: 0px auto 0px auto;
    }
    .header-home {
        font-size: 12px;
    }
}

/* ===== contact: ハニーポット / エラー / 確認画面 ===== */
.form-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.form-field-error {
    color: #cb3716;
}
.confirm-list {
    text-align: left;
}
.confirm-row {
    border-bottom: 1px solid #ece5d8;
}
.confirm-row dt {
    color: #b08e3e;
}
.confirm-row dd {
    color: #222222;
    word-break: break-word;
}
.confirm-actions {
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c9bfa8;
    border-radius: 8px;
    color: #555555;
}
.form-back:hover {
    border-color: #b08e3e;
    color: #b08e3e;
}

@media (min-width: 768px) {
    .form-field-error {
        font-size: 13px;
        margin: 8px 0px 0px 0px;
    }
    .confirm-list {
        max-width: 640px;
        margin: 0px auto 40px auto;
    }
    .confirm-row {
        padding: 16px 0px 16px 0px;
    }
    .confirm-row dt {
        font-size: 13px;
        margin: 0px 0px 8px 0px;
    }
    .confirm-row dd {
        font-size: 16px;
        line-height: 1.9;
    }
    .confirm-actions {
        gap: 16px;
    }
    .form-back {
        width: 200px;
        height: 64px;
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .form-field-error {
        font-size: 12px;
        margin: 6px 0px 0px 0px;
    }
    .confirm-list {
        max-width: 100%;
        margin: 0px auto 32px auto;
    }
    .confirm-row {
        padding: 14px 0px 14px 0px;
    }
    .confirm-row dt {
        font-size: 12px;
        margin: 0px 0px 6px 0px;
    }
    .confirm-row dd {
        font-size: 15px;
        line-height: 1.8;
    }
    .confirm-actions {
        flex-direction: column;
        gap: 12px;
    }
    .form-back {
        width: 100%;
        height: 52px;
        font-size: 14px;
    }
}

/* ===== contact: エラー状態・送信中 ===== */
.form-input.is-error,
.form-textarea.is-error {
    border-color: #cb3716;
    background-color: #fdf3f0;
}
.form-alert {
    background-color: #fdecea;
    border: 1px solid #f0b4aa;
    border-radius: 8px;
    color: #b3261e;
    text-align: left;
}
.form-submit.is-loading {
    opacity: 0.6;
    pointer-events: none;
}

@media (min-width: 768px) {
    .form-alert {
        font-size: 15px;
        line-height: 1.8;
        padding: 16px 20px 16px 20px;
        margin: 0px auto 32px auto;
        max-width: 640px;
    }
}
@media (max-width: 767px) {
    .form-alert {
        font-size: 14px;
        line-height: 1.7;
        padding: 12px 16px 12px 16px;
        margin: 0px auto 24px auto;
    }
}

/* =========================================================
   #8 faq（よくある質問）
   ========================================================= */
.section-faq {
    background-color: #ffffff;
    text-align: center;
}
.faq-inner {
    margin: 0px auto 0px auto;
}
.faq-label {
    color: #b08e3e;
    letter-spacing: 0.3em;
}
.faq-title {
    color: #1f1f1f;
    font-weight: 400;
}
.faq-lead {
    color: #555555;
}
.faq-list {
    text-align: left;
    margin: 0px auto 0px auto;
}
.faq-details {
    border-bottom: 1px solid #e7ddca;
}
.faq-q {
    display: flex;
    align-items: center;
    cursor: pointer;
    list-style: none;
    color: #1f1f1f;
    transition: color 0.3s ease;
}
.faq-q::-webkit-details-marker {
    display: none;
}
.faq-q:hover {
    color: #b08e3e;
}
.faq-q-mark {
    color: #b08e3e;
    line-height: 1;
}
.faq-q-text {
    flex: 1;
    line-height: 1.6;
}
.faq-q-icon {
    color: #b08e3e;
    transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.faq-details.is-open .faq-q-icon {
    transform: rotate(180deg);
}
/* JS 無効時のフォールバック（ネイティブ開閉時もアイコンを回転） */
html:not(.js) .faq-details[open] .faq-q-icon {
    transform: rotate(180deg);
}
.faq-a {
    color: #555555;
    overflow: hidden;
    transition:
        height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.32s ease;
}
.faq-a p {
    margin: 0px 0px 8px 0px;
    transform: translateY(-6px);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-details.is-open .faq-a p {
    transform: translateY(0px);
}
.faq-details.is-open .faq-a p:nth-child(2) {
    transition-delay: 0.04s;
}
.faq-details.is-open .faq-a p:nth-child(3) {
    transition-delay: 0.08s;
}
.faq-details.is-open .faq-a p:nth-child(4) {
    transition-delay: 0.12s;
}
.faq-a p:last-child {
    margin: 0px 0px 0px 0px;
}

@media (min-width: 768px) {
    .section-faq {
        padding: 96px 40px 96px 40px;
    }
    .faq-inner {
        max-width: 1000px;
    }
    .faq-label {
        font-size: 13px;
        margin: 0px 0px 12px 0px;
    }
    .faq-title {
        font-size: 32px;
        margin: 0px 0px 24px 0px;
    }
    .faq-lead {
        font-size: 16px;
        line-height: 2;
        margin: 0px auto 48px auto;
    }
    .faq-q {
        padding: 28px 8px 28px 8px;
    }
    .faq-q-mark {
        font-size: 22px;
        margin: 0px 20px 0px 0px;
    }
    .faq-q-text {
        font-size: 18px;
    }
    .faq-q-icon {
        font-size: 18px;
        margin: 0px 0px 0px 16px;
    }
    .faq-a {
        font-size: 15px;
        line-height: 2;
        padding: 0px 42px 28px 42px;
    }
}

@media (max-width: 767px) {
    .section-faq {
        padding: 56px 24px 56px 24px;
    }
    .faq-inner {
        max-width: 100%;
    }
    .faq-label {
        font-size: 11px;
        margin: 0px 0px 10px 0px;
    }
    .faq-title {
        font-size: 24px;
        margin: 0px 0px 16px 0px;
    }
    .faq-lead {
        font-size: 13px;
        line-height: 1.9;
        margin: 0px auto 32px auto;
    }
    .faq-q {
        padding: 20px 4px 20px 4px;
    }
    .faq-q-mark {
        font-size: 18px;
        margin: 0px 12px 0px 0px;
    }
    .faq-q-text {
        font-size: 15px;
    }
    .faq-q-icon {
        font-size: 15px;
        margin: 0px 0px 0px 12px;
    }
    .faq-a {
        font-size: 14px;
        line-height: 1.9;
        padding: 0px 4px 20px 30px;
    }
}

/* ============ 404 エラーページ ============ */
.page-error .site-header {
    background-color: #ffffff;
    box-shadow: 0px 2px 12px rgba(34, 34, 34, 0.06);
}
.section-error {
    background-color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.error-inner {
    margin: 0px auto 0px auto;
}
.error-code {
    color: #b08e3e;
    line-height: 1;
    letter-spacing: 0.08em;
}
.error-title {
    color: #1f1f1f;
    font-weight: 700;
}
.error-desc {
    color: #555555;
}
.error-desc p {
    margin: 0px 0px 8px 0px;
}
.error-desc p.fade-in:nth-child(1) {
    transition-delay: 0.15s;
}
.error-desc p.fade-in:nth-child(2) {
    transition-delay: 0.4s;
}
.error-cta {
    display: inline-flex;
}
.error-cta i {
    animation: errorArrowMove 1.2s ease-in-out infinite;
}
@keyframes errorArrowMove {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(6px);
    }
    100% {
        transform: translateX(0px);
    }
}
@media (prefers-reduced-motion: reduce) {
    .error-cta i {
        animation: none;
    }
}

@media (min-width: 768px) {
    .section-error {
        padding: 160px 40px 120px 40px;
    }
    .error-inner {
        max-width: 640px;
    }
    .error-code {
        font-size: 120px;
        margin: 0px 0px 16px 0px;
    }
    .error-title {
        font-size: 32px;
        margin: 0px 0px 24px 0px;
    }
    .error-desc {
        font-size: 16px;
        line-height: 2;
        margin: 0px 0px 40px 0px;
    }
}
@media (max-width: 767px) {
    .section-error {
        padding: 120px 24px 80px 24px;
    }
    .error-inner {
        max-width: 100%;
    }
    .error-code {
        font-size: 80px;
        margin: 0px 0px 12px 0px;
    }
    .error-title {
        font-size: 24px;
        margin: 0px 0px 16px 0px;
    }
    .error-desc {
        font-size: 14px;
        line-height: 1.9;
        margin: 0px 0px 32px 0px;
    }
}
