/* ================================================
   FP Office — style.css
   base: warm white / main: pale pink / accent: warm brown
   （元サイトの色味に合わせて 淡いピンク＋ブラウン＋クリーム）
================================================ */
:root {
  --white: #fffdfb;
  --pink: #f7e8e6;
  --pink-soft: #faf1ee;
  --cream: #f6efe3;
  /* アクセント（旧・紫 → 温かいブラウンに変更。変数名は据え置き） */
  --purple: #8a6f57;
  --purple-dark: #6f5642;
  --brick: #a05b48;
  --text: #5b4f49;
  --text-light: #8c7d75;
  --line: #ece0d9;
  --serif-en: "Cormorant Garamond", serif;
  --sans-jp: "Noto Sans JP", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--sans-jp);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--purple); text-decoration: none; transition: opacity .3s; }
a:hover { color: var(--purple-dark); opacity: .8; }

ul { list-style: none; }

.inner { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---------- fade-in ---------- */
.fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.fade.is-visible { opacity: 1; transform: none; }

/* ---------- section heading (EN + JP) ---------- */
.sec-head { margin-bottom: 48px; }
.sec-head .en {
  font-family: var(--serif-en);
  font-size: 40px;
  font-weight: 500;
  letter-spacing: .22em;
  color: var(--text);
  line-height: 1.2;
}
.sec-head .jp {
  display: inline-block;
  font-size: 14px;
  letter-spacing: .14em;
  color: var(--text-light);
  margin-top: 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--purple);
}
.sec-head.center { text-align: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  background: var(--purple);
  color: #fff;
  font-size: 15px;
  letter-spacing: .1em;
  padding: 14px 44px;
  border-radius: 999px;
  border: 1px solid var(--purple);
  transition: background .3s, color .3s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { background: var(--purple-dark); color: #fff; opacity: 1; }

/* ================= header ================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 253, 254, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  font-family: var(--serif-en);
  font-size: 22px;
  letter-spacing: .18em;
  color: var(--text);
}
.logo small {
  display: block;
  font-family: var(--sans-jp);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--text-light);
}
.gnav { margin-left: auto; }
.gnav ul { display: flex; gap: 28px; }
.gnav a {
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--text);
}
.gnav a:hover { color: var(--purple); }
.header .btn { padding: 10px 26px; font-size: 13px; }

/* ================= hero ================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse at 75% 30%, rgba(138,111,87,.14) 0%, rgba(138,111,87,0) 55%),
    linear-gradient(115deg, var(--pink-soft) 0%, var(--pink) 55%, #f1ddd0 100%);
}
.hero::after {
  content: "[ HERO PHOTO : OFFICE / CONSULTATION SCENE ]";
  position: absolute;
  right: 4%; bottom: 10%;
  font-family: var(--serif-en);
  font-size: clamp(14px, 2.4vw, 26px);
  letter-spacing: .2em;
  color: rgba(138,111,87,.28);
  pointer-events: none;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,253,254,.9) 0%, rgba(255,253,254,.7) 45%, rgba(255,253,254,.25) 100%);
}
.hero-inner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 140px 24px 80px;
  width: 100%;
}
.hero-catch {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: .06em;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  letter-spacing: .08em;
  margin-bottom: 40px;
}
.hero-name {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  letter-spacing: .08em;
}
.hero-name span { font-size: .72em; font-weight: 400; margin-right: .8em; color: var(--text-light); }
.hero-place {
  font-size: clamp(15px, 1.8vw, 19px);
  letter-spacing: .12em;
  margin: 8px 0 40px;
}

/* ================= concerns ================= */
.concerns { background: var(--pink); padding: 100px 0; }
.concern-list {
  max-width: 680px;
  margin: 0 auto 56px;
  display: grid;
  gap: 14px;
}
.concern-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border-radius: 6px;
  padding: 16px 22px;
  font-size: 16px;
}
.concern-list .material-symbols-outlined {
  flex: none;
  color: var(--purple);
  font-size: 22px;
  margin-top: 2px;
}
.concern-lead { text-align: center; display: grid; gap: 14px; }
.concern-lead p { font-size: 16px; }
.concern-lead .em {
  font-size: 19px;
  font-weight: 600;
  color: var(--brick);
  letter-spacing: .04em;
}

/* ================= solution ================= */
.solution { background: var(--white); padding: 110px 0; }
.solution-lead {
  text-align: center;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: 64px;
}
.solution-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 72px;
}
.solution-step { text-align: center; padding: 0 12px; }
.solution-step .s-num {
  font-family: "Cormorant Infant", serif;
  font-size: 34px;
  color: var(--purple);
  letter-spacing: .1em;
  line-height: 1;
  margin-bottom: 14px;
}
.solution-step .material-symbols-outlined {
  font-size: 34px;
  color: var(--purple);
  background: var(--pink);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  margin-bottom: 16px;
}
.solution-step h4 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--purple);
  margin-bottom: 10px;
}
.solution-step p { font-size: 15px; text-align: left; }
.solution-close {
  background: var(--pink);
  border-radius: 6px;
  text-align: center;
  padding: 40px 24px;
}
.solution-close p {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: .06em;
  line-height: 2;
}

/* ================= main blocks ================= */
.block-sec { padding: 110px 0; }
.block-sec:nth-of-type(even) { background: var(--pink-soft); }

.block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.block-photo { position: relative; }
.block-photo img { width: 100%; height: auto; border-radius: 4px; }

/* placeholder frames (sample only) */
.photo-placeholder,
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--pink-soft);
  border: 1px dashed rgba(138,111,87,.45);
  border-radius: 4px;
  color: var(--purple);
}
.photo-placeholder { aspect-ratio: 4 / 3; }
.map-placeholder { aspect-ratio: 16 / 9; margin-top: 12px; }
.photo-placeholder .material-symbols-outlined,
.map-placeholder .material-symbols-outlined { font-size: 40px; opacity: .55; }
.ph-en {
  font-family: var(--serif-en);
  font-size: 12px;
  letter-spacing: .3em;
  color: rgba(138,111,87,.55);
}
.ph-jp { font-size: 13px; letter-spacing: .12em; color: var(--text-light); }
.photo-label {
  position: absolute;
  left: -10px; bottom: 24px;
  font-family: var(--serif-en);
  font-size: 13px;
  letter-spacing: .3em;
  background: var(--white);
  color: var(--text-light);
  padding: 8px 18px;
}
.block.reverse .block-photo { order: 2; }
.block.reverse .photo-label { left: auto; right: -10px; }
.block.single { grid-template-columns: 1fr; max-width: 800px; }
#flow .block.single { max-width: none; width: 60%; margin: 0 auto; }

.block-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: .06em;
  margin-bottom: 20px;
}
.block-body { margin-bottom: 36px; }
.block-body p + p { margin-top: 1em; }

/* ---- about: profile ---- */
.profile-card {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 20px 24px;
  margin-top: 24px;
}
.block-sec:nth-of-type(odd) .profile-card { background: var(--pink-soft); border: none; }
.profile-card img { width: 84px; height: 84px; border-radius: 50%; }
.profile-name { font-size: 18px; font-weight: 600; letter-spacing: .06em; }
.profile-name small { display: block; font-size: 12px; font-weight: 400; color: var(--text-light); letter-spacing: .1em; }
.profile-career { font-size: 13px; color: var(--text-light); margin-top: 6px; }

.about-sub {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--purple);
  margin: 28px 0 12px;
}
.license-list li {
  font-size: 15px;
  padding: 6px 0 6px 20px;
  position: relative;
  border-bottom: 1px dashed var(--line);
}
.license-list li::before {
  content: "";
  position: absolute; left: 4px; top: 16px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--purple);
}
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.values li {
  background: var(--pink);
  border-radius: 6px;
  text-align: center;
  padding: 18px 8px;
}
.values .v-en {
  display: block;
  font-family: var(--serif-en);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--purple);
  margin-bottom: 4px;
}
.values .v-jp { font-size: 14px; font-weight: 600; }

/* ---- menu ---- */
.menu-list { display: grid; gap: 14px; margin-bottom: 36px; }
.menu-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px 18px;
}
.menu-icon {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--purple);
  display: grid;
  place-items: center;
  font-size: 20px;
}
.menu-list h4 { font-size: 15px; font-weight: 600; letter-spacing: .04em; }
.menu-list p { font-size: 13px; color: var(--text-light); }

.menu-icon .material-symbols-outlined { font-size: 22px; }

.support-box {
  background: var(--pink-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px 26px;
  text-align: center;
}
.block-sec:nth-of-type(even) .support-box { background: var(--white); }
.support-box h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--purple);
  margin-bottom: 10px;
}
.support-box h4 .material-symbols-outlined { font-size: 22px; }
.support-box p { font-size: 15px; margin-bottom: 18px; }
.support-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  padding: 12px 28px;
}
.support-btn .material-symbols-outlined { font-size: 18px; transition: transform .3s; }
.btn.ghost.support-btn:hover {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}
.support-btn:hover .material-symbols-outlined { transform: translateX(4px); }

.price-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.price-table caption {
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--purple);
  margin-bottom: 12px;
}
.price-table th, .price-table td {
  padding: 12px 8px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-weight: 400;
  vertical-align: top;
}
.price-table td:last-child { text-align: right; white-space: nowrap; font-weight: 600; }
.price-table .free td:last-child { color: var(--purple); }
.price-note { font-size: 12px; color: var(--text-light); margin-top: 10px; }

/* ---- flow ---- */
.flow-steps { counter-reset: step; display: grid; gap: 0; list-style: none; }
.flow-steps li {
  counter-increment: step;
  position: relative;
  padding: 0 0 32px 64px;
}
.flow-steps li::before {
  content: "0" counter(step);
  position: absolute; left: 0; top: -2px;
  font-family: "Cormorant Infant", serif;
  font-size: 26px;
  color: var(--purple);
  letter-spacing: .06em;
}
.flow-steps li::after {
  content: "";
  position: absolute; left: 18px; top: 38px; bottom: 8px;
  width: 1px;
  background: var(--line);
}
.flow-steps li:last-child { padding-bottom: 0; }
.flow-steps li:last-child::after { display: none; }
.flow-steps h4 { font-size: 17px; font-weight: 600; letter-spacing: .06em; margin-bottom: 6px; }
.flow-steps p { font-size: 15px; color: var(--text-light); }

/* ================= plan ================= */
.plan { background: var(--cream); padding: 110px 0; }
.plan-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 48px 44px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(138,111,87,.08);
}
.plan-eyebrow {
  font-size: 13px;
  letter-spacing: .16em;
  color: var(--brick);
  margin-bottom: 12px;
}
.plan-name {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .06em;
  margin-bottom: 16px;
}
.plan-desc { font-size: 15px; color: var(--text-light); margin-bottom: 28px; }
.plan-price {
  font-family: var(--serif-en);
  font-size: 52px;
  font-weight: 600;
  color: var(--purple);
  line-height: 1;
  letter-spacing: .02em;
  margin-bottom: 32px;
}
.plan-price .yen { font-size: .55em; margin-right: 2px; }
.plan-price .per {
  font-family: var(--sans-jp);
  font-size: .3em;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: .08em;
  margin-left: 6px;
}
.plan-includes {
  display: grid;
  gap: 12px;
  text-align: left;
  max-width: 340px;
  margin: 0 auto 32px;
}
.plan-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
}
.plan-includes .material-symbols-outlined {
  flex: none;
  color: var(--purple);
  font-size: 20px;
  margin-top: 2px;
}
.plan-btn { width: 100%; padding: 16px; font-size: 16px; }
.plan-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 16px;
}
.plan-note .material-symbols-outlined { font-size: 15px; }

/* ================= voice ================= */
.voice { background: var(--pink); padding: 110px 0; }
.voice-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.voice-card {
  background: var(--white);
  border-radius: 6px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(150, 120, 140, .08);
}
.voice-card .quote {
  font-family: var(--serif-en);
  font-size: 34px;
  line-height: 1;
  color: var(--purple);
  margin-bottom: 12px;
}
.voice-card p { font-size: 15px; margin-bottom: 18px; }
.voice-card .who { font-size: 13px; color: var(--text-light); letter-spacing: .08em; }

/* ================= blog ================= */
.blog { background: var(--pink-soft); padding: 110px 0; }
.blog-list {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.blog-list li { list-style: none; }
.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(138,111,87,.14);
}
.blog-thumb {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pink);
  color: rgba(138,111,87,.45);
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-thumb .material-symbols-outlined { font-size: 40px; }
.blog-meta { padding: 16px 18px 20px; }
.blog-meta time {
  font-family: var(--serif-en);
  font-size: 14px;
  letter-spacing: .08em;
  color: var(--purple);
}
.blog-title {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-top: 6px;
}
.blog-card:hover .blog-title { color: var(--purple); }
.blog-more { text-align: center; margin-top: 48px; }
.btn.ghost.blog-more-btn:hover {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}

/* ================= faq ================= */
.faq { padding: 110px 0; }
.faq-list { width: 60%; max-width: none; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  font-family: var(--sans-jp);
  font-size: 16px;
  color: var(--text);
  text-align: left;
  padding: 22px 44px 22px 36px;
  position: relative;
  cursor: pointer;
  line-height: 1.6;
}
.faq-q::before {
  content: "Q";
  position: absolute; left: 4px; top: 20px;
  font-family: var(--serif-en);
  font-size: 18px;
  color: var(--purple);
}
.faq-q::after {
  content: "";
  position: absolute; right: 12px; top: 50%;
  width: 9px; height: 9px;
  border-right: 1.5px solid var(--purple);
  border-bottom: 1.5px solid var(--purple);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .3s;
}
.faq-item.open .faq-q::after { transform: translateY(-30%) rotate(225deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-a p {
  padding: 0 36px 24px;
  font-size: 15px;
  color: var(--text-light);
}

/* ================= contact ================= */
.contact { background: var(--pink-soft); padding: 110px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-tel {
  font-family: var(--serif-en);
  font-size: 40px;
  letter-spacing: .06em;
  color: var(--text);
  line-height: 1.2;
}
.contact-hours { font-size: 13px; color: var(--text-light); margin: 6px 0 28px; }
.line-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--purple);
  color: var(--purple);
  font-size: 14px;
  letter-spacing: .08em;
  padding: 12px 32px;
  border-radius: 999px;
  margin-bottom: 40px;
  white-space: nowrap;
}
.line-btn:hover { background: var(--purple); color: #fff; opacity: 1; }
.access h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--purple);
  margin-bottom: 10px;
}
.access p { font-size: 15px; margin-bottom: 16px; }
.access img { border-radius: 6px; }

/* contact choose (mailto / form) */
.contact-choose { display: grid; gap: 18px; }
.choose-head {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .06em;
  margin-bottom: 4px;
}
.choose-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px 26px;
}
.choose-card.primary {
  border-color: var(--purple);
  box-shadow: 0 8px 22px rgba(138,111,87,.10);
}
.choose-icon {
  font-size: 30px;
  color: var(--purple);
  grid-row: span 2;
}
.choose-body h4 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.choose-tag {
  font-size: 11px;
  letter-spacing: .08em;
  color: #fff;
  background: var(--brick);
  border-radius: 999px;
  padding: 2px 10px;
}
.choose-body p { font-size: 14px; color: var(--text-light); margin-top: 4px; }
.choose-btn {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 6px;
}
.btn.ghost {
  background: #fff;
  color: var(--purple);
}
.btn.ghost:hover { background: var(--pink-soft); color: var(--purple-dark); }
.contact-caution {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-light);
  background: var(--cream);
  border-radius: 8px;
  padding: 14px 16px;
}
.contact-caution .material-symbols-outlined { flex: none; font-size: 18px; color: var(--brick); margin-top: 1px; }

/* ================= footer ================= */
.footer {
  background: var(--purple-dark);
  padding: 48px 0 88px;
  text-align: center;
  color: #fff;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  margin-bottom: 24px;
}
.footer-nav a { font-size: 13px; color: #fff; letter-spacing: .08em; }
.footer-nav a:hover { color: #fff; opacity: .7; }
.footer-sub { display: flex; justify-content: center; gap: 24px; margin-bottom: 20px; }
.footer-sub a { font-size: 12px; color: rgba(255, 255, 255, .8); }
.footer-sub a:hover { color: #fff; opacity: 1; }
.copyright { font-size: 11px; color: rgba(255, 255, 255, .65); letter-spacing: .1em; }

/* ================= mobile fixed CTA ================= */
.sp-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 100;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 253, 254, .95);
  border-top: 1px solid var(--line);
}
.sp-cta .btn { display: block; text-align: center; width: 100%; }

/* ================= floating CTA ================= */
.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple);
  color: #fff;
  font-size: 14px;
  letter-spacing: .08em;
  padding: 14px 26px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .3s, opacity .4s ease, transform .4s ease, visibility .4s;
}
.floating-cta:hover { background: var(--purple-dark); color: #fff; opacity: 1; }
.floating-cta .material-symbols-outlined { font-size: 20px; }
.floating-cta.hide {
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  pointer-events: none;
}

/* ================= responsive ================= */
@media (max-width: 900px) {
  .gnav { display: none; }
  .header .btn { margin-left: auto; }
  .block, .block.reverse { grid-template-columns: 1fr; gap: 36px; }
  .block.reverse .block-photo { order: 0; }
  .photo-label { left: 12px; bottom: 12px; }
  .block.reverse .photo-label { right: auto; left: 12px; }
  .block-sec, .voice, .faq, .contact, .concerns, .blog, .solution { padding: 72px 0; }
  .solution-steps { grid-template-columns: 1fr; gap: 40px; }
  .blog-list { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .plan-card { padding: 40px 24px; }
  .plan-price { font-size: 44px; }
  .faq-list { width: 100%; }
  #flow .block.single { width: 100%; }
  .sec-head .en { font-size: 30px; }
  .voice-cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .values { grid-template-columns: 1fr; }
  .values li { display: flex; align-items: baseline; gap: 12px; justify-content: center; }
  .sp-cta { display: block; }
  .floating-cta { display: none; }
  .footer { padding-bottom: 120px; }
}
