@charset "UTF-8";
/*
Theme Name: 古矢行政書士事務所
Theme URI: https://furuya-office.jp/
Description: 古矢行政書士事務所オフィシャルサイト（茨城県坂東市）。テンプレ①ベースの和モダン・リニューアル。
Author: PEEES
Version: 1.0.0
*/
/* ============================================================
   import専用。partialは原則モックHTMLのCSS順を維持して読み込む
   （カスケード＝モック準拠）。
   ============================================================ */
/* ===== BP mixin（既存流儀：monitor/pc/tab/sp） ===== */
:root {
  --cream: #fdf9ee;
  --cream2: #f5eedc;
  --surface: #ffffff;
  --navy: #1c4a98;
  --navy-d: #163c7c;
  --navy-dd: #102c5c;
  --amber: #dd8521;
  --amber-d: #b86a14;
  --ink: #3b362e;
  --muted: #6e6656;
  --line: rgba(28, 74, 152, 0.14);
  --line-strong: rgba(28, 74, 152, 0.28);
  --h1: 64px;
  --h2: 34px;
  --h3: 21px;
  --maxw: 1180px;
  --gut: clamp(20px, 5vw, 64px);
  --headH: 118px;
  --sumi: #2b2620;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--sumi);
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--headH);
}

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

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

.mincho {
  font-family: "Zen Old Mincho", serif;
}

.nb {
  display: inline-block;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gut);
}

/* 段落ち対策：見出しは行を均等配分、本文は末尾の孤立を回避。
   日本語の不自然な改行（行頭の句読点・1文字落ち）も抑制。 */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
  line-break: strict;
}

p {
  text-wrap: pretty;
  line-break: strict;
}

.eyebrow {
  flex-wrap: wrap;
}

/* 改行ユーティリティ：br-sp=スマホのみ改行／br-pc=スマホでは改行しない */
.br-sp {
  display: none;
}

@media (max-width: 768px) {
  .br-sp {
    display: inline;
  }
  .br-pc {
    display: none;
  }
}
/* ---- eyebrow + 矢 signature ---- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 18px;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  color: var(--navy);
  font-weight: 500;
}

.eyebrow .en {
  color: var(--amber-d);
  font-weight: 700;
}

/* 案C 矢羽根スピン：eyebrow頭マーカー＝矢羽根ダイヤ（明地=アンバー×紺） */
.arw {
  flex: none;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 26 26%22%3E%3Cpath d%3D%22M13 1 L1 13 L13 25 Z%22 fill%3D%22%23DD8521%22%2F%3E%3Cpath d%3D%22M13 1 L25 13 L13 25 Z%22 fill%3D%22%231C4A98%22%2F%3E%3C%2Fsvg%3E") no-repeat center/contain;
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.6s cubic-bezier(0.4, 1.4, 0.5, 1);
}

.eyebrow:hover .arw,
.arw.is-in {
  transform: rotate(360deg);
}

.arw::before,
.arw::after {
  content: none;
}

@media (prefers-reduced-motion: reduce) {
  .arw {
    transition: none;
  }
}
/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Zen Kaku Gothic New";
  font-weight: 700;
  font-size: 15px;
  padding: 15px 26px;
  border-radius: 6px;
  transition: 0.18s;
  cursor: pointer;
  border: 0;
}

.btn .ar {
  font-size: 13px;
  transition: 0.18s;
}

.btn-amber {
  background: var(--amber);
  color: #fff;
}

.btn-amber:hover {
  background: var(--amber-d);
}

.btn-amber:hover .ar {
  transform: translateX(3px);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-navy:hover {
  background: var(--navy-d);
}

.btn-navy:hover .ar {
  transform: translateX(3px);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--navy);
  background: rgba(28, 74, 152, 0.04);
}

/* ---- 家紋 watermark ---- */
.kamon {
  position: absolute;
  pointer-events: none;
  opacity: 0.05;
  z-index: 0;
  background: url(img/kamon.png) center/contain no-repeat;
  aspect-ratio: 1/1;
}

/* ---- reveal ---- */
.rv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.rv.in {
  opacity: 1;
  transform: none;
}

/* ===== RESPONSIVE（:root） ===== */
@media (max-width: 1024px) {
  :root {
    --h1: 48px;
    --h2: 30px;
    --headH: 104px;
  }
}
@media (max-width: 768px) {
  :root {
    --h1: 36px;
    --h2: 25px;
    --h3: 19px;
    --headH: 64px;
  }
  body {
    padding-top: var(--headH);
  }
}
/* ===== HEADER (fixed PC & SP) ===== */
.hd {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(253, 249, 238, 0.94);
  backdrop-filter: saturate(1.1) blur(6px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s;
}

.hd.scrolled {
  box-shadow: 0 6px 22px rgba(16, 44, 92, 0.08);
}

.hd-r1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 13px var(--gut) 11px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand .bow {
  width: 34px;
  height: auto;
  flex: none;
}

.brand .name {
  height: 32px;
  width: auto;
}

.hd-contact {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hd-tel {
  text-align: right;
  line-height: 1.25;
}

.hd-tel .lbl {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.hd-tel .num {
  font-family: "Zen Old Mincho";
  font-weight: 700;
  font-size: 23px;
  color: var(--navy);
  letter-spacing: 0.02em;
  pointer-events: none;
}

.hd-tel .num::before {
  content: "☎ ";
  font-size: 16px;
}

.hd-r2 {
  border-top: 1px solid var(--line);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gut);
}

.nav a {
  position: relative;
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 7px;
  width: 0;
  height: 2px;
  background: var(--amber);
  transform: translateX(-50%);
  transition: width 0.2s;
}

.nav a:hover::after,
.nav a.on::after {
  width: calc(100% - 40px);
}

.nav a.on {
  color: var(--navy);
  font-weight: 700;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: 0;
  border: 0;
  padding: 9px;
  cursor: pointer;
}

.burger span {
  width: 26px;
  height: 2px;
  background: var(--navy);
  transition: 0.25s;
}

.drawer {
  display: none;
}

/* タブレット：PCヘッダーが詰まらないよう余白・サイズを圧縮 */
@media (max-width: 1024px) and (min-width: 769px) {
  .hd-r1 {
    gap: 12px;
  }
  .brand .name {
    height: 24px;
  }
  .hd-contact {
    gap: 12px;
  }
  .hd-tel .lbl {
    font-size: 10px;
  }
  .hd-tel .num {
    font-size: 19px;
  }
  .hd-contact .btn {
    font-size: 13px;
    padding: 12px 16px;
  }
  .nav {
    gap: 0;
  }
  .nav a {
    padding: 12px 14px;
    font-size: 14px;
    letter-spacing: 0.02em;
  }
}
@media (max-width: 768px) {
  .hd-r1 {
    padding: 11px var(--gut);
  }
  .hd-contact {
    display: none;
  }
  .hd-r2 {
    display: none;
  }
  .burger {
    display: flex;
  }
  .brand .bow {
    width: 30px;
  }
  .brand .name {
    height: 23px;
  }
  .drawer {
    display: block;
    position: fixed;
    inset: var(--headH) 0 0;
    background: rgba(16, 44, 92, 0.97);
    transform: translateX(100%);
    transition: transform 0.3s;
    z-index: 55;
    padding: 30px var(--gut);
  }
  .drawer.open {
    transform: none;
  }
  .drawer a {
    display: block;
    color: #fff;
    font-size: 19px;
    font-family: "Zen Old Mincho";
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .drawer .dtel {
    margin-top: 26px;
    color: #fff;
  }
  .drawer .dtel .num {
    font-family: "Zen Old Mincho";
    font-size: 30px;
    font-weight: 700;
  }
  .hd.open .burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hd.open .burger span:nth-child(2) {
    opacity: 0;
  }
  .hd.open .burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
/* ⑪ ロゴ社名を気持ち大きく */
.brand .name {
  height: 32px;
}

@media (max-width: 1024px) and (min-width: 769px) {
  .brand .name {
    height: 30px;
  }
}
@media (max-width: 768px) {
  .brand .name {
    height: 28px;
  }
}
/* ===== SECTION shell ===== */
.sec {
  padding: clamp(60px, 8vw, 104px) 0;
}

.sec-cream2 {
  background: var(--cream2);
}

.sec-head {
  margin-bottom: clamp(34px, 5vw, 52px);
}

.sec-head h2 {
  font-family: "Zen Old Mincho";
  font-weight: 700;
  color: var(--navy);
  font-size: var(--h2);
  line-height: 1.4;
  margin: 0;
  letter-spacing: 0.04em;
}

/* sec/relief/way 微調整：家紋を敷ける下地 */
.sec.has-kamon {
  position: relative;
  overflow: hidden;
}

.sec.has-kamon .kamon {
  right: -80px;
  top: -50px;
  width: min(360px, 40vw);
}

.sec.has-kamon .wrap {
  position: relative;
  z-index: 1;
}

/* ===== HERO（和モダン） ===== */
.hero-wa {
  position: relative;
  background: var(--cream);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-wa .kamon {
  right: -70px;
  top: 48%;
  transform: translateY(-50%);
  width: min(540px, 56vw);
}

.hero-wa-in {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(40px, 5vw, 70px) var(--gut) clamp(40px, 5vw, 72px);
}

.hero-wa-grid {
  display: grid;
  grid-template-columns: 0.92fr auto;
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  margin: clamp(20px, 3vw, 30px) 0 clamp(30px, 4vw, 44px);
}

.hero-photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: linear-gradient(160deg, #21518f, #163c7c);
  border: 7px solid #fff;
  outline: 1px solid var(--line);
  box-shadow: 0 26px 60px rgba(16, 44, 92, 0.2);
}

.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-photo .ph-tex {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 20px);
}

.hero-photo .phtag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.72);
  border: 1px dashed rgba(255, 255, 255, 0.4);
  padding: 5px 10px;
}

.hero-photo .cap {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: #fff;
  z-index: 1;
}

.hero-photo .cap .jp {
  font-family: "Zen Old Mincho";
  font-size: 19px;
}

.hero-photo .cap .sm {
  font-size: 11px;
  letter-spacing: 0.12em;
  opacity: 0.82;
  margin-top: 3px;
}

.vwrap {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: center;
  padding: 4px 0;
}

.vkei {
  width: 2px;
  align-self: stretch;
  min-height: clamp(220px, 40vh, 360px);
  background: linear-gradient(var(--amber), rgba(221, 133, 33, 0.05));
}

.vtitle {
  writing-mode: vertical-rl;
  font-family: "Zen Old Mincho";
  font-weight: 900;
  color: var(--navy);
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.62;
  letter-spacing: 0.14em;
  margin: 0;
  text-wrap: initial;
}

.vtitle .ln {
  display: block;
  white-space: nowrap;
}

.vtitle .ac {
  color: var(--amber);
}

.hero-wa-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 44px;
}

.hero-wa-foot .lead {
  font-size: 16.5px;
  line-height: 2.05;
  max-width: 32em;
  margin: 0;
  color: var(--sumi);
}

.hero-wa-foot .lead b {
  color: var(--navy);
  font-weight: 700;
}

.hero-wa-foot .cta {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

/* ===== intro 代表の言葉 ===== */
.intro {
  position: relative;
  background: var(--cream);
  overflow: hidden;
}

.intro .kamon {
  left: -90px;
  bottom: -70px;
  width: min(440px, 48vw);
}

.intro-in {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) var(--gut);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(26px, 4vw, 52px);
}

.intro .kei {
  width: 2px;
  background: linear-gradient(var(--amber), rgba(221, 133, 33, 0.06));
}

.intro h2 {
  font-family: "Zen Old Mincho";
  font-weight: 900;
  color: var(--navy);
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin: 0 0 22px;
}

.intro p {
  margin: 0 0 16px;
  line-height: 2.05;
  color: var(--sumi);
}

.intro p b {
  color: var(--navy);
  font-weight: 700;
}

.intro .sign {
  font-family: "Zen Old Mincho";
  color: var(--navy);
  font-weight: 700;
  margin-top: 12px;
  font-size: 15px;
}

/* ===== STRENGTH navy band ===== */
.sec-navy {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}

.sec-navy .kamon {
  top: -50px;
  right: -50px;
  left: auto;
  bottom: auto;
  transform: none;
  width: min(430px, 48vw);
  filter: brightness(0) invert(1);
  opacity: 0.045;
}

.sec-navy .sec-head h2 {
  color: #fff;
}

.sec-navy .eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.sec-navy .eyebrow .en {
  color: var(--amber);
}

.sec-navy .arw::before {
  background: var(--amber);
}

.sec-navy .arw::after {
  border-color: var(--amber);
}

.wa-cols {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.wa-col {
  padding: 6px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.wa-col:first-child {
  border-left: 0;
  padding-left: 0;
}

.wa-col .mk {
  display: inline-block;
  width: 22px;
  height: 7px;
  position: relative;
  margin-bottom: 16px;
}

.wa-col .mk::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1.5px;
  background: var(--amber);
  transform: translateY(-50%);
}

.wa-col .mk::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid var(--amber);
  border-right: 1.5px solid var(--amber);
  transform: translateY(-50%) rotate(45deg);
}

.wa-col h3 {
  font-family: "Zen Old Mincho";
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 12px;
  line-height: 1.55;
}

.wa-col p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
  margin: 0;
}

/* ===== SERVICE ===== */
.svc-lead {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.svc-lead p {
  max-width: 34em;
  color: var(--muted);
  font-size: 15px;
  margin: 14px 0 0;
}

.feat {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.feat .fimg {
  position: relative;
  background: linear-gradient(160deg, #21518f, #163c7c);
  min-height: 280px;
}

.feat .fimg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.feat .fimg .ph-tex {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 20px);
}

.feat .fimg .phtag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.72);
  border: 1px dashed rgba(255, 255, 255, 0.4);
  padding: 5px 10px;
  border-radius: 4px;
}

.feat .fbody {
  padding: clamp(28px, 4vw, 46px);
}

.tag-lead {
  display: inline-block;
  background: var(--amber);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 13px;
  border-radius: 5px;
  margin-bottom: 16px;
}

.feat h3 {
  font-family: "Zen Old Mincho";
  font-weight: 700;
  color: var(--navy);
  font-size: 28px;
  margin: 0 0 14px;
}

.feat .items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.feat .items li {
  position: relative;
  padding-left: 18px;
  font-size: 14.5px;
  color: var(--ink);
}

.feat .items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid var(--amber);
  border-right: 1.5px solid var(--amber);
  transform: rotate(45deg);
}

.feat .note {
  font-size: 14.5px;
  color: var(--muted);
  border-left: 3px solid var(--amber);
  padding-left: 14px;
  margin: 0 0 22px;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px 22px 24px;
  display: flex;
  flex-direction: column;
  transition: 0.2s;
}

.card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}

.card .ico {
  width: 36px;
  height: 36px;
  color: var(--navy);
  margin-bottom: 14px;
}

.card h4 {
  font-family: "Zen Old Mincho";
  font-weight: 700;
  color: var(--navy);
  font-size: 18px;
  margin: 0 0 9px;
}

.card ul {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 2;
}

.card .more {
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--amber-d);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.card:hover .more {
  gap: 11px;
}

/* ===== AREA ===== */
.area-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.area-tag {
  font-size: 13.5px;
  color: var(--navy);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
}

.area-lead {
  max-width: 36em;
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

/* ===== RELIEF band（アンバー） ===== */
.relief {
  position: relative;
  background: var(--amber);
  color: #fff;
  overflow: hidden;
}

.relief::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0 2px, transparent 2px 22px);
  background-size: 44px 44px;
}

.relief .wrap {
  position: relative;
  text-align: center;
  padding: clamp(48px, 6vw, 76px) var(--gut);
}

.relief h2 {
  font-family: "Zen Old Mincho";
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 34px);
  margin: 0 0 12px;
  letter-spacing: 0.04em;
  color: #fff;
}

.relief h2 em {
  color: var(--navy-dd);
  font-style: normal;
}

.relief p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15.5px;
  margin: 0 0 28px;
}

.relief .kamon {
  top: auto;
  bottom: -60px;
  left: -60px;
  right: auto;
  transform: none;
  width: min(380px, 46vw);
  filter: brightness(0) invert(1);
  opacity: 0.07;
}

.relief .btn-amber {
  background: #fff;
  color: var(--amber-d);
}

.relief .btn-amber:hover {
  background: var(--navy);
  color: #fff;
}

/* ===== WAYFINDING ===== */
.way-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.way {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px 26px;
  transition: 0.2s;
}

.way:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
}

.way .t .en {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--amber-d);
  font-weight: 700;
}

.way .t .jp {
  font-family: "Zen Old Mincho";
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 3px;
}

.way .go {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: 0.2s;
}

.way:hover .go {
  background: var(--amber);
  border-color: var(--amber);
  color: #fff;
}

/* ===== CONTACT teaser ===== */
.contact {
  background: var(--cream2);
}

.contact-in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.tel-blk .num {
  font-family: "Zen Old Mincho";
  font-weight: 900;
  font-size: clamp(34px, 4.6vw, 52px);
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.tel-blk .num::before {
  content: "☎ ";
  font-size: 0.6em;
  color: var(--amber);
}

.tel-blk .hrs {
  font-size: 14px;
  color: var(--muted);
  margin-top: 10px;
}

.tel-blk .hrs b {
  color: var(--ink);
}

.mail-blk {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(26px, 3vw, 38px);
}

.mail-blk h3 {
  font-family: "Zen Old Mincho";
  font-weight: 700;
  color: var(--navy);
  font-size: 21px;
  margin: 0 0 10px;
}

.mail-blk p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0 0 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wa-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 0;
  }
  .wa-col:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }
  .wa-col {
    padding-top: 22px;
    padding-bottom: 6px;
  }
  /* ヒーロー：タブレット以下は縦書き→横書きにして段落ち・はみ出しを回避 */
  .hero-wa-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-photo {
    aspect-ratio: 16/10;
    order: -1;
    width: 100%;
    max-width: 540px;
    margin-inline: auto;
  }
  .vwrap {
    justify-content: flex-start;
    padding: 0;
  }
  .vkei {
    display: none;
  }
  /* 横書き：各行nowrapで必ず2行。狭幅は文字を画面幅追従で縮めてはみ出し回避 */
  .vtitle {
    writing-mode: horizontal-tb;
    letter-spacing: 0.02em;
    font-size: clamp(20px, 6.2vw, 44px);
    line-height: 1.55;
  }
  .hero-wa-foot .lead {
    max-width: none;
  }
  /* タブレット・スマホは写真キャプションを右寄せ */
  .hero-photo .cap {
    left: auto;
    right: 18px;
    text-align: right;
  }
}
@media (max-width: 768px) {
  .hero-photo {
    aspect-ratio: 16/11;
    max-width: none;
  }
  .intro-in {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .intro .kei {
    display: none;
  }
  .svc-lead {
    display: block;
  }
  .wa-cols {
    grid-template-columns: 1fr;
  }
  .wa-col {
    border-left: 0;
    padding: 6px 0 18px;
  }
  .wa-col:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
  .wa-col h3 br {
    display: none;
  }
  .feat {
    grid-template-columns: 1fr;
  }
  .feat .fimg {
    min-height: 190px;
  }
  .feat h3 {
    font-size: 24px;
  }
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .way-grid {
    grid-template-columns: 1fr;
  }
  .contact-in {
    grid-template-columns: 1fr;
  }
}
/* ② キャッチコピー「くらし」「しごと」：明朝のまま、色をほんの少し明るい紺・大きめ・極太 */
.vtitle .kw {
  color: #3062b7;
  font-size: 1.2em;
  font-weight: 900;
}

/* ③ 強み4 大型カード＋画像 */
.wa-cols--big {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.wa-cols--big .wa-col {
  border-left: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.wa-cols--big .wa-fig {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(160deg, #21518f, #163C7C);
  overflow: hidden;
}

.wa-cols--big .wa-fig img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.wa-cols--big .wa-fig .ph-tex {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 20px);
}

.wa-cols--big .wa-fig .phtag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.72);
  border: 1px dashed rgba(255, 255, 255, 0.4);
  padding: 4px 9px;
}

.wa-cols--big .wa-no {
  position: absolute;
  right: 16px;
  bottom: 6px;
  font-family: "Zen Old Mincho";
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.wa-cols--big .wa-body {
  padding: 26px 28px 30px;
}

.wa-cols--big .wa-col .mk {
  margin-bottom: 14px;
}

.wa-cols--big h3 {
  font-size: 23px;
  margin: 0 0 12px;
  line-height: 1.5;
}

.wa-cols--big p {
  font-size: 14.5px;
  line-height: 1.95;
}

.wa-cols--big .wa-col:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 768px) {
  .wa-cols--big {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .wa-cols--big h3 {
    font-size: 21px;
  }
}
/* ① 背景固定パララックス帯 */
.parallax {
  position: relative;
  min-height: clamp(260px, 38vw, 420px);
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #21518f, #102C5C);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.parallax-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 44, 92, 0.6), rgba(16, 44, 92, 0.72));
  z-index: 0;
}

.parallax .wrap {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  width: 100%;
}

.parallax .pa-en {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--amber);
  font-weight: 700;
  margin: 0 0 14px;
}

.parallax h2 {
  font-family: "Zen Old Mincho";
  font-weight: 700;
  color: #fff;
  font-size: clamp(24px, 3.6vw, 38px);
  line-height: 1.65;
  letter-spacing: 0.04em;
  margin: 0;
  text-wrap: balance;
}

@media (max-width: 768px) {
  .parallax {
    background-attachment: scroll;
  }
}
/* ⑫ ヒーローのTELボタンを大きく（無料で相談するボタンと釣り合う／番号を強調） */
.hero-wa-foot .cta .btn {
  font-size: 16px;
  padding: 16px 28px;
}

.hero-wa-foot .cta .btn-ghost {
  font-size: 18px;
  letter-spacing: 0.01em;
  font-family: "Zen Old Mincho";
  font-weight: 700;
}

/* ===== 下層共通ヘッダー（phead） ===== */
.phead {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.phead::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(28, 74, 152, 0.05) 0 2px, transparent 2px 22px);
  background-size: 44px 44px;
  opacity: 0.4;
  pointer-events: none;
}

.phead .kamon {
  right: -50px;
  top: -46px;
  width: min(300px, 42vw);
}

.phead-in {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 74px) var(--gut);
}

.phead h1 {
  position: relative;
  font-family: "Zen Old Mincho";
  font-weight: 900;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.3;
  letter-spacing: 0.03em;
  margin: 0;
  padding-left: 22px;
}

.phead h1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.16em;
  bottom: 0.16em;
  width: 3px;
  background: var(--amber);
}

.phead p {
  color: var(--muted);
  margin: 16px 0 0;
  max-width: 34em;
  font-size: 15.5px;
  padding-left: 22px;
}

.bc {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 14px;
}

.bc a {
  color: var(--navy);
}

.bc .sep {
  margin: 0 9px;
  color: var(--line-strong);
}

/* ===== about プロフィール ===== */
.profile {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.profile .pfig {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: linear-gradient(160deg, #21518f, #163c7c);
  border: 7px solid #fff;
  outline: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(16, 44, 92, 0.18);
}

.profile .pfig img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.profile .pfig .ph-tex {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 20px);
}

.profile .pfig .phtag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.72);
  border: 1px dashed rgba(255, 255, 255, 0.4);
  padding: 5px 10px;
}

.profile .lead-q {
  font-family: "Zen Old Mincho";
  font-weight: 700;
  color: var(--amber-d);
  font-size: clamp(20px, 2.6vw, 27px);
  line-height: 1.6;
  margin: 0 0 22px;
}

.profile p {
  margin: 0 0 16px;
  color: var(--sumi);
}

.profile .sign {
  font-family: "Zen Old Mincho";
  color: var(--navy);
  font-weight: 700;
  margin-top: 10px;
  font-size: 15px;
}

/* ===== 事務所案内テーブル ===== */
.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}

.info-table th,
.info-table td {
  text-align: left;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  vertical-align: top;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: 0;
}

.info-table th {
  width: 32%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-family: "Zen Old Mincho";
  white-space: nowrap;
}

.map {
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16/7;
  background: var(--cream2);
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ===== single-service ===== */
.toc {
  background: var(--cream2);
  border: 1px solid var(--line);
  padding: 24px 28px;
  margin: 0 0 42px;
}

.toc .ttl {
  font-family: "Zen Old Mincho";
  font-size: 14px;
  color: var(--navy);
  margin: 0 0 12px;
  letter-spacing: 0.14em;
}

.toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: t;
}

.toc li {
  counter-increment: t;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
}

.toc li:last-child {
  border: 0;
}

.toc a {
  font-size: 14.5px;
  color: var(--sumi);
  cursor: pointer;
}

.toc a::before {
  content: counter(t, decimal-leading-zero);
  color: var(--amber-d);
  font-weight: 700;
  margin-right: 13px;
  font-family: "Zen Old Mincho";
}

.article {
  max-width: 760px;
  margin: 0 auto;
}

.article .lead {
  font-size: 17px;
  color: var(--sumi);
  line-height: 2;
  margin: 0 0 8px;
}

.article .lead b {
  color: var(--navy);
  font-weight: 700;
}

.article .hero-fig {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(160deg, #21518f, #163c7c);
}

.article .hero-fig img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.article .hero-fig .ph-tex {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 20px);
}

.article .hero-fig .phtag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.72);
  border: 1px dashed rgba(255, 255, 255, 0.4);
  padding: 5px 10px;
  border-radius: 4px;
}

.article h2 {
  font-family: "Zen Old Mincho";
  font-weight: 700;
  color: var(--navy);
  font-size: 25px;
  margin: 50px 0 18px;
  padding-left: 16px;
  border-left: 4px solid var(--amber);
  scroll-margin-top: 140px;
}

.article p {
  margin: 0 0 18px;
  line-height: 2;
}

.article b {
  color: var(--navy);
}

.ptable {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  overflow: hidden;
  margin: 6px 0 12px;
  font-size: 14.5px;
}

.ptable th,
.ptable td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.ptable thead th {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
}

.ptable td.amt {
  text-align: right;
  font-family: "Zen Old Mincho";
  color: var(--navy);
  font-weight: 700;
  white-space: nowrap;
}

.ptable tr:last-child td {
  border-bottom: 0;
}

.note-sm {
  font-size: 12.5px;
  color: var(--muted);
  margin: 0 0 20px;
}

.steps {
  list-style: none;
  counter-reset: s;
  margin: 6px 0 0;
  padding: 0;
}

.steps li {
  counter-increment: s;
  position: relative;
  padding: 0 0 26px 56px;
  border-left: 2px solid var(--line);
  margin-left: 18px;
}

.steps li:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

.steps li::before {
  content: counter(s);
  position: absolute;
  left: -18px;
  top: -5px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  font-family: "Zen Old Mincho";
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps h4 {
  font-family: "Zen Old Mincho";
  color: var(--navy);
  font-size: 17px;
  margin: 0 0 5px;
}

.steps p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.8;
}

.related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.rel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 18px;
  min-height: 88px;
  transition: 0.2s;
}

.rel:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}

.rel .en {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--amber-d);
  font-weight: 700;
}

.rel .jp {
  display: block;
  font-family: "Zen Old Mincho";
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.45;
  margin-top: 4px;
  text-wrap: balance;
}

/* ===== contact フォーム ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

.form {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: clamp(26px, 4vw, 42px);
}

.frow {
  margin-bottom: 20px;
}

.frow label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.req,
.any {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.35;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
  letter-spacing: 0.04em;
}

.req {
  background: #c0392b;
  color: #fff;
}

.any {
  background: rgba(28, 74, 152, 0.1);
  color: var(--navy);
}

.frow input,
.frow textarea,
.frow select {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  padding: 13px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--cream);
  color: var(--sumi);
}

.frow input:focus,
.frow textarea:focus,
.frow select:focus {
  outline: 2px solid var(--amber);
  outline-offset: 1px;
  border-color: var(--amber);
}

.frow textarea {
  min-height: 140px;
  resize: vertical;
}

.fcheck {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
}

.fcheck input {
  width: auto;
  margin-top: 3px;
}

.fsubmit {
  text-align: center;
  margin-top: 6px;
}

.policy-note {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 10px;
}

.policy-note a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
}

/* ===== Contact Form 7 整形（.wpcf7 をどのステップページでも整える） ===== */
.wpcf7 .frow {
  margin-bottom: 20px;
}

.wpcf7 .wpcf7-form-control-wrap {
  display: block;
}

.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 input[type=number],
.wpcf7 input[type=date],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  padding: 13px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--cream);
  color: var(--sumi);
}

.wpcf7 textarea {
  min-height: 140px;
  resize: vertical;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  outline: 2px solid var(--amber);
  outline-offset: 1px;
  border-color: var(--amber);
}

/* 同意チェック */
.wpcf7 .policy-row .wpcf7-list-item {
  margin: 0;
}

.wpcf7 .wpcf7-acceptance .wpcf7-list-item-label,
.wpcf7 .policy-row label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 400;
  cursor: pointer;
}

.wpcf7 .policy-row input[type=checkbox] {
  width: auto;
  margin-top: 3px;
}

/* 送信・確認・戻る ボタン */
.wpcf7 .wpcf7-submit,
.wpcf7 input[type=submit],
.wpcf7 .wpcf7c-confirm,
.wpcf7 .wpcf7c-back,
.wpcf7 button[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Zen Kaku Gothic New";
  font-weight: 700;
  font-size: 15px;
  padding: 15px 32px;
  border-radius: 6px;
  border: 0;
  cursor: pointer;
  transition: 0.18s;
  width: auto;
  min-width: 200px;
}

.wpcf7 .wpcf7-submit,
.wpcf7 input[type=submit],
.wpcf7 .wpcf7c-confirm {
  background: var(--amber);
  color: #fff;
}

.wpcf7 .wpcf7-submit:hover,
.wpcf7 input[type=submit]:hover,
.wpcf7 .wpcf7c-confirm:hover {
  background: var(--amber-d);
}

.wpcf7 .wpcf7c-back {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line-strong);
  margin-right: 12px;
}

.wpcf7 .wpcf7c-back:hover {
  border-color: var(--navy);
  background: rgba(28, 74, 152, 0.04);
}

/* 確認画面：確定値（readonly）を罫線破線＋紺字で */
.wpcf7 .wpcf7c-conf {
  background: #fff !important;
  border-style: dashed !important;
  color: var(--navy) !important;
  font-weight: 700;
  pointer-events: none;
}

/* バリデーション・送信結果 */
.wpcf7 .wpcf7-not-valid {
  border-color: #c0392b !important;
}

.wpcf7 .wpcf7-not-valid-tip {
  color: #c0392b;
  font-size: 12.5px;
  margin-top: 6px;
  display: block;
}

.wpcf7 .wpcf7-response-output {
  margin: 18px 0 0 !important;
  padding: 13px 16px !important;
  border-radius: 6px;
  font-size: 13.5px;
}

.wpcf7 .wpcf7-spinner {
  margin: 0 0 0 12px;
}

/* CF7が自動挿入する<p>/<br>の余白を詰める */
.wpcf7 form > p {
  margin: 0;
}

@media (max-width: 1024px) {
  .profile {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .related {
    grid-template-columns: 1fr;
  }
  .info-table th {
    width: 40%;
  }
  .phead h1,
  .phead p {
    padding-left: 16px;
  }
}
/* ⑩ 関連する取扱業務 3→4列 */
.related {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .related {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .related {
    grid-template-columns: 1fr;
  }
}
/* ===== FOOTER ===== */
.ft {
  position: relative;
  background: var(--navy-dd);
  color: rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.ft .crestwm {
  position: absolute;
  right: -30px;
  top: -26px;
  width: 230px;
  aspect-ratio: 1/1;
  display: block;
  background: url(img/kamon.png) center/contain no-repeat;
  filter: brightness(0) invert(1);
  opacity: 0.05;
  pointer-events: none;
}

.ft-in {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 72px) var(--gut) 30px;
}

.ft-brand .wm {
  font-family: "Zen Old Mincho";
  font-weight: 700;
  font-size: 25px;
  color: #fff;
  letter-spacing: 0.08em;
}

.ft-brand p {
  font-size: 13.5px;
  line-height: 1.95;
  margin: 16px 0 0;
}

.ft-col h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--amber);
  font-weight: 700;
  margin: 0 0 16px;
}

.ft-col a,
.ft-col span {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  padding: 5px 0;
  transition: 0.16s;
}

.ft-col a:hover {
  color: #fff;
  padding-left: 5px;
}

.ft-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  padding: 18px;
}

@media (max-width: 768px) {
  .ft-in {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
/* ⑥ SNS アイコン */
.ft-sns {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.ft-sns__i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.85);
  transition: 0.2s;
}

.ft-sns__i svg {
  width: 17px;
  height: 17px;
}

.ft-sns__i:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: #fff;
}

/* ⑦ 関連リンク バナー */
.ft-links {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 6px var(--gut) 30px;
}

.ft-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 18px 22px;
  min-height: 78px;
  transition: 0.2s;
}

.ft-link .en {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--amber);
  font-weight: 700;
}

.ft-link .jp {
  font-family: "Zen Old Mincho";
  font-size: 17px;
  color: #fff;
  font-weight: 700;
  margin-top: 3px;
}

.ft-link .go {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  transition: 0.2s;
}

.ft-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--amber);
}

.ft-link:hover .go {
  color: var(--amber);
  transform: translateY(-50%) translate(3px, -3px);
}

@media (max-width: 768px) {
  .ft-links {
    grid-template-columns: 1fr;
  }
}
/* ============================================================
   見出し・矢モチーフ モーション（案A 射る／案B 的中／案C 矢羽根スピン）
   発火は footer.php の JS（GSAP+ScrollTrigger、無ければCSS+IO）。
   prefers-reduced-motion / once は共通ルール。
   ============================================================ */
/* 案C：紺地（sec-navy）では矢羽根の紺半分が沈むので白に差し替え */
.sec-navy .arw {
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 26 26%22%3E%3Cpath d%3D%22M13 1 L1 13 L13 25 Z%22 fill%3D%22%23DD8521%22%2F%3E%3Cpath d%3D%22M13 1 L25 13 L13 25 Z%22 fill%3D%22%23FFFFFF%22%2F%3E%3C%2Fsvg%3E");
}

/* 案A 射る：セクションh2の下線矢印（JSで追加） */
.hd-shoot {
  position: relative;
}

.hd-shoot__arrow {
  display: block;
  width: clamp(150px, 60%, 214px);
  height: auto;
  margin-top: 12px;
}

/* 案B 的中：phead h1 の的＋矢（JSで先頭に追加） */
.phead h1.hd-hit {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 0;
}

.phead h1.hd-hit::before {
  display: none;
}

.hd-hit__mark {
  flex: none;
  width: 78px;
  height: 46px;
}

.hd-hit__arrow,
.hd-hit__ripple {
  transform-box: fill-box;
  transform-origin: center;
}

/* JS稼働時のみ初期状態を隠す（JS不達でも矢は最終状態で見える） */
.motion-ready .hd-shoot__arrow {
  transform: translateX(-46px);
  opacity: 0;
}

.motion-ready .hd-hit__arrow {
  transform: translateX(-44px);
  opacity: 0;
}

.motion-ready .hd-hit__ripple {
  opacity: 0;
}

/* CSSのみフォールバック（GSAP未使用時、.is-rv を付与） */
.is-rv .hd-shoot__arrow {
  animation: shoot 0.6s cubic-bezier(0.18, 0.9, 0.25, 1) forwards;
}

.is-rv .hd-hit__arrow {
  animation: hit 0.55s cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
}

.is-rv .hd-hit__ripple {
  animation: rip 0.6s 0.3s ease-out forwards;
}

@keyframes shoot {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes hit {
  70% {
    transform: translateX(5px);
    opacity: 1;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes rip {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }
  45% {
    opacity: 0.5;
  }
  to {
    transform: scale(3.4);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .motion-ready .hd-shoot__arrow,
  .motion-ready .hd-hit__arrow {
    transform: none;
    opacity: 1;
    animation: none;
  }
  .motion-ready .hd-hit__ripple {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */