@charset "UTF-8";
/* ==========================================================
   MEO Powered by RSS — style.css
   オリジナルデザイン（ブルー×白 / 信頼感・クリーン）
   モバイルファースト、ブレークポイント 768px / 1024px
   ========================================================== */

/* ----- Variables ----- */
:root {
  --navy: #0D2B57;
  --navy-2: #123A75;
  --blue: #1E63D0;
  --blue-d: #164FA8;
  --sky: #4A8CFF;
  --bg-blue: #F2F7FF;
  --bg-blue-2: #E7F0FE;
  --line: #D9E4F5;
  --text: #22303F;
  --muted: #5D6B7C;
  --amber: #F59E1B;
  --amber-d: #DB8A0E;
  --white: #fff;
  --danger: #DC4B45;
  --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-en: "Montserrat", sans-serif;
  --radius: 14px;
  --shadow: 0 8px 30px rgba(18, 58, 117, .10);
  --header-h: 64px;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 8px); }
body {
  font-family: var(--font-jp);
  color: var(--text);
  background: var(--white);
  font-size: 15px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
em { font-style: normal; }
fieldset { border: none; }

.container { width: calc(100% - 40px); max-width: 1080px; margin-inline: auto; }
.section { padding: 72px 0; }
.sp { display: inline; }

/* ----- 見出し ----- */
.sec-head { text-align: center; margin-bottom: 48px; }
.sec-head__label {
  display: inline-block;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--bg-blue-2);
  border-radius: 999px;
  padding: 4px 18px;
}
.sec-head__label--left { margin-bottom: 12px; }
.sec-head__title {
  margin-top: 14px;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.5;
  color: var(--navy);
}
.sec-head__lead { margin-top: 16px; color: var(--muted); font-size: 14px; }
.sec-head--white .sec-head__title { color: var(--white); }
.sec-head--white .sec-head__lead { color: rgba(255, 255, 255, .8); }
.sec-head--white .sec-head__label { background: rgba(255, 255, 255, .14); color: #BFD6FF; }

/* 蛍光マーカー風ハイライト */
.hl {
  background: linear-gradient(transparent 62%, rgba(74, 140, 255, .28) 62%);
  padding: 0 .1em;
}

/* ----- ボタン ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  padding: 12px 28px;
  border: none;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, opacity .25s;
}
.btn--cta {
  background: linear-gradient(135deg, #FFB53E, var(--amber) 55%, var(--amber-d));
  color: var(--white);
  box-shadow: 0 6px 18px rgba(245, 158, 27, .38);
}
.btn--cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(245, 158, 27, .45); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .7);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .12); }
.btn--lg { padding: 16px 40px; font-size: 16px; }

/* ==========================================================
   Header
   ========================================================== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: rgba(255, 255, 255, .92);
  z-index: 100;
  transition: box-shadow .3s;
}
.header.is-scrolled { box-shadow: 0 2px 16px rgba(18, 58, 117, .12); }
.header__inner {
  height: 100%;
  width: calc(100% - 32px);
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo { display: inline-flex; align-items: center; gap: 8px; }
.logo__pin { color: var(--blue); display: inline-flex; }
.logo__text {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
  line-height: 1;
}
.logo__text small { font-size: 10px; font-weight: 700; color: var(--muted); margin-left: 4px; }
.gnav { display: none; gap: 4px; }
.gnav a {
  font-size: 14px;
  font-weight: 400;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color .25s, background .25s;
}
.gnav a:hover { color: var(--blue); background: var(--bg-blue); }
.header__cta { padding: 10px 22px; font-size: 14px; }

/* ==========================================================
   Hero
   ========================================================== */
.hero {
  padding-top: var(--header-h);
  background:
    radial-gradient(circle at 82% 20%, rgba(74, 140, 255, .35), transparent 42%),
    radial-gradient(circle at 12% 85%, rgba(30, 99, 208, .45), transparent 45%),
    linear-gradient(150deg, var(--navy) 0%, var(--navy-2) 55%, var(--blue-d) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
/* ドットマップ風パターン */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .14) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
  mask-image: linear-gradient(120deg, transparent 35%, #000 75%);
  -webkit-mask-image: linear-gradient(120deg, transparent 35%, #000 75%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  width: calc(100% - 40px);
  max-width: 1080px;
  margin-inline: auto;
  padding: 56px 0 72px;
  display: grid;
  gap: 40px;
}
.hero__tag {
  display: inline-block;
  width: fit-content;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #CFE1FF;
  border: 1px solid rgba(207, 225, 255, .45);
  border-radius: 999px;
  padding: 4px 16px;
  margin-bottom: 18px;
}
.hero__title { font-size: 36px; font-weight: 900; line-height: 1.35; }
.hero__num {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 2.1em;
  line-height: 1;
  background: linear-gradient(120deg, #FFD46A, #FFAB2E);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 0 .04em;
}
.hero__num span { font-size: .5em; }
.hero__lead { margin-top: 14px; font-size: 15px; color: #D9E6FB; }
.hero__points { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.hero__points li {
  font-size: 13px;
  font-weight: 700;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  padding: 6px 16px;
}
.hero__actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px; }

/* ヒーロー右：Googleビジネスプロフィール成果ダッシュボード風カード */
.hero__visual { display: flex; justify-content: center; perspective: 1200px; }
.gbp-wrap {
  position: relative;
  width: min(410px, 100%);
  transform: rotateY(-5deg) rotateX(2deg);
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: rotateY(-5deg) rotateX(2deg) translateY(0); }
  50% { transform: rotateY(-5deg) rotateX(2deg) translateY(-10px); }
}
.gbp-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  color: var(--text);
  box-shadow:
    0 40px 80px rgba(4, 16, 38, .55),
    0 0 0 1px rgba(255, 255, 255, .1);
}
/* ブラウザ風ヘッダー */
.gbp-card__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}
.gbp-card__chrome p { margin-left: 8px; font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: .02em; }
.gbp-dot { width: 10px; height: 10px; border-radius: 50%; }
.gbp-dot--r { background: #FF5F57; }
.gbp-dot--y { background: #FEBC2E; }
.gbp-dot--g { background: #28C840; }
.gbp-card__body { padding: 16px 18px 18px; display: grid; gap: 12px; }
/* 店舗名の行 */
.gbp-card__biz { display: flex; align-items: center; gap: 10px; }
.gbp-card__glogo { display: flex; flex-shrink: 0; }
.gbp-card__name { flex: 1; font-size: 15px; font-weight: 900; color: var(--navy); }
.gbp-card__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue-d);
  background: var(--bg-blue);
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
}
.gbp-card__status i { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
/* 評価・順位のハイライト */
.gbp-card__hl { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.gbp-tile { background: #F5F8FD; border-radius: 12px; padding: 12px 14px; }
.gbp-tile__score {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
}
.gbp-stars { font-size: 12px; letter-spacing: 1px; color: #F5A623; }
.gbp-tile__label { margin-top: 6px; font-size: 10.5px; color: var(--muted); }
.gbp-tile--rank { background: linear-gradient(135deg, var(--blue), var(--navy)); }
.gbp-tile--rank .gbp-tile__rank { font-family: var(--font-en); font-size: 26px; font-weight: 800; line-height: 1.1; color: var(--white); }
.gbp-tile--rank .gbp-tile__rank span { font-family: var(--font-ja, inherit); font-size: 14px; margin-left: 1px; }
.gbp-tile--rank .gbp-tile__label { color: #CFE1FF; }
/* 3つの指標 */
.gbp-card__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.gbp-stat { background: #F5F8FD; border-radius: 12px; padding: 10px 12px; }
.gbp-stat__num { font-family: var(--font-en); font-size: 18px; font-weight: 800; color: var(--navy); line-height: 1.2; }
.gbp-stat__label { margin-top: 2px; font-size: 10px; color: var(--muted); }
.gbp-stat__delta { margin-top: 4px; font-size: 11px; font-weight: 700; color: var(--blue); }
/* 右肩上がりの棒グラフ */
.gbp-card__chart { display: flex; align-items: flex-end; gap: 8px; height: 72px; margin-top: 2px; }
.gbp-card__chart span {
  flex: 1;
  height: var(--h);
  border-radius: 6px 6px 2px 2px;
  background: var(--c);
}
/* カード右上に浮かぶMEOピンバッジ */
.gbp-pin {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(160deg, #FFD46A, #F59E1B);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(245, 158, 27, .5);
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* ==========================================================
   Campaign
   ========================================================== */
.campaign { background: var(--bg-blue); padding: 64px 0; }
.campaign__card {
  position: relative;
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  padding: 44px 20px 30px;
  max-width: 860px;
  margin-inline: auto;
}
.campaign__ribbon {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: linear-gradient(135deg, var(--blue), var(--blue-d));
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  border-radius: 999px;
  padding: 7px 26px;
  box-shadow: 0 4px 12px rgba(30, 99, 208, .35);
}
.campaign__cond { font-size: 15px; font-weight: 700; line-height: 1.8; }
.campaign__cond em {
  color: var(--danger);
  font-size: 1.5em;
  font-weight: 900;
  padding-left: .1em;
}
.campaign__target {
  display: inline-block;
  margin-top: 14px;
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
  background: var(--bg-blue);
  border-radius: 10px;
  padding: 10px 26px;
}
.campaign__target strong {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 1.9em;
  color: var(--blue);
  padding: 0 2px;
}
.campaign__target strong span { font-family: var(--font-jp); font-size: .55em; font-weight: 900; }
.campaign__note {
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
  text-align: left;
  max-width: 640px;
  margin-inline: auto;
}

/* ==========================================================
   Problem
   ========================================================== */
.problem { background: var(--white); }
.problem__grid { display: grid; gap: 16px; }
.problem-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-blue);
  border-radius: var(--radius);
  padding: 22px 22px;
  font-size: 14px;
}
.problem-card strong { color: var(--blue-d); }
.check {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* ==========================================================
   Solution
   ========================================================== */
.solution {
  background:
    radial-gradient(circle at 90% 10%, rgba(74, 140, 255, .25), transparent 40%),
    linear-gradient(140deg, var(--navy), var(--navy-2) 70%, var(--blue-d));
  color: var(--white);
}
.solution__grid { display: grid; gap: 32px; align-items: center; }
.solution__img img { border-radius: var(--radius); box-shadow: 0 12px 36px rgba(0, 0, 0, .3); }
.solution__title { font-size: 24px; font-weight: 900; line-height: 1.55; margin-top: 6px; }
.solution__text { margin-top: 16px; font-size: 14px; color: #D9E6FB; }
.solution__text strong { color: #FFD46A; }
.solution .sec-head__label { background: rgba(255, 255, 255, .14); color: #BFD6FF; }

/* --- モバイル：問題提起→課題解決を1つの流れに見せる --- */
@media (max-width: 767px) {
  /* ヒーローの地図カード（マップ画像＋テキスト）はモバイルでは非表示 */
  .hero__visual { display: none; }
  /* 「年商2,000万円以上の会社」がスマホで2行になって崩れるため文字を縮小して1行に収める */
  .campaign__target { font-size: 15px; padding: 8px 14px; white-space: nowrap; }
  .campaign__target strong { font-size: 1.6em; }
  /* 「これらのお悩みは、当社のMEO対策にお任せください」の画像はスマホでは文章の下に表示 */
  .solution__img { order: 2; }
  .solution__body { order: 1; }
  /* 「月額費用０円のGoogleマップ集客コンサルティングサービスも承ります」が4行になるため文字を縮小して3行以内に収め、左揃えに変更 */
  .consult .sec-head { text-align: left; }
  .consult .sec-head__title { font-size: 18px; }
  /* problemをライトブルーで面にして、campaignの白カードから続く「悩みゾーン」に */
  .problem { background: var(--bg-blue); padding-bottom: 64px; }
  .problem-card { background: var(--white); box-shadow: var(--shadow); }
  /* problemの背景色がsolutionへ矢印状に食い込み、「その悩みを解決する」流れを表現 */
  .solution { position: relative; padding-top: 92px; }
  .solution::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid transparent;
    border-top: 24px solid var(--bg-blue);
    border-bottom: 0;
  }
}

/* ==========================================================
   Service
   ========================================================== */
.service { background: var(--white); }
.service__list { display: grid; gap: 32px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
}
.service-card__img img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.service-card__body { position: relative; padding: 24px 24px 28px; }
.service-card__num {
  position: absolute;
  top: -34px;
  right: 16px;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 60px;
  line-height: 1;
  color: var(--white);
  text-shadow: 0 4px 16px rgba(13, 43, 87, .45);
}
.service-card__title {
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
  padding-left: 14px;
  border-left: 4px solid var(--blue);
  line-height: 1.4;
}
.service-card__body p { margin-top: 14px; font-size: 14px; color: var(--muted); }

/* ==========================================================
   Price
   ========================================================== */
.price { background: var(--bg-blue); }

/* PC table */
.price__table-wrap { display: none; }
.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.price-table th, .price-table td {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: center;
  vertical-align: middle;
  padding: 20px 14px;
}
.price-table tr:last-child th, .price-table tr:last-child td { border-bottom: none; vertical-align: top; }
.price-table th:last-child, .price-table td:last-child { border-right: none; }
.price-table__empty { background: var(--white); }
.price-table__plan {
  background: var(--navy-2);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  width: 27%;
}
.price-table__plan--featured { background: var(--blue); }
.price-table__label {
  background: var(--bg-blue-2);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  width: 160px;
}
.is-featured { background: #F4F9FF; }
.price-num { font-size: 14px; font-weight: 700; color: var(--text); }
.price-num em {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 30px;
  color: var(--blue);
  letter-spacing: .01em;
  padding-right: 2px;
}
.price-note { font-size: 11px; color: var(--muted); margin-top: 2px; }
.mark-yes {
  display: inline-block;
  width: 26px;
  height: 26px;
  border: 3px solid var(--blue);
  border-radius: 50%;
}
.mark-no { font-size: 24px; font-weight: 700; color: #A6B3C4; line-height: 1; }
.price-list { text-align: left; display: inline-block; font-size: 13px; color: var(--muted); }
.price-list li { position: relative; padding-left: 1.1em; }
.price-list li::before { content: "・"; position: absolute; left: 0; color: var(--blue); }

/* SP cards */
.price__cards { display: grid; gap: 24px; }
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.price-card--featured { border: 2px solid var(--blue); }
.price-card__head {
  background: var(--navy-2);
  color: var(--white);
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  padding: 12px 8px;
}
.price-card--featured .price-card__head { background: var(--blue); }
.price-card__row { display: flex; border-top: 1px solid var(--line); }
.price-card__row:first-child { border-top: none; }
.price-card__row dt {
  flex: 0 0 104px;
  background: var(--bg-blue-2);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 6px;
  line-height: 1.5;
}
.price-card__row dd {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding: 12px 16px;
  text-align: right;
}
.price-card__row dd .price-num em { font-size: 26px; }
.price-card__row dd .price-list { align-self: flex-start; text-align: left; }
.price-card__row dd .mark-yes, .price-card__row dd .mark-no { align-self: center; }

/* ==========================================================
   Consult
   ========================================================== */
.consult {
  background:
    radial-gradient(rgba(30, 99, 208, .07) 1.4px, transparent 1.4px) 0 0 / 30px 30px,
    var(--white);
}
.consult__list { display: grid; gap: 40px; }
.consult-item { display: grid; gap: 20px; align-items: center; }
.consult-item__img { order: -1; }
.consult-item__img img {
  width: 100%;
  aspect-ratio: 44 / 30;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.consult-item__label {
  display: inline-block;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  padding: 4px 16px;
}
.consult-item__body h3 {
  margin-top: 14px;
  font-size: 21px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.5;
}
.consult-item__body p { margin-top: 12px; font-size: 14px; color: var(--muted); }

/* ==========================================================
   CTA
   ========================================================== */
.cta {
  background:
    radial-gradient(circle at 15% 20%, rgba(74, 140, 255, .35), transparent 45%),
    linear-gradient(135deg, var(--blue-d), var(--blue));
  color: var(--white);
  padding: 64px 0;
}
.cta__inner { text-align: center; }
.cta__lead { font-size: 24px; font-weight: 900; line-height: 1.5; }
.cta__sub { margin-top: 10px; font-size: 14px; color: #D9E6FB; }
.cta .btn { margin-top: 24px; }

/* ==========================================================
   Industries
   ========================================================== */
.industries { background: var(--bg-blue); }
.industries__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.industry-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.industry-card img { width: 100%; aspect-ratio: 15 / 11; object-fit: cover; }
.industry-card span {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  padding: 10px 6px;
}
.industries__others {
  margin-top: 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 22px;
}
.industries__others h3 {
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  color: var(--navy);
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.industries__others p { font-size: 12px; line-height: 2.1; color: var(--muted); }

/* ==========================================================
   Flow
   ========================================================== */
.flow { background: var(--white); }
.flow__list { position: relative; display: grid; gap: 28px; max-width: 760px; margin-inline: auto; }
.flow-step { position: relative; display: flex; gap: 18px; }
/* 縦のつなぎ線 */
.flow-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 56px;
  bottom: -28px;
  width: 2px;
  background: linear-gradient(var(--line) 60%, transparent);
}
.flow-step__marker {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--blue));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(30, 99, 208, .35);
}
.flow-step__marker span { font-family: var(--font-en); font-weight: 800; font-size: 17px; }
.flow-step__body {
  flex: 1;
  background: var(--bg-blue);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.flow-step__body h3 { font-size: 16px; font-weight: 900; color: var(--navy); line-height: 1.5; }
.flow-step__body p { margin-top: 8px; font-size: 13px; color: var(--muted); }

/* ==========================================================
   FAQ
   ========================================================== */
.faq { background: var(--bg-blue); }
.faq__list { display: grid; gap: 14px; max-width: 860px; margin-inline: auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 48px 16px 16px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__q {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item__arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .3s;
}
.faq-item[open] summary .faq-item__arrow { transform: translateY(-30%) rotate(225deg); }
.faq-item__a {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 0 20px 18px 16px;
}
.faq-item__a > span {
  flex-shrink: 0;
  width: 34px;
  text-align: center;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 16px;
  color: var(--amber);
}
.faq-item__a p { font-size: 14px; padding-top: 3px; color: var(--text); }

/* ==========================================================
   Contact
   ========================================================== */
.contact {
  background:
    radial-gradient(circle at 85% 15%, rgba(74, 140, 255, .3), transparent 45%),
    linear-gradient(150deg, var(--navy), var(--navy-2) 60%, var(--blue-d));
}
.contact__card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .25);
  padding: 32px 20px 40px;
  max-width: 860px;
  margin-inline: auto;
}
.contact-form { max-width: 720px; margin-inline: auto; }
.form-row { margin-bottom: 22px; }
.form-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.badge-req {
  flex-shrink: 0;
  background: var(--danger);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  border-radius: 4px;
  padding: 4px 7px;
}
.radio-group { display: flex; flex-direction: column; gap: 12px; padding-top: 4px; }
.radio { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; cursor: pointer; }
.radio input { width: 18px; height: 18px; accent-color: var(--blue); }
.form-row input[type="email"],
.form-row input[type="text"],
.form-row input[type="tel"],
.form-row textarea {
  width: 100%;
  background: var(--bg-blue);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  transition: border-color .25s, box-shadow .25s;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 99, 208, .15);
}
.form-row input.is-invalid, .form-row textarea.is-invalid { border-color: var(--danger); }
.form-error { color: var(--danger); font-weight: 700; font-size: 14px; margin-bottom: 18px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-blue);
  border: 1px solid rgba(30, 99, 208, .25);
  color: var(--blue-d);
  font-weight: 700;
  font-size: 14px;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 18px;
}
.form-success::before {
  content: "\2713";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-honeypot { position: absolute; left: -9999px; }
.contact-form__submit { display: flex; width: 280px; max-width: 100%; margin: 28px auto 0; }
.contact-form__submit[disabled] { opacity: .6; cursor: not-allowed; }

/* ==========================================================
   Footer
   ========================================================== */
.footer { background: var(--navy); color: var(--white); padding: 28px 0; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.logo--footer .logo__pin { color: var(--sky); }
.logo--footer .logo__text { color: var(--white); }
.logo--footer .logo__text small { color: #9FB6D9; }
.footer__copy { font-size: 11px; color: #9FB6D9; }

/* ==========================================================
   Thanks（サンクスページ）
   ========================================================== */
.thanks {
  min-height: calc(100vh - var(--header-h));
  padding-top: calc(var(--header-h) + 64px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 85% 15%, rgba(74, 140, 255, .3), transparent 45%),
    linear-gradient(150deg, var(--navy) 0%, var(--navy-2) 55%, var(--blue-d) 100%);
  color: var(--white);
}
.thanks__inner { text-align: center; max-width: 640px; }
.thanks__icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: linear-gradient(160deg, #FFD46A, #F59E1B);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 36px rgba(245, 158, 27, .4);
}
.thanks__title { font-size: 26px; font-weight: 900; line-height: 1.5; }
.thanks__text { margin-top: 20px; font-size: 15px; line-height: 1.9; color: #D9E6FB; }
.thanks .btn { margin-top: 36px; }

/* ==========================================================
   フェードイン
   （.js クラスがある場合のみ非表示から開始 = JS無効/未実行でも
     コンテンツは必ず表示され、LCP計測にも影響しない）
   ========================================================== */
.js .fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.js .fade-in.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .js .fade-in { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .gbp-wrap { animation: none; }
  .gbp-pin { animation: none; }
}

/* ==========================================================
   Tablet: 768px〜
   ========================================================== */
@media (min-width: 768px) {
  :root { --header-h: 72px; }
  body { font-size: 16px; }
  .section { padding: 96px 0; }
  .sp { display: none; }

  .sec-head { margin-bottom: 56px; }
  .sec-head__title { font-size: 34px; }
  .sec-head__lead { font-size: 15px; }

  .hero__inner { grid-template-columns: 1.25fr 1fr; align-items: center; padding: 72px 0 96px; }
  .hero__title { font-size: 52px; }
  .hero__lead { font-size: 17px; }

  .campaign__card { padding: 52px 48px 36px; }
  .campaign__cond { font-size: 18px; }
  .campaign__target { font-size: 24px; }
  .campaign__note { text-align: center; }

  .problem__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .problem-card { padding: 26px 26px; font-size: 15px; }

  /* problem(白背景)がsolutionへ矢印状に食い込み、モバイル版と同じ「その悩みを解決する」流れを表現 */
  .solution { position: relative; padding-top: 128px; }
  .solution::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border: 34px solid transparent;
    border-top: 26px solid var(--white);
    border-bottom: 0;
  }

  .solution__grid { grid-template-columns: 460px 1fr; gap: 56px; }
  .solution__title { font-size: 30px; }
  .solution__text { font-size: 15px; }

  .service__list { gap: 40px; }
  .service-card { grid-template-columns: 44% 1fr; align-items: stretch; }
  .service-card__img { grid-column: 1; grid-row: 1; }
  .service-card__body { grid-column: 2; grid-row: 1; }
  .service-card__img img { height: 100%; aspect-ratio: auto; }
  .service-card--reverse { grid-template-columns: 1fr 44%; }
  .service-card--reverse .service-card__img { grid-column: 2; }
  .service-card--reverse .service-card__body { grid-column: 1; }
  .service-card__body { padding: 36px 40px; display: flex; flex-direction: column; justify-content: center; }
  .service-card__num {
    top: 18px;
    right: 24px;
    font-size: 72px;
    color: var(--bg-blue-2);
    text-shadow: none;
  }
  .service-card__title { font-size: 24px; }
  .service-card__body p { font-size: 15px; margin-top: 18px; }

  .price__cards { display: none; }
  .price__table-wrap { display: block; }
  .price-table .price-list { font-weight: 700; color: var(--navy); }

  .consult__list { gap: 56px; }
  .consult-item { grid-template-columns: 1fr 440px; gap: 52px; }
  .consult-item__body { grid-column: 1; grid-row: 1; }
  .consult-item__img { grid-column: 2; grid-row: 1; }
  .consult-item--reverse { grid-template-columns: 440px 1fr; }
  .consult-item--reverse .consult-item__img { grid-column: 1; }
  .consult-item--reverse .consult-item__body { grid-column: 2; }
  .consult-item__body h3 { font-size: 26px; }
  .consult-item__body p { font-size: 15px; margin-top: 16px; }

  .cta { padding: 88px 0; }
  .cta__lead { font-size: 32px; }

  .thanks__title { font-size: 34px; }
  .thanks__text { font-size: 16px; }

  .industries__grid { grid-template-columns: repeat(4, 1fr); }
  .industries__others { padding: 32px 40px; }
  .industries__others p { font-size: 13px; }

  .flow-step { gap: 24px; }
  .flow-step:not(:last-child)::before { left: 30px; top: 64px; }
  .flow-step__marker { width: 60px; height: 60px; }
  .flow-step__marker span { font-size: 19px; }
  .flow-step__body { padding: 24px 28px; }
  .flow-step__body h3 { font-size: 19px; }
  .flow-step__body p { font-size: 14px; }

  .faq-item summary { font-size: 16px; padding: 18px 56px 18px 20px; }
  .faq-item__a { padding: 0 24px 20px 20px; }
  .faq-item__a p { font-size: 15px; }

  .contact__card { padding: 48px 56px 56px; }

  .footer__inner { flex-direction: row; justify-content: space-between; }
}

/* ==========================================================
   Desktop: 1024px〜
   ========================================================== */
@media (min-width: 1024px) {
  .gnav { display: flex; }
}
