@charset "UTF-8";
:root {
  --color-primary: #003B6C;
  --color-primary-mid: #284B66;
  --color-accent: #DE8117;
  --color-accent-olive: #A39A34;
  --color-success: #0A9877;
  --color-line: #06C755;
  --color-danger: #FF0000;
  --color-info: #41A9FF;
  --color-yellow: #FFED27;
  --color-white: #FFFFFF;
  --color-text: #000000;
  --color-text-mid: #59676D;
  --color-text-light: #99A9B0;
  --color-bg: #FFFFFF;
  --color-bg-mint: #EDF3F0;
  --color-bg-cream: #EFEEE4;
  --color-bg-gray: #F1F6F8;
  --color-bg-yellow: #FAF5C3;
  --color-bg-near-white:#FFFEEF;
  --color-border: #D6E0E3;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  line-height: 1.5;
}

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

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}
a:hover {
  opacity: 0.7;
}

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

button,
input,
select {
  font: inherit;
}

button {
  transition: all 0.2s ease;
}
button:hover {
  opacity: 0.7;
}

br.pc {
  display: none;
}

br.sp {
  display: block;
}

:is(button, label) {
  cursor: pointer;
}

@media (width >= 768px) {
  br.pc {
    display: block;
  }
  br.sp {
    display: none;
  }
}
.l-container {
  width: min(100%, 75rem);
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.25rem;
}
@media (width >= 768px) {
  .l-container {
    width: min(100%, 100rem);
    padding: 0 2.5rem;
  }
}

.l-header {
  position: relative;
  z-index: 100;
  background-color: var(--color-bg);
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4375rem;
  padding: 1.75rem 1.75rem 0;
}
.l-header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 0;
  text-decoration: none;
}
.l-header__logo-image {
  width: 11.4375rem;
  max-width: none;
  height: auto;
}
.l-header__service-name {
  margin: 0;
  flex-shrink: 0;
  color: var(--color-text-mid);
  font-size: 0.75rem;
  line-height: 1.8;
}

@media (width >= 768px) {
  .l-header__logo {
    padding-left: 2.5rem;
  }
  .l-header__inner {
    justify-content: flex-start;
    padding: 3rem 0 0 0;
    margin: 0;
  }
  .l-header__logo-image {
    width: 11.4375rem;
  }
  .l-header__service-name {
    font-size: 0.75rem;
  }
}
.l-footer {
  padding-bottom: 6.25rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
}
.l-footer__brand-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.4375rem;
}
.l-footer__brand-image {
  width: clamp(10.625rem, 45.333vw, 11.4375rem);
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  filter: brightness(0) invert(1);
}
.l-footer__brand-sub {
  font-size: 0.75rem;
  line-height: 1.8;
}
.l-footer__copy {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  line-height: 2.4;
}
.l-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  font-size: 0.875rem;
  line-height: 2.4;
}
.l-footer__nav a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.l-footer__nav a + a {
  position: relative;
  margin-left: 0.25rem;
  padding-left: 1rem;
}
.l-footer__nav a + a::before {
  content: "｜";
  position: absolute;
  top: 0;
  left: 0;
  text-decoration: none;
}
.l-footer__copyright {
  margin-top: 0.625rem;
}

@media (width >= 768px) {
  .l-footer {
    padding-bottom: 6.25rem;
  }
  .l-footer__brand-wrap {
    gap: 0.4375rem;
  }
  .l-footer__brand-image {
    width: 11.4375rem;
  }
  .l-footer__brand-sub {
    font-size: 0.75rem;
  }
  .l-footer__copy,
  .l-footer__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.625rem;
    line-height: 1.6;
  }
  .l-footer__nav {
    flex-wrap: nowrap;
  }
  .l-footer__copy {
    padding-right: 1rem;
    position: relative;
  }
  .l-footer__copy::after {
    content: "｜";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .l-footer__copyright {
    margin-top: 0.625rem;
    line-height: 1.6;
  }
}
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.875rem 1.5rem;
  border-radius: 624.9375rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}
.c-btn--line {
  background-color: var(--color-line);
  color: var(--color-white);
}
.c-btn--line:hover {
  opacity: 0.7;
}
.c-btn--accent {
  background-color: var(--color-accent);
  color: var(--color-white);
}
.c-btn--accent:hover {
  opacity: 0.7;
}
.c-btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.c-btn--primary:hover {
  opacity: 0.7;
}
.c-btn--outline-white {
  background-color: transparent;
  color: var(--color-white);
  border: 0.125rem solid var(--color-white);
}
.c-btn--outline-white:hover {
  opacity: 0.7;
  background-color: var(--color-white);
  color: var(--color-primary);
}
.c-btn--lg {
  padding: 1.125rem 2rem;
  font-size: 1.25rem;
}
.c-btn--full {
  width: 100%;
}

.c-section-title {
  text-align: center;
}
.c-section-title__main {
  margin: 0;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.8;
}
.c-section-title__sub {
  font-size: 0.875rem;
  color: var(--color-text-mid);
}
.c-section-title__main-accent {
  color: var(--color-accent);
}
.c-section-title--intro .c-section-title__main {
  font-size: 2.1875rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.8;
}

.c-point-card {
  background-color: var(--color-bg);
  border-radius: 0.5rem;
  padding: 1.25rem 1rem;
  box-shadow: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.07);
}
.c-point-card__num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  margin: 0;
}
.c-point-card__icon {
  width: 3rem;
  height: 3rem;
  margin-top: 0.25rem;
}
.c-point-card__title {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.4;
}
.c-point-card__body {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-mid);
  line-height: 1.8;
}

.p-top {
  --hero-sp-scale: 1;
  --hero-scale: 1;
  padding-bottom: 0;
}

.p-top__hero {
  background-color: var(--color-bg);
  padding-bottom: 2.5rem;
}

.p-top__hero-panel {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.p-top__hero-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 47.1875rem;
  width: 19.3125rem;
  border-radius: 3.125rem;
  z-index: 0;
  background-color: var(--color-bg-near-white);
  transform: translateX(-50%);
}

.p-top__hero-panel > * {
  position: relative;
  z-index: 1;
}

.p-top__hero-note {
  display: block;
  margin: 1rem auto 0;
  padding: 0.375rem 0.75rem;
  border-radius: 0.3125rem;
  background-color: var(--color-yellow);
  color: var(--color-primary);
  font-size: clamp(0.6875rem, 3vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.8;
  text-align: center;
}

.p-top__hero-title {
  position: relative;
  margin-top: 1rem;
  text-align: center;
}

.p-top__hero-title-top {
  display: inline-flex;
  align-items: baseline;
  gap: 0.375rem;
}

.p-top__hero-title-top-main {
  color: var(--color-primary);
  font-size: 2.1875rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
}

.p-top__hero-title-badge {
  position: relative;
  display: grid;
  place-items: center;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.p-top__hero-title-badge::before {
  content: "";
  position: absolute;
  width: 2.1875rem;
  height: 2.0625rem;
  left: 50%;
  top: 0.75rem;
  background-image: url("/seo/images/icons/icon-balloon-accent.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: -1;
  transform: translate(-50%, -50%);
}

.p-top__hero-title-main {
  display: block;
  width: calc(100% + 0.625rem);
  margin-top: 0.5rem;
  color: var(--color-accent);
  font-size: clamp(5rem, 5rem + 0.625rem * (100vw - 375px) / 15px, 5.625rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
}

.p-top__hero-title-koto {
  position: absolute;
  left: 2.1875rem;
  bottom: -0.5625rem;
  width: 2.5rem;
  height: 1.5rem;
}

.p-top__hero-catch {
  margin-top: 1.125rem;
  padding: 0.625rem 1.875rem;
  border-radius: 999rem;
  background-color: var(--color-success);
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.p-top__hero-lead {
  margin-top: 0.5625rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.p-top__hero-lead-main {
  display: block;
  color: var(--color-accent-olive);
  font-size: 2.8125rem;
  font-weight: 700;
  line-height: 1.6;
}

.p-top__hero-lead-sub {
  display: block;
  margin-top: 0;
  color: var(--color-text);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.p-top__hero-attributes {
  display: grid;
  gap: 0.5625rem;
  padding-left: 1.875rem;
  margin-top: 1.5625rem;
}

.p-top__hero-attribute {
  display: grid;
  grid-template-columns: 5.0625rem 1fr;
  align-items: center;
  column-gap: 0.75rem;
}
.p-top__hero-attribute dt {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.1875rem 0.75rem;
  border-radius: 999rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 0.875rem;
  line-height: 1.8;
}
.p-top__hero-attribute dd {
  margin: 0;
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
}

.p-top__hero-people {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 0.3125rem;
}

.p-top__hero-person {
  position: relative;
  z-index: 1;
  margin: 0;
}
.p-top__hero-person img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.p-top__hero-person--woman {
  margin-left: 0.25rem;
}
.p-top__hero-person--woman img {
  width: 9.4375rem;
  height: auto;
}

.p-top__hero-person--man {
  margin-right: -0.25rem;
}
.p-top__hero-person--man img {
  width: 12.4375rem;
  height: auto;
}

.p-top__hero-action {
  position: absolute;
  bottom: 10.3125rem;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3125rem 1.25rem;
  border-radius: 999rem;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  white-space: nowrap;
  transform: translateX(-50%);
  animation: p-top-hero-action-float 2.8s ease-in-out infinite;
}

.p-top__hero-action::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.0625rem;
  width: 1.375rem;
  height: 1.25rem;
  background-color: var(--color-accent);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transform: translateX(-50%);
}

@keyframes p-top-hero-action-float {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-0.3125rem);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}
.p-top__hero-scroll {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 8.875rem;
  height: 4.4375rem;
  bottom: 2.0625rem;
  left: 50%;
  border-bottom: 0;
  border-radius: 9.625rem 9.625rem 0 0;
  background-color: var(--color-bg-cream);
  box-shadow: 0 0 0.625rem 0 #99a9b0;
  transform: translate(-50%, -50%);
}

.p-top__hero-scroll-text {
  display: block;
  margin-top: 1.375rem;
  color: var(--color-text);
  font-family: "Outfit", sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.2;
}

.p-top__hero-scroll-icon {
  display: block;
  width: 5.1875rem;
  height: 1.4375rem;
  margin-top: 0.3125rem;
  background-image: url("/seo/images/icons/icon-chevron-double.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  animation: scroll 3.5s infinite;
}

@keyframes scroll {
  0% {
    opacity: 0;
    transform: translate(0, 0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  100% {
    opacity: 0;
    transform: translateY(0.5rem);
  }
}
@media (width < 768px) {
  .p-top {
    --hero-sp-scale: min(1.966, calc(100vw / 24.375rem));
  }
  .p-top__hero {
    min-height: calc(56rem * var(--hero-sp-scale));
    padding-bottom: calc(2.5rem * var(--hero-sp-scale));
  }
  .p-top__hero .l-container {
    padding: 0;
  }
  .p-top__hero-panel {
    width: calc(24.375rem * var(--hero-sp-scale));
    height: calc(56rem * var(--hero-sp-scale));
    margin-inline: auto;
    overflow: visible;
  }
  .p-top__hero-panel::before {
    content: none;
  }
  .p-top__hero-stage {
    position: absolute;
    top: 0;
    left: 50%;
    width: 24.375rem;
    height: 56rem;
    padding-inline: 1.25rem;
    transform: translateX(-50%) scale(var(--hero-sp-scale));
    transform-origin: top center;
  }
  .p-top__hero-stage::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 19.3125rem;
    height: 47.1875rem;
    border-radius: 3.125rem;
    z-index: -1;
    background-color: var(--color-bg-near-white);
    transform: translateX(-50%);
  }
}
.p-top__section {
  padding-block: 2.5rem;
}

.p-top__section--intro {
  position: relative;
  z-index: 2;
  margin-top: calc(-6.815rem * var(--hero-sp-scale, 1));
  padding-top: 2.5rem;
  background-color: var(--color-bg-cream);
  overflow-x: clip;
}

.p-top__section--table {
  background-color: var(--color-bg-yellow);
}

.p-top__section--accent {
  background: linear-gradient(180deg, var(--color-primary-mid) 0%, var(--color-primary) 100%);
}

.p-top__section--simulator {
  background-color: var(--color-primary);
  container-type: inline-size;
  container-name: simulator-section;
  overflow: hidden;
  padding-block: 6.25rem;
}

.p-top__section--pricing {
  background-color: var(--color-bg-near-white);
}

.p-top__section--flow {
  background-color: var(--color-primary);
  overflow: hidden;
  padding-bottom: 0;
}

.p-top__section--operator {
  background-color: var(--color-bg-cream);
}

.p-top__section--faq {
  background-color: var(--color-bg-near-white);
}

.p-top__section--column-posts {
  background-color: var(--color-white);
}

.p-top__check-list {
  display: grid;
  gap: 0.625rem;
  padding: 1.25rem;
  margin: 0;
  list-style: none;
  border-radius: 1.25rem;
  background-color: var(--color-bg);
  box-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.05);
}
.p-top__check-list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--color-primary-mid);
  font-size: 0.875rem;
  font-weight: 700;
}
.p-top__check-list li::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: var(--color-accent);
  transform: translateY(-50%);
}

.p-top__intro-figure,
.p-top__operator-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 0.625rem;
}

.p-top__operator-card {
  padding: 1.25rem;
  margin: 0 auto;
  border-radius: 1.5625rem;
  background-color: var(--color-white);
}

.p-top__operator-title {
  margin: 0;
  color: var(--color-text);
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.p-top__operator-intro {
  margin-top: 0.3125rem;
  color: var(--color-text);
  font-size: 1.125rem;
  line-height: 2.4;
  text-align: center;
}

.p-top__operator-label {
  padding: 0.625rem;
  margin-top: 0.625rem;
  border-radius: 0.3125rem;
  background-color: var(--color-bg-gray);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.p-top__operator-main {
  margin-top: 1.25rem;
}

.p-top__operator-identity {
  display: grid;
  gap: 0.3125rem;
}

.p-top__operator-role {
  color: var(--color-text-mid);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
}

.p-top__operator-name {
  color: var(--color-primary);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.8;
}

.p-top__operator-copy {
  padding-bottom: 1.25rem;
  margin-top: 1.25rem;
  border-bottom: 0.0625rem solid var(--color-text-light);
  font-size: 1.125rem;
  line-height: 1.8;
}

.p-top__operator-footer {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.p-top__operator-career {
  margin-top: 0;
  color: var(--color-text);
  font-size: 1.125rem;
  line-height: 1.8;
}

.p-top__operator-photo {
  width: 13.125rem;
  margin: 0 auto;
  border-radius: 1rem;
}

.p-top__operator-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top__section--intro .p-top__intro-grid {
  gap: 0;
  margin-top: 0.625rem;
  min-width: 0;
}

.p-top__intro-text {
  margin-top: 0.625rem;
  color: var(--color-text);
  font-size: 1.125rem;
  line-height: 2.4;
}

.p-top__intro-main,
.p-top__intro-copy,
.p-top__tenant-section,
.p-top__tenant-body,
.p-top__choice-section {
  container-type: inline-size;
  container-name: choice-section;
  min-width: 0;
}

.p-top__intro-check-list {
  display: grid;
  gap: 0.625rem;
  padding: 0.625rem;
  margin-top: 0.625rem;
  list-style: none;
  border-radius: 0.3125rem;
  background-color: var(--color-bg);
}
.p-top__intro-check-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--color-primary);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
}
.p-top__intro-check-list li::before {
  content: "•";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-primary);
}

.p-top__intro-visual {
  --intro-visual-scale: calc(100vw / 24.375rem);
  position: relative;
  aspect-ratio: 433/520;
  overflow: hidden;
  width: 111.02564103vw;
  max-width: none;
  margin-left: calc(50% - 55.512820515vw);
}

.p-top__intro-visual-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.p-top__intro-woman {
  margin: 0;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.p-top__intro-woman img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: none;
}

.p-top__intro-balloon {
  position: absolute;
  margin: 0;
  z-index: 3;
  color: var(--color-accent);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.p-top__intro-balloon-line {
  color: var(--color-text);
}

.p-top__intro-balloon--left {
  top: calc(4.9375rem * var(--intro-visual-scale));
  left: calc(6.125rem * var(--intro-visual-scale));
  font-size: calc(1.125rem * var(--intro-visual-scale));
}

.p-top__intro-balloon--right {
  top: calc(13.5625rem * var(--intro-visual-scale));
  right: calc(5.4375rem * var(--intro-visual-scale));
  font-size: calc(0.75rem * var(--intro-visual-scale));
}

.p-top__intro-balloon--bottom {
  bottom: calc(7.375rem * var(--intro-visual-scale));
  left: calc(7.25rem * var(--intro-visual-scale));
  font-size: calc(0.9375rem * var(--intro-visual-scale));
}

.p-top__section-title-tenant {
  text-align: left;
}

.p-top__section-title-tenant .c-section-title__main {
  margin-top: 1.875rem;
  color: var(--color-text);
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.8;
}

.p-top__section-title-tenant .c-section-title__sub {
  margin-top: 0.3125rem;
  color: var(--color-primary);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
}

.p-top__content-card {
  margin-top: 1.875rem;
  padding: 0;
  border-radius: 0;
  background-color: transparent;
}

.p-top__loss-panel {
  margin-top: 5.25rem;
  padding: 1.25rem;
  border-radius: 1.5625rem;
  background-color: var(--color-white);
}

.p-top__section-title-loss .c-section-title__main {
  color: var(--color-text);
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.8;
}

.p-top__section-title-loss .c-section-title__sub {
  margin-top: 0;
  color: var(--color-primary);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7;
}

.p-top__loss-copy {
  margin-top: 0.3125rem;
  color: var(--color-text);
  line-height: 1.8;
}

.p-top__loss-dialogue {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: fit-content;
  margin: 0.3125rem auto 0;
}

.p-top__loss-dialogue-person {
  margin: 0;
}

.p-top__loss-dialogue-person--woman {
  width: 6.625rem;
}

.p-top__loss-dialogue-person--man {
  width: 6.625rem;
}

.p-top__loss-dialogue img {
  display: block;
  width: 100%;
  height: auto;
}

.p-top__table-wrap--loss {
  margin-top: 0.625rem;
  container-type: inline-size;
  container-name: loss-table;
}

.p-top__tenant-agreement {
  --tenant-agreement-scale: calc(100vw / 24.375rem);
  position: relative;
  width: calc(20.125rem * var(--tenant-agreement-scale));
  aspect-ratio: 645/581;
  margin-top: 1.875rem;
  margin-left: auto;
}

.p-top__tenant-agreement-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 20.125rem;
  aspect-ratio: 645/581;
  transform: scale(var(--tenant-agreement-scale));
  transform-origin: top left;
}

.p-top__tenant-agreement-figure {
  position: relative;
  margin: 0;
}

.p-top__tenant-agreement-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.p-top__tenant-agreement-copy {
  position: absolute;
  bottom: -1.3125rem;
  left: -1.375rem;
  margin: 0;
  color: var(--color-text);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.p-top__tenant-agreement-copy-accent {
  color: var(--color-accent);
  font-size: 2.0625rem;
  font-weight: 700;
}

.p-top__table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  line-height: 1;
}
.p-top__table th,
.p-top__table td {
  padding: 0.875rem 0.625rem;
  border: 0.0625rem solid var(--color-border);
  font-size: 0.875rem;
}
.p-top__table thead th {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.p-top__table tbody th {
  background-color: color-mix(in srgb, var(--color-bg-yellow) 55%, var(--color-bg));
  color: var(--color-primary);
}
.p-top__table tbody td:last-child {
  color: var(--color-accent);
  font-weight: 700;
}

.p-top__table-wrap--loss .p-top__table th,
.p-top__table-wrap--loss .p-top__table td {
  padding: 0.5625rem 0.375rem;
  border: 0.0625rem solid var(--color-bg-mint);
  font-size: 0.75rem;
  font-weight: 700;
}

.p-top__table-wrap--loss .p-top__table thead th {
  background-color: var(--color-primary);
  border-color: var(--color-white);
  border-bottom-color: var(--color-white);
  color: var(--color-white);
  font-size: 0.75rem;
  line-height: 1.3;
}

.p-top__table-wrap--loss .p-top__table tbody th {
  background-color: var(--color-bg-yellow);
  border-color: var(--color-white);
  border-bottom-color: var(--color-white);
  color: var(--color-accent-olive);
}

.p-top__table-wrap--loss .p-top__table tbody td {
  color: var(--color-text);
  font-size: 0.875rem;
}

.p-top__table-wrap--loss .p-top__table tbody tr:first-child th,
.p-top__table-wrap--loss .p-top__table tbody tr:first-child td {
  border-top: 0;
}

.p-top__loss-unit {
  color: var(--color-primary-mid);
  font-size: 0.75rem;
  line-height: 1.8;
  text-align: right;
}

.p-top__table-note {
  margin-top: 1rem;
  color: var(--color-primary-mid);
  font-size: 0.875rem;
}

.p-top__table-note--loss {
  padding-top: 1rem;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.8;
}

.p-top__section--simulator .c-section-title__sub,
.p-top__section--flow .c-section-title__sub {
  margin-top: 0.5rem;
}

.p-top__law-panel {
  margin-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.p-top__law-heading {
  display: block;
}

.p-top__law-badge {
  width: 100%;
  padding: 0.625rem 1.25rem;
  border-radius: 0.3125rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.p-top__law-title {
  margin-top: 0.625rem;
  color: var(--color-text);
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.8;
}

.p-top__law-title-accent {
  color: var(--color-accent);
}

.p-top__law-lead {
  margin-top: 0.3125rem;
  color: var(--color-primary);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
}

.p-top__law-body {
  margin-top: 1.875rem;
}

.p-top__law-body .p-top__intro-text + .p-top__intro-text {
  margin-top: 1.25rem;
}

.p-top__law-visual {
  --law-visual-scale: calc(100vw / 24.375rem);
  position: relative;
  width: calc(19.5625rem * var(--law-visual-scale));
  aspect-ratio: 627/491;
  margin: 3.5rem 0 0 auto;
}

.p-top__law-visual-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 19.5625rem;
  height: 100%;
  transform: scale(var(--law-visual-scale));
  transform-origin: top left;
}

.p-top__law-visual-copy {
  position: absolute;
  top: -1.6875rem;
  left: -1.625rem;
  z-index: 2;
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}

.p-top__law-visual-copy-line {
  display: block;
}

.p-top__law-visual-copy-accent {
  display: block;
  color: var(--color-accent);
  font-size: 1.25rem;
}

.p-top__law-figure {
  margin: 0;
}

.p-top__law-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.p-top__law-box {
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.p-top__law-box-label {
  margin: 0;
  color: var(--color-text-mid);
  font-size: 0.75rem;
  font-weight: 700;
}

.p-top__law-box-title {
  margin-top: 0.5rem;
  color: var(--color-primary);
  font-size: 1.75rem;
  font-weight: 800;
}

.p-top__law-box-copy {
  margin-top: 0.5rem;
  color: var(--color-text-mid);
  font-size: 0.875rem;
}

.p-top__choice-list {
  display: grid;
  gap: 1.875rem;
  margin-top: 1.875rem;
}

.p-top__choice-lead {
  margin-top: 0.3125rem;
  font-size: 1.125rem;
  line-height: 2.4;
}

.p-top__choice-title-accent {
  color: var(--color-accent);
}

.p-top__choice-title-num {
  font-size: 2.1875rem;
}

.p-top__estimate-list {
  margin-top: 1rem;
}

.p-top__choice-card {
  position: relative;
  padding: 3.125rem 1.25rem 1.25rem;
  border-radius: 1rem;
  background-color: var(--color-white);
}

.p-top__choice-num {
  position: absolute;
  top: -0.8125rem;
  left: 50%;
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  margin: 0;
  background: url("/seo/images/icons/icon-choice-badge.svg") center/contain no-repeat;
  color: var(--color-white);
  font-family: "Outfit", sans-serif;
  font-size: 1.6875rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
  transform: translateX(-50%);
}

.p-top__choice-title {
  margin-top: 0;
  color: var(--color-text);
  font-size: 1.25rem;
  line-height: 1.8;
  text-align: center;
}

.p-top__choice-header {
  display: grid;
  gap: 1rem;
}

.p-top__choice-text {
  display: grid;
  gap: 0.625rem;
}

.p-top__choice-title-accent-word {
  color: var(--color-accent);
}

.p-top__choice-copy {
  margin-top: 0;
  color: var(--color-text);
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.p-top__choice-meta {
  margin-top: 1rem;
}

.p-top__choice-meta div + div {
  margin-top: 1rem;
}

.p-top__choice-meta dt {
  padding: 0.3125rem 0.75rem;
  margin: 0;
  border-radius: 999rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.p-top__choice-meta dd {
  margin-top: 0.625rem;
  margin-left: 0;
  color: var(--color-text);
  line-height: 1.8;
}

.p-top__choice-icon {
  margin: 1.25rem auto 0;
}

.p-top__choice-icon-image {
  display: block;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.p-top__choice-icon-image--1 {
  width: 7.75rem;
}

.p-top__choice-icon-image--2 {
  width: 5.125rem;
}

.p-top__choice-icon-image--3 {
  width: 7.8125rem;
}

.p-top__choice-icon-image--4 {
  width: 5.0625rem;
}

.p-top__simulator {
  display: grid;
  gap: 1rem;
  margin-top: 1.875rem;
}

.p-top__simulator-hero {
  position: relative;
  color: var(--color-white);
}

.p-top__simulator-hero-title {
  position: relative;
  z-index: 2;
  margin-top: 0;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.p-top__simulator-hero-title-accent {
  color: var(--color-accent);
}

.p-top__simulator-hero-copy {
  position: relative;
  z-index: 2;
  margin-top: 0.3125rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.p-top__simulator-person {
  position: absolute;
  z-index: 1;
  margin: 0;
}

.p-top__simulator-person img {
  display: block;
  width: 100%;
  height: auto;
}

.p-top__simulator-person--woman {
  bottom: -1.1875rem;
  left: -1.25rem;
  width: 5.3125rem;
}

.p-top__simulator-person--man {
  right: -1.875rem;
  bottom: -1.875rem;
  width: 7.5rem;
}

.p-top__simulator-form,
.p-top__estimate-card {
  border-radius: 0.625rem;
  background-color: var(--color-white);
}

.p-top__simulator-form {
  padding: 1.25rem;
}

.p-top__field {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
}

.p-top__field + .p-top__field {
  margin-top: 0.625rem;
}

.p-top__simulator-intro {
  position: relative;
  margin-top: 1.875rem;
  z-index: 2;
  color: var(--color-white);
  font-size: 1.125rem;
  line-height: 2.4;
  text-align: center;
}

.p-top__simulator-intro-strong {
  font-weight: 700;
}

.p-top__field-label {
  display: block;
  color: var(--color-text-mid);
  font-size: 1.25rem;
  font-weight: 700;
}

.p-top__field-note {
  margin-top: 0.3125rem;
  color: var(--color-danger);
  line-height: 1.8;
}

.p-top__field-input {
  width: 100%;
  margin-top: 0.3125rem;
  padding: 0.625rem;
  border: 0.0625rem solid var(--color-border);
  border-radius: 0.1875rem;
  background-color: var(--color-bg-gray);
  color: var(--color-text);
  font-size: 0.875rem;
  line-height: 1.8;
}

.p-top__field-input.is-error {
  border: 0.125rem solid var(--color-danger);
}

.p-top__field-input::placeholder {
  color: var(--color-text-light);
  opacity: 1;
}

.p-top__radio-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 0.0625rem solid var(--color-border);
  border-radius: 0.1875rem;
}

.p-top__radio {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  background-color: var(--color-white);
  font-weight: 700;
  border-right: 0.0625rem solid var(--color-border);
}
.p-top__radio input {
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
}
.p-top__radio input:checked + span {
  color: var(--color-white);
  background-color: var(--color-primary);
}
.p-top__radio span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.p-top__radio:last-child {
  border-right: 0;
}

.p-top__simulator-submit {
  width: 100%;
  padding: 0.625rem 1.25rem;
  margin-top: 0.625rem;
  border: 0;
  border-radius: 999rem;
  background-color: var(--color-accent-olive);
  color: var(--color-white);
  font-weight: 800;
  line-height: 1.8;
  position: relative;
}

.p-top__simulator-submit::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 1.3125rem;
  height: 0.375rem;
  background: url("/seo/images/icons/icon-chevron-white.svg") center/contain no-repeat;
  transform: translateY(-50%);
}

.p-top__simulator-title {
  padding: 0.625rem 1.875rem;
  border-radius: 0.3125rem;
  background-color: var(--color-white);
  color: var(--color-accent-olive);
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.p-top__simulator-result-copy,
.p-top__result-annual-label {
  padding: 0.625rem 1.25rem;
  margin-top: 0.625rem;
  border-radius: 0.3125rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.p-top__result-chevron {
  width: 5rem;
  height: 1.4375rem;
  margin: 0.625rem auto 0;
  background: url("/seo/images/icons/icon-chevron-olive.svg") center/contain no-repeat;
}

.p-top__result-current {
  padding-block: 1.875rem;
}

.p-top__result-current {
  border-bottom: 0.0625rem solid var(--color-accent-olive);
}

.p-top__result-current p,
.p-top__result-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
}

.p-top__result-current p + p,
.p-top__result-summary-row + .p-top__result-summary-row {
  margin-top: 1.875rem;
}

.p-top__result-total {
  padding-top: 1.875rem;
}

.p-top__result-value,
.p-top__result-summary-row strong {
  color: var(--color-text);
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1;
}

.p-top__result-unit {
  font-size: 1.25rem;
}

.p-top__result-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7.375rem;
  padding: 0.3125rem 0.625rem;
  border-radius: 999rem;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.1em;
}

.p-top__result-total .p-top__result-chip {
  min-width: 0;
}

.p-top__result-annual {
  padding: 2.5rem 1.5rem;
  margin-top: 0.625rem;
  border-radius: 0.625rem;
  background-color: var(--color-white);
}

.p-top__result-annual-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  color: var(--color-text);
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1;
}

.p-top__result-annual-copy strong {
  color: var(--color-text);
  font-size: 1.25rem;
  line-height: 1;
}

.p-top__result-annual-text {
  margin-top: 1.25rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.p-top__result-annual-text-accent {
  color: var(--color-accent);
}

.p-top__simulator-result {
  padding: 1.875rem;
  background-color: var(--color-bg-cream);
}

.p-top__simulator-result-button {
  display: block;
  width: 100%;
  padding: 1.25rem;
  margin-top: 0.875rem;
  border-radius: 999rem;
  background-color: var(--color-accent-olive);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  position: relative;
}

.p-top__simulator-result-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 1.3125rem;
  height: 0.375rem;
  background: url("/seo/images/icons/icon-chevron-white.svg") center/contain no-repeat;
  transform: translateY(-50%);
}

.p-top__simulator-guide {
  color: var(--color-white);
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.p-top__simulator-guide-accent {
  color: var(--color-accent);
}

.p-top__simulator-guide-sub {
  margin-top: 0.3125rem;
  color: var(--color-white);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.p-top__simulator-estimates {
  margin-top: 0.875rem;
}

.p-top__estimate-list {
  display: grid;
  gap: 0.625rem;
  margin-top: 1rem;
}

.p-top__estimate-card {
  padding: 1.25rem;
  border-radius: 0.625rem;
  text-align: center;
}

.p-top__estimate-card-title {
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
}

.p-top__estimate-card-title-accent {
  color: var(--color-accent);
}

.p-top__estimate-card-icon {
  margin: 0.625rem auto 0;
}

.p-top__estimate-card-icon img {
  display: block;
  margin: 0 auto;
  height: auto;
}

.p-top__estimate-card-amount {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 0.625rem;
  color: var(--color-text-mid);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}

.p-top__estimate-card-value {
  display: inline-flex;
  align-items: flex-end;
}

.p-top__estimate-card-price {
  color: var(--color-text);
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1;
}

.p-top__estimate-card-unit {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}

.p-top__estimate-card-body {
  margin-top: 0.625rem;
  line-height: 1.8;
  text-align: left;
}

.p-top__estimate-card-link {
  color: var(--color-info);
  text-decoration: underline;
}

.p-top__section--support {
  background-color: var(--color-bg-cream);
}

.p-top__support-title {
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.p-top__support-title-accent {
  color: var(--color-accent);
}

.p-top__support-hero-visual {
  container-type: inline-size;
  container-name: support-hero-visual;
  position: relative;
  z-index: 0;
  margin-top: 0.75rem;
}

.p-top__support-staff {
  position: absolute;
  bottom: 0;
  z-index: 0;
  margin: 0;
}

.p-top__support-staff img {
  display: block;
  width: 100%;
  height: auto;
}

.p-top__support-staff--man {
  top: -4.9375rem;
  left: -0.0625rem;
  width: 5.9375rem;
}

.p-top__support-staff--woman {
  top: -4.8125rem;
  right: -0.0625rem;
  width: 6.125rem;
}

.p-top__support-lead {
  margin-top: 0.3125rem;
  color: var(--color-primary);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.p-top__support-summary {
  display: grid;
  gap: 0.625rem;
  margin-top: 0.875rem;
}

.p-top__support-card {
  position: relative;
  padding: 1.25rem;
  border-radius: 0.625rem;
  background-color: var(--color-white);
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.04);
}

.p-top__support-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.p-top__support-card-title-accent {
  color: var(--color-accent);
}

.p-top__support-card-body {
  margin-top: 0.625rem;
  line-height: 1.8;
}

.p-top__support-attributes-wrap {
  container-type: inline-size;
  container-name: support-attributes;
}

.p-top__support-attributes {
  display: grid;
  gap: 0.625rem;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.p-top__support-attribute {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.p-top__support-attribute + .p-top__support-attribute {
  margin-top: 0;
}

.p-top__support-attribute dt {
  flex-shrink: 0;
  min-width: 6.25rem;
  padding: 0.3125rem 0.875rem;
  border-radius: 999rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: center;
}

.p-top__support-attribute dd {
  margin: 0;
  color: var(--color-primary);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
}

.p-top__support-cost {
  margin-top: 1.875rem;
  padding: 0.625rem;
  border-radius: 0.625rem;
  background-color: var(--color-white);
  box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.04);
}

.p-top__support-cost-question {
  padding: 0.3125rem 0.625rem;
  border-radius: 0.3125rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.p-top__support-cost-title {
  margin-top: 1.25rem;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.p-top__support-cost-title-accent {
  color: var(--color-accent);
}

.p-top__support-cost-label {
  padding: 0.3125rem 0.625rem;
  margin-top: 1.25rem;
  border-radius: 0.3125rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.p-top__support-cost-panel {
  padding: 0 0.625rem 0.625rem;
}

.p-top__support-cost-main {
  display: grid;
  gap: 0.875rem;
  margin-top: 0.625rem;
}

.p-top__support-cost-copy {
  display: grid;
  gap: 0.625rem;
}

.p-top__support-cost-body,
.p-top__support-cost-value {
  margin-top: 0;
  color: var(--color-text);
  line-height: 1.8;
}

.p-top__support-cost-row {
  display: grid;
  gap: 0.5rem;
}

.p-top__support-cost-chip {
  padding: 0.3125rem 0.625rem;
  border-radius: 999rem;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.p-top__support-cost-visual {
  width: 11.75rem;
  margin: 0 auto;
}

.p-top__support-cost-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.p-top__support-example {
  margin-top: 0.625rem;
  overflow: hidden;
  border-radius: 0.3125rem;
  background-color: var(--color-bg-gray);
}

.p-top__support-example-title {
  padding: 0 0.625rem;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.p-top__support-example-body {
  padding: 0.625rem 1.25rem;
  font-weight: 700;
  line-height: 1.8;
}

.p-top__support-example-copy {
  color: var(--color-primary);
}

.p-top__support-example-note {
  margin-top: 1rem;
  color: var(--color-text);
  font-weight: 400;
}

.p-top__support-example-note span {
  font-weight: 700;
}

.p-top__support-future {
  margin-top: 1.875rem;
}

.p-top__support-future-title {
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.p-top__support-future-lead {
  margin-top: 0.625rem;
  color: var(--color-text);
  font-size: 1.125rem;
  line-height: 2.4;
  text-align: center;
}

.p-top__support-future-cards {
  display: grid;
  gap: 0.625rem;
  margin-top: 1rem;
}

.p-top__flow-heading {
  color: var(--color-white);
  text-align: center;
}

.p-top__flow-title {
  color: var(--color-white);
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.8;
}

.p-top__flow-subtitle {
  margin-top: 0.3125rem;
  color: var(--color-white);
  font-size: 1.125REM;
  font-weight: 700;
  line-height: 1.8;
}

.p-top__pricing-card {
  padding: 1.5rem 1.125rem;
}
.p-top__pricing-card h3 {
  margin: 0;
  color: var(--color-primary);
  font-size: 1.125rem;
}
.p-top__pricing-card ul {
  display: grid;
  gap: 0.625rem;
  padding-left: 1.125rem;
  margin-top: 0.75rem;
  color: var(--color-text-mid);
  font-size: 0.875rem;
}

.p-top__pricing-card--primary {
  background-color: var(--color-primary);
}
.p-top__pricing-card--primary h3,
.p-top__pricing-card--primary li {
  color: var(--color-white);
}

.p-top__flow-list {
  display: grid;
  margin-top: 1.875rem;
}

.p-top__flow-item {
  position: relative;
  padding: 1.25rem;
  border-radius: 0.625rem;
  background-color: var(--color-white);
  text-align: center;
}

.p-top__flow-item + .p-top__flow-item {
  margin-top: 2rem;
}

.p-top__flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.5625rem;
  width: 2.6875rem;
  height: 1.0625rem;
  background: url("/seo/images/icons/icon-chevron-green.svg") center/contain no-repeat;
  transform: translateX(-50%);
}

.p-top__flow-item-title {
  color: var(--color-accent);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
}

.p-top__flow-item-icon {
  margin: 0.625rem auto 0;
}

.p-top__flow-item-icon img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.p-top__flow-item-icon--diagnosis {
  width: 4.5625rem;
}

.p-top__flow-item-icon--analysis {
  width: 7.5rem;
}

.p-top__flow-item-icon--strategy {
  width: 7.1875rem;
}

.p-top__flow-item-icon--practice {
  width: 6.5625rem;
}

.p-top__flow-item-icon--resolution {
  width: 8.5rem;
}

.p-top__flow-item-copy {
  margin-top: 0.625rem;
  color: var(--color-text);
  line-height: 1.8;
}

.p-top__flow-cta {
  position: relative;
  display: grid;
  justify-items: center;
  margin-top: 5rem;
  padding-bottom: 13.75rem;
  color: var(--color-white);
  text-align: center;
}

.p-top__flow-cta-body {
  position: relative;
  z-index: 1;
}

.p-top__flow-cta-title {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-top__flow-cta-title-line {
  display: block;
}

.p-top__flow-cta-title-line--large {
  font-size: 2.1875rem;
}

.p-top__flow-cta-title-accent {
  color: var(--color-accent);
  font-size: 2.1875rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.p-top__flow-cta-copy {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.8;
}

.p-top__flow-cta-people-sp {
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  z-index: 0;
  width: 22.375rem;
  margin: 0;
  transform: translateX(-48%);
}

.p-top__flow-cta-people-sp img {
  display: block;
  width: 100%;
  height: auto;
}

.p-top__flow-cta-person {
  position: absolute;
  bottom: -0.6875rem;
  z-index: 0;
  margin: 0;
  display: none;
}

.p-top__flow-cta-person img {
  display: block;
  width: 100%;
  height: auto;
}

.p-top__flow-cta-person--woman {
  left: 0.0625rem;
  width: 11rem;
}

.p-top__flow-cta-person--man {
  right: -0.875rem;
  width: 15.1875rem;
}

.p-top__faq-list {
  display: grid;
  gap: 1.875rem;
  margin-top: 1.875rem;
}

.p-top__faq-heading {
  text-align: center;
}

.p-top__faq-title {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.8;
}

.p-top__faq-subtitle {
  margin-top: 0.3125rem;
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
}

.p-top__faq-item {
  padding: 1.875rem;
  border-radius: 0.625rem;
  background-color: var(--color-bg-cream);
}

.p-top__faq-question-wrap {
  text-align: center;
}

.p-top__faq-q,
.p-top__faq-a {
  margin: 0;
  font-size: 2.8125rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.p-top__faq-q {
  color: var(--color-accent);
  font-family: "Outfit", sans-serif;
}

.p-top__faq-a {
  color: var(--color-primary);
}

.p-top__faq-question {
  display: block;
  padding-bottom: 1.25rem;
  margin-top: 0.3125rem;
  border-bottom: 0.0625rem solid var(--color-text-light);
  border-radius: 0.3125rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: left;
}

.p-top__faq-answer {
  margin-top: 1.25rem;
}

.p-top__faq-answer-copy {
  margin-top: 0.3125rem;
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: left;
}

.p-top__column-posts-title {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.p-top__column-posts-list {
  display: grid;
  gap: 1.875rem;
  margin-top: 1.875rem;
}

.p-top__column-posts-item {
  margin: 0;
}

.p-top__column-post-link {
  display: block;
  color: inherit;
}

.p-top__column-post-thumb {
  margin: 0;
  overflow: hidden;
  border-radius: 0.625rem;
  aspect-ratio: 350/218;
}

.p-top__column-post-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top__column-post-content {
  margin-top: 0.625rem;
}

.p-top__column-post-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
}

.p-top__column-post-excerpt {
  margin-top: 0.625rem;
  font-size: 1.125rem;
  line-height: 1.8;
}

.p-top__column-posts-footer {
  margin-top: 1.875rem;
}

.p-top__column-posts-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 2.25rem;
  border-radius: 999rem;
  background-color: var(--color-accent-olive);
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.8;
}

.p-top__column-posts-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 1.3125rem;
  height: 0.375rem;
  background: url("/seo/images/icons/icon-chevron-white.svg") center/contain no-repeat;
  transform: translateY(-50%) rotate(-90deg);
}

.p-top__cta {
  background-color: var(--color-primary);
}

.p-top__cta-body {
  color: var(--color-white);
  text-align: center;
}

.p-top__cta-hero {
  position: relative;
}

.p-top__cta-person {
  position: absolute;
  margin: 0;
}

.p-top__cta-person img {
  width: 100%;
  height: auto;
}

.p-top__cta-person--man {
  top: -0.75rem;
  left: -0.75rem;
  width: 6.6875rem;
}

.p-top__cta-person--woman {
  top: -0.6875rem;
  right: -0.625rem;
  width: 5.3125rem;
}

.p-top__cta-section-title {
  margin: 0 auto;
  padding-top: 3.75rem;
}

.p-top__cta-section-title .c-section-title__main {
  font-size: 2.1875rem;
  line-height: 1.8;
}

.p-top__cta-lead {
  margin-top: 1.875rem;
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
}

.p-top__cta-copy {
  margin-top: 1.875rem;
  color: var(--color-white);
  font-size: 1.125rem;
  line-height: 2.4;
}

.p-top__cta-copy p {
  margin: 0;
}

.p-top__cta-copy p + p {
  margin-top: 0.5rem;
}

.p-top__cta-line-button,
.p-top__flow-line-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 2.25rem 1.25rem 4.375rem;
  margin-top: 1.875rem;
  border-radius: 999rem;
  background-color: var(--color-line);
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.8;
}

.p-top__cta-line-button::before,
.p-top__flow-line-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.25rem;
  width: 2.4375rem;
  height: 2.375rem;
  background: url("/seo/images/icons/icon-line.svg") center/contain no-repeat;
  transform: translateY(-50%);
}

.p-top__cta-line-button::after,
.p-top__flow-line-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 1.3125rem;
  height: 0.375rem;
  background: url("/seo/images/icons/icon-chevron-white.svg") center/contain no-repeat;
  transform: translateY(-50%) rotate(-90deg);
}

.p-top__cta-offer {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 15.625rem;
  margin: 2.3125rem auto 0;
}

.p-top__cta-badge {
  position: relative;
  width: 11.4375rem;
  transform: translateX(-0.9375rem);
}

.p-top__cta-badge-shape {
  display: block;
  width: 100%;
  height: auto;
}

.p-top__cta-badge-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.p-top__cta-badge-kicker {
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.6;
}

.p-top__cta-badge-sub {
  margin-top: 0.375rem;
  color: var(--color-primary);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.2;
}

.p-top__cta-badge-main {
  color: var(--color-accent);
  font-size: 3.375rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.p-top__cta-offer-person {
  position: absolute;
  right: 0.9375rem;
  bottom: -0.75rem;
  width: 4.125rem;
  margin: 0;
}

.p-top__cta-offer-person img {
  width: 100%;
  height: auto;
}

@media (width >= 768px) {
  .p-top__hero .l-container {
    padding: 0 2.5rem;
  }
  .p-top {
    --hero-scale: clamp(0.4, calc(100vw / 120rem), 1);
  }
  .p-top__hero {
    padding-bottom: 0;
    min-height: calc(61.1875rem * var(--hero-scale));
    overflow: visible;
  }
  .p-top__hero-panel {
    width: calc(68.75rem * var(--hero-scale));
    max-width: none;
    height: calc(59.0625rem * var(--hero-scale));
    margin-top: calc(2.125rem * var(--hero-scale));
    margin-inline: auto;
    padding: 0;
    overflow: visible;
  }
  .p-top__hero-panel::before {
    content: none;
  }
  .p-top__hero-stage {
    position: absolute;
    top: 0;
    left: 50%;
    width: 68.75rem;
    padding-top: 4.375rem;
    transform: translateX(-50%) scale(var(--hero-scale));
    transform-origin: top center;
  }
  .p-top__hero-stage::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 113.25rem;
    height: 52.125rem;
    border-radius: 6.25rem;
    z-index: -1;
    background-color: var(--color-bg-near-white);
    transform: translateX(-50%);
  }
  .p-top__hero-note {
    position: absolute;
    top: 4.375rem;
    right: 0;
    margin: 0;
    padding: 0.75rem 1.625rem;
    font-size: 1.5rem;
    line-height: 1.8;
    letter-spacing: 0.15em;
    z-index: 3;
  }
  .p-top__hero-title {
    margin: 0 auto;
    text-align: left;
  }
  .p-top__hero-title-top {
    gap: 0.75rem;
  }
  .p-top__hero-title-top-main {
    font-size: 4.0625rem;
  }
  .p-top__hero-title-badge {
    font-size: 1.8125rem;
  }
  .p-top__hero-title-badge::before {
    width: 4rem;
    height: 3.75rem;
    top: 1.25rem;
  }
  .p-top__hero-title-main {
    width: 100%;
    margin-top: 0;
    font-size: 17.1875rem;
    line-height: 1;
    text-align: left;
  }
  .p-top__hero-title-koto {
    left: 4.9375rem;
    bottom: -1.25rem;
    width: 6.5625rem;
    height: auto;
  }
  .p-top__hero-catch {
    width: fit-content;
    margin: 2.5rem auto 0;
    padding: 0.4375rem 6.75rem;
    font-size: 2.1875rem;
    line-height: 1.8;
  }
  .p-top__hero-catch br {
    display: none;
  }
  .p-top__hero-lead {
    margin-top: 1rem;
    text-align: center;
  }
  .p-top__hero-lead-main {
    display: inline;
    font-size: 4.6875rem;
    line-height: 1.4;
  }
  .p-top__hero-lead-sub {
    display: inline;
    padding-left: 0.5rem;
    font-size: 2.6875rem;
    line-height: 1.4;
  }
  .p-top__hero-attributes {
    display: flex;
    justify-content: center;
    gap: 3.125rem;
    padding-left: 0;
    margin: 1.4375rem 0 0;
  }
  .p-top__hero-attribute {
    grid-template-columns: auto 1fr;
    column-gap: 0.625rem;
  }
  .p-top__hero-attribute dt {
    font-size: 1.25rem;
  }
  .p-top__hero-attribute dd {
    font-size: 1.25rem;
    white-space: nowrap;
  }
  .p-top__hero-attribute dd br {
    display: none;
  }
  .p-top__hero-people {
    position: static;
    margin-top: 0;
  }
  .p-top__hero-person {
    position: absolute;
    bottom: 0;
  }
  .p-top__hero-person--woman {
    top: 2.1875rem;
    left: -22.625rem;
    bottom: auto;
    margin-left: 0;
  }
  .p-top__hero-person--woman img {
    width: 20.25rem;
    height: auto;
  }
  .p-top__hero-person--man {
    top: 1.3125rem;
    right: -23.75rem;
    bottom: auto;
    margin-right: 0;
  }
  .p-top__hero-person--man img {
    width: 26.4375rem;
    height: auto;
  }
  .p-top__hero-action {
    bottom: -8.125rem;
    padding: 1.0625rem 1.875rem;
    font-size: 1.25rem;
  }
  .p-top__hero-scroll {
    width: 11.5rem;
    height: 5.75rem;
    bottom: -19.0625rem;
  }
  .p-top__hero-scroll-text {
    margin-top: 1.5rem;
    font-size: 1rem;
  }
  .p-top__hero-scroll-icon {
    width: 3.1875rem;
    height: 1.625rem;
    margin-top: 0;
  }
  .p-top__section--intro {
    margin-top: 0;
    padding-block: 6.25rem;
    overflow: hidden;
  }
  .p-top__section--intro {
    --intro-visual-pc-scale: min(1, calc(100vw / 120rem));
  }
  .p-top__section--intro .l-container {
    position: relative;
  }
  .p-top__section--intro .p-top__intro-grid {
    position: relative;
    margin-top: 2rem;
  }
  .p-top__section--intro .p-top__intro-grid::before,
  .p-top__section--intro .p-top__intro-grid::after {
    content: "";
    position: absolute;
    z-index: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
  }
  .p-top__section--intro .p-top__intro-grid::before {
    top: calc(5.25rem * var(--intro-visual-pc-scale));
    left: calc(-2.75rem * var(--intro-visual-pc-scale));
    width: calc(52.375rem * var(--intro-visual-pc-scale));
    aspect-ratio: 625/711;
    background-image: url("/seo/images/top/document-sign-large@2x.webp");
  }
  .p-top__section--intro .p-top__intro-grid::after {
    top: calc(37.1875rem * var(--intro-visual-pc-scale));
    right: calc(-16.4375rem * var(--intro-visual-pc-scale));
    width: calc(39.6875rem * var(--intro-visual-pc-scale));
    aspect-ratio: 439/499;
    background-image: url("/seo/images/top/document-sign-small@2x.webp");
  }
  .p-top__intro-body {
    position: relative;
    z-index: 1;
  }
  .p-top__intro-main {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    column-gap: 3.125rem;
    align-items: start;
  }
  .p-top__intro-text--lead .c-section-title__main {
    font-size: 2.8125rem;
    line-height: 1.8;
  }
  .p-top__intro-check-list {
    padding: 1.25rem;
    margin-top: 1.875rem;
  }
  .p-top__intro-text {
    margin-top: 1.875rem;
    font-size: 1.25rem;
  }
  .p-top__intro-check-list li {
    padding-left: 1.25rem;
    font-size: 1.25rem;
    line-height: 2.4;
  }
  .p-top__intro-visual {
    align-self: start;
    justify-self: flex-start;
    width: calc(35.1875rem * var(--intro-visual-pc-scale));
    aspect-ratio: 563/667;
    margin-left: 0;
    margin-right: -2rem;
    overflow: visible;
  }
  .p-top__intro-visual-inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 35.1875rem;
    height: 41.6875rem;
    transform: scale(var(--intro-visual-pc-scale));
    transform-origin: top right;
  }
  .p-top__intro-woman img {
    width: 100%;
    height: 100%;
    object-fit: none;
  }
  .p-top__intro-balloon--left {
    top: 6.3125rem;
    left: 5.75rem;
    font-size: 1.875rem;
  }
  .p-top__intro-balloon--right {
    top: 18.4375rem;
    right: 5.5rem;
    font-size: 1.25rem;
  }
  .p-top__intro-balloon--bottom {
    bottom: 6rem;
    left: 8.1875rem;
    font-size: 1.5625rem;
  }
  .p-top__tenant-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    column-gap: 5.625rem;
    align-items: start;
    margin-top: 6.25rem;
  }
  .p-top__tenant-body {
    grid-column: 2;
    grid-row: 1;
  }
  .p-top__section-title-tenant {
    align-self: end;
  }
  .p-top__section-title-tenant .c-section-title__main {
    margin-top: 0;
    font-size: 2.1875rem;
    line-height: 1.45;
  }
  .p-top__section-title-tenant .c-section-title__sub {
    margin-top: 0.3125rem;
    font-size: 1.5625rem;
  }
  .p-top__content-card {
    margin-top: -0.5rem;
  }
  .p-top__content-card .p-top__intro-text {
    font-size: 1.25rem;
  }
  .p-top__tenant-agreement {
    grid-column: 1;
    grid-row: 1;
    width: calc(27.8125rem * var(--intro-visual-pc-scale));
    aspect-ratio: 645/581;
    margin-top: 0;
  }
  .p-top__tenant-agreement-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 27.8125rem;
    aspect-ratio: 645/581;
    transform: scale(var(--intro-visual-pc-scale));
    transform-origin: top left;
  }
  .p-top__tenant-agreement-figure {
    position: absolute;
    top: -0.3125rem;
    right: 0;
    left: auto;
    width: 100%;
    height: 100%;
  }
  .p-top__tenant-agreement-figure img {
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: contain;
  }
  .p-top__tenant-agreement-copy {
    bottom: -1.25rem;
    left: -0.25rem;
    font-size: 1.25rem;
    line-height: 1.6;
    letter-spacing: 0.1em;
  }
  .p-top__tenant-agreement-copy-accent {
    font-size: 1.875rem;
  }
  .p-top__loss-panel {
    position: relative;
    container-type: inline-size;
    container-name: loss-panel;
    margin: 10.3125rem 0 6.25rem;
    padding: 3.125rem;
    border-radius: 3.125rem;
  }
  .p-top__section-title-loss,
  .p-top__loss-copy,
  .p-top__table-wrap--loss,
  .p-top__loss-unit,
  .p-top__table-note--loss {
    position: relative;
    z-index: 1;
  }
  .p-top__section-title-loss {
    text-align: center;
  }
  .p-top__section-title-loss .c-section-title__main {
    font-size: 2.1875rem;
  }
  .p-top__section-title-loss .c-section-title__sub {
    margin-top: 0.3125rem;
    font-size: 1.5625rem;
    line-height: 1.8;
  }
  .p-top__loss-copy {
    margin-top: 1.875rem;
    font-size: 1.125rem;
    line-height: 1.8;
    text-align: center;
  }
  .p-top__loss-dialogue {
    position: absolute;
    top: 8.75rem;
    right: 0;
    left: 0;
    width: auto;
    height: 12rem;
    margin: 0 1.5625rem;
    z-index: 0;
  }
  .p-top__loss-dialogue-person {
    position: absolute;
    bottom: 0;
  }
  .p-top__loss-dialogue-person--woman {
    left: 2.5rem;
    width: 16.9375rem;
  }
  .p-top__loss-dialogue-person--man {
    right: 2.5rem;
    width: 16.9375rem;
  }
  .p-top__table-wrap--loss {
    margin-top: 1.875rem;
  }
  .p-top__table-wrap--loss .p-top__table th,
  .p-top__table-wrap--loss .p-top__table td {
    padding: 1.25rem 0.625rem;
  }
  .p-top__table-wrap--loss .p-top__table thead th {
    font-size: 1.25rem;
    line-height: 1.8;
    white-space: nowrap;
  }
  .p-top__table-wrap--loss .p-top__table tbody th {
    font-size: 1.25rem;
    line-height: 1.8;
  }
  .p-top__table-wrap--loss .p-top__table tbody td {
    font-size: 2.1875rem;
  }
  .p-top__loss-unit {
    margin-top: 0.75rem;
    font-size: 1rem;
  }
  .p-top__table-note--loss {
    padding-top: 0;
    margin-top: 0.75rem;
    font-size: 1.125rem;
    line-height: 1.8;
  }
  @container loss-table (width < 43.75rem) {
    .p-top__table-wrap--loss .p-top__table th,
    .p-top__table-wrap--loss .p-top__table td {
      padding: 1rem 0.5rem;
    }
    .p-top__table-wrap--loss .p-top__table thead th {
      font-size: 1rem;
      line-height: 1.6;
    }
    .p-top__table-wrap--loss .p-top__table tbody th {
      font-size: 1rem;
      line-height: 1.6;
    }
    .p-top__table-wrap--loss .p-top__table tbody td {
      font-size: 1.75rem;
    }
  }
  @container loss-panel (width <= 87.5rem) {
    .p-top__loss-dialogue {
      position: static;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      width: fit-content;
      height: auto;
      margin: 0.3125rem auto 0;
    }
    .p-top__loss-dialogue-person {
      position: static;
      margin: 0;
    }
    .p-top__loss-dialogue-person--woman,
    .p-top__loss-dialogue-person--man {
      width: 6.625rem;
    }
    .p-top__loss-dialogue-person--woman img,
    .p-top__loss-dialogue-person--man img {
      width: 100%;
      height: auto;
    }
    .p-top__table-wrap--loss {
      margin-top: 0.625rem;
    }
  }
  .p-top__law-panel {
    position: relative;
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    column-gap: 2rem;
    max-width: 1590px;
    align-items: start;
    margin-top: 0;
    padding-bottom: 0;
  }
  .p-top__law-badge,
  .p-top__law-title,
  .p-top__law-lead,
  .p-top__law-body,
  .p-top__law-visual {
    position: relative;
    z-index: 1;
  }
  .p-top__law-heading {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }
  .p-top__law-badge {
    width: fit-content;
    padding: 0.625rem 1.25rem;
    font-size: 1.25rem;
  }
  .p-top__law-title {
    margin-top: 0;
    font-size: 2.1875rem;
  }
  .p-top__law-lead {
    margin-top: 0.3125rem;
    font-size: 1.5625rem;
  }
  .p-top__law-body {
    margin-top: 0;
  }
  .p-top__law-visual {
    --law-visual-pc-scale: min(1, calc(100cqi / 43.6875rem));
    grid-column: 2;
    grid-row: 1/span 4;
    justify-self: end;
    width: min(100%, 43.6875rem * var(--intro-visual-pc-scale));
    aspect-ratio: 699/491;
    container-type: inline-size;
  }
  .p-top__law-visual-inner {
    position: absolute;
    top: -5.625rem;
    right: 0;
    width: 43.6875rem;
    transform: scale(var(--law-visual-pc-scale));
  }
  .p-top__law-visual-copy {
    top: 20rem;
    right: 4rem;
    left: auto;
    width: 19rem;
    font-size: 1.5625rem;
    line-height: 1.6;
  }
  .p-top__law-visual-copy-accent {
    font-size: 2.1875rem;
    line-height: 1.6;
  }
  .p-top__law-figure img {
    width: 100%;
  }
  .p-top__choice-section {
    margin-top: 6.25rem;
  }
  .p-top__choice-section > .c-section-title {
    text-align: center;
  }
  .p-top__choice-section > .c-section-title .c-section-title__main {
    font-size: 2.1875rem;
  }
  .p-top__choice-lead {
    margin-top: 0.3125rem;
    font-size: 1.25rem;
    text-align: center;
  }
  .p-top__choice-title-num {
    font-size: 2.8125rem;
  }
  .p-top__choice-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 1.25rem;
    margin-top: 1.875rem;
  }
  @container choice-section (width <= 60.25rem) {
    .p-top__choice-list {
      grid-template-columns: 1fr;
    }
  }
  .p-top__choice-card {
    min-height: 25rem;
    padding: 1.25rem;
    border-radius: 1.5rem;
  }
  .p-top__choice-num {
    top: -2.15rem;
    right: 0.8125rem;
    left: auto;
    width: 6.25rem;
    height: 6.25rem;
    font-size: 2.625rem;
    transform: none;
  }
  .p-top__choice-title {
    font-size: 1.5625rem;
    text-align: left;
  }
  .p-top__choice-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.25rem;
    align-items: start;
    padding-right: 6.25rem;
  }
  .p-top__choice-card:nth-child(2) .p-top__choice-header,
  .p-top__choice-card:nth-child(4) .p-top__choice-header {
    padding-right: 8.125rem;
  }
  .p-top__choice-text {
    gap: 0.3125rem;
  }
  .p-top__choice-copy {
    font-size: 1.25rem;
    text-align: left;
  }
  .p-top__choice-card:nth-child(3) .p-top__choice-copy br {
    display: none;
  }
  .p-top__choice-icon {
    margin: 0;
    align-self: start;
  }
  .p-top__choice-icon-image--1 {
    width: 7.75rem;
  }
  .p-top__choice-icon-image--2 {
    width: 5.125rem;
  }
  .p-top__choice-icon-image--3 {
    width: 7.8125rem;
  }
  .p-top__choice-icon-image--4 {
    width: 5.0625rem;
  }
  .p-top__choice-meta {
    display: grid;
    gap: 0.625rem;
    margin: 1.25rem 0 1.375rem;
  }
  .p-top__choice-meta div {
    display: grid;
    grid-template-columns: 8.75rem minmax(0, 1fr);
    column-gap: 0.625rem;
    align-items: start;
  }
  .p-top__choice-meta div + div {
    margin-top: 0;
  }
  .p-top__choice-meta dt {
    padding: 0.3125rem;
    font-size: 1.125rem;
  }
  .p-top__choice-meta dd {
    margin-top: 0;
    font-size: 1.125rem;
  }
  .p-top__operator,
  .p-top__simulator {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }
  .p-top__simulator {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 1.875rem;
  }
  .p-top__simulator-hero-title {
    font-size: 2.1875rem;
  }
  .p-top__simulator-hero-copy {
    font-size: 1.5625rem;
  }
  .p-top__simulator-intro {
    font-size: 1.25rem;
  }
  .p-top__simulator-person {
    top: 10.625rem;
    bottom: auto;
  }
  .p-top__simulator-person--woman {
    width: 10.0625rem;
    left: 2.5rem;
  }
  .p-top__simulator-person--man {
    width: 13.0625rem;
    right: -0.625rem;
  }
  @container simulator-section (width <= 92.5rem) {
    .p-top__simulator-person {
      top: auto;
    }
    .p-top__simulator-person--woman {
      bottom: -1.1875rem;
      left: -1.25rem;
      width: 5.3125rem;
    }
    .p-top__simulator-person--man {
      right: -1.875rem;
      bottom: -1.875rem;
      width: 7.5rem;
    }
  }
  .p-top__simulator-form,
  .p-top__simulator-result {
    width: min(100%, 61.25rem);
  }
  .p-top__simulator-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 8rem minmax(0, 1fr);
    gap: 0.625rem;
    align-items: start;
    padding: 1.25rem;
  }
  .p-top__field {
    min-width: 0;
  }
  .p-top__field + .p-top__field {
    margin-top: 0;
  }
  .p-top__field-input,
  .p-top__radio-group {
    margin-top: 0.3125rem;
  }
  .p-top__simulator-submit {
    grid-column: 1/-1;
    margin-top: 0.25rem;
  }
  .p-top__simulator-submit::after {
    right: auto;
    left: calc(50% + 4.6875rem);
  }
  .p-top__simulator-result {
    container-type: inline-size;
    container-name: simulator-result;
    display: grid;
    row-gap: 1.875rem;
    padding: 1.875rem;
  }
  .p-top__result-current-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    column-gap: 1.875rem;
    padding-bottom: 1.25rem;
    border-bottom: 0.0625rem solid var(--color-accent-olive);
  }
  .p-top__result-total-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    column-gap: 1.875rem;
  }
  .p-top__result-current {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, auto));
    align-items: center;
    gap: 1.875rem;
    justify-content: flex-start;
    padding: 0;
    border-bottom: 0;
  }
  .p-top__simulator-result-copy,
  .p-top__result-annual-label {
    margin-top: 0;
    flex: 0 0 auto;
  }
  .p-top__simulator-title,
  .p-top__result-current-row,
  .p-top__result-total-row,
  .p-top__result-annual,
  .p-top__result-chevron,
  .p-top__result-annual-label,
  .p-top__result-total {
    grid-column: 1/-1;
  }
  .p-top__simulator-result-copy {
    align-self: center;
  }
  .p-top__result-total-row .p-top__result-annual-label,
  .p-top__result-total-row .p-top__result-total {
    grid-column: auto;
    min-width: 17.125rem;
  }
  .p-top__result-current p {
    justify-content: flex-start;
    gap: 0.75rem;
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .p-top__result-current p + p,
  .p-top__result-summary-row + .p-top__result-summary-row {
    margin-top: 0;
  }
  .p-top__result-annual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0;
    padding: 2.5rem;
  }
  .p-top__result-annual-copy {
    gap: 0.75rem;
  }
  .p-top__result-annual-copy strong {
    font-size: inherit;
    font-weight: 700;
  }
  .p-top__result-annual-text {
    margin-top: 0;
  }
  .p-top__result-chevron {
    margin: 0 auto;
  }
  .p-top__result-total {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, auto));
    align-items: center;
    gap: 1.875rem;
    justify-content: flex-start;
    padding-top: 0;
  }
  .p-top__result-total .p-top__result-chip {
    min-width: 7.375rem;
  }
  @container simulator-section (width <= 78rem) {
    .p-top__result-current-row,
    .p-top__result-total-row {
      display: block;
      padding-bottom: 0;
      border-bottom: 0;
    }
    .p-top__result-current {
      display: block;
      padding-block: 1.875rem;
      border-bottom: 0.0625rem solid var(--color-accent-olive);
    }
    .p-top__simulator-result-copy,
    .p-top__result-annual-label {
      margin-top: 0.625rem;
    }
    .p-top__result-current p,
    .p-top__result-summary-row {
      justify-content: space-between;
    }
    .p-top__result-current p + p,
    .p-top__result-summary-row + .p-top__result-summary-row {
      margin-top: 1.875rem;
    }
    .p-top__result-annual {
      display: block;
      margin-top: 0.625rem;
      padding: 2.5rem 1.5rem;
    }
    .p-top__result-annual-text {
      margin-top: 1.25rem;
      text-align: center;
    }
    .p-top__result-chevron {
      margin: 0.625rem auto 0;
    }
    .p-top__result-total {
      display: block;
      padding-top: 1.875rem;
    }
    .p-top__result-total-row .p-top__result-annual-label,
    .p-top__result-total-row .p-top__result-total {
      min-width: 0;
    }
  }
  .p-top__result-summary-row {
    justify-content: flex-start;
    gap: 0.75rem;
  }
  .p-top__section--support {
    overflow-x: clip;
    padding-block: 6.25rem;
  }
  .p-top__support-hero {
    position: relative;
    margin: 0 auto;
  }
  .p-top__support-title,
  .p-top__support-lead {
    position: relative;
    z-index: 1;
  }
  .p-top__support-summary,
  .p-top__support-attributes,
  .p-top__support-cost,
  .p-top__support-future {
    position: relative;
    z-index: 1;
  }
  .p-top__support-title {
    font-size: 2.8125rem;
  }
  .p-top__support-lead {
    margin-top: 0.3125rem;
    font-size: 1.5625rem;
  }
  .p-top__support-hero-visual {
    margin-top: 0.25rem;
    padding-inline: 0;
  }
  .p-top__support-staff--man {
    top: -9.125rem;
    left: -3.9375rem;
    width: 12.6875rem;
  }
  .p-top__support-staff--woman {
    top: -8.625rem;
    right: -5.25rem;
    width: 13.0625rem;
  }
  @container support-hero-visual (width <= 80.625rem) {
    .p-top__support-staff--man {
      top: -4.9375rem;
      left: -0.0625rem;
      width: 5.9375rem;
    }
    .p-top__support-staff--woman {
      top: -4.8125rem;
      right: -0.0625rem;
      width: 6.125rem;
    }
  }
  .p-top__support-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3.125rem;
    margin: 1.875rem auto 0;
  }
  .p-top__support-summary .p-top__support-card,
  .p-top__support-future-cards .p-top__support-card {
    padding: 1.25rem;
    border-radius: 0.625rem;
  }
  .p-top__support-summary .p-top__support-card-title {
    font-size: 1.875rem;
  }
  .p-top__support-summary .p-top__support-card-body {
    margin-top: 1.875rem;
    font-size: 1.125rem;
  }
  .p-top__support-attributes {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.875rem;
    margin-top: 1.25rem;
  }
  @container support-attributes (width <= 53.125rem) {
    .p-top__support-attributes {
      display: grid;
      gap: 0.625rem;
    }
  }
  .p-top__support-attribute {
    gap: 0.625rem;
  }
  .p-top__support-attribute dt {
    padding: 0.3125re 0.625rem;
    font-size: 1.25rem;
    white-space: nowrap;
  }
  .p-top__support-attribute dd {
    font-size: 1.25rem;
    white-space: nowrap;
  }
  .p-top__support-cost {
    padding: 1.875rem;
    margin: 6.25rem auto 0;
  }
  .p-top__support-cost-question,
  .p-top__support-cost-label {
    font-size: 1.5625rem;
  }
  .p-top__support-cost-label {
    margin-top: 1.875rem;
  }
  .p-top__support-cost-title {
    margin: 1.25rem auto 0;
    font-size: 2.1875rem;
  }
  .p-top__support-cost-panel {
    padding: 0 0.5rem 0.5rem;
  }
  .p-top__support-cost-main {
    grid-template-columns: minmax(0, 1fr) 11.75rem;
    gap: 0;
    margin-top: 1rem;
  }
  .p-top__support-cost-copy {
    gap: 0.625rem;
  }
  .p-top__support-cost-body,
  .p-top__support-cost-value {
    font-size: 1.125rem;
  }
  .p-top__support-cost-row {
    grid-template-columns: 9.375rem minmax(0, 1fr);
    align-items: center;
    gap: 0.625rem;
  }
  .p-top__support-cost-chip {
    padding: 0.21875rem 1.25rem;
    font-size: 1.25rem;
  }
  .p-top__support-cost-visual {
    width: 11.75rem;
    margin: 0;
    justify-self: end;
  }
  .p-top__support-example {
    margin-top: 1.875rem;
    border-radius: 0.3125rem;
  }
  .p-top__support-example {
    display: grid;
    grid-template-columns: 9.375rem minmax(0, 1fr);
  }
  .p-top__support-example-title {
    display: grid;
    place-items: center;
    padding: 0.625rem;
    font-size: 1.25rem;
    width: 9.375rem;
  }
  .p-top__support-example-body {
    padding: 0.625rem 1.25rem;
    font-size: 1.125rem;
  }
  .p-top__support-example-note {
    margin-top: 0.5rem;
  }
  .p-top__support-future {
    margin: 6.25rem auto 0;
  }
  .p-top__support-future-title {
    font-size: 1.5625rem;
  }
  .p-top__support-future-lead {
    margin-top: 1.25rem;
    font-size: 1.25rem;
  }
  .p-top__support-future-cards {
    grid-template-columns: repeat(auto-fit, minmax(21.25rem, 1fr));
    gap: 2.03125rem;
    margin-top: 1.25rem;
  }
  .p-top__support-future-cards .p-top__support-card-title {
    font-size: 1.875rem;
  }
  .p-top__support-future-cards .p-top__support-card-body {
    margin-top: 0.625rem;
    font-size: 1.125rem;
  }
  .p-top__simulator-result-button {
    width: min(100%, 24rem);
    padding: 1.25rem 2.8125rem;
    margin-top: 0;
  }
  .p-top__simulator-estimates {
    width: 100%;
    margin-top: 4.375rem;
  }
  .p-top__estimate-list {
    grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
    gap: 1.875rem;
    margin-top: 1.875rem;
  }
  .p-top__estimate-card-title {
    font-size: 1.875rem;
  }
  .p-top__estimate-card-price {
    font-size: 2.8125rem;
  }
  .p-top__estimate-card-unit {
    font-size: 1.25rem;
  }
  .p-top__estimate-card-icon {
    margin-top: 1.875rem;
  }
  .p-top__estimate-card-amount {
    margin-top: 1.875rem;
  }
  .p-top__estimate-card-body {
    margin-top: 1.875rem;
    font-size: 1.125rem;
  }
  .p-top__section--flow {
    padding-block: 3.5rem 6.25rem;
  }
  .p-top__flow-title {
    font-size: 2.1875rem;
  }
  .p-top__flow-subtitle {
    margin-top: 0.3125rem;
    font-size: 1.5625rem;
  }
  .p-top__flow-list {
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: 2rem;
    margin-top: 1.875rem;
  }
  .p-top__flow-item {
    display: grid;
    align-content: start;
    justify-items: center;
    padding: 1.25rem;
    border-radius: 0.625rem;
  }
  .p-top__flow-item + .p-top__flow-item {
    margin-top: 0;
  }
  .p-top__flow-item:not(:last-child)::after {
    top: 50%;
    right: -2.375rem;
    bottom: auto;
    left: auto;
    transform: translateY(-50%) rotate(-90deg);
  }
  .p-top__flow-item-title {
    font-size: 1.875rem;
  }
  .p-top__flow-item-icon {
    margin-top: 1.875rem;
  }
  .p-top__flow-item-icon--diagnosis {
    width: 4.5rem;
  }
  .p-top__flow-item-icon--analysis {
    width: 7.4375rem;
  }
  .p-top__flow-item-icon--strategy {
    width: 7.1875rem;
  }
  .p-top__flow-item-icon--practice {
    width: 6.5625rem;
  }
  .p-top__flow-item-icon--resolution {
    width: 8.5rem;
  }
  .p-top__flow-item-copy {
    margin-top: 1.875rem;
    font-size: 1.125rem;
  }
  .p-top__flow-cta {
    margin-top: 5rem;
    padding-bottom: 0;
  }
  .p-top__flow-cta-title {
    font-size: 1.5625rem;
    line-height: 1.4;
  }
  .p-top__flow-cta-title-line {
    display: inline;
  }
  .p-top__flow-cta-title-accent {
    font-size: 2.1875rem;
  }
  .p-top__flow-cta-copy {
    margin-top: 1.25rem;
    font-size: 1.125rem;
    line-height: 1.8;
  }
  .p-top__flow-cta-person {
    bottom: clamp(-10rem, -8.33vw, -2rem);
    display: block;
  }
  .p-top__flow-cta-people-sp {
    display: none;
  }
  .p-top__flow-cta-person--woman {
    left: clamp(-2.8125rem, -2.34vw, -1rem);
    width: clamp(11rem, 19.32vw, 23.1875rem);
  }
  .p-top__flow-cta-person--man {
    right: clamp(-9.0625rem, -7.55vw, -1rem);
    width: clamp(15.1875rem, 28.59vw, 34.3125rem);
  }
  .p-top__section--operator {
    padding-block: 6.25rem;
  }
  .p-top__operator-card {
    padding: 3.125rem;
    border-radius: 3.125rem;
  }
  .p-top__operator-title {
    font-size: 2.1875rem;
  }
  .p-top__operator-intro {
    margin-top: 0.3125rem;
    font-size: 1.25rem;
  }
  .p-top__operator-label {
    padding: 1.25rem 0.625rem;
    margin-top: 1.875rem;
    border-radius: 0.3125rem;
    font-size: 1.25rem;
  }
  .p-top__operator-main {
    display: grid;
    grid-template-columns: 21.875rem minmax(0, 1fr);
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 0.0625rem solid var(--color-text-light);
  }
  .p-top__operator-identity {
    gap: 0.625rem;
  }
  .p-top__operator-role {
    font-size: 1.125rem;
  }
  .p-top__operator-name {
    font-size: 2.5rem;
  }
  .p-top__operator-copy {
    border-bottom: 0;
    padding-bottom: 0;
    margin-top: 0;
    font-size: 1.25rem;
  }
  .p-top__operator-footer {
    grid-template-columns: minmax(0, 1fr) 9.375rem;
    gap: 1.875rem;
    align-items: center;
    margin-top: 1.25rem;
  }
  .p-top__operator-career {
    font-size: 1.25rem;
  }
  .p-top__operator-photo {
    width: 9.375rem;
    margin: 0 0 0 auto;
    border-radius: 0.625rem;
  }
  .p-top__section--faq {
    padding-block: 6.25rem;
  }
  .p-top__faq-title {
    font-size: 2.1875rem;
  }
  .p-top__faq-subtitle {
    margin-top: 0.3125rem;
    font-size: 1.5625rem;
  }
  .p-top__faq-list {
    gap: 1.875rem;
    margin-top: 1.875rem;
  }
  .p-top__faq-item {
    padding: 1.875rem;
    border-radius: 0.625rem;
  }
  .p-top__faq-question-wrap,
  .p-top__faq-answer {
    display: grid;
    grid-template-columns: 2.3125rem minmax(0, 1fr);
    column-gap: 1.875rem;
    align-items: center;
  }
  .p-top__faq-question-wrap {
    padding-bottom: 1.25rem;
    border-bottom: 0.125rem solid var(--color-text-light);
    border-radius: 0.3125rem;
  }
  .p-top__faq-q,
  .p-top__faq-a {
    font-size: 2.8125rem;
    line-height: 1;
  }
  .p-top__faq-question {
    border-bottom: 0;
    padding-bottom: 0;
    margin-top: 0;
    font-size: 1.25rem;
  }
  .p-top__faq-answer-copy {
    margin-top: 0;
    font-size: 1.25rem;
  }
  .p-top__section--column-posts {
    padding-block: 6.25rem;
    background-color: var(--color-black);
  }
  .p-top__column-posts {
    max-width: none;
  }
  .p-top__column-posts-title {
    font-size: 2.1875rem;
  }
  .p-top__column-posts-list {
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
    margin-top: 2.5rem;
  }
  .p-top__column-post-thumb {
    border-radius: 0.625rem;
    aspect-ratio: 485/303;
  }
  .p-top__column-post-content {
    display: block;
    margin-top: 0.625rem;
  }
  .p-top__column-post-title {
    font-size: 1.25rem;
  }
  .p-top__column-post-excerpt {
    font-size: 1.25rem;
  }
  .p-top__column-posts-footer {
    display: flex;
    justify-content: center;
    margin-top: 1.875rem;
  }
  .p-top__column-posts-button {
    min-width: 25rem;
    padding: 1.25rem 0.625rem;
    background-color: var(--color-accent-olive);
  }
  .p-top__column-posts-button::after {
    right: 1.75rem;
    width: 0.875rem;
    height: 1.5rem;
  }
  .p-top__cta {
    padding-block: 6.25rem;
    overflow-x: clip;
  }
  .p-top__cta-body {
    container-type: inline-size;
    container-name: cta-body;
    position: relative;
  }
  .p-top__cta-hero {
    position: static;
  }
  .p-top__cta-person {
    z-index: 0;
  }
  .p-top__cta-person--man {
    top: -2.625rem;
    right: -7.125rem;
    left: auto;
    width: 12rem;
  }
  .p-top__cta-person--woman {
    top: -0.9375rem;
    right: 4.125rem;
    left: auto;
    width: 9.5rem;
  }
  .p-top__cta-section-title,
  .p-top__cta-lead,
  .p-top__cta-copy,
  .p-top__cta-line-button {
    position: relative;
    z-index: 1;
  }
  .p-top__cta-section-title {
    padding-top: 0;
  }
  .p-top__cta-section-title br,
  .p-top__cta-lead br {
    display: none;
  }
  .p-top__cta-section-title .c-section-title__main {
    font-size: 3.4375rem;
  }
  .p-top__cta-lead {
    margin-top: 1.875rem;
    font-size: 1.875rem;
  }
  .p-top__cta-copy {
    margin: 1.875rem auto 0;
    font-size: 1.25rem;
  }
  .p-top__cta-line-button,
  .p-top__flow-line-button {
    padding: 1.25rem 6.25rem;
    margin: 1.875rem auto 0;
    width: fit-content;
  }
  .p-top__cta-line-button::before,
  .p-top__flow-line-button::before {
    left: 1.5rem;
  }
  .p-top__cta-line-button::after,
  .p-top__flow-line-button::after {
    right: 1.625rem;
    width: 0.875rem;
    height: 1.5rem;
  }
  .p-top__cta-offer {
    position: absolute;
    left: -3rem;
    bottom: -7.3125rem;
    z-index: 0;
    justify-content: flex-start;
    width: 25.625rem;
    margin: 0;
  }
  .p-top__cta-badge {
    width: 19.25rem;
    transform: none;
  }
  .p-top__cta-badge-kicker {
    font-size: 1.25rem;
  }
  .p-top__cta-badge-sub {
    margin-top: 0.625rem;
    font-size: 1.75rem;
    line-height: 1.2;
  }
  .p-top__cta-badge-main {
    font-size: 5.5rem;
  }
  .p-top__cta-offer-person {
    right: 2.8125rem;
    bottom: 0.25rem;
    width: 7rem;
  }
  @container cta-body (width <= 82.5rem) {
    .p-top__cta-hero {
      position: relative;
    }
    .p-top__cta-person--man {
      top: -0.75rem;
      right: auto;
      left: -0.75rem;
      width: 6.6875rem;
    }
    .p-top__cta-person--woman {
      top: -0.6875rem;
      right: -0.625rem;
      left: auto;
      width: 5.3125rem;
    }
    .p-top__cta-offer {
      position: relative;
      left: auto;
      bottom: auto;
      justify-content: center;
      width: 15.625rem;
      margin: 2.3125rem auto 0;
    }
    .p-top__cta-badge {
      width: 11.4375rem;
      transform: translateX(-0.9375rem);
    }
    .p-top__cta-badge-kicker {
      font-size: 0.75rem;
    }
    .p-top__cta-badge-sub {
      margin-top: 0.375rem;
      font-size: 1.0625rem;
    }
    .p-top__cta-badge-main {
      font-size: 3.375rem;
    }
    .p-top__cta-offer-person {
      right: 0.9375rem;
      bottom: -0.75rem;
      width: 4.125rem;
    }
    .p-top__cta-section-title {
      padding-top: 3.75rem;
    }
  }
}