@charset "UTF-8";
/* テーマCSS干渉リセット */
.grandcha-present { text-align: left; }
.grandcha-present * { box-sizing: border-box; }
.grandcha-present p { text-align: left; }
.grandcha-present h1,
.grandcha-present h2,
.grandcha-present h3 { text-align: left; }
/* navのテーマスタイルをリセット（テーマ干渉を完全排除） */
.grandcha-present nav,
.grandcha-present nav::before,
.grandcha-present nav::after {
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  outline: none !important;
  background-color: var(--green) !important;
}
/* navの下に入るhr・区切り線をすべて非表示 */
.grandcha-present hr {
  display: none !important;
}
/* テーマの疑似要素で入る線も消す */
.grandcha-present > *::before,
.grandcha-present > *::after {
  border-color: transparent !important;
}
/* セクション間の白線をリセット */
.grandcha-present section,
.grandcha-present .wv {
  border: none !important;
  outline: none !important;
}
/* ヒーローと波の継ぎ目の白線を消す */
.grandcha-present .hero {
  margin-bottom: -2px !important;
}
.grandcha-present .wv {
  margin-top: -2px !important;
  margin-bottom: -2px !important;
}


:root {
  --green: #3BAD5C;
  --green-dark: #2A8B45;
  --green-pale: #EBF7EF;
  --green-mid: #B8DFC4;
  --gray: #F2F2EF;
  --white: #FFFFFF;
  --ink: #1A1A1A;
  --ink-mid: #555553;
  --ink-light: #9A9A96;
  --font-family: 'Zen Maru Gothic', 'Montserrat', sans-serif;
  /* OCCASIONS */
  --occ-bg:     #F8F4EE;
  --occ-gold:   #C5965A;
  --occ-text:   #2A2218;
  --occ-mid:    #6A6058;
  --occ-rule:   rgba(0,0,0,.1);
  --occ-father: #485C78;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-family);
  background: var(--white);
  color: var(--ink);
  line-height: 1.8;
  overflow-x: hidden;
}

/* HERO – yamatoen style */
.hero {
  padding-top: 64px;
  background: #F0EDE8;
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

/* ── 大きな緑のウェーブ（下部） ── */
.hero-green-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 46%;
  z-index: 0;
}
.hero-green-wave svg { display: block; width: 100%; height: 100%; }

/* ── 写真フレーム群（不規則ブロブ） ── */
.hero-photos {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* 左端：大きな有機形ブロブ（左にはみ出す） */
.ph-left {
  position: absolute;
  top: 6%; left: -3%;
  width: clamp(300px, 38vw, 480px);
  aspect-ratio: .82;
  border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}

/* 中央上：横長のブロブ（少し傾ける） */
.ph-center {
  position: absolute;
  top: 5%; left: 30%;
  width: clamp(260px, 30vw, 360px);
  aspect-ratio: 1.1;
  border-radius: 38% 62% 55% 45% / 48% 40% 60% 52%;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(0,0,0,.1);
  transform: rotate(-4deg);
}

/* 右下：縦長のブロブ（波の上・白枠あり） */
/*
.ph-right {
  position: absolute;
  bottom: 45%; right: 2%;
  width: clamp(120px, 15vw, 200px);
  aspect-ratio: .88;
  border-radius: 45% 55% 38% 62% / 52% 60% 40% 48%;
  overflow: hidden;
  border: 5px solid white;
  box-shadow: 0 8px 28px rgba(0,0,0,.14);
  transform: rotate(3deg);
}
*/
.ph-fill {
  width: 100%; height: 100%;
  display: block;
  position: relative;
}
/* 実際の写真 */
.ph-fill img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* 写真未設定時のプレースホルダー */
.ph-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .6rem;
  border: 2.5px dashed rgba(0,0,0,.18);
  background: rgba(255,255,255,.45);
  backdrop-filter: blur(2px);
}
.ph-placeholder .ph-icon { font-size: 2.2rem; opacity: .5; }
.ph-placeholder .ph-label {
  font-size: .72rem; font-weight: 700;
  color: rgba(0,0,0,.35);
  letter-spacing: .08em;
  text-align: center;
  padding: 0 1rem;
  line-height: 1.6;
}

/* ── キャラクターイラスト（浮遊） ── */
.hero-chars { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.ch { position: absolute; }
.ch.c1 { top: 41%; left: 35%; }
/*.ch.c2 { bottom: 42%; left: 36%; }*/
.ch.c3 { top: 8%; right: 26%; }

/* ── テキストブロック（右寄り） ── */
.hero-text {
  position: absolute;
  top: 64px; right: 0; bottom: 0;
  width: 44%;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0vw 0vw 23% 3vw;
  z-index: 3;
}
.eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.85);
  color: var(--green-dark);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .14em;
  padding: .25rem 1.7rem; border-radius: 100px;
  margin-bottom: 1.5rem;
  width: fit-content;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-family: 'Shippori Mincho B1', serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.6rem;
}
.hero-title .line1 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  display: block; color: var(--ink-mid);
  margin-bottom: .2rem;
}
.hero-title .line2 {
  font-size: clamp(1.8rem, 4.0vw, 4.4rem);
  display: block; color: var(--green);
  margin-top: .1rem;
}
.hero-desc {
  font-size: .98rem; color: var(--ink-mid);
  line-height: 2.1; margin-bottom: 2rem;
  max-width: 500px;
}
.hero-btns {
  display: flex; flex-direction: row;
  gap: .8rem; max-width: 460px;
  flex-wrap: wrap;
}
.btn-green {
  background: var(--green); color: white;
  padding: 1rem 1.6rem; border-radius: 100px;
  font-size: .88rem; font-weight: 700;
  text-decoration: none; text-align: center;
  transition: all .25s;
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(59,173,92,.3); }
.btn-white-out {
  background: rgba(255,255,255,.85); color: var(--ink-mid);
  padding: .85rem 1.6rem; border-radius: 100px;
  font-size: .83rem; font-weight: 700;
  text-decoration: none; text-align: center;
  border: 1.5px solid rgba(0,0,0,.1);
  backdrop-filter: blur(4px);
  transition: all .2s;
}
.btn-white-out:hover { border-color: var(--green); color: var(--green); }

/* ── サービスアイコン群（PC: 横一列） ── */
.hero-service-icons {
  position: absolute;
  bottom: 30%;
  left: 2%;
  z-index: 4;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 0;
  pointer-events: none;
}
/* 大アイコン */
.hero-svc-item {
  pointer-events: auto;
  transition: transform .2s;
  line-height: 0;
  margin: 0 -8px;
}
.hero-svc-item:hover { transform: translateY(-3px); }
.hero-svc-item img {
  width: 115px;
  height: 115px;
  object-fit: contain;
  display: block;
}
.hero-svc-item.svc-main img {
  width: 155px;
  height: 155px;
}
/* 右4つのグループ（バッジ＋アイコン） */
.hero-svc-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .3rem;
  margin: 0 -8px;
}
.hero-svc-group-badge {
  background: var(--green-dark);
  color: white;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  padding: .0rem .85rem;
  border-radius: 100px;
  white-space: nowrap;
  margin-left: 14px;
}
.hero-svc-group-row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}
.hero-svc-group .hero-svc-item {
  margin: 0 -8px;
}

/* タブレット・iPad（601px〜960px） */
@media (max-width: 960px) {
  .hero-service-icons {
    top: calc(64px + 68vw);
    bottom: auto;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: max-content;
    align-items: flex-end;
    z-index: 5;
  }
  .hero-svc-group { gap: .2rem; margin: 0 -2px; }
  .hero-svc-group-badge { font-size: .6rem; padding: .2rem .65rem; margin-left: 10px; }
  .hero-svc-group .hero-svc-item { margin: 0 -2px; }
  .hero-svc-item { margin: 0 -10px; }
  .hero-svc-item img { width: 20vw; height: 20vw; max-width: 110px; max-height: 110px; }
  .hero-svc-item.svc-main img { width: 28vw; height: 28vw; max-width: 142px; max-height: 130px; }
}
/* Pixel等 中型スマホ（431px〜600px） */
@media (max-width: 600px) {
  .hero-service-icons {
    top: calc(64px + 76vw);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: max-content;
  }
  .hero-svc-group { gap: .15rem; margin: 0 -3px; }
  .hero-svc-group-badge { font-size: .65rem; padding: .0rem .55rem; margin-left: 6px; }
  .hero-svc-group .hero-svc-item { margin: 0 -3px; }
  .hero-svc-item { margin: 0 -10px; }
  .hero-svc-item img { width: 19vw; height: 19vw; max-width: 96px; max-height: 96px; }
  .hero-svc-item.svc-main img { width: 28vw; height: 28vw; max-width: 142px; max-height: 112px; }
}
/* iPhone等 小型スマホ（〜430px） */
@media (max-width: 430px) {
  .hero-service-icons {
    top: calc(64px + 72vw);
  }
}


/* ── 右下の説明テキスト（波の上） ── */
.hero-wave-text {
  position: absolute;
  bottom: 10%; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  color: white;
  font-size: .82rem; line-height: 2;
  white-space: nowrap;
}
.hero-wave-text strong {
  display: block;
  font-size: 1.05rem;
  font-family: 'Shippori Mincho B1', serif;
  margin-bottom: .3rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE – タブレット（〜960px）
━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 960px) {
  .hero {
    min-height: auto;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
  }

  /* 写真エリア：上部に固定の高さで配置 */
  .hero-photos {
    position: relative;
    height: 75vw;
    min-height: 320px;
    max-height: 520px;
    flex-shrink: 0;
  }

  .ph-left {
    top: 5%; left: -2%;
    width: clamp(160px, 42vw, 260px);
  }
  .ph-center {
    top: 4%; left: 38%;
    width: clamp(130px, 28vw, 200px);
  }
/*
  .ph-right {
    bottom: 8%; right: 2%;
    width: clamp(100px, 20vw, 150px);
  }
*/
  /* キャラ位置調整 */
  .ch.c1 { top: 40%; left: 26%; }
/*  .ch.c2 { bottom: 10%; left: 36%; display: none; }*/
  .ch.c3 { top: 5%; right: 22%; }

  /* 緑ウェーブ：写真エリアの底部に（order で写真の後へ） */
  .hero-green-wave {
    position: relative;
    height: 18vw;
    min-height: 80px;
    order: 2;
    margin-bottom: -1px;
  }

  /* 写真を先頭に */
  .hero-photos { order: 1; }

  /* テキストブロック：通常フロー */
  .hero-text {
    order: 3;
    position: relative;
    width: 100%;
    top: auto; right: auto; bottom: auto;
    padding: 2.5rem 6vw 2rem;
    background: #3BAD5C;
    z-index: 3;
  }
  .eyebrow {
    background: rgba(255,255,255,.2);
    color: white;
  }
  .hero-title .line1 { color: rgba(255,255,255,.8); font-size: clamp(1rem, 3.5vw, 1.4rem); }
  .hero-title .line2 { color: white; font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .hero-desc { color: rgba(255,255,255,.8); max-width: 100%; }
  .btn-white-out { background: rgba(255,255,255,.15); color: white; border-color: rgba(255,255,255,.3); }
  .btn-white-out:hover { background: rgba(255,255,255,.25); }

  /* 波の上テキスト：モバイルではフロー内に順序付けで表示 */
  .hero-wave-text {
    display: block;
    position: relative;
    order: 4;
    top: auto; left: auto;
    transform: none;
    white-space: normal;
    background: var(--green);
    color: rgba(255,255,255,.88);
    font-size: .78rem;
    line-height: 2;
    text-align: center;
    padding: 1.1rem 5vw 0;
    margin-bottom: -3px;
  }
  .hero-wave-text strong {
    display: block;
    font-size: .88rem;
    font-family: 'Shippori Mincho B1', serif;
    color: white;
    margin-bottom: .3rem;
  }

  /* キャラは写真エリアに閉じ込める */
  .hero-chars {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 75vw;
    min-height: 320px;
    max-height: 520px;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE – モバイル（〜600px）
━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 600px) {
  .hero-photos {
    height: 88vw;
    min-height: 280px;
  }
  .ph-left {
    top: 4%; left: -4%;
    width: 62vw;
  }
  .ph-center {
    top: 6%; left: 54%;
    width: 44vw;
  }
/*    
  .ph-right {
    bottom: 19%; right: 1%;
    width: 26vw;
    border-width: 3px;
  }
*/
  .hero-green-wave { height: 22vw; margin-bottom: -1px; }
  .hero-text { padding: 2rem 5vw 2.5rem; }
  .hero-btns { flex-direction: column; max-width: 100%; }
  .hero-chars { height: 88vw; min-height: 280px; }
  /* c1: 小さく・上に */
  .ch.c1 { top: 75%; left: 65%; }
  .ch.c1 img { width: 130px !important; }
  /* c2: 表示させて位置調整 */
/*  .ch.c2 { display: block !important; bottom: 6%; left: 39%; }
  .ch.c2 img { width: 120px !important; }
  .ch.c3 { top: 4%; right: 16%; }
*/
  /* ページ内の他セクション */
  .sec { padding: 4rem 4vw; }
  footer { flex-direction: column; text-align: center; }
  .f-links { justify-content: center; flex-wrap: wrap; gap: 1rem; }
  .voices-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .final { padding: 6rem 5vw; }
  .final-btns { flex-direction: column; align-items: center; }
}

/* AREA STRIP */

/* SECTIONS */
.sec { padding: 4rem 8vw; }
.sec.gray { background: var(--gray); }
.sec.green-bg { background: var(--green); }
.sec.white { background: var(--white); }

.label {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .2em; color: var(--green);
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: 1rem;
}
.label::before { content: ''; width: 18px; height: 2px; background: var(--green); border-radius: 1px; display: block; }
.sec.green-bg .label { color: rgba(255,255,255,.7); }
.sec.green-bg .label::before { background: rgba(255,255,255,.5); }
.h2 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800; line-height: 1.4;
  margin-bottom: 1rem;
}
.sec.green-bg .h2 { color: white; }
.lead { font-size: .93rem; color: var(--ink-mid); line-height: 2.1; max-width: 560px; margin-bottom: 3rem; }
.sec.green-bg .lead { color: rgba(255,255,255,.75); }

/* WAVES */
.wv { display: block; width: 100%; line-height: 0; }
.wv svg { display: block; width: 100%; }

/* WAVE BACKGROUND MODIFIERS */
.wv--white  { background: #ffffff; }
.wv--gray   { background: #F2F2EF; }
.wv--green  { background: #3BAD5C; }
.wv--beige  { background: #EAE7E2; }
.wv--sand   { background: #F0EDE8; }
.wv--cream  { background: #F7F4EF; }
.wv--warm   { background: #F8F4EE; }
.wv--mb     { margin-bottom: -2px; }
.wv--z5     { position: relative; z-index: 5; }
.wv--z10    { position: relative; z-index: 10; }
/* Hero section bottom wave (absolute positioning) */
.hero-wave-bottom {
  position: absolute; bottom: -1px; left: 0; right: 0;
  line-height: 0; z-index: 10;
}
/* Thin green spacer between hero and next section */
.wv-spacer--green { background: #3BAD5C; height: 2px; line-height: 0; }

/* PAIN */
/* PAIN – card grid style */
.pain-outer {
  background: white;
  border-radius: 28px;
  border: 1.5px solid rgba(0,0,0,.07);
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,.06);
}
.pain-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.pain-row + .pain-row {
  border-top: 1.5px solid rgba(0,0,0,.07);
}
.pain-cell {
  padding: 2.4rem 2rem;
  position: relative;
  transition: background .2s;
}
.pain-cell:hover { background: #F9FBF9; }
/* 縦区切り線（最後以外） */
.pain-cell:not(:last-child) {
  border-right: 1.5px solid rgba(0,0,0,.07);
}
/* 下段の最後の2つは border-right 消す */
.pain-row:last-child .pain-cell:last-child { border-right: none; }

.pain-cell-ico {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}
.pain-cell-num {
  position: absolute;
  top: 1.4rem; right: 1.6rem;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(59,173,92,.38);
  line-height: 1;
  pointer-events: none;
}
.pain-cell-t {
  font-size: .9rem;
  color: var(--ink-mid);
  line-height: 1.95;
  font-weight: 500;
}
.pain-cell-t b { color: var(--ink); font-weight: 700; }

/* 下段2アイテムのとき、グリッド崩れ防止 */
.pain-row.row2 {
  grid-template-columns: repeat(3, 1fr);
}
/* PAIN responsive */
@media (max-width: 960px) {
  /* pain-outerをフラットな2列グリッドに変換 */
  .pain-outer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .pain-row {
    display: contents;
  }
  .pain-row.row2 {
    display: contents;
  }
  /* すべてのセルのborder-rightをリセットして偶数番目のみ消す */
  .pain-cell {
    border-top: 1.5px solid rgba(0,0,0,.07);
    border-right: 1.5px solid rgba(0,0,0,.07);
  }
  .pain-cell:nth-child(2n) {
    border-right: none;
  }
  /* 最初の2つはborder-topなし */
  .pain-cell:nth-child(1),
  .pain-cell:nth-child(2) {
    border-top: none;
  }
}
@media (max-width: 480px) {
  .pain-outer {
    grid-template-columns: 1fr;
  }
  .pain-cell {
    border-right: none;
    border-bottom: 1.5px solid rgba(0,0,0,.07);
    border-top: none;
  }
  .pain-cell:last-child {
    border-bottom: none;
  }
  .pain-cell { padding: 1.8rem 1.4rem; }
  .pain-cell-ico img { height: 80px; }
}

/* SOLUTION – card style */
.sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}
.sol-card {
  background: white;
  border-radius: 28px;
  padding: 2.6rem 2rem 2rem;
  position: relative;
  overflow: visible;
  border: 1.5px solid rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column; gap: 1rem;
  margin-top: 4.5rem;
}
.sol-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }

/* 吹き出しラベル（問題）── カードの上縁にかかる */
.sol-balloon {
  position: absolute;
  top: -1.8rem;
  left: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.6rem;
  border-radius: 100px;
  font-size: 1.1rem;
  font-weight: 800;
  width: fit-content;
  line-height: 1.4;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  z-index: 2;
  letter-spacing: .02em;
}
/* 吹き出しの三角（下向き・長め） */
.sol-balloon::after {
  content: '';
  position: absolute;
  bottom: -20px;       /* 長い尻尾 */
  left: 2.2rem;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top-width: 22px;  /* 高さで長さを調整 */
  border-top-style: solid;
}

/* カラーバリエーション */
.sol-card:nth-child(1) .sol-balloon { background: #7E9878; color: #fff; }
.sol-card:nth-child(1) .sol-balloon::after { border-top-color: #7E9878; }
.sol-card:nth-child(2) .sol-balloon { background: #A8806A; color: #fff; }
.sol-card:nth-child(2) .sol-balloon::after { border-top-color: #A8806A; }
.sol-card:nth-child(3) .sol-balloon { background: #9A8F5C; color: #fff; }
.sol-card:nth-child(3) .sol-balloon::after { border-top-color: #9A8F5C; }
.sol-card:nth-child(4) .sol-balloon { background: #5C8872; color: #fff; }
.sol-card:nth-child(4) .sol-balloon::after { border-top-color: #5C8872; }
.sol-card:nth-child(5) .sol-balloon { background: #8A7868; color: #fff; }
.sol-card:nth-child(5) .sol-balloon::after { border-top-color: #8A7868; }

/* アイコン大 ── カード右上に絶対配置 */
.sol-card-ico {
  position: absolute;
  top: -2.8rem;
  right: -1.0rem;
  font-size: 3.8rem;
  line-height: 1;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.15));
  z-index: 3;
  pointer-events: none;
  transform: rotate(15deg);
  transform-origin: center bottom;
}
/* 解決テキスト */
.sol-card-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.55;
}
.sol-card-body {
  font-size: .86rem;
  color: var(--ink-mid);
  line-height: 2;
  flex: 1;
}
/* ピルタグ */
.sol-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .4rem;
}
.sol-tag {
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem .9rem;
  border-radius: 100px;
  letter-spacing: .04em;
}
.sol-card:nth-child(1) .sol-tag { background: #D4DFD0; color: #4A6044; }
.sol-card:nth-child(2) .sol-tag { background: #E4D0C4; color: #6A4438; }
.sol-card:nth-child(3) .sol-tag { background: #DED8B8; color: #5A5030; }
.sol-card:nth-child(4) .sol-tag { background: #C4D8CC; color: #2C5044; }
.sol-card:nth-child(5) .sol-tag { background: #D8CEC8; color: #4A3C36; }

/* キャラクター背景画像 */
.sol-char-bg {
  position: absolute;
  bottom: 0;
  right: 5%;
  height: clamp(200px, 24vw, 360px);
  width: auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
@media (max-width: 960px) {
  .sol-char-bg { display: none; }
}

/* キャラクターセルCSS削除済み */

/* responsive */
@media (max-width: 960px) {
  .sol-grid { grid-template-columns: repeat(2, 1fr); }
  .sol-card { padding-top: 3.6rem; margin-top: 3rem; }
  .sol-balloon { font-size: .85rem; white-space: nowrap; }
}
@media (max-width: 700px) {
  /* セクション左右余白を詰める */
  .sol-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  .sol-card {
    margin-top: 2.8rem;
    padding: 3rem 1rem 1.2rem;
  }
  .sol-balloon {
    font-size: .75rem;
    padding: .55rem 1rem;
    white-space: nowrap;
    left: .8rem;
    top: -1.6rem;
  }
  .sol-card-ico {
    top: -3.2rem;
    right: -1.6rem;
    font-size: 3rem;
  }
  .sol-card-title { font-size: 1rem; }
  .sol-card-body { font-size: .82rem; }
}
@media (max-width: 480px) {
  .sol-grid { grid-template-columns: 1fr; gap: 1rem; }
  .sol-card {
    margin-top: 2.4rem;
    padding: 2.6rem 1.2rem 1.2rem;
  }
  .sol-balloon {
    font-size: .8rem;
    padding: .5rem 1rem;
    white-space: nowrap;
    top: -1.4rem;
    left: .8rem;
  }
  .sol-card-ico {
    top: -3.2rem;
    right: .8rem;
    font-size: 3rem;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━
   EXTRAS – reference image matched
━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.extras-section {
  background: #F7F4EF;
  padding: 7rem 0 0;      /* ← solutionセクションに合わせて7rem */
  overflow: visible;
}

/* ── タイトルエリア（タイトルのみ・写真なし） ── */
.extras-title-area {
  padding: 0 8vw 2.5rem;  /* ← 8vw に揃える */
}
.extras-title-left .label { margin-bottom: .8rem; }
.extras-title-left .h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); margin: 0; }
/* タイトル写真は非表示 */

/* 区切り線 */
.extras-divider {
  height: 1px;
  background: rgba(0,0,0,.1);
  margin: 0 8vw 2.5rem;   /* ← 8vw に揃える */
}

/* ── 中段：説明文 + カード2枚 ── */
.extras-mid {
  display: grid;
  grid-template-columns: minmax(180px, 22%) 1fr 1fr;
  gap: 1.6rem;
  padding: 0 8vw 1.6rem;  /* ← 8vw に揃える */
  align-items: start;
}
/* 左説明文ブロック */
.extras-desc-block {
  display: flex; flex-direction: column; gap: 1.4rem;
  padding-top: .5rem;
}
.extras-desc-lead {
  font-size: .88rem; color: var(--ink-mid); line-height: 2;
}
.extras-desc-quote {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(.9rem, 1.4vw, 1.05rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 2;
  position: relative;
}
.extras-desc-quote::after {
  content: '🌿';
  position: absolute;
  bottom: -2rem; right: 0;
  font-size: 2rem; opacity: .4;
}

/* ── 下段：カード2枚フル幅 ── */
.extras-btm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  padding: 0 8vw;         /* ← 8vw に揃える */
}

/* ── 個別カード ── */
.ex-card {
  background: white;
  border-radius: 20px;
  overflow: visible;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  display: flex;
  flex-direction: column;
}

/* カード上部：テキスト左 ＋ 写真右 */
.ex-card-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 180px;
  border-radius: 20px 20px 0 0;
  overflow: hidden; /* 写真の角丸はここで制御 */
}

/* 左テキスト */
.ex-card-text {
  padding: 1.4rem 1.2rem 1.2rem;
  display: flex; flex-direction: column; gap: .6rem;
}
.ex-card-num {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 2.2rem; font-weight: 800; line-height: 1;
}
.ex-card-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  font-weight: 800; line-height: 1.4;
  padding-bottom: .55rem;
  border-bottom: 2px dotted rgba(0,0,0,.16);
}
.ex-card-desc {
  font-size: .82rem; color: var(--ink-mid); line-height: 1.95;
}

/* 右写真 */
.ex-card-photo {
  position: relative;
  overflow: hidden;
}
.ex-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.ex-card-photo-placeholder {
  width: 100%; height: 100%; min-height: 180px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .4rem;
  font-size: .7rem; color: rgba(0,0,0,.25); font-weight: 700;
  letter-spacing: .05em;
}

/* カード色 */
.extras-mid .ex-card:nth-child(1) .ex-card-num { color: #E8A060; }
.extras-mid .ex-card:nth-child(1) .ex-card-photo-placeholder { background: linear-gradient(135deg,#FCE8D8,#F4B88A); }
.extras-mid .ex-card:nth-child(2) .ex-card-num { color: #B8A840; }
.extras-mid .ex-card:nth-child(2) .ex-card-photo-placeholder { background: linear-gradient(135deg,#F5F0D0,#DDD090); }
.extras-btm .ex-card:nth-child(1) .ex-card-num { color: #5898D8; }
.extras-btm .ex-card:nth-child(1) .ex-card-photo-placeholder { background: linear-gradient(135deg,#D8EAF8,#88B8E8); }
.extras-btm .ex-card:nth-child(2) .ex-card-num { color: #E07090; }
.extras-btm .ex-card:nth-child(2) .ex-card-photo-placeholder { background: linear-gradient(135deg,#FCE4EC,#F088B0); }

/* ── カード下部：シーンエリア ── */
.ex-card-scene {
  position: relative;
  background: #FAF7F2;
  border-top: 1px solid rgba(0,0,0,.07);
  padding: 3.4rem 1.4rem 1.6rem 1.4rem;
  overflow: visible;
  border-radius: 0 0 20px 20px;
}

/* 「こんな使い方に」赤丸バッジ */
.ex-scene-badge {
  position: absolute;
  top: -1rem;        /* 高さ3.4remの半分 → 上辺中央に乗る */
  left: -1rem;
  width: 6rem; height: 3.4rem;
  background: #E8583A;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: .72rem; font-weight: 800;
  text-align: center; line-height: 1.5;
  letter-spacing: .02em;
  box-shadow: 0 4px 14px rgba(232,88,58,.4);
  z-index: 4;
}
/* 吹き出しの尻尾（下向き・右寄り） */
.ex-scene-badge::after {
  content: '';
  position: absolute;
  bottom: -11px;
  left: 65%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 13px solid #E8583A;
}

/* チェックリスト */
.ex-checklist {
  list-style: none;
  display: flex; flex-direction: column; gap: .45rem;
  padding-left: 0;
}
.ex-checklist li {
  display: flex; align-items: flex-start; gap: .55rem;
  font-size: .82rem; color: var(--ink-mid); line-height: 1.75;
}
.ex-checklist li::before {
  content: '';
  width: 1rem; height: 1rem;
  border-radius: 50%;
  flex-shrink: 0; margin-top: .2rem;
  background: var(--green)
    url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E")
    no-repeat center / 72%;
}

/* ── フッター帯 ── */
.extras-footer-strip {
  background: #F7F4EF;
  margin-top: 2.5rem;
  padding: 1.5rem 5vw;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.extras-footer-text { font-size: .95rem; font-weight: 700; color: var(--ink); flex: 1; }
.extras-footer-script {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--green-mid); font-style: italic;
  opacity: .6; white-space: nowrap;
}

/* ── responsive ── */
@media (max-width: 960px) {
  .extras-title-area { grid-template-columns: 1fr; }
  .extras-mid { grid-template-columns: 1fr 1fr; }
  .extras-desc-block { display: none; } /* タブレットでは省略 */
}
@media (max-width: 640px) {
  .extras-mid,
  .extras-btm { grid-template-columns: 1fr; }
  .ex-card-main { grid-template-columns: 1fr; }
  .ex-card-photo { min-height: 200px; }
  .extras-footer-script { display: none; }
}


/* WHY */
.why-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.why-card {
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px; padding: 2.5rem 2rem;
  backdrop-filter: blur(6px);
}
.why-num { font-family: 'Shippori Mincho B1', serif; font-size: 4rem; font-weight: 800; color: rgba(255,255,255,.12); line-height: 1; margin-bottom: .4rem; }
.why-title { font-family: 'Shippori Mincho B1', serif; font-size: 1.15rem; color: white; margin-bottom: .7rem; }
.why-body { font-size: .87rem; color: rgba(255,255,255,.78); line-height: 2; }

/* STEPS */
  .sec-steps {
    background-color: #EAE7E2;
    font-family: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  }

  .steps-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px; /* カード間の余白 */
  }

  /* --- カラムと線の位置関係を制御 --- */
  .step-col {
    flex: 1 1 0;
    position: relative;
  }

  /* 1つ目の線（Step1中央 → Step2中央） */
  .line-1 {
    position: absolute;
    top: -40px; left: 50%;
    width: calc(100% + 40px); height: 33px;
    border-right: 1.5px solid #333;
    z-index: 15;
  }
  /* 2つ目の線（Step2中央より右 → Step3中央） */
  .line-2 {
    position: absolute;
    top: -40px; left: calc(50% + 20px);
    width: calc(100% + 20px); height: 33px;
    border-right: 1.5px solid #333;
    z-index: 15;
  }
  /* 横線（共通） */
  .line-1::before, .line-2::before {
    content: '';
    position: absolute;
    inset: 0;
    border-top: 1.5px solid #333;
  }
  /* line-1のみ：左縦線＋角丸 */
  .line-1::before {
    border-left: 1.5px solid #333;
    border-radius: 12px 0 0 0;
  }
  /* 矢印の先端（共通） */
  .line-1::after, .line-2::after {
    content: '';
    position: absolute;
    bottom: 1px; right: -4.4px;
    width: 8px; height: 8px;
    border-right: 1.5px solid #333;
    border-bottom: 1.5px solid #333;
    transform: rotate(45deg);
  }

  /* --- カード本体のデザイン --- */
  .step-card {
    position: relative;
    background-color: #F6F5F2;
    border-radius: 180px;
    padding: 80px 45px 90px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    height: 100%;
    box-sizing: border-box;
    z-index: 10;
  }
  /* 黒いドット（疑似要素に移動） */
  .step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translate(-50%, -50%);
    width: 14px; height: 14px;
    background: #333;
    border-radius: 50%;
  }

  /* --- テキスト・アイコン周りの装飾 --- */

.step-present-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
  }
  .step-present-icon svg {
    width: 100%;
    height: 100%;
  }

  .step-label {
    font-size: 0.8rem;
    color: #666;
    margin: 0 0 5px;
    letter-spacing: 0.05em;
  }
  .step-role {
    font-size: 0.95rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 20px;
  }
  .step-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 20px;
    letter-spacing: 0.05em;
  }
  .step-desc {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.8;
    text-align: left; /* テキストは左揃えで読みやすく */
    margin: 0;
  }

  /* --- スマホ表示時の調整 --- */
  @media screen and (max-width: 850px) {
    .steps-container {
      flex-direction: column;
      gap: 60px;
    }
    .line-1, .line-2 {
      display: none; /* スマホでは横線を消す */
    }
    .step-card {
      border-radius: 120px;
      padding: 60px 40px;
    }

    /* ── スマホ用：カード間の縦線 ── */
    .step-col:not(:first-child) {
      position: relative;
    }
    /* 縦線 */
    .step-col:not(:first-child)::before {
      content: '';
      position: absolute;
      top: -60px;
      left: 50%;
      transform: translateX(-50%);
      width: 1.5px;
      height: 54px;
      background: #333;
      z-index: 15;
    }
    /* 矢印（∨型） */
    .step-col:not(:first-child)::after {
      content: '';
      position: absolute;
      top: -13px;
      left: calc(50% - 4px);
      width: 8px;
      height: 8px;
      border-right: 1.5px solid #333;
      border-bottom: 1.5px solid #333;
      transform: rotate(45deg);
      z-index: 15;
    }
  }
    
    
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━
   OCCASIONS – faithful to reference
━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Section shell ── */
.occ-section {
  background: var(--occ-bg);
  overflow: visible;
  position: relative;
  z-index: 2;
}

/* ── Main 2-column grid ── */
.occ-inner {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 5rem;
  align-items: center;
  padding: 5rem 8vw 1.5rem;
  margin: 0 auto;
}

/* ── Left column ── */
.occ-left { position: relative; }

/* Script text floats top-left of photo */
.occ-script-block {
  position: absolute;
  top: 1.4rem; left: -.3rem;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
.occ-script {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(.88rem, 1.55vw, 1.2rem);
  color: var(--occ-gold);
  line-height: 1.55;
  text-shadow: 0 1px 5px rgba(248,244,238,.95);
}

.occ-photo-wrap {
  position: relative;
  width: 100%; aspect-ratio: 1.05;
  border-radius: 5px; overflow: hidden;
  box-shadow: 0 18px 52px rgba(0,0,0,.15);
  margin-top: 3.2rem;
}
.occ-photo-wrap img { width:100%; height:100%; object-fit:cover; display:block; }

/* ── Right column ── */
.occ-right { display:flex; flex-direction:column; gap:1.6rem; }
.occ-heading {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(1.55rem, 3.00vw, 2.9rem);
  font-weight: 800; line-height: 1.45;
  color: var(--occ-text); letter-spacing: -.01em;
}
.occ-desc-text {
  font-size: .88rem; color: var(--occ-mid);
  line-height: 2.05; margin-top: -.3rem;
}

/* ── Icon row with vertical dividers ── */
.occ-icons-row {
  display: flex; align-items: stretch;
  padding: 1.15rem 0;
  border-top: 1px solid var(--occ-rule);
  border-bottom: 1px solid var(--occ-rule);
}
.occ-icon-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: .42rem;
  text-align: center; padding: .4rem .15rem;
  border-right: 1px solid var(--occ-rule);
}
.occ-icon-item:last-child { border-right: none; }
.occ-icon-name {
  font-family: 'Shippori Mincho B1', serif;
  font-size: .83rem; font-weight: 700;
  color: var(--occ-text); line-height: 1.3;
}
.occ-icon-sub { font-size:.69rem; color:#A09888; line-height:1.5; }

/* ── Anyday block ── */
.occ-anyday-block { display:flex; flex-direction:column; gap:.3rem; }
.occ-anyday { font-size:.9rem; color:var(--occ-mid); }
.occ-reason {
  font-size:.88rem; color:var(--occ-mid);
  display:flex; align-items:center; gap:.6rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━
   QUOTE BAND
━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.occ-quote-band {
  background: var(--occ-bg);
  padding: 0 8vw 1.5rem;
  position: relative;
}
.occ-divider {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: .5rem;
}
.occ-divider-line {
  flex: 1; height: 1px;
  background: rgba(0,0,0,.14);
}
.occ-divider-ornament {
  flex-shrink: 0; width: 44px; height: 16px;
  color: rgba(0,0,0,.3);
}
.occ-band-inner {
  display: block;
  position: relative; /* gift-area の基準点 */
  padding-right: 0;   /* 強制改行なし */
}
.occ-quote-text {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(1.4rem, 2.8vw, 2.3rem);
  font-weight: 800; color: var(--occ-text);
  line-height: 1.4; white-space: nowrap; /* PCは1行 */
  padding-right: 0;
}

/*--PresentoImage --*/
/* テキスト行の真下・右端に絶対配置してVOICESへ延伸 */
.occ-quote-band {
  overflow: visible;
  padding: 0 8vw 0.5rem;
}
.occ-gift-area {
  position: absolute;
  top: -250%;      /* occ-band-inner（テキスト行）の真下から開始 */
  bottom: 100%;
  right: -10vw;    /* 右端に寄せる */
  pointer-events: none;
}
.occ-gift-area img {
  width: clamp(220px, 24vw, 320px);
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,.15));
}
/* VOICESセクション：画像の食い込み分を確保 */
.voices-sec {
  padding-top: 9rem !important;
}
    
/* ── Responsive ── */
@media (max-width: 960px) {
  .occ-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 7vw 3rem; }
  .occ-left { max-width: 420px; margin: 0 auto; }
  .occ-quote-text { white-space: normal; padding-right: 0; }
  .occ-gift-area {
    top: 100%;
    right: -1vw;
    bottom: auto;
  }
  .occ-gift-area img {
    width: clamp(150px, 22vw, 200px);
  }
  .occ-quote-band { padding-bottom: 0.5rem; }
  .voices-sec { padding-top: 9rem !important; overflow: visible; }
}
@media (max-width: 600px) {
  .occ-icons-row { flex-wrap: wrap; }
  .occ-icon-item { flex: 0 0 33.33%; }
  .occ-icon-item:nth-child(3) { border-right: none; }
  .occ-icon-item:nth-child(4), .occ-icon-item:nth-child(5), .occ-icon-item:nth-child(6) { border-top: 1px solid var(--occ-rule); }
  .occ-quote-band { padding: 0 5vw 0.5rem; overflow: visible; }
  .occ-band-inner {
    display: block;
    position: relative;
    padding-right: 0;
  }
  .occ-quote-text {
    white-space: normal;
    padding-right: 0;
    margin-bottom: 0;
    font-size: clamp(1.15rem, 5vw, 1.5rem);
  }
  .occ-gift-area {
    top: 50%;
    right: -1vw;
    bottom: auto;
  }
  .occ-gift-area img {
    width: clamp(140px, 44vw, 180px);
  }
  .voices-sec { padding-top: 8rem !important; }
}

/* VOICES – redesigned */
.voices-sec {
  background: #ffffff !important;
  position: relative;
  overflow: hidden;
}

/* ── ヘッダーエリア ── */
.voices-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}
.voices-header-left { display: flex; flex-direction: column; gap: .6rem; }

/* ── 右上の植物装飾 ── */

/* ── カードグリッド ── */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  position: relative; z-index: 2;
}
.voice-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.voice-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.11); }

/* カード写真エリア */
.voice-photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  background: linear-gradient(135deg, #D4E8D0 0%, #A8C8B0 100%);
}
.voice-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.voice-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .5rem; position: absolute; inset: 0;
}
.voice-photo-placeholder .ph-icon { font-size: 2.5rem; opacity: .4; }
.voice-photo-placeholder .ph-label {
  font-size: .68rem; font-weight: 700;
  color: rgba(0,0,0,.3); letter-spacing: .06em;
  text-align: center;
}

/* カード本体 */
.voice-body { padding: 1.6rem 1.8rem 1.8rem; display: flex; flex-direction: column; flex: 1; }

/* 引用符＋区切り線＋星 */
.voice-meta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.2rem;
}
.voice-quote-mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.4rem; line-height: .8;
  color: var(--green-dark);
  font-weight: 700;
}
.voice-meta-line {
  height: 1px;
  background: rgba(0,0,0,.15);
}
.voice-stars {
  color: #C5965A;
  font-size: .88rem;
  letter-spacing: .08em;
  white-space: nowrap;
}

/* テキスト */
.voice-text {
  font-size: .88rem; color: var(--ink-mid);
  line-height: 2.1; flex: 1;
  margin-bottom: 1.4rem;
}
.voice-text b { color: var(--ink); font-weight: 700; }

/* 投稿者名 */
.voice-name {
  font-size: .72rem;
  color: var(--green-dark);
  letter-spacing: .03em;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .voices-grid { grid-template-columns: repeat(2, 1fr); }
  .voices-header { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .voices-grid { grid-template-columns: 1fr; }
}

/* PRICING */
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.2rem; margin-bottom: 2rem; }
.plan-card { background: white; border-radius: 24px; padding: 2.2rem 1.8rem; border: 2px solid transparent; transition: all .25s; }
.plan-card:hover { border-color: var(--green); transform: translateY(-4px); }
.plan-card.pop { background: var(--green); }
.plan-badge { display: inline-block; background: #F4A836; color: white; font-size: .68rem; font-weight: 700; padding: .22rem .8rem; border-radius: 100px; margin-bottom: .8rem; }
.plan-name { font-family: 'Shippori Mincho B1', serif; font-size: 1.2rem; font-weight: 800; margin-bottom: .3rem; }
.plan-card.pop .plan-name { color: white; }
.plan-price { font-family: 'Shippori Mincho B1', serif; font-size: 2rem; font-weight: 800; color: var(--green); margin-bottom: .2rem; }
.plan-card.pop .plan-price { color: white; }
.plan-price span { font-size: .82rem; font-weight: 400; }
.plan-freq { font-size: .75rem; color: var(--ink-light); margin-bottom: 1.1rem; }
.plan-card.pop .plan-freq { color: rgba(255,255,255,.65); }
.plan-desc { font-size: .84rem; color: var(--ink-mid); line-height: 1.95; }
.plan-card.pop .plan-desc { color: rgba(255,255,255,.82); }
.plan-link { display: block; margin-top: 1.4rem; background: var(--green); color: white; padding: .75rem; border-radius: 100px; text-align: center; text-decoration: none; font-size: .83rem; font-weight: 700; transition: background .2s; }
.plan-card.pop .plan-link { background: white; color: var(--green); }
.plan-link:hover { opacity: .85; }
.plan-notes { font-size: .78rem; color: var(--ink-light); line-height: 2.1; }
.plan-notes li { list-style: none; padding-left: 1.2em; text-indent: -1.2em; }
.plan-notes li::before { content: '※ '; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━
   SAFETY – redesigned
━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.safety-sec {
  background: #ffffff;
  padding: 0 !important;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

/* 縦書き「SUPPORT SYSTEM」 */
.safety-side-text {
  position: absolute;
  left: 1.6rem;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .28em;
  color: rgba(0,0,0,.18);
  white-space: nowrap;
  z-index: 5;
  pointer-events: none;
}

/* ── 上段：テキスト左 + 写真右 ── */
.safety-top {
  display: grid;
  grid-template-columns: 68% 32%;
  height: clamp(260px, 34vw, 460px);
  overflow: hidden;
}

.safety-text-col {
  padding: 3rem 4rem 3rem 7vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

/* ラベル */

/* 大見出し */
.safety-h2 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .06em;
  color: var(--ink);
  margin-bottom: 0;
}

/* 見出し行の右に置くスクリプトテキスト */
.safety-h2-row {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.2rem;
}
.safety-script-block {
  display: flex;
  align-items: stretch;
  gap: 1.2rem;
  padding-bottom: .3rem;
  flex-shrink: 0;
}
.safety-script-rule {
  width: 1px;
  background: rgba(0,0,0,.2);
  flex-shrink: 0;
}
.safety-script-text {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(.75rem, 1.1vw, .92rem);
  color: var(--ink-light);
  line-height: 1.8;
  white-space: nowrap;
}

/* サブテキスト */
.safety-desc {
  font-size: .87rem;
  color: var(--ink-mid);
  line-height: 2.1;
  max-width: 380px;
}

/* 写真エリア */
.safety-photo-col {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.safety-photo-col img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}

/* ── カードエリア ── */
.safety-cards-wrap {
  padding: 3rem 7vw 3rem;
}

/* 上段3列グリッド */

/* 下段3列 */

/* カード共通 */
.s-card {
  background: white;
  border-radius: 16px;
  padding: 1.6rem 1.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* アイコン行 */
.s-card-ico-row {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1rem;
}
.s-ico-circle {
  width: 3.8rem; height: 3.8rem;
  border-radius: 50%;
  background: #f4f3f1;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.s-card-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: .92rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
}

/* 区切り線 */
.s-card-rule {
  height: 1px;
  background: rgba(0,0,0,.09);
  margin-bottom: 1rem;
}

.s-card-body {
  font-size: .8rem;
  color: var(--ink-mid);
  line-height: 1.95;
}

/* ── ボトムストリップ ── */
.safety-bottom-strip {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 1.5rem 7vw;
  border-top: 1px solid rgba(0,0,0,.1);
}
.safety-bottom-line {
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,.14);
}
.safety-bottom-text {
  font-size: .84rem;
  color: var(--ink-mid);
  white-space: nowrap;
  letter-spacing: .02em;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .safety-top { grid-template-columns: 1fr; height: auto; overflow: visible; }
  .safety-photo-col { height: 260px !important; }
  .safety-text-col { padding: 3rem 6vw 2rem; }
  .safety-side-text { display: none; }
  .safety-h2-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
@media (max-width: 600px) {
  .safety-photo-col { height: 220px !important; }
  .safety-bottom-line { display: none; }
}

/* ── 6枚統合グリッド ── */
.safety-grid-unified {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 960px) {
  .safety-grid-unified { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .safety-grid-unified { grid-template-columns: 1fr; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━
   AREA – redesigned (Image 2 style)
━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.area-sec {
  background: white;
  padding: 0 !important;
  overflow: visible;
  position: relative;
  z-index: 1;
}

/* ── ヘッダー ── */
.area-top {
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: start;
  padding: 5rem 7vw 3rem;
  gap: 2rem;
  position: relative;
  overflow: visible;
}

.area-h2 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.area-desc {
  font-size: .86rem;
  color: var(--ink-mid);
  line-height: 2.05;
  max-width: 420px;
}

/* 右側：地図＋写真 */
.area-map-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}
.area-map-wrap {
  position: relative;
  width: 100%;
  min-height: clamp(280px, 38vw, 500px);
  background-image: url('images/area_02.png');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 60% auto;
}
/* カプセル型に切り抜いた写真 — 地図の右に絶対配置 */
.area-photo-circle {
  position: absolute;
  top: 25%;
  transform: translateY(-50%);
  right: -9vw;
  width: clamp(130px, 80vw, 350px);
  height: clamp(220px, 52vw, 800px);
  aspect-ratio: auto;
  border-radius: 9999px;
  overflow: hidden;
  border: 6px solid white;
  z-index: 1;
}
.area-photo-circle img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 85%;
}
.area-photo-circle-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #C8D8C0, #8FA880);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 700;
  color: rgba(255,255,255,.5); letter-spacing: .12em;
}

/* ── カードエリア ── */
.area-cards-wrap {
  padding: 0 7vw 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.area-card {
  background: white;
  border-radius: 20px;
  border: 1.5px solid rgba(0,0,0,.07);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
}
/* カードヘッダー */
.area-card-head {
  padding: 1.6rem 2rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 2.5px solid var(--green);
}
.area-ico-circle {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: #f4f3f1;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.area-pref-wrap {}
.area-pref {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  display: flex; align-items: baseline; gap: .6rem;
}
.area-pref-en {
  font-family: 'Lato', sans-serif;
  font-size: .72rem;
  font-weight: 400;
  color: var(--green-dark);
  letter-spacing: .04em;
}
/* カードボディ */
.area-card-body {
  padding: 1.6rem 2rem 2rem;
}
.area-main-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: .84rem; font-weight: 700;
  padding: .38rem 1rem;
  border-radius: 100px;
  margin-bottom: .9rem;
}
.area-districts {
  font-size: .76rem;
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.area-nearby-title {
  display: flex; align-items: center; gap: .6rem;
  font-size: .8rem; font-weight: 700;
  color: var(--ink);
  margin-bottom: .7rem;
}
.area-nearby-title::before {
  content: '';
  width: 3px; height: 1em;
  background: var(--green);
  border-radius: 2px;
  display: block;
}
.area-tags {
  display: flex; flex-wrap: wrap; gap: .4rem;
}
.atag {
  background: white;
  color: var(--ink-mid);
  font-size: .75rem;
  padding: .26rem .75rem;
  border-radius: 100px;
  border: 1px solid rgba(0,0,0,.1);
}

/* ── ボトムノート ── */
.area-note-wrap {
  padding: 0 7vw 4rem;
  position: relative;
}
.area-note {
  background: #F8F4EE;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  position: relative;
  overflow: hidden;
}
.area-note-ico {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.area-note-text { flex: 1; }
.area-note-title {
  font-size: .88rem; font-weight: 700;
  color: var(--ink);
  margin-bottom: .3rem;
}
.area-note-body {
  font-size: .8rem; color: var(--ink-mid); line-height: 1.85;
}

/* Responsive */
@media (max-width: 960px) {
  .area-top { grid-template-columns: 1fr; padding: 3.5rem 6vw 2rem; }
  .area-map-col { justify-content: center; }
  .area-map-wrap {
    max-width: 420px;
    min-height: clamp(220px, 55vw, 380px);
    background-size: 58% auto;
    background-position: left center;
  }
  .area-photo-circle {
    top: 50%;
    right: 0;
    width: clamp(130px, 36vw, 190px);
    height: clamp(200px, 56vw, 320px);
  }
  .area-cards-wrap { grid-template-columns: 1fr; padding: 0 6vw 2rem; }
}
@media (max-width: 600px) {
  .area-h2 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .area-note { flex-direction: column; text-align: center; }
  .area-map-wrap {
    max-width: 100%;
    min-height: 64vw;
    background-size: 55% auto;
  }
  .area-photo-circle {
    right: 1vw;
    width: 38vw;
    height: 60vw;
  }
}

/* FINAL CTA */
.final { background: #152A1E; text-align: center; padding: 9rem 8vw; position: relative; overflow: hidden; }
.final::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, rgba(59,173,92,.22) 0%, transparent 60%); }
.final-inner { position: relative; z-index: 1; }
.final-sub-tag { display: inline-block; border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.55); font-size: .7rem; letter-spacing: .18em; padding: .38rem 1.2rem; border-radius: 100px; margin-bottom: 2.2rem; }
.final-title { font-family: 'Shippori Mincho B1', serif; font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; color: white; line-height: 1.5; margin-bottom: 1.2rem; }
.final-desc { color: rgba(255,255,255,.6); font-size: .93rem; line-height: 2.1; max-width: 480px; margin: 0 auto 3rem; }
.final-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-fw { background: white; color: var(--green-dark); padding: 1.1rem 2.4rem; border-radius: 100px; font-size: .95rem; font-weight: 700; text-decoration: none; transition: all .25s; }
.btn-fw:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,.2); }
.btn-fg { border: 2px solid rgba(255,255,255,.25); color: white; padding: 1.1rem 2.2rem; border-radius: 100px; font-size: .95rem; font-weight: 700; text-decoration: none; transition: all .25s; }
.btn-fg:hover { border-color: white; background: rgba(255,255,255,.1); }
.final-tel { margin-top: 2rem; color: rgba(255,255,255,.35); font-size: .84rem; }
.final-tel a { color: rgba(255,255,255,.65); text-decoration: none; font-weight: 700; }

/* FOOTER */
footer { background: #0E1F16; border-top: 1px solid rgba(255,255,255,.06); padding: 2.2rem 8vw; }
.footer-content { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-info .logo { font-family: 'Shippori Mincho B1', serif; color: rgba(255,255,255,.4); font-size: .88rem; text-decoration: none; display: flex; align-items: center; gap: .75rem; }
.footer-info .logo svg { width: 48px; height: auto; opacity: .5; }
.logo-main-text { color: rgba(255,255,255,.4); font-size: .88rem; }
.logo-sub-text { color: rgba(255,255,255,.25); font-size: .72rem; display: block; }
.footer-address { color: rgba(255,255,255,.25); font-size: .75rem; line-height: 1.8; margin: .5rem 0 0; }
.footer-nav ul { display: flex; flex-direction: column; gap: .6rem; list-style: none; padding: 0; margin: 0; text-align: right; }
.footer-nav li a { color: rgba(255,255,255,.3); font-size: .75rem; text-decoration: none; transition: color .2s; }
.footer-nav li a:hover { color: rgba(255,255,255,.65); }
.copyright { color: rgba(255,255,255,.18); font-size: .7rem; margin-top: 1.5rem; text-align: center; }

/* FADE IN */
.fi { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.fi.on { opacity: 1; transform: none; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━
   VISIT COMBOS – magazine editorial style
━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.combos-sec {
  background: #F2EDE4;
  padding: 5rem 6vw 5rem;
  position: relative;
  overflow: hidden;
}

/* 装飾：コンパス（右上） */
.combos-deco-compass {
  position: absolute;
  top: 2.5rem; right: 3vw;
  width: clamp(60px, 8vw, 110px);
  opacity: .35;
  pointer-events: none;
}
.combos-h2 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800; line-height: 1.3;
  color: #2A2218; margin-bottom: .9rem;
}
.combos-lead {
  font-size: .88rem; color: #6A6058; line-height: 2;
  max-width: 520px; margin-bottom: 2.8rem;
}

/* 2×2グリッド */
.combos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
@media (max-width: 760px) { .combos-grid { grid-template-columns: 1fr; } }

/* カード */
.combo-card {
  border-radius: 18px;
  padding: 1.8rem 1.8rem 1.6rem;
  position: relative;
  display: flex; flex-direction: column; gap: .9rem;
  overflow: visible;
}
.combo-card:nth-child(1) { background: #E8EEE4; }
.combo-card:nth-child(2) { background: #EEE4DC; }
.combo-card:nth-child(3) { background: #EEEADC; }
.combo-card:nth-child(4) { background: #DFE9E4; }

/* カード右上の装飾イメージエリア */
.combo-card-img {
  position: absolute;
  top: -1.2rem; right: -1rem;
  width: clamp(80px, 10vw, 140px);
  height: clamp(80px, 10vw, 140px);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
  border: 4px solid rgba(255,255,255,.35);
  pointer-events: none;
  z-index: 3;
}
.combo-card-img img { width:100%; height:100%; object-fit:cover; display:block; }
.combo-card-img-placeholder {
  width:100%; height:100%;
  display:flex; align-items:center; justify-content:center;
  font-size: 2.5rem;
}


/* ラベルバッジ */
.combo-label {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(0,0,0,.1);
  color: rgba(0,0,0,.65);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .06em;
  padding: .28rem .85rem;
  border-radius: 100px;
  width: fit-content;
}

/* タイトル */
.combo-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(.95rem, 1.6vw, 1.15rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.5;
  padding-right: clamp(70px, 9vw, 120px); /* 画像の分だけ右に余白 */
}

/* タイムライン */
.combo-timeline {
  display: flex; flex-direction: column; gap: 0;
  border-left: 1.5px solid rgba(0,0,0,.18);
  padding-left: 1.05rem;
  margin-left: .3rem;
}
.combo-item {
  display: flex; align-items: flex-start; gap: .65rem;
  padding: .55rem 0;
  position: relative;
}
.combo-item::before {
  content: '';
  position: absolute;
  left: -1.3rem; top: 50%; transform: translateY(-50%);
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(0,0,0,.4);
  box-shadow: 0 0 0 2px rgba(0,0,0,.12);
}
.combo-duration {
  background: rgba(0,0,0,.12);
  color: var(--ink);
  font-size: .68rem; font-weight: 700;
  padding: .15rem .6rem;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.combo-text {
  font-size: .83rem; color: var(--ink-mid); line-height: 1.7;
}

/* メモ風フッター */
.combo-note {
  font-size: .76rem;
  color: var(--ink-mid);
  border-top: 1px solid rgba(0,0,0,.12);
  padding-top: .75rem;
  line-height: 1.85;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━
   FAQ
━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.faq-sec {
  background: #F2F2EF;
  padding: 6rem 8vw;
  position: relative;
  z-index: 5;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2.8rem;
  align-items: start;
}
@media (max-width: 768px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,.05);
}
.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  cursor: pointer;
  user-select: none;
  background: white;
  transition: background .15s;
}
.faq-q:hover { background: #FDFCFA; }
.faq-q-mark {
  flex-shrink: 0;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: .85rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-top: .05rem;
}
.faq-q-text {
  flex: 1;
  font-family: 'Shippori Mincho B1', serif;
  font-size: .92rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.6;
}
.faq-chevron {
  flex-shrink: 0;
  width: 1.4rem; height: 1.4rem;
  color: var(--green);
  transition: transform .25s;
  margin-top: .2rem;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s;
  padding: 0 1.6rem;
}
.faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 1.6rem 1.4rem;
}
.faq-a-inner {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  border-top: 1px solid rgba(0,0,0,.07);
  padding-top: 1rem;
}
.faq-a-mark {
  flex-shrink: 0;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: .85rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-top: .05rem;
}
.faq-a-text {
  font-size: .85rem;
  color: var(--ink-mid);
  line-height: 2;
}
.faq-a-text b { color: var(--ink); }

/* ── FAQ最終アイテム：注意書きスタイル ── */
.faq-item.faq-band {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  grid-column: 1 / -1;
}
.faq-notice {
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid #D4C89A;
  background: #FDFBF4;
  box-shadow: 0 3px 18px rgba(0,0,0,.06);
  display: flex;
  align-items: stretch;
}
/* 左の黄色帯 */
.faq-notice-bar {
  width: 6px;
  flex-shrink: 0;
  background: #C8A840;
}
/* コンテンツ本体 */
.faq-notice-body {
  padding: 1.6rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  flex: 1;
}

/* テキスト部 */
.faq-notice-text-wrap {
  flex: 1;
}
.faq-notice-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: .88rem;
  font-weight: 700;
  color: #7A6020;
  letter-spacing: .06em;
  margin-bottom: .55rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.faq-notice-title::before {
  content: '！';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.3rem; height: 1.3rem;
  border-radius: 50%;
  background: #C8A840;
  color: white;
  font-size: .7rem;
  font-weight: 900;
  flex-shrink: 0;
}
.faq-notice-desc {
  font-size: .85rem;
  color: var(--ink-mid);
  line-height: 2.05;
}
.faq-notice-desc b { color: var(--ink); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━
   CAN / CANNOT
━━━━━━━━━━━━━━━━━━━━━━━━━━ */