:root {
  --ink: #161616;
  --muted: #5f656d;
  --paper: #ffffff;
  --soft: #f6f7f8;
  --line: #e3e6ea;
  --red: #e92824;
  --red-dark: #b80f16;
  --blue: #19a8df;
  --blue-dark: #066ea8;
  --yellow: #ffd200;
  --orange: #ff7a1b;
  --green: #06c755;
  --text-2xs: 13px;
  --text-xs: 16px;
  --text-sm: 17px;
  --text-md: 18px;
  --text-lg: 19px;
  --text-xl: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "BIZ UDPGothic", "Yu Gothic", Meiryo, sans-serif;
  letter-spacing: 0;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p,
a,
button,
strong,
span,
li {
  overflow-wrap: break-word;
}

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

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

main {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(22, 22, 22, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 24px;
}

.brand img {
  width: 232px;
  height: auto;
}

.desktop-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  color: #333;
  font-size: var(--text-xs);
  font-weight: 700;
}

.desktop-nav a {
  padding: 10px 0;
  border-bottom: 3px solid transparent;
}

.desktop-nav a:hover {
  border-color: var(--yellow);
}

.header-actions {
  display: flex;
  align-items: center;
  height: 100%;
}

.line-square,
.menu-square {
  display: grid;
  place-items: center;
  width: 78px;
  height: 82px;
}

.line-square {
  background: var(--green);
}

.line-square img {
  width: 48px;
}

.phone-link {
  display: grid;
  place-items: center;
  min-width: 150px;
  height: 82px;
  padding: 0 18px;
  background: #111;
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 900;
}

.menu-square {
  gap: 7px;
  background: var(--orange);
  border: 0;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.menu-square span {
  display: block;
  width: 28px;
  height: 4px;
  background: #fff;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: none;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.42);
}

.mobile-menu-panel {
  position: absolute;
  top: 70px;
  right: 12px;
  width: min(360px, calc(100vw - 24px));
  padding: 16px;
  border: 3px solid #111;
  border-radius: 12px;
  background: #fff;
  box-shadow: 10px 10px 0 #111;
  display: grid;
  gap: 10px;
  z-index: 2;
}

.mobile-menu-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 16px;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: #111;
  font-size: var(--text-sm);
  font-weight: 800;
}

.mobile-menu-line {
  border: 2px solid #111 !important;
  background: var(--green) !important;
  color: #fff !important;
}

.mobile-menu-phone {
  border-color: #111 !important;
  background: #111 !important;
  color: #fff !important;
}

.mobile-menu-form {
  border-color: #111 !important;
  background: var(--yellow) !important;
  color: #111 !important;
}

.menu-square.is-open {
  background: #111;
}

.menu-square.is-open span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-square.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-square.is-open span:nth-child(3) {
  transform: rotate(-45deg);
}

.menu-square.is-open,
.menu-square.is-open {
  background: #111;
}

.menu-square.is-open span {
  position: absolute;
  background: #fff;
  transform-origin: center;
}

.mobile-menu-backdrop {
  z-index: 1;
}

.mobile-menu.is-open .mobile-menu-panel {
  z-index: 2;
}

.hero {
  position: relative;
  min-height: 640px;
  background: #fff;
}

.hero-blue {
  position: absolute;
  inset: 86px 0 0 auto;
  width: 44%;
  background: var(--blue);
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
  gap: 34px;
  width: min(1120px, calc(100% - 48px));
  min-height: 620px;
  margin: 0 auto;
  padding: 40px 0 22px;
}

.hero-copy {
  align-self: center;
}

.hero-alert {
  display: inline-block;
  min-width: 430px;
  margin: 0 0 22px;
  padding: 14px 22px;
  background: var(--yellow);
  color: #fff;
  font-size: 27px;
  font-weight: 900;
  text-align: center;
  text-shadow: 2px 2px 0 #222;
}

.hero h1 {
  margin: 0;
  color: #171717;
  font-size: 62px;
  line-height: 1.05;
  font-weight: 1000;
}

.hero h1 span {
  display: block;
  color: var(--green);
  font-size: 72px;
}

.hero-lead {
  max-width: 640px;
  margin: 24px 0 0;
  color: #222;
  font-size: 24px;
  line-height: 1.7;
  font-weight: 900;
}

.hero-lead::first-line {
  color: var(--blue-dark);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}

.hero-badges span {
  padding: 9px 13px;
  border: 2px solid #111;
  background: var(--yellow);
  color: #111;
  font-size: var(--text-xs);
  font-weight: 900;
}

.hero-cta,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.primary-cta,
.secondary-cta,
.phone-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 3px solid #111;
  border-radius: 999px;
  font-weight: 1000;
  box-shadow: 0 5px 0 #111;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.primary-cta {
  background: var(--green);
  color: #fff;
}

.secondary-cta {
  background: #fff;
  color: #111;
}

.secondary-cta.dark {
  background: #111;
  color: #fff;
}

.phone-cta {
  background: var(--yellow);
  color: #111;
}

.primary-cta:hover,
.secondary-cta:hover,
.phone-cta:hover {
  transform: translateY(2px);
  box-shadow: 0 3px 0 #111;
}

.ranger-banner {
  width: 440px;
  margin-top: 26px;
}

.hero-visual {
  position: relative;
  align-self: end;
  min-height: 560px;
}

.hero-woman {
  position: absolute;
  right: -90px;
  bottom: 0;
  width: 650px;
  max-width: none;
}

.section-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.page-intro {
  padding: 28px 0 18px;
  background: #fff8d6;
}

.page-intro-inner {
  display: grid;
  gap: 12px;
}

.page-intro .breadcrumb-wrap {
  width: auto;
  padding: 0;
  background: transparent;
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: var(--text-md);
  font-weight: 700;
}

.page-intro h1 {
  margin: 0;
  color: #111;
  font-size: clamp(30px, 4.2vw, 44px);
  line-height: 1.25;
  font-weight: 1000;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--red);
  font-size: var(--text-xs);
  font-weight: 1000;
}

.mobile-title-break {
  display: none;
}

h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.32;
  font-weight: 1000;
}

h3,
p {
  margin-top: 0;
}

.section-lead,
.section-title-row > p,
.price-copy p,
.comparison-layout p,
.about-layout p,
.contact-layout p {
  color: var(--muted);
  font-size: var(--text-md);
  line-height: 1.95;
}

.problem-section {
  background: var(--yellow);
  padding: 54px 0 70px;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
  width: min(700px, calc(100% - 48px));
  margin: 0 auto;
}

.problem-heading {
  text-align: center;
}

.problem-heading .section-kicker {
  display: none;
}

.problem-heading h2 {
  color: #111;
}

.problem-heading .section-lead {
  margin: 2px 0 8px;
  color: #111;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 1000;
}

.problem-panel {
  padding: 26px 30px;
  border: 4px solid #111;
  border-radius: 7px;
  background: #fff;
  box-shadow: 9px 9px 0 #111;
}

.problem-panel ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.problem-panel li {
  position: relative;
  padding-left: 46px;
  color: #111;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 1000;
}

.problem-panel li::before {
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: var(--red);
  color: #fff;
  content: "!";
  font-size: 22px;
  line-height: 1;
  font-weight: 1000;
}

.problem-panel img {
  width: 100%;
}

.problem-callout {
  display: grid;
  gap: 8px;
  padding: 26px 28px 20px;
  border: 4px solid #111;
  border-radius: 7px;
  background: #fff;
  box-shadow: 9px 9px 0 #111;
  font-weight: 1000;
}

.problem-callout strong {
  color: var(--red);
  font-size: 27px;
  line-height: 1.35;
}

.problem-callout span {
  color: #111;
  font-size: 23px;
  line-height: 1.45;
  font-weight: 1000;
}

.problem-callout img {
  width: min(470px, 92%);
  height: auto;
  justify-self: center;
  margin-top: -18px;
  position: relative;
  z-index: 1;
}

.warning-section,
.reason-section,
.price-section,
.flow-section,
.faq-section {
  padding: 86px 0;
  background: #fff;
}

.warning-section {
  background: #fbfbfb;
}

.warning-section .section-inner {
  width: min(760px, calc(100% - 48px));
}

.section-title-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.warning-section .section-title-row {
  display: block;
  max-width: 640px;
  margin: 0 0 34px;
}

.warning-section .section-kicker {
  color: var(--red);
  font-size: var(--text-xs);
  line-height: 1;
}

.warning-section .section-title-row h2 {
  max-width: 620px;
  margin-top: 12px;
  color: #1d1d1f;
  font-size: 40px;
  line-height: 1.35;
  font-weight: 1000;
}

@media (min-width: 721px) {
  .warning-section .section-title-row h2 {
    max-width: none;
    white-space: nowrap;
  }
}

.warning-section .section-title-row > p {
  display: grid;
  justify-items: start;
  gap: 10px;
  max-width: 620px;
  margin: 66px 0 0 78px;
  color: #111;
  font-size: 28px;
  line-height: 1.4;
  font-weight: 1000;
}

.warning-section .section-title-row > p span {
  display: inline;
  padding: 2px 7px 5px;
  border-radius: 7px;
  background: var(--yellow);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  text-shadow: 2px 2px 0 #fff;
}

.warning-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.warning-section .center-title.compact {
  max-width: 560px;
  margin: 0 auto 54px;
  padding: 18px 24px;
  background:
    repeating-linear-gradient(135deg, #111 0 12px, var(--yellow) 12px 24px) top / 100% 16px no-repeat,
    repeating-linear-gradient(135deg, #111 0 12px, var(--yellow) 12px 24px) bottom / 100% 16px no-repeat,
    var(--yellow);
  text-align: center;
}

.warning-section .center-title.compact p {
  margin: 10px 0;
  color: #111;
  font-size: 25px;
  line-height: 1.45;
  font-weight: 1000;
}

.warning-section .warning-list {
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 100px;
  margin-bottom: 140px;
}

.warning-card {
  display: grid;
  justify-items: center;
  min-height: 280px;
  padding: 64px 56px 60px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.warning-card .number {
  color: var(--blue);
  font-size: 44px;
  line-height: 1;
  font-weight: 1000;
}

.warning-card img {
  width: 148px;
  height: 148px;
  margin: 22px 0 18px;
  object-fit: contain;
}

.warning-card h3 {
  min-height: 0;
  margin: 0;
  color: #111;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 1000;
}

.warning-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.75;
}

.risk-story {
  display: grid;
  gap: 40px;
  width: 100vw;
  max-width: none;
  margin: 0 calc(50% - 50vw) 0;
  padding: 100px 20px 30px;
  background: var(--yellow);
  box-sizing: border-box;
}

.risk-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  grid-template-areas:
    "title visual"
    "copy visual";
  gap: 18px 24px;
  margin: 0;
  padding: 30px 28px;
  overflow: hidden;
  border: 4px solid #111;
  border-radius: 8px;
  background: #fff;
  box-shadow: 6px 6px 0 #111;
}

.risk-story > .risk-panel,
.risk-story > .recommend-panel {
  width: min(1080px, 100%);
  margin-inline: auto;
}


.risk-title-row {
  grid-area: title;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
  padding-bottom: 20px;
  border-bottom: 3px dotted var(--yellow);
}

.risk-title-row h3 {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0;
  min-width: 0;
  color: #111;
  font-size: 28px;
  line-height: 1.42;
  font-weight: 1000;
}

.risk-alert-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  margin-top: 2px;
}

.risk-alert-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.risk-red {
  color: var(--red);
}

.risk-visual {
  grid-area: visual;
  position: relative;
  z-index: 1;
  display: grid;
  align-self: end;
  justify-items: center;
  margin: 0;
}

.risk-visual img {
  position: relative;
  z-index: 1;
  width: 178px;
  height: auto;
  filter: drop-shadow(0 8px 0 rgba(17, 17, 17, 0.16));
}

.risk-copy {
  grid-area: copy;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
}

.risk-copy p {
  margin: 0;
  color: #111;
  font-size: var(--text-sm);
  line-height: 1.85;
  font-weight: 900;
}

.risk-copy strong {
  color: var(--blue-dark);
  font-weight: 1000;
}

.risk-bridge {
  position: relative;
  max-width: 660px;
  margin: 0 auto;
  padding: 0 56px;
  color: #111;
  font-size: 24px;
  line-height: 1.58;
  text-align: center;
  font-weight: 1000;
}

.risk-bridge::before,
.risk-bridge::after {
  position: absolute;
  top: 50%;
  width: 4px;
  height: 60px;
  background: #111;
  content: "";
}

.risk-bridge::before {
  left: 14px;
  transform: translateY(-50%) rotate(-30deg);
}

.risk-bridge::after {
  right: 14px;
  transform: translateY(-50%) rotate(30deg);
}

.risk-bridge strong {
  color: var(--blue-dark);
  font-weight: 1000;
}

.recommend-panel {
  position: relative;
  width: min(1080px, 100%);
  margin: 0;
  padding: 32px 34px 28px;
  overflow: hidden;
  border: 4px solid #111;
  border-radius: 8px;
  background: #fff;
  box-shadow: 6px 6px 0 #111;
  text-align: center;
}

.recommend-panel h3 {
  max-width: 560px;
  margin: 0 auto 20px;
  color: #111;
  font-size: 30px;
  line-height: 1.5;
  text-align: center;
  font-weight: 1000;
}

.recommend-panel p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 800;
}

.recommend-panel .recommend-title {
  max-width: 520px;
  margin: 0 auto 4px;
  padding-top: 18px;
  border-top: 3px dotted var(--yellow);
  color: var(--red);
  font-size: var(--text-xl);
  font-weight: 1000;
}

.recommend-panel strong {
  display: block;
  color: var(--blue);
  font-size: 38px;
  line-height: 1.35;
  font-weight: 1000;
  text-shadow: 2px 2px 0 rgba(255, 210, 0, 0.45);
}

.recommend-panel .recommend-sub {
  margin: 4px 0 0;
  color: #111;
  font-size: var(--text-xl);
  line-height: 1.45;
  font-weight: 1000;
}

.recommend-panel img {
  width: min(360px, 88%);
  height: auto;
  margin: -22px auto 10px;
  position: relative;
  z-index: 1;
}

.recommend-panel ul {
  display: grid;
  max-width: 560px;
  gap: 0;
  margin: 18px auto 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  list-style: none;
}

.recommend-panel li {
  position: relative;
  padding: 10px 0 10px 31px;
  border-top: 1px dotted #b9bec6;
  font-size: var(--text-lg);
  font-weight: 900;
  line-height: 1.58;
}

.recommend-panel li:last-child {
  border-bottom: 1px dotted #b9bec6;
}

.recommend-panel li::before {
  position: absolute;
  top: 10px;
  left: 0;
  color: var(--green);
  content: "✓";
  font-size: var(--text-xl);
  font-weight: 1000;
}

.dialogue-strip {
  display: grid;
  gap: 18px;
  margin-top: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111;
  box-shadow: none;
}

.dialogue-line {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-width: 0;
}

.dialogue-line.ranger {
  flex-direction: row-reverse;
}

.dialogue-avatar {
  width: 74px;
  height: 74px;
  flex: 0 0 74px;
  border: 3px solid #111;
  border-radius: 50%;
  background: #fff;
  box-shadow: 4px 4px 0 #111;
  object-fit: cover;
}

.dialogue-line.ranger .dialogue-avatar {
  padding: 7px;
  background: var(--blue);
  object-fit: contain;
}

.dialogue-line.ranger .dialogue-avatar--icon {
  padding: 0;
  background: transparent;
  object-fit: cover;
}

.dialogue-bubble {
  position: relative;
  display: grid;
  min-width: 0;
  max-width: 620px;
  gap: 3px;
  margin: 0;
  padding: 17px 20px;
  border: 3px solid #111;
  border-radius: 8px;
  background: #fff;
  color: #111;
  line-height: 1.68;
  font-size: 20px;
  font-weight: 1000;
  box-shadow: 5px 5px 0 rgba(17, 17, 17, 0.16);
}

.dialogue-bubble::before {
  position: absolute;
  top: 22px;
  width: 14px;
  height: 14px;
  border: 3px solid #111;
  background: inherit;
  content: "";
  transform: rotate(45deg);
}

.dialogue-line.client .dialogue-bubble::before {
  left: -10px;
  border-top: 0;
  border-right: 0;
}

.dialogue-line.ranger .dialogue-bubble {
  background: #ffffff;
  color: var(--red-dark);
  text-align: left;
  box-shadow: 5px 5px 0 rgba(233, 40, 36, 0.18);
}

.dialogue-line.ranger .dialogue-bubble::before {
  right: -10px;
  border-bottom: 0;
  border-left: 0;
}

.dialogue-bubble span {
  display: block;
}

.warning-dialogue-band {
  background: #FFD200;
  padding: 48px 0;
}

.dialogue-strip.warning-dialogue {
  position: relative;
  margin-top: 0;
  padding: 28px;
  border-radius: 8px;
  background: transparent;
  isolation: isolate;
}

.dialogue-strip.warning-dialogue::before {
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: -1;
  width: 100vw;
  background: var(--yellow);
  content: "";
  transform: translateX(-50%);
}

.reason-section {
  background: var(--soft);
}

.center-title {
  max-width: 780px;
  margin: 0 0 34px;
  text-align: left;
}

.center-title.compact {
  max-width: 900px;
  margin-bottom: 28px;
  text-align: center;
}

.center-title.compact h2 {
  font-size: 32px;
}

.center-title p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.7;
  font-weight: 900;
}

.reason-grid,
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.reason-card,
.voice-card {
  overflow: hidden;
  border: 2px solid #111;
  border-radius: 8px;
  background: #fff;
}

.reason-card img,
.voice-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #eef2f5;
}

.reason-card span {
  display: inline-block;
  margin: 22px 22px 0;
  padding: 4px 9px;
  background: var(--red);
  color: #fff;
  font-weight: 1000;
}

.reason-card h3,
.voice-card h3 {
  margin: 14px 22px 10px;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 1000;
}

.reason-card p,
.voice-card p {
  margin: 0 22px 24px;
  color: var(--muted);
  font-size: var(--text-xs);
  line-height: 1.85;
}

.section-link-row {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.section-link-row.left {
  justify-content: flex-start;
  margin-top: 20px;
}

.price-section .section-link-row.left {
  justify-content: center;
}

.cta-band {
  position: relative;
  padding: 54px 0 62px;
  background: #fff8d6;
  color: #111;
}

.cta-inner {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(640px, calc(100% - 28px));
  padding: 66px 42px 34px;
  border: 4px solid var(--yellow);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 6px 6px 0 #111;
  text-align: center;
}

.cta-ribbon {
  position: absolute;
  top: -41px;
  left: 50%;
  display: block;
  width: 300px;
  height: 72px;
  background: url("../img/cta--title.webp") center center / contain no-repeat;
  transform: translateX(-50%);
  font-size: 0;
  color: transparent;
}

.cta-ribbon::before,
.cta-ribbon::after {
  display: none;
}

.cta-inner h2 {
  margin: 0 0 26px;
  color: #111;
  font-size: 32px;
  line-height: 1.35;
  font-weight: 1000;
  text-shadow: none;
}

.cta-band .cta-actions {
  display: grid;
  width: 100%;
  gap: 18px;
  margin-top: 0;
}

.cta-band .primary-cta,
.cta-band .phone-cta {
  width: 100%;
  min-width: 0;
  min-height: 62px;
  border: 4px solid #111;
  border-radius: 999px;
  font-size: var(--text-xl);
  line-height: 1.1;
  box-shadow: 0 7px 0 #111;
}

.cta-band .primary-cta {
  background: #06c755;
  color: #fff;
  box-shadow: 0 7px 0 #d7a900, 0 11px 0 #111;
}

.cta-band .phone-cta {
  background: #fff;
  color: #111;
}

.cta-band .primary-cta:hover,
.cta-band .phone-cta:hover {
  transform: translateY(2px);
  box-shadow: 0 5px 0 #111;
}

.cta-band .primary-cta small {
  display: block;
  margin-top: 4px;
  font-size: var(--text-xs);
  font-weight: 1000;
}

.cta-phone {
  position: relative;
  display: grid;
  justify-items: center;
  margin-top: 28px;
  padding-inline: 62px;
  color: #111;
  z-index: 2;
}

.cta-phone::before,
.cta-phone::after {
  position: absolute;
  top: 18px;
  width: 3px;
  height: 60px;
  background: #111;
  content: "";
}

.cta-phone::before {
  left: 18px;
  transform: rotate(-32deg);
}

.cta-phone::after {
  right: 18px;
  transform: rotate(32deg);
}

.cta-phone > span {
  font-size: var(--text-sm);
  line-height: 1.35;
  font-weight: 1000;
}

.cta-phone a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 2px;
  color: var(--red);
  font-size: 20px;
  line-height: 1.05;
  font-weight: 1000;
}

.phone-emoji {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: var(--red);
}

.cta-phone-number {
  color: var(--red);
  font-size: 20px;
  font-weight: 1000;
  letter-spacing: 0.03em;
}

.cta-phone small {
  color: #333;
  font-size: var(--text-xs);
  line-height: 1.5;
  font-weight: 800;
}

.cta-rangers {
  display: block;
  width: min(380px, 88%);
  height: auto;
  margin: -52px auto 0;
  position: relative;
  z-index: 1;
}

.price-layout,
.comparison-layout,
.about-layout,
.contact-layout,
.faq-layout,
.savings-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
}

.price-section .price-layout {
  grid-template-columns: 1fr;
  justify-items: center;
}

.price-section .price-copy,
.price-section .price-panel {
  width: min(100%, 760px);
}

.price-section .price-copy {
  text-align: left;
  justify-self: stretch;
}

.price-section .price-copy img,
.price-section .price-panel {
  justify-self: center;
}

.price-copy img {
  width: 330px;
  height: auto;
  margin-top: 24px;
}

.savings-section {
  padding: 86px 0;
  background: #fff;
}

.savings-layout {
  width: min(100%, 1080px);
  margin: 0 auto;
  justify-items: center;
  text-align: center;
}

.savings-layout > div {
  width: min(100%, 860px);
}

.savings-layout > div:first-child {
  justify-self: start;
  width: 100%;
  text-align: left;
}

.savings-layout > div:first-child {
  justify-self: stretch;
  text-align: left;
}

.savings-layout > div:first-child .section-kicker,
.savings-layout > div:first-child h2,
.savings-layout > div:first-child p {
  text-align: left;
}

@media (min-width: 721px) {
  .reason-section .center-title h2,
  .savings-layout > div:first-child h2 {
    white-space: nowrap;
  }
}

.savings-layout p {
  color: var(--muted);
  font-size: var(--text-md);
  line-height: 1.9;
}

.savings-layout h3 {
  margin: 38px 0 18px;
  font-size: 28px;
  line-height: 1.45;
  font-weight: 1000;
}

.savings-layout img {
  width: min(100%, 760px);
  height: auto;
  margin-top: 18px;
  border-radius: 8px;
}

.savings-layout > div:first-child img {
  display: block;
  margin: 18px auto 0;
}

.savings-layout .big-red {
  margin: 22px 0 0;
  color: var(--red);
  font-size: 25px;
  line-height: 1.55;
  font-weight: 1000;
}

@media (max-width: 1080px) {
  .savings-layout {
    width: min(100%, calc(100% - 32px));
  }

  .savings-layout > div {
    width: 100%;
  }
}

.price-panel {
  padding: 30px;
  border: 4px solid #111;
  border-radius: 8px;
  background: #fff;
  box-shadow: 10px 10px 0 var(--yellow);
}

.plan-name {
  display: inline-flex;
  margin: 0;
  padding: 7px 12px;
  background: var(--red);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 1000;
}

.price-main {
  margin: 18px 0 22px;
  color: var(--red);
  font-size: 56px;
  line-height: 1;
  font-weight: 1000;
}

.price-main span {
  display: block;
  margin-bottom: 7px;
  color: #111;
  font-size: var(--text-sm);
}

.price-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.price-panel li {
  position: relative;
  padding-left: 24px;
  color: #222;
  font-weight: 800;
  line-height: 1.55;
}

.price-panel li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 1000;
}

.option-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.price-subitems {
  display: grid;
  gap: 4px;
  margin-top: 7px;
  color: var(--muted);
  font-size: var(--text-xs);
  line-height: 1.55;
  font-weight: 800;
}

.options-title {
  margin: 12px 0 4px;
  font-size: var(--text-sm);
  font-weight: 1000;
}

.option-row strong {
  white-space: nowrap;
}

.credit-copy {
  display: grid;
  gap: 7px;
  margin-top: 22px;
  padding: 18px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.credit-copy strong {
  color: var(--red);
  font-size: 20px;
  line-height: 1.55;
  font-weight: 1000;
}

.credit-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 800;
}

.price-dialogue {
  margin-top: 38px;
}

.comparison-section {
  padding: 78px 0;
  background: var(--blue);
  color: #fff;
}

.comparison-section .comparison-layout {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 28px;
}

.comparison-section .section-inner {
  width: min(1120px, calc(100% - 48px));
}

.comparison-section .comparison-layout > div:first-child {
  width: 100%;
  justify-self: center;
}

.comparison-section .comparison-layout > .comparison-scroll {
  width: 100%;
}

.comparison-layout p {
  color: #ecfbff;
}

.comparison-layout .section-kicker {
  color: var(--yellow);
}

.comparison-table {
  width: 100%;
  min-width: 0;
  border: 3px solid #111;
  border-radius: 8px;
  background: #fff;
  color: #111;
  box-shadow: 9px 9px 0 #111;
  margin-inline: auto;
}

.comparison-scroll {
  overflow-x: auto;
  padding: 0 0 14px;
  display: block;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.comparison-table > div {
  display: grid;
  grid-template-columns: minmax(92px, 0.8fr) repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.comparison-table > div:last-child {
  border-bottom: 0;
}

.comparison-table span,
.comparison-table b,
.comparison-table strong {
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 12px;
  border-right: 1px solid var(--line);
  font-size: var(--text-xs);
  line-height: 1.45;
  word-break: break-word;
}

.comparison-table span:last-child,
.comparison-table b:last-child,
.comparison-table strong:last-child {
  border-right: 0;
}

.comparison-table strong {
  background: var(--yellow);
}

.comparison-table b {
  color: var(--red);
}

.comparison-dialogue {
  grid-column: 1 / -1;
  background: transparent;
  margin-top: 38px;
  width: min(100%, 860px);
  justify-self: center;
  justify-items: center;
  gap: 12px;
}

.comparison-dialogue .dialogue-line {
  width: 100%;
  max-width: 100%;
}

.comparison-dialogue .dialogue-line.client {
  justify-self: start;
}

.comparison-dialogue .dialogue-line.client .dialogue-bubble span {
  color: #111;
}

.comparison-dialogue .dialogue-line.ranger {
  justify-self: end;
}

.flow-section {
  background: #fff4cf;
}

.flow-section .section-inner {
  width: min(1120px, calc(100% - 48px));
}

.flow-section .center-title {
  margin-bottom: 38px;
}

.flow-section .section-kicker {
  margin: 0 0 8px;
  color: var(--red);
  font-size: var(--text-sm);
  line-height: 1;
}

.flow-section .center-title h2 {
  color: #111;
  font-size: clamp(34px, 4.2vw, 45px);
  line-height: 1.18;
}

.flow-list {
  display: grid;
  gap: 30px;
  justify-items: center;
}

.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.67fr) minmax(0, 1.33fr);
  gap: 22px;
  align-items: start;
  min-height: 240px;
  padding: 28px;
  width: min(100%, 840px);
  border: 2px solid var(--red);
  border-radius: 8px;
  background: #fff;
  box-shadow: 5px 5px 0 #111;
}

.flow-step:not(:last-child)::after {
  position: absolute;
  left: 50%;
  bottom: -26px;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 13px solid var(--red);
  transform: translateX(-50%);
  content: "";
  filter: drop-shadow(2px 2px 0 #111);
}

.flow-step img {
  width: 100%;
  max-width: 90%;
  aspect-ratio: 420 / 310;
  border-radius: 8px;
  object-fit: cover;
  align-self: start;
  justify-self: start;
}

.flow-step > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 8px 0;
  text-align: left;
}

.flow-step span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 24px;
  line-height: 1;
  font-weight: 1000;
}

.flow-step p {
  margin: 0;
  color: #5d636a;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 700;
  text-align: left;
}

.flow-dialogue {
  margin-top: 38px;
}

.voice-section {
  padding: 78px 0;
  background: var(--yellow);
}

.voice-section .section-title-row {
  grid-template-columns: minmax(0, 1fr) 180px;
  align-items: center;
}

.voice-section .section-title-row img {
  width: 170px;
  height: auto;
  justify-self: end;
}

.about-section {
  padding: 64px 0;
  background: #fef5cc;
  color: #111;
}

.about-original {
  width: min(1120px, calc(100% - 48px));
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.about-main-card {
  padding: 36px 32px 40px;
  border: 2px solid #111;
  border-radius: 8px;
  background: #fff;
  box-shadow: 7px 7px 0 #111;
}

.about-original-title {
  margin-bottom: 24px;
  text-align: left;
}

.about-original-title h2 {
  margin: 0;
  color: #111;
  font-size: clamp(24px, 3.5vw, 34px);
  line-height: 1.25;
  font-weight: 1000;
}

.about-original-title p {
  margin: 8px 0 0;
  color: var(--red);
  font-size: var(--text-xs);
  line-height: 1;
  font-weight: 1000;
}

.about-banner {
  width: 100%;
  max-width: 640px;
  aspect-ratio: 640 / 300;
  height: auto;
  margin: 0 auto 30px;
  border-radius: 12px;
  object-fit: cover;
  object-position: top;
}

.about-message {
  display: grid;
  gap: 8px;
  margin: 0 auto 24px;
  color: #ed3a3e;
  font-size: clamp(24px, 4.2vw, 42px);
  line-height: 1.18;
  font-weight: 1000;
}

.about-message span {
  display: block;
}

.about-lead {
  max-width: 640px;
  margin: 0 auto 34px;
  color: #4b5563;
  font-size: var(--text-xs);
  line-height: 1.9;
  font-weight: 700;
}

.about-logo {
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 0 auto 12px;
  object-fit: contain;
}

.about-metaverse {
  margin: 0 auto 26px;
  color: #4b5563;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.7;
  font-weight: 800;
}

.about-support {
  display: grid;
  gap: 2px;
  margin: 0 auto 20px;
  color: #111;
  font-size: clamp(26px, 4.6vw, 44px);
  line-height: 1.18;
  font-weight: 1000;
}

.about-metaverse-copy {
  max-width: 640px;
  margin: 0 auto 30px;
  color: #4b5563;
  font-size: var(--text-xs);
  line-height: 1.9;
  font-weight: 700;
}

.about-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  margin: 0 auto 44px;
}

.about-photo-grid img {
  width: 100%;
  aspect-ratio: 1000 / 436;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.about-photo-grid img:first-child {
  grid-column: auto;
  width: 100%;
  height: 100%;
  aspect-ratio: 1000 / 436;
  justify-self: stretch;
  object-fit: cover;
}

.office-list-wrap {
  margin-top: 54px;
}

.office-heading {
  margin-bottom: 24px;
  text-align: left;
}

.office-heading .section-kicker {
  margin: 0 0 10px;
  color: var(--red);
  font-size: var(--text-xs);
  line-height: 1;
  font-weight: 1000;
}

.office-heading h3,
.about-company-link p {
  margin: 0 0 18px;
  color: #111;
  font-size: 40px;
  line-height: 1.35;
  font-weight: 1000;
}

.office-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 220px));
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  text-align: left;
}

.office-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 220px;
  height: auto;
  min-height: 380px;
  padding: 0;
  border-radius: 8px;
  border: 2px solid #111;
  box-shadow: 5px 5px 0 #111;
  overflow: hidden;
  background: transparent;
  color: #fff;
}

.office-thumb {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f5f5f5;
}

.office-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.office-body {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
  padding: 36px 20px 24px;
  background: #ff6101;
}

.office-item h4 {
  position: absolute;
  top: -12px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 86%;
  min-height: 24px;
  margin: 0;
  padding: 5px 4px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #fff;
  color: #4b5563;
  font-size: var(--text-xs);
  line-height: 1.2;
  text-align: center;
  font-weight: 1000;
}

.office-item p {
  margin: 0;
  color: #fff;
  font-size: var(--text-xs);
  line-height: 1.55;
  font-weight: 700;
}

.office-item a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  color: #fff;
  font-size: var(--text-xs);
  line-height: 1.4;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.office-item a span:first-child {
  font-size: var(--text-xs);
}

.about-company-link {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.about-company-link a {
  padding-inline: 28px;
}

.faq-section {
  background: var(--soft);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 2px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-size: var(--text-lg);
  font-weight: 1000;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.8;
}

.contact-section {
  padding: 86px 0;
  background: var(--red);
  color: #fff;
}

.blue-inquiry-comment {
  display: block;
  width: 405px;
  max-width: 100%;
  height: auto;
  margin-bottom: 16px;
}

@media (max-width: 860px) {
  .blue-inquiry-comment {
    width: 300px;
  }
}

.contact-layout .section-kicker {
  color: var(--red);
}

.section-title-row .section-kicker,
.center-title .section-kicker,
.reason-section .section-kicker,
.savings-layout .section-kicker,
.comparison-layout .section-kicker,
.price-copy .section-kicker,
.contact-layout .section-kicker,
.about-original-title p {
  margin: 0 0 10px;
  font-family: inherit;
  font-size: var(--text-sm);
  line-height: 1;
  font-weight: 1000;
}

.reason-section .center-title .section-kicker,
.savings-layout > div:first-child .section-kicker,
.price-section .price-copy .section-kicker {
  color: var(--red);
}

.section-title-row h2,
.center-title h2,
.savings-layout h2,
.comparison-layout h2,
.price-copy h2,
.contact-layout h2,
.about-original-title h2,
.flow-section .center-title h2 {
  font-family: inherit;
  font-size: 40px;
  line-height: 1.35;
  font-weight: 1000;
  max-width: 620px;
}

.contact-layout p {
  color: #fff3f3;
}

.contact-section .contact-layout > div > h2 {
  margin-inline: auto;
  text-align: center;
}

.contact-section .contact-layout {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.contact-section .contact-layout > div,
.contact-section .contact-layout > form,
.contact-section .contact-layout > .wpcf7 {
  width: min(100%, 720px);
}

.contact-section .contact-layout .contact-info,
.contact-section .contact-layout .present-box,
.contact-section .contact-layout .contact-form {
  justify-self: center;
}

.contact-section .contact-layout .label-row,
.contact-section .contact-layout .contact-info,
.contact-section .contact-layout .present-box,
.contact-section .contact-layout .checkbox-label,
.contact-section .contact-layout .form-phone,
.contact-section .contact-layout .primary-cta.form-cta {
  justify-content: center;
}

.contact-section .contact-layout .label-row {
  justify-content: flex-start;
  text-align: left;
}

.contact-section .contact-layout .contact-info,
.contact-section .contact-layout .present-box {
  text-align: center;
}

.contact-section .contact-layout .contact-form {
  max-width: 720px;
}

.contact-info {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 18px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
}

.present-box {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 18px;
  border: 3px solid #111;
  border-radius: 8px;
  background: var(--yellow);
  color: #111;
  box-shadow: 6px 6px 0 #111;
}

.present-box strong,
.present-box span {
  line-height: 1.55;
  font-weight: 1000;
}

.present-box strong {
  font-size: var(--text-sm);
}

.present-box span {
  font-size: var(--text-xs);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 4px solid #111;
  border-radius: 8px;
  background: #fff;
  color: #111;
  box-shadow: 10px 10px 0 #111;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 1000;
  font-size: var(--text-xs);
}

.label-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.label-row em {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 4px;
  background: #e7eaee;
  color: #333;
  font-size: var(--text-xs);
  font-style: normal;
  font-weight: 1000;
}

.label-row em.required {
  background: var(--red);
  color: #fff;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 2px solid #cbd0d6;
  border-radius: 6px;
  padding: 12px 13px;
  background: #fff;
  color: #111;
  font-size: var(--text-sm);
}

.contact-form textarea {
  resize: vertical;
}

.checkbox-label {
  display: flex !important;
  flex-direction: row;
  gap: 10px !important;
  align-items: center;
  font-size: var(--text-xs);
  line-height: 1.5;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.form-cta,
.form-phone {
  width: 100%;
  margin-top: 6px;
}

.form-cta,
.form-phone,
.about-company-link a,
.office-item a,
.secondary-cta,
.primary-cta,
.phone-cta {
  font-size: var(--text-sm);
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 34px 24px 92px;
  background: #fff;
  color: #111;
  text-align: center;
}

.site-footer img {
  width: 190px;
  margin-bottom: 4px;
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.site-footer a {
  color: #111;
  font-weight: 1000;
}

.faq-page {
  background: #fff8d6;
  color: var(--ink);
}

.faq-hero {
  padding: 72px 0 38px;
  background: var(--yellow) url("../img/hero-fv-bg.webp") center center / cover no-repeat;
  border-bottom: 4px solid #111;
}

.faq-hero-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.faq-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.06;
  font-weight: 1000;
}

.faq-hero-lead {
  max-width: 780px;
  margin: 18px 0 0;
  font-size: var(--text-lg);
  line-height: 1.9;
  font-weight: 700;
}

.faq-page-section {
  padding: 52px 0 86px;
  background: #fff8d6;
}

.faq-page-layout {
  display: grid;
  gap: 28px;
}

.faq-page-copy {
  max-width: 860px;
}

.faq-page-copy p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: var(--text-md);
  line-height: 1.95;
}

.faq-page-list {
  display: grid;
  gap: 14px;
}

.faq-page-card {
  border: 3px solid #111;
  border-radius: 10px;
  background: #fff8d6;
  box-shadow: 8px 8px 0 #111;
  overflow: hidden;
}

.faq-page-card summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  background: linear-gradient(180deg, #fff 0%, #ffffff 100%);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 1000;
}

.faq-page-card summary::-webkit-details-marker {
  display: none;
}

.faq-page-card p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: var(--text-md);
  line-height: 1.95;
}

.faq-cta-band {
  margin-top: 10px;
}

.faq-cta-band .cta-inner {
  width: min(920px, calc(100% - 32px));
}

.blog-page {
  background: #fff8d6;
}

.blog-hero {
  padding: 34px 0 30px;
  background:
    linear-gradient(rgba(255, 208, 0, 0.34), rgba(255, 208, 0, 0.34)),
    url("../img/hero-fv-bg.webp") center center / cover no-repeat;
  border-bottom: 4px solid #111;
}

.blog-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 18px;
  align-items: center;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.blog-hero-copy,
.blog-featured-card,
.blog-card,
.blog-hero-panel {
  border: 4px solid #111;
  box-shadow: 5px 5px 0 #111;
  background: #ffffff;
}

.blog-hero-copy {
  padding: 26px 24px 24px;
  border-radius: 18px;
}

.blog-hero h1 {
  margin: 4px 0 10px;
  font-size: clamp(42px, 4.2vw, 60px);
  line-height: 1.05;
  font-weight: 1000;
}

.blog-hero-lead {
  max-width: 36em;
  font-size: var(--text-lg);
  line-height: 1.8;
  font-weight: 700;
}

.blog-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.blog-hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 3px solid #111;
  border-radius: 999px;
  background: #ffd200;
  font-size: var(--text-sm);
  font-weight: 800;
}

.blog-hero-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 10px;
  border-radius: 18px;
}

.blog-hero-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.blog-featured,
.blog-list-section {
  padding: 56px 0;
}

.blog-title-row p:last-child {
  max-width: 34em;
  font-size: var(--text-sm);
  line-height: 1.8;
}

.blog-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.blog-featured-card {
  border-radius: 18px;
  overflow: hidden;
}

.blog-featured-image {
  margin: -4px -4px 0;
  border-width: 0 0 4px;
  box-shadow: none;
}

.blog-featured-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-featured-copy {
  padding: 18px 18px 20px;
}

.blog-category {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #111;
  color: #ffd200;
  font-size: var(--text-sm);
  font-weight: 800;
}

.blog-featured-copy h3 {
  margin: 12px 0 10px;
  font-size: 23px;
  line-height: 1.45;
}

.blog-featured-copy p {
  font-size: var(--text-sm);
  line-height: 1.8;
}

.blog-featured-copy a {
  display: inline-flex;
  margin-top: 14px;
  font-size: var(--text-sm);
  font-weight: 800;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.blog-card {
  min-height: 170px;
  padding: 20px 18px 18px;
  border-radius: 18px;
}

.blog-card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: #ffd200;
  border: 3px solid #111;
  font-size: var(--text-sm);
  font-weight: 900;
}

.blog-card h3 {
  margin: 14px 0 10px;
  font-size: 22px;
  line-height: 1.45;
}

.blog-card p {
  font-size: var(--text-sm);
  line-height: 1.7;
}

.blog-cta-band {
  padding: 30px 0 52px;
  background: #FFF8D6;
}

.blog-cta-band .cta-inner {
  max-width: 1080px;
}

.members-page {
  background: #fff8d6;
}

.members-hero {
  padding: 34px 0 30px;
  background:
    linear-gradient(rgba(255, 208, 0, 0.32), rgba(255, 208, 0, 0.32)),
    url("../img/hero-fv-bg.webp") center center / cover no-repeat;
  border-bottom: 4px solid #111;
}

.members-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 18px;
  align-items: center;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.members-hero-copy,
.members-hero-panel,
.member-card,
.office-member-card {
  border: 4px solid #111;
  box-shadow: 5px 5px 0 #111;
  background: #fff;
}

.members-hero-copy {
  padding: 26px 24px 24px;
  border-radius: 18px;
}

.members-hero h1 {
  margin: 4px 0 10px;
  font-size: clamp(42px, 4.2vw, 60px);
  line-height: 1.05;
  font-weight: 1000;
}

.members-hero-lead {
  max-width: 36em;
  font-size: var(--text-lg);
  line-height: 1.8;
  font-weight: 700;
}

.members-hero-panel {
  overflow: hidden;
  border-radius: 18px;
}

.members-hero-panel img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.members-section {
  padding: 56px 0;
}

.members-title-row p:last-child {
  max-width: 34em;
  font-size: var(--text-sm);
  line-height: 1.8;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.member-card {
  border-radius: 18px;
  overflow: hidden;
}

.member-photo {
  border-bottom: 4px solid #111;
  background: #ffd200;
}

.member-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.member-copy {
  padding: 18px 18px 20px;
}

.member-role {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #111;
  color: #ffd200;
  font-size: var(--text-xs);
  font-weight: 800;
}

.member-copy h3 {
  margin: 12px 0 10px;
  font-size: 23px;
  line-height: 1.45;
}

.member-copy p {
  font-size: var(--text-sm);
  line-height: 1.8;
}

.members-offices {
  background: #fff;
  border-top: 4px solid #111;
  border-bottom: 4px solid #111;
}

.office-member-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.office-member-card {
  border-radius: 18px;
  overflow: hidden;
}

.office-member-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.office-member-copy {
  padding: 16px 18px 18px;
}

.office-member-copy h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.45;
}

.office-member-copy p {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.8;
}

.members-cta-band {
  padding: 30px 0 52px;
  background: #FFF8D6;
}

.members-cta-band .cta-inner {
  max-width: 1080px;
}

.price-page {
  background: #fff8d6;
}

/* ===== 共通ページヒーロー（TOPを除く全ページ） ===== */
.page-hero {
  padding: 44px 0 40px;
}

.page-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-hero-inner .section-kicker {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  margin: 0;
}

.page-hero-inner h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

@media (max-width: 767px) {
  .page-hero {
    padding: 32px 0 28px;
  }

  .page-hero-inner h1 {
    font-size: clamp(28px, 8vw, 40px);
  }
}

.price-page-hero {
  padding: 26px 0 30px;
  background:
    linear-gradient(rgba(255, 208, 0, 0.34), rgba(255, 208, 0, 0.34)),
    url("../img/hero-fv-bg.webp") center center / cover no-repeat;
  border-bottom: 4px solid #111;
}

.price-page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 18px;
  align-items: center;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.breadcrumb-wrap {
  background: var(--soft);
}

.breadcrumb-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 14px 0;
  color: var(--muted);
  font-size: var(--text-xs);
  font-weight: 800;
}

.breadcrumb-inner a {
  color: var(--blue-dark);
}

.site-breadcrumb {
  background: #fff8d6;
  border-bottom: 0;
}

.site-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 14px 0;
  color: var(--muted);
  font-size: var(--text-lg);
  font-weight: 800;
  line-height: 1.4;
}

.site-breadcrumb__item {
  display: inline-flex;
  align-items: center;
}

.site-breadcrumb__link,
.site-breadcrumb__current {
  font-size: inherit;
  line-height: inherit;
}

.price-page-hero-copy {
  display: grid;
  gap: 10px;
  align-content: start;
}

.price-page-hero h1 {
  margin: 4px 0 10px;
  font-size: clamp(42px, 4.2vw, 60px);
  line-height: 1.05;
  font-weight: 1000;
}

.price-page-hero-lead {
  max-width: 34em;
  font-size: var(--text-lg);
  line-height: 1.8;
  font-weight: 700;
}

.price-page-hero-panel {
  overflow: hidden;
  border: 4px solid #111;
  border-radius: 18px;
  box-shadow: 5px 5px 0 #111;
  background: #fff8d6;
}

.price-page-hero-panel img {
  display: block;
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.price-page-section {
  padding-top: 56px;
}

.price-detail-section {
  padding: 56px 0 46px;
  background: #fff8d6;
}

.price-detail-grid {
  display: grid;
  gap: 22px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.price-detail-card {
  padding: 30px;
  border: 4px solid #111;
  border-radius: 8px;
  background: #fff;
  box-shadow: 8px 8px 0 rgba(17, 17, 17, 0.12);
}

.price-detail-primary {
  background: #fff;
}

.price-card-head {
  text-align: center;
}

.price-card-head h2 {
  margin: 6px 0 4px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
  font-weight: 1000;
}

.price-card-head p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.7;
  font-weight: 800;
}

.price-tier-block + .price-tier-block {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px solid #111;
}

.price-tier-label {
  margin: 0;
  color: #111;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 1000;
  text-align: center;
}

.price-tier-price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  margin: 12px 0 0;
  color: #111;
  font-size: 62px;
  line-height: 1;
  font-weight: 1000;
}

.price-tier-price span:first-child {
  font-size: var(--text-sm);
  margin-bottom: 6px;
}

.price-tier-price span:last-child {
  font-size: 22px;
  margin-bottom: 8px;
}

.price-tier-price-plus {
  font-size: 48px;
}

.price-tier-price-plus span:first-child {
  font-size: 22px;
}

.price-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: var(--text-xs);
  line-height: 1.7;
  font-weight: 800;
  text-align: center;
}

.price-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.price-service-list li {
  position: relative;
  padding-left: 24px;
  color: #222;
  font-size: var(--text-lg);
  line-height: 1.55;
  font-weight: 900;
}

.price-service-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 1000;
}

.price-detail-table-card {
  display: grid;
  gap: 26px;
}

.price-table-block h3 {
  margin: 0;
  color: #111;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 1000;
  text-align: center;
}

.price-table-block > p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: var(--text-xs);
  line-height: 1.7;
  font-weight: 800;
  text-align: center;
}

.price-table {
  margin-top: 16px;
  border-top: 2px solid #111;
  border-bottom: 2px solid #111;
}

.price-table-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.price-table-row:first-child {
  border-top: 0;
}

.price-table-row span,
.price-table-row strong {
  color: #111;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 1000;
}

.price-table-row strong {
  white-space: nowrap;
}

.price-option-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.price-option-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.price-option-row:first-child {
  border-top: 0;
}

.price-option-row p {
  margin: 0;
  color: #111;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 1000;
}

.price-option-row strong {
  color: #111;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 1000;
  white-space: nowrap;
}

.price-payment-section {
  padding: 56px 0 62px;
  background: #fff8d6;
}

.price-payment-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.price-payment-banner {
  overflow: hidden;
  border: 4px solid #111;
  border-radius: 8px 8px 0 0;
  box-shadow: 8px 8px 0 rgba(17, 17, 17, 0.16);
}

.price-payment-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.price-payment-panel {
  display: grid;
  gap: 26px;
  justify-items: center;
  padding: 28px 30px 34px;
  border: 4px solid #111;
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: #fff;
  box-shadow: 8px 8px 0 rgba(17, 17, 17, 0.16);
}

.price-bottom-cta .cta-inner {
  background: #fff;
}

.price-payment-copy {
  text-align: center;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 1000;
}

.price-payment-copy p {
  margin: 0;
}

.price-payment-copy span {
  color: var(--red);
}

.price-payment-list {
  display: grid;
  gap: 10px;
  width: min(100%, 600px);
}

.price-payment-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
}

.price-payment-check {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 2px solid #fff;
  border-radius: 4px;
  font-size: var(--text-sm);
  font-weight: 1000;
}

.price-payment-item p {
  margin: 0;
  font-size: var(--text-lg);
  line-height: 1.45;
  font-weight: 900;
}

.price-payment-ranger {
  width: min(360px, 100%);
}

.price-payment-ranger img {
  width: 100%;
  height: auto;
}

.price-page-bottom {
  padding: 10px 0 56px;
}

.price-page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

@media (max-width: 960px) {
  .price-page-hero-inner,
  .price-detail-grid {
    grid-template-columns: 1fr;
  }

  .price-page-hero-panel {
    order: -1;
  }

  .price-service-list {
    grid-template-columns: 1fr;
  }

  .price-payment-copy {
    font-size: 30px;
  }

  .price-payment-panel {
    padding-inline: 20px;
  }
}

@media (max-width: 640px) {
  .breadcrumb-inner,
  .price-page-hero-inner,
  .price-detail-grid,
  .price-payment-inner {
    width: min(100%, calc(100% - 24px));
  }

  .price-detail-card,
  .price-payment-panel {
    padding: 22px 18px;
  }

  .price-tier-price {
    font-size: 44px;
  }

  .price-tier-price-plus {
    font-size: 36px;
  }

  .price-table-row span,
  .price-table-row strong,
  .price-option-row p,
  .price-option-row strong,
  .price-service-list li,
  .price-payment-item p {
    font-size: var(--text-sm);
  }

  .price-payment-copy {
    font-size: 24px;
  }
}

.privacy-page {
  background: #fff8d6;
}

.privacy-hero {
  padding: 34px 0 30px;
  background:
    linear-gradient(rgba(255, 208, 0, 0.34), rgba(255, 208, 0, 0.34)),
    url("../img/hero-fv-bg.webp") center center / cover no-repeat;
  border-bottom: 4px solid #111;
}

.privacy-hero-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.privacy-hero h1 {
  margin: 4px 0 10px;
  font-size: clamp(42px, 4.2vw, 60px);
  line-height: 1.05;
  font-weight: 1000;
}

.privacy-hero-lead {
  max-width: 40em;
  font-size: var(--text-lg);
  line-height: 1.8;
  font-weight: 700;
}

.privacy-content-section {
  padding: 56px 0;
}

.privacy-layout {
  display: grid;
  gap: 28px;
}

.privacy-copy {
  max-width: 860px;
}

.privacy-copy p {
  font-size: var(--text-sm);
  line-height: 1.9;
}

.privacy-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-left: 4px solid var(--red);
  padding-left: 14px;
  margin: 0;
}

.privacy-list {
  display: grid;
  gap: 14px;
}

.privacy-card {
  padding: 20px 22px;
  border: 4px solid #111;
  border-radius: 14px;
  background: #fff;
  box-shadow: 5px 5px 0 #111;
}

.privacy-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--red);
}

.privacy-card p {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.85;
}

.privacy-card p + p {
  margin-top: 10px;
}

.privacy-ol {
  margin: 12px 0 0;
  padding-left: 1.6em;
  font-size: var(--text-sm);
  line-height: 1.85;
  list-style: none;
  counter-reset: privacy-ol-counter;
}

.privacy-ol li {
  counter-increment: privacy-ol-counter;
  position: relative;
  padding-left: 2em;
  margin-bottom: 4px;
}

.privacy-ol li::before {
  content: "(" counter(privacy-ol-counter) ")";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--red);
}

.privacy-note {
  margin-top: 10px !important;
  font-size: 1.2rem !important;
  color: #666;
}

.privacy-org {
  border-top: 2px solid #111;
  padding-top: 28px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.privacy-org-name {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.privacy-org p {
  font-size: var(--text-sm);
  line-height: 1.7;
  margin: 0;
}

.privacy-org a {
  color: inherit;
  text-decoration: underline;
}

.privacy-cta-band {
  padding: 30px 0 52px;
  background: #fff8d6;
}

.privacy-cta-band .cta-inner {
  max-width: 1080px;
}

.company-page {
  background: #fff8d6;
}

.company-hero {
  padding: 34px 0 30px;
  background:
    linear-gradient(rgba(255, 208, 0, 0.34), rgba(255, 208, 0, 0.34)),
    url("../img/hero-fv-bg.webp") center center / cover no-repeat;
  border-bottom: 4px solid #111;
}

.company-hero-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.company-hero h1 {
  margin: 4px 0 10px;
  font-size: clamp(42px, 4.2vw, 60px);
  line-height: 1.05;
  font-weight: 1000;
}

.company-hero-lead {
  max-width: 40em;
  font-size: var(--text-lg);
  line-height: 1.8;
  font-weight: 700;
}

.company-info-section {
  padding: 56px 0;
}

.company-layout {
  display: grid;
  gap: 28px;
}

.company-copy {
  max-width: 860px;
}

.company-copy p:last-child {
  margin-top: 18px;
  font-size: var(--text-sm);
  line-height: 1.9;
}

.company-table {
  display: grid;
  gap: 12px;
}

.company-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 20px;
  border: 4px solid #111;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 5px 5px 0 #111;
}

.company-row dt {
  font-weight: 1000;
  color: var(--red);
}

.company-row dd {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.8;
}

.company-offices-section {
  padding: 10px 0 56px;
}

.company-office-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.company-office-card {
  border: 4px solid #111;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 5px 5px 0 #111;
  background: #fff8d6;
}

.company-office-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.company-office-copy {
  padding: 32px 36px 40px;
}

.company-office-copy h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.45;
}

.company-office-copy p {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.8;
}

.office-body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.map-pin-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: #fff;
}

.company-cta-band {
  padding: 30px 0 52px;
  background: #fff8d6;
}

.company-cta-band .cta-inner {
  max-width: 1080px;
}

@media (max-width: 720px) {
  .price-page-hero {
    padding: 24px 0 20px;
  }

  .price-page-hero-inner {
    width: min(100% - 28px, 1120px);
    grid-template-columns: 1fr;
  }

  .price-page-hero h1 {
    font-size: 34px;
  }

  .price-page-hero p {
    font-size: var(--text-sm);
  }

  .privacy-hero {
    padding: 24px 0 20px;
  }

  .privacy-hero-inner {
    width: min(100% - 28px, 1120px);
  }

  .privacy-hero h1 {
    font-size: 34px;
  }

  .privacy-hero-lead,
  .privacy-copy p:last-child,
  .privacy-card p {
    font-size: var(--text-sm);
  }

  .privacy-card h3 {
    font-size: 20px;
  }

  .company-hero {
    padding: 24px 0 20px;
  }

  .company-hero-inner {
    width: min(100% - 28px, 1120px);
  }

  .company-hero h1 {
    font-size: 34px;
  }

  .company-hero-lead,
  .company-copy p:last-child,
  .company-row dd,
  .company-office-copy p {
    font-size: var(--text-sm);
  }

  .company-row {
    grid-template-columns: 1fr;
  }

  .company-office-copy h3 {
    font-size: 20px;
  }
}

@media (max-width: 900px) {
  .price-page-hero-panel img {
    min-height: 320px;
  }
}

@media (max-width: 720px) {
  .faq-hero-inner,
  .faq-page-layout {
    width: min(100% - 28px, 1120px);
  }

  .faq-hero {
    padding: 56px 0 30px;
  }

  .faq-page-section {
    padding: 40px 0 72px;
  }

  .faq-page-card summary {
    font-size: var(--text-lg);
  }

  .faq-page-card p,
  .faq-page-copy p:last-child,
  .faq-hero-lead {
    font-size: var(--text-sm);
  }

  .blog-hero {
    padding: 24px 0 20px;
  }

  .blog-hero-inner {
    width: min(100% - 28px, 1120px);
    grid-template-columns: 1fr;
  }

  .blog-hero-copy {
    padding: 22px 18px 20px;
  }

  .blog-hero h1 {
    font-size: 34px;
  }

  .blog-hero-lead,
  .blog-title-row p:last-child,
  .blog-featured-copy p,
  .blog-card p {
    font-size: var(--text-sm);
  }

  .blog-featured-copy h3,
  .blog-card h3 {
    font-size: 20px;
  }

  .members-hero {
    padding: 24px 0 20px;
  }

  .members-hero-inner {
    width: min(100% - 28px, 1120px);
    grid-template-columns: 1fr;
  }

  .members-hero-copy {
    padding: 22px 18px 20px;
  }

  .members-hero h1 {
    font-size: 34px;
  }

  .members-hero-lead,
  .members-title-row p:last-child,
  .member-copy p,
  .office-member-copy p {
    font-size: var(--text-sm);
  }

  .member-copy h3,
  .office-member-copy h3 {
    font-size: 20px;
  }
}

@media (max-width: 900px) {
  .blog-featured-grid,
  .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero-panel {
    min-height: 320px;
  }

  .members-grid,
  .office-member-grid {
    grid-template-columns: 1fr;
  }

  .members-hero-panel img {
    min-height: 320px;
  }

  .company-office-grid {
    grid-template-columns: 1fr;
  }
}

.mobile-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: none;
  grid-template-columns: 1fr 160px;
  border-top: 3px solid #111;
  box-shadow: 0 -8px 18px rgba(0, 0, 0, 0.18);
}

.mobile-sticky a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 58px;
  background: var(--green);
  color: #fff;
  font-weight: 1000;
}

.mobile-sticky-main {
  display: flex;
  align-items: center;
  gap: 5px;
}

.mobile-sticky-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.mobile-sticky-sub {
  font-size: 1rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: 0.03em;
}

.mobile-sticky a:last-child {
  background: var(--yellow);
  color: #111;
  border-left: 3px solid #111;
  white-space: nowrap;
}

@media (max-width: 1040px) {
  .desktop-nav,
  .phone-link {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 42px;
  }

  .hero-blue {
    inset: auto 0 0;
    width: 100%;
    height: 340px;
    clip-path: none;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-woman {
    right: -46px;
    bottom: 0;
    width: 520px;
  }

  .warning-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .warning-section .warning-list {
    grid-template-columns: 1fr;
  }

  .price-layout,
  .comparison-layout,
  .about-layout,
  .contact-layout,
  .faq-layout,
  .savings-layout,
  .problem-grid,
  .section-title-row {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    width: min(640px, calc(100% - 28px));
  }

  .cta-actions {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .menu-square {
    display: grid;
  }
}

@media (max-width: 860px) {
  .site-header {
    height: 70px;
  }

  .brand {
    min-width: 0;
    padding-inline: 16px 10px;
  }

  .brand img {
    width: clamp(170px, 34vw, 210px);
  }

  .line-square,
  .menu-square {
    width: 70px;
    height: 70px;
    flex: 0 0 auto;
  }

  .mobile-menu-panel {
    top: 64px;
  }

  .section-inner,
  .hero-inner {
    width: min(100% - 32px, 1120px);
  }

  .hero {
    min-height: 0;
  }

  .hero-inner {
    gap: 20px;
    padding-top: 34px;
  }

  .hero-alert {
    min-width: 0;
    width: min(100%, 560px);
    padding-inline: 14px;
    font-size: 23px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero h1 span {
    font-size: 56px;
  }

  .hero-lead {
    max-width: 560px;
    font-size: 20px;
  }

  .ranger-banner {
    width: min(380px, 88%);
  }

  .hero-blue {
    height: 300px;
  }

  .hero-visual {
    min-height: 330px;
  }

  .hero-woman {
    right: -24px;
    width: min(420px, 62vw);
  }

  .problem-grid,
  .warning-section .section-inner {
    width: min(100% - 32px, 760px);
  }

  .warning-section .section-title-row > p {
    margin: 46px 0 0;
    font-size: 23px;
  }

  .risk-story {
    gap: 26px;
    margin-top: 34px;
    padding: 18px 14px 24px;
    width: calc(100vw - 28px);
  }

  .risk-panel {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "visual"
      "copy";
    gap: 16px;
    padding: 24px 20px 22px;
  }

  .risk-title-row {
    grid-template-columns: 1fr;
  }

  .risk-title-row h3 {
    font-size: 24px;
  }

  .risk-visual {
    justify-self: center;
  }

  .risk-copy p {
    font-size: var(--text-xs);
  }

  .risk-bridge {
    padding-inline: 42px;
    font-size: 21px;
  }

  .recommend-panel {
    padding: 28px 20px 24px;
  }

  .recommend-panel h3 {
    font-size: 23px;
  }

  .recommend-panel strong {
    font-size: 27px;
  }

  .reason-grid,
  .voice-grid,
  .price-panel ul,
  .office-grid {
    grid-template-columns: 1fr;
  }

  .reason-card,
  .voice-card {
    max-width: 640px;
    justify-self: center;
  }

  .voice-grid .voice-card {
    width: min(66%, 420px);
  }

  .comparison-scroll {
    margin-inline: -16px;
    padding-inline: 16px;
    overflow-x: auto;
    scrollbar-gutter: stable;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-table {
    width: 100%;
    min-width: 820px;
  }

  .flow-step {
    grid-template-columns: 1fr;
  }

  .flow-step img {
    width: min(100%, 420px);
    justify-self: center;
  }

  .option-row {
    align-items: flex-start;
  }

  .mobile-sticky {
    display: grid;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 66px;
  }

  .brand {
    padding-left: 14px;
  }

  .brand img {
    width: 178px;
  }

  .line-square,
  .menu-square {
    width: 64px;
    height: 66px;
  }

  .line-square img {
    width: 40px;
  }

  .menu-square span {
    width: 34px;
  }

  .mobile-menu-panel {
    top: 60px;
  }

  .section-inner {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    min-height: 0;
  }

  .hero-inner {
    width: min(100% - 28px, 1120px);
    gap: 16px;
    padding: 28px 0 18px;
  }

  .hero-alert {
    min-width: 0;
    width: 100%;
    padding: 11px 10px;
    font-size: 20px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero h1 span {
    font-size: 48px;
  }

  .hero-lead {
    font-size: var(--text-lg);
    line-height: 1.75;
  }

  .hero-badges span {
    font-size: var(--text-xs);
  }

  .primary-cta,
  .secondary-cta,
  .phone-cta {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    font-size: var(--text-xs);
  }

  .ranger-banner {
    width: 300px;
  }

  .hero-blue {
    height: 270px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .hero-woman {
    right: -36px;
    bottom: 0;
    width: 360px;
  }

  .problem-section,
  .warning-section,
  .reason-section,
  .price-section,
  .savings-section,
  .flow-section,
  .faq-section,
  .about-section,
  .contact-section {
    padding: 58px 0;
  }

  h2 {
    font-size: 30px;
  }

  .section-lead,
  .section-title-row > p,
  .price-copy p,
  .comparison-layout p,
  .about-layout p,
  .contact-layout p {
    font-size: var(--text-sm);
  }

  .problem-panel {
    grid-template-columns: 1fr;
    padding: 18px;
    box-shadow: 6px 6px 0 #111;
  }

  .problem-panel img {
    justify-self: center;
  }

  .problem-callout strong {
    font-size: 21px;
  }

  .problem-callout span {
    font-size: var(--text-xl);
  }

  .warning-list,
  .reason-grid,
  .voice-grid,
  .price-panel ul,
  .office-grid {
    grid-template-columns: 1fr;
  }

  .warning-section .section-inner {
    width: min(100% - 28px, 760px);
  }

  .warning-section .section-title-row h2 {
    font-size: 30px;
  }

  .warning-section .section-title-row > p {
    margin: 44px 0 0;
    font-size: 21px;
  }

  .warning-section .center-title.compact {
    margin-bottom: 36px;
    padding: 16px 14px;
  }

  .warning-section .center-title.compact p {
    font-size: var(--text-xl);
  }

  .warning-card {
    min-height: 238px;
    padding: 22px 18px;
  }

  .warning-card h3 {
    min-height: 0;
  }

  .warning-card .number {
    font-size: 36px;
  }

  .warning-card img {
    width: 126px;
    height: 126px;
  }

  .risk-story {
    gap: 26px;
    margin-top: 32px;
    padding: 16px 12px 22px;
    width: calc(100vw - 24px);
  }

  .risk-panel {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "visual"
      "copy";
    gap: 15px;
    padding: 22px 16px 20px;
    box-shadow: 5px 5px 0 #111;
  }


  .risk-title-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-bottom: 16px;
  }

  .risk-title-row h3 {
    font-size: 23px;
  }

  .risk-alert-icon {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }

  .risk-visual {
    justify-self: center;
  }

  .risk-visual img {
    width: 156px;
  }

  .risk-copy p {
    font-size: var(--text-xs);
    line-height: 1.82;
  }

  .risk-bridge {
    padding: 0 36px;
    font-size: var(--text-xl);
    line-height: 1.65;
  }

  .risk-bridge strong {
    display: inline;
  }

  .risk-bridge::before,
  .risk-bridge::after {
    height: 48px;
  }

  .risk-bridge::before {
    left: 7px;
  }

  .risk-bridge::after {
    right: 7px;
  }

  .recommend-panel {
    padding: 26px 16px 22px;
    box-shadow: 5px 5px 0 #111;
  }

  .recommend-panel h3 {
    font-size: 22px;
  }

  .recommend-panel strong {
    font-size: 25px;
  }

  .recommend-panel img {
    justify-self: center;
    width: min(300px, 94%);
    margin-top: 18px;
  }

  .dialogue-strip {
    gap: 15px;
    padding: 0;
    box-shadow: none;
  }

  .dialogue-line {
    gap: 10px;
  }

  .dialogue-avatar {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
    box-shadow: 3px 3px 0 #111;
  }

  .dialogue-line.ranger .dialogue-avatar {
    padding: 5px;
  }

  .dialogue-line.ranger .dialogue-avatar--icon {
    padding: 0;
    background: transparent;
    object-fit: cover;
  }

  .dialogue-bubble {
    padding: 14px;
    font-size: var(--text-sm);
    line-height: 1.65;
    box-shadow: 4px 4px 0 rgba(17, 17, 17, 0.14);
  }

  .dialogue-bubble::before {
    top: 20px;
    width: 11px;
    height: 11px;
  }

  .dialogue-line.client .dialogue-bubble::before {
    left: -8px;
  }

  .dialogue-line.ranger .dialogue-bubble::before {
    right: -8px;
  }

  .cta-inner {
    text-align: center;
    padding: 54px 20px 26px;
    box-shadow: 6px 6px 0 rgba(17, 17, 17, 0.32);
  }

  .cta-ribbon {
    width: 240px;
    height: 58px;
    top: -33px;
  }

  .cta-inner h2 {
    font-size: 25px;
  }

  .cta-band .primary-cta,
  .cta-band .phone-cta {
    min-height: 56px;
    font-size: var(--text-sm);
    border-width: 3px;
  }

  .cta-phone {
    padding-inline: 44px;
  }

  .cta-phone::before,
  .cta-phone::after {
    height: 52px;
  }

  .cta-phone > span {
    font-size: var(--text-xs);
  }

  .cta-phone a {
    font-size: 20px;
  }

  .phone-emoji {
    width: 20px;
    height: 20px;
  }

  .cta-rangers {
    width: min(330px, 92%);
  }

  .price-panel {
    padding: 22px;
    box-shadow: 6px 6px 0 var(--yellow);
  }

  .price-main {
    font-size: 43px;
  }

  .savings-layout h3 {
    margin-top: 14px;
    font-size: 24px;
  }

  .comparison-table {
    width: 100%;
    overflow: hidden;
    box-shadow: 6px 6px 0 #111;
  }

  .comparison-table > div {
    grid-template-columns: 0.72fr repeat(3, 1fr);
  }

  .comparison-table span,
  .comparison-table b,
  .comparison-table strong {
    min-height: 74px;
    padding: 9px;
    font-size: var(--text-2xs);
  }

  .flow-step {
    grid-template-columns: 1fr;
  }

  .flow-step img {
    width: 100%;
    height: auto;
  }

  .voice-section .section-title-row {
    grid-template-columns: 1fr;
  }

  .voice-section .section-title-row img {
    justify-self: center;
  }

  .contact-form {
    padding: 18px;
    box-shadow: 6px 6px 0 #111;
  }

  .mobile-sticky {
    display: grid;
  }
}

@media (max-width: 480px) {
  .brand img {
    width: 164px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero h1 span {
    font-size: 42px;
  }

  .hero-alert {
    font-size: var(--text-lg);
  }

  .hero-lead {
    font-size: var(--text-sm);
  }

  .hero-woman {
    right: -24px;
    width: 330px;
  }

  .problem-heading .section-lead {
    font-size: 26px;
  }

  .problem-panel li {
    padding-left: 38px;
    font-size: var(--text-lg);
  }

  .problem-panel li::before {
    width: 25px;
    height: 25px;
    font-size: var(--text-xl);
  }

  .risk-title-row h3 {
    font-size: 21px;
  }

  .risk-bridge {
    padding-inline: 30px;
    font-size: var(--text-lg);
  }

  .recommend-panel strong {
    font-size: 23px;
  }

  .dialogue-line {
    align-items: flex-start;
  }

  .dialogue-avatar {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .dialogue-bubble {
    padding: 12px;
    font-size: var(--text-xs);
  }

  .cta-phone {
    padding-inline: 34px;
  }

  .cta-phone a {
    font-size: 20px;
  }

  .price-main {
    font-size: 36px;
  }

  .option-row {
    display: grid;
    gap: 4px;
  }

  .option-row strong {
    white-space: normal;
  }

  .mobile-sticky {
    grid-template-columns: 1fr 150px;
  }

  .mobile-sticky a {
    min-height: 56px;
    font-size: var(--text-xs);
  }
}

@media (max-width: 380px) {
  .brand img {
    width: 154px;
  }

  .line-square,
  .menu-square {
    width: 56px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero h1 span {
    font-size: 40px;
  }
}

.comic-hero {
  min-height: clamp(560px, 58vw, 730px);
  background: var(--yellow) url("../img/hero-fv-bg.webp") center center / cover no-repeat;
}

.comic-hero .comic-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.64fr) minmax(300px, 0.62fr);
  gap: 0;
  align-items: center;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  min-height: clamp(540px, 56vw, 690px);
  padding: 26px 14px 44px;
}

.hero-screen-copy {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.hero-speech {
  position: relative;
  z-index: 2;
  aspect-ratio: 270 / 146;
  min-height: 0;
  max-width: 980px;
  margin-right: -76px;
  transform: rotate(-1.9deg) scale(1.04);
  transform-origin: left center;
}

.hero-speech-shape {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.hero-speech-shape-mobile {
  display: none;
}

.hero-bubble-copy {
  container-type: inline-size;
  position: absolute;
  top: 15.6%;
  left: 14.8%;
  z-index: 1;
  width: 64.5%;
  aspect-ratio: 658 / 370;
  color: #050505;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic StdN", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-weight: 900;
  transform: rotate(-0.2deg);
  transform-origin: center;
}

.hero-bubble-top-strip {
  position: absolute;
  top: 4.6%;
  left: 2.4%;
  z-index: 10;
  width: 66.6%;
  height: 10.5%;
  overflow: visible;
  transform: skewX(-2.5deg) rotate(-0.6deg);
  transform-origin: left center;
}

.hero-bubble-top-strip::after {
  position: absolute;
  inset: 0.46cqw -0.46cqw -0.46cqw 0.46cqw;
  z-index: 0;
  content: "";
  background: rgba(0, 0, 0, 0.35);
  clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
}

.hero-bubble-top-strip::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: #050505;
  clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
}

.hero-bubble-warning {
  position: absolute;
  top: -38%;
  left: -1.4%;
  z-index: 12;
  width: 10.95cqw;
  height: 10.03cqw;
  transform: skewX(2.5deg) rotate(0.6deg);
  transform-origin: center;
}

.hero-bubble-warning svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bubble-top-copy {
  position: absolute;
  top: 2.6%;
  left: 14.8%;
  z-index: 11;
  height: 5.32cqw;
  color: #f2de14;
  font-size: 4.26cqw;
  line-height: 5.32cqw;
  letter-spacing: 0.055em;
  white-space: nowrap;
  text-shadow: 0.3cqw 0.3cqw 0 #1b1b00, 0 0 0.15cqw #ffe600;
  transform: skewX(-2deg) scaleX(1.02);
  transform-origin: left center;
}

.hero-bubble-main {
  position: absolute;
  top: 13.8%;
  left: 1.8%;
  z-index: 3;
  width: 98.4%;
  height: 66.1%;
  transform: skewX(-3.5deg);
  transform-origin: left top;
}

.hero-bubble-main-top {
  display: flex;
  align-items: flex-end;
  height: 43.8%;
  white-space: nowrap;
}

.hero-bubble-line-logo {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-right: 2.2cqw;
  color: #07a837;
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: 19.3cqw;
  font-style: normal;
  font-weight: 900;
  line-height: 0.74;
  letter-spacing: -0.07em;
  white-space: nowrap;
  transform: scaleX(1.04) skewX(-1.2deg);
  transform-origin: left bottom;
}

.hero-bubble-line-logo::before,
.hero-bubble-line-logo::after,
.hero-bubble-line-fill {
  display: block;
  white-space: nowrap;
  content: attr(data-text);
}

.hero-bubble-line-logo::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  color: #07a837;
  paint-order: stroke fill;
  -webkit-text-stroke: 1.28cqw #111;
  transform: translate(0.53cqw, 0.61cqw);
}

.hero-bubble-line-logo::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  color: #07a837;
  paint-order: stroke fill;
  -webkit-text-stroke: 1.2cqw #fff;
}

.hero-bubble-line-fill {
  position: relative;
  z-index: 1;
  color: #07a837;
  paint-order: stroke fill;
  -webkit-text-stroke: 0.2cqw #151515;
}

.hero-bubble-outline {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: var(--bubble-fill);
  paint-order: stroke fill;
  white-space: nowrap;
  -webkit-text-stroke: var(--bubble-white-stroke) #fff;
}

.hero-bubble-outline::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  color: var(--bubble-fill);
  content: attr(data-text);
  paint-order: stroke fill;
  pointer-events: none;
  -webkit-text-stroke: calc(var(--bubble-white-stroke) + var(--bubble-black-stroke)) #111;
}

.hero-bubble-throw {
  --bubble-fill: #050505;
  --bubble-white-stroke: 0.99cqw;
  --bubble-black-stroke: 0.44cqw;
  margin-bottom: 1cqw;
  font-size: 11.45cqw;
  line-height: 0.88;
  letter-spacing: -0.075em;
  transform: scaleX(0.98) skewX(-2deg);
  transform-origin: left bottom;
}

.hero-bubble-headline {
  --bubble-fill: #050505;
  --bubble-white-stroke: 1.11cqw;
  --bubble-black-stroke: 0.46cqw;
  display: block;
  margin-top: 1.85%;
  font-size: 14.8cqw;
  line-height: 0.8;
  letter-spacing: -0.035em;
  transform: scaleX(0.975) skewX(-1.8deg);
  transform-origin: left top;
}

.hero-bubble-underline {
  width: 86.9cqw;
  height: 3.04cqw;
  margin-top: -0.62cqw;
  margin-left: 1.2cqw;
  background: #f4dd14;
  transform: skewX(-8deg);
  transform-origin: left center;
}

.hero-bubble-blue-band {
  position: absolute;
  right: 2.7%;
  bottom: 6.7%;
  left: 0.4%;
  z-index: 4;
  height: 12.7%;
  transform: skewX(-2.5deg) rotate(-0.6deg);
  transform-origin: left center;
}

.hero-bubble-blue-band::before {
  position: absolute;
  inset: 0.61cqw -0.61cqw -0.61cqw 0.61cqw;
  content: "";
  background: #111;
  clip-path: polygon(2.1% 0, 100% 0, 97.9% 100%, 0 100%);
}

.hero-bubble-blue-frame {
  position: absolute;
  inset: 0;
  background: #fff;
  clip-path: polygon(2.1% 0, 100% 0, 97.9% 100%, 0 100%);
}

.hero-bubble-blue-core {
  position: absolute;
  inset: 0.3cqw 0.46cqw 0.3cqw 0.46cqw;
  overflow: hidden;
  background: #0042b4;
  clip-path: polygon(2% 0, 100% 0, 98% 100%, 0 100%);
}

.hero-bubble-blue-core::before {
  position: absolute;
  top: 0.46cqw;
  right: 3.04cqw;
  left: 2.74cqw;
  height: 1.98cqw;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.07) 58%, rgba(255, 255, 255, 0) 100%);
  clip-path: polygon(1.8% 0, 100% 0, 98.2% 100%, 0 100%);
}

.hero-bubble-blue-core::after {
  position: absolute;
  inset: 50% 0 0;
  content: "";
  background: rgba(0, 0, 0, 0.08);
}

.hero-bubble-blue-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 4.71cqw;
  line-height: 1;
  letter-spacing: 0.09em;
  text-shadow: 0.24cqw 0.24cqw 0 rgba(0, 0, 0, 0.35);
  white-space: nowrap;
  transform: skewX(2.5deg);
  transform-origin: center;
}

.hero-bubble-blue-content span {
  color: #e5c42b;
  text-shadow: 0.24cqw 0.24cqw 0 rgba(0, 0, 0, 0.38);
}

.hero-bubble-crown {
  flex: 0 0 auto;
  display: inline-block;
  width: 7.3cqw;
  height: 3.95cqw;
  margin-right: 1.52cqw;
  filter: drop-shadow(0.24cqw 0.24cqw 0 rgba(0, 0, 0, 0.42));
  transform: translateY(0.15cqw);
}

.hero-bubble-bottom-copy {
  position: absolute;
  right: 3.0%;
  bottom: -5%;
  left: 8.8%;
  z-index: 5;
  display: flex;
  gap: 0.46cqw;
  align-items: baseline;
  justify-content: center;
  line-height: 1;
  color: #070707;
  text-rendering: geometricPrecision;
  white-space: nowrap;
  transform: scaleX(1.02) skewX(-2deg);
  transform-origin: center bottom;
  -webkit-font-smoothing: antialiased;
}

.hero-bubble-prefix {
  margin-right: 0.61cqw;
  color: #050505;
  font-size: 3.95cqw;
  letter-spacing: -0.04em;
}

.hero-bubble-key {
  color: #0755bd;
  font-size: 4.86cqw;
  letter-spacing: -0.02em;
}

.hero-bubble-sub {
  color: #050505;
  font-size: 3.8cqw;
  letter-spacing: -0.045em;
}

.hero-bubble-bang {
  color: #050505;
  font-size: 4.86cqw;
  letter-spacing: -0.045em;
}

.hero-rangers-logo {
  position: absolute;
  left: clamp(20px, 5.4vw, 10px);
  bottom: -40px;
  z-index: 10;
  width: clamp(180px, 20vw, 300px);
  height: auto;
}

.hero-photo-panel {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(420px, 33vw);
}

.hero-line-woman {
  width: 150%;
  height: auto;
  max-width: 550px;
  object-fit: contain;
}

.fv-line-consult {
  --fv-line-overlap: clamp(124px, 10.5vw, 148px);
  position: relative;
  z-index: 4;
  margin-top: calc(-1 * var(--fv-line-overlap));
  padding-bottom: clamp(34px, 5vw, 54px);
  background: linear-gradient(
    180deg,
    transparent 0 var(--fv-line-overlap),
    var(--yellow) var(--fv-line-overlap) 100%
  );
}

@media (max-width: 1280px) {
  .hero-speech {
    max-width: 860px;
  }

  .hero-photo-panel {
    width: min(400px, 34vw);
  }

  .hero-line-woman {
    max-width: 400px;
  }
}

.fv-line-banner {
  container-type: inline-size;
  position: relative;
  width: min(560px, max(320px, 48vw), calc(100% - 24px));
  aspect-ratio: 957 / 200;
  margin: 0 auto;
  background: transparent;
}

.fv-line-button {
  position: absolute;
  top: 12%;
  left: 4%;
  z-index: 2;
  display: grid;
  grid-template-columns: 19.25% minmax(0, 1fr) 10.12%;
  align-items: center;
  width: 92%;
  height: 72%;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(180deg, #04bd36 0%, #04b934 38%, #01ac30 68%, #009c2b 100%);
  border: 0.52cqw solid #06192b;
  border-radius: 999px;
  box-shadow:
    0 0 0 0.42cqw #fff inset,
    0 0 0 0.73cqw rgba(0, 50, 25, 0.65) inset,
    0 0.52cqw 0 #111,
    0 0.94cqw 0 #d8cd00;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.fv-line-button:hover {
  transform: translateY(2px);
  box-shadow:
    0 0 0 0.42cqw #fff inset,
    0 0 0 0.73cqw rgba(0, 50, 25, 0.65) inset,
    0 0.28cqw 0 #111,
    0 0.56cqw 0 #d8cd00;
}

.fv-line-icon {
  z-index: 2;
  justify-self: center;
  width: 7.1cqw;
  height: 7.1cqw;
  transform: translateX(2.2cqw);
}

.fv-line-center-text {
  z-index: 2;
  display: flex;
  align-items: baseline;
  justify-content: center;
  min-width: 0;
  white-space: nowrap;
}

.fv-line-main-text {
  color: #fff;
  font-size: 4.28cqw;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05cqw;
}

.fv-line-main-text span {
  color: #fff000;
}

.fv-line-sub-text {
  margin-left: 0.63cqw;
  color: #fff;
  font-size: 2.65cqw;
  font-weight: 500;
  line-height: 1;
}

.fv-line-arrow {
  z-index: 2;
  justify-self: center;
  width: 3.65cqw;
  height: 4.22cqw;
  transform: translateX(-0.88cqw);
}

.fv-line-merits {
  container-type: inline-size;
  width: min(957px, calc(100% - 40px));
  margin: clamp(16px, 2.4vw, 28px) auto 0;
  padding: clamp(18px, 2.7vw, 26px) clamp(18px, 4vw, 38px) clamp(20px, 3vw, 26px);
  background: #fff;
  border-radius: clamp(18px, 2.5vw, 28px);
  box-shadow: 6px 6px 0 #111;
}

.fv-line-merits-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1.4cqw, 13px);
  margin: 0;
  color: #111;
  font-size: clamp(20px, 3cqw, 30px);
  line-height: 1.18;
  font-weight: 1000;
  text-align: center;
  white-space: nowrap;
}

.fv-line-merits-title::before,
.fv-line-merits-title::after {
  display: block;
  width: clamp(22px, 4.4cqw, 42px);
  height: 2px;
  background: #111;
  content: "";
  flex: 0 0 auto;
}

.fv-line-merits-title::before {
  transform: rotate(50deg);
}

.fv-line-merits-title::after {
  transform: rotate(-50deg);
}

.fv-line-merits-green {
  color: var(--green);
}

.fv-line-merits-blue {
  color: #075fd1;
}

.fv-line-merits-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(18px, 2.5cqw, 24px);
}

.fv-line-merit {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  justify-items: center;
  gap: clamp(2px, 0.5cqw, 6px);
  min-height: clamp(118px, 15cqw, 138px);
  padding: 0 clamp(8px, 1.6cqw, 16px);
}

.fv-line-merit + .fv-line-merit::before {
  position: absolute;
  top: 0;
  bottom: 4px;
  left: 0;
  width: 2px;
  background: #777;
  content: "";
}

.fv-line-merit-number {
  position: absolute;
  top: clamp(-2px, 0cqw, 2px);
  left: clamp(-2px, 0.1cqw, 3px);
  display: grid;
  place-items: center;
  width: clamp(36px, 4.8cqw, 46px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: #075fd1;
  color: #fff;
  font-size: clamp(17px, 1.9cqw, 21px);
  line-height: 1;
  font-weight: 1000;
}

.fv-line-merit img {
  width: clamp(54px, 6.6cqw, 66px);
  aspect-ratio: 1;
  object-fit: contain;
}

.fv-line-merit svg {
  width: clamp(50px, 6.3cqw, 60px);
  max-width: 60px;
  height: auto;
  display: block;
}

.fv-line-merit p {
  margin: 0;
  color: #111;
  font-size: clamp(15px, 1.85cqw, 18px);
  line-height: 1.35;
  font-weight: 1000;
  text-align: center;
}

.fv-line-merit p span {
  color: #075fd1;
}

@media (min-width: 721px) {
  .fv-line-merits {
    width: min(957px, calc(100% - 40px));
    margin-top: clamp(18px, 2.5cqw, 24px);
  }

  .fv-line-merits-list {
    margin-top: clamp(18px, 2.5cqw, 24px);
  }

  .fv-line-merit {
    gap: clamp(5px, 0.9cqw, 9px);
    min-height: clamp(118px, 15cqw, 138px);
    padding: 0 clamp(8px, 1.4cqw, 14px);
  }

  .fv-line-merit-number {
    top: 0;
    left: clamp(36px, 5.2cqw, 60px);
  }

  .fv-line-merit img {
    width: clamp(58px, 7.4cqw, 72px);
  }

  .fv-line-merit svg {
    width: clamp(54px, 7cqw, 66px);
    max-width: 66px;
  }

  .fv-line-merit p {
    font-size: clamp(16px, 2.05cqw, 20px);
  }
}

@media (max-width: 720px) {
  .fv-line-merits {
    width: calc(100% - 24px);
    margin-top: 18px;
    padding: 20px 18px 22px;
    border-radius: 18px;
  }

  .fv-line-merits-title {
    flex-wrap: wrap;
    row-gap: 4px;
    font-size: clamp(20px, 6.1vw, 26px);
    white-space: normal;
  }

  .fv-line-merits-list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 16px;
  }

  .fv-line-merit {
    grid-template-columns: 44px 64px minmax(0, 1fr);
    grid-template-rows: auto;
    align-items: center;
    justify-items: start;
    min-height: 0;
    padding: 14px 0;
  }

  .fv-line-merit + .fv-line-merit::before {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 1px;
    background: #d6d6d6;
  }

  .fv-line-merit-number {
    position: static;
    width: 38px;
    font-size: 17px;
  }

  .fv-line-merit img {
    width: 58px;
  }

  .fv-line-merit svg {
    width: 54px;
    max-width: 54px;
  }

  .fv-line-merit p {
    font-size: clamp(14px, 3.9vw, 17px);
    text-align: left;
    white-space: nowrap;
  }

  .fv-line-merit p br {
    display: none;
  }
}

@media (min-width: 1281px) {
  .hero-speech {
    margin-right: -20px;
  }
}

@media (max-width: 1040px) {
  .comic-hero .comic-hero-inner {
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.78fr);
    min-height: 520px;
    padding-top: 34px;
  }

  .hero-speech {
    margin-right: -76px;
    transform: rotate(-1.9deg) scale(1.04);
  }

  .hero-photo-panel {
    width: min(450px, 40vw);
  }
}

@media (max-width: 860px) {
  .comic-hero {
    min-height: 0;
    background-image: url("../img/hero-fv-bg-sp.webp");
  }

  .fv-line-consult {
    --fv-line-overlap: 0px;
    margin-top: -40px;
    padding-bottom: 28px;
    background: var(--yellow);
  }

  .fv-line-banner {
    background: transparent;
    width: min(560px, calc(100% - 24px));
  }

  .comic-hero .comic-hero-inner {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 720px);
    min-height: 0;
    padding: 34px 0 54px;
  }

  .hero-speech {
    aspect-ratio: 345 / 218;
    margin-right: 0;
    margin-bottom: -34px;
    transform: rotate(-1.4deg) scale(1.12);
    transform-origin: center center;
  }

  .hero-speech-shape-desktop {
    display: none;
  }

  .hero-speech-shape-mobile {
    display: block;
  }

  .hero-bubble-copy {
    top: 18%;
    left: 14%;
    width: 67%;
  }

  .hero-rangers-logo {
    bottom: -190px;
    width: min(250px, 44vw);
  }

  .hero-photo-panel {
    justify-self: end;
    width: min(520px, 82vw);
  }

  .hero-line-woman {
    width: 120%;
    max-width: 120%;
    height: auto;
    object-fit: contain;
    margin-top: -30px; /* ← 女性画像の上の余白（増やすと下へ、減らすと上へ） */
    margin-left: -90px; /* ← 左右位置（マイナスで左へ、プラスで右へ） */
  }
}

@media (max-width: 560px) {
  .comic-hero .comic-hero-inner {
    width: min(100% - 24px, 560px);
    padding: 28px 0 42px;
  }

  .hero-speech {
    aspect-ratio: 345 / 218;
    margin-bottom: -32px;
    transform: rotate(-1.4deg) scale(1.2);
    transform-origin: center center;
  }

  .hero-speech-shape-desktop {
    display: none;
  }

  .hero-speech-shape-mobile {
    display: block;
  }

  .hero-bubble-copy {
    top: 18%;
    left: 14%;
    width: 67%;
  }

  .hero-rangers-logo {
    left: 20px;
    bottom: -150px;
    width: min(170px, 70vw);
  }

  .hero-photo-panel {
    width: min(440px, 92vw);
    margin-top: 0px; /* ← 女性画像の上の余白（増やすと下へ、減らすと上へ） */
    margin-left: 0px; /* ← 左右位置（マイナスで左へ、プラスで右へ） */
  }

  .hero-line-woman {
    width: 120%;
    /* max-width: 400px; ← 最大表示幅（大きくするとサイズアップ） */
    height: auto;
    object-fit: contain;
    margin-top: 0px; /* ← 女性画像の上の余白（増やすと下へ、減らすと上へ） */
    margin-left: -30px; /* ← 左右位置（マイナスで左へ、プラスで右へ） */
  }
}

@media (max-width: 380px) {
  .hero-speech {
    margin-bottom: -30px;
  }

  .hero-bubble-copy {
    top: 18.5%;
    left: 14%;
    width: 66%;
  }

  .hero-photo-panel {
    width: min(390px, 96vw);
  }

  .hero-line-woman {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: -5px; /* ← 女性画像の上の余白（増やすと下へ、減らすと上へ） */
    margin-left: 0px; /* ← 左右位置（マイナスで左へ、プラスで右へ） */
  }

  .hero-rangers-logo {
    left: 20px;
    bottom: -110px;
    width: min(150px, 70vw);
  }
}

@media (min-width: 721px) {
  .flow-step {
    grid-template-columns: minmax(360px, 1.05fr) minmax(0, 0.95fr);
  }
}

@media (min-width: 721px) and (max-width: 1024px) {
  .flow-step {
    grid-template-columns: minmax(200px, 0.52fr) minmax(0, 1.48fr);
    gap: 18px;
    width: min(100%, 760px);
    padding: 24px;
  }

  .flow-step img {
    max-width: 100%;
    justify-self: start;
  }

  .flow-step > div {
    padding: 6px 0;
  }

  .flow-step span {
    font-size: 20px;
  }

  .flow-step p {
    font-size: 19px;
    line-height: 1.55;
  }
}

@media (max-width: 720px) {
  .flow-section .section-inner {
    width: min(100% - 32px, 560px);
  }

  .flow-section .center-title {
    margin-bottom: 28px;
  }

  .flow-section .center-title h2 {
    font-size: clamp(29px, 8vw, 36px);
  }

  .flow-list {
    gap: 22px;
  }

  .flow-step {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 116px;
    padding: 20px 16px 16px;
    box-shadow: 4px 4px 0 #111;
    width: min(92%, 520px);
    justify-self: center;
  }

  .flow-step:not(:last-child)::after {
    left: 50%;
    bottom: -30px;
    border-left-width: 8px;
    border-right-width: 8px;
    border-top-width: 12px;
  }

  .flow-step img {
    width: 100%;
    max-width: none;
    height: auto;
    justify-self: center;
  }

  .flow-step > div {
    padding: 0;
  }

  .flow-step span {
    margin-bottom: 6px;
    font-size: 17px;
  }

  .flow-step p {
    font-size: 14px;
    line-height: 1.58;
  }
}

@media (max-width: 480px) {
  .flow-step {
    grid-template-columns: 1fr;
    padding: 18px 14px 14px;
    width: min(92%, 360px);
  }

  .flow-step:not(:last-child)::after {
    bottom: -26px;
  }

  .flow-step img {
    width: 100%;
    justify-self: center;
  }

  .flow-step span {
    font-size: 17px;
  }

  .flow-step p {
    font-size: 14px;
  }
}

@media (min-width: 721px) {
  .about-section .about-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .mobile-title-break {
    display: block;
  }

  .section-title-row h2,
  .center-title h2,
  .savings-layout h2,
  .comparison-layout h2,
  .price-copy h2,
  .contact-layout h2,
  .about-original-title h2,
  .flow-section .center-title h2 {
    font-size: 30px;
    line-height: 1.35;
    white-space: normal;
    text-wrap: balance;
    line-break: strict;
    overflow-wrap: normal;
  }

  .flow-section .center-title h2 {
    font-size: 28px;
    white-space: nowrap;
    text-wrap: nowrap;
  }

  .about-section {
    padding: 62px 0 68px;
  }

  .about-section .about-original {
    width: min(100% - 28px, 560px);
  }

  .about-main-card {
    padding: 30px 18px 34px;
  }

  .about-original-title {
    margin-bottom: 22px;
  }

  .about-message,
  .about-support {
    gap: 3px;
  }

  .about-lead,
  .about-metaverse-copy {
    text-align: left;
  }

  .office-list {
    width: min(100%, 560px);
    margin-inline: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    justify-items: center;
  }

  .about-section .about-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .office-heading h3 {
    font-size: 30px;
  }

  .office-item {
    max-width: none;
    margin-inline: auto;
  }
}

.warning-section .warning-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.warning-card {
  min-height: 190px;
  align-content: start;
  gap: 8px;
  padding: 18px 14px 16px;
}

.warning-card .number {
  font-size: 34px;
}

  .warning-card img {
    width: 92px;
    height: 92px;
    margin: 6px 0 4px;
  }

.warning-card h3 {
  font-size: var(--text-md);
  line-height: 1.35;
}

@media (max-width: 900px) {
  .warning-section .warning-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .warning-section .warning-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .warning-card {
    min-height: 0;
    grid-template-columns: 1fr;
    align-items: start;
    justify-items: center;
    gap: 8px;
    padding: 16px 14px;
    text-align: center;
  }

  .warning-card .number {
    font-size: 30px;
  }

  .warning-card img {
    width: 76px;
    height: 76px;
    margin: 0;
  }

  .warning-card h3 {
    font-size: var(--text-sm);
  }
}

.site-header {
  height: 56px;
  padding: 0;
  border-bottom: 4px solid #111;
  background: var(--yellow);
  box-shadow: none;
  overflow: hidden;
}

.brand {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 18px;
}

.brand img {
  width: min(222px, 100%);
  height: auto;
}

.desktop-nav,
.line-square,
.phone-link {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  margin-left: auto;
  padding-right: 10px;
}

.menu-square {
  width: 40px;
  height: 40px;
  gap: 5px;
  border: 3px solid #111;
  border-radius: 6px;
  background: var(--yellow);
  box-shadow: 2px 2px 0 rgba(17, 17, 17, 0.35);
}

.menu-square span {
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: #111;
}

@media (max-width: 720px) {
  .site-header {
    height: 44px;
    border-bottom-width: 3px;
  }

  .brand {
    padding: 0 7px;
  }

  .brand img {
    width: 156px;
  }

  .header-actions {
    padding-right: 5px;
  }

  .menu-square {
    width: 32px;
    height: 32px;
    gap: 4px;
    border-width: 3px;
    border-radius: 5px;
  }

  .menu-square span {
    width: 18px;
    height: 2px;
  }
}

/* ========================================
   Contact Form 7 スタイル
   Form 14 の実際の HTML 構造に基づく
   ======================================== */

/* ── form幅・テキスト配置 ── */
.contact-section .wpcf7-form {
  width: 100%;
  text-align: left;
}

/* ── 謎の長方形①：CF7 v6 の hidden-fields fieldset ── */
.contact-section .hidden-fields-container {
  display: none !important;
}

/* ── 謎の長方形②：空の response-output（送信前・初期状態） ── */
.contact-section .wpcf7-response-output[aria-hidden="true"] {
  display: none !important;
}

/* ── CF7が生成する <p> タグのリセット ── */
.contact-section .wpcf7-form p {
  color: #111;
  font-size: var(--text-xs);
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

/* ── CF7 autop が label 内に挿入する <br> を除去 ── */
.contact-section .wpcf7-form label br {
  display: none !important;
}

/* ── label-row：ラベルテキストとバッジを横並び ──
   構造: <label><br><span class="label-row">テキスト<em>任意</em></span><br><input wrap><br></label> */
.contact-section .wpcf7-form .label-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

/* ── 任意バッジ ── */
.contact-section .wpcf7-form .label-row em,
.contact-section .wpcf7-form label em {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 8px;
  border-radius: 4px;
  background: #e7eaee;
  color: #555;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
}

/* ── 必須バッジ ── */
.contact-section .wpcf7-form .label-row em.required,
.contact-section .wpcf7-form label em.required {
  background: var(--red);
  color: #fff;
}

/* ── CF7 が挿入する span ラッパー ── */
.contact-section .wpcf7-form-control-wrap {
  display: block;
}

/* ── 同意チェックボックス ──
   構造: .wpcf7-acceptance > .wpcf7-list-item > label > input + .wpcf7-list-item-label */
.contact-section .wpcf7-acceptance label {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: var(--text-xs);
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
}

.contact-section .wpcf7-acceptance input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 18px !important;
  margin: 0 !important;
  cursor: pointer;
}

.contact-section .wpcf7-list-item-label {
  display: inline;
}

/* ── 「個人情報の取り扱い」リンク色 ── */
.contact-section .wpcf7-acceptance a {
  color: var(--blue) !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-section .wpcf7-acceptance a:hover {
  color: var(--blue-dark) !important;
}

/* ── 送信ボタン ── */
.contact-section .wpcf7-submit {
  display: block;
  width: 100%;
  min-height: 54px;
  padding: 0 24px;
  border: 3px solid #111;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 1000;
  font-size: var(--text-sm);
  box-shadow: 0 5px 0 #111;
  transition: transform 160ms ease, box-shadow 160ms ease;
  cursor: pointer;
  margin-top: 6px;
  text-align: center;
}
.contact-section .wpcf7-submit:hover {
  transform: translateY(3px);
  box-shadow: 0 2px 0 #111;
}
.contact-section .wpcf7-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 5px 0 #111;
}

/* ── バリデーションエラー ── */
.contact-section .wpcf7-not-valid-tip {
  color: var(--red);
  font-size: var(--text-2xs);
  margin-top: 4px;
  display: block;
}
.contact-section .wpcf7-form input.wpcf7-not-valid,
.contact-section .wpcf7-form select.wpcf7-not-valid,
.contact-section .wpcf7-form textarea.wpcf7-not-valid {
  border-color: var(--red);
}

/* ── 送信結果メッセージ（送信後のみ表示） ── */
.contact-section .wpcf7-response-output {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: var(--text-xs);
  border: 2px solid #cbd0d6;
}
.contact-section .wpcf7-form.sent .wpcf7-response-output {
  background: #e6f4ea;
  border-color: #34a853;
  color: #1a5e2e;
}
.contact-section .wpcf7-form.failed .wpcf7-response-output,
.contact-section .wpcf7-form.invalid .wpcf7-response-output,
.contact-section .wpcf7-form.spam .wpcf7-response-output {
  background: #fce8e6;
  border-color: var(--red);
  color: #b31412;
}
