@charset "UTF-8";
/* =========================
   Main Stylesheet
   ========================= */
/* =========================
   Radius tokens
   ========================= */
/* =========================
   Color tokens
   ========================= */
/* =========================
   Main Stylesheet
   ========================= */
/* =========================
   Main Stylesheet
   ========================= */
html {
  scroll-behavior: smooth;
}

body {
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 0;
  margin-right: 0;
}

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

.container {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 20px;
}

.section {
  padding: clamp(40px, 6vw, 72px) 0;
}

.section-alt {
  background: #f7f9fb;
}

.section-title {
  margin: 0 0 24px;
  line-height: 1.2;
  text-align: center;
  position: relative;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: calc(-1 * 12px);
  width: 88px;
  height: 4px;
  border-radius: 2px;
  background: #e31b23;
  left: 50%;
  transform: translateX(-50%);
}
.section-title.is-left {
  text-align: left;
  position: relative;
}
.section-title.is-left::after {
  content: "";
  position: absolute;
  bottom: calc(-1 * 12px);
  width: 88px;
  height: 4px;
  border-radius: 2px;
  background: #e31b23;
  left: 0;
  transform: none;
}
.section-title.no-underline::after {
  display: none;
}

/* 共通ユーティリティ */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* =========================
   Main Stylesheet
   ========================= */
.center {
  text-align: center;
}

.mt-24 {
  margin-top: 24px;
}

.w-full {
  width: 100%;
}

.muted {
  color: #596375;
}

.small {
  font-size: 0.9rem;
}

/* =========================
   Main Stylesheet
   ========================= */
.btn, .btn-danger, .btn-outline, .btn-primary, .btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
  transition: transform 0.05s ease, box-shadow 0.2s ease, filter 0.15s ease;
}
.btn:active, .btn-danger:active, .btn-outline:active, .btn-primary:active, .btn-accent:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.btn-accent {
  background: #06C755;
  color: #fff;
}
.btn-accent:hover {
  filter: brightness(0.96);
}

.btn-primary {
  background: #0b606d;
  color: #fff;
}
.btn-primary:hover {
  filter: brightness(0.96);
}

.btn-outline {
  background: transparent;
  color: #0ea5e9;
  border: 1px solid #0ea5e9;
}
.btn-outline:hover {
  background: rgba(14, 165, 233, 0.06);
}

.btn-danger {
  background: #e31b23;
  color: #fff;
}
.btn-danger:hover {
  filter: brightness(0.96);
}

.card {
  background: #fff;
  border: 1px solid #eef1f4;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  padding: 16px 24px;
  height: 100%;
}
.card p {
  margin: 0;
  color: #596375;
  line-height: 1.7;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid.cols-2 {
  grid-template-columns: 1fr;
}

.grid.cols-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  .grid.cols-2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* =========================
   Main Stylesheet
   ========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #eef1f4;
}
.header .nav {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 20px;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr auto auto;
  align-items: center;
}
.header .brand {
  font-weight: 800;
  text-decoration: none;
  color: #333;
}
.header .navlinks {
  display: none;
  gap: 16px;
}
@media (min-width: 992px) {
  .header .navlinks {
    display: flex;
  }
}
.header .navlinks a {
  text-decoration: none;
  color: #333;
  opacity: 0.9;
}
.header .navlinks a:hover {
  opacity: 1;
}

/* =========================
   Header polish (brand accent & nav underline)
   ========================= */
/* 1) ブランドタイトルを“冷たさ”から“温かい信頼感”へ */
.header .brand {
  position: relative;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding-bottom: 10px; /* 下線のスペース */
  color: #333;
}

/* 見出しと同系の赤い短バーを下に（PCで表示） */
@media (min-width: 992px) {
  .header .brand::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 56px;
    height: 3px;
    background: #e31b23;
    border-radius: 2px;
    opacity: 0.9;
  }
}
/* 2) ナビに“見出し風アンダーバー”をホバー＆アクティブで表示 */
.header .navlinks a {
  position: relative;
  padding: 8px 2px 12px; /* 下に少し余白→下線を見せる */
  text-decoration: none;
  color: #333;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.header .navlinks a:hover {
  opacity: 1;
}

/* 下線：デフォは非表示（scaleX(0)）→ hover/activeで伸びる */
.header .navlinks a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: #e31b23;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

/* ホバーと .is-active で下線オン */
.header .navlinks a:hover::after,
.header .navlinks a.is-active::after {
  transform: scaleX(1);
}

/* 3) 全体の間延び防止＆詰まり解消（少し広げる） */
.header .nav {
  column-gap: 24px;
}

.header .navlinks {
  gap: 20px;
}

/* ヘッダーが stick する際の再描画を安定化 */
.header {
  position: sticky;
  top: 0;
  will-change: auto; /* 余計なレイヤー化を抑制 */
  backface-visibility: hidden;
  transform: none; /* transform 指定があるとズレやすい */
}

/* =========================
   Footer Compact Style
   ========================= */
#footer {
  background: #fff;
  padding: 16px 0; /* ← 高さを抑えめに */
  border-top: 1px solid #eef1f4;
  font-size: 0.85rem; /* 全体を少し小さめ */
  color: #596375;
  /* スマホでは縦並び */
}
#footer .footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
#footer .copyright {
  font-weight: 600;
  color: #111;
  margin: 0;
  font-size: 0.9rem;
}
#footer .note {
  margin: 0;
  font-size: 0.75rem; /* 小さめにして圧縮 */
  color: #596375;
  line-height: 1.4; /* 詰まりすぎないよう調整 */
}
#footer .footer-links {
  display: flex;
  gap: 16px;
  font-size: 0.75rem;
}
#footer .footer-links a {
  color: #333;
  text-decoration: none;
}
#footer .footer-links a:hover {
  text-decoration: underline;
}
#footer .footer-cta .btn {
  font-size: 0.85rem;
  padding: 0.5em 1.2em; /* ボタンも高さを少し抑える */
}
@media (max-width: 992px) {
  #footer .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  #footer .footer-cta {
    margin-top: 12px;
  }
}

/* =========================
  Footer Compact Style
  ========================= */
#footer {
  background: #fff;
  padding: 16px 0; /* ← 高さを抑えめに */
  border-top: 1px solid #eef1f4;
  font-size: 0.85rem; /* 全体を少し小さめ */
  color: #596375;
  /* スマホでは縦並び */
}
#footer .footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
#footer .copyright {
  font-weight: 600;
  color: #111;
  margin: 0;
  font-size: 0.9rem;
}
#footer .note {
  margin: 0;
  font-size: 0.75rem; /* 小さめにして圧縮 */
  color: #596375;
  line-height: 1.4; /* 詰まりすぎないよう調整 */
}
#footer .footer-links {
  display: flex;
  gap: 16px;
  font-size: 0.75rem;
}
#footer .footer-links a {
  color: #333;
  text-decoration: none;
}
#footer .footer-links a:hover {
  text-decoration: underline;
}
#footer .footer-cta .btn {
  font-size: 0.85rem;
  padding: 0.5em 1.2em; /* ボタンも高さを少し抑える */
}
@media (max-width: 992px) {
  #footer .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  #footer .footer-cta {
    margin-top: 12px;
  }
}

/* =========================
   Main Stylesheet
   ========================= */
/* =========================
   Sections
   ========================= */
/* =========================
   Hero (refactored, single source of truth)
   ========================= */
/* ヘッダー高さ（別ファイルで定義済みなら不要） */
.header {
  --header-h: 64px;
}

/* 画面高いっぱい（ヘッダーぶん差し引き）＋描画安定化 */
.hero {
  background: #0b606d;
  color: #fff;
  box-sizing: border-box;
  overflow: hidden; /* 端のハミ出し防止 */
  contain: layout paint; /* スクロール時の再計算を抑える */
  background-attachment: scroll; /* parallax 的な揺れを防止 */
}

/* 中身：左右フレックス配置 */
.hero > .container {
  height: 100%;
  display: flex;
  align-items: center; /* 縦中央 */
  justify-content: space-between;
  gap: 24px;
}

/* 左右の比率（テキスト 1.2 : 画像 1） */
.hero-content {
  flex: 1.2;
}

.hero-art {
  flex: 1;
}

/* 見出し・本文・CTA */
.hero-title {
  margin: 0 0 12px;
}

.hero-sub {
  margin: 0 0 16px;
  color: #e6f6ff;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* 右のイメージ領域 */
.hero .hero-art {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate; /* レイヤー分離でズレ対策 */
}

.hero .hero-art img {
  display: block;
  width: auto;
  height: auto;
  max-width: 520px; /* 横の上限 */
  max-height: 100%; /* 親の高さ内に収める */
  object-fit: contain;
  transform: translateZ(0); /* GPU レイヤーでチラつき軽減 */
}

/* モバイル時は縦積み */
@media (max-width: 992px) {
  .hero {
    min-height: auto;
  } /* モバイルは可変 */
  .hero > .container {
    flex-direction: column;
    text-align: center;
    gap: 32px;
    padding-block: clamp(24px, 6vh, 72px);
  }
  .hero-content, .hero-art {
    flex: none;
    width: 100%;
  }
}
/* =========================
   About (ABA銀行とは)
   左右1.4:1 レイアウト
   ========================= */
#about .container {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  #about .container {
    grid-template-columns: 1.4fr 1fr;
  }
}
#about .benefit-list li {
  margin-bottom: 10px;
  line-height: 1.7;
}
#about .about-box {
  background: #fff;
  border: 1px solid #eef1f4;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  padding: 16px 24px;
  height: 100%;
}
#about .about-title, #about .sub-title {
  position: relative;
  padding-top: 2px;
  margin: 0 0 12px;
}
#about .about-title::after, #about .sub-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 8px;
  background: #e31b23;
  border-radius: 2px;
}
#about .about-cta .note {
  margin-top: 12px;
  color: #596375;
  font-size: 0.9rem;
}

/* =========================
   Flow（ご利用の流れ）
   ========================= */
#flow .steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
#flow .steps > .step {
  flex: 1 1 calc(50% - 24px);
  box-sizing: border-box;
}
@media (max-width: 992px) {
  #flow .steps > .step {
    flex: 1 1 100%;
  }
}
#flow .step {
  background: #fff;
  border: 1px solid #eef1f4;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  padding: 16px 24px;
  height: 100%;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
#flow .step img {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
}
#flow .step h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  line-height: 1.3;
}
#flow .step p {
  margin: 0;
  line-height: 1.7;
}
#flow .section-actions {
  margin-top: 32px;
  text-align: center;
}
#flow .section-title {
  margin-bottom: 32px;
}

/* Checklist */
/* =========================
   Timeline
   ========================= */
#timeline .timeline {
  list-style: none;
  margin: 0 auto;
  padding: 0 0 0 48px;
  position: relative;
  width: fit-content;
}
#timeline .timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(14, 165, 233, 0.18);
  border-radius: 2px;
}
#timeline .timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 140px 1fr;
  column-gap: 40px;
  align-items: center;
  padding: 12px 0;
}
#timeline .tl-dot {
  position: absolute;
  left: -22px;
  top: 34%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}
#timeline h4 {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
  line-height: 1.15;
}
#timeline p {
  margin: 0;
  line-height: 1.7;
  max-width: 62ch;
  color: #333;
}
#timeline .timeline li + li {
  margin-top: 10px;
}
@media (max-width: 992px) {
  #timeline .timeline {
    padding-left: 36px;
  }
  #timeline .timeline::before {
    left: 18px;
  }
  #timeline .timeline li {
    grid-template-columns: 1fr;
    row-gap: 6px;
    align-items: start;
  }
  #timeline .tl-dot {
    left: -16px;
  }
  #timeline h4 {
    white-space: normal;
  }
  #timeline p {
    max-width: 100%;
  }
}
#timeline .muted {
  display: block;
  margin-left: auto;
  text-align: right;
}

/* =========================
   Plans（サポートと料金）
   ========================= */
#plans .cards {
  display: flex;
  flex-wrap: wrap; /* 折り返し可 */
  gap: 24px; /* カード間の余白 */
  margin-bottom: 45px;
  align-items: stretch; /* 高さを揃える */
}
#plans .cards .card {
  flex: 1 1 100%; /* モバイル時は1列 */
  border: 1.5px solid rgb(207.0357142857, 215.5, 223.9642857143);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  height: auto; /* flexが高さ調整するので100%不要 */
  position: relative;
  z-index: 0;
}
@media (min-width: 992px) {
  #plans .cards .card {
    flex: 1 1 calc(40% - 24px); /* PC時は2列。gapを考慮 */
  }
}
#plans .cards .card:hover {
  border-color: rgb(182.2642857143, 195.1, 207.9357142857);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}
#plans .cards .card .btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 36px);
  border-radius: 999px;
  box-shadow: none;
}
#plans .cards .card .btn.btn-accent {
  background: rgba(6, 199, 85, 0.12);
  color: #06C755;
  border: 1px solid rgba(6, 199, 85, 0.28);
  font-weight: 700;
  padding: 0 12px;
}
#plans .cards .card .btn.btn-accent:hover {
  background: rgba(6, 199, 85, 0.18);
}
#plans > .container > p.muted.small.mt-24 {
  display: block;
  text-align: right;
  margin-top: 16px;
  clear: both;
}
#plans .price {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 0 12px;
}
@media (min-width: 992px) {
  #plans .card {
    margin-bottom: 15px;
  }
  #plans .cards .card:nth-child(2) {
    border-color: #d3e6ec;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  }
}

/* =========================
   Compare（比較表）
   ========================= */
#compare .table-wrap {
  overflow-x: auto;
}

#compare .table {
  width: 100%;
  border-collapse: collapse;
}
#compare .table th, #compare .table td {
  padding: 12px 14px;
  border-bottom: 1px solid #eef1f4;
  text-align: left;
}
#compare .table thead th {
  background: #f7f9fb;
}
#compare .table tbody tr:nth-child(odd) {
  background: #fafcfd;
}

/* =========================
   Voice（ご利用者の声）
   ========================= */
#voice {
  /* モバイル：1列 */
}
#voice .cards {
  display: flex;
  flex-wrap: wrap; /* 折り返しOK */
  gap: 24px; /* カード間余白 */
  /* 各カード */
}
#voice .cards .card {
  flex: 1 1 calc(50% - 24px); /* PC時は2列 */
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
#voice .cards .card p {
  margin: 0 0 12px;
}
#voice .cards .card .muted {
  margin-top: auto; /* 高さを揃えてフッター部分を下に */
  text-align: right;
}
@media (max-width: 992px) {
  #voice .cards .card {
    flex: 1 1 100%;
  }
}

/* =========================
   Notes（安心のために）
   ========================= */
#notes .list {
  margin: 0;
  padding-left: 20px;
}

/* =========================
   CTA band
   ========================= */
.cta-band {
  background: #0b606d;
  color: #fff;
}
.cta-band .cta-band-inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
}
.cta-band .cta-band-inner .cta-text {
  margin: 0;
  font-weight: 700;
}
.cta-band a.btn {
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  .cta-band .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-band .cta-band-inner a.btn {
    width: 100%;
  }
}
/* =========================
   FAQ
   ========================= */
#faq .faq {
  display: grid;
  gap: 16px;
}

#faq details {
  border: 1px solid #eef1f4;
  border-radius: 6px;
  padding: 16px 24px;
  background: #fff;
}

#faq summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0;
}

#faq details p {
  margin: 12px 0 0;
  line-height: 1.6;
}

#faq details + details {
  margin-top: 16px;
}

/* =========================
   USP 3カラム
   ========================= */
#usp .cards {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  #usp .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

#usp .card {
  display: grid;
  align-items: start;
}

#usp .card .icon {
  width: 72px;
  height: 72px;
}

#usp .card .card-title {
  margin: 0 0 6px;
  font-weight: 700;
}

#usp .card .card-text {
  margin: 0;
  line-height: 1.7;
}

/* =========================
   Checklist / Badges
   ========================= */
#about .about-cta .btn {
  width: 100%;
  box-sizing: border-box;
}

#about .award {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

#about .award img {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
}

#about .award p {
  margin: 0;
  color: #596375;
  font-size: 0.9rem;
  line-height: 1.6;
}

#about .awards-inline {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #333;
  margin-top: 16px;
}

#fx .fx-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

#fx .fx-cards .card {
  flex: 1 1 calc(50% - 24px);
  box-sizing: border-box;
}

@media (max-width: 992px) {
  #fx .fx-cards .card {
    flex: 1 1 100%;
  }
}
#fx .muted {
  text-align: right;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.badge {
  display: inline-block;
  padding: 8px 14px;
  font-size: 0.9rem;
  border: 1px solid #eef1f4;
  border-radius: 999px;
  white-space: nowrap;
  background: #0b606d;
  color: #fff;
  font-weight: bold;
}

#checklist .checklist {
  display: flex;
  justify-content: center;
  gap: 80px;
  align-items: flex-start;
  flex-wrap: wrap;
}

#checklist .checklist > div {
  flex: 1 1 300px;
  max-width: 420px;
}

#checklist .muted {
  text-align: center;
  margin-top: 16px;
  display: block;
}

/* /assets/scss/privacy.scss */
/* ---- 基本色（必要に応じて既存トークンに合わせる） ---- */
/* ---- ベース ---- */
html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

.privacy {
  padding-top: 30px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Noto Sans JP, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.8;
  color: #223049;
  background: #f7fafc;
  /* ---- コンテナ ---- */
  /* ---- 見出し ---- */
  /* ---- テキスト ---- */
  /* ---- リスト ---- */
  /* ---- メッセージ/注意 ---- */
  /* ---- レスポンシブ ---- */
  /* ---- 印刷 ---- */
}
.privacy .section {
  margin-inline: auto;
  padding-top: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
}
.privacy .container {
  max-width: 960px;
  background: #fff;
}
.privacy .section-title {
  margin: 0 0 16px;
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.3;
  position: relative;
}
.privacy .section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 12px;
  background: #0d9488;
  border-radius: 2px;
}
.privacy h2 {
  margin: 28px 0 10px;
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.4;
}
.privacy p {
  margin: 0 0 14px;
  color: #223049;
}
.privacy a {
  color: #0d9488;
  text-decoration: none;
}
.privacy a:hover {
  text-decoration: underline;
}
.privacy .list {
  margin: 0 0 16px;
  padding-left: 20px;
}
.privacy .list li {
  margin: 6px 0;
}
.privacy .notice {
  margin: 16px 0;
  padding: 12px 14px;
  background: #f0fdf9;
  border: 1px solid #ccfbf1;
  color: #065f46;
  border-radius: 10px;
}
@media (min-width: 1024px) {
  .privacy .container {
    padding: 40px 48px;
  }
}
@media print {
  .privacy body {
    background: #fff;
  }
  .privacy .container {
    box-shadow: none;
    border-color: #ddd;
  }
  .privacy a {
    text-decoration: underline;
    color: #000;
  }
}

/* =========================
   Motion: Reveal animations
   ========================= */
/* デフォルト（reduced motion配慮） */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
/* 変数（カスタムプロパティ）で制御：遅延・距離・時間・カーブ */
:root {
  --rv-distance: 28px;
  --rv-duration: .72s;
  --rv-ease: cubic-bezier(.2,.7,.2,1);
}

/* 初期状態（非表示） */
[data-reveal] {
  opacity: 0;
  will-change: transform, opacity;
  transition-property: transform, opacity;
  transition-duration: var(--rv-duration);
  transition-timing-function: var(--rv-ease);
  transition-delay: var(--rv-delay, 0s);
}

/* 方向バリエーション */
[data-reveal=up] {
  transform: translateY(var(--rv-distance));
}

[data-reveal=down] {
  transform: translateY(calc(var(--rv-distance) * -1));
}

[data-reveal=left] {
  transform: translateX(var(--rv-distance));
}

[data-reveal=right] {
  transform: translateX(calc(var(--rv-distance) * -1));
}

[data-reveal=zoom] {
  transform: scale(0.98);
}

/* 表示状態 */
.is-visible[data-reveal] {
  opacity: 1;
  transform: none;
}

/* スタッガー用：親に data-stagger を付けると子を順番に遅延 */
[data-stagger] > *[data-reveal] { /* 遅延はJSで --rv-delay を付与 */ }

/* セクションごとの軽い hover/active（カードに表情） */
.card {
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.card:active {
  transform: translateY(0);
}

/*# sourceMappingURL=styles.css.map */
