:root {
  --blue-900: #113c5b;
  --blue-700: #0f71b7;
  --blue-600: #1492d4;
  --blue-500: #1bb5e9;
  --blue-100: #e6f7fd;
  --blue-50: #f3fbff;
  --green: #1fa971;
  --yellow: #ffd766;
  --coral: #ff7a66;
  --ink: #173142;
  --muted: #5f7180;
  --line: #d9e8ef;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(17, 60, 91, 0.14);
  --strong-shadow: 0 30px 80px rgba(17, 60, 91, 0.2);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.8;
  background: var(--white);
}

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

img,
svg {
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(920px, calc(100% - 40px));
}

.section {
  position: relative;
  padding: 88px 0;
}

.section-band {
  padding: 54px 0 86px;
}

.soft-blue {
  background:
    linear-gradient(135deg, rgba(27, 181, 233, 0.08) 0 25%, transparent 25% 100%),
    linear-gradient(180deg, var(--blue-50), #ffffff);
}

.soft-yellow {
  background:
    linear-gradient(135deg, rgba(255, 215, 102, 0.3), rgba(255, 255, 255, 0) 46%),
    #fff9e6;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
  padding: 12px clamp(20px, 4vw, 44px);
  border-bottom: 1px solid rgba(217, 232, 239, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

body.fv-image-layout .site-header {
  display: none;
}

body.fv-image-layout .hero.section-band {
  padding: 0;
}

body.fv-image-layout .hero::after,
body.fv-image-layout .hero-bg {
  display: none;
}

body.fv-image-layout main > section:not(.hero):not(.pc-lp-reference):not(.mobile-lp-reference):not(.contact-form-section) {
  display: none;
}

body.fv-image-layout .pc-lp-reference {
  display: block;
  background: #eef7ff;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-600), var(--green));
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.35;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a:hover {
  color: var(--blue-700);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  color: var(--blue-900);
  font-weight: 900;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.3;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  color: var(--white);
  background: var(--blue-700);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 14px 30px rgba(20, 146, 212, 0.28);
}

.button-outline {
  color: var(--blue-700);
  border-color: var(--blue-500);
  background: var(--white);
}

.button-light {
  color: var(--blue-900);
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #eef7ff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(15, 113, 183, 0.12) 0 38%, transparent 38% 100%),
    radial-gradient(circle at 82% 14%, rgba(255, 215, 102, 0.48), transparent 30%),
    radial-gradient(circle at 8% 42%, rgba(31, 169, 113, 0.2), transparent 34%),
    linear-gradient(180deg, #eaf9ff 0%, #ffffff 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 72px;
  background: linear-gradient(176deg, transparent 0 48%, #ffffff 49% 100%);
  content: "";
  pointer-events: none;
}

.fv-reference {
  display: block;
  width: min(100%, 1536px);
  margin: 0 auto;
}

.fv-reference img {
  display: block;
  width: 100%;
  height: auto;
}

.fv-hotspots {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: min(100%, 1536px);
  margin: 0 auto;
  right: 0;
  left: 0;
  pointer-events: none;
}

.fv-hotspot {
  position: absolute;
  display: block;
  border-radius: 12px;
  pointer-events: auto;
}

.fv-hotspot-phone {
  top: 0;
  left: 0;
  width: 36%;
  height: 9.6%;
}

.fv-hotspot-reserve,
.fv-hotspot-form {
  display: none;
}

.hero-grid-accessible {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.mobile-lp-reference,
.pc-lp-reference {
  display: none;
}

.mobile-lp-reference img,
.pc-lp-reference img {
  display: block;
  width: 100%;
  height: auto;
}

.case-heading {
  margin: 44px auto 18px;
  padding: 0 16px;
  color: var(--blue-900);
  font-size: clamp(34px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0;
}

.case-heading::after {
  display: block;
  width: min(360px, 56%);
  height: 7px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-700), #8fc4ff);
  content: "";
}

.lp-linked,
.pc-linked {
  position: relative;
}

.lp-link,
.pc-link {
  position: absolute;
  z-index: 8;
  display: block;
  border-radius: 12px;
}

.lp-linked-single .lp-link-bottom {
  left: 5%;
  right: 5%;
  bottom: 4%;
  height: 8%;
}

.lp-linked-first .lp-link-first-reserve {
  left: 8.3%;
  right: 8.3%;
  bottom: 19.2%;
  height: 7.8%;
}

.lp-linked-first .lp-link-first-form {
  left: 8.3%;
  right: 8.3%;
  bottom: 9.2%;
  height: 7.4%;
}

.lp-linked-triple .lp-link-reserve {
  left: 6%;
  right: 6%;
  bottom: 18.4%;
  height: 7.6%;
}

.lp-linked-triple .lp-link-phone {
  left: 6%;
  right: 6%;
  bottom: 10.2%;
  height: 6.6%;
}

.lp-linked-triple .lp-link-form {
  left: 6%;
  right: 6%;
  bottom: 2.2%;
  height: 6.6%;
}

.pc-linked-cta-bottom .pc-link-bottom {
  left: 23%;
  right: 23%;
  bottom: 6%;
  height: 8%;
}

.pc-linked-triple .pc-link-reserve {
  left: 11%;
  right: 11%;
  bottom: 18.4%;
  height: 7.4%;
}

.pc-linked-triple .pc-link-phone {
  left: 11%;
  right: 11%;
  bottom: 10.2%;
  height: 6.4%;
}

.pc-linked-triple .pc-link-form {
  left: 11%;
  right: 11%;
  bottom: 2.2%;
  height: 6.4%;
}

.contact-form-section {
  padding: 72px 0;
  background: #eef7ff;
}

.contact-form-card {
  width: min(760px, calc(100% - 28px));
  margin: 0 auto;
  padding: 34px;
  border: 3px solid #0056b8;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 54px rgba(17, 60, 91, 0.14);
}

.contact-form-card h2 {
  margin-bottom: 14px;
  color: #333333;
  font-size: clamp(32px, 6vw, 54px);
  line-height: 1.15;
  text-align: center;
}

.contact-form-card h2::after {
  display: block;
  width: 180px;
  height: 2px;
  margin: 14px auto 0;
  background: #333333;
  content: "";
}

.form-lead,
.form-note {
  margin-bottom: 8px;
  color: #333333;
  font-size: 13px;
  text-align: center;
}

.form-note span {
  color: #ff5a00;
  font-weight: 900;
}

.required-note {
  margin: 24px 0 8px;
  color: #333333;
  font-size: 13px;
}

.required-note span,
.contact-form b {
  color: #e60012;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 5px;
  color: #111111;
  font-size: 14px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #333333;
  border-radius: 0;
  padding: 9px 10px;
  color: #111111;
  font: inherit;
  background: #ffffff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 170px;
}

.contact-form button {
  min-height: 66px;
  border: 0;
  border-radius: 4px;
  color: #ffffff;
  font-size: clamp(22px, 4.8vw, 33px);
  font-weight: 900;
  cursor: pointer;
  background: linear-gradient(180deg, #65ff74 0%, #11c51e 46%, #079812 100%);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.58), 0 6px 0 #06790e;
}

.contact-form button:active {
  transform: translateY(3px);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.58), 0 3px 0 #06790e;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: 46px;
  align-items: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 4px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue-900);
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.86);
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  color: var(--blue-900);
  font-size: clamp(42px, 5.1vw, 64px);
  line-height: 1.18;
  font-weight: 900;
}

.keep-line {
  white-space: nowrap;
}

h2 {
  margin-bottom: 20px;
  color: var(--blue-900);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.35;
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  color: var(--blue-900);
  font-size: 21px;
  line-height: 1.45;
}

.hero-lead {
  max-width: 720px;
  color: #334c5d;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.75;
}

.mobile-portrait-card {
  display: none;
}

.mobile-fv-art {
  display: none;
}

.price-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 22px;
}

.price-strip div {
  padding: 20px 18px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(17, 60, 91, 0.12);
}

.price-strip div:first-child,
.price-strip div:nth-child(2) {
  border-color: rgba(20, 146, 212, 0.36);
  background: linear-gradient(180deg, #ffffff, #eefaff);
}

.price-strip small {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.price-strip strong {
  display: block;
  color: var(--blue-700);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.25;
}

.hero-checks,
.icon-list,
.check-columns,
.price-card ul,
.final-points {
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: 14px;
  font-weight: 800;
}

.advisor-text,
.tool-text,
.area-text,
.cta-copy {
  margin-bottom: 14px;
  color: var(--blue-900);
  font-weight: 800;
}

.cta-copy {
  color: var(--blue-700);
  text-align: center;
}

.text-block {
  max-width: 780px;
  margin: 34px auto 0;
  color: #405769;
  font-size: 17px;
  text-align: center;
}

.text-block strong {
  color: var(--blue-900);
}

.plain-list {
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
  color: var(--blue-900);
  font-weight: 800;
}

.hero-checks li,
.check-columns li,
.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.hero-checks svg,
.check-columns svg,
.icon-list svg {
  flex: 0 0 auto;
  margin-top: 6px;
  color: var(--green);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-row.center {
  justify-content: center;
}

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

.hero-visual {
  position: relative;
  min-height: 620px;
}

.portrait-stage {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border: 2px solid rgba(217, 232, 239, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(230, 247, 253, 0.96), rgba(255, 255, 255, 0.98) 52%),
    var(--white);
  box-shadow: var(--strong-shadow);
}

.portrait-backdrop {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(27, 181, 233, 0.22), rgba(31, 169, 113, 0.18));
}

.portrait-stage .hero-illust {
  position: absolute;
  left: 22px;
  top: 28px;
  z-index: 1;
  width: 72%;
  max-height: none;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 18px 42px rgba(17, 60, 91, 0.12);
}

.portrait-stage .portrait-person {
  position: absolute;
  right: -56px;
  bottom: -28px;
  z-index: 1;
  width: min(70%, 390px);
  max-height: 540px;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 18px 26px rgba(17, 60, 91, 0.16));
}

.name-plate {
  position: absolute;
  left: 24px;
  right: auto;
  bottom: 24px;
  z-index: 2;
  width: min(72%, 380px);
  padding: 18px;
  border-left: 6px solid var(--blue-500);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(17, 60, 91, 0.12);
}

.name-plate small,
.name-plate span {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.name-plate strong {
  display: block;
  margin: 4px 0;
  color: var(--blue-900);
  font-size: 22px;
  line-height: 1.35;
}

.hero-medals {
  position: absolute;
  top: 30px;
  right: -18px;
  left: auto;
  z-index: 3;
  display: grid;
  gap: 10px;
}

.hero-medals div {
  width: 150px;
  padding: 14px 16px;
  border: 1px solid rgba(217, 232, 239, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(17, 60, 91, 0.12);
}

.hero-medals span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.hero-medals strong {
  display: block;
  color: var(--blue-700);
  font-size: 28px;
  line-height: 1.25;
}

.tool-strip {
  position: absolute;
  left: 34px;
  right: auto;
  top: 360px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  max-width: 340px;
}

.tool-strip span {
  min-height: 32px;
  padding: 4px 10px;
  border-radius: 8px;
  color: var(--blue-900);
  font-size: 12px;
  font-weight: 900;
  background: var(--yellow);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading::after,
.problem h2::after,
.notice-box h2::after {
  display: block;
  width: 72px;
  height: 5px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-500), var(--green), var(--yellow));
  content: "";
}

.section-heading p:not(.section-kicker),
.lead-center {
  color: var(--muted);
  font-size: 17px;
}

.lead-center {
  margin: 32px auto 0;
  max-width: 760px;
  text-align: center;
}

.worry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.worry-grid div {
  position: relative;
  overflow: hidden;
  min-height: 154px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue-900);
  font-weight: 800;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(17, 60, 91, 0.06);
}

.worry-grid div::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue-500), var(--green));
  content: "";
}

.worry-grid svg {
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: 14px;
  color: var(--blue-600);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 44px;
  align-items: center;
}

.two-column p {
  color: #405769;
}

.switch-card,
.profile-card,
.office-card,
.notice-box,
.recommend-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(17, 60, 91, 0.08);
}

.switch-card {
  padding: 30px;
  border: 2px solid rgba(27, 181, 233, 0.22);
  transform: rotate(-1deg);
}

.switch-card > * {
  transform: rotate(1deg);
}

.icon-list {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
  font-weight: 800;
}

.step-grid,
.feature-grid,
.pricing-grid {
  display: grid;
  gap: 20px;
}

.visual-band,
.feature-visual-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin: 0 0 34px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(17, 60, 91, 0.1);
}

.visual-band img,
.feature-visual-row img,
.price-visual img,
.flow-visual img {
  display: block;
  width: 100%;
  border-radius: 8px;
}

.visual-band p,
.feature-visual-row p {
  color: #405769;
  font-weight: 700;
}

.feature-visual-row {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.74fr);
  background: linear-gradient(135deg, #ffffff, #fff9e6);
}

.feature-visual-row img {
  order: 2;
}

.price-visual {
  max-width: 760px;
  margin: 0 auto 34px;
}

.price-visual img,
.flow-visual img {
  box-shadow: 0 18px 46px rgba(17, 60, 91, 0.1);
}

.flow-visual {
  max-width: 900px;
  margin: 0 auto 34px;
}

.step-grid {
  grid-template-columns: repeat(3, 1fr);
}

.step-grid article,
.feature-grid article,
.price-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(17, 60, 91, 0.08);
}

.step-grid article::before,
.feature-grid article::before,
.price-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--blue-500), var(--green));
  content: "";
}

.step-grid article {
  padding: 32px 28px 28px 34px;
}

.step-grid article:nth-child(2) {
  transform: translateY(22px);
}

.step-grid article:nth-child(3) {
  border-color: rgba(255, 122, 102, 0.36);
  background: linear-gradient(180deg, #ffffff, #fff5f2);
}

.step-grid article:nth-child(3)::before {
  background: var(--coral);
}

.step-grid .button {
  width: 100%;
  margin-top: 14px;
}

.step-grid span,
.timeline span,
.plan-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  color: var(--blue-900);
  font-size: 13px;
  font-weight: 900;
  background: var(--yellow);
}

.center-cta {
  margin-top: 34px;
  text-align: center;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-grid article {
  padding: 34px 28px 28px 34px;
}

.feature-grid article:first-child {
  grid-column: span 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 18px;
  align-items: start;
  border-color: rgba(20, 146, 212, 0.38);
  background: linear-gradient(135deg, #ffffff, #eaf9ff);
}

.feature-grid article:first-child h3,
.feature-grid article:first-child p {
  grid-column: 2;
}

.feature-grid article:first-child > svg {
  grid-row: span 3;
}

.feature-grid article:nth-child(2),
.feature-grid article:nth-child(5) {
  background: linear-gradient(180deg, #ffffff, #fff9e8);
}

.feature-grid article > svg {
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  color: var(--blue-600);
}

.feature-grid p,
.step-grid p,
.price-card p,
.timeline p,
.faq p {
  color: var(--muted);
}

.reason-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.reason-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 82px;
  padding: 18px;
  border: 1px solid rgba(255, 215, 102, 0.6);
  border-radius: 8px;
  color: var(--blue-900);
  font-weight: 900;
  background: var(--white);
}

.why-low::before,
.final-cta::before {
  position: absolute;
  top: -34px;
  left: 50%;
  width: min(760px, calc(100% - 40px));
  height: 68px;
  border-radius: 8px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--blue-700), var(--blue-500), var(--green));
  box-shadow: 0 18px 40px rgba(17, 60, 91, 0.18);
  content: "";
}

.why-low::after {
  position: absolute;
  top: -18px;
  left: 50%;
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  transform: translateX(-50%);
  content: "なぜ低価格で提供できるのか";
}

.reason-list svg {
  color: var(--coral);
}

.recommend-box {
  padding: 34px;
  border: 2px solid rgba(31, 169, 113, 0.24);
  background:
    linear-gradient(135deg, rgba(31, 169, 113, 0.08), rgba(255, 255, 255, 0) 42%),
    var(--white);
}

.check-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  font-weight: 800;
}

.profile-grid {
  align-items: stretch;
}

.profile-card,
.office-card {
  padding: 34px;
}

.office-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 22px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 14px 34px rgba(17, 60, 91, 0.14);
}

.office-map {
  overflow: hidden;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(17, 60, 91, 0.1);
}

.office-map iframe {
  display: block;
  width: 100%;
  height: 320px;
}

.profile-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 0 28px;
  align-items: start;
}

.profile-card .profile-photo {
  grid-row: span 4;
}

.profile-photo {
  display: block;
  width: 180px;
  height: 230px;
  margin-bottom: 24px;
  border: 4px solid var(--blue-100);
  border-radius: 8px;
  object-fit: cover;
  object-position: 50% 18%;
  box-shadow: 0 12px 26px rgba(17, 60, 91, 0.14);
}

.office-card dl {
  margin: 0;
}

.office-card div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.office-card div:last-child {
  border-bottom: 0;
}

.office-card dt {
  color: var(--blue-700);
  font-weight: 900;
}

.office-card dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.notice-box {
  padding: 34px;
  border-left: 6px solid var(--coral);
  background:
    linear-gradient(135deg, rgba(255, 122, 102, 0.08), rgba(255, 255, 255, 0) 48%),
    var(--white);
}

.pricing-grid {
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
}

.price-card {
  padding: 36px 32px 32px 38px;
}

.price-card.featured {
  border: 2px solid var(--blue-500);
  box-shadow: var(--strong-shadow);
  transform: translateY(-16px);
}

.plan-label {
  margin-bottom: 18px;
}

.plan-label.secondary {
  background: var(--blue-100);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 24px 0 10px;
  color: var(--blue-700);
}

.plan-price.small-price {
  margin-top: 10px;
}

.plan-price strong {
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1;
}

.plan-price span {
  color: var(--blue-900);
  font-weight: 900;
}

.plan-note {
  min-height: 88px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: #334c5d;
  font-weight: 700;
}

.price-card li::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  content: "";
}

.option-box {
  display: grid;
  gap: 6px;
  margin-top: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--blue-50);
}

.option-box strong {
  color: var(--blue-900);
}

.option-box span {
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 120px 220px 1fr;
  gap: 18px;
  align-items: start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(17, 60, 91, 0.08);
}

.timeline article:nth-child(2) {
  margin-left: 50px;
}

.timeline article:nth-child(3) {
  margin-left: 100px;
}

.timeline h3,
.timeline p {
  margin-bottom: 0;
}

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

.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(17, 60, 91, 0.06);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  color: var(--blue-900);
  font-weight: 900;
  cursor: pointer;
}

.faq summary::after {
  flex: 0 0 auto;
  color: var(--blue-600);
  content: "+";
  font-size: 24px;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "-";
}

.faq p {
  margin: 0;
  padding: 0 22px 22px;
}

.final-cta {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 60, 91, 0.92), rgba(20, 146, 212, 0.9)),
    linear-gradient(90deg, var(--blue-700), var(--green));
}

.final-cta::before {
  background: var(--yellow);
}

.final-card {
  text-align: center;
}

.final-card .section-kicker,
.final-card h2,
.final-card p {
  color: var(--white);
}

.final-card > p:not(.section-kicker) {
  max-width: 840px;
  margin: 0 auto 22px;
}

.final-card h3 {
  color: var(--white);
}

.final-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.final-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.site-footer {
  padding: 28px 0 92px;
  color: var(--white);
  background: #0e2c42;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner strong,
.footer-inner span {
  display: block;
}

.footer-inner span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.footer-inner a {
  font-weight: 900;
}

.mobile-sticky {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 40;
  display: none;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(17, 60, 91, 0.24);
  backdrop-filter: blur(14px);
}

.mobile-sticky a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  border-radius: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.mobile-sticky a:first-child {
  background: var(--blue-900);
}

.mobile-sticky a:nth-child(2) {
  background: var(--coral);
}

.mobile-sticky a:last-child {
  color: var(--blue-900);
  border: 2px solid var(--blue-700);
  background: var(--white);
}

[data-lucide] {
  width: 1.1em;
  height: 1.1em;
  stroke-width: 2.4;
}

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

  .hero-grid,
  .two-column,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-medals {
    right: 14px;
    left: auto;
  }

  .worry-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .visual-band,
  .feature-visual-row {
    grid-template-columns: 1fr;
  }

  .feature-visual-row img {
    order: 0;
  }

  .timeline article {
    grid-template-columns: 1fr;
  }

  .timeline article:nth-child(2),
  .timeline article:nth-child(3) {
    margin-left: 0;
  }

  .plan-note {
    min-height: auto;
  }

  .feature-grid article:first-child {
    grid-column: span 1;
    display: block;
  }

  .feature-grid article:first-child h3,
  .feature-grid article:first-child p {
    grid-column: auto;
  }

  .step-grid article:nth-child(2),
  .price-card.featured {
    transform: none;
  }

  .profile-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body.fv-image-layout {
    padding-bottom: 86px;
  }

  body.fv-image-layout .pc-lp-reference {
    display: none;
  }
  
  body.fv-image-layout .mobile-lp-reference {
    display: block;
    background: #eef7ff;
  }

  body.fv-image-layout .site-footer {
    display: none;
  }

  body.fv-image-layout .mobile-sticky {
    display: grid;
  }

  .fv-hotspot-phone {
    top: 80.5%;
    left: 6.3%;
    width: 87.4%;
    height: 6.6%;
  }

  .fv-hotspot-reserve {
    display: block;
    top: 72.2%;
    left: 6.3%;
    width: 87.4%;
    height: 7.6%;
  }

  .fv-hotspot-form {
    display: block;
    top: 88.4%;
    left: 6.3%;
    width: 87.4%;
    height: 6.3%;
  }

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

  .contact-form-section {
    padding: 34px 0 112px;
  }

  .contact-form-card {
    width: min(100% - 18px, 760px);
    padding: 18px 14px;
    border-width: 2px;
  }

  .contact-form textarea {
    min-height: 160px;
  }

  .section {
    padding: 64px 0;
  }

  .section-band {
    padding: 42px 0 70px;
  }

  .site-header {
    min-height: 66px;
    padding: 10px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .header-actions .button {
    display: none;
  }

  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .mobile-fv-art {
    display: block;
    width: 100%;
    margin: 22px 0 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 42px rgba(17, 60, 91, 0.14);
  }

  .mobile-portrait-card {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 30px rgba(17, 60, 91, 0.1);
  }

  .mobile-portrait-card img {
    flex: 0 0 auto;
    width: 110px;
    height: 132px;
    border-radius: 8px;
    object-fit: cover;
    object-position: 50% 18%;
    background: var(--blue-50);
  }

  .mobile-portrait-card small,
  .mobile-portrait-card span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
  }

  .mobile-portrait-card strong {
    display: block;
    margin: 4px 0;
    color: var(--blue-900);
    font-size: 18px;
    line-height: 1.35;
  }

  .keep-line {
    white-space: normal;
  }

  .hero-badges span {
    width: 100%;
  }

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

  .cta-row,
  .cta-row.center {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    display: none;
  }

  .profile-photo {
    width: 150px;
    height: 192px;
  }

  .worry-grid,
  .feature-grid,
  .reason-list,
  .check-columns {
    grid-template-columns: 1fr;
  }

  .worry-grid div {
    min-height: auto;
  }

  .recommend-box,
  .notice-box,
  .profile-card,
  .office-card,
  .price-card,
  .switch-card {
    padding: 24px;
  }

  .switch-card,
  .switch-card > * {
    transform: none;
  }

  .why-low::before,
  .why-low::after,
  .final-cta::before {
    display: none;
  }

  .feature-grid article,
  .step-grid article,
  .price-card {
    padding-left: 30px;
  }

  .final-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .final-points li {
    justify-content: center;
    min-width: 0;
    text-align: center;
  }

  .mobile-sticky {
    display: grid;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 34px;
  }

  .mobile-portrait-card {
    align-items: flex-start;
  }

  .mobile-portrait-card img {
    width: 94px;
    height: 118px;
  }

  .final-points {
    grid-template-columns: 1fr;
  }
}
