/* ====================================
   1. Variables
   ==================================== */
:root {
  --color-text: #1a1a2e;
  --color-text-muted: #556;
  --color-text-light: #556;
  --color-bg: #ffffff;
  --color-primary: #0f2b5b;
  --color-primary-mid: #1a4f8c;
  --color-primary-light: #3a7bd5;
  --color-accent: #e8a600;
  --color-accent-light: #ffeaa7;
  --color-fv-bg: #d2d2d2;
  --color-section-blue: #d0e2e8;
  --color-card-blue: #edf4fc;
  --color-section-light: #f5f7fa;
  --color-section-warm: #faf8f5;
  --color-line-start: #1c6b3c;
  --color-line: #06c755;
  --color-border: #dde1e8;
  --color-input-bg: #f8f9fb;
  --font-jp: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "Yu Gothic", "Meiryo", sans-serif;
  --font-serif: serif;
  --font-en: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-price-num: "Arial Black", "Segoe UI Black", "Helvetica Neue", var(--font-en), sans-serif;
  --color-cyan: #00a6d4;
  --color-header-start: #61bbe2;
  --color-header-end: #009fcc;
  --color-gold-start: #986a00;
  --color-gold-mid: #ffe792;
  --color-gold-end: #986a00;
  --gradient-gold: linear-gradient(16deg, #986a00 11.4%, #a67913 12.7%, #c39a3a 16.5%, #d9b256 23.1%, #e6c067 27.4%, #ebc66e 31.8%, #ffe792 37.4%, #ffe792 43.9%, #ebc66e 51.2%, #e6c067 58.6%, #d9b256 68%, #c39a3a 71.2%, #a67912 73.8%, #986a00 75%);
  --gradient-header: linear-gradient(-0.114deg, #61bbe2 0.57%, #009fcc 99.43%);
  --gradient-header-tel: linear-gradient(235.2deg, #f4db8c 0%, #f0cc7e 22%, #c78a03 48%, #efca84 78%, #e3b75e 98%);
  --gradient-header-line: linear-gradient(250.53deg, #37d54a 0%, #1e982d 22%, #009912 48%, #37d54a 78%, #3d9f49 98%);
  --gradient-header-form: linear-gradient(250.53deg, #c70358 6%, #e4527b 21%, #c70358 48%, #e4527b 78%, #c70358 98%);
  --shadow-card: 0 4px 24px rgba(15, 43, 91, 0.08);
  --shadow-card-hover: 0 8px 32px rgba(15, 43, 91, 0.14);
  --shadow-btn: 0 4px 16px rgba(15, 43, 91, 0.2);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 100px;
  --container: 1080px;
  --container-narrow: 680px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --design-width-sp: 393;
  --design-width-pc: 1920;
}

/* ====================================
   2. Base
   ==================================== */
body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-jp), sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.page-viewport {
  overflow-x: hidden;
  width: 100%;
}

.page-viewport--lp::after {
  background:
    linear-gradient(180deg, rgba(24, 166, 209, 0) 0%, #18a6d1 44%, #10a4cf 100%),
    linear-gradient(180deg, rgba(24, 166, 209, 0) 0%, #18a6d1 44%, #10a4cf 100%);
  bottom: 0;
  content: "";
  height: 140px;
  left: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  width: 100vw;
  z-index: 119;
}

.page {
  margin: 0 auto;
  overflow-x: hidden;
  width: calc(var(--design-width-sp) * 1px);
}

.webp-picture {
  display: contents;
}

#contact-heading {
  scroll-margin-top: 90px;
}

#price-heading {
  scroll-margin-top: 0;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  body,
  .page-viewport {
    background-color: #d0e2e8;
  }

  .page {
    background-color: #ffffff;
    box-shadow: 0 0 28px rgba(0, 87, 112, 0.28);
  }
}

.l-container {
  margin: 0 auto;
  max-width: var(--container);
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

.l-container--393 {
  max-width: 393px;
  padding-left: 15px;
  padding-right: 15px;
}

.l-container--narrow {
  max-width: var(--container-narrow);
}

/* ====================================
   3. Header / Footer / Fixed CTA
   ==================================== */
.header {
  background: var(--gradient-header);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
}

.header__inner {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 393px;
  min-height: 68px;
  padding: 10px 0;
  position: relative;
}

.header__logo {
  display: block;
  line-height: 0;
}

.header__logo-img {
  display: block;
  height: 48px;
  width: 224px;
}

.header__nav--pc {
  display: none;
}

main {
  padding-top: 0 !important;
}

.float-cta {
  bottom: 0;
  display: block;
  height: 140px;
  left: 0;
  margin: 0 auto;
  pointer-events: none;
  position: fixed;
  right: 0;
  width: min(393px, 100vw);
  z-index: 120;
}

.float-cta__rail {
  background:
    linear-gradient(180deg, rgba(24, 166, 209, 0) 0%, #18a6d1 44%, #10a4cf 100%),
    linear-gradient(180deg, rgba(24, 166, 209, 0) 0%, #18a6d1 44%, #10a4cf 100%);
  bottom: 0;
  height: 140px;
  left: 0;
  position: absolute;
  width: 100%;
}

.float-cta__note {
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 12.275px;
  font-weight: 900;
  left: calc(50% + 116.85px);
  line-height: 1;
  margin: 0;
  pointer-events: none;
  position: absolute;
  text-align: center;
  text-shadow: 0 0 6.137px #744b1b;
  top: 8.18px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.float-cta__tel {
  display: block;
  height: 94px;
  left: 50%;
  pointer-events: auto;
  position: absolute;
  text-decoration: none;
  top: 29px;
  transform: translateX(-182.31px);
  width: 228px;
}

.float-cta__tel-shadow {
  background-color: #714900;
  border-radius: 5.616px;
  height: 90px;
  left: 1px;
  position: absolute;
  top: 3.73px;
  width: 227.562px;
}

.float-cta__tel-panel {
  align-items: center;
  background: linear-gradient(247.79deg, #f4db8c 11.95%, #f0cc7e 21.87%, #c78a03 48.14%, #efca84 78.03%, #e3b75e 97.7%);
  border-radius: 5.616px;
  box-shadow: inset -5.115px -5.115px 4.092px rgba(255, 255, 255, 0.25), inset 0 0 5.115px #ffffff;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  font-family: var(--font-serif);
  font-weight: 900;
  height: 92.061px;
  justify-content: flex-start;
  left: 0;
  overflow: hidden;
  position: absolute;
  text-align: center;
  text-shadow: 0 0 7.672px #744b1b;
  top: -0.36px;
  width: 227.562px;
}

.float-cta__tel-head {
  align-items: center;
  display: flex;
  font-size: 16.366px;
  line-height: 23.523px;
  margin-top: 11.92px;
  text-shadow: 0 0 7.057px #744b1b;
  white-space: nowrap;
}

.float-cta__tel-icon {
  display: block;
  height: 22.504px;
  margin-right: -3.069px;
  width: 22.52px;
}

.float-cta__tel-now {
  font-size: 14.321px;
  line-height: 18px;
  margin-top: -0.5px;
  white-space: nowrap;
}

.float-cta__tel-main {
  font-size: 25.573px;
  line-height: 25.573px;
  margin-top: -0.5px;
  white-space: nowrap;
}

.float-cta__tel-main small {
  font-size: 20.458px;
}

.float-cta__mini {
  align-items: center;
  --float-mini-bg: linear-gradient(243.28deg, #37d54a 11.95%, #1e982d 21.87%, #009912 48.14%, #37d54a 78.03%, #3d9f49 97.7%);
  --float-mini-glow: #4add5c;
  --float-mini-shadow: #00520a;
  background: transparent;
  border-radius: 5.619px;
  box-shadow: none;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  font-family: var(--font-serif);
  font-weight: 900;
  height: 42.962px;
  justify-content: center;
  left: 50%;
  line-height: 14.047px;
  pointer-events: auto;
  position: absolute;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 0 7.672px #744b1b;
  transform: translateX(51.38px);
  width: 130.931px;
  z-index: 2;
}

.float-cta__mini::before {
  background: var(--float-mini-shadow);
  border-radius: inherit;
  content: "";
  height: 100%;
  left: 1.02px;
  position: absolute;
  top: 2.05px;
  width: 100%;
  z-index: 0;
}

.float-cta__mini::after {
  background: var(--float-mini-bg);
  border-radius: inherit;
  box-shadow: inset -2.809px -2.809px 2.248px rgba(255, 255, 255, 0.25), inset 0 0 2.809px var(--float-mini-glow);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.float-cta__mini span:first-child {
  font-size: 14.047px;
  position: relative;
  z-index: 2;
}

.float-cta__mini span:last-child,
.float-cta__mini small {
  font-size: 12.275px;
  position: relative;
  z-index: 2;
}

.float-cta__mini--line {
  --float-mini-bg: linear-gradient(243.28deg, #37d54a 11.95%, #1e982d 21.87%, #009912 48.14%, #37d54a 78.03%, #3d9f49 97.7%);
  --float-mini-glow: #4add5c;
  --float-mini-shadow: #00520a;
  top: 28.64px;
}

.float-cta__mini--form {
  --float-mini-bg: linear-gradient(243.28deg, #c70358 6.14%, #e4527b 20.61%, #c70358 48.14%, #e4527b 78.03%, #c70358 97.7%);
  --float-mini-glow: #c52a56;
  --float-mini-shadow: #711630;
  top: 77.74px;
}

.tel-link {
  cursor: pointer;
}

.footer {
  background: linear-gradient(-0.37deg, #0091b9 0.57%, #69d2ff 99.43%);
  min-height: 219px;
  padding: 24px 20px;
  text-align: center;
}

.footer__copy {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: 27.75px;
  margin: 0;
}

/* ====================================
   4. Buttons
   ==================================== */
.btn {
  align-items: center;
  border: none;
  border-radius: var(--radius-sm);
  color: #ffffff;
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  transition: transform var(--transition), box-shadow var(--transition);
  width: 100%;
}

.btn__icon {
  flex-shrink: 0;
}

.btn--tel {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-mid) 100%);
  box-shadow: 0 4px 12px rgba(15, 43, 91, 0.25);
}

.btn--line {
  background-color: var(--color-line);
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.3);
}

.btn--white {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: var(--color-primary);
}

.btn--submit {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-mid) 100%);
  box-shadow: 0 4px 12px rgba(15, 43, 91, 0.25);
  font-size: 16px;
  min-height: 56px;
  margin-top: 12px;
}

.btn--lg {
  font-size: 16px;
  min-height: 56px;
}

.btn:hover,
.btn:focus-visible {
  box-shadow: var(--shadow-btn);
  transform: translateY(-2px);
}

/* ====================================
   5. Sections
   ==================================== */
.section {
  padding: 56px 0;
}

.section-title {
  -webkit-text-stroke: 0.7px currentColor;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.45;
  margin-bottom: 12px;
}

.section-title--center {
  text-align: center;
}

.section-title--light {
  color: #ffffff;
}

.section-title__en {
  color: var(--color-accent);
  display: block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 17.4px;
  margin-bottom: 4px;
  opacity: 0.7;
}

.section-title__accent--bar {
  color: var(--color-cyan);
  display: inline-block;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.44px;
  line-height: 31.9px;
  position: relative;
}

.section-title__accent--bar::after {
  background-color: var(--color-accent);
  bottom: 2px;
  content: "";
  height: 8px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 92px;
  z-index: -1;
}

.section-title__accent--lg {
  color: var(--color-cyan);
  display: inline;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.44px;
  line-height: 31.9px;
}

.section-title__month {
  color: var(--color-cyan);
  display: block;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.44px;
  line-height: 31.9px;
  margin-top: 4px;
}

.section-title__sub-wrap {
  display: block;
  margin-top: 0;
}

.section-title__sub {
  color: var(--color-text);
  display: block;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.44px;
  line-height: 31.9px;
}

.section-title__bar {
  background-color: var(--color-accent);
  display: block;
  height: 6px;
  margin: -8px auto 0;
  width: 97px;
}

.section-title__row--merits {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 0;
}

.text-highlight {
  color: var(--color-accent);
  font-weight: 700;
  line-height: 27.75px;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-underline-offset: 2px;
}

.text-mark {
  display: inline-block;
  font-weight: 700;
  position: relative;
}

.text-mark::after {
  background-color: var(--color-accent);
  bottom: 0;
  content: "";
  height: 8px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 144px;
  z-index: -1;
}

.section-title__accent--gold::after {
  background: none;
}

.section-title__accent {
  color: var(--color-primary-light);
  display: inline;
  position: relative;
}

.section-title__accent::after {
  background: linear-gradient(180deg, transparent 60%, var(--color-accent-light) 60%);
  bottom: 0;
  content: "";
  height: 100%;
  left: -2px;
  position: absolute;
  right: -2px;
  z-index: -1;
}

.section-title--light .section-title__accent {
  color: var(--color-accent);
}

.section-title__accent--gold {
  color: var(--color-accent);
}

.section-body p + p {
  margin-top: 0;
}

.card-grid {
  display: grid;
  gap: 25px;
}

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

.card-grid--4 {
  grid-template-columns: 1fr;
  width: 100%;
}

.section-note {
  color: var(--color-text-light);
  font-size: 13px;
  margin-bottom: 28px;
  text-align: center;
}

.section-lead {
  color: var(--color-text-light);
  margin-bottom: 28px;
  text-align: center;
}

/* ---- FV ---- */
.fv {
  min-height: 524px;
  overflow: hidden;
  position: relative;
}

.fv__hero {
  background-color: #d2d2d2;
  height: 475px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.fv__hero-bg {
  display: block;
  height: 402px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.fv__hero-bg-img {
  display: block;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: left top;
  width: 100%;
}

.fv__text-blur {
  background: rgba(255, 255, 255, 0.6);
  filter: blur(60px);
  height: 287px;
  left: -18px;
  pointer-events: none;
  position: absolute;
  top: 16px;
  width: 208px;
  z-index: 1;
}

.fv__side-gradient {
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.94) 6.25%, rgba(255, 255, 255, 0) 100%);
  height: 393px;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 242px;
  z-index: 1;
}

.fv__pc-only {
  display: none;
}

.deadline__pc-only {
  display: none;
}

.cases__pc-only {
  display: none;
}

.cta__pc-only {
  display: none;
}

.schedule__pc-only {
  display: none;
}

.results__pc-only {
  display: none;
}

.strengths__pc-only {
  display: none;
}

.merits__pc-only {
  display: none;
}

.price__pc-only {
  display: none;
}

.compare__pc-only {
  display: none;
}

.consult-flow__pc-only {
  display: none;
}

.process-flow__pc-only {
  display: none;
}

.contact__pc-only {
  display: none;
}

.fv__glow {
  display: none;
  max-width: none;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.fv__bottom-gradient {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 50%, #ffffff 100%);
  height: 176px;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 314px;
  width: 100%;
  z-index: 3;
}

.fv__point-bg--pc {
  display: none;
}

.fv__label-wrap,
.fv__heading,
.fv__banner {
  position: absolute;
}

.fv__label-wrap {
  height: 33.879px;
  left: 16.45px;
  overflow: visible;
  top: 23px;
  width: 185.008px;
  z-index: 5;
}

.fv__label-bg {
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.fv__label-bg img {
  aspect-ratio: auto;
  display: block;
  height: 203.94%;
  left: -9.52%;
  max-width: none;
  position: absolute;
  top: -62.37%;
  width: 119.03%;
}

.fv__label {
  color: #ffffff;
  font-family: var(--font-en);
  font-size: 15.603px;
  font-weight: 700;
  left: 15.05px;
  line-height: 28.812px;
  position: absolute;
  text-shadow:
    0 1px 2px rgba(0, 83, 120, 0.9),
    0 0 8px #007fba,
    0 0 13px #00a0e9;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  z-index: 1;
}

.fv__heading {
  left: 20px;
  min-height: 227px;
  top: 55px;
  width: 258px;
  z-index: 4;
}

.fv__heading-char-comma {
  letter-spacing: -21.12px;
}

.fv__heading-copy {
  display: block;
  height: 185px;
  position: relative;
  width: 100%;
}

.fv__heading-copy.fv__pc-only {
  display: none;
}

.fv__heading-main {
  display: block;
  font-family: var(--font-serif);
  font-size: 84.49px;
  font-weight: 900;
  left: 0;
  line-height: 1.1;
  position: absolute;
  top: 0;
}

.fv__heading-main--shadow {
  color: #593a00;
  left: 2.54px;
  text-shadow:
    0.7px 0 0 #593a00, -0.7px 0 0 #593a00,
    0 0.7px 0 #593a00, 0 -0.7px 0 #593a00,
    0.5px 0.5px 0 #593a00, -0.5px 0.5px 0 #593a00,
    0.5px -0.5px 0 #593a00, -0.5px -0.5px 0 #593a00,
    0 0 18px rgba(255, 255, 255, 0.95),
    0 0 34px rgba(255, 255, 255, 0.75);
  top: 2px;
  z-index: 1;
}

.fv__heading-main--front {
  color: transparent;
  text-shadow: none;
  z-index: 2;
}

.fv__heading-main--front .fv__heading-line {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fv__heading-line {
  display: block;
}

.fv__heading-char-small {
  font-size: 63.46px;
}

.fv__heading-char-tight {
  letter-spacing: -23.4px;
}

.fv__bar {
  background-color: #0095d5;
  display: block;
  height: 19px;
  position: absolute;
  width: 181px;
  z-index: 0;
}

.fv__bar--1 {
  left: -4px;
  top: 81px;
}

.fv__bar--2 {
  left: -4px;
  top: 173px;
}

.fv__heading-sub {
  display: block;
  font-family: var(--font-serif);
  font-size: 29px;
  font-weight: 900;
  left: 0;
  line-height: 1.183;
  position: absolute;
}

.fv__heading-sub--shadow {
  color: #005072;
  text-shadow:
    0.4px 0 0 #005072, -0.4px 0 0 #005072,
    0 0.4px 0 #005072, 0 -0.4px 0 #005072,
    0.3px 0.3px 0 #005072, -0.3px 0.3px 0 #005072,
    0.3px -0.3px 0 #005072, -0.3px -0.3px 0 #005072;
  top: 193px;
  z-index: 1;
}

.fv__heading-sub--front {
  background: linear-gradient(180deg, #64e5ff 0%, #14adda 48%, #00779e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  top: 192px;
  z-index: 2;
}

.fv__heading-sub.fv__pc-only {
  display: none;
}

.fv__banner {
  height: 132px;
  left: -18px;
  overflow: hidden;
  top: 288px;
  width: 438px;
  z-index: 5;
}

.fv__banner-shape {
  bottom: 0;
  display: block;
  height: 132px;
  left: -41px;
  position: absolute;
  transform: scaleY(-1);
  width: 439px;
}

.fv__banner-shape picture {
  display: block;
  height: 100%;
  position: relative;
  width: 100%;
}

.fv__banner-shape img {
  display: block;
  height: 106.04%;
  left: -0.45%;
  max-width: none;
  position: absolute;
  top: -1.51%;
  width: 101.81%;
}

.fv__banner-ellipse-wrap {
  align-items: center;
  display: flex;
  height: 162.16px;
  justify-content: center;
  left: 38.45px;
  overflow: visible;
  position: absolute;
  top: -17.96px;
  width: 307.046px;
}

.fv__banner-ellipse-wrap .fv__banner-ellipse {
  flex: none;
  height: 544.435px;
  max-width: none;
  transform: rotate(90deg);
  width: 399.55px;
}

.fv__banner-ellipse.fv__pc-only {
  display: none;
}

.fv__banner-tag-bg {
  background-color: #e8a600;
  border-radius: 5px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  height: 46px;
  left: 35px;
  position: absolute;
  top: 6px;
  width: 170px;
  z-index: 0;
}

.fv__banner-tag {
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 40.01px;
  font-weight: 700;
  left: 39.66px;
  letter-spacing: 0;
  line-height: 1.083;
  margin: 0;
  padding: 0;
  position: absolute;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  top: 5px;
  z-index: 1;
}

.fv__banner-tag-char {
  letter-spacing: 6px;
}

.fv__banner-lead {
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 26.012px;
  font-weight: 700;
  left: 39.66px;
  line-height: 1.123;
  position: absolute;
  text-shadow:
    0 1px 2px rgba(0, 83, 120, 0.9),
    0 0 13px #007fba,
    0 0 20px #00a0e9;
  top: 52px;
  width: 333.794px;
}

.fv__banner-month {
  color: transparent;
  display: inline-block;
  font-size: 36.043px;
  font-weight: 900;
  filter: none;
  position: relative;
  text-shadow: none;
  z-index: 1;
}

.fv__banner-month::before {
  color: #006f9e;
  content: attr(data-shadow);
  filter: blur(1px) drop-shadow(0 1px 2px rgba(0, 83, 120, 0.85)) drop-shadow(0 0 9px #007fba);
  left: 0;
  opacity: 0.72;
  position: absolute;
  text-shadow: none;
  top: 2px;
  z-index: -1;
}

.fv__banner-month-gold {
  background: linear-gradient(180deg, #8f6500 0%, #b8891e 16%, #e0bd61 31%, #ffe792 45%, #ebc66e 58%, #c39a3a 72%, #a67913 86%, #806000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  position: relative;
  text-shadow: none;
  z-index: 1;
}

.fv__banner-month--small {
  letter-spacing: -6.85px;
}

.fv__banner-note {
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 13.374px;
  font-weight: 700;
  left: 39.66px;
  line-height: 1.183;
  margin: 0;
  position: absolute;
  text-shadow:
    0 1px 2px rgba(0, 83, 120, 0.9),
    0 0 13px #007fba,
    0 0 20px #00a0e9;
  top: 90px;
  width: 333.794px;
}

.fv__banner-suffix {
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 26.012px;
  font-weight: 700;
  left: 207px;
  line-height: 1.083;
  margin: 0;
  position: absolute;
  text-shadow:
    0 1px 2px rgba(0, 83, 120, 0.9),
    0 0 13px #007fba,
    0 0 20px #00a0e9;
  top: 21px;
}

.fv__points {
  display: flex;
  flex-wrap: nowrap;
  left: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 426px;
  width: 392px;
  z-index: 6;
}

.fv__point {
  flex: 0 0 98px;
  height: 98px;
  position: relative;
  text-align: center;
  width: 98px;
}

.fv__point:nth-child(2) {
  flex-basis: 99px;
  margin-left: -1px;
  width: 99px;
}

.fv__point-bg {
  display: block;
  height: 98px;
  width: 100%;
}

.fv__point-text {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 18.2px;
  position: absolute;
  text-shadow:
    0 1px 2px rgba(0, 83, 120, 0.9),
    0 0 9px #007fba,
    0 0 14px #00a0e9;
  white-space: nowrap;
}

.fv__point:nth-child(1) .fv__point-text {
  left: 7px;
  top: 40px;
  transform: none;
}

.fv__point:nth-child(2) .fv__point-text {
  left: 50%;
  top: 31px;
  transform: translateX(-50%);
}

.fv__point:nth-child(3) .fv__point-text {
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  white-space: normal;
}

.fv__point-fee-label {
  display: block;
  font-size: 16px;
  line-height: 35.2px;
}

.fv__point-fee-value {
  display: block;
  font-size: 16px;
  line-height: 35.2px;
  margin-top: -8px;
}

.fv__point:nth-child(4) .fv__point-text {
  left: 50%;
  top: 29px;
  transform: translateX(-50%);
}

.fv__point-zero {
  font-size: 38px;
  line-height: 35.2px;
}

/* ---- Deadline ---- */
.section.section--deadline {
  background-color: var(--color-bg);
  margin-top: -49px;
  min-height: 728px;
  overflow: hidden;
  padding: 76px 0 42px;
  position: relative;
  z-index: 1;
}

.section.section--cases {
  background: linear-gradient(90deg, #69b2c7 0%, #fbfeff 50%, #69b2c7 100%);
  min-height: 2804px;
  padding: 60px 0 130px;
}

.section.section--cta {
  background-color: #fff9e6;
  color: var(--color-text);
  min-height: 952px;
  overflow: hidden;
  padding: 46px 0 29px;
  position: relative;
}

.section--cta__bg {
  height: 100%;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.section--cta__bg-layers {
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
}

.section--cta__bg-sp-img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.section--cta .l-container {
  position: relative;
  z-index: 1;
}

.section.section--merits {
  background-color: var(--color-bg);
  min-height: 1074px;
  overflow: hidden;
  padding: 65px 0 107px;
  position: relative;
}

.section--merits__bg {
  bottom: auto;
  height: 522px;
  left: -2px;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 565px;
  transform: none;
  width: 622px;
}

.section--merits__scale {
  display: block;
  height: 522px;
  max-width: none;
  width: 622px;
}

.section--merits__ellipse {
  display: none;
}

.section--merits .l-container {
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 1;
}

.section--deadline__bg {
  height: 100%;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.section--deadline__ellipse-picture {
  overflow: visible;
  pointer-events: none;
  position: absolute;
}

.section--deadline__ellipse-expand {
  position: absolute;
}

.section--deadline__ellipse-picture--9-sp .section--deadline__ellipse-expand,
.section--deadline__ellipse-picture--9 .section--deadline__ellipse-expand {
  inset: -32.15% -32.57%;
}

.section--deadline__ellipse-picture--10-sp .section--deadline__ellipse-expand,
.section--deadline__ellipse-picture--10-left .section--deadline__ellipse-expand,
.section--deadline__ellipse-picture--10-right .section--deadline__ellipse-expand {
  inset: -21.65% -21.88%;
}

.section--deadline__ellipse-expand picture {
  display: block;
  height: 100%;
  width: 100%;
}

.section--deadline__ellipse {
  display: block;
  height: 100%;
  max-width: none;
  object-fit: fill;
  width: 100%;
}

.section--deadline__ellipse-picture--9-sp {
  height: 311px;
  left: -70px;
  top: 493px;
  width: 307px;
}

.section--deadline__ellipse-picture--10-sp {
  height: 462px;
  left: 114px;
  top: -73px;
  width: 457px;
}

.section--deadline__gradient {
  background: radial-gradient(
    ellipse 282px 598px at 50% 50%,
    #ffffff 55.77%,
    #bfd6e3 63.7%,
    #80aec6 71.64%,
    #6099b8 75.6%,
    #4085aa 79.57%,
    #20709b 83.53%,
    #106694 85.52%,
    #005c8d 87.5%
  );
  height: 1196px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 564px;
}

.section--deadline__texture-picture {
  height: 1181px;
  left: -641px;
  pointer-events: none;
  position: absolute;
  top: -98px;
  width: 1675px;
}

.section--deadline__texture {
  display: block;
  height: 100%;
  inset: 0;
  max-width: none;
  object-fit: cover;
  opacity: 0.25;
  position: absolute;
  width: 100%;
}

.section--deadline__illust--sp {
  height: 205.435px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 448px;
  transform: translateX(calc(-50% + 0.45px));
  width: 295.897px;
  z-index: 1;
}

.section--deadline__illust-expand {
  position: absolute;
}

.section--deadline__illust--sp .section--deadline__illust-expand {
  inset: -29.21% -16.7% -29.21% -14.49%;
}

.section--deadline__illust--sp picture {
  display: block;
  height: 100%;
  width: 100%;
}

.section--deadline__illust-img--sp {
  display: block;
  height: 100%;
  max-width: none;
  object-fit: fill;
  width: 100%;
}

.section--deadline .l-container {
  position: relative;
  z-index: 2;
}

.section-title__headline--sp.deadline__sp-only {
  display: flex;
}

.section-title--deadline {
  margin-bottom: 13px;
}

.section-title--deadline .section-title__en {
  font-size: 16px;
  letter-spacing: 1.8px;
  line-height: 17.4px;
  margin-bottom: 3px;
  opacity: 1;
}

.section-title__headline--sp {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section-title__month-group--sp {
  display: flex;
  flex-direction: column;
  position: relative;
}

.section-title--deadline .section-title__month {
  margin-top: 0;
}

.section-title__sub--sp {
  color: #0f2b5b;
  font-size: 24px;
  letter-spacing: 0.44px;
  line-height: 31.9px;
}

.section-title__bar--sp {
  bottom: -1px;
  height: 8px;
  left: 50%;
  margin: 0;
  position: absolute;
  transform: translateX(-50%);
  z-index: -1;
}

.section-body__text--deadline {
  color: #1a1a2e;
  font-size: 16px;
  font-weight: 500;
  line-height: 27.75px;
  margin: 0 auto;
  max-width: 323px;
}

.section-body__text--deadline p + p {
  margin-top: 0;
}

/* ---- Cases 窶・Figma 417:7223 ---- */
.section--cases .l-container.l-container--393 {
  padding-left: 20px;
  padding-right: 20px;
}

.section-title--cases {
  margin: 0 auto 34px;
  max-width: 353px;
}

.section-title--cases .section-title__en {
  font-size: 16px;
  letter-spacing: 1.8px;
  line-height: 17.4px;
  margin-bottom: 3px;
  opacity: 0.7;
}

.section-title__row--cases {
  align-items: flex-end;
  color: var(--color-primary);
  display: inline-flex;
  flex-wrap: wrap;
  font-size: 24px;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.44px;
  line-height: 31.9px;
  margin-top: 0;
}

.section-title__row--cases .section-title__cases-prefix,
.section-title__row--cases .section-title__cases-suffix {
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.44px;
  line-height: 31.9px;
}

.card-list--cases {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-left: -19px;
  width: calc(100% + 38px);
}

.case-card__title,
.case-card__text {
  margin-left: 0;
  margin-right: 0;
}

.case-card--wave {
  background: none;
  border: none;
  box-shadow: none;
  height: 485px;
  overflow: visible;
  position: relative;
}

.case-card__inner {
  position: relative;
}

.case-card__illust-wrap {
  display: block;
  line-height: 0;
}

.case-card--wave:hover {
  box-shadow: none;
  transform: none;
}

.case-card__shape {
  height: 485px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 391px;
}

.case-card__shadow {
  height: 478px;
  left: calc(50% + 2.5px);
  object-fit: fill;
  position: absolute;
  top: 7px;
  transform: translateX(-50%);
  width: 386px;
}

.case-card__front {
  height: 478px;
  left: calc(50% - 2.5px);
  object-fit: fill;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 386px;
}

.case-card--wave-reverse .case-card__shape {
  transform: translateX(-50%);
}

.case-card--wave-reverse .case-card__front {
  left: calc(50% + 2.5px);
  transform: translateX(-50%) scaleX(-1);
}

.case-card--wave-reverse .case-card__shadow {
  left: calc(50% - 2.5px);
  transform: translateX(-50%) scaleX(-1);
}

.case-card__body {
  left: 36px;
  padding: 270px 0 0;
  position: absolute;
  top: 0;
  width: 319px;
  z-index: 2;
}

.case-card__illust {
  height: 190px;
  left: 98px;
  object-fit: contain;
  pointer-events: none;
  position: absolute;
  top: 49px;
  width: 190px;
  z-index: 2;
}

.case-card__title {
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 7px;
  max-width: 319px;
}

.case-card__text {
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 22.75px;
  max-width: 319px;
}

/* ---- CTA ---- */
.section--cta::before {
  display: none;
}

.cta-block {
  position: relative;
  top: 15px;
  z-index: 1;
}

.cta-block__badge-wrap {
  height: 57px;
  margin: 0 auto;
  position: relative;
  width: 263px;
}

.cta-block__badge-bg {
  height: 57px;
  width: 263px;
}

svg.cta-block__badge-bg.cta__sp-only {
  display: block;
}

svg.cta-block__badge-bg.cta__pc-only {
  display: none;
}

.cta-block__badge {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  left: 50%;
  letter-spacing: 1.04px;
  line-height: 24.05px;
  position: absolute;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  top: 10px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.cta-block__title {
  -webkit-text-stroke: 0.7px currentColor;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.44px;
  line-height: 31.9px;
  margin-top: 4px;
  position: relative;
  text-align: center;
}

.cta-block__title-blue {
  color: var(--color-cyan);
  display: block;
  font-size: 30px;
}

.cta-block__title-line {
  color: var(--color-text);
  display: block;
  font-size: 24px;
}

.cta-block__title-bar {
  background-color: var(--color-accent);
  height: 8px;
  left: 50%;
  position: absolute;
  top: 56px;
  transform: translateX(-50%);
  width: 339px;
  z-index: -1;
}

.cta-block__text {
  font-size: 16px;
  line-height: 27.75px;
  margin: 18px auto 0;
  max-width: 323px;
}

.cta-block__text-base {
  color: var(--color-text);
  font-weight: 500;
  line-height: 27.75px;
}

.cta-block__text-base--lead {
  display: block;
}

.cta-block__highlight {
  color: var(--color-cyan);
  font-weight: 700;
  line-height: 27.75px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cta-block__frame-wrap {
  align-items: center;
  background-color: #ffffff;
  border: 7px solid var(--color-cyan);
  box-sizing: border-box;
  display: flex;
  height: 120px;
  justify-content: center;
  margin: 39px auto 0;
  padding: 0;
  position: relative;
  width: 339px;
}

.cta-block__box-title {
  color: var(--color-text);
  font-size: 20px;
  font-weight: 700;
  line-height: 27.75px;
  margin: 0;
  max-width: 323px;
  text-align: center;
}

.cta-block__box-title.cta__sp-only {
  margin-top: -4px;
}

.cta-block__mark {
  display: inline-block;
  font-weight: 700;
  position: relative;
  z-index: 0;
}

.cta-block__mark::after {
  background-color: var(--color-cyan);
  bottom: 0;
  content: "";
  height: 8px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 144px;
  z-index: -1;
}

.cta-block__box-text {
  color: var(--color-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 27.75px;
  margin: 19px auto 0;
  max-width: 323px;
}

.cta-block__illust--sp {
  display: block;
  line-height: 0;
  margin: 15px auto 0;
  width: 336px;
}

.cta-block__illust-img--sp {
  display: block;
  height: 220px;
  object-fit: contain;
  width: 336px;
}

.cta-block__placeholder {
  display: none;
}

/* ---- Merits ---- */
.section-title--merits {
  margin-bottom: 39px;
  max-width: 353px;
}

.section-title--merits .section-title__en {
  font-size: 16px;
  line-height: 17.4px;
  margin-bottom: 3px;
}

.section-title--merits .section-title__accent::after {
  content: none;
}

.section-title__merits-lead {
  color: var(--color-primary);
}

.section-title__row--merits .section-title__merits-lead {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.44px;
  line-height: 31.9px;
}

.section-title__row--merits .section-title__accent--lg {
  margin-left: 0;
}

.info-card {
  background-color: var(--color-bg);
  border: none;
  border-radius: 12px;
  box-shadow: 1px 1px 3px rgba(15, 43, 91, 0.5);
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 30px 21px;
}

.info-card:hover {
  box-shadow: 1px 1px 3px rgba(15, 43, 91, 0.5);
  transform: none;
}

.info-card__head {
  align-items: center;
  display: flex;
  gap: 10px;
}

.info-card__icon {
  align-items: center;
  background: radial-gradient(
    circle at 50% 50%,
    #78d2f9 0%,
    #5ac7f0 25%,
    #3cbce7 50%,
    #1eb1dd 75%,
    #0facd9 87.5%,
    #00a6d4 100%
  );
  border-radius: 5px;
  color: #ffffff;
  display: flex;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 900;
  height: 48px;
  justify-content: center;
  line-height: 25.9px;
  width: 48px;
}

.info-card__title {
  color: var(--color-primary);
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 0;
}

.card-grid--4 .info-card:first-child .info-card__title {
  max-width: 244px;
}

.info-card__text {
  color: #556;
  font-size: 14px;
  font-weight: 400;
  line-height: 25.2px;
  margin-top: -2px;
  max-width: 311px;
}

/* ---- Schedule 窶・Figma 417:6845 ---- */
.section.section--schedule {
  min-height: 957px;
  overflow: hidden;
  padding: 56px 0 53px;
  position: relative;
}

.section--schedule__bg {
  height: 100%;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.section--schedule__bg-img {
  height: 1013px;
  left: 50%;
  max-width: none;
  object-fit: cover;
  position: absolute;
  top: calc(50% + 3px);
  transform: translate(-50%, -50%);
  width: 1349px;
}

.section--schedule .l-container {
  position: relative;
  z-index: 1;
}

.schedule-panel {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
  margin: 0 auto;
  max-width: 350px;
  min-height: 848px;
  overflow: hidden;
  padding: 25px 0 51px;
  position: relative;
  width: 350px;
}

.section-title--schedule {
  margin-bottom: 32px;
}

.section-title--schedule .section-title__en {
  color: #e8a600;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 17.4px;
  margin-bottom: 3px;
  opacity: 0.7;
}

.section-title__row--schedule {
  align-items: center;
  color: #0f2b5b;
  display: inline-flex;
  flex-wrap: wrap;
  font-size: 24px;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.44px;
  line-height: 31.9px;
}

.section-title__row--schedule .section-title__accent--lg {
  color: #00a6d4;
  font-size: 30px;
  line-height: 31.9px;
}

.schedule-flow__main {
  background-color: #ffffff;
  border: 2px dashed #61bbe2;
  border-radius: 15px;
  margin: 0 auto;
  max-width: 325px;
  min-height: 505px;
  padding: 15px 13px 22px;
  position: relative;
  width: 325px;
}

.schedule-flow__label {
  color: #0f2b5b;
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  margin-bottom: 16px;
  text-align: center;
}

.schedule-flow__steps {
  display: flex;
  flex-direction: column;
  gap: 27px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.schedule-flow__step {
  align-items: center;
  background: linear-gradient(-0.14deg, #61bbe2 0.57%, #009fcc 99.43%);
  border-radius: 5px;
  color: #ffffff;
  display: flex;
  font-size: 18px;
  font-weight: 700;
  height: 63px;
  justify-content: center;
  line-height: 21px;
  text-align: center;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  width: 100%;
}

.schedule-flow__arrows {
  height: 282px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 123px;
  transform: translateX(calc(-50% + 0.36px));
  width: 28px;
}

.schedule-flow__after {
  margin: 8px auto 0;
  max-width: 300px;
  padding-top: 19px;
  position: relative;
  width: 300px;
  z-index: 0;
}

.schedule-flow__after-arrows {
  height: 102px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translateX(calc(-50% - 0.14px));
  width: 28px;
  z-index: -1;
}

/* ---- Results ---- */
.section.section--results {
  background-color: #ffffff;
  min-height: 560px;
  overflow: hidden;
  padding: 48px 0 65px;
  position: relative;
}

.section--results__bg {
  height: 100%;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.section--results__bg-layers {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.section--results__texture {
  height: 915px;
  left: 50%;
  max-width: none;
  object-fit: cover;
  opacity: 0.35;
  position: absolute;
  top: 50%;
  transform: translate(calc(-50% + 0.5px), calc(-50% - 11.5px));
  width: 1220px;
}

.section--results__gradient {
  background: radial-gradient(
    ellipse 323.5px 348px at 50% 50%,
    #ffffff 55.77%,
    #d2ecfa 65.51%,
    #a5daf5 75.24%,
    #77c7f0 84.98%,
    #4ab4eb 94.71%
  );
  height: 696px;
  left: 50%;
  opacity: 0.5;
  position: absolute;
  top: 50%;
  transform: translate(calc(-50% + 1px), calc(-50% - 11px));
  width: 647px;
}

.section--results .l-container {
  position: relative;
  z-index: 1;
}

.section-title--results {
  margin-bottom: 23px;
  max-width: 353px;
}

.section-title--results .section-title__en {
  font-size: 16px;
  letter-spacing: 1.8px;
  line-height: 17.4px;
  margin-bottom: 3px;
}

.section-title__row--results {
  align-items: center;
  display: inline-flex;
  flex-wrap: wrap;
  font-size: 24px;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.44px;
  line-height: 31.9px;
  margin-top: 0;
}

.section-title__row--results .section-title__results-prefix,
.section-title__row--results .section-title__results-suffix {
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.44px;
  line-height: 31.9px;
}

.results-slider__viewport {
  -ms-overflow-style: none;
  box-sizing: border-box;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: visible;
  padding: 8px 12px 12px 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  width: 280px;
}

.results-slider__viewport::-webkit-scrollbar {
  display: none;
}

.results-slider__track {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  width: max-content;
}

.results-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 1px 1px 6px rgba(15, 43, 91, 0.5);
  box-sizing: border-box;
  flex-shrink: 0;
  height: 340px;
  overflow: visible;
  position: relative;
  scroll-snap-align: center;
  width: 254px;
}

.results-card__badge {
  background: linear-gradient(to right, #f4f4f4 0%, #96e0ff 51.923%);
  border-radius: 100px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  left: 0;
  letter-spacing: 0.66px;
  line-height: 20.35px;
  padding: 3px 0;
  position: absolute;
  text-align: center;
  top: 16px;
  width: 88px;
  z-index: 1;
}

.results-card__illust-wrap {
  display: block;
  height: 118px;
  left: 50%;
  line-height: 0;
  position: absolute;
  top: 28px;
  transform: translateX(-50%);
  width: 118px;
}

.results-card__illust {
  border-radius: 50%;
  display: block;
  height: 118px;
  object-fit: contain;
  width: 118px;
}

.results-card__title {
  background: linear-gradient(179.85deg, #61bbe2 0.57%, #009fcc 99.43%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 16px;
  font-weight: 700;
  left: 50%;
  line-height: 24px;
  margin: 0;
  position: absolute;
  text-align: center;
  top: 154px;
  transform: translateX(-50%);
  width: 212px;
}

.results-card__text {
  color: #556;
  font-size: 16px;
  font-weight: 400;
  left: 50%;
  line-height: 25.2px;
  margin: 0;
  position: absolute;
  top: 212px;
  transform: translateX(-50%);
  width: 212px;
}

.results-dots {
  display: flex;
  gap: 5px;
  justify-content: center;
  margin-top: 17px;
}

.results-dots__item {
  background-color: #556;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  height: 12px;
  opacity: 0.35;
  padding: 0;
  width: 12px;
}

.results-dots__item--active {
  background-color: var(--color-cyan);
  opacity: 1;
}

/* ---- Strengths ---- */
.section.section--strengths {
  background-color: #ffffff;
  overflow: hidden;
  padding: 68px 0 96px;
  position: relative;
}

.section--strengths__bg {
  height: 100%;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.section--strengths__aoback {
  height: 1515px;
  left: calc(50% + 330px);
  max-width: none;
  object-fit: cover;
  opacity: 0.5;
  position: absolute;
  top: calc(50% + 38.5px);
  transform: translate(-50%, -50%);
  width: 2019px;
}

.section--strengths__overlay {
  background-color: rgba(0, 179, 230, 0.15);
  height: 1486px;
  left: calc(50% + 354.5px);
  position: absolute;
  top: calc(50% + 53px);
  transform: translate(-50%, -50%);
  width: 2020px;
}

.section--strengths__texture {
  display: none;
}

.section--strengths .l-container {
  position: relative;
  z-index: 1;
}

.section-title--strengths {
  margin-bottom: 54px;
}

.section-title__row--strengths {
  display: flex;
  font-size: 24px;
  font-weight: 900;
  gap: 0;
  justify-content: center;
  letter-spacing: 0.44px;
  line-height: 31.9px;
}

.section-title__accent--cyan {
  color: var(--color-cyan);
  font-size: 30px;
}

.section-title__accent--cyan::after {
  content: none;
}

.strength-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.strength-card {
  height: 192px;
  margin: 0 auto;
  max-width: 354px;
  position: relative;
  width: 100%;
}

.strength-card__shadow {
  background-color: var(--color-primary);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  height: 192px;
  left: 4px;
  position: absolute;
  top: 4px;
  width: 350px;
}

.strength-card__inner {
  align-items: center;
  background-color: #ffffff;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
  display: flex;
  gap: 15px;
  height: 192px;
  left: 0;
  padding: 0 25px;
  position: absolute;
  top: 0;
  width: 350px;
}

.strength-card__num {
  color: var(--color-accent);
  flex-shrink: 0;
  font-family: var(--font-en);
  font-size: 70px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  width: 75px;
}

.strength-card:nth-child(2) .strength-card__num,
.strength-card:nth-child(3) .strength-card__num,
.strength-card:nth-child(4) .strength-card__num {
  width: 89px;
}

.strength-card:nth-child(4) .strength-card__num {
  width: 96px;
}

.strength-card__body {
  flex: 1;
  max-width: 211px;
}

.strength-card__title {
  color: #006ca7;
  font-size: 17px;
  font-weight: 900;
  line-height: 24.65px;
  margin-bottom: 6px;
}

.strength-card__line {
  background-color: #0f2b5b;
  display: block;
  flex-shrink: 0;
  height: 1px;
  margin-bottom: 6px;
  width: 211px;
}

.strength-card__text {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 25.2px;
}

/* ---- Price 窶・Figma 417:7179 ---- */
.section.section--price {
  min-height: 478px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.section--price__bg {
  height: 100%;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.section--price__kiiroback-wrap {
  display: block;
  height: 478px;
  left: 50%;
  line-height: 0;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 393px;
}

.section--price__kiiroback {
  display: block;
  height: 478px;
  max-width: none;
  object-fit: cover;
  width: 393px;
}

.section--price .l-container--393 {
  max-width: 393px;
  padding-left: 0;
  padding-right: 0;
}

.section--price .l-container {
  position: relative;
  z-index: 1;
}

.price-stage {
  height: 478px;
  margin: 0 auto;
  position: relative;
  width: 393px;
  z-index: 1;
}

.section-title--price {
  color: #00b7ea;
  font-size: 30px;
  font-weight: 900;
  left: 0;
  letter-spacing: 0.44px;
  line-height: 31.9px;
  margin: 0;
  position: absolute;
  top: 47px;
  width: 100%;
}

.price-box__lead-inner {
  left: 50%;
  position: absolute;
  top: 95px;
  transform: translateX(-50%);
  width: 393px;
}

.price-box__lead-inner .price-box__lead-line,
.price-box__lead-inner .price-box__highlight-text {
  transform: translateY(-15px);
}

.price-box__lead-line {
  color: #0f2b5b;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 42.742px;
  margin: 0;
  position: relative;
  text-align: center;
  white-space: nowrap;
  z-index: 2;
}

.price-box__lead-line:first-child {
  margin-top: -11.035px;
}

.price-box__lead-line--end {
  line-height: 36.6px;
}

.price-box__lead-inner .price-box__highlight-shadow {
  background-color: #0f2b5b;
  border-radius: 10.177px;
  height: 51.901px;
  left: calc(50% + 2.97px);
  position: absolute;
  top: 28.86px;
  transform: translateX(-50%);
  width: 372px;
  z-index: 0;
}

.price-box__lead-inner .price-box__highlight-panel {
  background-color: #ffffff;
  border-radius: 10.177px;
  box-shadow: inset 0 0 4.282px rgba(15, 43, 91, 0.7);
  height: 51.901px;
  left: calc(50% + 0.12px);
  position: absolute;
  top: 26px;
  transform: translateX(-50%);
  width: 372px;
  z-index: 1;
}

.price-box__highlight-text {
  color: #00b7ea;
  font-size: 32px;
  font-weight: 700;
  line-height: 48.8px;
  margin: 0;
  position: relative;
  text-align: center;
  white-space: nowrap;
  z-index: 2;
}

.price-box__amount-block {
  height: 178.621px;
  left: 50%;
  overflow: visible;
  position: absolute;
  top: 251px;
  transform: translateX(-50%);
  width: 385px;
}

.price-box__amount-glow {
  height: 178.621px;
  left: 50%;
  overflow: visible;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 385px;
  z-index: 0;
}

.price-box__amount-glow-img {
  display: block;
  height: 205.56%;
  left: -24.49%;
  max-width: none;
  position: absolute;
  top: -52.78%;
  width: 148.98%;
}

.price-box__label-sp {
  color: #0f2b5b;
  font-size: 20px;
  font-weight: 700;
  left: 50%;
  line-height: 26.624px;
  margin: 0;
  position: absolute;
  top: 16.81px;
  transform: translateX(calc(-50% - 0.63px));
  white-space: nowrap;
  z-index: 4;
}

.price-box__amount-sp {
  height: 147px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}

.price-box__amount-shadow-sp,
.price-box__amount-front-sp {
  letter-spacing: 1.5799px;
  line-height: 0;
  margin: 0;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  white-space: nowrap;
}

.price-box__amount-shadow-sp {
  color: #0f2b5b;
  left: calc(50% + 4.36px);
  top: 7.83px;
  z-index: 1;
}

.price-box__amount-shadow-sp .price-box__num-sp,
.price-box__amount-shadow-sp .price-box__unit-sp {
  color: #0f2b5b;
}

.price-box__amount-front-sp {
  left: calc(50% + 1.76px);
  top: 5.23px;
  z-index: 2;
}

.price-box__amount-front-sp .price-box__num-sp,
.price-box__amount-front-sp .price-box__unit-sp {
  -webkit-background-clip: text;
  background-clip: text;
  background-image: radial-gradient(
    ellipse 174.5px 73.5px at 50% 50%,
    #78d2f9 0%,
    #5ac7f0 25%,
    #3cbce7 50%,
    #1eb1dd 75%,
    #0facd9 87.5%,
    #00a6d4 100%
  );
  color: transparent;
}

.price-box__num-sp {
  font-family: var(--font-price-num);
  font-size: 78.996px;
  font-weight: 900;
  line-height: 146.143px;
}

.price-box__unit-sp {
  font-size: 35.109px;
  font-weight: 700;
  line-height: 64.952px;
}

.price-box__amount-shadow-sp .price-box__num-sp {
  font-weight: 900;
}

.price-box__amount-front-sp .price-box__unit-sp {
  font-weight: 700;
}

.price-box__tax-sp {
  color: #005684;
  font-size: 21px;
  font-weight: 700;
  left: calc(50% + 138.58px);
  line-height: 38.512px;
  position: absolute;
  top: 46.86px;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 3;
}

.price-box__note-sp {
  color: #0f2b5b;
  font-size: 16px;
  font-weight: 700;
  left: 50%;
  line-height: 24.722px;
  margin: 0;
  position: absolute;
  top: 130.91px;
  transform: translateX(calc(-50% - 0.71px));
  white-space: nowrap;
  z-index: 3;
}

.price-box__main {
  position: relative;
}

/* ---- Compare ---- */
.section.section--compare {
  background-color: var(--color-section-light);
  min-height: 588px;
  overflow: visible;
  padding: 60px 0 45px;
  position: relative;
}

.section--compare__bg {
  height: 100%;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.section--compare__bg::after {
  background-color: rgba(255, 255, 255, 0.7);
  content: "";
  display: none;
  position: absolute;
  z-index: 1;
}

picture.compare__sp-only {
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.section--compare__aoback {
  height: calc(100% + 32px);
  left: 50%;
  max-width: none;
  object-fit: cover;
  opacity: 1;
  position: absolute;
  top: -32px;
  transform: translateX(calc(-50% + 0.5px));
  width: 886px;
}

.section--compare .l-container {
  overflow: visible;
  position: relative;
  z-index: 1;
}

.section--compare .l-container.l-container--393 {
  padding-left: 20px;
  padding-right: 20px;
}

.section-title--compare {
  margin-bottom: 27px;
}

.section-title--compare .section-title__en {
  font-size: 16px;
  letter-spacing: 1.8px;
  line-height: 17.4px;
  margin-bottom: 3px;
  opacity: 0.7;
}

.compare-area {
  overflow: visible;
  padding: 16px 20px 16px 0;
  position: relative;
}

.compare-scroll {
  margin: 0 -40px 0 -5px;
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  overflow-y: visible;
  padding: 0 0 0 0;
  scrollbar-width: none;
}

.compare-scroll::-webkit-scrollbar {
  display: none;
}

.compare-table-wrap {
  display: inline-block;
  min-height: 351px;
  min-width: 100%;
  overflow: visible;
  padding-bottom: 24px;
  padding-top: 11px;
  position: relative;
}

.compare-table__panel {
  display: none;
}

.compare-table__ours-column {
  display: flex;
  filter: drop-shadow(0 4px 8px rgba(15, 43, 91, 0.2));
  flex-direction: column;
  left: 107px;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 244px;
  z-index: 3;
}

.compare-table__ours-header {
  align-items: center;
  background: radial-gradient(
    ellipse 122px 29px at 50% 50%,
    #78d2f9 0%,
    #5ac7f0 25%,
    #3cbce7 50%,
    #1eb1dd 75%,
    #0facd9 87.5%,
    #00a6d4 100%
  );
  border: 1.77px solid var(--color-border);
  border-radius: 9px 9px 0 0;
  color: #ffffff;
  display: flex;
  font-size: 21px;
  font-weight: 700;
  height: 58px;
  justify-content: center;
  line-height: 21.28px;
  margin: 0;
  text-shadow: 0 0 3.54px rgba(0, 0, 0, 0.25);
}

.compare-table__ours-column .compare-table__ours-cell {
  align-items: center;
  background-color: #fffbe6;
  border: 1.77px solid var(--color-border);
  border-top: none;
  color: #1a1a2e;
  display: flex;
  font-size: 18px;
  font-weight: 700;
  height: 47px;
  justify-content: center;
  line-height: 21.28px;
  margin: 0;
  text-align: center;
}

.compare-table__ours-column .compare-table__ours-cell--tall {
  height: 52px;
  line-height: 26.19px;
}

.compare-table__ours-column .compare-table__ours-cell--bold {
  font-weight: 900;
}

.compare-table__ours-column .compare-table__ours-cell--ok {
  color: #06c755;
  font-weight: 900;
}

.compare-table {
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  min-width: 816px;
  position: relative;
  table-layout: fixed;
  width: 816px;
  z-index: 1;
}

.compare-table__col-corner {
  width: 107px;
}

.compare-table__col-ours {
  width: 244px;
}

.compare-table__col-firm {
  width: 147px;
}

.compare-table__col-firm-c {
  width: 172px;
}

.compare-table th,
.compare-table td {
  border: 0.885px solid var(--color-border);
  box-sizing: border-box;
  padding: 0 8px;
  text-align: center;
  vertical-align: middle;
}

.compare-table thead th {
  background: linear-gradient(174deg, #4d4d4d 8.49%, #868686 91.51%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  height: 47px;
  line-height: 21.28px;
}

.compare-table thead th:first-child {
  border-radius: 9px 0 0 0;
}

.compare-table thead th:last-child {
  border-radius: 0 9px 0 0;
}

.compare-table tbody th {
  background-color: var(--color-section-light);
  color: #1a1a2e;
  font-size: 14px;
  font-weight: 700;
  height: 47px;
  line-height: 21.28px;
  padding-left: 8px;
  text-align: left;
}

.compare-table tbody td {
  background-color: #ffffff;
  color: #1a1a2e;
  font-size: 14px;
  font-weight: 400;
  height: 47px;
  line-height: 21.28px;
}

.compare-table tbody tr.compare-table__row--tall th,
.compare-table tbody tr.compare-table__row--tall td {
  height: 52px;
}

.compare-table tbody tr:last-child th {
  border-radius: 0 0 0 9px;
}

.compare-table tbody tr:last-child td:last-child {
  border-radius: 0 0 9px 0;
}

.compare-table__corner {
  background: linear-gradient(171deg, #4d4d4d 8.49%, #868686 91.51%);
}

.compare-table thead .compare-table__slot,
.compare-table tbody .compare-table__slot {
  background: transparent;
  border-color: transparent;
  color: transparent;
  font-size: 0;
  text-shadow: none;
}

.compare-table__slot-text {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.compare-table__slot--bold,
.compare-table__slot--ok {
  font-weight: inherit;
}


@media (max-width: 1199.98px) {
  .compare-area {
    padding: 16px 0;
  }

  .compare-scroll {
    margin: 0;
    overflow-x: hidden;
  }

  .compare-table-wrap {
    display: block;
    min-height: 0;
    min-width: 0;
    padding: 0;
    width: 100%;
  }

  .compare-table__ours-column {
    display: none;
  }

  .compare-table {
    font-size: 13px;
    min-width: 0;
    width: 100%;
  }

  .compare-table__col-corner {
    width: 26%;
  }

  .compare-table__col-ours {
    width: 30%;
  }

  .compare-table__col-firm,
  .compare-table__col-firm-c {
    width: 14.666%;
  }

  .compare-table th,
  .compare-table td {
    overflow-wrap: anywhere;
    padding: 0 2px;
    word-break: normal;
  }

  .compare-table thead th {
    font-size: 13px;
    height: 48px;
    line-height: 1.2;
  }

  .compare-table tbody th,
  .compare-table tbody td {
    font-size: 13px;
    height: 60px;
    line-height: 1.25;
  }

  .compare-table tbody th {
    padding-left: 4px;
  }

  .compare-table tbody tr.compare-table__row--tall th,
  .compare-table tbody tr.compare-table__row--tall td {
    height: 66px;
  }

  .compare-table tbody tr.compare-table__row--tall th {
    font-size: 12px;
    padding-left: 2px;
    white-space: nowrap;
  }

  .compare-table thead .compare-table__slot {
    background: radial-gradient(circle at center, #78d2f9 0%, #5ac7f0 25%, #3cbce7 50%, #1eb1dd 75%, #0facd9 87.5%, #00a6d4 100%);
    border-color: var(--color-border);
    color: #ffffff;
    font-size: 13px;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
  }

  .compare-table tbody .compare-table__slot {
    background-color: #fffbe6;
    border-color: var(--color-border);
    color: var(--color-text);
    font-size: 14px;
    font-weight: 700;
  }

  .compare-table tbody .compare-table__slot--ok {
    color: #06c755;
    font-size: 18px;
    font-weight: 900;
  }

  .compare-table__slot-text {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    white-space: normal;
    width: auto;
  }
}
.section-title__row--compare {
  align-items: center;
  color: #0f2b5b;
  display: inline-flex;
  flex-wrap: wrap;
  font-size: 24px;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.44px;
  line-height: 31.9px;
}

.section-title__row--compare .section-title__accent--lg {
  color: #00a6d4;
  font-size: 30px;
  line-height: 31.9px;
}

/* ---- Schedule Consult (SP) 窶・Figma 417:7888 ---- */
.section.section--schedule-consult {
  background-color: #67c0e7;
  min-height: 1322px;
  overflow: hidden;
  padding: 82px 0 74px;
  position: relative;
  z-index: 1;
}

.section--schedule-consult__bg {
  height: 100%;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.section--schedule-consult__aoback {
  display: block;
  height: 100%;
  left: 0;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  top: 0;
  width: 100%;
}

.section--schedule-consult .l-container {
  position: relative;
  z-index: 1;
}

.section--schedule-consult .l-container.l-container--393 {
  padding-left: 0;
  padding-right: 0;
}

.schedule-consult-panel {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
  height: 1166px;
  margin: 0 auto;
  max-width: 350px;
  overflow: hidden;
  padding: 54px 0 0;
  position: relative;
  width: 350px;
  z-index: 2;
}

.section-title--schedule-consult {
  margin-bottom: 51px;
}

.section-title__en--schedule-consult {
  color: #e8a600;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 17.4px;
  margin-bottom: 3px;
  opacity: 0.7;
}

.section-title__row--schedule-consult {
  align-items: center;
  color: #0f2b5b;
  display: inline-flex;
  flex-wrap: wrap;
  font-size: 24px;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.44px;
  line-height: 31.9px;
}

.section-title__row--schedule-consult .section-title__accent--lg {
  color: #00a6d4;
  font-size: 30px;
  line-height: 31.9px;
}

.schedule-consult-flow {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 11px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 269.884px;
}

.schedule-consult-flow__step {
  flex-shrink: 0;
  width: 269.884px;
}

.schedule-consult-flow__circle {
  aspect-ratio: 1;
  height: auto;
  position: relative;
  width: 269.884px;
}

.schedule-consult-flow__ring {
  display: block;
  height: 100%;
  left: 0;
  object-fit: contain;
  position: absolute;
  top: 0;
  width: 100%;
}

.schedule-consult-flow__content {
  position: absolute;
}

.schedule-consult-flow__content--01 {
  height: 212.375px;
  left: 50.1px;
  top: 29.9px;
  width: 170px;
}

.schedule-consult-flow__content--02 {
  height: 191.95px;
  left: 38.79px;
  top: 32.32px;
  width: 193.929px;
}

.schedule-consult-flow__content--03 {
  height: 194.375px;
  left: 19.39px;
  top: 29.9px;
  width: 232px;
}

.schedule-consult-flow__icon {
  display: block;
  object-fit: contain;
  position: absolute;
}

.schedule-consult-flow__content--01 .schedule-consult-flow__icon {
  height: 119.589px;
  left: 25.05px;
  top: 0;
  width: 119.589px;
}

.schedule-consult-flow__content--02 .schedule-consult-flow__icon {
  height: 109.893px;
  left: 42.02px;
  top: 0;
  width: 109.085px;
}

.schedule-consult-flow__content--03 .schedule-consult-flow__icon {
  height: 109.085px;
  left: 61.41px;
  top: 0;
  width: 109.085px;
}

.schedule-consult-flow__title {
  color: #005f92;
  font-size: 21.009px;
  font-weight: 700;
  left: 50%;
  line-height: 18.181px;
  margin: 0;
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
}

.schedule-consult-flow__content--01 .schedule-consult-flow__title {
  top: 126.05px;
}

.schedule-consult-flow__content--02 .schedule-consult-flow__title {
  top: 123.63px;
}

.schedule-consult-flow__content--03 .schedule-consult-flow__title {
  top: 126.05px;
}

.schedule-consult-flow__text {
  color: #556;
  font-size: 12.929px;
  font-weight: 400;
  left: 50%;
  line-height: 17.938px;
  margin: 0;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
}

.schedule-consult-flow__content--01 .schedule-consult-flow__text {
  top: 158.38px;
  width: 170px;
}

.schedule-consult-flow__content--02 .schedule-consult-flow__text {
  top: 155.95px;
  width: 193.929px;
}

.schedule-consult-flow__content--03 .schedule-consult-flow__text {
  line-height: 17.858px;
  top: 158.38px;
  width: 193.929px;
}

.schedule-consult-flow__arrow {
  flex-shrink: 0;
  height: 37.715px;
  line-height: 0;
  width: 59.208px;
}

.schedule-consult-flow__arrow img {
  display: block;
  height: 37.715px;
  object-fit: contain;
  transform: rotate(90deg);
  width: 59.208px;
}

/* ---- Consult Flow ---- */
.section.section--consult-flow {
  background-color: #d2d2d2;
  display: none;
  overflow: hidden;
  padding: 53px 0 56px;
  position: relative;
}

.section--consult-flow__bg {
  display: none;
  height: 100%;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.section--consult-flow .l-container {
  position: relative;
  z-index: 1;
}

.consult-flow-card {
  position: relative;
}

.section-title--consult-flow {
  margin-bottom: 43px;
}

.section-title__row--consult-flow {
  display: block;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.44px;
  line-height: 31.9px;
}

.consult-flow {
  display: flex;
  flex-direction: column;
  gap: 53px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.consult-flow__item {
  position: relative;
}

.consult-flow__num {
  color: #0f2b5b;
  font-family: var(--font-en);
  font-size: 171.789px;
  font-weight: 500;
  left: -3px;
  line-height: 1;
  opacity: 0.15;
  pointer-events: none;
  position: absolute;
  top: -20px;
  z-index: 0;
}

.consult-flow__box {
  background-image: url("../images/fallback/flow-step-banner.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-left: 27px;
  min-height: 111px;
  padding: 15px 16px 15px 112px;
  position: relative;
  z-index: 1;
}

.consult-flow__title {
  color: #0f2b5b;
  font-size: 18px;
  font-weight: 700;
  line-height: 22.5px;
  margin-bottom: 4px;
}

.consult-flow__text {
  color: #556;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.2px;
}

/* ---- Process Flow ---- */
.section.section--process-flow {
  background-color: #f5f7fa;
  min-height: 919px;
  overflow: hidden;
  padding: 49px 0 104px;
  position: relative;
}

.section--process-flow__bg {
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.section--process-flow__gradient {
  background: radial-gradient(
    ellipse 298.5px 570px at 50% 50%,
    rgba(30, 156, 224, 0) 33.379%,
    rgba(30, 156, 224, 1) 100%
  );
  height: 1140px;
  left: calc(50% + 1px);
  opacity: 0.6;
  position: absolute;
  top: calc(50% - 7.5px);
  transform: translate(-50%, -50%);
  width: 597px;
}

.section--process-flow .l-container {
  position: relative;
  z-index: 1;
}

.section-title--process-flow {
  margin-bottom: 22px;
}

.section-title--process-flow .section-title__en {
  font-size: 16px;
  margin-bottom: 3px;
}

.section-title__row--process-flow {
  align-items: center;
  color: #0f2b5b;
  display: inline-flex;
  font-size: 24px;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.64px;
  line-height: 46.4px;
}

.section-title__row--process-flow .section-title__accent--lg {
  font-size: 30px;
  letter-spacing: 0.64px;
  line-height: 46.4px;
}

.process-flow {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 350px;
}

.process-flow__card {
  height: 106.824px;
  position: relative;
  width: 350px;
}

.process-flow__card--last {
  background-color: #006e8d;
  height: 90px;
}

.process-flow__shape {
  display: block;
  height: 106.824px;
  width: 350px;
}

.process-flow__content {
  align-items: center;
  display: flex;
  left: 14.71px;
  position: absolute;
  top: 23px;
}

.process-flow__content--lines-2 {
  align-items: flex-start;
  left: 15px;
  top: 16px;
}

.process-flow__content--offset-5 {
  left: 14.68px;
  top: 22.7px;
}

.process-flow__content--offset-6 {
  left: 14.68px;
  top: 22.9px;
}

.process-flow__num {
  color: #ffffff;
  flex-shrink: 0;
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 400;
  line-height: normal;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  width: 49.572px;
}

.process-flow__text {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

.process-flow__text-line {
  display: block;
}

/* ---- Lawyer ---- */
.section.section--lawyer {
  background-color: #d2d2d2;
  padding: 43px 0 56px;
}

.section-title--lawyer {
  margin-bottom: 36px;
}

.section-title__row--lawyer {
  display: block;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.44px;
  line-height: 31.9px;
}

.lawyer-photo {
  background-color: #f0f0f0;
  height: 233px;
  margin: 0 auto;
  max-width: 281px;
  width: 100%;
}

/* ---- Office ---- */
.section.section--office {
  background-color: #ffffff;
  min-height: 442px;
  padding: 49px 0 69px;
}

.section--office .l-container--393 {
  padding-left: 0;
  padding-right: 0;
}

.section-title--office {
  color: #0f2b5b;
  font-size: 24px;
  font-weight: 700;
  line-height: 38px;
  margin: 0 0 26px;
  text-align: center;
}

.office-table {
  margin: 0 auto;
  width: min(354px, calc(100% - 32px));
}

.office-table__row {
  display: flex;
  gap: 0 16px;
  padding-bottom: 10px;
}

.office-table__row + .office-table__row {
  border-top: 1px solid #9ca3af;
  padding-top: 10px;
}

.office-table__row:last-child {
  padding-bottom: 0;
}

.office-table dt {
  color: #0f2b5b;
  flex: 0 0 92px;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  min-width: 92px;
  overflow-wrap: normal;
  white-space: nowrap;
  word-break: keep-all;
}

.office-table dd {
  color: #333333;
  flex: 1 1 auto;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  margin: 0;
  min-width: 0;
}

/* ---- Contact ---- */
.section.section--contact {
  background-color: #eeeeee;
  min-height: 1102px;
  overflow: hidden;
  padding: 72px 0;
  position: relative;
}

.section--contact__bg {
  height: 100%;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.section--contact__bg-layers {
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
}

.section--contact__bg-texture {
  display: block;
  height: 1515px;
  left: 50%;
  max-width: none;
  object-fit: cover;
  position: absolute;
  top: -96px;
  transform: translateX(-50%);
  width: 2019px;
}

.section--contact__bg-sp {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.section--contact .l-container {
  position: relative;
  z-index: 1;
}

.contact-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
  margin: 0 auto;
  max-width: 350px;
  overflow: hidden;
  padding: 38px 18px 60px;
  position: relative;
  width: 100%;
}

.section-title--contact {
  margin-bottom: 0;
}

.section-title--contact .section-title__en {
  font-size: 16px;
  letter-spacing: 1.8px;
  line-height: 17.4px;
  margin-bottom: 3px;
}

.section-title__row--contact {
  color: #00a6d4;
  display: block;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.44px;
  line-height: 31.9px;
}

.contact-lead {
  color: #0f2b5b;
  font-size: 15px;
  font-weight: 700;
  line-height: 27.75px;
  margin: 18px 0 31px;
  text-align: center;
}

.contact-form {
  margin: 0 auto;
  max-width: 315px;
}

.section--contact .cf-turnstile,
.section--contact .wpcf7-turnstile,
.section--contact [class*="cf-turnstile"],
.section--contact [class*="turnstile"] {
  display: block !important;
  margin: 0 auto 28px !important;
  max-width: 100% !important;
  width: 300px !important;
}

.section--contact p:has(iframe[src*="challenges.cloudflare.com"]),
.section--contact div:has(iframe[src*="challenges.cloudflare.com"]),
.section--contact span:has(iframe[src*="challenges.cloudflare.com"]) {
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 100% !important;
  width: 300px !important;
}

.section--contact iframe[src*="challenges.cloudflare.com"] {
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 100% !important;
}

.section--contact .contact-form > p:first-child,
.section--contact .contact-form > div:first-child:not(.contact-form__row),
.section--contact .contact-form > span:first-child {
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 100% !important;
  text-align: center !important;
  width: 300px !important;
}

.section--contact .contact-form > p:first-child > *,
.section--contact .contact-form > div:first-child:not(.contact-form__row) > *,
.section--contact .contact-form > span:first-child > *,
.section--contact [data-sitekey],
.section--contact [data-callback],
.section--contact [id*="cf-"],
.section--contact [id*="turnstile"] {
  margin-left: auto !important;
  margin-right: auto !important;
}

.contact-form__row {
  margin-top: 20px;
}

.contact-form__row:first-child {
  margin-top: 0;
}

.contact-form__label {
  align-items: center;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
  line-height: 25.9px;
  margin-bottom: 8px;
}

.contact-form__req {
  background-color: #1e9ce0;
  border-radius: 3px;
  color: #ffffff;
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  line-height: 18.5px;
  margin-left: 0;
  padding: 2px 8px;
}

.contact-form__input {
  background-color: #f8f9fb;
  border: 1px solid #dde1e8;
  border-radius: 6px;
  display: block;
  font-size: 15px;
  min-height: 58px;
  padding: 14px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.contact-form__input::placeholder {
  color: #aab0bc;
}

.contact-form__input:focus {
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(58, 123, 213, 0.12);
  outline: none;
}

.contact-form__input--area {
  min-height: 160px;
  resize: vertical;
}

.contact-form__row--check {
  margin-top: 20px;
}

.contact-form__check {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  gap: 10px;
  justify-content: center;
  width: 100%;
}

.contact-form__check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  background-color: #f8f9fb;
  border: 1px solid #dde1e8;
  border-radius: 0;
  cursor: pointer;
  flex-shrink: 0;
  height: 16px;
  margin: 0;
  position: relative;
  width: 16px;
}

.contact-form__check input[type="checkbox"]:checked {
  background-color: #1e9ce0;
  border-color: #1e9ce0;
}

.contact-form__check input[type="checkbox"]:checked::after {
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  content: "";
  height: 9px;
  left: 50%;
  position: absolute;
  top: 45%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 5px;
}

.contact-form__check input[type="checkbox"]:focus-visible {
  outline: 2px solid #1e9ce0;
  outline-offset: 2px;
}

.contact-form__check-text {
  color: #1a1a2e;
  font-size: 14px;
  line-height: 19.6px;
}

.contact-form .btn--submit {
  background: radial-gradient(ellipse 157.5px 28px at 50% 50%, #78d2f9 0%, #5ac7f0 25%, #3cbce7 50%, #1eb1dd 75%, #00a6d4 100%);
  box-shadow: 0 4px 6px rgba(15, 43, 91, 0.25);
  margin-top: 12px;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  text-align: center;
  width: 100%;
}

.contact-form input.btn--submit,
.contact-form input[type="submit"].btn {
  display: block;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

/* ====================================
   6. Media Queries (PC)
   ==================================== */
@media (min-width: 1200px) {
  .compare-mobile-break {
    display: none;
  }

  .page-viewport--lp::after {
    display: none;
  }

  .float-cta {
    display: none;
  }

  #contact-heading {
    scroll-margin-top: 120px;
  }

  #price-heading {
    scroll-margin-top: 70px;
  }

  .page {
    width: calc(var(--design-width-pc) * 1px);
  }

  main > .section:not(.fv) {
    margin-left: auto;
    margin-right: auto;
    transform-origin: top center;
    width: 1520px;
    zoom: 1.2631578947;
  }

  .l-container--393 {
    max-width: 1040px;
    padding-left: 40px;
    padding-right: 40px;
  }

  /* Header 窶・PC 408:6704 */
  .header {
    height: 102px;
    left: 0;
    margin: 0 !important;
    padding: 0 !important;
    position: fixed;
    top: 0;
    z-index: 200;
  }

  body.admin-bar .header,
  body:has(#wpadminbar) .header {
    top: 32px;
  }

  main {
    margin: 0 !important;
    padding-top: 102px !important;
  }

  main > .fv {
    margin-top: 0 !important;
  }

  .header__inner {
    align-items: center;
    height: 102px;
    justify-content: space-between;
    max-width: 1920px;
    min-height: 102px;
    padding: 0 147px 0 135px;
  }

  .header__logo-img {
    height: 68px;
    width: 317px;
  }

  .header__nav--pc {
    align-items: flex-start;
    align-self: flex-start;
    display: flex;
    flex-shrink: 0;
    gap: 25px;
    height: 84px;
    margin-top: 9px;
    padding-top: 0;
  }

  .header__cta-unit {
    display: inline-block;
    position: relative;
  }

  .header__cta-unit--tel {
    width: 340px;
  }

  .header__cta-unit--line,
  .header__cta-unit--form {
    width: 173px;
  }

  .header__cta-shadow {
    border-radius: 10px;
    height: 80.35px;
    left: 1.9px;
    position: absolute;
    top: 3.65px;
    width: calc(100% - 1.9px);
    z-index: 0;
  }

  .header__cta-unit--tel .header__cta-shadow {
    background-color: #714900;
  }

  .header__cta-unit--line .header__cta-shadow {
    background-color: #00520a;
    left: 0.97px;
  }

  .header__cta-unit--form .header__cta-shadow {
    background-color: #711630;
    left: 0.97px;
  }

  .header__cta-pc {
    border-radius: 10px;
    box-shadow: inset -5px -5px 4px rgba(255, 255, 255, 0.25), inset 0 0 5px #ffffff;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    font-family: var(--font-serif);
    font-weight: 900;
    height: 80.35px;
    justify-content: center;
    overflow: hidden;
    position: relative;
    text-align: center;
    text-decoration: none;
    width: calc(100% - 1.9px);
    z-index: 1;
  }

  .header__cta-pc--tel {
    align-items: center;
    background: var(--gradient-header-tel);
    box-shadow: inset -5px -5px 4px rgba(255, 255, 255, 0.25), inset 0 0 5px #ffffff;
    flex-direction: row;
    gap: 10px;
    padding: 7px 16px 7px 29px;
    text-align: left;
  }

  .header__cta-pc--line {
    background: var(--gradient-header-line);
    width: calc(100% - 0.97px);
    box-shadow: inset -5px -5px 4px rgba(255, 255, 255, 0.25), inset 0 0 5px #4add5c;
    padding: 5px 12px 8px;
  }

  .header__cta-pc--form {
    background: var(--gradient-header-form);
    width: calc(100% - 0.97px);
    box-shadow: inset -5px -5px 4px rgba(255, 255, 255, 0.25), inset 0 0 5px #c52a56;
    padding: 5px 12px 8px;
  }

  .header__cta-pc-icon {
    flex-shrink: 0;
    height: 50px;
    width: 50px;
  }

  .header__cta-pc-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }

  .header__cta-pc-note {
    font-size: 14px;
    line-height: 18px;
    text-shadow: 0 0 6px #744b1b;
  }

  .header__cta-pc--tel .header__cta-pc-note {
    font-size: 16px;
    line-height: 18px;
  }

  .header__cta-pc-label {
    font-size: 22px;
    line-height: 22px;
    text-shadow: 0 0 5.14px #744b1b;
  }

  .header__cta-pc-num {
    font-size: 28px;
    line-height: 28px;
    text-shadow: 0 0 6px #744b1b;
  }

  /* FV 窶・PC 408:6537 */
  .fv {
    background-color: #ffffff;
    height: 764px;
    min-height: 764px;
  }

  .fv__pc-only {
    display: block;
  }

  .fv__sp-only {
    display: none;
  }

  .fv__point-bg--sp {
    display: none;
  }

  .fv__point-bg--pc {
    display: block;
  }

  .fv__hero {
    height: 764px;
    margin: 0 auto;
    max-width: 1920px;
  }

  .fv__hero-bg {
    height: 100%;
  }

  .fv__text-blur {
    background: #ffffff;
    filter: blur(200px);
    height: 542px;
    left: 237px;
    top: 37px;
    width: 724px;
  }

  .fv__side-gradient {
    display: none;
  }

  .fv__photo {
    height: 1371px;
    left: -9px;
    top: -191px;
    width: 2056px;
    z-index: 1;
  }

  .fv__glow {
    display: block;
    height: 999px;
    left: 233px;
    top: -82px;
    transform: rotate(90deg);
    width: 867px;
    z-index: 2;
  }

  .fv__bottom-gradient {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #2c3444 100%);
    bottom: 0;
    height: 77px;
    left: 50%;
    opacity: 0.8;
    top: auto;
    transform: translateX(-50%);
    width: 1920px;
  }

  .fv__label-wrap {
    height: 61px;
    left: 327px;
    top: 40px;
    width: 332px;
  }

  .fv__label {
    font-family: var(--font-en);
    font-size: 28px;
    left: 27px;
    line-height: 51.7px;
  }

  .fv__heading {
    left: 327px;
    top: 101px;
    width: 658px;
  }

  .fv__heading-copy {
    height: auto;
  }

  .fv__heading-copy.fv__sp-only {
    display: none;
  }

  .fv__heading-copy.fv__pc-only {
    display: block;
  }

  .fv__heading-main {
    font-size: 116.995px;
    line-height: 1.183;
  }

  .fv__heading-main--shadow {
    left: 3.9px;
    text-shadow:
      1px 0 0 #593a00, -1px 0 0 #593a00,
      0 1px 0 #593a00, 0 -1px 0 #593a00,
      0.7px 0.7px 0 #593a00, -0.7px 0.7px 0 #593a00,
      0.7px -0.7px 0 #593a00, -0.7px -0.7px 0 #593a00,
      0 0 24px rgba(255, 255, 255, 0.95),
      0 0 44px rgba(255, 255, 255, 0.75);
    top: 2.26px;
  }

  .fv__heading-main--front {
    text-shadow: none;
  }

  .fv__heading-main--front .fv__heading-line {
    background-image: linear-gradient(4.955deg, #986a00 11.406%, #a67913 12.678%, #c39a3a 16.497%, #d9b256 23.131%, #e6c067 27.364%, #ebc66e 31.78%, #ffe792 37.429%, #ffe792 43.92%, #ebc66e 51.217%, #e6c067 58.633%, #d9b256 68.045%, #c39a3a 71.227%, #a67912 73.772%, #986a00 75.045%);
  }

  .fv__heading-copy.fv__pc-only .fv__heading-line {
    white-space: nowrap;
  }

  .fv__heading-char-small {
    font-size: 80px;
  }

  .fv__bar {
    height: 25px;
    width: 545px;
  }

  .fv__bar--1 {
    left: 4px;
    top: 114px;
  }

  .fv__bar--2 {
    display: none;
  }

  .fv__heading-sub--shadow,
  .fv__heading-sub--front {
    display: none;
  }

  .fv__heading-sub.fv__pc-only {
    background: linear-gradient(180deg, #58d7f0 0%, #008fbd 48%, #004e70 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    font-size: 71.68px;
    text-shadow: none;
    top: 133px;
    width: 658px;
  }

  .fv__banner {
    filter: drop-shadow(4px 4px 3px rgba(0, 0, 0, 0.25));
    height: 234px;
    left: -25px;
    overflow: visible;
    top: 325px;
    width: 1069px;
    z-index: 5;
  }

  .fv__banner-shape {
    bottom: 0;
    display: block;
    height: 234px;
    left: 25px;
    position: absolute;
    top: auto;
    transform: scaleY(-1);
    width: 1028px;
  }

  .fv__banner-shape img {
    height: 100%;
    inset: 0;
    width: 100%;
  }

  .fv__banner-ellipse-wrap {
    display: none;
  }

  .fv__banner-ellipse-wrap--pc {
    align-items: center;
    display: flex;
    height: 280.095px;
    justify-content: center;
    left: 332px;
    overflow: visible;
    position: absolute;
    top: -26px;
    width: 530.352px;
  }

  .fv__banner-ellipse-wrap--pc .fv__banner-ellipse {
    flex: none;
    height: 530.352px;
    max-width: none;
    transform: rotate(90deg);
    width: 280.095px;
  }

  .fv__banner-tag-bg {
    background-color: #e8a600;
    border-radius: 8.636px;
    box-shadow: 0 0 10.364px #00a0e9;
    height: 79.455px;
    left: 348px;
    top: 11.36px;
    width: 293.636px;
  }

  .fv__banner-tag {
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    font-size: 69.108px;
    left: 356.06px;
    letter-spacing: 0;
    padding: 0;
    top: 11.36px;
  }

  .fv__banner-tag-char {
    letter-spacing: 10.366px;
  }

  .fv__banner-lead {
    font-size: 44.93px;
    left: 356.06px;
    line-height: 1.123;
    top: 87.36px;
    width: 576.553px;
  }

  .fv__banner-month {
    font-size: 62.256px;
  }

  .fv__banner-month--small {
    letter-spacing: -11.83px;
  }

  .fv__banner-note {
    font-size: 27.083px;
    left: 356px;
    line-height: 1.183;
    text-shadow:
      0 2px 3px rgba(0, 83, 120, 0.95),
      0 0 25px #007fba,
      0 0 42px #00a0e9;
    top: 157px;
    width: 675.944px;
  }

  .fv__banner-suffix {
    font-size: 44.93px;
    left: 645.09px;
    text-shadow:
      0 2px 3px rgba(0, 55, 82, 0.95),
      0 0 24px #005989,
      0 0 40px #00a0e9;
    top: 37.27px;
  }

  .fv__points {
    gap: 0;
    justify-content: flex-start;
    left: 324px;
    margin: 0;
    max-width: 720px;
    position: absolute;
    top: 571px;
    width: 720px;
    z-index: 4;
  }

  .fv__point {
    flex: 0 0 180px;
    height: 180px;
    width: 180px;
  }

  .fv__point:nth-child(2) {
    flex: 0 0 182px;
    width: 182px;
  }

  .fv__point-bg--pc {
    height: 100%;
    width: 100%;
  }

  .fv__point-text {
    font-size: 29.388px;
    line-height: 33.429px;
    text-shadow:
      0 2px 3px rgba(0, 83, 120, 0.95),
      0 0 17px #007fba,
      0 0 26px #00a0e9;
    white-space: normal;
    width: max-content;
  }

  .fv__point:nth-child(1) .fv__point-text {
    left: 13px;
    top: 73px;
    transform: none;
    white-space: nowrap;
  }

  .fv__point:nth-child(2) .fv__point-text,
  .fv__point:nth-child(3) .fv__point-text,
  .fv__point:nth-child(4) .fv__point-text {
    left: 50%;
  }

  .fv__point:nth-child(2) .fv__point-text {
    top: 57px;
    transform: translateX(-50%);
  }

  .fv__point:nth-child(3) .fv__point-text {
    top: 37px;
    transform: translateX(-50%);
  }

  .fv__point:nth-child(4) .fv__point-text {
    top: 53px;
    transform: translateX(-50%);
  }

  .fv__point-fee-label,
  .fv__point-fee-value {
    font-size: 29.388px;
    line-height: 33.429px;
  }

  .fv__point-fee-value {
    margin-top: 0;
  }

  .fv__point-zero {
    font-size: 69.796px;
    line-height: 64.653px;
  }

  /* Deadline 窶・PC 408:377 */
  .section.section--deadline {
    margin-top: 0;
    min-height: 631px;
    padding: 125px 0 80px;
  }

  .section-title__headline--sp.deadline__sp-only {
    display: none;
  }

  .deadline__sp-only {
    display: none;
  }

  .deadline__pc-only {
    display: block;
  }

  .section-title__headline--pc.deadline__pc-only {
    display: flex;
  }

  .section--deadline__gradient {
    background: radial-gradient(
      ellipse 962.5px 578px at 50% 50%,
      #ffffff 55.77%,
      #bfd6e2 63.46%,
      #80adc6 71.15%,
      #6099b8 75%,
      #4084a9 78.85%,
      #20709b 82.69%,
      #106694 84.62%,
      #005c8d 86.54%
    );
    height: 1156px;
    left: -205px;
    top: -255px;
    transform: none;
    width: 1925px;
  }

  .section--deadline__texture-picture {
    aspect-ratio: 2894 / 2039;
    height: auto;
    left: 0;
    right: 0;
    top: -362px;
    width: 100%;
  }

  .section--deadline__illust--sp {
    display: none;
  }

  .section--deadline__texture {
    opacity: 0.25;
  }

  .section--deadline__ellipse-picture--9-sp,
  .section--deadline__ellipse-picture--10-sp {
    display: none;
  }

  .section--deadline__ellipse-picture {
    overflow: visible;
  }

  .section--deadline__ellipse-picture--9 {
    height: 311px;
    left: 769px;
    top: 353px;
    width: 307px;
  }

  .section--deadline__ellipse-picture--10-left {
    height: 462px;
    left: 159px;
    top: -71px;
    width: 457px;
  }

  .section--deadline__ellipse-picture--10-right {
    height: 462px;
    left: 1391px;
    top: -119px;
    width: 457px;
  }

  .section--deadline .l-container {
    max-width: 1040px;
    padding-left: 0;
    padding-right: 0;
  }

  .section-title--deadline {
    margin-bottom: 0;
  }

  .section-title--deadline .section-title__en {
    font-size: 16px;
    letter-spacing: 1.8px;
    line-height: 17.4px;
    margin-bottom: 5px;
  }

  .section-title__headline--pc {
    align-items: baseline;
    display: flex;
    gap: 0;
    justify-content: center;
  }

  .section-title__month-group {
    display: inline-flex;
    flex-direction: column;
    margin-right: 1px;
    position: relative;
  }

  .section-title__month--inline {
    color: var(--color-cyan);
    display: block;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0.64px;
    line-height: 46.4px;
    margin-top: 0;
    position: relative;
    z-index: 1;
  }

  .section-title__sub--inline {
    color: var(--color-primary);
    display: block;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0.64px;
    line-height: 46.4px;
    margin-left: 0;
  }

  .section-title__bar--month {
    background-color: var(--color-accent);
    display: block;
    bottom: 4px;
    height: 7px;
    left: -4px;
    margin: 0;
    position: absolute;
    width: 72px;
    z-index: 0;
  }

  .deadline-content {
    align-items: flex-start;
    display: flex;
    gap: 50px;
    justify-content: space-between;
    margin-top: 61px;
  }

  .section-body__text--deadline {
    flex: 0 0 572px;
    font-size: 18px;
    font-weight: 500;
    line-height: 27.75px;
    margin: 0;
    max-width: 572px;
  }

  .section--deadline__illust {
    flex: 0 0 392px;
    height: 336px;
    margin-top: -53px;
    position: relative;
    width: 392px;
  }

  .section--deadline__illust-glow-wrap {
    height: 300px;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 391.667px;
  }

  .section--deadline__illust-glow-expand {
    inset: -20% -15.32%;
    position: absolute;
  }

  .section--deadline__illust-glow-expand picture {
    display: block;
    height: 100%;
    width: 100%;
  }

  .section--deadline__illust-glow {
    display: block;
    height: 100%;
    max-width: none;
    object-fit: fill;
    width: 100%;
  }

  .section--deadline__illust-main {
    position: relative;
    width: 392px;
    z-index: 1;
  }

  .section--deadline__illust-img {
    display: block;
    height: auto;
    width: 392px;
  }

  /* Cases 窶・PC 408:541 */
  .cases__sp-only {
    display: none;
  }

  .cases__pc-only {
    display: block;
  }

  .section.section--cases {
    min-height: 2148px;
    padding: 92px 0 80px;
  }

  .section--cases .l-container {
    max-width: 1120px;
    padding-left: 0;
    padding-right: 0;
  }

  .section-title--cases {
    margin-bottom: 0;
  }

  .section-title--cases .section-title__en {
    font-size: 16px;
    letter-spacing: 1.8px;
    line-height: 17.4px;
    margin-bottom: 5px;
  }

  .section-title__headline--cases-pc {
    align-items: flex-end;
    display: flex;
    gap: 18px;
    justify-content: center;
    white-space: nowrap;
    width: 100%;
  }

  .section-title__cases-prefix,
  .section-title__cases-suffix {
    color: var(--color-primary);
    display: inline-block;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0.64px;
    line-height: 46.4px;
    min-width: max-content;
    white-space: nowrap;
    word-break: keep-all;
  }

  .section-title__accent--inline {
    color: var(--color-cyan);
    display: inline-block;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0.64px;
    line-height: 46.4px;
    position: relative;
    min-width: max-content;
    white-space: nowrap;
    word-break: keep-all;
  }

  .section-title__accent--inline::after {
    background-color: var(--color-accent);
    bottom: 2px;
    content: "";
    height: 8px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 92px;
    z-index: -1;
  }

  .card-list--cases {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-left: 0;
    margin-top: 69px;
    width: 1120px;
  }

  .case-card--wave {
    height: 306px;
    width: 100%;
  }

  .case-card__shape {
    height: 308px;
    left: 50%;
    top: -2px;
    transform: translateX(-50%);
    width: 1039px;
  }

  .case-card--wave-reverse .case-card__shape {
    transform: translateX(-50%);
    width: 1041px;
  }

  .case-card__shadow,
  .case-card__front {
    display: none;
  }

  .case-card__frame {
    display: block;
    height: 100%;
    object-fit: fill;
    width: 100%;
  }

  .case-card__inner {
    align-items: center;
    display: flex;
    gap: 120px;
    height: 100%;
    padding: 56px 188px;
    position: relative;
    z-index: 2;
  }

  .case-card--wave-reverse .case-card__inner {
    flex-direction: row-reverse;
  }

  .case-card__body {
    flex: 0 0 434px;
    left: auto;
    margin: 0;
    max-width: 434px;
    padding: 0;
    position: static;
    top: auto;
    transform: none;
    width: 434px;
  }

  .case-card--wave-reverse .case-card__body,
  .case-card--wave:nth-child(3) .case-card__body,
  .case-card--wave:nth-child(4) .case-card__body,
  .case-card--wave:nth-child(5) .case-card__body {
    padding-top: 0;
  }

  .case-card__illust-wrap {
    flex: 0 0 190px;
  }

  .case-card__illust {
    display: block;
    height: 190px;
    left: auto;
    position: static;
    top: auto;
    transform: none;
    width: 190px;
  }

  .case-card__title,
  .case-card--wave-reverse .case-card__title,
  .case-card--wave:nth-child(3) .case-card__title,
  .case-card--wave:nth-child(4) .case-card__title,
  .case-card--wave:nth-child(5) .case-card__title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    max-width: 434px;
  }

  .case-card__text,
  .case-card--wave:nth-child(3) .case-card__text,
  .case-card--wave:nth-child(4) .case-card__text,
  .case-card--wave:nth-child(5) .case-card__text {
    font-size: 16px;
    line-height: 22.75px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 12px;
    max-width: 434px;
  }

  .case-card--wave:nth-child(5) {
    grid-column: auto;
    justify-self: auto;
    max-width: none;
  }

  /* CTA 窶・PC 408:919 */
  .cta__sp-only {
    display: none;
  }

  .cta__pc-only {
    display: block;
  }

  .section--cta__bg-layers {
    display: none;
  }

  .section.section--cta {
    background-color: #fff9e6;
    min-height: 1058px;
    padding: 47px 0 45px;
  }

  picture.cta__pc-only {
    display: block;
  }

  .section--cta__bg > picture.cta__pc-only {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }

  .section--cta__kiiroback-img {
    display: block;
    height: 1058px;
    left: calc(50% - 18px);
    max-width: none;
    object-fit: fill;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 1718px;
  }

  .section--cta .l-container {
    max-width: 785px;
    padding-left: 0;
    padding-right: 0;
  }

  .cta-block__badge-wrap {
    height: 116px;
    width: 536px;
  }

  .cta-block__badge-wrap::before {
    background-image: image-set(
      url("../images/webp/cta-badge-glow.png.webp") type("image/webp"),
      url("../images/fallback/cta-badge-glow.png") type("image/png")
    );
    background-size: 100% 100%;
    content: "";
    height: 573px;
    left: 50%;
    pointer-events: none;
    position: absolute;
    top: -127px;
    transform: translateX(-50%);
    width: 1096px;
    z-index: -1;
  }

  svg.cta-block__badge-bg.cta__sp-only {
    display: none;
  }

  svg.cta-block__badge-bg.cta-block__badge-bg--pc {
    display: block;
    height: 116px;
    margin: 0 auto;
    width: 536px;
  }

  .cta-block__badge {
    font-size: 50.47px;
    letter-spacing: 1.31px;
    line-height: 30.35px;
    text-shadow: 0 0 5.047px rgba(0, 0, 0, 0.25);
    top: 28px;
    transform: translate(-50%, 0);
  }

  .cta-block__title {
    font-size: 32px;
    letter-spacing: 0.44px;
    line-height: 40px;
    margin-top: 0;
  }

  .cta-block__title-blue {
    font-size: 32px;
    line-height: 40px;
  }

  .cta-block__title-line {
    font-size: 32px;
    line-height: 40px;
  }

  .cta-block__title-bar {
    height: 14px;
    top: 72px;
    width: 444px;
  }

  .cta-block__text {
    font-size: 18px;
    margin-top: 41px;
    max-width: 785px;
  }

  .cta-block__text-base,
  .cta-block__highlight {
    font-size: 18px;
  }

  .cta-block__frame-wrap {
    height: 66px;
    margin-top: 41px;
    max-width: 785px;
    padding: 0 11px;
    width: 785px;
  }

  .cta-block__box-title--pc {
    font-size: 20px;
    line-height: 27.75px;
    max-width: 763px;
  }

  .cta-block__box-text {
    font-size: 18px;
    font-weight: 500;
    margin-top: 30px;
    max-width: 785px;
  }

  .cta-block__illust.cta__pc-only {
    display: block;
    line-height: 0;
    margin: 32px auto 0;
  }

  .cta-block__illust-img {
    display: block;
    height: 326px;
    margin: 0 auto;
    width: 498px;
  }

  /* Merits 窶・PC 408:1064 */
  .merits__sp-only {
    display: none;
  }

  .merits__pc-only {
    display: block;
  }

  .section.section--merits {
    min-height: 747px;
    padding: 87px 0 148px;
  }

  .section--merits__bg {
    bottom: auto;
    height: 100%;
    left: 0;
    overflow: visible;
    top: 0;
    transform: none;
    width: 100%;
  }

  picture.merits__pc-only {
    display: block;
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
  }

  .section--merits__scale-pc {
    display: block;
    height: 747.33px;
    left: 477.38px;
    max-width: none;
    position: absolute;
    top: 0;
    width: 1042.63px;
  }

  .section--merits .l-container {
    max-width: 1040px;
    padding-left: 0;
    padding-right: 0;
  }

  .section-title--merits {
    margin-bottom: 54px;
    max-width: none;
  }

  .section-title--merits .section-title__en {
    font-size: 16px;
    letter-spacing: 1.8px;
    line-height: 17.4px;
    margin-bottom: 5px;
    opacity: 0.7;
  }

  .section-title__headline--merits-pc {
    align-items: flex-end;
    display: flex;
    justify-content: center;
  }

  .section-title__headline--merits-pc .section-title__merits-lead {
    color: var(--color-primary);
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0.64px;
    line-height: 46.4px;
  }

  .section-title__accent--merits-pc {
    color: #00a0e9;
    display: inline;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0.64px;
    line-height: 46.4px;
  }

  .section-title__accent--merits-pc::after {
    content: none;
  }

  .section--merits .card-grid--4 {
    column-gap: 16px;
    grid-template-columns: repeat(2, 512px);
    justify-content: center;
    margin: 0 auto;
    row-gap: 22px;
    width: 1040px;
  }

  .section--merits .info-card {
    box-sizing: border-box;
    gap: 25px;
    height: 183px;
    padding: 30px 21px;
    width: 512px;
  }

  .section--merits .info-card__head {
    gap: 15px;
  }

  .section--merits .info-card__icon {
    background: radial-gradient(
      circle at 50% 50%,
      #78d2f9 0%,
      #5ac7f0 25%,
      #3cbce7 50%,
      #1eb1dd 75%,
      #0facd9 87.5%,
      #00a6d4 100%
    );
  }

  .section--merits .info-card__title {
    font-size: 20px;
    line-height: 24px;
  }

  .card-grid--4 .info-card:first-child .info-card__title {
    flex: none;
    max-width: 244px;
    width: 244px;
  }

  .section--merits .info-card__text {
    font-size: 16px;
    line-height: 25.2px;
    margin-top: 0;
    max-width: 470px;
  }

  /* Schedule 窶・PC 408:6168 */
  .schedule__sp-only {
    display: none;
  }

  .schedule__pc-only {
    display: block;
  }

  .section--schedule__bg-img {
    display: none;
  }

  .section.section--schedule {
    min-height: 984px;
    padding: 58px 0;
  }

  .section--schedule__bg::after {
    display: none;
  }

  picture.schedule__pc-only {
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }

  .section--schedule__aoback-pc {
    display: block;
    height: 1515px;
    left: -49px;
    max-width: none;
    object-fit: cover;
    opacity: 1;
    position: absolute;
    top: -265px;
    width: 2019px;
  }

  .section--schedule .l-container {
    max-width: 1040px;
    padding-left: 0;
    padding-right: 0;
  }

  .schedule-panel {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
    margin: 0 auto;
    max-width: 1040px;
    min-height: 868px;
    padding: 34px 0 62px;
    width: 1040px;
  }

  .section-title--schedule {
    margin-bottom: 32px;
    max-width: none;
  }

  .section-title--schedule .section-title__en {
    font-size: 16px;
    letter-spacing: 1.8px;
    line-height: 17.4px;
    margin-bottom: 5px;
    opacity: 0.7;
  }

  .section-title__headline--schedule-pc {
    align-items: center;
    display: flex;
    justify-content: center;
  }

  .section-title__schedule-lead {
    color: var(--color-primary);
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0.44px;
    line-height: 31.9px;
  }

  .section-title__accent--schedule-pc {
    color: var(--color-cyan);
    display: inline;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0.44px;
    line-height: 31.9px;
  }

  .section-title__accent--schedule-pc::after {
    content: none;
  }

  .schedule-flow {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 auto;
    width: 575px;
  }

  .schedule-flow__main {
    border-color: #61bbe2;
    margin: 0;
    max-width: none;
    min-height: 505px;
    padding: 15px 24px 22px;
    width: 100%;
  }

  .schedule-flow__label {
    margin-bottom: 16px;
  }

  .schedule-flow__steps {
    width: 100%;
  }

  .schedule-flow__step {
    background: linear-gradient(-0.08deg, #61bbe2 0.57%, #009fcc 99.43%);
    font-size: 22px;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    width: 100%;
  }

  .schedule-flow__arrows--pc {
    height: 282px;
    left: 50%;
    top: 125px;
    transform: translateX(-50%);
    width: 28px;
  }

  .schedule-flow__after {
    margin: 0;
    max-width: none;
    padding: 19px 25px 0;
    position: relative;
    width: 100%;
    z-index: 0;
  }

  .schedule-flow__after-arrows--pc {
    height: 102px;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 28px;
    z-index: -1;
  }

  .schedule-flow__steps--after {
    width: 100%;
  }

  /* Results 窶・PC 408:6206 */
  .results__sp-only {
    display: none;
  }

  .results__pc-only {
    display: block;
  }

  .section--results__bg-layers {
    display: none;
  }

  .section.section--results {
    background-color: #d0e2e8;
    min-height: 655px;
    padding: 78px 0 128px;
  }

  picture.results__pc-only {
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }

  .section--results__bg::after {
    background: radial-gradient(
      ellipse 56.37% 56.36% at 50% 50%,
      rgba(255, 255, 255, 0.5) 67.31%,
      rgba(210, 236, 250, 0.5) 75.48%,
      rgba(165, 218, 245, 0.5) 83.65%,
      rgba(119, 199, 240, 0.5) 91.83%,
      rgba(74, 180, 235, 0.5) 100%
    );
    content: "";
    height: 819.83px;
    left: -145.42px;
    pointer-events: none;
    position: absolute;
    top: -60.1px;
    width: 1631.63px;
  }

  .section--results__bg-pc {
    display: block;
    height: 655px;
    left: 0;
    max-width: none;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 1920px;
  }

  .section--results .l-container {
    max-width: 1118px;
    padding-left: 0;
    padding-right: 0;
  }

  .section-title--results {
    margin-bottom: 39px;
    max-width: none;
  }

  .section-title--results .section-title__en {
    font-size: 16px;
    letter-spacing: 1.8px;
    line-height: 17.4px;
    margin-bottom: 5px;
    opacity: 0.7;
  }

  .section-title__headline--results-pc {
    align-items: center;
    display: flex;
    justify-content: center;
  }

  .section-title__results-lead,
  .section-title__results-tail {
    color: var(--color-primary);
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0.64px;
    line-height: 46.4px;
  }

  .section-title__accent--results-pc {
    color: var(--color-cyan);
    display: inline;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0.64px;
    line-height: 46.4px;
  }

  .section-title__accent--results-pc::after {
    content: none;
  }

  .results-grid {
    display: flex;
    gap: 34px;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .results-card--pc {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 1px 1px 6px rgba(15, 43, 91, 0.5);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 340px;
    margin: 0;
    max-width: none;
    min-height: 340px;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 254px;
  }

  .results-card--pc .results-card__badge {
    background: linear-gradient(to right, #f4f4f4 0%, #96e0ff 51.923%);
    color: #ffffff;
    left: -12px;
    margin-bottom: 0;
    padding: 3px 0;
    position: absolute;
    text-align: center;
    top: 16px;
    width: 88px;
    z-index: 1;
  }

  .results-card--pc .results-card__illust-wrap {
    display: block;
    height: 118px;
    left: 50%;
    margin: 0;
    position: absolute;
    top: 28px;
    transform: translateX(-50%);
    width: 118px;
  }

  .results-card--pc .results-card__illust {
    display: block;
    height: 118px;
    width: 118px;
  }

  .results-card--pc .results-card__title {
    background: linear-gradient(179.85deg, #61bbe2 0.57%, #009fcc 99.43%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 16px;
    font-weight: 700;
    left: 50%;
    line-height: 24px;
    margin: 0;
    position: absolute;
    text-align: center;
    top: 154px;
    transform: translateX(-50%);
    width: 212px;
  }

  .results-card--pc .results-card__text {
    color: #556;
    font-size: 16px;
    font-weight: 400;
    left: 50%;
    line-height: 25.2px;
    margin: 0;
    position: absolute;
    top: 212px;
    transform: translateX(-50%);
    width: 212px;
  }

  .results-card--pc.results-card {
    border-radius: 15px;
    box-shadow: 1px 1px 6px rgba(15, 43, 91, 0.5);
  }

  .section.section--strengths {
    min-height: 774px;
    padding: 90px 0 146px;
  }

  .strengths__sp-only {
    display: none;
  }

  .strengths__pc-only {
    display: block;
  }

  picture.strengths__pc-only {
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }

  .section--strengths__aoback-pc {
    height: 1515px;
    left: calc(50% - 24.5px);
    max-width: none;
    object-fit: cover;
    opacity: 1;
    position: absolute;
    top: calc(50% - 14.5px);
    transform: translate(-50%, -50%);
    width: 2019px;
  }

  .section--strengths__overlay {
    height: 820px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 2020px;
  }

  .section--strengths .l-container {
    max-width: 1039px;
    padding-left: 0;
    padding-right: 0;
  }

  .section-title--strengths {
    margin-bottom: 94px;
    max-width: none;
  }

  .section-title__headline--strengths-pc {
    align-items: center;
    display: flex;
    justify-content: center;
  }

  .section-title__strengths-lead {
    color: var(--color-primary);
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0.64px;
    line-height: 46.4px;
  }

  .section-title__accent--strengths-pc {
    color: var(--color-cyan);
    display: inline;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0.64px;
    line-height: 46.4px;
  }

  .section-title__accent--strengths-pc::after {
    content: none;
  }

  .strength-list {
    column-gap: 15px;
    display: grid;
    grid-template-columns: repeat(2, 512px);
    justify-content: center;
    margin: 0 auto;
    max-width: 1039px;
    row-gap: 14px;
  }

  .strength-card {
    height: 192px;
    margin: 0;
    max-width: none;
    width: 512px;
  }

  .strength-card__shadow {
    height: 192px;
    left: 4px;
    top: 4px;
    width: 512px;
  }

  .strength-card__inner {
    gap: 30px;
    height: 192px;
    justify-content: center;
    padding: 0;
    width: 512px;
  }

  .strength-card__num {
    font-size: 80px;
    line-height: 32px;
    width: auto;
  }

  .strength-card:nth-child(2) .strength-card__num,
  .strength-card:nth-child(3) .strength-card__num,
  .strength-card:nth-child(4) .strength-card__num {
    width: auto;
  }

  .strength-card__body {
    flex: none;
    max-width: 321px;
    width: 321px;
  }

  .strength-card__title {
    font-size: 17px;
    line-height: 24.65px;
    margin-bottom: 6px;
    white-space: nowrap;
  }

  .strength-card__line {
    margin-bottom: 6px;
    width: 312px;
  }

  .strength-card__text {
    font-size: 14px;
    line-height: 25.2px;
  }

  /* Price 窶・PC 408:52 */
  .price__sp-only {
    display: none;
  }

  .price__pc-only {
    display: block;
  }

  .section.section--price {
    background-color: #ffffff;
    min-height: 721px;
    padding: 49px 0 86px;
  }

  .section--price__bg {
    bottom: auto;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: none;
    width: 100%;
  }

  picture.price__pc-only {
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }

  .section--price__kiiroback-pc {
    display: block;
    height: 721px;
    left: -90px;
    max-width: none;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 1920px;
  }

  .section--price .l-container {
    max-width: 957px;
    padding-left: 0;
    padding-right: 0;
  }

  .section-title--price,
  .price-box__title-pc {
    color: #00b7ea;
    font-size: 32px;
    left: auto;
    line-height: 31.9px;
    margin-bottom: 25px;
    position: relative;
    top: auto;
    width: auto;
  }

  .price-box {
    margin: 0 auto;
    max-width: 957px;
    min-height: 558px;
    position: relative;
    text-align: center;
    width: 100%;
  }

  .price-box__lead-pc {
    height: 155px;
    margin: 0 auto;
    position: relative;
    width: 503px;
  }

  .price-box__highlight-shadow {
    background-color: #0f2b5b;
    border-radius: 14.259px;
    height: 72.719px;
    left: 18.259px;
    position: absolute;
    top: 49.628px;
    width: 474.814px;
    z-index: 0;
  }

  .price-box__highlight-panel {
    background-color: #ffffff;
    border-radius: 14.259px;
    box-shadow: inset 0 0 6px rgba(15, 43, 91, 0.7);
    height: 72.719px;
    left: 14.259px;
    pointer-events: none;
    position: absolute;
    top: 45.628px;
    width: 474.814px;
    z-index: 1;
  }

  .price-box__lead-text {
    left: 0;
    position: relative;
    text-align: center;
    top: -2.852px;
    width: 503.331px;
    word-break: break-word;
    z-index: 2;
  }

  .price-box__lead-line {
    color: #0f2b5b;
    font-size: 22.814px;
    font-weight: 700;
    line-height: 59.886px;
    margin: 0;
  }

  .price-box__lead-line--end {
    line-height: 47.054px;
  }

  .price-box__lead-highlight-line {
    font-size: 51.331px;
    font-weight: 700;
    line-height: 65.59px;
    margin: 0;
    position: relative;
    top: -6px;
  }

  .price-box__highlight--pc {
    color: #00b7ea;
    display: inline;
    font-size: 51.331px;
    font-weight: 700;
    line-height: 65.59px;
  }

  .price-box__main {
    left: 0;
    margin: 0 auto;
    min-height: 444px;
    overflow: visible;
    position: absolute;
    top: 171px;
    width: 957px;
  }

  .price-box__main > picture {
    display: block;
    height: 444px;
    left: 50%;
    overflow: visible;
    pointer-events: none;
    position: absolute;
    top: 0;
    transform: translateX(calc(-50% - 2.5px));
    width: 957px;
    z-index: 0;
  }

  .price-box__glow {
    display: block;
    height: 913px;
    left: 50%;
    max-width: none;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1426px;
  }

  .price-box__display {
    height: 444px;
    position: relative;
    width: 957px;
    z-index: 1;
  }

  .price-box__label--pc {
    color: #0f2b5b;
    font-size: 48.549px;
    font-weight: 700;
    left: calc(50% - 3.5px);
    line-height: 66.18px;
    margin: 0;
    position: absolute;
    top: 41.79px;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 2;
  }

  .price-box__amount-area {
    height: 340px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }

  .price-box__amount-shadow,
  .price-box__amount-front {
    letter-spacing: 3.9272px;
    line-height: 0;
    margin: 0;
    position: absolute;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .price-box__amount-shadow {
    color: #0f2b5b;
    left: calc(50% + 7.57px);
    top: 19.47px;
    z-index: 0;
  }

  .price-box__amount-front {
    background-image: radial-gradient(
      ellipse 433px 182px at 50% 50%,
      #78d2f9 0%,
      #5ac7f0 25%,
      #3cbce7 50%,
      #1eb1dd 75%,
      #0facd9 87.5%,
      #00a6d4 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    left: calc(50% + 1.11px);
    top: 13px;
    z-index: 1;
  }

  .price-box__num {
    font-family: var(--font-price-num);
    font-size: 196.362px;
    font-synthesis: none;
    font-weight: 900;
    line-height: 363.27px;
    vertical-align: baseline;
  }

  .price-box__unit {
    font-family: var(--font-jp), sans-serif;
    font-size: 87.272px;
    font-weight: 900;
    line-height: 1;
    vertical-align: baseline;
  }

  .price-box__amount-front .price-box__num,
  .price-box__amount-front .price-box__unit {
    -webkit-text-fill-color: transparent;
  }

  .price-box__tax--pc {
    color: #005684;
    font-size: 51.745px;
    font-weight: 700;
    left: calc(50% + 366.06px);
    line-height: 95.729px;
    position: absolute;
    top: 116.49px;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 2;
  }

  .price-box__note--pc {
    color: #0f2b5b;
    font-size: 33.218px;
    font-weight: 700;
    left: calc(50% - 5.16px);
    line-height: 61.453px;
    margin: 0;
    position: absolute;
    top: 325.42px;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 2;
  }

  /* Compare 窶・PC 408:103 */
  .compare__sp-only,
  picture.compare__sp-only {
    display: none;
  }

  .compare__pc-only {
    display: block;
  }

  .compare-area {
    padding: 20px 32px 40px 20px;
  }

  .section.section--compare {
    background-color: var(--color-section-light);
    min-height: 742px;
    padding: 80px 0 122px;
  }

  .section--compare__bg {
    height: 100%;
  }

  .section--compare__bg::after {
    display: none;
  }

  picture.compare__pc-only {
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
  }

  .section--compare__aoback-pc {
    height: 1515px;
    left: 50%;
    max-width: none;
    object-fit: cover;
    opacity: 1;
    position: absolute;
    top: -386px;
    transform: translateX(-50%);
    width: 2019px;
  }

  .section--compare .l-container {
    max-width: 1040px;
    padding-left: 0;
    padding-right: 0;
  }

  .section-title--compare {
    margin-bottom: 24px;
  }

  .section-title--compare .section-title__en {
    font-size: 16px;
    letter-spacing: 1.8px;
    line-height: 17.4px;
    margin-bottom: 1px;
    opacity: 1;
  }

  .section-title__row--compare {
    color: #0f2b5b;
    display: inline-flex;
    align-items: center;
    font-size: 32px;
    justify-content: center;
    letter-spacing: 0.64px;
    line-height: 1.45;
    width: 100%;
  }

  .compare-scroll {
    margin: 0 auto;
    max-width: 1040px;
    overflow-x: visible;
    overflow-y: visible;
    padding: 0;
  }

  .compare-table-wrap {
    display: block;
    min-height: 446px;
    min-width: 0;
    overflow: visible;
    padding-bottom: 24px;
    padding-top: 16px;
    width: 1040px;
  }

  .compare-table__ours-column {
    display: flex;
    filter: drop-shadow(0 4px 24px rgba(15, 43, 91, 0.2));
    flex-direction: column;
    left: 136px;
    position: absolute;
    top: 0;
    width: 310px;
    z-index: 3;
  }

  .compare-table__ours-header {
    align-items: center;
    background: radial-gradient(circle at center, #78d2f9 0%, #5ac7f0 25%, #3cbce7 50%, #1eb1dd 75%, #0facd9 87.5%, #00a6d4 100%);
    border: 2.249px solid var(--color-border);
    border-radius: 11px 11px 0 0;
    color: #ffffff;
    display: flex;
    font-size: 27px;
    font-weight: 700;
    height: 74px;
    justify-content: center;
    line-height: 27px;
    margin: 0;
    text-shadow: 0 0 4.498px rgba(0, 0, 0, 0.25);
  }

  .compare-table__ours-column .compare-table__ours-cell {
    align-items: center;
    background-color: #fffbe6;
    border: 2.249px solid var(--color-border);
    border-top: none;
    color: var(--color-text);
    display: flex;
    font-size: 22px;
    font-weight: 700;
    height: 60px;
    justify-content: center;
    line-height: 27px;
    margin: 0;
    text-align: center;
  }

  .compare-table__ours-column .compare-table__ours-cell--tall {
    height: 66px;
    line-height: 33px;
  }

  .compare-table__ours-column .compare-table__ours-cell--bold {
    font-weight: 900;
  }

  .compare-table__ours-column .compare-table__ours-cell--ok {
    color: #06c755;
    font-weight: 900;
  }

  .compare-table__panel {
    display: none;
  }

  .compare-table {
    font-size: 18px;
    min-width: 0;
    width: 1038px;
  }

  .compare-table__col-corner {
    width: 136px;
  }

  .compare-table__col-ours {
    width: 310px;
  }

  .compare-table__col-firm {
    width: 187px;
  }

  .compare-table__col-firm-c {
    width: 218px;
  }

  .compare-table thead tr {
    height: 60px;
  }

  .compare-table th,
  .compare-table td {
    border-width: 1.124px;
    height: 60px;
    padding: 0;
  }

  .compare-table tbody tr.compare-table__row--tall th,
  .compare-table tbody tr.compare-table__row--tall td {
    height: 66px;
  }

  .compare-table thead th {
    font-size: 18px;
    height: 60px;
    line-height: 1.5;
    vertical-align: middle;
  }

  .compare-table thead th:first-child {
    border-radius: 11px 0 0 0;
    width: 136px;
  }

  .compare-table thead th:last-child {
    border-radius: 0 11px 0 0;
  }

  .compare-table tbody th {
    font-size: 18px;
    height: 60px;
    line-height: 1.5;
    padding: 0 0 0 10px;
    width: 136px;
  }

  .compare-table tbody td {
    background-color: #ffffff;
    font-weight: 400;
    height: 60px;
    line-height: 1.5;
  }

  .compare-table tbody tr:last-child th {
    border-radius: 0 0 0 11px;
  }

  .compare-table tbody tr:last-child td:last-child {
    border-radius: 0 0 11px 0;
  }

  .compare-table__corner {
    background: linear-gradient(171deg, #4d4d4d 8.49%, #868686 91.51%);
  }

  .compare-table thead th:not(.compare-table__corner):not(.compare-table__slot) {
    background: linear-gradient(174deg, #4d4d4d 8.49%, #868686 91.51%);
  }

  .compare-table thead .compare-table__slot,
  .compare-table tbody .compare-table__slot {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    color: transparent;
    font-size: 0;
    text-shadow: none;
  }

  .compare-table__slot-text {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }

  /* Consult Flow 窶・PC 408:6577 */
  .section.section--schedule-consult {
    display: none;
  }

  .consult-flow__sp-only {
    display: none;
  }

  .consult-flow__pc-only {
    display: block;
  }

  .section.section--consult-flow {
    display: block;
    background-color: #cee6ff;
    min-height: 715px;
    padding: 86px 0 109px;
  }

  .section--consult-flow__bg {
    display: block;
  }

  picture.consult-flow__pc-only {
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }

  .section--consult-flow__bg-img {
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    width: 100%;
  }

  .section--consult-flow .l-container {
    max-width: 1239px;
    padding-left: 0;
    padding-right: 0;
  }

  .consult-flow-card {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 0 6px #0f2b5b;
    margin: 0 auto;
    min-height: 520px;
    padding: 46px 0 40px;
    width: 1239px;
  }

  .section-title--consult-flow {
    margin-bottom: 24px;
  }

  .section-title--consult-flow .section-title__en {
    font-size: 16px;
    letter-spacing: 1.8px;
    line-height: 17.4px;
    margin-bottom: 5px;
    opacity: 1;
  }

  .section-title__row--consult-flow {
    color: #0f2b5b;
    display: inline-flex;
    align-items: center;
    font-size: 32px;
    justify-content: center;
    letter-spacing: 0.64px;
    line-height: 1.45;
    width: 100%;
  }

  .section-title__row--consult-flow.consult-flow__sp-only {
    display: none;
  }

  .section-title__row--consult-flow.consult-flow__pc-only {
    display: inline-flex;
  }

  .section-title__row--consult-flow .section-title__accent--lg {
    color: #00a6d4;
    font-size: 32px;
    letter-spacing: 0.64px;
    line-height: 1.45;
  }

  .consult-flow.consult-flow__sp-only {
    display: none;
  }

  .consult-flow-pc {
    align-items: flex-start;
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .consult-flow-pc__step {
    flex-shrink: 0;
    position: relative;
    text-align: center;
    width: 334px;
  }

  .consult-flow-pc__circle {
    height: 334px;
    margin: 0 auto;
    position: relative;
    width: 334px;
  }

  .consult-flow-pc__circle-ring {
    display: block;
    height: 334px;
    width: 334px;
  }

  .consult-flow-pc__icon {
    display: block;
    height: auto;
    left: auto;
    position: absolute;
    top: auto;
    transform: none;
  }

  .consult-flow-pc__icon--01 {
    left: 93px;
    top: 37px;
    width: 148px;
  }

  .consult-flow-pc__icon--02 {
    left: 100px;
    top: 40px;
    width: 110px;
  }

  .consult-flow-pc__icon--03 {
    left: 100px;
    top: 37px;
    width: 116px;
  }

  .consult-flow-pc__title {
    color: #005f92;
    font-size: 26px;
    font-weight: 700;
    left: 0;
    line-height: 22.5px;
    margin: 0;
    position: absolute;
    right: 0;
    top: 193px;
  }

  .consult-flow-pc__text {
    color: #556;
    font-size: 16px;
    font-weight: 400;
    left: 50%;
    line-height: 22.2px;
    margin: 0;
    position: absolute;
    top: 233px;
    transform: translateX(-50%);
    width: 240px;
  }

  .consult-flow-pc__step:first-child .consult-flow-pc__text {
    width: 211px;
  }

  .consult-flow-pc__arrow {
    align-items: flex-start;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    margin-top: 142px;
    width: 59px;
  }

  .consult-flow-pc__arrow img {
    display: block;
    height: 59px;
    width: 38px;
  }

  /* Process Flow 窶・PC 408:229 */
  .process-flow__sp-only {
    display: none;
  }

  .process-flow__pc-only {
    display: block;
  }

  .section.section--process-flow {
    background-color: #f5f7fa;
    min-height: 870px;
    overflow: hidden;
    padding: 80px 0 133px;
    position: relative;
  }

  .section--process-flow__bg {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
  }

  .section--process-flow__gradient {
    background: radial-gradient(
      ellipse 1118.4px 991.25px at 50% 50%,
      rgba(30, 156, 224, 0) 33.379%,
      rgba(30, 156, 224, 1) 100%
    );
    height: 1770px;
    left: 50%;
    opacity: 0.6;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1997px;
  }

  .section--process-flow .l-container {
    max-width: 1040px;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    z-index: 1;
  }

  .section-title--process-flow {
    margin-bottom: 46px;
  }

  .section-title--process-flow .section-title__en {
    font-size: 16px;
    letter-spacing: 1.8px;
    line-height: 17.4px;
    margin-bottom: 2px;
    opacity: 0.7;
  }

  .section-title__row--process-flow {
    align-items: center;
    display: inline-flex;
    font-size: 32px;
    justify-content: center;
    letter-spacing: 0.64px;
    line-height: 46.4px;
    width: 100%;
  }

  .section-title__row--process-flow .section-title__accent--lg {
    color: #00a6d4;
    font-size: 32px;
    letter-spacing: 0.64px;
    line-height: 46.4px;
  }

  .process-flow-pc {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: 618px;
  }

  .process-flow-pc__card {
    height: 84px;
    position: relative;
    width: 618px;
  }

  .process-flow-pc__card--last {
    background-color: #006e8d;
    height: 71px;
  }

  .process-flow-pc__shape {
    display: block;
    height: 84px;
    width: 618px;
  }

  .process-flow-pc__content {
    align-items: center;
    display: flex;
    left: 24.79px;
    position: absolute;
    top: 13px;
  }

  .process-flow-pc__num {
    color: #ffffff;
    flex-shrink: 0;
    font-family: var(--font-en);
    font-size: 30px;
    font-weight: 400;
    line-height: normal;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    width: 49.572px;
  }

  .process-flow-pc__text {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    margin: 0;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    white-space: nowrap;
  }

  /* Contact 窶・PC 408:280 */
  .contact__sp-only {
    display: none;
  }

  .contact__pc-only {
    display: block;
  }

  .section.section--contact {
    background-color: #f5f7fa;
    min-height: 1213px;
    padding: 67px 0;
  }

  .section--contact__bg-layers {
    display: none;
  }

  .section--contact__bg {
    display: block;
  }

  picture.contact__pc-only {
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }

  .section--contact__bg-img {
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    width: 100%;
  }

  .section--contact .l-container {
    max-width: 761px;
    padding-left: 0;
    padding-right: 0;
  }

  .contact-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
    margin: 0 auto;
    max-width: 761px;
    padding: 64px 121px 80px;
    width: 761px;
  }

  .section-title--contact {
    margin-bottom: 0;
  }

  .section-title--contact .section-title__en {
    font-size: 16px;
    letter-spacing: 1.8px;
    line-height: 17.4px;
    margin-bottom: 5px;
    opacity: 0.7;
  }

  .section-title__row--contact {
    color: #00a6d4;
    display: block;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0.64px;
    line-height: 1.45;
  }

  .contact-lead {
    color: #0f2b5b;
    font-size: 16px;
    font-weight: 700;
    line-height: 29.6px;
    margin: 26px 0 51px;
    text-align: center;
  }

  .contact-form {
    margin: 0 auto;
    max-width: 520px;
  }

  .contact-form .btn--submit {
    background: radial-gradient(ellipse at center, #78d2f9 0%, #5ac7f0 25%, #3cbce7 50%, #1eb1dd 75%, #00a6d4 100%);
    margin-top: 20px;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    width: 100%;
  }

  .section.section--office {
    background-color: #ffffff;
    min-height: 570px;
    padding: 63px 0 112px;
  }

  .section--office .l-container {
    max-width: 1040px;
    padding-left: 0;
    padding-right: 0;
  }

  .section-title--office {
    color: #0f2b5b;
    font-size: 36px;
    font-weight: 700;
    line-height: 38px;
    margin-bottom: 61px;
  }

  .office-table {
    margin: 0 auto;
    max-width: 498px;
    width: 498px;
  }

  .office-table__row {
    align-items: center;
    border-top: 1px solid #9ca3af;
    display: grid;
    gap: 0 18px;
    grid-template-columns: 110px 1fr;
    padding: 20px 0;
  }

  .office-table__row:first-child {
    border-top: none;
    padding-top: 0;
  }

  .office-table dt {
    color: #0f2b5b;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
  }

  .office-table dd {
    color: #333333;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
  }

  .footer {
    align-items: flex-start;
    background: linear-gradient(-0.064deg, #0091b9 0.57%, #69d2ff 99.43%);
    display: flex;
    justify-content: center;
    min-height: 186px;
    padding: 35px 20px;
  }

  .footer__copy {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
  }

  .tel-link {
    cursor: default;
    pointer-events: none;
  }
}

/* ====================================
   Thanks Page
   ==================================== */
.thanks-body {
  background: #d0e2e8;
  color: #0f2b5b;
  font-family: var(--font-jp), sans-serif;
  margin: 0;
}

.thanks-viewport {
  background: #ffffff;
}

.thanks-page {
  background: #ffffff;
  height: 836px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 393px;
}

.thanks-header {
  align-items: center;
  background: var(--gradient-header);
  display: flex;
  height: 68px;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0;
  width: 393px;
}

.thanks-header__logo {
  display: block;
  height: 48px;
  width: 224px;
}

.thanks-header__home {
  display: block;
  line-height: 0;
  text-decoration: none;
}

.thanks-main,
.thanks-main__inner {
  display: contents;
}

.thanks-illust {
  display: block;
  height: 132px;
  left: 87px;
  position: absolute;
  top: 194px;
  width: 228px;
}

.thanks-illust__img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.thanks-message {
  left: 42px;
  position: absolute;
  text-align: center;
  top: 350px;
  width: 309px;
}

.thanks-message__title {
  background-image: var(--gradient-header-tel);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.34;
  margin: 0;
}

.thanks-message__title span {
  display: block;
}

.thanks-message__text {
  background-image: var(--gradient-header);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  margin: 19px 0 0;
}

.thanks-message__button {
  align-items: center;
  background: var(--gradient-header);
  border-radius: 50px;
  color: #ffffff;
  display: inline-flex;
  font-size: 16px;
  font-weight: 700;
  height: 36px;
  justify-content: center;
  left: 88px;
  position: absolute;
  text-decoration: none;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  top: 183px;
  width: 116px;
}

.thanks-footer {
  align-items: flex-start;
  background: linear-gradient(-0.33deg, #0091b9 0.57%, #69d2ff 99.43%);
  display: flex;
  height: 199px;
  justify-content: center;
  left: 0;
  padding-top: 25px;
  position: absolute;
  top: 637px;
  width: 393px;
}

.thanks-footer__copy {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: 27.75px;
  margin: 0;
  text-align: center;
  white-space: nowrap;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .thanks-page {
    box-shadow: 0 0 28px rgba(0, 87, 112, 0.28);
  }
}

@media (min-width: 1200px) {
  .thanks-body,
  .thanks-viewport {
    background: #ffffff;
  }

  .thanks-page {
    height: 1057px;
    width: 1920px;
  }

  .thanks-header {
    height: 102px;
    justify-content: flex-start;
    padding-left: 135px;
    width: 1920px;
  }

  .thanks-header__logo {
    height: 68px;
    width: 317px;
  }

  .thanks-illust {
    height: 241px;
    left: 418px;
    top: 312px;
    width: 417px;
  }

  .thanks-message {
    left: 925px;
    top: 352px;
    width: 574px;
  }

  .thanks-message__title {
    font-size: 36px;
    line-height: 1.22;
  }

  .thanks-message__text {
    font-size: 24px;
    line-height: 37.163px;
    margin-top: 26px;
  }

  .thanks-message__button {
    font-size: 24px;
    height: 51px;
    left: 194px;
    top: 239px;
    width: 186px;
  }

  .thanks-footer {
    height: 186px;
    padding-top: 35px;
    top: 871px;
    width: 1920px;
  }

  .thanks-footer__copy {
    font-size: 18px;
    line-height: 22px;
  }
}
