:root {
  --color-text: #222;
  --color-subtext: #4a4a4a;
  --color-white: #fff;
  --color-black: #000;
  --color-dark: #111;
  --color-dark-2: #222;
  --color-muted: #f8f8f8;
  --color-border: #d9d9d9;
  --color-accent: #dea401;
  --color-danger: #d60000;
  --font-base: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container-wide: 1450px;
  --container: 1120px;
  --header-height-pc: 100px;
  --header-height-sp: 52px;
  --shadow-card: 2px 2px 5px rgba(0, 0, 0, 0.25);
  --shadow-float: 0 5px 20px rgba(0, 0, 0, 0.25);
}

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

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height-pc);
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  color: var(--color-text);
  background: var(--color-white);
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.7;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

p,
h1,
h2,
h3,
ul {
  margin: 0;
}

ul {
  padding: 0;
}

main,
section {
  width: 100%;
  max-width: 100%;
}

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

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 72px 0;
}

.section--muted {
  background: var(--color-muted);
}

.section--dark {
  color: var(--color-white);
  background: var(--color-black);
}

.section--dark .section-heading h2,
.section--dark .section-heading p {
  color: var(--color-white);
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin-bottom: 50px;
  text-align: center;
}

.section-heading__label {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  color: var(--color-accent);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
}

.section-heading__label::before,
.section-heading__label::after {
  width: 35px;
  height: 2px;
  background: currentColor;
  content: "";
}

.section-heading h2 {
  color: var(--color-text);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
}

.section-heading h2 span,
.section-heading p span,
.cta-section h2 span,
.hero__title span,
.hero__logo-mark span,
.site-logo__main span {
  color: var(--color-accent);
}

.section-heading > p:not(.section-heading__label) {
  max-width: 900px;
  color: var(--color-subtext);
  line-height: 1.5;
}

.button {
  display: inline-flex;
  min-height: 65px;
  align-items: center;
  justify-content: center;
  padding: 10px 44px;
  border: 1px solid var(--color-accent);
  border-radius: 3px;
  background: var(--color-accent);
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.button:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

.button--small {
  min-height: 45px;
  padding-inline: 48px;
  font-size: 18px;
}

.button--large {
  min-width: 526px;
  min-height: 130px;
  flex-direction: column;
  border-radius: 5px;
  font-size: 36px;
}

.button--large span {
  display: block;
  font-size: 22px;
}

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

.card-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 350px));
  justify-content: center;
}

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

.card-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border-radius: 5px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.card--dark {
  border: 1px solid #3a3a3a;
  background: var(--color-black);
  color: var(--color-white);
}

.skeleton-card {
  display: grid;
  min-height: 160px;
  place-items: center;
  padding: 24px;
  border-top: 5px solid var(--color-accent);
  font-weight: 700;
  text-align: center;
}

.problem {
  background: var(--color-white);
}

.problem__inner {
  width: min(100% - 48px, var(--container-wide));
}

.problem__heading {
  gap: 35px;
  margin-bottom: 50px;
}

.problem__heading .section-heading__label {
  margin-bottom: -30px;
}

.problem__heading h2 {
  max-width: 520px;
}

.problem__heading > p:not(.section-heading__label) {
  max-width: 520px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 24px;
}

.problem__heading > p span {
  font-weight: 700;
}

.problem__cards {
  display: grid;
  grid-template-columns: repeat(4, 300px);
  justify-content: center;
  gap: 10px;
}

.problem-card {
  display: flex;
  width: 300px;
  min-height: 204px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 27px 15px;
  border-top: 5px solid var(--color-accent);
  border-radius: 5px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.problem-card__icon {
  display: inline-flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
}

.problem-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.problem-card h3 {
  width: 100%;
  color: #172033;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

.problem-card p {
  width: 100%;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}

.solution {
  background: var(--color-muted);
}

.solution__inner {
  display: grid;
  justify-items: center;
  width: min(100% - 48px, var(--container-wide));
}

.solution__heading {
  gap: 35px;
  margin-bottom: 50px;
}

.solution__heading .section-heading__label {
  margin-bottom: -30px;
}

.solution__heading h2 {
  max-width: 770px;
}

.solution__heading-break {
  display: none;
}

.solution__heading > p:not(.section-heading__label) {
  max-width: 820px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 24px;
}

.solution__cards {
  display: grid;
  grid-template-columns: repeat(2, 350px);
  justify-content: center;
  gap: 10px;
}

.solution-card {
  display: flex;
  width: 350px;
  min-height: 296px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 27px 15px;
  border-radius: 5px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.solution-card__icon {
  display: inline-flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
}

.solution-card__icon img,
.solution-card__list img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.solution-card h3 {
  width: 100%;
  color: #172033;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

.solution-card__divider {
  width: 50px;
  height: 4px;
  background: var(--color-accent);
}

.solution-card__desc {
  width: 100%;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}

.solution-card__desc strong {
  color: var(--color-accent);
  font-weight: 700;
}

.solution-card__list {
  display: grid;
  gap: 0;
  list-style: none;
  text-align: left;
}

.solution-card__list li {
  display: grid;
  grid-template-columns: 16px 155px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
}

.solution-card__list img {
  width: 16px;
  height: 16px;
}

.solution__message {
  position: relative;
  width: min(100%, var(--container));
  margin-top: 8px;
  color: var(--color-text);
  font-size: 22px;
  font-weight: 700;
  line-height: 33px;
  text-align: center;
}

.solution__message::after {
  display: block;
  width: 395px;
  max-width: 100%;
  height: 4px;
  margin: 4px auto 0;
  background: var(--color-accent);
  content: "";
}

.solution__message span {
  color: var(--color-accent);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--color-white);
  transition: background-color 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(0, 0, 0, 0.8);
}

.site-header__inner {
  display: flex;
  width: min(100% - 80px, 1230px);
  min-height: var(--header-height-pc);
  align-items: center;
  gap: 50px;
  margin-inline: auto;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.site-logo__main {
  color: var(--color-white);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.site-logo__tagline {
  padding: 10px 0 10px 15px;
  border-left: 1px solid currentColor;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.site-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.site-nav a {
  padding: 5px 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.85);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.menu-button,
.sp-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 933px;
  padding: var(--header-height-pc) 0 64px;
  overflow: hidden;
  background: #000;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-worker.png");
  background-repeat: no-repeat;
  background-position: calc(50% + 310px) 43px;
  background-size: auto 933px;
  content: "";
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
  content: "";
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: calc(933px - var(--header-height-pc) - 64px);
  align-items: center;
  width: min(100% - 48px, var(--container));
}

.hero__content {
  width: 526px;
  margin-top: -6px;
}

.hero__catch {
  display: block;
  width: 488px;
  height: 256px;
  margin-bottom: 20px;
  overflow: hidden;
}

.hero__catch img {
  width: 488px;
  max-width: none;
  height: auto;
}

.hero__lead {
  margin-bottom: 20px;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
}

.hero__lead p {
  margin: 0;
}

.hero__lead span {
  color: var(--color-accent);
}

.hero__lead--sp {
  display: none;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 28px;
}

.feature-strip__item {
  display: grid;
  gap: 6px;
  min-height: 110px;
  align-content: center;
  justify-items: center;
  padding: 0 14px;
  border-right: 2px solid rgba(255, 255, 255, 0.85);
  text-align: center;
}

.feature-strip__item:last-child {
  border-right: 0;
}

.feature-strip__item strong {
  font-size: 18px;
  line-height: 1.35;
}

.feature-strip__item small {
  display: block;
  font-size: 13px;
  line-height: 1.45;
}

.hero__features {
  width: 100%;
  margin-bottom: 20px;
}

.hero__features .feature-strip__item {
  grid-template-rows: 60px auto auto;
  min-height: 106px;
  padding: 0 10px;
}

.hero__features .feature-strip__item img {
  width: auto;
  max-width: 66px;
  height: 60px;
  object-fit: contain;
  align-self: center;
}

.hero__features .feature-strip__item:first-child img {
  width: 76px;
  max-width: none;
  height: 44px;
  object-fit: contain;
  align-self: center;
}

.hero__features strong {
  font-size: 0;
  line-height: 30px;
}

.hero__features strong span {
  font-size: 22px;
}

.hero__features strong {
  font-size: 18px;
  white-space: nowrap;
}

.hero__features strong > span + span {
  margin-left: 0;
}

.hero__yen {
  display: grid;
  width: 60px;
  height: 60px;
  align-self: center;
  place-items: center;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-text);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}

.hero__cta {
  position: relative;
  display: block;
  width: 526px;
  height: 130px;
  border: 1px solid var(--color-accent);
  border-radius: 5px;
  background: var(--color-accent);
  color: var(--color-text);
  overflow: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero__cta:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

.hero__cta-badge {
  position: absolute;
  top: 19px;
  left: 14.5px;
  display: flex;
  width: 86px;
  height: 86px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #222;
  color: var(--color-white);
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.9px;
}

.hero__cta-badge-line {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
}

.hero__cta-badge-main,
.hero__cta-badge-bottom {
  font-size: 18px;
  line-height: 20px;
}

.hero__cta-badge-sub {
  font-size: 14px;
  line-height: 20px;
}

.hero__cta-text {
  position: absolute;
  top: 22px;
  left: 116px;
  display: block;
  width: 360px;
  height: 86px;
  font-weight: 700;
  white-space: nowrap;
}

.hero__cta-lead {
  display: block;
  font-size: 22px;
  line-height: 33px;
}

.hero__cta-main {
  display: block;
  font-size: 36px;
  line-height: 54px;
}

.hero__cta-arrow {
  position: absolute;
  top: 53px;
  left: 490.5px;
  display: block;
  width: 11px;
  height: 18px;
}

.hero__cta-arrow::before {
  display: block;
  width: 11px;
  height: 18px;
  background: url("../images/icon-arrow-right.svg") center / contain no-repeat;
  content: "";
}

.feature-strip--compact {
  width: min(100%, 720px);
  margin-inline: auto;
}

.cta-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.65)),
    radial-gradient(circle at 80% 35%, rgba(222, 164, 1, 0.22), transparent 24%),
    var(--color-black);
}

.cta-section__inner {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.cta-section__sub {
  font-size: 22px;
  font-weight: 700;
}

.cta-section h2 {
  font-size: 40px;
  line-height: 1.5;
}

.cta-section--primary {
  min-height: 561px;
  padding: 50px 0;
  background: image-set(
      url("../images/cta-bg-pc.webp") type("image/webp"),
      url("../images/cta-bg-pc.png") type("image/png")
    )
    center / cover no-repeat var(--color-black);
}

.cta-primary__inner {
  display: flex;
  width: min(100% - 48px, 790px);
  min-height: 461px;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.cta-primary__sub {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-bottom: -5px;
  color: var(--color-white);
  font-size: 22px;
  font-weight: 700;
  line-height: 33px;
}

.cta-primary__sub::before,
.cta-primary__sub::after {
  width: 25px;
  height: 5px;
  border-radius: 999px;
  background: var(--color-white);
  content: "";
}

.cta-primary__sub::before {
  transform: rotate(55deg);
}

.cta-primary__sub::after {
  transform: rotate(-55deg);
}

.cta-primary__title {
  margin-bottom: 10px;
  color: var(--color-white);
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
}

.cta-primary__lead {
  color: var(--color-white);
  font-size: 22px;
  font-weight: 700;
  line-height: 33px;
  text-align: center;
}

.cta-primary__lead span {
  color: var(--color-accent);
}

.cta-primary__lead-break-sp {
  display: none;
}

.cta-primary__features {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 51px;
  margin-bottom: 19px;
  padding: 10px;
  color: var(--color-white);
}

.cta-primary__feature {
  display: flex;
  min-width: 242px;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-right: 15px;
}

.cta-primary__feature:not(:last-child) {
  border-right: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-primary__feature-icon,
.cta-primary__yen {
  display: inline-flex;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.cta-primary__feature-icon img {
  width: auto;
  height: auto;
  max-width: 76px;
  max-height: 51px;
  object-fit: contain;
}

.cta-primary__yen {
  width: 100px;
  height: 100px;
}

.cta-primary__yen::before {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-text);
  font-family: Inter, var(--font-base);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  content: "￥";
}

.cta-primary__yen {
  font-size: 0;
}

.cta-primary__feature-text {
  display: grid;
  width: 132px;
  gap: 5px;
  text-align: left;
}

.cta-primary__feature-text strong {
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  white-space: nowrap;
}

.cta-primary__feature-text strong span {
  font-size: 28px;
  line-height: 24px;
}

.cta-primary__feature-text small {
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
}

.cta-primary__button {
  position: relative;
  display: block;
  width: 526px;
  height: 130px;
  flex-shrink: 0;
  border: 1px solid var(--color-accent);
  border-radius: 5px;
  background: var(--color-accent);
  color: var(--color-text);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cta-primary__button:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.cta-primary__button-badge {
  position: absolute;
  top: 19px;
  left: 14.5px;
  display: grid;
  width: 86px;
  height: 86px;
  place-content: center;
  border-radius: 50%;
  background: var(--color-text);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.9px;
  text-align: center;
}

.cta-primary__button-badge span {
  display: block;
}

.cta-primary__button-badge strong {
  font-size: 18px;
}

.cta-primary__button-badge span:first-child {
  font-size: 14px;
}

.cta-primary__button-text {
  position: absolute;
  top: 22px;
  left: 116px;
  display: grid;
  color: var(--color-text);
  font-weight: 700;
  white-space: nowrap;
}

.cta-primary__button-lead {
  font-size: 22px;
  line-height: 33px;
}

.cta-primary__button-main {
  font-size: 36px;
  line-height: 54px;
}

.cta-primary__button-arrow {
  position: absolute;
  top: 53px;
  left: 490.5px;
  display: block;
  width: 11px;
  height: 18px;
  background: url("../images/icon-arrow-right.svg") center / contain no-repeat;
}

.flow {
  background: var(--color-white);
}

.flow__inner {
  display: grid;
  justify-items: center;
  width: min(100% - 48px, var(--container-wide));
}

.flow__heading {
  gap: 15px;
  margin-bottom: 50px;
}

.flow__heading .section-heading__label {
  font-weight: 700;
}

.flow__heading h2 {
  max-width: 760px;
  font-size: 28px;
  line-height: 55px;
}

.flow__heading h2 span {
  font-size: 40px;
  line-height: 55px;
}

.flow__heading-break-sp {
  display: none;
}

.flow__heading > p:not(.section-heading__label) {
  max-width: 650px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 24px;
}

.flow__cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 26px minmax(0, 1fr) 26px minmax(0, 1fr) 26px minmax(0, 1fr);
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1338px;
  gap: 10px;
}

.flow-card {
  display: flex;
  width: 100%;
  min-height: 204px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 27px 15px;
  border-radius: 5px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.flow__arrow {
  width: 26px;
}

.flow-card__number {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: Inter, var(--font-base);
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
}

.flow-card__icon {
  display: inline-flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
}

.flow-card__icon img,
.flow__arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.flow-card h3 {
  color: #172033;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

.flow-card p {
  width: 100%;
  color: var(--color-text);
  font-size: 15px;
  line-height: 24px;
}

.flow__arrow {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
}

.flow__message {
  margin-top: 50px;
  padding: 15px 30px;
  border: 2px solid var(--color-accent);
  border-radius: 5px;
  color: var(--color-accent);
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
}

.specialty {
  background: var(--color-black);
}

.specialty__inner {
  display: grid;
  justify-items: center;
  width: min(100% - 48px, var(--container));
}

.specialty__heading {
  gap: 35px;
  margin-bottom: 50px;
}

.specialty__heading .section-heading__label {
  margin-bottom: -30px;
  font-weight: 700;
}

.specialty__heading h2 {
  color: var(--color-white);
  font-size: 40px;
  line-height: 60px;
}

.specialty__heading > p:not(.section-heading__label) {
  max-width: 900px;
  color: var(--color-white);
  font-size: 16px;
  line-height: 24px;
}

.specialty__heading > p span {
  color: var(--color-accent);
  font-weight: 700;
}

.specialty__cards {
  display: grid;
  grid-template-columns: repeat(3, 350px);
  justify-content: center;
  gap: 10px;
  margin-bottom: 31px;
}

.specialty-card {
  display: flex;
  width: 350px;
  min-height: 238px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 27px 15px;
  border: 1px solid #3a3a3a;
  border-radius: 5px;
  background: var(--color-black);
  box-shadow: var(--shadow-card);
  color: var(--color-white);
  text-align: center;
}

.specialty-card__icon {
  display: inline-flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
}

.specialty-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.specialty-card h3 {
  width: 100%;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

.specialty-card__divider {
  width: 50px;
  height: 4px;
  background: var(--color-accent);
}

.specialty-card p {
  width: 100%;
  color: var(--color-white);
  font-size: 15px;
  line-height: 24px;
}

.specialty__note {
  width: min(100%, 796px);
  padding: 20px 10px;
  border-top: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  color: var(--color-white);
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

.specialty__chips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 25px;
  color: var(--color-white);
}

.specialty__chips p {
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
}

.specialty__chips ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  list-style: none;
}

.specialty__chips li {
  min-width: 75px;
  padding: 5px 10px;
  border: 1px solid var(--color-white);
  border-radius: 3px;
  color: var(--color-white);
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  white-space: nowrap;
}

.specialty__message {
  margin-top: 17px;
  color: var(--color-white);
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
}

.specialty__message span {
  color: var(--color-accent);
}

.proof {
  background: var(--color-white);
}

.proof__inner {
  display: grid;
  justify-items: center;
  width: min(100% - 48px, 1210px);
}

.proof__heading {
  gap: 35px;
  margin-bottom: 50px;
}

.proof__heading .section-heading__label {
  margin-bottom: -30px;
  font-weight: 700;
}

.proof__heading h2 {
  max-width: 1120px;
}

.proof__heading > p:not(.section-heading__label) {
  max-width: 900px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 24px;
}

.proof__heading > p span {
  color: var(--color-accent);
  font-weight: 700;
}

.proof__metrics {
  display: grid;
  grid-template-columns: repeat(3, 300px);
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
}

.proof-metric {
  display: grid;
  width: 300px;
  min-height: 166px;
  justify-items: center;
  padding: 25px 15px;
  border-radius: 5px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.proof-metric h3 {
  color: #172033;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

.proof-metric__value {
  display: flex;
  height: 80px;
  align-items: baseline;
  justify-content: center;
  color: var(--color-text);
  font-weight: 700;
  line-height: 1;
}

.proof-metric__value span,
.proof-metric__value b {
  font-size: 28px;
}

.proof-metric__value strong {
  color: var(--color-accent);
  font-size: 65px;
  line-height: 1;
}

.proof-metric__value b {
  color: var(--color-accent);
}

.proof-metric__value--percent strong {
  font-size: 65px;
}

.proof-metric__note {
  color: var(--color-text);
  font-size: 15px;
  line-height: 24px;
}

.proof__block {
  display: grid;
  justify-items: center;
  width: 100%;
  gap: 25px;
}

.proof__block + .proof__block {
  margin-top: 50px;
}

.proof__subheading {
  display: grid;
  justify-items: center;
  gap: 5px;
  color: var(--color-black);
  font-size: 22px;
  font-weight: 700;
  line-height: 33px;
  text-align: center;
}

.proof__subheading::after {
  width: 35px;
  height: 2px;
  background: var(--color-accent);
  content: "";
}

.proof__cases {
  display: grid;
  grid-template-columns: repeat(3, 380px);
  gap: 25px;
  width: 100%;
}

.proof-case {
  position: relative;
  display: grid;
  width: 380px;
  min-height: 686px;
  padding: 0 15px 15px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.proof-case__top {
  position: relative;
  height: 240px;
  margin-bottom: 10px;
}

.proof-case__number {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: flex;
  width: 60px;
  height: 90px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--color-dark-2);
  color: var(--color-white);
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}

.proof-case__number strong {
  display: block;
  font-size: 28px;
  font-weight: 400;
  line-height: 30px;
}

.proof-case__industry {
  position: absolute;
  z-index: 2;
  top: 25px;
  left: 110px;
  display: inline-flex;
  width: 130px;
  height: 35px;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 16px;
  line-height: 24px;
}

.proof-case__image {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 160px;
  overflow: hidden;
}

.proof-case__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-case h4 {
  margin-bottom: 16px;
  color: var(--color-black);
  font-size: 22px;
  font-weight: 700;
  line-height: 33px;
  text-align: center;
}

.proof-case__table {
  display: grid;
  margin: 0;
  border-collapse: collapse;
}

.proof-case__table div {
  display: grid;
  grid-template-columns: 84px 1fr;
  min-height: 45px;
}

.proof-case__table dt,
.proof-case__table dd {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 10px;
}

.proof-case__table dt {
  justify-content: center;
  background: #f5f5f5;
  color: var(--color-black);
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

.proof-case__table dd {
  background: var(--color-white);
  color: var(--color-black);
  font-size: 12px;
  line-height: 18px;
}

.proof-case__table div + div dd {
  border-top: 1px solid #f5f5f5;
}

.proof-case__result {
  min-height: 95px;
}

.proof-case__result dd {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 0;
}

.proof-case__result dd span {
  display: grid;
  grid-template-columns: auto auto;
  align-content: center;
  justify-content: center;
  gap: 5px;
  min-height: 95px;
  padding: 10px;
  text-align: center;
}

.proof-case__result dd span + span {
  border-left: 1px solid #f5f5f5;
}

.proof-case__result em {
  grid-column: 1 / -1;
  color: var(--color-black);
  font-size: 12px;
  font-style: normal;
  line-height: 18px;
}

.proof-case__result strong {
  color: var(--color-accent);
  font-size: 32px;
  line-height: 24px;
  white-space: nowrap;
}

.proof-case__result b {
  color: var(--color-accent);
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
}

.proof-case__voice {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 10px;
  margin: 15px 5px 0;
  padding: 15px;
  background: #d8dee9;
}

.proof-case__voice img,
.proof-voice img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.proof-case__voice p {
  color: var(--color-black);
  font-size: 12px;
  line-height: 18px;
}

.proof__voices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  width: 100%;
}

.proof-voice {
  display: grid;
  gap: 15px;
  padding: 20px 10px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.proof-voice__head {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 10px;
}

.proof-voice h4 {
  color: var(--color-accent);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.proof-voice p {
  color: var(--color-black);
  font-size: 12px;
  line-height: 18px;
}

.offer {
  background: var(--color-white);
}

.offer__inner {
  display: grid;
  justify-items: center;
  width: min(100% - 48px, var(--container-wide));
}

.offer__heading {
  gap: 15px;
  margin-bottom: 50px;
}

.offer__heading .section-heading__label {
  font-weight: 700;
}

.offer__heading h2 {
  max-width: 1120px;
  line-height: 55px;
}

.offer__heading > p:not(.section-heading__label) {
  max-width: 650px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 24px;
}

.offer-card {
  display: grid;
  width: min(100%, 450px);
  justify-items: center;
  overflow: hidden;
  padding-bottom: 10px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.offer-card h3 {
  position: relative;
  width: 100%;
  min-height: 60px;
  padding: 13px 20px;
  background: var(--color-dark-2);
  color: var(--color-white);
  font-size: 22px;
  font-weight: 700;
  line-height: 33px;
  text-align: center;
}

.offer-card h3::after {
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 0;
  height: 0;
  border-right: 27px solid transparent;
  border-left: 27px solid transparent;
  border-top: 20px solid var(--color-dark-2);
  content: "";
  transform: translateX(-50%);
}

.offer-card__list {
  display: grid;
  width: 100%;
  margin-top: 20px;
  list-style: none;
}

.offer-card__list li {
  display: grid;
  grid-template-columns: 40px 315px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 10px 20px;
  border-bottom: 1px solid var(--color-border);
  color: #172033;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

.offer-card__list li:last-child {
  border-bottom: 0;
}

.offer-card__icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.offer-card__icon img,
.offer-assurance__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.offer-assurance {
  display: grid;
  justify-items: center;
  width: min(100%, 1092px);
  margin-top: 50px;
  gap: 5px;
}

.offer-assurance__label {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: var(--color-accent);
  font-size: 22px;
  font-weight: 700;
  line-height: 33px;
}

.offer-assurance__label::before,
.offer-assurance__label::after {
  width: 25px;
  height: 4px;
  border-radius: 999px;
  background: var(--color-accent);
  content: "";
}

.offer-assurance__label::before {
  transform: rotate(55deg);
}

.offer-assurance__label::after {
  transform: rotate(-55deg);
}

.offer-assurance__list {
  display: grid;
  grid-template-columns: repeat(4, 250px);
  gap: 10px;
  padding: 10px;
  list-style: none;
}

.offer-assurance__list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  width: 250px;
  min-height: 80px;
  padding-right: 15px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 24px;
}

.offer-assurance__list li:not(:last-child) {
  border-right: 2px solid var(--color-border);
}

.offer-assurance__icon,
.offer-assurance__yen {
  display: inline-flex;
  width: 80px;
  height: 80px;
  align-items: center;
  justify-content: center;
}

.offer-assurance__icon img {
  width: auto;
  height: auto;
  max-width: 52px;
  max-height: 68px;
}

.offer-assurance__yen {
  font-size: 0;
}

.offer-assurance__yen::before {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-text);
  color: var(--color-accent);
  font-family: Inter, var(--font-base);
  font-size: 31px;
  font-weight: 700;
  line-height: 1;
  content: "￥";
}

.check-list {
  display: grid;
  list-style: none;
}

.check-list li {
  padding: 18px 24px;
  border-bottom: 1px solid var(--color-border);
  font-weight: 700;
}

.check-list li:last-child {
  border-bottom: 0;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: 72px 0 100px;
  background: var(--color-white);
}

.contact::before {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  aspect-ratio: 3840 / 1226;
  background:
    image-set(url("../images/contact-section-bg.webp") type("image/webp"), url("../images/contact-section-bg.png") type("image/png")) center top / 100% auto no-repeat;
  content: "";
}

.contact__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.contact__heading {
  gap: 35px;
  margin-bottom: 31px;
}

.contact__heading .section-heading__label {
  margin-bottom: -30px;
}

.contact__heading h2 {
  max-width: 850px;
  line-height: 1.375;
}

.contact__heading > p:not(.section-heading__label) {
  max-width: 856px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 24px;
}

.contact__time {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 11px;
  color: var(--color-danger);
  font-size: 22px;
  font-weight: 700;
  line-height: 33px;
  text-align: center;
}

.contact__time::before,
.contact__time::after {
  width: 25px;
  height: 5px;
  flex: 0 0 25px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.contact__time::before {
  transform: rotate(55deg);
}

.contact__time::after {
  transform: rotate(-55deg);
}

.contact-form {
  display: grid;
  width: 800px;
  max-width: 100%;
  gap: 20px;
  margin-inline: auto;
  padding: 70px 125px;
  border-radius: 5px;
  background: var(--color-white);
  box-shadow: var(--shadow-float);
}

.contact-form__status,
.contact-form__notice {
  width: 800px;
  max-width: 100%;
  margin: 0 auto 24px;
  padding: 28px 32px;
  border-radius: 5px;
  background: var(--color-white);
  box-shadow: var(--shadow-float);
}

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

.contact-form__status-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.contact-form__status-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.contact-form__status-list div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
}

.contact-form__status-list dt,
.contact-form__status-list dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
}

.contact-form__status-list dt {
  font-weight: 700;
}

.contact-form__status-list .is-full {
  grid-template-columns: 1fr;
}

.contact-form__status-note {
  font-size: 14px;
  line-height: 1.8;
}

.contact-form__notice {
  border: 1px solid rgba(229, 40, 40, 0.2);
  color: var(--color-danger);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
}

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

.contact-form span,
.contact-form legend {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}

.contact-form__label,
.contact-form__fieldset legend {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.contact-form b {
  display: inline-flex;
  height: 25px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--color-danger);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--color-border);
  border-radius: 5px;
  padding: 10px 14px;
  background: var(--color-white);
}

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

.contact-form input[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
  border-color: var(--color-danger);
}

.contact-form input[aria-invalid="true"]:focus,
.contact-form textarea[aria-invalid="true"]:focus {
  outline: 2px solid rgba(214, 0, 0, 0.18);
  outline-offset: 2px;
}

.contact-form__fieldset {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 20px;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-form__fieldset legend {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}

.contact-form__fieldset label,
.contact-form__privacy-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-form__fieldset label {
  min-width: 0;
  line-height: 27px;
  white-space: nowrap;
}

.contact-form__fieldset.is-invalid {
  color: var(--color-text);
}

.contact-form input[type="checkbox"] {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  accent-color: var(--color-accent);
}

.contact-form__privacy {
  width: 100%;
  margin-top: 5px;
  text-align: center;
}

.contact-form__privacy-label {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  justify-content: center;
  margin-inline: auto;
  white-space: nowrap;
}

.contact-form .contact-form__privacy-label {
  display: inline-flex;
}

.contact-form__privacy-label span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.contact-form__privacy a {
  color: #155eef;
  font-size: 18px;
  text-decoration: underline;
}

.contact-form__error {
  min-height: 22px;
  color: var(--color-danger);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.contact-form__error--full {
  grid-column: 1 / -1;
}

.contact-form__error--center {
  display: block;
  margin-top: 8px;
  text-align: center;
}

.contact-form__submit {
  width: min(100%, 365px);
  min-height: 65px;
  margin-inline: auto;
  border: 0;
  border-radius: 0;
  background: var(--color-accent);
  color: var(--color-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  text-align: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-form__submit:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

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

.site-footer {
  padding: 35px 0 30px;
  background: var(--color-black);
  color: var(--color-white);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.site-footer__logo {
  display: inline-flex;
  flex-shrink: 0;
}

.site-footer__logo-main {
  color: var(--color-white);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.site-footer__logo-main span {
  color: var(--color-accent);
}

.site-footer__tagline {
  padding: 10px 0 10px 15px;
  border-left: 1px solid currentColor;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.site-footer__meta {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0;
}

.site-footer__links span,
.site-footer__links a {
  padding: 0 12px;
  color: var(--color-white);
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
}

.site-footer__links > :first-child {
  padding-left: 0;
}

.site-footer__links > :last-child {
  padding-right: 0;
}

.site-footer__links > * + * {
  border-left: 1px solid currentColor;
}

.site-footer__copy {
  font-size: 12px;
  line-height: 1;
}

.legal-page {
  background: var(--color-black);
}

.legal-main {
  padding: 200px 0 120px;
  background: var(--color-black);
}

.legal-main__container {
  width: min(100% - 48px, 1100px);
  margin-inline: auto;
}

.legal-main__container--narrow {
  width: min(100% - 48px, 960px);
}

.legal-sheet {
  display: grid;
  gap: 25px;
  padding: 50px 30px;
  background: var(--color-white);
  color: var(--color-text);
}

.legal-sheet h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.375;
  text-align: center;
}

.legal-sheet > p {
  font-size: 16px;
  line-height: 1.5;
}

.legal-sections {
  display: grid;
  gap: 30px;
}

.legal-section {
  display: grid;
  gap: 15px;
}

.legal-section h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}

.legal-section p,
.legal-section li,
.legal-contact {
  font-size: 16px;
  line-height: 1.5;
}

.legal-section ul,
.legal-section ol {
  display: grid;
  gap: 0;
  padding-left: 1.35em;
}

.legal-list--plain {
  padding-left: 0;
  list-style: none;
}

.legal-contact {
  display: grid;
  gap: 0;
}

.legal-contact a {
  text-decoration: underline;
}

.thanks-page {
  background: var(--color-black);
}

.thanks-main {
  display: grid;
  min-height: 600px;
  place-items: start center;
  padding: 200px 24px 164px;
  background: var(--color-black);
}

.thanks-panel {
  display: grid;
  width: min(100%, 1100px);
  justify-items: center;
  gap: 25px;
  padding: 50px 30px;
  background: var(--color-white);
  color: var(--color-text);
  text-align: center;
}

.thanks-panel h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 55px;
}

.thanks-panel p {
  font-size: 16px;
  line-height: 24px;
}

.thanks-panel__button {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  padding: 10px 50px;
  border-radius: 3px;
  background: var(--color-accent);
  color: var(--color-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.thanks-panel__button:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

@media (max-width: 1180px) {
  .site-header__inner {
    width: min(100% - 40px, 100%);
    gap: 24px;
  }

  .site-nav a {
    font-size: 15px;
  }

  .button--small {
    padding-inline: 28px;
  }

  .card-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  html {
    scroll-padding-top: var(--header-height-sp);
  }

  main,
  section {
    overflow-x: clip;
  }

  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 20px, 390px);
  }

  .section {
    padding: 56px 0;
  }

  .section-heading {
    gap: 12px;
    margin-bottom: 32px;
  }

  .section-heading__label {
    gap: 12px;
    font-size: 16px;
  }

  .section-heading__label::before,
  .section-heading__label::after {
    width: 24px;
  }

  .section-heading h2,
  .cta-section h2 {
    font-size: 26px;
    line-height: 1.45;
  }

  .button--large {
    min-width: 100%;
    min-height: 90px;
    font-size: 25px;
  }

  .button--large span {
    font-size: 15px;
  }

  .site-header__inner {
    position: relative;
    z-index: 3;
    width: calc(100% - 20px);
    min-height: var(--header-height-sp);
    gap: 0;
  }

  .site-logo__main {
    font-size: 30px;
  }

  .site-logo__tagline {
    padding: 4px 0 4px 8px;
    font-size: 9px;
    line-height: 1.35;
  }

  .site-nav,
  .site-header__cta {
    display: none;
  }

  .menu-button {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border: 0;
    background: transparent;
  }

  .menu-button span {
    display: block;
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: var(--color-accent);
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform-origin: center;
  }

  .site-header.is-open .menu-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

  .site-header.is-open .menu-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .sp-menu {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    min-height: 100dvh;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding: 103px 10px 40px;
    background:
      linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
      image-set(url("../images/sp-menu-bg.webp") type("image/webp"), url("../images/sp-menu-bg.png") type("image/png")) center bottom / 208% auto no-repeat,
      var(--color-black);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .site-header.is-open .sp-menu {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .sp-menu__links {
    display: grid;
    gap: 20px;
    justify-items: center;
  }

  .sp-menu__links a {
    width: 204px;
    padding: 5px 15px;
    border-bottom: 1px solid var(--color-white);
    color: var(--color-white);
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    text-align: center;
  }

  .sp-menu__cta {
    position: relative;
    display: block;
    width: min(100%, 370px);
    height: 90px;
    margin-top: 54px;
    border: 1px solid var(--color-accent);
    border-radius: 3.5px;
    background: var(--color-accent);
    color: var(--color-text);
  }

  .sp-menu__cta-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    display: grid;
    width: 60px;
    height: 60px;
    place-content: center;
    border-radius: 50%;
    background: var(--color-text);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 700;
    line-height: 14px;
    letter-spacing: 0.63px;
    text-align: center;
  }

  .sp-menu__cta-badge span {
    display: block;
  }

  .sp-menu__cta-badge strong {
    font-size: 13px;
  }

  .sp-menu__cta-badge span:first-child {
    font-size: 10px;
  }

  .sp-menu__cta-text {
    position: absolute;
    top: 14px;
    left: 88px;
    display: grid;
    font-weight: 700;
  }

  .sp-menu__cta-lead {
    font-size: clamp(14px, 4vw, 15px);
    line-height: 23px;
    white-space: nowrap;
  }

  .sp-menu__cta-main {
    font-size: clamp(22px, 6.2vw, 25px);
    line-height: 38px;
    white-space: nowrap;
  }

  .sp-menu__cta-arrow {
    position: absolute;
    top: 39px;
    right: 15px;
    width: 8px;
    height: 13px;
  }

  .sp-menu__cta-arrow::before {
    display: block;
    width: 100%;
    height: 100%;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    content: "";
    transform: rotate(45deg);
  }

  .hero {
    min-height: 756px;
    padding: var(--header-height-sp) 0 20px;
    background: var(--color-black);
  }

  .hero::before {
    background-position: center 22px;
    background-size: auto 430px;
    opacity: 0.78;
  }

  .hero::after {
    inset: 0;
    height: auto;
    background: rgba(0, 0, 0, 0.6);
  }

  .hero__inner {
    z-index: 2;
    min-height: calc(756px - var(--header-height-sp) - 20px);
    align-items: flex-start;
    padding-top: 26px;
    padding-bottom: 0;
  }

  .hero__content {
    width: 100%;
    text-align: center;
  }

  .hero__catch {
    width: 330px;
    height: 173px;
    margin: 0 auto 105px;
  }

  .hero__catch img {
    width: 330px;
  }

  .hero__lead {
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 27px;
    white-space: normal;
  }

  .hero__lead--pc {
    display: none;
  }

  .hero__lead--sp {
    display: block;
  }

  .hero__lead p {
    max-width: 100%;
  }

  .hero__features {
    margin-bottom: 28px;
  }

  .hero__features .feature-strip__item {
    grid-template-rows: 56px auto auto;
    min-height: 112px;
    padding: 0 6px;
  }

  .hero__features .feature-strip__item img {
    width: auto;
    max-width: 56px;
    height: 56px;
    object-fit: contain;
    align-self: center;
  }

  .hero__features .feature-strip__item:first-child img {
    width: 54px;
    max-width: none;
    height: 32px;
    align-self: center;
  }

  .hero__features strong {
    font-size: 13px;
    line-height: 21px;
    white-space: nowrap;
  }

  .hero__features strong span {
    font-size: 15px;
  }

  .hero__features small {
    font-size: 10px;
    line-height: 13px;
  }

  .hero__yen {
    width: 56px;
    height: 56px;
    align-self: center;
    font-size: 27px;
  }

  .hero__cta {
    width: 100%;
    max-width: 370px;
    height: auto;
    aspect-ratio: 370 / 90;
    margin-inline: auto;
    border-width: 1px;
    border-radius: 3.5px;
  }

  .hero__cta-badge {
    top: 16.667%;
    left: 4.054%;
    width: 16.255%;
    height: auto;
    aspect-ratio: 1;
    line-height: 14px;
    letter-spacing: 0.63px;
  }

  .hero__cta-badge-main,
  .hero__cta-badge-bottom {
    font-size: clamp(12px, 3.4vw, 12.588px);
    line-height: 1.1;
  }

  .hero__cta-badge-sub {
    font-size: clamp(9px, 2.65vw, 9.791px);
    line-height: 1.1;
  }

  .hero__cta-text {
    top: 16.667%;
    left: 23.509%;
    width: 68.108%;
    height: 66.667%;
  }

  .hero__cta-lead {
    font-size: clamp(14px, 4.1vw, 15.386px);
    line-height: 1.5;
  }

  .hero__cta-main {
    font-size: clamp(20px, 6.1vw, 23px);
    line-height: 1.5;
  }

  .hero__cta-arrow {
    top: 43.333%;
    left: auto;
    right: 3.8%;
    width: 2.079%;
    height: auto;
    aspect-ratio: 7.693 / 12.588;
  }

  .hero__cta-arrow::before {
    width: 100%;
    height: 100%;
  }

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

  .hero__content,
  .feature-strip,
  .problem-card,
  .solution-card,
  .cta-primary__inner,
  .cta-primary__features,
  .cta-primary__feature,
  .cta-primary__button,
  .flow-card,
  .specialty-card,
  .specialty__note,
  .proof-metric,
  .proof-case,
  .proof-voice,
  .offer-card,
  .offer-assurance,
  .offer-assurance__list,
  .contact-form {
    min-width: 0;
    max-width: 100%;
  }

  .problem__inner {
    width: min(100% - 20px, 390px);
  }

  .problem__heading {
    gap: 20px;
    margin-bottom: 32px;
  }

  .problem__heading .section-heading__label {
    margin-bottom: -8px;
    white-space: normal;
  }

  .problem__heading h2 {
    max-width: 100%;
  }

  .problem__heading > p:not(.section-heading__label) {
    max-width: 100%;
    font-size: 15px;
    line-height: 24px;
  }

  .problem__heading > p:not(.section-heading__label) br,
  .problem-card p br {
    display: none;
  }

  .problem__cards {
    grid-template-columns: minmax(0, 300px);
    justify-content: center;
    gap: 20px;
  }

  .problem-card {
    width: 100%;
    min-height: 204px;
  }

  .solution__inner {
    width: min(100% - 20px, 390px);
  }

  .solution__heading {
    gap: 20px;
    margin-bottom: 32px;
  }

  .solution__heading .section-heading__label {
    margin-bottom: -8px;
  }

  .solution__heading h2 {
    max-width: 100%;
  }

  .solution__heading-break {
    display: block;
  }

  .solution__heading > p:not(.section-heading__label) {
    max-width: 100%;
    font-size: 15px;
    line-height: 24px;
  }

  .solution__heading > p:not(.section-heading__label) br {
    display: none;
  }

  .solution__cards {
    grid-template-columns: minmax(0, 350px);
    gap: 20px;
    width: 100%;
  }

  .solution-card {
    width: 100%;
    min-height: 296px;
  }

  .solution__message {
    margin-top: 28px;
    font-size: 20px;
    line-height: 30px;
  }

  .solution__message::after {
    width: 300px;
  }

  .cta-section__sub {
    font-size: 16px;
  }

  .cta-section--primary {
    min-height: 530px;
    padding: 43px 0 46px;
    border: 1px solid var(--color-black);
    background-image: image-set(
      url("../images/cta-bg-sp.webp") type("image/webp"),
      url("../images/cta-bg-sp.png") type("image/png")
    );
    background-position: 59.6% top;
    background-size: auto 103.92%;
  }

  .cta-primary__inner {
    width: min(100% - 20px, 370px);
    min-height: 441px;
  }

  .cta-primary__sub {
    gap: 13px;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 22px;
  }

  .cta-primary__sub::before,
  .cta-primary__sub::after {
    width: 17px;
    height: 4px;
  }

  .cta-primary__title {
    margin: 3px 0 24px;
    font-size: 26px;
    line-height: 40px;
    max-width: 100%;
  }

  .cta-primary__lead {
    max-width: 100%;
    font-size: 18px;
    line-height: 27px;
  }

  .cta-primary__lead-break,
  .cta-primary__lead-break-sp {
    display: block;
  }

  .cta-primary__lead span {
    display: inline;
  }

  .cta-primary__features {
    width: 100%;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 29px;
    padding: 0;
    gap: 10px;
  }

  .cta-primary__feature {
    display: flex;
    min-width: 0;
    width: calc((100% - 20px) / 3);
    flex-direction: column;
    gap: 3px;
    padding: 0 7px;
  }

  .cta-primary__feature:not(:last-child) {
    border-right-width: 1.4px;
  }

  .cta-primary__feature-icon,
  .cta-primary__yen {
    width: 56px;
    height: 56px;
  }

  .cta-primary__feature-icon img {
    max-width: 56px;
    max-height: 56px;
  }

  .cta-primary__feature:first-child .cta-primary__feature-icon img {
    max-width: 54px;
    max-height: 31px;
  }

  .cta-primary__yen::before {
    width: 43px;
    height: 43px;
    font-size: 27px;
  }

  .cta-primary__feature-text {
    width: 92px;
    gap: 3px;
    text-align: center;
  }

  .cta-primary__feature-text strong {
    font-size: 13px;
    line-height: 21px;
  }

  .cta-primary__feature-text strong span {
    font-size: 20px;
    line-height: 21px;
  }

  .cta-primary__feature-text small {
    font-size: 10px;
    line-height: 13px;
  }

  .cta-primary__button {
    width: 100%;
    max-width: 370px;
    height: 90px;
    border-radius: 3.5px;
  }

  .cta-primary__button-badge {
    top: 15px;
    left: 15px;
    width: 60px;
    height: 60px;
    font-size: 13px;
    line-height: 14px;
    letter-spacing: 0.63px;
  }

  .cta-primary__button-badge strong {
    font-size: 13px;
  }

  .cta-primary__button-badge span:first-child {
    font-size: 10px;
  }

  .cta-primary__button-text {
    top: 14px;
    left: 88px;
  }

  .cta-primary__button-lead {
    font-size: 15px;
    line-height: 23px;
  }

  .cta-primary__button-main {
    font-size: 25px;
    line-height: 38px;
  }

  .cta-primary__button-arrow {
    top: 39px;
    right: 15px;
    left: auto;
    width: 8px;
    height: 13px;
  }

  .flow__inner {
    width: min(100% - 20px, 390px);
  }

  .flow__heading {
    gap: 16px;
    margin-bottom: 32px;
  }

  .flow__heading h2 {
    max-width: 100%;
    font-size: 22px;
    line-height: 36px;
  }

  .flow__heading h2 span {
    font-size: 30px;
    line-height: 40px;
  }

  .flow__heading-break-sp {
    display: block;
  }

  .flow__heading > p:not(.section-heading__label) {
    max-width: 100%;
    font-size: 15px;
    line-height: 24px;
  }

  .flow__heading > p:not(.section-heading__label) br,
  .flow-card p br {
    display: none;
  }

  .flow__cards {
    grid-template-columns: minmax(0, 300px);
    gap: 14px;
    width: 100%;
  }

  .flow-card {
    width: 100%;
    min-height: 204px;
  }

  .flow__arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .flow__message {
    margin-top: 32px;
    padding: 12px 16px;
    font-size: 22px;
    line-height: 34px;
  }

  .specialty__inner {
    width: min(100% - 20px, 390px);
  }

  .specialty__heading {
    gap: 20px;
    margin-bottom: 32px;
  }

  .specialty__heading .section-heading__label {
    margin-bottom: -8px;
  }

  .specialty__heading h2 {
    font-size: 26px;
    line-height: 38px;
  }

  .specialty__heading > p:not(.section-heading__label) {
    max-width: 100%;
    font-size: 15px;
    line-height: 24px;
  }

  .specialty__heading > p:not(.section-heading__label) br,
  .specialty-card p br,
  .specialty__note p br {
    display: none;
  }

  .specialty__cards {
    grid-template-columns: minmax(0, 350px);
    gap: 20px;
    width: 100%;
    margin-bottom: 32px;
  }

  .specialty-card {
    width: 100%;
    min-height: 238px;
  }

  .specialty__note {
    padding: 16px 10px;
    font-size: 15px;
  }

  .specialty__chips {
    flex-direction: column;
    align-items: center;
    margin-top: 24px;
  }

  .specialty__chips p {
    font-size: 15px;
  }

  .specialty__chips ul {
    justify-content: center;
  }

  .specialty__message {
    margin-top: 24px;
    font-size: 26px;
    line-height: 39px;
  }

  .proof__inner {
    width: min(100% - 20px, 390px);
  }

  .proof__heading {
    gap: 20px;
    margin-bottom: 32px;
  }

  .proof__heading .section-heading__label {
    margin-bottom: -8px;
  }

  .proof__heading h2 {
    max-width: 100%;
  }

  .proof__heading > p:not(.section-heading__label) {
    max-width: 100%;
    font-size: 15px;
    line-height: 24px;
  }

  .proof__heading > p:not(.section-heading__label) br,
  .proof-case h4 br,
  .proof-voice h4 br {
    display: none;
  }

  .proof__metrics {
    grid-template-columns: minmax(0, 300px);
    gap: 16px;
    width: 100%;
    margin-bottom: 40px;
  }

  .proof-metric {
    width: 100%;
  }

  .proof__block + .proof__block {
    margin-top: 40px;
  }

  .proof__cases,
  .proof__voices {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .proof-case {
    width: 100%;
    min-height: auto;
  }

  .proof-case__industry {
    left: 50%;
    transform: translateX(-50%);
  }

  .proof-case h4 {
    font-size: 20px;
    line-height: 30px;
  }

  .proof-case__table div {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .proof-case__table dt {
    font-size: 14px;
  }

  .proof-case__result dd {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-case__voice,
  .proof-voice__head {
    grid-template-columns: 64px 1fr;
  }

  .proof-case__voice img,
  .proof-voice img {
    width: 64px;
    height: 64px;
  }

  .proof__voices {
    width: 100%;
  }

  .offer__inner {
    width: min(100% - 20px, 390px);
  }

  .offer__heading {
    gap: 16px;
    margin-bottom: 32px;
  }

  .offer__heading h2 {
    max-width: 100%;
    font-size: 26px;
    line-height: 38px;
  }

  .offer__heading > p:not(.section-heading__label) {
    max-width: 100%;
    font-size: 15px;
    line-height: 24px;
  }

  .offer__heading > p:not(.section-heading__label) br {
    display: none;
  }

  .offer-card {
    width: 100%;
  }

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

  .offer-card__list li {
    grid-template-columns: 40px minmax(0, 1fr);
    justify-content: stretch;
    padding: 12px 16px;
    font-size: 15px;
  }

  .offer-assurance {
    margin-top: 40px;
  }

  .offer-assurance__label {
    gap: 13px;
    font-size: 18px;
    line-height: 28px;
  }

  .offer-assurance__label::before,
  .offer-assurance__label::after {
    width: 18px;
  }

  .offer-assurance__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    padding: 18px 0;
    gap: 0;
  }

  .offer-assurance__list li {
    position: relative;
    grid-template-columns: 56px minmax(0, 1fr);
    width: 100%;
    min-height: 72px;
    padding: 10px 8px;
  }

  .offer-assurance__list li:not(:last-child) {
    border-right: 0;
    border-bottom: 0;
  }

  .offer-assurance__list li:nth-child(odd) {
    border-right: 0;
  }

  .offer-assurance__list li:nth-child(odd)::after {
    position: absolute;
    top: 12px;
    right: 0;
    bottom: 12px;
    width: 1px;
    background: var(--color-border);
    content: "";
  }

  .offer-assurance__icon,
  .offer-assurance__yen {
    width: 56px;
    height: 64px;
  }

  .offer-assurance__icon img {
    max-width: 48px;
    max-height: 56px;
  }

  .offer-assurance__yen::before {
    width: 46px;
    height: 46px;
    font-size: 28px;
  }

  .contact {
    overflow-x: clip;
    padding: 54px 0 28px;
  }

  .contact::before {
    inset: 0 0 auto;
    width: 100%;
    aspect-ratio: 3840 / 1226;
    background:
      image-set(url("../images/contact-section-bg.webp") type("image/webp"), url("../images/contact-section-bg.png") type("image/png")) center top / 100% auto no-repeat;
  }

  .contact__inner {
    width: min(100% - 20px, 390px);
  }

  .contact__heading {
    gap: 25px;
    margin-bottom: 24px;
  }

  .contact__heading .section-heading__label {
    margin-bottom: -18px;
  }

  .contact__heading h2 {
    font-size: 27px;
    line-height: 1.48;
  }

  .contact__heading > p:not(.section-heading__label) {
    font-size: 15px;
    line-height: 25px;
    text-align: left;
  }

  .contact__time {
    max-width: 100%;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 27px;
  }

  .contact__time::before,
  .contact__time::after {
    width: 18px;
    height: 4px;
    flex-basis: 18px;
  }

  .contact-form {
    width: 100%;
    gap: 17px;
    padding: 32px 16px 34px;
  }

  .contact-form__status,
  .contact-form__notice {
    margin-bottom: 20px;
    padding: 24px 20px;
  }

  .contact-form__status-title {
    font-size: 20px;
  }

  .contact-form__status-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-form__fieldset {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 10px;
  }

  .contact-form span,
  .contact-form legend,
  .contact-form__privacy a {
    font-size: 16px;
    line-height: 24px;
  }

  .contact-form__label,
  .contact-form__fieldset legend {
    gap: 8px;
  }

  .contact-form b {
    height: 23px;
    padding-inline: 9px;
    font-size: 13px;
  }

  .contact-form__fieldset label {
    gap: 6px;
    font-size: 15px;
    line-height: 24px;
    white-space: normal;
  }

  .contact-form__privacy {
    text-align: center;
  }

  .contact-form__privacy-label {
    gap: 6px;
  }

  .contact-form__privacy-label span,
  .contact-form__privacy a {
    font-size: clamp(12px, 3.45vw, 16px);
    line-height: 1.5;
  }

  .contact-form__status-list dt,
  .contact-form__status-list dd,
  .contact-form__notice,
  .contact-form__status-note,
  .contact-form__error {
    font-size: 14px;
  }

  .contact-form__submit {
    width: 100%;
  }

  .thanks-main {
    min-height: auto;
    padding: 110px 10px 60px;
  }

  .thanks-panel {
    width: min(100%, 390px);
    gap: 18px;
    padding: 36px 18px;
  }

  .thanks-panel h1 {
    font-size: 30px;
    line-height: 1.45;
  }

  .thanks-panel p {
    font-size: 15px;
    line-height: 1.75;
  }

  .thanks-panel__button {
    width: 100%;
    min-height: 52px;
    padding-inline: 24px;
    font-size: 16px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: center;
    text-align: center;
  }

  .site-footer__brand {
    display: grid;
    gap: 16px;
    justify-items: center;
  }

  .site-footer__logo {
    justify-content: center;
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.85);
  }

  .site-footer__logo-main {
    font-size: 60px;
  }

  .site-footer__tagline {
    padding: 0;
    border-left: 0;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
  }

  .site-footer__meta,
  .site-footer__links {
    justify-items: center;
    justify-content: center;
  }

  .site-footer__copy {
    text-align: center;
  }

  .legal-main {
    padding: 110px 0 60px;
  }

  .legal-main__container,
  .legal-main__container--narrow {
    width: min(100% - 20px, 390px);
  }

  .legal-sheet {
    gap: 20px;
    padding: 30px 20px;
  }

  .legal-sheet h1 {
    font-size: 28px;
    line-height: 1.45;
  }

  .legal-sheet > p,
  .legal-section p,
  .legal-section li,
  .legal-contact {
    font-size: 14px;
    line-height: 1.8;
  }

  .legal-sections {
    gap: 24px;
  }

  .legal-section {
    gap: 12px;
  }

  .legal-section h2 {
    font-size: 18px;
    line-height: 1.5;
  }
}
