@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100%;
  overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans", "Noto Sans JP", Arial, sans-serif;
  color: #0f172a;
  background: #ffffff;
  line-height: 1.65;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1100px, 100% - 32px);
  margin: 0 auto;
}

.js-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 560ms cubic-bezier(0.2, 0.95, 0.2, 1), transform 720ms cubic-bezier(0.2, 0.95, 0.2, 1);
  will-change: opacity, transform;
}

.js-reveal.is-in {
  opacity: 1;
  transform: none;
  will-change: auto;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ========== HEADER ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(13, 27, 42, 0.06);
}

.header__inner {
  height: 56px;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ========== LOGO (B) ========== */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo__word {
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 18px;
  color: #0d1b2a;
  line-height: 1;
}

.logo__dot {
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, #c9b27d, #e6d3a3, #c9b27d);
  border-radius: 999px;
  opacity: 0.9;
}

.logo--b .logo__word {
  font-weight: 700;
}

/* ナビ */
.header__nav {
  display: flex;
  align-items: center;
}

.header__cta {
  font-size: 13px;
  font-weight: 600;
  color: #c7b38a;
  text-decoration: none;
}

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

/* PCで少し余裕を出す */
@media (min-width: 768px) {
  .header__inner {
    height: 64px;
  }
  .header__logo {
    font-size: 20px;
  }
  .header__cta {
    font-size: 14px;
  }
}
.fv {
  padding: 18px 16px 22px;
}

.fv__inner {
  max-width: 520px;
  margin: 0 auto;
}

.fv__hero {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #f3f5f7;
  aspect-ratio: 2/3;
}

.fv__heroImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fv__heroCopy {
  position: absolute;
  left: 14px;
  top: 14px;
  margin: 0;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
  font-size: 14px;
}

.fv__eyebrow {
  margin: 18px 0 10px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #1f3b5a;
  font-size: 16px;
}

.fv__brand {
  display: block;
  position: relative;
  margin: 12px auto 20px;
  padding-bottom: 10px;
  font-size: clamp(26px, 5vw, 28px);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  color: #6f5b3e;
  text-align: center;
}

.fv__brand::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #c9b27d, #e6d3a3, #c9b27d);
  border-radius: 2px;
}

.fv__ctaArea {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.fv__cta {
  width: min(360px, 100%);
  display: grid;
  place-items: center;
  height: 52px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  color: #fff;
  background: #c7b38a;
  box-shadow: 0 14px 28px rgba(21, 101, 192, 0.22);
}

.fv__cta:active {
  transform: translateY(1px);
}

.fv__subLink {
  font-size: 14px;
  color: #0d1b2a;
  text-decoration: none;
  font-weight: 700;
}

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

.fv__note {
  margin: 4px 0 0;
  font-size: 12px;
  color: rgba(13, 27, 42, 0.62);
  text-align: center;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .fv {
    padding: 26px 16px 30px;
  }
  .fv__hero {
    border-radius: 26px;
    aspect-ratio: 16/10;
    min-height: 667px;
    width: 100%;
  }
  .fv__brand {
    font-size: 40px;
  }
  .fv__heroCopy {
    font-size: 15px;
  }
}
.fv__badge {
  position: absolute;
  width: 68px;
  height: auto;
  z-index: 2;
  opacity: 0.92;
  pointer-events: none;
}

.fv__badge--left {
  left: 14px;
  bottom: 14px;
}

.fv__badge--right {
  right: 14px;
  top: 14px;
}

@media (min-width: 768px) {
  .fv__badge {
    width: 80px;
  }
  .fv__badge--left {
    left: 18px;
    bottom: 18px;
  }
  .fv__badge--right {
    right: 18px;
    top: 18px;
  }
}
.section {
  padding: 34px 0;
}

.section--soft {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0));
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.sectionHead {
  margin-bottom: 14px;
  padding: 18px;
  border-radius: 20px;
}

.kicker {
  margin: 0 0 6px;
  letter-spacing: 0.18em;
  font-weight: 800;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.52);
  text-align: center;
}

.h2 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.28;
  text-align: center;
}

.h3 {
  margin: 10px 0 6px;
  font-size: 17px;
  line-height: 1.3;
}

.p {
  margin: 0;
  color: rgba(15, 23, 42, 0.74);
  font-size: 14px;
}

.steps {
  margin-top: 14px;
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 56px rgba(2, 6, 23, 0.08);
}

.steps__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.07);
}

.steps__num {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(15, 23, 42, 0.7);
  background: linear-gradient(transparent 60%, rgba(16, 185, 129, 0.22) 60%);
  padding: 0 4px;
  border-radius: 6px;
}

.steps__title {
  font-weight: 800;
  font-size: 15px;
}

.steps__text {
  font-size: 13px;
  color: rgba(15, 23, 42, 0.68);
  margin-top: 2px;
}

.noteBox {
  margin-top: 14px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(37, 99, 235, 0.06));
}

.noteBox__title {
  margin: 0 0 6px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.noteBox__text {
  margin: 0;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.72);
}

.voiceGrid {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.voiceCard {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 56px rgba(2, 6, 23, 0.08);
}

.voiceCard__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.face {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.face--w {
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.18), rgba(37, 99, 235, 0.1));
}

.face--m {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.18), rgba(37, 99, 235, 0.1));
}

.meta__name {
  font-weight: 800;
}

.meta__tag {
  display: inline-block;
  margin-top: 3px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.64);
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.voiceCard__text {
  margin: 0;
  color: rgba(15, 23, 42, 0.74);
  font-size: 14px;
}

/* ========== FEATURES ========== */
.features {
  --ink: #0d1b2a;
  --muted: rgba(13, 27, 42, 0.72);
  --line: rgba(13, 27, 42, 0.08);
  /* アクセント：清潔感のある “やわらかい黄” */
  --accent: #ffd814;
  --accent: #ffe07a;
  --accent-10: rgba(255, 224, 122, 0.18);
  --accent-14: rgba(255, 224, 122, 0.26);
  --accent-18: rgba(255, 224, 122, 0.34);
  --accent-28: rgba(255, 224, 122, 0.44);
  padding: 54px 16px;
  background: #fff;
}

.features .container {
  max-width: 980px;
  margin: 0 auto;
}

/* sectionHead：導入はフラット（カード化しない） */
.features .sectionHead {
  text-align: center;
  margin: 0 0 18px;
}

.features .h2 {
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.5;
}

.features .lead {
  margin: 12px auto 0;
  max-width: 46ch;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
}

/* 強調：アクセント1色に統一 */
.features .em {
  font-weight: 700;
}

.features .em--u {
  text-decoration: underline;
  text-decoration-thickness: 0.2em;
  text-underline-offset: 0.16em;
  text-decoration-color: var(--accent-28);
}

.features .em--u2 {
  background: linear-gradient(transparent 62%, var(--accent-14) 62%);
  padding: 0 0.12em;
  border-radius: 10px;
}

/* 機能リスト：カードではなく“メディアブロック” */
.features .featureList {
  margin-top: 22px;
  border-top: 1px solid var(--line);
}

.features .featureItem {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.features .featureItem__media {
  border-radius: 18px;
  background: rgba(13, 27, 42, 0.035);
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 108px;
  height: 108px;
}

.features .featureItem__img {
  object-fit: contain;
  display: block;
}

.features .featureItem__body {
  min-width: 0;
}

/* タグ：色は薄く、文字はニュートラル（3色運用しない） */
.features .featureItem__tag,
.features .featureItem__tag--safe,
.features .featureItem__tag--match {
  margin: 0 0 8px;
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(13, 27, 42, 0.76);
  background: var(--accent-10);
  border: 1px solid var(--accent-10);
}

/* 見出し：マーカー的なアンダーライン（薄く） */
.features .featureItem__title {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.features .featureItem__titleIn {
  background: linear-gradient(transparent 64%, var(--accent-14) 64%);
  padding: 0 0.12em;
  border-radius: 10px;
}

.features .featureItem__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  font-weight: 500;
  color: rgba(13, 27, 42, 0.76);
}

@media (min-width: 768px) {
  .features {
    padding: 68px 16px;
  }
  .features .h2 {
    font-size: 34px;
  }
  .features .lead {
    font-size: 15px;
  }
  .features .featureItem {
    grid-template-columns: 160px 1fr;
    gap: 22px;
    padding: 22px 0;
  }
  .features .featureItem__media {
    width: 160px;
    height: 128px;
    border-radius: 22px;
  }
  .features .featureItem__title {
    font-size: 19px;
  }
}
/* ========== SAFETY ========== */
.safety {
  --ink: #0d1b2a;
  --muted: rgba(13, 27, 42, .72);
  --line: rgba(13, 27, 42, .10);
  /* 透明感のある背景（添付イメージ寄せ） */
  --bg: #fafafa;
  /* アクセント：黄（やわらかく） */
  --accent: #ffd814;
  --accent-14: rgba(255, 216, 20, .20);
  padding: 56px 0px;
  background: var(--bg);
}

.safety .container {
  max-width: 980px;
  margin: 0 auto;
}

/* 見出し */
.safety .sectionHead {
  text-align: center;
  margin: 0 0 18px;
}

.safety .h2 {
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.28;
}

.safety .lead {
  margin: 0 auto;
  max-width: 50ch;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
}

/* 4カード（2×2） */
.safetyGrid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

/* カード */
.safetyCard {
  border-radius: 18px;
}

/* イラスト枠（上部） */
.safetyCard__illust {
  border-radius: 14px;
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 24px;
}

.safetyCard__illust img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  display: block;
}

/* タイトル（マーカー下線） */
.safetyCard__title {
  margin: 10px 0 8px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
  /* 800は使わない */
  color: var(--ink);
  letter-spacing: 0.01em;
  text-align: center;
  white-space: nowrap;
}

.safetyCard__titleIn {
  background: linear-gradient(transparent 64%, var(--accent-14) 64%);
  padding: 0 0.12em;
  border-radius: 10px;
}

/* 本文（短く・読みやすく） */
.safetyCard__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.8;
  font-weight: 500;
  color: rgba(13, 27, 42, 0.78);
}

/* 注記 */
.safetyCard__note {
  margin: 8px 0 0;
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(13, 27, 42, 0.55);
  text-align: right;
}

/* 下部補足 */
.safetyFoot {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(13, 27, 42, 0.1);
}

.safetyFoot__text {
  margin: 0;
  text-align: center;
  font-size: 12.5px;
  line-height: 1.7;
  font-weight: 500;
  color: rgba(13, 27, 42, 0.66);
}

/* SP最適化：2列だと詰まる端末だけ1列へ */
@media (max-width: 360px) {
  .safetyGrid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) {
  .safety {
    padding: 70px 16px;
  }
  .safety .h2 {
    font-size: 34px;
  }
  .safety .lead {
    font-size: 15px;
  }
  .safetyGrid {
    gap: 18px;
  }
  .safetyCard {
    padding: 16px 16px 14px;
    border-radius: 22px;
  }
  .safetyCard__title {
    font-size: 16px;
  }
  .safetyCard__text {
    font-size: 14px;
  }
}
/* ========== USAGE (slider) ========== */
.usage {
  --ink: #0d1b2a;
  --muted: rgba(13, 27, 42, .72);
  --line: rgba(13, 27, 42, .10);
  --accent: #ffd814;
  --accent-14: rgba(255, 216, 20, .20);
  --accent-22: rgba(255, 216, 20, .28);
  padding: 56px 16px;
  background: #fff;
}

.usage .container {
  max-width: 980px;
  margin: 0 auto;
}

/* rail head */
.usageRail {
  margin-top: 22px;
}

.usageRail__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 10px 0 12px;
}

.usage .lead {
  text-align: center;
}

.usageNav {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(13, 27, 42, 0.12);
  background: #fff;
  color: rgba(13, 27, 42, 0.72);
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
  padding: 0;
}

.usageNav:active {
  transform: translateY(1px);
}

.usageDots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.usageDot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(13, 27, 42, 0.18);
  border: 1px solid rgba(13, 27, 42, 0.08);
}

.usageDot.is-active {
  width: 22px;
  background: rgba(13, 27, 42, 0.72);
}

/* track */
.usageTrack {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.usageTrack::-webkit-scrollbar {
  height: 10px;
}

.usageTrack::-webkit-scrollbar-thumb {
  background: rgba(13, 27, 42, 0.12);
  border-radius: 999px;
}

/* card */
.usageCard {
  scroll-snap-align: start;
  flex: 0 0 78%;
  max-width: 360px;
  background: #fff;
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: 20px;
  padding: 12px 12px 14px;
}

.usageCard__media {
  border-radius: 16px;
  background: rgba(13, 27, 42, 0.035);
  overflow: hidden;
  aspect-ratio: 9/16;
  display: block;
}

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

.usageCard__step {
  margin: 12px 0 8px;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(13, 27, 42, 0.82);
  background: rgba(13, 27, 42, 0.06);
  border: 1px solid rgba(13, 27, 42, 0.08);
}

.usageCard__title {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.usageCard__titleIn {
  background: linear-gradient(transparent 64%, var(--accent-14) 64%);
  padding: 0 0.12em;
  border-radius: 10px;
}

.usageCard__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  font-weight: 500;
  color: rgba(13, 27, 42, 0.76);
}

/* desktop: 2-3枚見えるように */
@media (min-width: 768px) {
  .usage {
    padding: 72px 16px;
  }
  .usageCard {
    flex-basis: 36%;
  }
  .usageRail__head {
    margin: 12px 0 14px;
  }
}
/* ========== FAQ ========== */
.faq {
  --bg: #fafafa;
  --card: #ffffff;
  --ink: #0d1b2a;
  --muted: rgba(13, 27, 42, .72);
  --line: rgba(13, 27, 42, .08);
  --accent: #1677ff;
  --accent-soft: rgba(22, 119, 255, .10);
  --accent-soft2: rgba(22, 119, 255, .16);
  padding: 56px 16px;
  background-color: var(--bg);
  background-image: linear-gradient(rgba(13, 27, 42, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(13, 27, 42, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

.faq .container {
  max-width: 980px;
  margin: 0 auto;
}

/* 見出し */
.faq .sectionHead {
  text-align: center;
  margin: 0 0 18px;
}

.faq .h2 {
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.28;
}

.faq .lead {
  margin: 12px auto 0;
  max-width: 52ch;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}

/* リスト */
.faqList {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

/* カード（丸パクリ回避：影の方向＆枠の見せ方を変更） */
.faqCard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 14px;
  box-shadow: 0 10px 24px rgba(13, 27, 42, 0.06);
}

/* Q/A 行 */
.faqRow {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
}

.faqRow + .faqRow {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(13, 27, 42, 0.1);
}

/* バッジ（Q/A丸） */
.faqBadge {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  user-select: none;
}

.faqBadge--q {
  color: #6b5a3d;
  background: rgba(184, 160, 120, 0.18);
  border: 1px solid rgba(184, 160, 120, 0.35);
}

.faqBadge--a {
  color: #ffffff;
  background: linear-gradient(135deg, #8b6f3d, #bfa06a);
  border: 0;
}

/* 質問 */
.faqQ {
  margin: 2px 0 0;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 650;
  /* 太すぎ問題を避ける */
  color: var(--ink);
  letter-spacing: 0.01em;
}

/* 回答 */
.faqRow--a {
  align-items: start;
}

.faqA {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  font-weight: 500;
  color: rgba(13, 27, 42, 0.78);
}

/* リンク */
.faqLink {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(transparent 70%, rgba(22, 119, 255, 0.18) 70%);
  border-radius: 10px;
  padding: 0 0.18em;
}

.faqLink:hover {
  background: linear-gradient(transparent 62%, rgba(22, 119, 255, 0.26) 62%);
}

.faqLink:focus-visible {
  outline: 2px solid rgba(22, 119, 255, 0.4);
  outline-offset: 2px;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .faq {
    padding: 74px 16px;
  }
  .faq .h2 {
    font-size: 34px;
  }
  .faq .lead {
    font-size: 15px;
  }
  .faqList {
    gap: 16px;
    margin-top: 22px;
  }
  .faqCard {
    border-radius: 22px;
    padding: 18px 18px;
  }
  .faqQ {
    font-size: 16px;
  }
}
/* ========== CLOSING ========== */
.closing {
  padding: 64px 16px 0px;
  background: #ffffff;
}

.closing__inner {
  max-width: 520px;
  margin: 0 auto;
}

/* テキスト */
.closing__content {
  text-align: center;
  padding: 0 8px;
}

.closing__kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(13, 27, 42, 0.82);
  background: rgba(13, 27, 42, 0.06);
}

.closing__title {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.32;
  font-weight: 700;
  color: #0d1b2a;
  letter-spacing: 0.01em;
}

.closing__em {
  background: linear-gradient(transparent 64%, rgba(255, 216, 20, 0.28) 64%);
  padding: 0 0.14em;
  border-radius: 10px;
}

.closing__lead {
  margin: 0 auto 22px;
  max-width: 46ch;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
  color: rgba(13, 27, 42, 0.74);
}

/* CTA */
.closing__cta {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.closing__note {
  font-size: 12px;
  color: rgba(13, 27, 42, 0.6);
}

/* PC */
@media (min-width: 768px) {
  .closing {
    padding: 88px 16px 96px;
  }
  .closing__title {
    font-size: 34px;
  }
  .closing__lead {
    font-size: 15px;
  }
}
/* ========== FOOTER ========== */
.footer {
  background: #f7f8fa;
  color: rgba(13, 27, 42, 0.62);
  font-size: 12px;
  padding: 16px 12px 60px;
}

.footer__inner {
  max-width: 980px;
  margin: 0 auto;
}

.footer__notice {
  margin: 12px 0;
  line-height: 1.55;
  text-align: center;
  font-size: 10px;
}

.footer__bottom {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer__links {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  color: rgba(13, 27, 42, 0.68);
  text-decoration: none;
}

.footer__links a:hover {
  text-decoration: underline;
}

.footer__links span {
  color: rgba(13, 27, 42, 0.35);
}

.footer__copy {
  font-size: 11px;
  color: rgba(13, 27, 42, 0.45);
  text-align: center;
  margin: 0 auto;
  display: block;
}

/* ========== FIXED CTA ========== */
.fixedCta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  transform: translateY(100%);
  transition: transform 0.28s ease;
}

.fixedCta.is-in {
  transform: translateY(0);
}

.fixedCta__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 16px calc(env(safe-area-inset-bottom) + 0px);
  box-sizing: border-box;
  background: #c7b38a;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* 中央：アイコン＋テキストを“1つの塊”としてセンターに置く */
.fixedCta__center {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  line-height: 1;
}

.fixedCta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0.95;
}

.fixedCta__text {
  line-height: 1;
}

/* 右矢印：右端固定（センター計算に干渉させない） */
.fixedCta__arrow {
  position: absolute;
  right: calc(env(safe-area-inset-right) + 16px);
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  opacity: 0.85;
}

.fixedCta__link:hover,
.fixedCta__link:focus-visible {
  background: #c7b38a;
}
