/*
Theme Name: KOALA Marketing
Theme URI: https://biz.kinjolifeblog.com/
Description: きんじょの編集室 ビジネスLP用カスタムテーマ
Version: 1.0
Author: kinjo
Text Domain: koala-marketing
*/

:root {
  --blue:        #014eba;
  --blue-dark:   #0a3a8e;
  --blue-soft:   #e8f0ff;
  --blue-band:   #0e57c9;
  --green:       #22a752;
  --green-soft:  #e6f5ec;
  --green-band:  #2db35b;
  --orange:      #ee8327;
  --orange-soft: #fdeede;
  --yellow-band: #e9a23a;
  --ink:         #111111;
  --ink-2:       #333333;
  --ink-3:       #6a6a6a;
  --paper:       #fdfcf7;
  --line:        #e8e3d0;
  --max:         1140px;
  --pad:         clamp(20px, 4vw, 48px);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: "palt";
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }

.container { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); position: relative; }

/* ───────────── Header ───────────── */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253,252,247,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
}
.header.scrolled { border-color: var(--line); }
.header-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 12px var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 900; letter-spacing: .04em; font-size: 16px;
  text-decoration: none;
}
.logo-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
}
.logo-mark img { width: 100%; }
.header-cta { display: flex; gap: 10px; }

.btn {
  --bg: var(--blue);
  --fg: #fff;
  appearance: none; border: 0; cursor: pointer;
  background: var(--bg); color: var(--fg);
  font-family: inherit; font-weight: 700; font-size: 13.5px;
  padding: 11px 18px; border-radius: 8px;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  white-space: nowrap;
}
.btn--green { --bg: var(--green); }
.btn--lg { padding: 17px 26px; font-size: 16px; border-radius: 10px; }
.btn .ic { width: 18px; height: 18px; flex: 0 0 18px; }

/* ───────────── Hero ───────────── */
.hero { position: relative; padding: 40px 0 88px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.1fr;
  gap: 36px;
  align-items: center;
}
.hero h1 {
  font-weight: 900;
  font-size: clamp(34px, 5.4vw, 72px);
  line-height: 1.18;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.hero h1 .l1 { font-size: 0.6em; display: block; font-weight: 700; margin-bottom: 8px; }
.hero h1 .l2 { display: block; }
.hero h1 .dot { color: var(--blue); }
.hero p.sub {
  font-size: 15.5px; color: var(--ink-2);
  margin: 0; max-width: 28em;
  line-height: 1.9;
}
.hero-photo {
  position: relative;
}
.hero-photo img {
  width: 100%; height: auto;
}

/* hero decorations */
.deco { position: absolute; pointer-events: none; user-select: none; }
.deco img { width: 100%; height: 100%; }

.hero .d-swirl-l { left: 6%; bottom: -8px; width: 130px; opacity: .85; }
.hero .d-green-tr { position: absolute; right: 2%; top: -10px; width: 110px; opacity: .95; --rot: 8deg; transform: rotate(var(--rot));
  filter: brightness(0) saturate(100%) invert(48%) sepia(82%) saturate(388%) hue-rotate(85deg) brightness(92%) contrast(86%);
}

/* ───────────── Sections ───────────── */
section { position: relative; padding: 92px 0; }

/* Hand-drawn underline for section titles */
.h-title {
  font-weight: 900;
  font-size: clamp(26px, 3vw, 34px);
  margin: 0 0 56px;
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
  letter-spacing: 0.02em;
}
.h-title::after {
  content: "";
  position: absolute; left: 4%; right: 4%; bottom: 0;
  height: 14px;
  background: url('assets/lines/blue_wave_line.svg') center/100% 100% no-repeat;
}
.h-title--center { display: block; text-align: center; }
.h-title--center::after { left: 22%; right: 22%; }
.h-title--white { color: #fff; }
.section-head { text-align: center; margin-bottom: 64px; }

/* speech-bubble-style label (used for お悩み / 自己紹介 / よくある質問) */
.bubble-label {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: #fff;
  padding: 12px 28px;
  border-radius: 14px;
  font-weight: 700; font-size: 17px;
  position: relative;
  box-shadow: 0 6px 0 -2px rgba(0,0,0,.06);
}
.bubble-label::after {
  content: "";
  position: absolute; left: 38px; bottom: -8px;
  width: 16px; height: 16px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.bubble-label--outline {
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: none;
  padding: 10px 24px;
}
.bubble-label--outline::after {
  background: #fff;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  clip-path: none;
  transform: rotate(45deg);
  width: 12px; height: 12px;
  bottom: -8px;
  left: 32px;
}
.bubble-label img { width: 22px; height: 22px; }

/* ───────────── お悩み section (no card) ───────────── */
.onayami { padding: 76px 0 64px; }
.onayami-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.onayami-list {
  list-style: none; padding: 0; margin: 26px 0 0;
  display: grid; gap: 16px;
}
.onayami-list li {
  display: grid; grid-template-columns: 28px 1fr; gap: 14px;
  align-items: start;
  font-size: 16px; font-weight: 500;
  line-height: 1.7;
}
.onayami-list li .check {
  width: 24px; height: 24px; margin-top: 4px;
  background: url('assets/ui/checkmark_circle_blue.svg') center/contain no-repeat;
}

/* ───────────── Reasons ───────────── */
.reasons { padding: 56px 0 96px; position: relative; }
.reasons-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.reason-card {
  background: #fff;
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  padding: 32px 24px 28px;
  text-align: center;
}
.reason-icon {
  width: 76px; height: 76px; margin: 0 auto 16px;
  display: grid; place-items: center;
}
.reason-icon img { width: 100%; height: auto; }
.reason-card h3 {
  font-weight: 900; font-size: 17px; line-height: 1.55;
  margin: 0 0 14px;
}
.reason-card p {
  color: var(--ink-2); font-size: 13px; line-height: 1.95;
  margin: 0; text-align: left;
}

/* decorative around reasons title — single element, away from text */
.reasons .d-2 { right: 8%; top: 18px; width: 80px; opacity: .55; }

/* ── inter-section decorations (placed in whitespace gaps) ── */
.gap-deco { position: absolute; pointer-events: none; user-select: none; z-index: 0; }
.gap-deco img { width: 100%; height: 100%; }

.onayami .gd-top-r  { right: 4%; top: 18px;  width: 120px; opacity: .7; }
.onayami .gd-bot-l  { left: 3%;  bottom: -36px; width: 56px; opacity: .55; transform: rotate(8deg); }

.services .gd-top-r { right: 6%; top: -6px;  width: 95px;  opacity: .55; }

.flow .gd-top-r     { right: 4%; top: 14px;  width: 80px;  opacity: .6; }
.flow .gd-bot-l     { left: 5%;  bottom: 18px; width: 90px; opacity: .55; }

.notfor .gd-top-l   { left: 2%; top: -18px; width: 56px; opacity: .55; }
.notfor .gd-bot-r   { right: 5%; bottom: 12px; width: 85px; opacity: .55; }

.about .gd-top-r    { right: 14%; top: 0;    width: 70px;  opacity: .6; transform: rotate(-8deg); }

.reasons .gd-bot-r  { right: 2%; bottom: -72px; width: 90px; opacity: .95; transform: rotate(6deg); z-index: 1; }
.flow .gd-top-l     { left: 3%; top: -10px;  width: 80px; opacity: .9; transform: rotate(-8deg); }
.notfor .gd-bot-l   { left: 4%; bottom: -30px; width: 90px; opacity: .9; transform: rotate(8deg); }

.faq .gd-bot-l      { left: 6%;   bottom: 24px; width: 90px; opacity: .55; }

/* ───────────── Services ───────────── */
.services { padding: 56px 0 96px; }
.services-top {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 36px; align-items: start;
  margin-top: 32px; margin-bottom: 56px;
}
.free-row {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.pill {
  display: inline-flex; align-items: center;
  background: var(--blue); color: #fff;
  font-weight: 700; font-size: 14px;
  padding: 6px 14px; border-radius: 6px;
  letter-spacing: .04em;
}
.free-title {
  font-weight: 900; font-size: 19px;
}
.services-top p {
  color: var(--ink-2); font-size: 14.5px; line-height: 1.95; margin: 8px 0 0;
  max-width: 30em;
}
.map-frame {
  border-radius: 8px; overflow: hidden;
  border: 1.5px solid var(--ink);
  background: #fdfcf7;
}
.map-frame img { width: 100%; }

.services .d-curve { position: absolute; left: clamp(160px, 20vw, 220px); top: -4px; width: 56px; opacity: .9; }

.plans-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.plan {
  background: #fff;
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.plan-head {
  background: var(--blue-band); color: #fff;
  padding: 16px 16px 14px;
  display: grid; grid-template-columns: 30px 1fr; align-items: center; gap: 10px;
}
.plan--blue .plan-head { background: var(--blue-band); }
.plan--green .plan-head { background: var(--green-band); }
.plan--yellow .plan-head { background: var(--yellow-band); }
.plan-head img { width: 26px; height: 26px; filter: brightness(0) invert(1); }
.plan-head h3 {
  margin: 0; font-weight: 900; font-size: 16px; line-height: 1.3;
}
.plan-price {
  padding: 14px 18px 6px;
  font-weight: 700; font-size: 17px; color: var(--ink);
  margin: 0;
}
.plan-price small { font-weight: 500; font-size: 13px; color: var(--ink-3); margin-left: 2px; }
.plan ul {
  list-style: none; padding: 6px 18px 18px; margin: 0;
  display: grid; gap: 6px;
  flex: 1;
}
.plan li {
  font-size: 13px; color: var(--ink-2);
  display: flex; gap: 8px; align-items: baseline;
  line-height: 1.7;
}
.plan li::before {
  content: "▸"; color: var(--blue); font-weight: 700; flex: 0 0 10px;
  font-size: 11px; line-height: 1.7;
}
.plan--green li::before { color: var(--green); }
.plan--yellow li::before { color: var(--orange); }
.plan-illu {
  border-top: 1.5px solid var(--ink);
  aspect-ratio: 4/2.3;
  overflow: hidden;
  background: #fafaf3;
}
.plan-illu img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
}

/* ───────────── Flow ───────────── */
.flow { padding: 56px 0 96px; }
.flow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: stretch;
  position: relative;
}
.step {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 8px 4px 4px;
  text-align: center;
  position: relative;
  display: flex; flex-direction: column;
}
.step-num { width: 56px; height: 56px; margin: 0 auto 10px; }
.step h4 {
  font-weight: 900; font-size: 14.5px; margin: 2px 0 10px;
  line-height: 1.5;
}
.step p {
  font-size: 12px; color: var(--ink-2); line-height: 1.85;
  margin: 0; text-align: left;
  flex: 1;
}
.step-icon {
  margin: 14px 0 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 36px;
  opacity: .9;
}
.step-icon img { height: 32px; width: auto; max-width: 50px; }
.step-icon img[src*="chat_bubbles"] { transform: scale(1.18); transform-origin: center; }
.step-icon img[src*="icon_pencil"]  { transform: scale(0.88); transform-origin: center; }
.step-icon img[src*="icon_flag"]    { transform: scale(0.88); transform-origin: center; }
.step::after {
  content: ""; position: absolute;
  right: -12px; top: 28px;
  width: 14px; height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999999' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M9 6 l6 6 -6 6'/></svg>") center/contain no-repeat;
  z-index: 2;
}
.step:last-child::after { display: none; }

/* ───────────── Not for (no white cards) ───────────── */
.notfor { padding: 56px 0 96px; position: relative; }
.notfor-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 8px;
}
.notfor-card {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 16px;
  background: transparent;
  border: 0;
  padding: 0;
}
.notfor-card h4 {
  font-weight: 900; font-size: 16px; line-height: 1.55;
  margin: 0;
}
.notfor-photo {
  width: 100%;
  display: grid; place-items: center;
}
.notfor-photo img { width: 100%; max-width: 280px; height: auto; }
.notfor-card p { font-size: 13px; color: var(--ink-2); margin: 0; line-height: 1.95; }

.notfor-card.arrange-A { grid-template-areas: "title" "text" "photo"; }
.notfor-card.arrange-A h4 { grid-area: title; }
.notfor-card.arrange-A p { grid-area: text; }
.notfor-card.arrange-A .notfor-photo { grid-area: photo; justify-self: end; }

.notfor-card.arrange-B { grid-template-areas: "title" "photo" "text"; }
.notfor-card.arrange-B h4 { grid-area: title; }
.notfor-card.arrange-B p { grid-area: text; }
.notfor-card.arrange-B .notfor-photo { grid-area: photo; }

.notfor-card.arrange-C { grid-template-areas: "title" "photo" "text"; }
.notfor-card.arrange-C h4 { grid-area: title; }
.notfor-card.arrange-C p { grid-area: text; }
.notfor-card.arrange-C .notfor-photo { grid-area: photo; justify-self: end; }

/* ───────────── About + FAQ ───────────── */
.about-faq { padding: 32px 0 96px; }
.about { padding-bottom: 80px; position: relative; }
.about-body {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--ink-2); font-size: 14.5px; line-height: 2.1;
}
.about-body .about-name {
  text-align: center;
  font-weight: 900;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 18px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.about .deco-l { position: absolute; left: 4%; top: -10px; width: 76px; opacity: .75; }
.about .deco-r { position: absolute; right: 6%; top: 30px; width: 60px; opacity: .7; }

.faq { padding-top: 0; }
.faq-wrap { max-width: 760px; margin: 28px auto 0; }
.qa {
  border-bottom: 1px solid var(--line);
  background: transparent;
}
.qa:first-child { border-top: 1px solid var(--line); }
.qa summary {
  list-style: none; cursor: pointer;
  padding: 18px 4px;
  display: grid; grid-template-columns: 22px 1fr 22px; gap: 12px;
  align-items: center;
  font-weight: 500;
  font-size: 14.5px;
}
.qa summary::-webkit-details-marker { display: none; }
.qa .q-mark { color: var(--blue); font-weight: 900; font-size: 16px; }
.qa .q-toggle { width: 22px; height: 22px; display: grid; place-items: center; color: var(--ink-3); }
.qa[open] .q-toggle { transform: rotate(180deg); color: var(--blue); }
.qa-body {
  padding: 0 4px 18px 38px;
  color: var(--ink-2); font-size: 13.5px; line-height: 2;
}

.faq .deco-koala { position: absolute; right: 4%; top: -28px; width: 64px; opacity: .8; transform: rotate(8deg); }

/* ───────────── News (LP内お知らせ一覧) ───────────── */
.news-list-section { padding: 56px 0 96px; }
.news-items { max-width: 760px; margin: 28px auto 0; list-style: none; padding: 0; }
.news-items li {
  display: grid; grid-template-columns: 110px 1fr;
  gap: 18px; padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.news-items li:first-child { border-top: 1px solid var(--line); }
.news-items time { color: var(--ink-3); font-size: 13.5px; font-weight: 500; }
.news-items a { text-decoration: none; font-size: 14.5px; font-weight: 500; }
.news-items a:hover { color: var(--blue); }
.news-empty { text-align: center; color: var(--ink-3); padding: 24px 0; }
.news-more { text-align: center; margin-top: 28px; }

/* ───────────── Final CTA ───────────── */
.final {
  position: relative;
  margin-top: 0;
  padding: 84px 0 76px;
  background: var(--blue);
  color: #fff;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute; left: 0; right: 0; top: -1px; height: 60px;
  background: var(--paper);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'><path d='M0 50 C 200 0 360 110 600 55 S 1000 0 1200 50 L1200 0 L0 0 Z' fill='black'/></svg>") top/100% 100% no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'><path d='M0 50 C 200 0 360 110 600 55 S 1000 0 1200 50 L1200 0 L0 0 Z' fill='black'/></svg>") top/100% 100% no-repeat;
}
.final-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 32px; align-items: center;
}
.final h2 {
  font-weight: 900; font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 16px;
}
.final p { margin: 0; opacity: .95; font-size: 14px; line-height: 1.9; }
.final-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
.final .btn { background: #fff; color: var(--blue); }
.final .btn--green { background: var(--green); color: #fff; }
.final-koala {
  position: absolute; right: 8%; top: 20px; width: 90px;
  pointer-events: none;
  z-index: 2;
}
.final .d-swirl { position: absolute; right: 3%; bottom: 14px; width: 80px; opacity: .35; }

/* ───────────── Single / Archive (お知らせ・ブログ) ───────────── */
.page-body { padding: 56px 0 96px; }
.page-body .container { max-width: 820px; }
.page-body h1.entry-title {
  font-weight: 900; font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 12px; line-height: 1.45;
}
.entry-meta { color: var(--ink-3); font-size: 13.5px; margin-bottom: 28px; }
.entry-content { font-size: 15px; line-height: 2; color: var(--ink-2); }
.entry-content h2 { font-size: 22px; margin: 40px 0 14px; font-weight: 900; color: var(--ink); }
.entry-content h3 { font-size: 18px; margin: 28px 0 10px; font-weight: 900; color: var(--ink); }
.entry-content a { color: var(--blue); text-decoration: underline; }
.entry-content img { border-radius: 8px; margin: 16px 0; }
.entry-content ul, .entry-content ol { padding-left: 1.4em; }
.entry-content blockquote {
  border-left: 4px solid var(--blue); background: var(--blue-soft);
  padding: 12px 18px; margin: 18px 0; border-radius: 4px;
}
.archive-title { font-weight: 900; font-size: 28px; margin: 0 0 32px; text-align: center; }
.archive-list { list-style: none; padding: 0; margin: 0 0 36px; }
.archive-list li {
  display: grid; grid-template-columns: 110px 1fr;
  gap: 18px; padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.archive-list li:first-child { border-top: 1px solid var(--line); }
.archive-list time { color: var(--ink-3); font-size: 13.5px; }
.archive-list a { text-decoration: none; font-size: 15px; font-weight: 500; }
.archive-list a:hover { color: var(--blue); }
.pagination { text-align: center; margin: 28px 0; }
.pagination .page-numbers {
  display: inline-block; padding: 8px 12px; margin: 0 2px;
  border: 1px solid var(--line); border-radius: 6px;
  color: var(--ink-2); text-decoration: none; font-size: 13px;
}
.pagination .page-numbers.current { background: var(--blue); color: #fff; border-color: var(--blue); }

.back-link { display: inline-block; margin-top: 28px; color: var(--blue); text-decoration: none; font-size: 13.5px; }
.back-link::before { content: "← "; }

/* ───────────── お問い合わせページ ───────────── */
.contact-page .container { max-width: 640px; }
.contact-lead { text-align: center; color: var(--ink-2); margin: 0 0 32px; line-height: 1.95; font-size: 14.5px; }
.contact-form { margin-top: 16px; }
.contact-form .wpcf7-form-control-wrap { display: block; margin-top: 6px; }
.contact-form label {
  display: block; margin: 18px 0 0;
  font-weight: 700; font-size: 14px; color: var(--ink);
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="url"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  background: #fff;
  color: var(--ink);
  line-height: 1.6;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(1,78,186,.12);
}
.contact-form textarea { min-height: 160px; resize: vertical; }
.contact-form .wpcf7-list-item { margin: 4px 12px 4px 0; }
.contact-form .wpcf7-submit {
  appearance: none; border: 0; cursor: pointer;
  background: var(--blue); color: #fff;
  padding: 16px 36px;
  border-radius: 10px;
  font-weight: 700; font-size: 16px;
  font-family: inherit;
  margin-top: 24px;
  transition: transform .18s ease, filter .2s ease;
}
.contact-form .wpcf7-submit:hover { transform: translateY(-1.5px); filter: saturate(1.05); }
.contact-form .wpcf7-not-valid-tip {
  color: #d6334a; font-size: 12.5px; margin-top: 4px;
}
.contact-form .wpcf7-response-output {
  margin: 18px 0 0;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-size: 14px;
}
.contact-form .wpcf7 form.sent .wpcf7-response-output { border-color: var(--green); background: var(--green-soft); }
.contact-form .wpcf7 form.invalid .wpcf7-response-output,
.contact-form .wpcf7 form.failed .wpcf7-response-output { border-color: #d6334a; background: #fde8eb; }
.contact-line { text-align: center; margin: 32px 0 0; font-size: 14px; color: var(--ink-2); }
.contact-line a { color: var(--green); font-weight: 700; }
.required-mark { color: #d6334a; margin-left: 4px; font-size: 12px; }

/* ───────────── Subtle animations ───────────── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--d, 0ms);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-y, .float-y-slow, .drift, .sway { animation: none !important; }
}

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes float-y-slow {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) rotate(var(--rot, 0deg)); }
  50%      { transform: translate(4px, -4px) rotate(calc(var(--rot, 0deg) + 3deg)); }
}
@keyframes sway {
  0%, 100% { transform: rotate(var(--rot, 0deg)); }
  50%      { transform: rotate(calc(var(--rot, 0deg) + 4deg)); }
}

.float-y      { animation: float-y 5.5s ease-in-out infinite; }
.float-y-slow { animation: float-y-slow 7s ease-in-out infinite; }
.drift        { animation: drift 6.5s ease-in-out infinite; }
.sway         { transform-origin: top center; animation: sway 4.5s ease-in-out infinite; }

.reason-card, .plan, .map-frame, .qa {
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .25s ease;
}
.reason-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px -22px rgba(20,20,20,.22); }
.plan:hover         { transform: translateY(-3px); box-shadow: 0 14px 28px -22px rgba(20,20,20,.22); }
.map-frame:hover    { transform: translateY(-2px); box-shadow: 0 14px 28px -22px rgba(20,20,20,.18); }
.qa:hover           { border-color: rgba(15,76,181,.35); }

.btn { transition: transform .18s ease, box-shadow .25s ease, filter .2s ease; }
.btn:hover  { transform: translateY(-1.5px); filter: saturate(1.05); }
.btn:active { transform: translateY(1px); }

.logo .logo-mark { transition: transform .55s cubic-bezier(.2,.9,.2,1.2); }
.logo:hover .logo-mark { transform: rotate(-10deg) scale(1.05); }

.reason-icon { transition: transform .5s cubic-bezier(.2,.9,.2,1.2); }
.reason-card:hover .reason-icon { transform: translateY(-2px) rotate(-4deg); }

[data-parallax] { will-change: transform; }

/* ───────────── Responsive ───────────── */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .reasons-grid { grid-template-columns: 1fr; }
  .services-top { grid-template-columns: 1fr; gap: 28px; }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-grid { grid-template-columns: 1fr; gap: 36px; }
  .step {
    padding: 0;
    align-items: center;
  }
  .step h4 { margin: 6px 0 0; }
  .step-icon {
    margin: 18px 0 18px;
    min-height: 40px;
  }
  .step-icon img { height: 38px; max-width: 56px; }
  .step p { flex: 0 0 auto; text-align: center !important; max-width: 28em; }
  .step::after {
    right: 50%; top: auto; bottom: -26px; transform: translateX(50%) rotate(90deg);
  }
  .notfor-grid { grid-template-columns: 1fr; gap: 44px; }
  .final-grid { grid-template-columns: 1fr; text-align: center; }
  .final-cta { justify-content: center; }
  .header-cta .btn { padding: 9px 12px; font-size: 12px; }
  .header-cta .btn .ic { width: 16px; height: 16px; }
}
@media (max-width: 600px) {
  section { padding: 64px 0; }
  .plans-grid { grid-template-columns: 1fr; }
  .h-title--center::after { left: 8%; right: 8%; }
  .news-items li, .archive-list li { grid-template-columns: 1fr; gap: 4px; }

  /* ヘッダーCTAをアイコンのみに */
  .header-inner { gap: 8px; }
  .logo { font-size: 14px; }
  .logo-mark { width: 32px; height: 32px; }
  .header-cta { gap: 6px; }
  .header-cta .btn {
    padding: 9px 10px;
    gap: 0;
  }
  .header-cta .btn .btn-label { display: none; }
  .header-cta .btn .ic { width: 18px; height: 18px; flex: 0 0 18px; }
}
