/* ============================================================
   Hyper Lending LP — 静的再現用スタイル
   ※ スクリーンショット16枚からの再現。画像はプレースホルダ枠。
   ============================================================ */

/* ---------- Anchor scroll offset ---------- */
section[id]{ scroll-margin-top: 96px; }

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans JP", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Design Tokens ---------- */
:root {
  --blue:        #082723;   /* 主＝濃緑（ボタン/リンク） */
  --blue-dark:   #05201d;
  --blue-bright: #0d3b34;
  --orange:      #0e8a78;   /* アクセント＝ティールグリーン */
  --orange-l:    #2fd0bb;
  --orange-dark: #0b6e60;
  --text:        #082723;   /* 文字＝濃緑 */
  --text-sub:    #3f5d57;
  --text-light:  #8aa39d;
  --bg:          #ffffff;
  --bg-alt:      #dbfbf6;   /* 背景＝激薄緑ミント */
  --bg-soft:     #eafdf8;
  --border:      #cdeae3;
  --card:        #ffffff;
  --shadow:      0 10px 30px rgba(8,39,35,.06);
  --shadow-lg:   0 18px 50px rgba(8,39,35,.10);
  --container:   1280px;
  --radius:      16px;
  --radius-lg:   22px;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.section--soft { background: var(--bg-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 15px; line-height: 1;
  padding: 16px 28px; border-radius: 999px; border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-dark); box-shadow: 0 8px 20px rgba(30,86,200,.3); }
.btn--outline { background: #fff; color: var(--blue); border-color: var(--blue); }
.btn--outline:hover { background: #f3f7ff; }
.btn--orange { background: var(--orange); color: #fff; }
.btn--orange:hover { background: var(--orange-dark); box-shadow: 0 8px 20px rgba(236,122,47,.3); }
.btn--lg { font-size: 17px; padding: 19px 40px; }
.btn--gradient { background: linear-gradient(120deg, #0d3b34 0%, #0e8a78 56%, #18bda2 100%); color: #fff; border-color: transparent; box-shadow: 0 10px 26px rgba(14,138,120,.30); }
.btn--gradient:hover { box-shadow: 0 14px 34px rgba(14,138,120,.44); }
.btn__arrow { display: inline-block; transition: transform .2s ease; }
.btn--gradient:hover .btn__arrow { transform: translateX(5px); }
/* FV お問い合わせボタン（白地・緑枠・封筒アイコン。文字はボタン中央、封筒は右に固定） */
.btn-inquiry { position: relative; display: flex; align-items: center; justify-content: center; width: 100%; max-width: 480px; background: #fff; border: 2px solid var(--orange); border-radius: 999px; padding: 19px 26px; box-shadow: 0 12px 30px rgba(8,39,35,.10); transition: transform .15s ease, box-shadow .15s ease; }
.btn-inquiry:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(14,138,120,.24); }
.btn-inquiry__label { font-size: 22px; font-weight: 800; color: var(--blue); letter-spacing: .08em; }
.btn-inquiry__icon { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; border-radius: 50%; background: var(--bg-soft); color: var(--orange); display: inline-flex; align-items: center; justify-content: center; transition: background .15s ease; }
.btn-inquiry:hover .btn-inquiry__icon { background: var(--bg-alt); }
.btn-inquiry__icon svg { width: 23px; height: 23px; }
/* OFFER 料率カード（白ボックス・下の項目と間隔） */
.rates-strip.rates-strip--card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 34px 40px; margin: 6px 0 52px; }
.rates-strip--card .rates-strip__head { margin-bottom: 22px; }
.btn .ico { width: 18px; height: 18px; display: inline-block; }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 36px); max-width: 1180px; z-index: 100;
  background: rgba(255,255,255,.72); backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.6); border-radius: 18px;
  box-shadow: 0 10px 34px rgba(8,39,35,.10);
}
.header__inner { max-width: none; padding: 0 24px; display: flex; align-items: center; gap: 26px; height: 64px; }
.logo { font-size: 24px; letter-spacing: .02em; display: inline-flex; align-items: baseline; gap: 4px; }
.logo b { font-weight: 800; color: var(--text); }
.logo span { font-family: Georgia, "Times New Roman", serif; font-weight: 600; font-style: italic; color: var(--text); }
.logo__img { height: 38px; width: auto; display: block; }
.footer .logo__img { height: 44px; }
.nav { display: flex; gap: 28px; margin-left: auto; align-items: center; }
.nav a { font-size: 14.5px; font-weight: 500; color: var(--text-sub); transition: color .15s; }
.nav a:hover { color: var(--orange); }
.nav__link { font-size: 14.5px; font-weight: 600; color: var(--text); display: inline-flex; align-items: center; gap: 5px; cursor: pointer; transition: color .15s; }
.nav__link:hover { color: var(--orange); }
.nav .caret { font-size: 13px; opacity: 1; }
.nav__item--drop { position: relative; padding: 21px 0; margin: -21px 0; }
.nav__menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px); min-width: 232px; background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow-lg); padding: 10px; opacity: 0; visibility: hidden; transition: opacity .18s ease, transform .18s ease; z-index: 60; }
.nav__item--drop:hover .nav__menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__menu a { display: block; padding: 11px 14px; font-size: 13.5px; font-weight: 600; color: var(--text-sub); border-radius: 9px; white-space: nowrap; transition: background .15s, color .15s; }
.nav__menu a:hover { background: var(--bg-alt); color: var(--text); }
.header__cta { display: flex; gap: 10px; align-items: center; }
.header__cta .btn { padding: 12px 22px; font-size: 14px; }
.btn--ghost { background: transparent; color: var(--text); border-color: transparent; }
.btn--ghost:hover { background: var(--bg-alt); }
.btn--white { background: #fff; color: #082723; border-color: #fff; }
.btn--white:hover { background: #eafdf8; }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--ghost-light:hover { background: rgba(255,255,255,.1); }

/* ---------- Header corp variant ---------- */
.header--corp { background: #082723; border-color: rgba(255,255,255,.12); }
.header--corp .nav__link { color: #fff; }
.header--corp .nav__link:hover { color: #7fe3cf; }
.header--corp .caret { color: #fff; }
.header--corp .nav__menu { background: #0d3b34; border-color: rgba(255,255,255,.12); }
.header--corp .nav__menu a { color: #cfe9e2; }
.header--corp .nav__menu a:hover { background: rgba(255,255,255,.08); color: #fff; }

/* ---------- Hamburger nav-toggle ---------- */
.nav-toggle {
  display: flex;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: transparent; border: none; padding: 4px;
  margin-left: auto; cursor: pointer; flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
}
.header--corp .nav-toggle span { background: #fff; }

/* open state — top/bottom rotate into X, middle fades */
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* PC幅ではハンバーガー非表示（ナビを通常表示） */
@media (min-width: 901px) { .nav-toggle { display: none; } .nav__reg { display: none; } }

@media (max-width: 900px) {
  .nav-toggle { display: flex; margin-left: auto; }
  .header__cta { display: none; }
  .header__inner { gap: 10px; padding: 0 16px; }

  /* モバイル：ドロワー（既定は非表示、is-openで開く） */
  .nav {
    display: none;
    position: absolute; top: calc(100% + 8px); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0; margin: 0;
    background: #fff; border: 1px solid var(--border); border-radius: 14px;
    padding: 6px; box-shadow: 0 16px 40px rgba(8,39,35,.16);
    z-index: 90; max-height: calc(100vh - 96px); overflow-y: auto;
  }
  .nav.is-open { display: flex; }

  /* 各行：左テキスト・右キャレットで整列 */
  .nav__item--drop { position: static; padding: 0; margin: 0; border-bottom: 1px solid var(--border); }
  .nav__link {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 15px 14px; font-size: 15px; font-weight: 600;
    border-bottom: none;
  }
  .nav > a.nav__link { border-bottom: 1px solid var(--border); }
  .nav > a.nav__link:last-child { border-bottom: none; }
  .nav .caret { font-size: 11px; opacity: .55; transition: transform .22s ease; }
  .nav__item--drop.is-expanded > .nav__link .caret { transform: rotate(180deg); }
  .nav__item--drop.is-expanded > .nav__link { color: var(--orange); }

  /* サブメニュー＝アコーディオン（既定は閉じる。タップした親だけ開く） */
  .nav__menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; border-radius: 0; min-width: 0;
    background: var(--bg-alt); padding: 0;
    max-height: 0; overflow: hidden; transition: max-height .28s ease;
  }
  .nav__item--drop.is-expanded > .nav__menu { max-height: 340px; }
  /* SPでタップ時に残る:hoverがデスクトップ用transform(translateX(-50%))を適用し、
     サブメニューが画面外へズレて「見えない」不具合になるのを打ち消す */
  .nav__item--drop:hover .nav__menu { transform: none; opacity: 1; visibility: visible; }
  .nav__menu a {
    display: block; padding: 13px 14px 13px 26px; font-size: 14px; font-weight: 600;
    color: var(--text-sub); border-top: 1px solid var(--border);
  }
  .nav__menu a:first-child { border-top: none; }

  /* メニュー内の事前登録ボタン（SP専用。PCはheader__ctaにあるので非表示） */
  .nav .nav__reg { display: block; margin: 10px 8px 6px; padding: 14px; text-align: center;
    font-size: 15px; font-weight: 800; border-radius: 10px; background: var(--blue); color: #fff; }
  .header--corp .nav .nav__reg { background: #fff; color: #0d3b34; }

  /* 法人ヘッダー（ダークドロワー） */
  .header--corp .nav { background: #0d3b34; border-color: rgba(255,255,255,.14); }
  .header--corp .nav__item--drop { border-bottom-color: rgba(255,255,255,.12); }
  .header--corp .nav__link { color: #fff; }
  .header--corp .nav > a.nav__link { border-bottom-color: rgba(255,255,255,.12); }
  .header--corp .nav__item--drop.is-expanded > .nav__link { color: #7fe3cf; }
  .header--corp .nav__menu { background: rgba(0,0,0,.18); }
  .header--corp .nav__menu a { color: #cfe9e2; border-top-color: rgba(255,255,255,.1); }
}
/* モバイルドロワー展開中は背景スクロールを固定 */
html.nav-locked, html.nav-locked body { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--bg-alt);
  padding-top: 88px;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(58% 78% at 80% 32%, rgba(47,208,187,.20), rgba(219,251,246,0) 62%);
}
.hero .container { max-width: 1180px; }
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: center; min-height: 520px; padding: 20px 0 64px; }
.hero h1 { font-size: 68px; font-weight: 900; line-height: 1.16; letter-spacing: .005em; color: var(--text); }
.hero__lead { margin-top: 20px; color: var(--text-sub); font-size: 30px; font-weight: 800; letter-spacing: .06em; }
.hero__cta { display: flex; flex-direction: column; align-items: stretch; gap: 16px; margin-top: 38px; max-width: 480px; }
.hero__cta .btn { width: 100%; font-size: 20px; padding: 22px 28px; }
.hero__corp { font-size: 13px; color: var(--text-sub); font-weight: 600; text-align: center; transition: color .15s; }
.hero__corp:hover { color: var(--orange); }
.hero__badges { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.92); border-radius: 999px; padding: 9px 18px; font-size: 13px; font-weight: 700; color: var(--text); box-shadow: var(--shadow); }
.hero__badge .star { color: var(--orange); }
.hero__visual { position: relative; display: flex; flex-direction: column; justify-content: flex-end; gap: 18px; min-height: 360px; }

/* Hero corp（メインコピー開始位置を少し下げる） */
.hero--corp .hero__text { padding-top: 44px; }
.hero--corp .hero__lead { font-size: 24px; letter-spacing: .02em; }

/* Hero corp 抽象オブジェクト（深緑3D素材・本体ゆらぎ＋小球が別々に浮遊） */
.hero__visual--corp { align-items: center; justify-content: center; min-height: 460px; }
.corp-orb { position: relative; width: 100%; max-width: 470px; aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; animation: orb-float 9s ease-in-out infinite; }
.corp-orb__img { width: 100%; height: auto; filter: drop-shadow(0 34px 64px rgba(8,39,35,.30)); animation: orb-sway 17s ease-in-out infinite; transform-origin: 50% 52%; }
.corp-orb__spark { position: absolute; border-radius: 50%; background: radial-gradient(circle at 34% 30%, #9af0de, #0e8a78); box-shadow: 0 4px 14px rgba(14,138,120,.45); }
.corp-orb__spark--1 { width: 20px; height: 20px; top: 7%; right: 11%; animation: spark-a 6.5s ease-in-out infinite; }
.corp-orb__spark--2 { width: 12px; height: 12px; bottom: 13%; left: 7%; animation: spark-b 8.5s ease-in-out infinite .4s; }
.corp-orb__spark--3 { width: 9px; height: 9px; top: 50%; right: 2%; background: radial-gradient(circle at 34% 30%, #ffffff, #b6f3e6); animation: spark-a 7.5s ease-in-out infinite .9s; }
@keyframes orb-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes orb-sway { 0%, 100% { transform: rotate(-3deg) scale(1); } 50% { transform: rotate(3deg) scale(1.035); } }
@keyframes spark-a { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-10px, -16px); } }
@keyframes spark-b { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(9px, -13px); } }

/* Hero内オブジェクト（騎士アニメ／通貨オーブ） */
.hero__object { position: relative; height: 460px; display: flex; align-items: center; justify-content: center; }
.hero__glow { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(47,208,187,.30), rgba(219,251,246,0) 70%); }
/* FV 騎士アニメ（ビットコインを上へ放つ→キャッチ） */
/* FV 通貨アイソメ（前列HYPE/BTC・後列ETH/USDC/USDT、ぴょんぴょん） */
.coins-iso { position: relative; z-index: 1; width: 100%; max-width: 500px; aspect-ratio: 1; margin: 0 auto; }
.coin-iso { position: absolute; filter: drop-shadow(0 16px 22px rgba(8,39,35,.20)); animation: coin-bounce 2.6s ease-in-out infinite; }
/* 後列（2列目・奥）＝ETH・BTC、前列（1列目・手前）＝HYPE、右に鎧（小さめ・HYPEから離す） */
.coin-iso--eth   { width: 27%; left: 6%;  top: 4%;  z-index: 1; animation-delay: 0s; }
.coin-iso--btc   { width: 29%; left: 50%; top: 4%;  z-index: 1; animation-delay: .3s; }
.coin-iso--hype  { width: 47%; left: 22%; top: 40%; z-index: 3; animation-delay: .8s; }
.coin-iso--armor { width: 22%; left: 76%; top: 33%; z-index: 2; animation-delay: .5s; }
.hero--home .hero__text { padding-top: 50px; }
.hero__flash { display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(120deg, var(--orange), var(--orange-l)); color: #fff; font-weight: 800; font-size: 15px; letter-spacing: .02em; padding: 9px 18px; border-radius: 999px; box-shadow: 0 8px 20px rgba(14,138,120,.30); margin-bottom: 22px; }
@keyframes coin-bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
/* CTA 通貨アイソメ（中央HYPE大・左右BTC/ETH） */
.cta-coin { position: absolute; filter: drop-shadow(0 16px 22px rgba(0,0,0,.25)); animation: coin-bounce 2.6s ease-in-out infinite; }
.cta-coin--btc  { width: 28%; left: 0%;  top: 16%; z-index: 2; animation-delay: .35s; }
.cta-coin--eth  { width: 28%; left: 72%; top: 16%; z-index: 2; animation-delay: .75s; }
.cta-coin--hype { width: 44%; left: 28%; top: -4%; z-index: 3; animation-delay: 0s; }
.orb { position: absolute; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; box-shadow: 0 12px 30px rgba(31,42,55,.18); animation: orb-float 5s ease-in-out infinite; }
.orb--hype { width: 86px; height: 86px; font-size: 30px; left: 50%; top: 4px; transform: translateX(-50%); background: linear-gradient(150deg,#2fd0bb,#13a08d); z-index: 2; }
.orb--btc  { width: 58px; height: 58px; font-size: 25px; left: 12%; top: 66px; background: linear-gradient(150deg,#fbb24b,#f7931a); animation-delay: .6s; }
.orb--eth  { width: 54px; height: 54px; font-size: 22px; right: 10%; top: 58px; background: linear-gradient(150deg,#8aa0f5,#627eea); animation-delay: 1.2s; }
@keyframes orb-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.orb--hype { animation-name: orb-float-c; }
@keyframes orb-float-c { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-10px); } }

/* Hero内 会員登録ボタン＋法人リンク（軽量・カード無し） */
.hero-reg-card { display: flex; flex-direction: column; align-items: stretch; gap: 12px; text-align: center; }
.hero-reg-card .btn { width: 100%; }
.hero-reg-card__corp { font-size: 12px; color: var(--text-sub); font-weight: 600; transition: color .15s; }
.hero-reg-card__corp:hover { color: var(--blue); }
.hero__badge--accent { background: linear-gradient(135deg, #2fd0bb, #13a08d); color: #fff; box-shadow: 0 6px 16px rgba(19,160,141,.35); }
.hero__badge--accent .star { color: #fff; }

/* ---------- 料率バー（ヒーロー内パネル・軽量） ---------- */
.rate-bar { position: relative; z-index: 2; padding: 0 0 6px; }
.rate-bar .container { background: rgba(255,255,255,.96); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: 0 6px 20px rgba(31,42,55,.05); padding: 30px 46px; }
.rate-bar__head { display: flex; align-items: baseline; justify-content: center; gap: 14px; margin-bottom: 24px; }
.rate-bar__head h3 { font-size: 19px; font-weight: 800; }
.rate-bar__head h3 #rate-month { color: var(--orange); }
.rate-bar__note { font-size: 11.5px; color: var(--text-light); font-weight: 500; }
.rate-bar__items { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.rate-item { display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 13px; padding: 6px 14px; border-right: 1px solid #f1f4f8; }
.rate-item:last-child { border-right: none; }
.rate-item--hl .coin { box-shadow: 0 0 0 4px rgba(19,160,141,.12); }
.rate-item .coin { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; color: #fff; font-size: 14px; }
.rate-item .coin.btc  { background: #f7931a; }
.rate-item .coin.usdc { background: #2775ca; }
.rate-item .coin.eth  { background: #627eea; }
.rate-item .coin.hype { background: #1fae9a; }
.rate-item .coin.usdt { background: #26a17b; }
.rate-item__txt { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.rate-item .lbl { font-size: 10.5px; color: var(--text-light); font-weight: 600; white-space: nowrap; }
.rate-item .val { font-size: 26px; font-weight: 900; }
.rate-item .val small { font-size: 14px; font-weight: 700; }

/* ---------- 共通セクション見出し ---------- */
.sec-head { position: relative; text-align: center; margin-bottom: 56px; }
.sec-head__ghost {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -54%);
  font-family: Georgia, serif; font-style: italic; font-weight: 700;
  font-size: 120px; color: rgba(31,42,55,.045); white-space: nowrap; z-index: 0; pointer-events: none;
}
.sec-head__label { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 10px; color: var(--orange); font-weight: 800; font-size: 13px; letter-spacing: .16em; }
.sec-head__label::before { content: ""; display: inline-block; width: 28px; height: 2px; background: var(--orange); border-radius: 2px; }
.sec-head h2 { position: relative; z-index: 1; font-size: 38px; font-weight: 900; margin-top: 14px; line-height: 1.3; }
.sec-head h2 .o { color: var(--orange); }
.sec-head__left { text-align: left; }
.sec-head__left .sec-head__ghost { left: 0; transform: translate(0, -40%); }

/* ---------- PROBLEM ---------- */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.problem-grid--quad { grid-template-columns: 1fr 1fr; }
.problem-card { background: var(--card); border-radius: var(--radius-lg); padding: 40px 30px; box-shadow: var(--shadow); text-align: center; }
.problem-card .ic { width: 56px; height: 56px; margin: 0 auto 22px; border-radius: 50%; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 24px; box-shadow: inset 0 0 0 1px var(--border); }
.problem-grid--left .problem-card { text-align: left; }
.problem-grid--left .problem-card .ic { margin-left: 0; margin-right: 0; }
.problem-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 14px; }
.problem-card h3 .o { color: var(--orange); }
.problem-card p { font-size: 14px; color: var(--text-sub); line-height: 1.9; }
.problem-bridge { text-align: center; margin-top: 56px; }
.problem-bridge p { font-size: 30px; font-weight: 900; line-height: 1.5; }
.problem-bridge .o { color: var(--orange); }
.problem-bridge .arrow { display: inline-flex; color: var(--orange); margin-top: 14px; animation: bridge-bounce 1.5s ease-in-out infinite; }
.problem-bridge .arrow svg { width: 60px; height: 60px; display: block; }
@keyframes bridge-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(14px); } }
@media (prefers-reduced-motion: reduce) { .problem-bridge .arrow { animation: none; } }

/* ---------- FEATURES ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 120px; }
.feature:last-child { margin-bottom: 0; }
.feature--reverse .feature__media { order: 2; }
.feature__no { color: var(--orange); font-weight: 800; font-size: 13px; letter-spacing: .12em; }
.feature__resolve { display: inline-block; font-size: 12.5px; font-weight: 800; color: var(--orange-dark); letter-spacing: .03em; margin: 14px 0 6px; padding: 6px 14px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 999px; }
.feature h3 { font-size: 30px; font-weight: 900; line-height: 1.4; margin: 12px 0 20px; }
.feature p { font-size: 15px; color: var(--text-sub); line-height: 2; }
.feature__tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.tag { background: var(--bg-alt); color: var(--text); font-size: 13px; font-weight: 700; padding: 8px 16px; border-radius: 8px; }
.feature__media { background: linear-gradient(135deg, #eef3fb, #e7eefa); border-radius: var(--radius-lg); padding: 16px; box-shadow: var(--shadow); }
.feature__media:has(.feature__img) { background: none; padding: 0; box-shadow: none; }
.feature__img { width: auto; max-width: 100%; height: auto; max-height: 320px; margin: 0 auto; display: block; border-radius: var(--radius-lg); filter: drop-shadow(0 12px 22px rgba(8,39,35,.16)); }

/* FEATURES（個人）：端から斜めに生える超薄い装飾レクタングル（画像の背面・端で見切れる） */
#features { position: relative; overflow: hidden; }
#features .feature { position: relative; }
#features .feature > .feature__media, #features .feature > .feature__body { position: relative; z-index: 1; }
#features .feature::before {
  content: ""; position: absolute; z-index: 0;
  top: 50%; height: 380px; width: 47vw; border-radius: 40px;
  background: linear-gradient(155deg, #cdece5 0%, #e4f7f2 100%);
  left: -28vw; right: auto; transform: translateY(-50%) rotate(-28deg); transform-origin: center;
}
#features .feature--reverse::before {
  left: auto; right: -28vw; top: 40%; transform: translateY(-50%) rotate(-28deg);
}

/* STRENGTH（法人）：同じ斜め装飾。SOLUTIONはミント背景なので白〜淡ミントの帯で「光が差す」見せ方 */
#solution { position: relative; overflow: hidden; }
#solution .feature { position: relative; }
#solution .feature > .feature__media, #solution .feature > .feature__body { position: relative; z-index: 1; }
#solution .feature::before {
  content: ""; position: absolute; z-index: 0;
  top: 50%; height: 380px; width: 47vw; border-radius: 40px;
  background: linear-gradient(155deg, #a0ddcf 0%, #c2ebe3 100%);
  left: -28vw; right: auto; transform: translateY(-50%) rotate(-28deg); transform-origin: center;
}
#solution .feature--reverse::before {
  left: auto; right: -28vw; top: 40%; transform: translateY(-50%) rotate(-28deg);
}

/* 端から色がギュインと差し込むアニメ（スクロールで発火）。形はそのまま、色だけ端→内へ展開 */
#features .feature::before, #solution .feature::before {
  clip-path: inset(0 100% 0 0 round 40px);                 /* 左端から生える＝右を100%隠す */
  transition: clip-path .68s cubic-bezier(.2,.9,.2,1);
}
#features .feature--reverse::before, #solution .feature--reverse::before {
  clip-path: inset(0 0 0 100% round 40px);                 /* 右端から生える＝左を100%隠す */
}
#features .feature.is-revealed::before, #solution .feature.is-revealed::before {
  clip-path: inset(0 0 0 0 round 40px);                    /* 端から内へ展開しきる */
}
@media (prefers-reduced-motion: reduce) {
  #features .feature::before, #solution .feature::before,
  #features .feature--reverse::before, #solution .feature--reverse::before {
    clip-path: inset(0 0 0 0 round 40px); transition: none;
  }
}
.feature__credit { margin-top: 12px; font-size: 11.5px; color: var(--text-light); line-height: 1.7; }

/* ---------- RATES table ---------- */
.rates-table { width: 100%; border-collapse: separate; border-spacing: 0; box-shadow: var(--shadow); border-radius: var(--radius); overflow: hidden; background: #fff; }
.rates-table th, .rates-table td { padding: 18px 20px; text-align: center; font-size: 15px; border-bottom: 1px solid var(--border); }
.rates-table thead th { background: var(--orange); color: #fff; font-weight: 800; font-size: 15px; }
.rates-table thead th:first-child { background: var(--orange-dark); }
.rates-table tbody th { background: var(--bg-alt); font-weight: 700; color: var(--text); text-align: left; width: 200px; }
.rates-table tbody tr:nth-child(even) td { background: #fcfdfe; }
.rates-table tbody tr:last-child th, .rates-table tbody tr:last-child td { border-bottom: none; }

/* ---------- SECURITY ---------- */
.security-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px 26px; }
.security-grid--3 { grid-template-columns: repeat(3, 1fr); }
/* Fireblocks 導入バナー（見出し下にドカンと） */
.fireblocks-banner { display: flex; align-items: center; gap: 30px; background: linear-gradient(120deg, #f1f8f6, #e9f4f0); border: 1px solid var(--border); border-left: 5px solid var(--orange); border-radius: 18px; padding: 30px 38px; margin-bottom: 32px; box-shadow: var(--shadow); }
.fireblocks-banner__icon { flex-shrink: 0; width: 78px; height: 78px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); }
.fireblocks-banner__icon i { font-size: 36px; color: var(--orange); }
.fireblocks-banner__eyebrow { display: inline-block; font-size: 11.5px; font-weight: 800; letter-spacing: .12em; color: var(--orange-dark); margin-bottom: 6px; }
.fireblocks-banner__title { margin: 2px 0 10px; }
.fireblocks-banner__title .fb-pre { display: block; font-size: 15px; font-weight: 700; color: var(--text-sub); }
.fireblocks-banner__title .fb-main { display: block; font-size: 30px; font-weight: 900; color: var(--text); line-height: 1.25; }
.fireblocks-banner__lead { font-size: 14px; color: var(--text-sub); line-height: 1.9; margin: 0; }
@media (max-width: 700px) { .fireblocks-banner { flex-direction: column; text-align: center; gap: 18px; padding: 24px 20px; } .fireblocks-banner__title .fb-main { font-size: 24px; } }
.security-card { background: #fff; border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow); border-top: 3px solid var(--orange); }
.security-card .ic { color: var(--orange); font-size: 22px; margin-bottom: 14px; }
.security-card h3 { font-size: 17px; font-weight: 800; color: var(--blue-dark); margin-bottom: 10px; }
.security-card p { font-size: 13px; color: var(--text-sub); line-height: 1.85; }

/* ---------- FLOW ---------- */
.flow { display: flex; flex-direction: column; gap: 16px; }
.flow-step { display: flex; align-items: center; gap: 28px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 32px; box-shadow: var(--shadow); transition: transform .15s, box-shadow .15s; }
.flow-step:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.flow-step__no { flex-shrink: 0; width: 76px; text-align: center; }
.flow-step__no small { display: block; font-size: 11px; font-weight: 700; color: var(--text-light); letter-spacing: .1em; }
.flow-step__no b { font-size: 32px; font-weight: 900; color: var(--blue); font-family: "Inter", sans-serif; }
.flow-step__body h3 { font-size: 19px; font-weight: 800; margin-bottom: 6px; }
.flow-step__body p { font-size: 14px; color: var(--text-sub); }

/* ---------- FAQ ---------- */
.faq-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 40px; }
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px 28px; }
.faq-q { display: flex; gap: 16px; align-items: flex-start; font-size: 17px; font-weight: 800; }
.faq-a { display: flex; gap: 16px; align-items: flex-start; margin-top: 14px; font-size: 14px; color: var(--text-sub); line-height: 1.9; }
.faq-mark { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; }
.faq-q .faq-mark { background: var(--orange); color: #fff; }
.faq-a .faq-mark { background: #fff; color: var(--orange); box-shadow: inset 0 0 0 2px var(--orange); }

/* ---------- NEWS ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .15s, box-shadow .15s; }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-card__thumb { display: block; aspect-ratio: 16/9; background: var(--bg-soft); overflow: hidden; }
.news-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.subpage--news .container { max-width: 928px; }
.news-card__body { padding: 20px 22px 26px; }
.news-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.news-cat { font-size: 11px; font-weight: 700; color: #fff; background: var(--blue); padding: 4px 12px; border-radius: 6px; }
.news-cat.is-orange { background: var(--orange); }
.news-cat.is-green { background: #2a9d6f; }
.news-date { font-size: 12px; color: var(--text-light); }
.news-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.news-card p { font-size: 13px; color: var(--text-sub); }

/* ---------- CTA (フォーム) ---------- */
.cta { background: linear-gradient(120deg, #082723 0%, #0e6356 58%, #0e8a78 100%); position: relative; overflow: hidden; }
.cta__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cta__copy h2 { font-size: 42px; font-weight: 900; color: #fff; line-height: 1.3; }
.cta__copy p { color: #fff; margin-top: 18px; font-size: 15px; line-height: 1.9; opacity: .95; }
.cta__copy .btn { margin-top: 30px; }
.cta__form { background: #fff; border-radius: var(--radius-lg); padding: 38px 40px; box-shadow: var(--shadow-lg); }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.field label .req { color: var(--orange); margin-left: 4px; }
.field input[type="text"], .field input[type="email"] { width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: 10px; font-size: 14px; font-family: inherit; background: #fafbfc; }
.field input:focus { outline: none; border-color: var(--blue); background: #fff; }
.agree { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-sub); margin-bottom: 22px; }
.cta__form .btn { width: 100%; }

/* ---------- Footer ---------- */
.footer { background: #fff; border-top: 1px solid var(--border); padding: 64px 0 40px; }
.footer__inner { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 36px; }
.footer .logo { font-size: 26px; margin-bottom: 14px; }
.footer__copy { font-size: 12px; color: var(--text-light); }
.footer__run { font-size: 12.5px; color: var(--text-sub); margin: 12px 0 8px; line-height: 1.7; }
.footer__run a { color: var(--text); font-weight: 700; text-decoration: underline; }
.footer__run a:hover { color: var(--orange); }
.footer__col h4 { font-size: 13px; font-weight: 800; color: var(--text); margin-bottom: 16px; }
.footer__col a { display: block; font-size: 13.5px; color: var(--text-sub); padding: 7px 0; transition: color .15s; }
.footer__col a:hover { color: var(--blue); }

/* ---------- 追従CTA（全ページ右下固定） ---------- */
.float-cta { position: fixed; right: 22px; bottom: 22px; z-index: 60; background: var(--blue); color: #fff; border-radius: 14px; padding: 14px 18px; box-shadow: 0 14px 34px rgba(30,86,200,.4); display: flex; flex-direction: column; gap: 10px; max-width: 190px; }
.float-cta small { font-size: 12px; font-weight: 700; line-height: 1.4; }
.float-cta .btn { padding: 10px 16px; font-size: 13px; background: #fff; color: var(--blue); }

/* ---------- 画像プレースホルダ ---------- */
.ph {
  background: #eef2f7;
  border: 1px solid #dde3ec; border-radius: 12px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  color: #9aa3af; font-size: 13px; font-weight: 600; min-height: 80px; padding: 16px; gap: 4px;
}
.ph--hero { width: 100%; height: 380px; background: transparent; border: 1px dashed #d7dde7; color: #aab2bf; }
.ph--feature { aspect-ratio: 4/3; }
.ph--chaosmap { aspect-ratio: 4/3; }
.ph--report { aspect-ratio: 16/10; }
.ph--news { width: 100%; height: 100%; border-radius: 0; }
.ph small { display: block; font-weight: 500; opacity: .8; font-size: 11px; margin-top: 2px; }

/* ---------- SVGアイコン / テーブル横スクロール ---------- */
.svg-ico { display: inline-block; vertical-align: middle; stroke: currentColor; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.problem-card .ic svg { width: 30px; height: 30px; stroke: var(--orange); stroke-width: 1.6; }
.security-card .ic svg { width: 26px; height: 26px; stroke: var(--orange); stroke-width: 1.6; }
.security-card .ic i { font-size: 27px; line-height: 1; color: var(--orange); }
.problem-card .ic i { font-size: 26px; line-height: 1; color: var(--orange); }

/* フッターの公式Xアイコン */
.footer__x { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; margin-top: 14px; border-radius: 50%; background: var(--text); color: #fff; transition: transform .15s ease, opacity .15s ease; }
.footer__x:hover { transform: translateY(-2px); opacity: .88; }

/* 個別記事（お知らせ）冒頭のアイキャッチ */
.article-eyecatch { margin: 0 0 32px; }
.article-eyecatch img { width: 100%; height: auto; border-radius: 16px; display: block; box-shadow: var(--shadow); }

/* VIP：左に説明・右に表。表のテキスト/余白を詰めて説明（テキスト全体）の高さに合わせる */
.vip-split { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 32px; align-items: center; }
.vip-split__table .table-wrap { box-shadow: none; }
.vip-split__table .vip-rank-table { width: 100%; font-size: 12.5px; }
.vip-split__table .vip-rank-table thead th { font-size: 11.5px; padding: 5px 12px; }
.vip-split__table .vip-rank-table tbody td, .vip-split__table .vip-rank-table tbody th { font-size: 13px; padding: 5px 12px; }
.vip-rank-table { font-size: 13px; }
.vip-rank-table th, .vip-rank-table td { padding: 10px 12px; }
.vip-rank-table tbody td { font-size: 14px; }
.vip-rank-table thead th { font-size: 12.5px; }
.vip-formula { font-size: 15px; font-weight: 800; color: var(--text); background: var(--bg-alt); border: 1px solid var(--border); border-radius: 12px; padding: 12px 16px; text-align: center; margin: 6px 0 14px; }
@media (max-width: 880px) { .vip-split { grid-template-columns: 1fr; gap: 18px; } }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); box-shadow: var(--shadow); }
.table-wrap .rates-table { box-shadow: none; min-width: 820px; }
.rates-note { font-size: 12px; color: var(--text-light); margin-top: 14px; }

/* ---------- ABOUT ---------- */
.about { display: grid; grid-template-columns: 1fr 1.05fr; gap: 50px; align-items: center; }
.about--solo { display: block; max-width: 860px; margin: 0 auto; text-align: center; }
.about--solo .about__body p { margin-bottom: 0; }
.feature__body p { font-size: 15px; }
.feature__note { font-size: 11px; color: var(--text-light); opacity: .7; line-height: 1.75; margin: 16px 0 18px; }
.feature__link { display: inline-block; margin-top: 18px; font-size: 14px; font-weight: 700; color: var(--orange); transition: color .15s ease, transform .15s ease; }
.feature__link:hover { color: var(--orange-dark); transform: translateX(3px); }
.about__media .ph--about { aspect-ratio: 4/3; }
.about__body h3 { font-size: 28px; font-weight: 900; line-height: 1.45; margin-bottom: 20px; }
.about__body p { font-size: 15px; color: var(--text-sub); line-height: 2; margin-bottom: 26px; }

/* ピックアップ記事 */
.pickup { margin-top: 72px; }
.pickup__head { text-align: center; margin-bottom: 30px; }
.pickup__head h3 { font-size: 22px; font-weight: 900; margin-top: 10px; }
.pickup-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pickup-card { display: block; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .15s, box-shadow .15s; }
.pickup-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pickup-card__thumb { aspect-ratio: 16/9; }
.pickup-card__thumb .ph--pickup { width: 100%; height: 100%; border-radius: 0; }
.pickup-card__body { padding: 18px 20px 22px; }
.pickup-cat { display: inline-block; font-size: 11px; font-weight: 700; color: #fff; background: var(--orange); padding: 4px 12px; border-radius: 6px; margin-bottom: 10px; }
.pickup-card h4 { font-size: 15px; font-weight: 800; line-height: 1.6; }

/* ---------- CTA オブジェクト＋ボタン ---------- */
.cta__inner { position: relative; }
.cta__object { position: relative; height: 240px; }
.cta__glow { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 270px; height: 270px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.5), rgba(255,255,255,0) 70%); }
.cta__object .orb { box-shadow: 0 16px 40px rgba(31,42,55,.25); }
.cta__object .orb--hype { width: 112px; height: 112px; font-size: 40px; left: 50%; top: 18px; }
.cta__object .orb--btc  { width: 76px; height: 76px; font-size: 32px; left: 14%; top: 124px; }
.cta__object .orb--eth  { width: 68px; height: 68px; font-size: 28px; right: 14%; top: 112px; }
.btn--on-orange { background: #fff; color: var(--orange-dark); }
.btn--on-orange:hover { background: #fff7f1; box-shadow: 0 10px 24px rgba(31,42,55,.18); }
.cta__inner--solo { grid-template-columns: 1fr; text-align: center; }

/* ---------- 下層ページ共通 ---------- */
.page-header { background: var(--bg-alt); border-bottom: 1px solid var(--border); padding: 124px 0 46px; }
.page-header .container { max-width: 928px; }
.page-header__en { display: block; color: var(--orange); font-weight: 800; font-size: 13px; letter-spacing: .14em; margin-bottom: 10px; }
.page-header h1 { font-size: 34px; font-weight: 900; line-height: 1.32; }
.page-header__lead { margin-top: 16px; color: var(--text-sub); font-size: 15px; line-height: 1.95; max-width: 760px; }
.breadcrumb { font-size: 12.5px; color: var(--text-light); margin-bottom: 16px; }
.breadcrumb a { color: var(--text-sub); }
.breadcrumb a:hover { color: var(--blue); }
.subpage { padding: 72px 0; }
.prose { max-width: 880px; margin: 0 auto; }
.prose > h2 { font-size: 28px; font-weight: 900; margin: 56px 0 22px; padding-bottom: 13px; border-bottom: 2px solid var(--border); line-height: 1.45; position: relative; }
.prose > h2::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 54px; height: 2px; background: var(--orange); }
.prose > h2[id] { scroll-margin-top: 96px; }
.prose > h2:first-child { margin-top: 0; }
.prose h3 { font-size: 21px; font-weight: 800; margin: 36px 0 14px; color: var(--text); padding-left: 14px; border-left: 4px solid var(--orange-l); line-height: 1.5; }
.prose p { font-size: 16.5px; color: var(--text-sub); line-height: 2.05; margin: 0 0 20px; }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 1.4em; }
.prose li { font-size: 16.5px; color: var(--text-sub); line-height: 2; margin-bottom: 10px; list-style: disc; }
.prose ol li { list-style: decimal; }
.prose a { color: var(--blue); text-decoration: underline; }
/* 投稿本文（.prose）内のボタンは .prose a の色上書きを受けない＝文字は白・下線なし */
.prose a.btn { text-decoration: none; }
.prose a.btn--primary, .prose a.btn--on-orange { color: #fff; }
.prose strong { color: var(--text); font-weight: 800; }
.prose .note { font-size: 12.5px; color: var(--text-light); line-height: 1.85; margin: 10px 0 24px; }
.prose table { width: 100%; border-collapse: collapse; margin: 0 0 22px; font-size: 14px; }
.prose th, .prose td { border: 1px solid var(--border); padding: 13px 16px; text-align: left; vertical-align: top; }
.prose th { background: var(--bg-alt); font-weight: 700; color: var(--text); width: 200px; }
/* お問い合わせフォーム（個人/法人。Contact Form 7 を想定したname属性） */
.contact-wrap { max-width: 720px; margin: 0 auto; }
.contact-wrap__lead { font-size: 15px; color: var(--text-sub); line-height: 1.95; margin-bottom: 36px; }
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-size: 14px; font-weight: 700; color: var(--text); }
.req { display: inline-block; font-size: 10.5px; font-weight: 800; color: #fff; background: var(--orange); padding: 2px 8px; border-radius: 4px; margin-left: 6px; letter-spacing: .04em; }
.opt { display: inline-block; font-size: 10.5px; font-weight: 700; color: var(--text-light); background: var(--bg-alt); padding: 2px 8px; border-radius: 4px; margin-left: 6px; }
.form-field input, .form-field select, .form-field textarea { font-family: inherit; font-size: 15px; color: var(--text); background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; transition: border-color .15s ease, box-shadow .15s ease; }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-light); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(14,138,120,.12); }
.form-field textarea { resize: vertical; min-height: 150px; }
/* CF7：入力欄をコンテンツ幅いっぱいに（既定の中途半端な固有幅を解消） */
.form-field:not(.form-field--check) .wpcf7-form-control-wrap { display: block; }
.form-field input:not([type="checkbox"]):not([type="radio"]),
.form-field select,
.form-field textarea { width: 100%; box-sizing: border-box; }
.form-field--check label { font-size: 14px; font-weight: 500; color: var(--text-sub); flex-direction: row; align-items: center; gap: 9px; }
.form-field--check a { color: var(--blue); text-decoration: underline; }
.form-submit { text-align: center; margin-top: 10px; }
.form-submit .btn { min-width: 300px; }
.form-note { font-size: 13px; color: var(--text-light); line-height: 1.85; margin-top: 30px; text-align: center; }
@media (max-width: 720px) { .form-row { grid-template-columns: 1fr; } }

.subpage-cta { margin-top: 56px; padding: 36px 32px; background: linear-gradient(120deg, #082723, #0e8a78); border-radius: var(--radius-lg); text-align: center; }
.subpage-cta h3 { font-size: 21px; font-weight: 900; color: #fff; margin-bottom: 8px; }
.subpage-cta p { font-size: 14px; color: #fff; opacity: .95; margin-bottom: 20px; }

/* ---------- 貸借料率ストリップ（ロゴ横に数字・ボックスなし） ---------- */
.rates-strip { padding: 28px 0 4px; background: #fff; }
.rates-strip__head { text-align: center; font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 18px; }
.rates-strip__head #rate-month { color: var(--orange); }
.rates-strip__note { display: inline-block; margin-left: 12px; font-size: 11.5px; font-weight: 500; color: var(--text-light); }
.rates-strip__items { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; max-width: 1000px; margin: 0 auto; }
.rates-strip--three .rates-strip__items { grid-template-columns: repeat(3, 1fr); max-width: 780px; gap: 30px; }
.arate { display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 11px; padding: 6px 8px; }
.arate__logo { width: 44px; height: 44px; object-fit: contain; flex-shrink: 0; }
.arate__txt { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
.arate__val { font-size: 27px; font-weight: 900; color: var(--text); }
.arate__val small { font-size: 14px; }
.arate__lbl { font-size: 11px; font-weight: 700; color: var(--text-sub); }
.arate__lbl small { font-size: 9.5px; font-weight: 600; color: var(--text-light); margin-left: 4px; }

/* ---------- 法人ページ Q&A（不安解消／FAQ） ---------- */
.concern-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 30px; margin-bottom: 16px; box-shadow: var(--shadow); max-width: 980px; }
.concern-item:last-child { margin-bottom: 0; }
.concern-item h3 { font-size: 18px; font-weight: 800; color: var(--blue-dark); margin: 0 0 12px; line-height: 1.55; }
.concern-item p { font-size: 14.5px; color: var(--text-sub); line-height: 1.95; margin: 0 0 12px; }
.concern-item p:last-child { margin-bottom: 0; }
.concern-item a { color: var(--blue); text-decoration: underline; }
.concern-item strong { color: var(--text); font-weight: 800; }

/* ---------- 法人 課題カード（2列×3段・同高さ） ---------- */
.concern-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.concern-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 30px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 12px; transition: transform .15s, box-shadow .15s; }
.concern-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.concern-card__label { display: inline-flex; align-items: center; gap: 8px; font-size: 11.5px; font-weight: 800; color: var(--orange); letter-spacing: .1em; }
.concern-card__q { font-size: 22px; font-weight: 800; color: var(--text); line-height: 1.5; margin: 0; }
.concern-card__a { font-size: 13.5px; color: var(--text-sub); line-height: 1.9; margin: 0; }
.concern-card__a strong { color: var(--text); font-weight: 700; }
.concern-card__a a { color: var(--blue); text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .concern-grid { grid-template-columns: 1fr; }
  .hero__inner, .feature, .feature--reverse .feature__media,
  .cta__inner, .about { grid-template-columns: 1fr; }
  .page-header { padding: 96px 0 32px; }
  .page-header h1 { font-size: 25px; }
  .subpage { padding: 48px 0; }
  .prose > h2 { font-size: 22px; }
  .prose th, .prose td { padding: 10px 12px; }
  .prose th { width: auto; }
  .feature--reverse .feature__media { order: 0; }
  .problem-grid, .news-grid, .pickup-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  /* ナビ／ハンバーガー／CTAの表示制御は上部のモバイル専用ブロック（max-width:900px）に集約 */
  .header__inner { padding: 0 16px; gap: 12px; }
  .hero h1 { font-size: 42px; }
  .hero__lead { font-size: 22px; }
  .hero__inner { padding: 24px 0 24px; min-height: 0; }
  .hero__object { height: 300px; }
  .knight { max-width: 290px; }
  .hero__glow { width: 280px; height: 280px; }
  .rates-strip__items { grid-template-columns: repeat(2, 1fr); gap: 18px 8px; }
  .sec-head h2 { font-size: 28px; }
  .sec-head__ghost { font-size: 64px; }
  .rate-bar .container { padding: 18px 14px; }
  .rate-bar__items { grid-template-columns: repeat(2, 1fr); gap: 12px 4px; }
  .rate-item { border-right: none; justify-content: flex-start; padding: 6px 6px; gap: 10px; }
  .rate-item .val { font-size: 24px; }
  .cta__object { height: 200px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .float-cta { display: none; }
}

/* ============================================================
   FAQ（よくある100のご質問）個人・法人共通
   ============================================================ */
.faq-hero { background: var(--bg-alt); padding: 132px 0 56px; position: relative; overflow: hidden; }
.faq-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(58% 80% at 80% 18%, rgba(47,208,187,.20), rgba(219,251,246,0) 60%); }
.faq-hero .container { position: relative; z-index: 1; max-width: 1000px; }
.faq-hero__eyebrow { font-size: 13px; font-weight: 800; letter-spacing: .16em; color: var(--orange-dark); }
.faq-hero h1 { font-size: 48px; font-weight: 900; line-height: 1.18; margin-top: 12px; color: var(--text); letter-spacing: .01em; }
.faq-hero h1 .o { color: var(--orange); }
.faq-hero__lead { margin-top: 16px; color: var(--text-sub); font-size: 16px; font-weight: 600; line-height: 1.9; max-width: 720px; }
.faq-switch { display: inline-flex; align-items: center; gap: 10px; margin-top: 26px; padding: 13px 24px; background: #fff; border: 1px solid var(--border); border-radius: 999px; font-weight: 700; font-size: 14.5px; color: var(--text); box-shadow: var(--shadow); transition: transform .15s ease, box-shadow .15s ease, color .15s ease; }
.faq-switch:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--orange); }
.faq-switch__ico { width: 18px; height: 18px; color: var(--orange); }
.faq-switch .arr { transition: transform .2s ease; }
.faq-switch:hover .arr { transform: translateX(4px); }

/* 目次 */
.faq-toc { padding: 48px 0 4px; }
.faq-toc__inner { max-width: 1000px; margin: 0 auto; }
.faq-toc__ttl { font-size: 13px; font-weight: 800; letter-spacing: .12em; color: var(--text-light); margin-bottom: 16px; }
.faq-toc__list { display: flex; flex-wrap: wrap; gap: 10px; }
.faq-toc__chip { display: inline-flex; align-items: center; gap: 8px; padding: 10px 17px; background: #fff; border: 1px solid var(--border); border-radius: 999px; font-size: 13.5px; font-weight: 700; color: var(--text-sub); transition: background .15s ease, color .15s ease, border-color .15s ease; }
.faq-toc__chip:hover { background: var(--bg-alt); color: var(--text); border-color: var(--orange-l); }
.faq-toc__chip b { color: var(--orange); font-weight: 800; font-size: 12px; }

/* カテゴリ */
.faq-section { padding: 24px 0 80px; }
.faq-wrap { max-width: 1000px; margin: 0 auto; }
.faq-cat { margin-top: 56px; scroll-margin-top: 100px; }
.faq-cat:first-child { margin-top: 8px; }
.faq-cat__head { display: flex; align-items: baseline; gap: 14px; padding-bottom: 16px; border-bottom: 2px solid var(--text); margin-bottom: 4px; }
.faq-cat__num { font-size: 13px; font-weight: 800; color: var(--orange); letter-spacing: .06em; flex-shrink: 0; font-family: "Inter", sans-serif; }
.faq-cat__name { font-size: 23px; font-weight: 900; color: var(--text); line-height: 1.4; }

/* アコーディオン（details / summary） */
details.faq-q { display: block; gap: 0; border-bottom: 1px solid var(--border); }
.faq-q > summary { list-style: none; cursor: pointer; display: flex; align-items: flex-start; gap: 13px; padding: 21px 46px 21px 0; position: relative; font-size: 16.5px; font-weight: 700; color: var(--text); line-height: 1.62; transition: color .15s ease; }
.faq-q > summary::-webkit-details-marker { display: none; }
.faq-q > summary:hover { color: var(--orange); }
.faq-q__no { flex-shrink: 0; font-size: 14px; font-weight: 800; color: var(--orange); font-family: "Inter", sans-serif; line-height: 1.85; min-width: 38px; }
.faq-q__q { flex: 1 1 auto; min-width: 0; }
.faq-q__icon { position: absolute; right: 8px; top: 24px; width: 16px; height: 16px; transition: transform .25s ease; color: var(--text-light); }
.faq-q[open] > summary { color: var(--orange); }
.faq-q[open] .faq-q__icon { transform: rotate(180deg); }
.faq-q__a { padding: 2px 46px 26px 51px; color: var(--text-sub); font-size: 15px; line-height: 1.95; }
.faq-q__a p { margin: 0; }
.faq-q__a a { color: var(--orange-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.faq-q__a .note { display: block; margin-top: 12px; font-size: 12.5px; color: var(--text-light); }

@media (max-width: 720px) {
  .faq-hero { padding: 116px 0 44px; }
  .faq-hero h1 { font-size: 33px; }
  .faq-cat__name { font-size: 19px; }
  .faq-q > summary { font-size: 15.5px; padding: 18px 38px 18px 0; }
  .faq-q__a { padding: 2px 8px 22px 51px; }
}

/* はじめての方ページ：特徴カード/ステップ群を本文幅に揃える */
.start-block { max-width: 880px; margin: 44px auto; }
.start-block .problem-grid { gap: 20px; }
@media (max-width: 720px) { .start-block { margin: 30px auto; } }
/* 対応通貨テーブル：列幅を固定し特徴を広く・個人/法人は中央寄せ */
.ccy-table { table-layout: fixed; width: 100%; }
.ccy-table th:nth-child(1),.ccy-table td:nth-child(1){ width: 17%; }
.ccy-table th:nth-child(2),.ccy-table td:nth-child(2){ width: 14%; white-space: nowrap; }
.ccy-table th:nth-child(3),.ccy-table td:nth-child(3){ width: 7%; }
.ccy-table th:nth-child(4),.ccy-table td:nth-child(4){ width: 7%; }
.ccy-table th:nth-child(3),.ccy-table th:nth-child(4),.ccy-table td:nth-child(3),.ccy-table td:nth-child(4){ text-align: center; }
.ccy-table td:nth-child(3),.ccy-table td:nth-child(4){ font-weight: 700; color: var(--orange-dark); }

/* ===== 料率プログラム（継続保有ステップアップ＋VIP）===== */
.rate-step-head { margin-bottom: 18px; }
.rate-step-head .lead { font-size: 24px; font-weight: 800; color: var(--text); margin: 0; }
.rate-step-head .max { font-size: 15px; font-weight: 800; color: var(--orange-dark); margin: 0; }
.rate-pattern__head { font-size: 19px; font-weight: 800; color: var(--text); margin: 0 0 4px; display: flex; align-items: center; gap: 10px; }
.rate-pattern__head::before { content: ""; width: 8px; height: 22px; background: var(--orange); border-radius: 4px; flex-shrink: 0; }
.rate-pattern__note { margin: 0 0 14px; font-size: 14px; color: var(--text-sub); }

/* 期間別テーブル：数字を大きく／通貨列と最長列をはっきり差別化（ミント背景に同化させない） */
.rate-step-table tbody td { font-size: 22px; font-weight: 800; color: var(--text); }
.rate-step-table tbody th { background: var(--bg-soft); color: var(--text); font-weight: 800; border-right: 2px solid var(--border); font-size: 15px; }
.rate-step-table thead th:last-child { background: var(--orange-dark); }
.rate-step-table tbody td:last-child { background: var(--orange); color: #fff; font-size: 24px; }
.rate-step-table tbody tr:nth-child(even) td:last-child { background: var(--orange); }
.rate-note-star { display: block; margin-top: 12px; font-size: 12.5px; color: var(--text-light); line-height: 1.85; }
.rate-note-star a { color: var(--orange-dark); }

/* アコーディオン（VIP・仕様 共通）：白カード＋はっきり見えるホバー（左にティールのバー） */
details.rate-acc { margin-top: 20px; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: #fff; box-shadow: var(--shadow); }
details.rate-acc > summary { list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 800; font-size: 16px; color: var(--text); display: flex; align-items: center; justify-content: space-between; gap: 12px; transition: background .15s, box-shadow .15s; }
details.rate-acc > summary::-webkit-details-marker { display: none; }
details.rate-acc > summary .tag { font-size: 12.5px; font-weight: 700; color: var(--orange-dark); margin-left: 8px; }
details.rate-acc > summary::after { content: "＋"; color: #fff; background: var(--orange); width: 26px; height: 26px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0; }
details.rate-acc[open] > summary::after { content: "−"; }
details.rate-acc > summary:hover { background: #f1f8f6; box-shadow: inset 4px 0 0 var(--orange-l); }
details.rate-acc > summary:hover::after { background: var(--orange-dark); }
details.rate-acc .rate-acc__body { padding: 8px 22px 24px; border-top: 1px solid var(--border); }
details.rate-acc .rate-acc__body .btn { margin-top: 4px; }

/* VIPランクのチップ */
.vip-chips { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin: 16px 0 20px; }
.vip-chip { text-align: center; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 12px; padding: 12px 6px; }
.vip-chip b { display: block; font-size: 13px; color: var(--text); }
.vip-chip span { display: block; margin-top: 4px; font-size: 18px; font-weight: 800; color: var(--orange-dark); }
.vip-chip.is-top { background: var(--orange); border-color: var(--orange); }
.vip-chip.is-top b, .vip-chip.is-top span { color: #fff; }
@media (max-width: 700px) { .vip-chips { grid-template-columns: repeat(3, 1fr); } }

/* VIPランク表（vip.html）：数字大きめ・最上位行を塗りで強調 */
.vip-rank-table tbody td { font-size: 17px; }
.table-wrap .vip-rank-table { min-width: 0; }          /* 3列表に820px幅を強制しない＝下の白い帯/影を解消 */
.vip-rank-table tbody tr.is-top td, .vip-rank-table tbody tr.is-top th { background: var(--orange); color: #fff; font-weight: 800; }  /* 偶数行の白背景に勝たせてVIP5全セルを塗る */

/* VIPアコーディオン内のサブ見出し・画像枠 */
.vip-sub { font-size: 16px; font-weight: 800; color: var(--text); margin: 6px 0 6px; display: flex; align-items: center; gap: 9px; }
.vip-sub::before { content: ""; width: 6px; height: 18px; background: var(--orange); border-radius: 3px; flex-shrink: 0; }
.vip-sub__note { margin: 0 0 14px; font-size: 13.5px; color: var(--text-sub); line-height: 1.85; }
.vip-img-ph { aspect-ratio: 16 / 7; background: var(--bg-alt); border: 1px dashed var(--orange-l); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--text-light); font-size: 13px; text-align: center; padding: 12px; }

/* ============================================================
   2026-06 RATES：見出し/説明ワイド＋下に画像50%/表50%・テーブル可読性
   ============================================================ */

/* 各プラン：見出しと説明は全幅（左）、その下に画像と表を50/50 */
.rate-pattern + .rate-pattern { margin-top: 60px; }
.rate-pattern__head { margin: 0 0 16px; font-size: 26px; }   /* プラン見出しを大きく */
.rate-pattern__head::before { height: 28px; width: 9px; }
.rate-pattern + details.rate-acc { margin-top: 56px; }       /* 定期型ブロックとVIPの間隔を広げる（従来20px→56px） */
.rate-pattern--flex .rate-pattern__head::before { background: #16a877; }
.rate-pattern--lock .rate-pattern__head::before { background: #0b6e60; }
.rate-pattern__lead { font-size: 15px; line-height: 1.95; color: var(--text-sub); margin: 0 0 26px; }
.rate-pattern__lead strong { color: var(--text); font-weight: 800; }
.rate-pattern__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.rate-pattern__cols > * { min-width: 0; }   /* グリッド子のmin-width:auto対策＝表の最小幅でページが横に広がるのを防ぐ */
.rate-pattern__table { min-width: 0; }
.rate-pattern .table-wrap { max-width: 100%; }
.rate-pattern__media img { width: 100%; height: auto; border-radius: var(--radius-lg); display: block; }
.rate-pattern .table-wrap { box-shadow: none; }
.rate-pattern .table-wrap .rates-table { min-width: 0; box-shadow: var(--shadow); }

/* 行見出し：コイン＋短コード */
.rate-step-table .coin { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 15px; }
.rate-step-table .coin img { width: 24px; height: 24px; object-fit: contain; flex-shrink: 0; }
.rate-step-table thead th { font-size: 13px; padding: 14px 8px; border: none; letter-spacing: .01em; }
.rate-step-table tbody th { width: auto; padding: 14px 14px; }

/* 通常セルは控えめ・最大列(最終列)を大きく強調。縞は消して全行で一貫 */
.rate-step-table tbody td { font-size: 18px; font-weight: 800; padding: 14px 8px; color: var(--text); }
.rate-step-table tbody td + td { border-left: 1px solid #e3f0ec; }   /* 年利セル（白背景）に薄い縦の列区切り線 */
.rate-step-table tbody tr:nth-child(even) td { background: #ffffff; }
.rate-step-table tbody td:last-child,
.rate-step-table tbody tr:nth-child(even) td:last-child { font-size: 26px; font-weight: 900; background: #dff5ec; color: #0b6e60; }

/* ヘッダー色（フレキシブル=明るめ緑／ロック=深め緑）。本文は両方とも白で可読性重視 */
.rate-step-table--flex thead th { background: linear-gradient(135deg,#1fb083,#0e8a78); }
.rate-step-table--flex thead th:first-child { background: #0b6e60; }
.rate-step-table--flex tbody th { background: #eafdf8; border-right: 2px solid #d3f0e9; color: var(--text); }
.rate-step-table--lock thead th { background: linear-gradient(135deg,#0e9a82,#0b6e60); }
.rate-step-table--lock thead th:first-child { background: #084c50; }
.rate-step-table--lock tbody th { background: #eafdf8; border-right: 2px solid #d3f0e9; color: var(--text); }

/* About 記事カード：実画像 */
.pickup-card__thumb { position: relative; }
.pickup-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pickup-card--soon { cursor: default; }
.pickup-card--soon:hover { transform: none; box-shadow: var(--shadow); }

/* キャンペーン帯：hoverで少し反応 */
.campaign-banner { display: block; }
.campaign-banner img { transition: transform .28s ease, box-shadow .28s ease; }
.campaign-banner:hover img { transform: translateY(-3px) scale(1.012); box-shadow: 0 24px 52px rgba(8,39,35,.20); }

/* CTA：コピー＋ボタンを右寄せ（左に詰まる→右の余白を解消） */
.cta__copy { text-align: right; padding-right: 26px; }   /* 右端をヘッダー右端(max-width1180)に合わせて少し内側へ */
/* 法人CTA（単独レイアウト）は中央。個人側の右寄せに引っ張られないよう明示 */
.cta__inner--solo .cta__copy { text-align: center; padding-right: 0; }
/* 個人TOP（#register）CTA：コピーを左へ寄せ、見出しを少し大きく＋キャンペーン導線 */
#register .cta__copy { text-align: left; padding-right: 0; padding-left: 130px; }
#register .cta__copy h2 { font-size: 48px; }
.cta__campaign { margin-top: 16px; }
.cta__campaign a { color: #fff; font-weight: 700; font-size: 14.5px; text-decoration: underline; text-underline-offset: 4px; opacity: .96; transition: opacity .15s ease; }
.cta__campaign a:hover { opacity: 1; }

/* レスポンシブ（PC幅基準。SP本格対応は後段の専用ブロックで） */
@media (max-width: 880px) {
  .rate-pattern__cols { grid-template-columns: 1fr; gap: 20px; }
  .rate-pattern__media { max-width: 460px; margin: 0 auto; }
}

/* ============================================================
   SP（スマホ）最適化 ── 見やすさ最優先（2026-06）
   ============================================================ */

/* タブレット〜大型スマホ（既存 max-width:900px の補強） */
@media (max-width: 900px) {
  body { overflow-x: clip; }   /* SP/タブレットで横スクロールを発生させない（position:stickyは維持） */
  .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .table-wrap .rates-table { min-width: 0; }   /* 全テーブルの820px最小幅を解除＝はみ出し根治（コンテナ内に収める） */
  .rates-strip__items { grid-template-columns: repeat(3, 1fr); gap: 10px; }   /* 3通貨は1行3列（孤立回避） */
}

/* スマホ（〜600px） */
@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .section { padding: 54px 0; }

  /* ヒーロー */
  .hero h1, .hero--home h1 { font-size: 29px; line-height: 1.34; }
  .hero__lead { font-size: 15.5px; }
  .hero__cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero__cta .btn { width: 100%; text-align: center; }
  .hero__corp { text-align: center; }
  .hero__object { height: 220px; }

  /* セクション見出し */
  .sec-head h2 { font-size: 23px; }
  .sec-head__ghost { display: none; }   /* 装飾の透かし文字はSPでは非表示（小画面で不要＋はみ出し回避） */
  .sec-head__label { font-size: 11px; letter-spacing: .12em; }

  /* 貸借料率サマリ */
  .rates-strip { padding: 22px 0; }
  .rates-strip__head { font-size: 12.5px; margin-bottom: 12px; }
  .rates-strip__items { gap: 6px; }
  .arate { flex-direction: column; text-align: center; gap: 3px; }
  .arate__logo { width: 30px; height: 30px; }
  .arate__val { font-size: 25px; }
  .arate__lbl { font-size: 9.5px; }

  /* About 記事カード */
  .pickup-grid { gap: 16px; }
  .pickup-card h4 { font-size: 14.5px; line-height: 1.55; }

  /* FEATURES */
  .feature { gap: 20px; margin-bottom: 52px; }
  .feature h3 { font-size: 21px; line-height: 1.45; }
  .feature p { font-size: 14.5px; line-height: 1.95; }
  .feature__img { max-height: 230px; }
  .feature__no { font-size: 12px; }

  /* RATES：見出し→説明→画像→表（縦積み） */
  .rate-step-head .lead { font-size: 18px; }
  .rate-pattern + .rate-pattern { margin-top: 42px; }
  .rate-pattern__head { font-size: 22px; }
  .rate-pattern__lead { font-size: 14px; line-height: 1.9; margin-bottom: 20px; }
  .rate-pattern__cols { gap: 16px; }
  .rate-pattern__media { max-width: 380px; }
  .rate-step-table--flex { min-width: 440px; }
  .rate-step-table--lock { min-width: 320px; }
  .rate-step-table thead th { font-size: 12px; padding: 11px 6px; }
  .rate-step-table tbody th { padding: 12px 10px; }
  .rate-step-table tbody td { font-size: 16px; padding: 12px 6px; }
  .rate-step-table tbody td:last-child,
  .rate-step-table tbody tr:nth-child(even) td:last-child { font-size: 21px; }
  .rate-step-table .coin { font-size: 13px; gap: 6px; }
  .rate-step-table .coin img { width: 19px; height: 19px; }

  /* アコーディオン（VIP／サービス仕様） */
  details.rate-acc > summary { font-size: 14.5px; padding: 15px 16px; }
  details.rate-acc > summary::after { width: 22px; height: 22px; }
  .rate-acc .rate-acc__body { padding: 6px 14px 18px; }
  .vip-sub { font-size: 15px; }

  /* セキュリティ等：1列 */
  .security-grid { grid-template-columns: 1fr; }

  /* CTA：スマホは中央寄せ＋ボタン全幅、コインを上に */
  .cta__inner { gap: 10px; text-align: center; }
  .cta__copy { text-align: center; }
  .cta__copy h2 { font-size: 27px; line-height: 1.36; }
  .cta__copy .btn { width: 100%; }
  .cta__object { height: 140px; order: -1; }
  #register .cta__copy { text-align: center; padding-left: 0; }
  #register .cta__copy h2 { font-size: 27px; }

  /* フッター */
  .footer { padding: 48px 0 32px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 22px 20px; }

  /* 汎用テーブル横スクロール */
  .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* 小型スマホ（〜400px） */
@media (max-width: 400px) {
  .hero h1, .hero--home h1 { font-size: 26px; }
  .sec-head h2 { font-size: 20px; }
  .arate__val { font-size: 22px; }
  .arate__lbl { font-size: 9px; }
  .cta__copy h2 { font-size: 24px; }
  #register .cta__copy h2 { font-size: 24px; }
  .footer__inner { grid-template-columns: 1fr; gap: 6px; }
  .footer__col { margin-top: 10px; }
}

/* ===== SP（個人TOP・FV）専用レイアウト：PC（≥601px）には影響しない ===== */
@media (max-width: 600px) {
  /* hero__text を display:contents で展開し、order でコインを lead 直下へ。左寄せ */
  .hero--home .hero__inner { display: flex; flex-direction: column; align-items: stretch; padding: 16px 0 30px; gap: 0; min-height: 0; }
  .hero--home .hero__text { display: contents; }
  /* バッジはSPでは非表示 */
  .hero--home .hero__flash { display: none; }
  /* 見出し・サブコピーだけ「ヘッダーと同じ幅」に合わせて左パディング（ベタ付け解消） */
  .hero--home h1 { order: 2; text-align: left; font-size: 37px; line-height: 1.24; margin: 0; padding: 0 18px 0 36px; }
  .hero--home .hero__lead { order: 3; text-align: left; font-size: 17px; margin-top: 12px; padding: 0 18px 0 36px; }
  /* コイン：lead 直下。ETH（左）・HYPE（中央・大）・BTC（右）。画像サイズは0.8倍（ボタンとの被り回避） */
  .hero--home .hero__visual { order: 4; width: 100%; min-height: 0; margin: 12px 0 4px; }
  .hero--home .hero__object { height: 140px; }
  .hero--home .hero__glow { width: 205px; height: 205px; }
  .hero--home .coins-iso { max-width: 100%; aspect-ratio: auto; height: 140px; margin: 0; }
  .hero--home .coin-iso--hype { width: 32%; left: 34%; top: 6%;  z-index: 3; }
  .hero--home .coin-iso--eth  { width: 24%; left: 3%;  top: 22%; z-index: 1; }
  .hero--home .coin-iso--btc  { width: 24%; left: 73%; top: 22%; z-index: 2; }
  /* CTA：ボタン・法人リンクは画面中央 */
  .hero--home .hero__cta { order: 5; align-items: center; gap: 10px; margin-top: 16px; max-width: 100%; }
  .hero--home .hero__cta .btn { width: auto; font-size: 15px; padding: 14px 32px; }
  .hero--home .hero__corp { text-align: center; }
}
@media (max-width: 400px) {
  .hero--home h1 { font-size: 32px; }
  .hero--home .hero__lead { font-size: 16px; }
  .hero--home .coin-iso--hype { width: 34%; left: 33%; }
  .hero--home .coin-iso--eth  { width: 25%; left: 2%; }
  .hero--home .coin-iso--btc  { width: 25%; left: 73%; }
}

/* キャンペーン帯のpadding（旧インラインをクラス化／PC据え置き） */
.section--campaign { padding: 44px 0 55px; }

/* ===== SP（個人TOP・各セクション）専用：PC（≥601px）不変 ===== */
@media (max-width: 600px) {
  /* 見出しを大きく＋下の余白を詰める */
  .sec-head { margin-bottom: 34px; }
  .sec-head h2 { font-size: 27px; }

  /* arate：ティッカーを改行（中央揃えは既存スタイル） */
  .arate__logo { width: 34px; height: 34px; }
  .arate__lbl { font-size: 10px; line-height: 1.3; }
  .arate__lbl small { display: block; font-size: 11px; font-weight: 800; color: var(--text); margin-top: 1px; }
  /* arateとキャンペーン画像の隙間を詰める */
  .rates-strip { padding: 20px 0 6px; }
  .section--campaign { padding-top: 16px; }

  /* ABOUT：リード文を小さく */
  .about__body h3 { font-size: 19px; line-height: 1.5; margin-bottom: 12px; }
  .about__body p { font-size: 13.5px; line-height: 1.9; }
  /* ABOUT：3記事を横スライド（約1.7枚見せ） */
  #about .pickup-grid { display: flex; grid-template-columns: none; gap: 12px; overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; margin: 0 -18px; padding: 0 18px 8px; }
  #about .pickup-card { flex: 0 0 60%; scroll-snap-align: start; }

  /* FEATURES：見出し→画像→説明の順＋全体中央揃え＋本文を大きく */
  #features .feature { display: flex; flex-direction: column; text-align: center; }
  #features .feature__body { display: contents; }
  /* display:contents で z-index:1(355行)が失効するため、本文要素を装飾::before より前面へ再指定 */
  #features .feature__no, #features .feature h3, #features .feature p,
  #features .feature__note, #features .feature__link, #features .feature__media { position: relative; z-index: 1; }
  #features .feature__no { order: 1; }
  #features .feature h3 { order: 2; font-size: 23px; line-height: 1.45; margin: 6px 0 6px; }
  #features .feature__media { order: 3; margin: 6px 0 2px; }
  #features .feature p, #features .feature__note { order: 4; }
  #features .feature__link { order: 5; }
  #features .feature p { font-size: 15.5px; line-height: 2; }
  /* 02の2つの注記を詰める（note1のインラインmargin-bottomを!importantで打消し） */
  #features .feature__note { margin: 2px 0 0 !important; }

  /* RATES：プラン見出しを1行に */
  .rate-pattern__head { font-size: 19px; }
  /* フレキシブル表：セルを改行させない（必要に応じ横スクロール） */
  .rate-step-table--flex { min-width: 470px; }
  .rate-step-table--flex th, .rate-step-table--flex td { white-space: nowrap; }

  /* VIPランク表：ランク狭く・貸出残高広く・改行なし */
  .vip-split__table .vip-rank-table { table-layout: fixed; }
  .vip-rank-table th:nth-child(1), .vip-rank-table td:nth-child(1) { width: 17%; }
  .vip-rank-table th:nth-child(2), .vip-rank-table td:nth-child(2) { width: 60%; white-space: nowrap; }
  .vip-rank-table th:nth-child(3), .vip-rank-table td:nth-child(3) { width: 23%; white-space: nowrap; }
  .vip-split__table .vip-rank-table tbody td, .vip-split__table .vip-rank-table tbody th { font-size: 12px; padding: 7px 4px; }
  .vip-split__table .vip-rank-table thead th { font-size: 10.5px; padding: 6px 4px; }

  /* サービス仕様表：横スクロール＋小さめ（ヘッダーは name<br>ticker 済）。VIPランク表は除外 */
  .rate-acc .rates-table:not(.vip-rank-table) { table-layout: fixed; min-width: 620px; }
  .rate-acc .rates-table:not(.vip-rank-table) th, .rate-acc .rates-table:not(.vip-rank-table) td { font-size: 11.5px; padding: 9px 7px; line-height: 1.55; }
  .rate-acc .rates-table:not(.vip-rank-table) th:first-child, .rate-acc .rates-table:not(.vip-rank-table) td:first-child { width: 18%; }
  .rate-acc .rates-table:not(.vip-rank-table) thead th { white-space: nowrap; }

  /* SECURITY：アイコンを項目名の横に置いて縦長を解消 */
  .security-card { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 4px 12px; padding: 18px 18px; }
  .security-card .ic { margin: 0; grid-row: 1; grid-column: 1; }
  .security-card h3 { grid-row: 1; grid-column: 2; margin: 0; }
  .security-card p { grid-row: 2; grid-column: 1 / 3; margin-top: 6px; }

  /* FLOW：STEP幅を半分にして本文を広く */
  .flow-step { gap: 12px; padding: 16px 16px; }
  .flow-step__no { width: 38px; }
  .flow-step__no b { font-size: 25px; }
  .flow-step__no small { font-size: 9.5px; }

  /* FAQ：カード型アコーディオン（divベース。SPはJSで .is-open をトグル。100問ページとは別デザイン） */
  .faq-item { padding: 0; overflow: hidden; }
  .faq-item .faq-q { cursor: pointer; padding: 18px 46px 18px 20px; position: relative; font-size: 15px; }
  .faq-item .faq-q::after { content: "＋"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: var(--orange); font-weight: 900; font-size: 17px; }
  .faq-item.is-open .faq-q::after { content: "−"; }
  .faq-item .faq-a { display: none; }
  .faq-item.is-open .faq-a { display: flex; padding: 0 20px 20px; margin-top: 0; font-size: 13.5px; }

  /* 最後のCTA：コインを小さく＋上に寄せて「暗号資産運用を」との被りを解消 */
  .cta__inner { gap: 10px; }
  .cta__object { height: 126px; }
  .cta-coin--hype { width: 33%; left: 33%; top: -4%; }
  .cta-coin--btc  { width: 23%; left: 9%;  top: 22%; }
  .cta-coin--eth  { width: 23%; left: 68%; top: 22%; }
  .cta__copy h2 { font-size: 25px; line-height: 1.32; }
  .cta__copy .btn { margin-top: 16px; }
  #register .cta__copy h2 { font-size: 25px; }

  /* フッター：サポートとその他を2カラム横並び（ブランドとHyperLendingについては全幅） */
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 20px 18px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__inner > .footer__col:nth-child(2) { grid-column: 1 / -1; }   /* HyperLendingについて=全幅。サポート｜その他が横並びに */
}
@media (max-width: 400px) {
  .sec-head h2 { font-size: 24px; }
  #about .pickup-card { flex-basis: 64%; }
  .cta__copy h2, #register .cta__copy h2 { font-size: 23px; }
}
/* FAQ：PCは div のまま（基底 .faq-a{display:flex}で常時表示）。SP折畳は上のSPブロックの .is-open で制御 */

/* ===== SP（法人ページ）専用：PC（≥601px）不変 ===== */
@media (max-width: 600px) {
  /* 法人FV：メインコピー→サブコピー→画像→ボタンの順（個人TOPと同様） */
  .hero--corp .hero__inner { display: flex; flex-direction: column; align-items: stretch; padding: 14px 0 26px; min-height: 0; }
  .hero--corp .hero__text { display: contents; }
  /* 見出し・サブコピーはヘッダー幅に合わせて左パディング（個人TOPと同じ） */
  .hero--corp h1 { order: 1; padding: 0 18px 0 36px; }
  .hero--corp .hero__lead { order: 2; font-size: 14px; line-height: 1.72; letter-spacing: 0; margin-top: 10px; padding: 0 18px 0 36px; }
  /* サブコピーは「暗号資産も。」の<br>で改行（SPでも表示） */
  .hero--corp .hero__visual--corp { order: 3; min-height: 0; margin: 10px 0 2px; }
  .hero--corp .corp-orb { max-width: 188px; margin: 0 auto; }
  .hero--corp .hero__cta { order: 4; margin-top: 14px; align-items: center; }
  .btn-inquiry { padding: 14px 24px; max-width: 300px; margin: 0 auto; }
  .btn-inquiry__label { font-size: 16px; letter-spacing: .04em; }
  .btn-inquiry__icon { width: 38px; height: 38px; right: 10px; }
  .btn-inquiry__icon svg { width: 18px; height: 18px; }

  /* SOLUTION：FEATURESと同様（見出し→画像→説明・中央揃え・装飾は背面） */
  #solution .feature { display: flex; flex-direction: column; text-align: center; }
  #solution .feature__body { display: contents; }
  #solution .feature__no, #solution .feature h3, #solution .feature p,
  #solution .feature__note, #solution .feature__link, #solution .feature__media { position: relative; z-index: 1; }
  #solution .feature__no { order: 1; }
  #solution .feature h3 { order: 2; font-size: 22px; line-height: 1.45; margin: 6px 0 6px; }
  #solution .feature__media { order: 3; margin: 6px 0 2px; }
  #solution .feature p, #solution .feature__note { order: 4; }
  #solution .feature__link { order: 5; }
  #solution .feature p { font-size: 15px; line-height: 2; }

  /* OFFER：5コインを 3＋2 で中央寄せ（USDCはBTC-ETH間、USDTはETH-HYPE間の下段）＋改行回避 */
  .rates-strip--card { padding: 24px 14px; }
  .rates-strip--card .rates-strip__items { grid-template-columns: repeat(6, 1fr); gap: 16px 2px; max-width: none; }
  .rates-strip--card .arate:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
  .rates-strip--card .arate:nth-child(2) { grid-column: 3 / 5; grid-row: 1; }
  .rates-strip--card .arate:nth-child(3) { grid-column: 5 / 7; grid-row: 1; }
  .rates-strip--card .arate:nth-child(4) { grid-column: 2 / 4; grid-row: 2; }
  .rates-strip--card .arate:nth-child(5) { grid-column: 4 / 6; grid-row: 2; }
  .rates-strip--card .arate__lbl { font-size: 9.5px; }
  .rates-strip--card .arate__lbl small { font-size: 10.5px; }
}
