/* ===========================
   YOHAKU LP — base styles
   =========================== */

:root {
  --bg-base:     #FFFFFF;
  --bg-surface:  #F7F7F7;
  --border:      #F2F2F2;
  --text-main:   #666666;
  --text-sub:    #B1B1B1;
  --gold:        #BAA05F;
  --gold-light:  #CCB887;
  --gold-dark:   #A98A3E;

  --font-serif: 'Noto Serif JP', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-en: 'Cormorant Garamond', serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-base);
  color: var(--text-main);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  margin: 0;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

h2 { font-size: 26px; }
h3 { font-size: 19px; }

p { margin: 0; }

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

.inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.inner.narrow {
  max-width: 720px;
}

.section {
  padding: 88px 0;
}

.section-surface {
  background: var(--bg-surface);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-head h2 {
  margin-bottom: 22px;
}

/* ---------- 英日2段見出し ---------- */
.section-heading {
  text-align: center;
  margin-bottom: 16px;
}

.en-label {
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin: 0 0 4px;
}

.ja-label {
  font-size: 13px;
  color: var(--text-sub);
  letter-spacing: 0.08em;
  margin: 0 0 16px;
}

.gold-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
}

.lead-text {
  font-size: 15.5px;
  color: #555;
}

.lead-serif {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 24px;
  text-align: center;
}

.body-text {
  font-size: 15.5px;
  margin-bottom: 18px;
}

.body-text:last-child { margin-bottom: 0; }

.emphasis {
  font-weight: 700;
  color: var(--gold);
}

.section-closing {
  max-width: 640px;
  margin: 56px auto 0;
  text-align: center;
  font-size: 16px;
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--gold);
  line-height: 1.95;
}

.brand-block {
  max-width: 720px;
  margin: 48px auto 0;
}

.brand-block h3 {
  margin-bottom: 16px;
  color: var(--gold);
}

/* ---------- フェードイン ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- ヘッダー ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-main);
}

.logo span {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  color: var(--gold);
  margin-left: 8px;
  letter-spacing: 0.1em;
}

.header-cta {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  padding: 10px 22px;
  border-radius: 2px;
  background: var(--gold);
  color: #fff;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.header-cta:hover { background: var(--gold-dark); }

main { padding-top: 64px; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: var(--gold-dark);
}

.btn-large {
  padding: 18px 52px;
  font-size: 14px;
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  padding: 13px 34px;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-outline:hover {
  background: var(--gold);
  color: #fff;
}

.link-sub {
  display: inline-block;
  margin-top: 18px;
  font-size: 13px;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.72) 38%, rgba(255,255,255,0.88) 60%, rgba(255,255,255,0.98) 92%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 64px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 18px;
  margin-bottom: 22px;
}

.hero-copy {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 26px;
  color: var(--text-main);
}

.hero-sub {
  font-size: 15px;
  color: #4a4a4a;
  max-width: 560px;
  margin: 0 auto 28px;
}

.hero-badges {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.hero-badges li {
  font-size: 12.5px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 16px;
  color: var(--text-main);
}

.hero-cta-note {
  font-size: 12.5px;
  color: #6a6a6a;
  margin-top: 14px;
  line-height: 1.8;
}

/* ---------- Hero直下メッセージ ---------- */
.hero-message {
  padding: 72px 0 64px;
  background: var(--bg-base);
}

/* ---------- 共感セクション ---------- */
.empathy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 8px;
}

.empathy-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 26px;
}

.empathy-title {
  font-family: var(--font-serif);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
}

.empathy-text {
  font-size: 14.5px;
  color: #4f4f4f;
}

/* ---------- ブランド紹介 ---------- */
.brand-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 16px;
}

.brand-image img {
  border-radius: 4px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.brand-text h2 {
  margin-bottom: 22px;
}

.brand-text .section-heading {
  text-align: left;
}

.brand-text .gold-line {
  margin: 0;
}

/* ---------- 選ばれる理由 ---------- */
.reason-list {
  display: grid;
  gap: 24px;
}

.reason-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 32px;
  position: relative;
}

.reason-num {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 6px;
}

.reason-item h3 {
  margin-bottom: 14px;
  color: var(--text-main);
}

/* ---------- 利用シーン ---------- */
.scene-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 44px;
}

.scene-item {
  background: var(--bg-surface);
  border-radius: 4px;
  padding: 28px 26px;
}

.scene-num {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 700;
}

.scene-item h3 {
  font-size: 17px;
  margin-bottom: 12px;
}

.scene-image {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 44px;
}

.scene-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

/* ---------- サービス紹介 ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 16px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card h3 {
  font-size: 17px;
  padding: 22px 24px 0;
}

.service-card .body-text {
  padding: 14px 24px 0;
  font-size: 14px;
}

.service-label {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 700;
  padding: 18px 24px 0;
}

.service-tags {
  list-style: none;
  margin: 10px 0 0;
  padding: 0 24px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-tags li {
  font-size: 12px;
  background: var(--bg-surface);
  border-radius: 999px;
  padding: 5px 12px;
  color: #4f4f4f;
}

/* ---------- 対応エリア ---------- */
.area-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.area-text h2 {
  margin-bottom: 22px;
}

.area-text .section-heading {
  text-align: left;
}

.area-text .gold-line {
  margin: 0;
}

.area-lead {
  margin-bottom: 14px;
}

.area-block {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.area-block-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 16px;
}

.area-tags {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-tags li {
  font-size: 13px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  color: var(--text-main);
}

.area-extra {
  font-size: 14.5px;
  color: #4a4a4a;
  margin: 0 0 10px;
}

.area-note {
  font-size: 12.5px;
  color: #8a8a8a;
  margin: 0;
}

.area-online {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 32px;
  padding: 22px 24px;
  background: var(--bg-surface);
  border-radius: 4px;
}

.area-online-icon {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.area-online p {
  font-size: 14px;
  color: #4a4a4a;
  margin: 0;
}

.area-map svg {
  width: 100%;
  height: auto;
  display: block;
}

.map-region {
  stroke: var(--border);
  stroke-width: 1.2;
}

.map-other {
  fill: #EFEDE8;
}

.map-near {
  fill: rgba(186, 160, 95, 0.22);
}

.map-tokyo {
  fill: var(--gold-light);
  stroke: var(--gold);
}

.map-label {
  font-family: var(--font-sans);
  font-size: 13px;
  text-anchor: middle;
  dominant-baseline: middle;
}

.map-label-other {
  fill: #aaa6a0;
}

.map-label-near {
  fill: #4f5e4e;
}

.map-label-tokyo {
  fill: #2f3a2e;
  font-weight: 700;
}

.map-pin-dot {
  fill: var(--gold);
}

.map-pin-ring {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.2;
  opacity: 0.5;
}

/* ---------- 比較テーブル ---------- */
.table-wrap {
  position: relative;
  overflow-x: auto;
  margin-bottom: 48px;
  -webkit-overflow-scrolling: touch;
}

.table-scroll-hint {
  display: none;
  font-size: 12px;
  color: #8a8a8a;
  text-align: right;
  margin-bottom: 8px;
}

.compare-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  font-size: 13.5px;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.compare-table thead th {
  background: var(--bg-surface);
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--text-main);
}

.compare-table tbody th {
  text-align: left;
  font-family: var(--font-sans);
  font-weight: 500;
  color: #4f4f4f;
  background: var(--bg-base);
}

.compare-table .highlight {
  background: rgba(186, 160, 95, 0.1);
  color: var(--gold);
  font-weight: 700;
}

.compare-table thead th.highlight {
  background: var(--gold);
  color: #fff;
}

.check-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.check-list li {
  font-size: 14.5px;
  padding-left: 26px;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ---------- 代表ストーリー ---------- */
.founder-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: center;
  margin-bottom: 40px;
}

.founder-image img {
  border-radius: 4px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.founder-text h2 {
  margin-bottom: 18px;
}

.founder-text .section-heading {
  text-align: left;
}

.founder-text .gold-line {
  margin: 0;
}

.founder-body {
  max-width: 720px;
  margin: 0 auto;
}

/* ---------- お客様の声 ---------- */
.voice-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.voice-card {
  background: var(--bg-surface);
  border-radius: 4px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.voice-text {
  font-size: 14px;
  color: #4a4a4a;
  margin-bottom: 18px;
  line-height: 1.95;
}

.voice-attr {
  font-size: 12.5px;
  color: var(--gold);
  font-weight: 700;
  text-align: right;
}

/* ---------- ご利用の流れ ---------- */
.flow-list {
  display: grid;
  gap: 20px;
  margin-bottom: 8px;
}

.flow-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 30px;
  align-items: start;
}

.flow-num {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.flow-content h3 {
  margin-bottom: 12px;
}

/* ---------- 料金 ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

@media (min-width: 861px) {
  #g-pricing .price-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 30px 28px;
  text-align: center;
}

.price-main {
  background: var(--gold);
  color: #fff;
  border: none;
}

.price-label {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gold);
}

.price-main .price-label { color: rgba(255,255,255,0.85); }

.price-value {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
}

.price-value span {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  margin-left: 6px;
}

.price-note {
  font-size: 12.5px;
  color: #6a6a6a;
  margin-top: 12px;
}

.price-main .price-note { color: rgba(255,255,255,0.85); }

.option-block {
  background: var(--bg-surface);
  border-radius: 4px;
  padding: 28px 30px;
  margin-bottom: 16px;
}

.option-list {
  list-style: none;
  margin: 14px 0 12px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.option-list li {
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 8px;
}

.option-list li span:last-child {
  color: var(--gold);
  font-weight: 700;
}

.pricing-cta {
  max-width: 640px;
  margin: 56px auto 0;
  text-align: center;
  background: var(--bg-surface);
  border-radius: 4px;
  padding: 44px 36px;
}

.pricing-cta h3 { margin-bottom: 16px; }
.pricing-cta .body-text { margin-bottom: 26px; }

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  gap: 14px;
  margin-bottom: 8px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 6px 26px;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 32px 18px 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 15.5px;
  position: relative;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item .body-text {
  padding-bottom: 22px;
  font-size: 14.5px;
  color: #4f4f4f;
}

/* ---------- CTA セクション ---------- */
.cta-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.93);
}

.cta-section .inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-section h2 {
  font-size: 28px;
  margin-bottom: 26px;
}

.cta-section .lead-text {
  margin-bottom: 26px;
}

.cta-section .body-text {
  margin-bottom: 0;
}

.cta-button-wrap {
  margin: 36px 0 8px;
}

.cta-sub-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 16px;
  margin: 48px 0 18px;
  color: var(--gold);
}

.cta-check-list {
  display: inline-grid;
  text-align: left;
  margin: 0 auto;
}

.cta-final {
  max-width: 600px;
  margin: 48px auto 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 15.5px;
  color: var(--text-main);
  line-height: 2;
}

/* ---------- フッター ---------- */
.site-footer {
  background: var(--text-main);
  color: #e8e6e1;
  padding: 56px 0 40px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.footer-logo span {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  margin-left: 8px;
  color: var(--gold-light);
}

.footer-copy {
  font-size: 13px;
  color: #b9b6b0;
  margin-bottom: 28px;
}

.footer-rights {
  font-size: 11.5px;
  color: #8a8782;
  margin-top: 28px;
}

/* ===========================
   レスポンシブ
   =========================== */
@media (max-width: 860px) {
  .brand-layout,
  .founder-layout,
  .area-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .area-map {
    max-width: 360px;
    margin: 0 auto;
  }

  .brand-image img,
  .founder-image img {
    aspect-ratio: 16/10;
  }

  .empathy-grid,
  .scene-list {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .voice-list {
    grid-template-columns: 1fr;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }

  h2 { font-size: 22px; }

  .hero { min-height: 88vh; }
  .hero-copy { font-size: 26px; }
  .hero-content { padding: 32px 20px 48px; }

  .hero-badges {
    flex-direction: column;
    align-items: center;
  }

  .reason-item { padding: 26px 22px; }

  .flow-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 22px;
  }

  .compare-table { font-size: 12px; min-width: 560px; }
  .compare-table th, .compare-table td { padding: 12px 10px; }
  .table-scroll-hint { display: block; }

  .cta-section h2 { font-size: 23px; }

  .cta-check-list { text-align: left; }
}

@media (max-width: 420px) {
  .inner { padding: 0 18px; }
  .hero-copy { font-size: 23px; }
}

/* ---------- ギフトバナー（LP内） ---------- */
.gift-banner {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gift-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gift-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gift-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(28, 24, 20, 0.55);
}

.gift-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.gift-banner__en {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 8px;
}

.gift-banner__line {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 20px;
}

.gift-banner__heading {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.gift-banner__sub {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  letter-spacing: 0.06em;
}

.gift-banner__cta {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.15em;
  padding: 10px 28px;
  border-radius: 2px;
  transition: background 0.3s ease, color 0.3s ease;
}

.gift-banner__cta:hover {
  background: var(--gold);
  color: #FFFFFF;
}

@media (max-width: 600px) {
  .gift-banner { height: 220px; }
}

/* ---------- ギフトページ：カード4枚（できること） ---------- */
.gift-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.gift-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px;
  text-align: center;
}

.gift-card__icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 18px;
  color: var(--gold);
}

.gift-card__icon svg { width: 100%; height: 100%; }

.gift-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

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

/* ---------- ギフトページ：バッジ ---------- */
.gift-hero-badge {
  display: inline-block;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 6px 18px;
  margin-bottom: 22px;
  background: transparent;
}
