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

:root {
  /* Class names follow Block__Element--Modifier; short design variants may use block_element-variant, e.g. about_itemTitle-yellow. */
  --green: #0d833a;
  --green-dark: #188747;
  --green-bright: #06c755;
  --cream: #f9dd8e;
  --ink: #0b0b10;
  --white: #fff;
  --surface-pale: #f9fafa;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  background: #555;
  color: #111;
  font-family:
    -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic",
    Meiryo, sans-serif;
  font-weight: 700;
  line-height: 1.7;
}

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

button {
  font: inherit;
}

.lp {
  width: min(100%, 393px);
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 28px rgb(0 0 0 / 18%);
}

.hero {
  position: relative;
  min-height: 717px;
  padding: 20px 25px 16px;
  background: #fff;
  .cta-button .pc-only {
    display: none;
  }
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  aspect-ratio: 393 / 134;
  background: url("../images/hero-sky.png") top / 100% 100% no-repeat;
  pointer-events: none;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 229px;
  left: 0;
  z-index: 1;
  height: 190px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  content: "";
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero__copy::before {
  position: absolute;
  top: 0;
  left: -70px;
  z-index: -1;
  width: 200px;
  height: 263px;
  background: #fff;
  opacity: 0.8;
  filter: blur(42px);
  content: "";
  pointer-events: none;
}

.eyebrow {
  position: relative;
  display: inline-block;
  margin: 0 0 28px;
  color: var(--green);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.24px;
  text-shadow:
    0 0 8px #fff,
    0 0 8px #fff,
    0 0 8px #fff,
    0 0 8px #fff;
  margin-top: -30px;
}

.eyebrow::after {
  position: absolute;
  top: calc(100% + 8px);
  right: 0px;
  width: 157px;
  height: 8px;
  background: url("../images/fv-label-line.svg") center / 100% 100% no-repeat;
  content: "";
}

.hero h1 {
  margin: 0;
  color: #282828;
  font-family: Inter, "Noto Sans JP", sans-serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 2.72px;
  text-shadow:
    0 0 8px #fff,
    0 0 8px #fff,
    0 0 8px #fff,
    0 0 8px #fff;
  white-space: nowrap;
}

.hero h1 span,
h2 span,
h3 span,
.check-list span {
  color: var(--green);
}

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

.hero__ideal {
  color: var(--green);
  font-family: Inter, "Noto Sans JP", sans-serif;
  font-size: 34px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 2.72px;
}

.hero h1 span.hero__ni {
  color: #282828;
  font-family: Inter, "Noto Sans JP", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 2.08px;
}

.hero__pc-text {
  display: none;
}

.hero h1 span.hero__mobile-break {
  color: #282828;
}

.hero h1 span.hero__pc-text {
  color: #282828;
}

.hero__photo {
  position: absolute;
  top: 70px;
  right: -110px;
  bottom: 228px;
  z-index: 0;
  width: 581px;
  max-width: none;
  height: 388px;
  object-fit: cover;
  object-position: center;
}

.hero-card {
  position: absolute;
  right: 20px;
  bottom: 13px;
  left: 20px;
  z-index: 3;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.check-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 54px;
  padding: 14px 0 14px 40px;
  border-bottom: 1px solid #ebebeb;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.64px;
}

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

.check-list li::before {
  position: absolute;
  top: 15px;
  left: 0;
  width: 22px;
  height: 22px;
  background: url("../images/icon-check-pc.svg") center / contain no-repeat;
  content: "";
}

.check-list--large li {
  font-size: 16px;
}

.check-list--large span {
  font-size: 18px;
  letter-spacing: 0.72px;
}

.hero-card .check-list {
  padding: 5px 20px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 4px 16px rgb(0 0 0 / 18%);
}

.hero-card .check-list li {
  min-height: 56px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 16px;
}

.hero-card .check-list li::before {
  top: 16px;
}

.hero-card__cta-sp {
  min-height: 69px;
  margin-top: 22px;
}

.cta-button {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 61px;
  margin-top: 17px;
  padding: 20px 42px 14px 18px;
  border-radius: 6px;
  background: var(--green-dark);
  color: #fff;
  box-shadow: 0 6px 12px rgb(0 0 0 / 20%);
}

.cta-button img:first-child {
  flex: 0 0 auto;
  width: 42px;
  height: 40px;
  margin-right: 16px;
}

.cta-button strong {
  flex: 1;
  display: block;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 1.76px;
  text-align: center;
}

.cta-button__strong-sm {
  font-size: 18px;
  letter-spacing: 1.44px;
}

.cta-button__label {
  position: absolute;
  top: 6px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 2px 8px;
  border-radius: 47px;
  background: var(--cream);
  color: var(--green);
  font-size: 10px;
  line-height: 1.5;
  transform: translateX(-50%);
}

.cta-button__arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 9px;
  height: 12px;
  transform: translateY(-50%);
}

/* PCボタンはモバイルでは非表示（.cta-buttonより後に記述して優先度を確保） */
.hero-card__cta-pc {
  display: none;
}

.support-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 10px 0 0;
  color: #4a4a4a;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 600;
}

.support-note img {
  width: 16px;
  height: 16px;
}

.section {
  padding: 45px 17px;
}

.section--white {
  background: #fff;
}

.section--pale {
  background: #f9fafa;
}

h2 {
  margin: 0 0 25px;
  text-align: center;
  font-size: 24px;
  line-height: 1.55;
  letter-spacing: 0;
}

h2 small {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.cars {
  /* スライダーを画面端まで広げるため、共通 .section の左右17pxを打ち消す */
  padding-right: 0;
  padding-left: 0;
  padding-top: 45px;
  padding-bottom: 33px;
}

.cars h2 {
  position: relative;
}

.cars h2 img:first-of-type {
  position: absolute;
  top: 40px;
  left: 20px;
}

.cars h2 img:last-of-type {
  position: absolute;
  top: 40px;
  right: 20px;
}

.cars h2 .h2-text {
  color: var(--ink);
}

.cars h2 .cars-title {
  color: var(--ink);
}

.cars h2 .h2-text span {
  background: linear-gradient(transparent 64%, #fff36a 0);
}

.car-swiper {
  margin: 0;
  padding: 24px 0 32px;
  /* SP: スライダー全体を少し右へ寄せる（はみ出しは .lp がクリップ） */
  transform: translateX(11px);
}

/* Swiper本体の .swiper{overflow:clip} が後勝ちでカード上下の影を切るため、
   クラス2つ分の詳細度で visible を確実に上書きする。
   横方向のはみ出しは親 .lp(overflow:hidden) がスライダーとしてクリップする。 */
.car-swiper.swiper {
  overflow: visible;
}

.car-card {
  width: 121px;
  height: 159px;
  padding: 10px 7px 9px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 4px 28px 0 rgba(0, 0, 0, 0.06);
  text-align: center;
}

.car-card__image {
  width: 114px;
  height: 114px;
  aspect-ratio: 1.55;
  margin-bottom: 6px;
  margin-inline: auto;
  background: center / contain no-repeat;
}

.car-card__image--n-box {
  background-image: url("../images/n-box.webp");
}
.car-card__image--prius {
  background-image: url("../images/prius.webp");
}
.car-card__image--aqua {
  background-image: url("../images/aqua.webp");
}
.car-card__image--tanto {
  background-image: url("../images/tanto.webp");
}
.car-card__image--hustler {
  background-image: url("../images/hustler.webp");
}
.car-card__image--spacia {
  background-image: url("../images/spacia.webp");
}
.car-card__image--alphard {
  background-image: url("../images/alphard.webp");
}
.car-card__image--wagon-r {
  background-image: url("../images/wagon-r.webp");
}
.car-card__image--raize {
  background-image: url("../images/raize.webp");
}
.car-card__image--voxy {
  background-image: url("../images/voxy.webp");
}
.car-card__image--note {
  background-image: url("../images/note.webp");
}

.car-card h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
  transform: translateY(-100%);
}

.car-card p {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.3;
  transform: translateY(-100%); /* 上に自身の高さ分移動 */
}

.car-card p span {
  display: inline-block;
  padding: 1px 4px;
  border-radius: 3px;
  background: #178441;
  color: #fff;
  font-weight: 400;
  font-size: 12px;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}

.cars .slider-controls {
  position: relative;
  z-index: 3;
  display: flex;
}

.car-swiper-prev,
.car-swiper-next {
  display: block;
  cursor: pointer;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  /* keep the 30px icon but expand the hit area to >=44px (WCAG target size) */
  box-sizing: content-box;
  padding: 7px;
  /* rendered as <button> for keyboard access — strip the native chrome */
  border: 0;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
}

.car-swiper-prev img,
.car-swiper-next img,
.voice-swiper-prev img,
.voice-swiper-next img {
  display: block;
  width: 100%;
  height: 100%;
}

.car-swiper-prev.swiper-button-disabled,
.car-swiper-next.swiper-button-disabled,
.voice-swiper-prev.swiper-button-disabled,
.voice-swiper-next.swiper-button-disabled {
  opacity: 1;
  pointer-events: auto;
}

.voice .slider-controls {
  /* SP は Swiper カルーセルにするため操作UIを表示（PC は @media で非表示） */
  display: flex;
}

.voice-swiper-prev,
.voice-swiper-next {
  display: block;
  flex-shrink: 0;
  cursor: pointer;
  width: 30px;
  height: 30px;
  box-sizing: content-box;
  padding: 7px;
  border: 0;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
}

.slider-controls .car-swiper-pagination,
.slider-controls .voice-swiper-pagination {
  position: static;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.slider-controls .car-swiper-pagination.swiper-pagination-bullets,
.slider-controls .voice-swiper-pagination.swiper-pagination-bullets {
  width: auto;
}

.voice-custom-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.voice-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d5d5d5;
  transition: background 0.2s;
}

.voice-dot--active {
  background: #55575d;
}

.car-swiper-pagination .swiper-pagination-bullet,
.voice-swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: #d5d5d5;
  opacity: 1;
}

.car-swiper-pagination .swiper-pagination-bullet-active,
.voice-swiper-pagination .swiper-pagination-bullet-active {
  background: #55575d;
}

.caption {
  margin: 13px 0 0;
  color: var(--ink);
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  word-break: break-word;
  opacity: 0.7;
}

.worries {
  min-height: 516px;
  padding: 32px 16px;
  background: var(--surface-pale);
}

.worries h2 {
  position: relative;
  margin-bottom: 32px;
  font-size: 20px;
  line-height: 1.6;
}

.worries h2 span {
  position: relative;
  font-size: 22px;
  text-emphasis: filled dot var(--green);
  text-emphasis-position: over;
}

.worries h2 span::before {
  display: none;
  content: none;
}

.worries h2::before,
.worries h2::after {
  display: none;
}

.worry-list {
  display: grid;
  gap: 6px;
}

.worry-card {
  position: relative;
  height: 92px;
  overflow: hidden;
  padding: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 28px rgb(0 0 0 / 6%);
}

.worry-card--reverse {
  text-align: left;
}

.worry-card p {
  position: absolute;
  top: 50%;
  left: 108px;
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.45;
  white-space: nowrap;
  transform: translateY(-50%);
}

.worry-card p span {
  color: var(--green);
}

.worry-card--reverse p {
  left: 28px;
}

.worry-card__person {
  position: absolute;
  bottom: -16px;
  width: 56px;
  height: 96px;
  pointer-events: none;
}

.worry-card__vector--left {
  top: 15px;
  bottom: auto;
  left: 70px;
  width: 13px;
  height: 13px;
  transform: rotate(11.336deg);
}

.worry-card__vector--right {
  top: 15px;
  bottom: auto;
  right: 70px;
  left: auto;
  width: 13px;
  height: 13px;
  transform: rotate(-11.336deg);
}

.worry-card__person--left {
  left: 20px;
}

.worry-card__person--right {
  right: 21px;
}
.solution-banner {
  position: relative;
  height: 195px;
  padding: 67px 24px 0;
  background: linear-gradient(143deg, #f8fffc 0%, #effcf6 100%);
  clip-path: polygon(0 0, 100% 0, 100% 143px, 50% 100%, 0 143px);
  filter: drop-shadow(0 100px 60px rgb(0 0 0 / 40%));
  text-align: center;
}

.solution-banner::before {
  position: absolute;
  top: 39px;
  left: 50%;
  width: 134px;
  height: 35px;
  background: url("../images/worries-h2-deco.svg") center / contain no-repeat;
  content: "";
  transform: translateX(-50%);
}

.solution-banner__lead {
  display: block;
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink);
  font-family: Inter, "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.6;
}

.solution-banner__lead::before,
.solution-banner__lead::after {
  position: absolute;
  top: -56px;
  height: 70px;
  content: "";
}

.solution-banner__lead::before {
  width: 57px;
  left: -37px;
  background: url("../images/dots-deco.svg") center / contain no-repeat;
}

.solution-banner__lead::after {
  width: 64px;
  background: url("../images/dots-deco-right.svg") center / contain no-repeat;
  right: -30px;
}

.solution-banner h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink);
  font-family: Inter, "Noto Sans JP", sans-serif;
  font-size: 0;
  line-height: 1.6;
  font-weight: 900;
}

.solution-banner h2 span,
.solution-banner__brand {
  font-size: 20px;
}

.solution-banner__brand {
  font-family: Inter, "Noto Sans JP", sans-serif;
  font-weight: 900;
  color: var(--ink);
}

.solution-banner h2 small {
  display: inline;
  font-size: 18px;
  font-family: Inter, "Noto Sans JP", sans-serif;
  font-weight: 900;
}

.solution-banner__keyword {
  line-height: 160%;
  letter-spacing: 0.8px;
}

.loan {
  padding-top: 58px;
  padding-bottom: 40px;
}

.loan h2 {
  position: relative;
  margin-bottom: 70px;
}

.loan h2 span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
  line-height: normal;
}

.loan h2 span:nth-child(1),
.loan h2 span:nth-child(4) {
  color: var(--ink);
  font-size: 20px;
  letter-spacing: 0.8px;
}

.loan h2 span:nth-child(2) {
  color: var(--ink);
  font-size: 18px;
  letter-spacing: 0.72px;
}

.loan h2 span:nth-child(3) {
  color: var(--green);
  font-size: 28px;
  letter-spacing: 1.12px;
}

.loan h2::after {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: 186px;
  height: 11px;
  background: url("../images/loan-h2-deco.svg") center / contain no-repeat;
  transform: translateX(-50%);
  content: "";
}

.loan-card {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 34px;
  padding: 20px 20px 24px;
  border: 1px solid #e3e3e3;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 4px 12px rgb(0 0 0 / 13%);
}

.loan-card--own {
  border-color: #d79b26;
  box-shadow: 2.34px 2.34px 8.26px 0 rgba(0, 0, 0, 0.2);
}

.loan-arrow {
  display: flex;
  justify-content: center;
  margin-top: 13px;
}

.loan-arrow + .loan-card {
  margin-top: 21px;
}

.loan-card .tag {
  position: absolute;
  top: -14px;
  left: 50%;
  margin: 0;
  padding: 3px 24px;
  border-radius: 999px;
  background: #45484d;
  color: #fff;
  font-size: 12px;
  transform: translateX(-50%);
}

.loan-card--own .tag {
  background: #a37a25;
  min-width: 185px;
  text-align: center;
}

.loan-card__icon {
  display: grid;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #f3f3f3;
  color: #444;
  font-size: 48px;
  font-weight: 500;
  place-items: center;
}

.loan-card--own .loan-card__icon {
  background: #fff7dd;
  color: #168641;
}

.loan-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.35;
}

.loan-card--normal h3 {
  background: linear-gradient(
    transparent calc(100% - 7px),
    #eee calc(100% - 7px)
  );
  background-size: 144px 100%;
  background-repeat: no-repeat;
}

.h3-sm {
  font-size: 18px;
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.36px;
}

.own-highlight {
  color: #168641;
  background: url("../images/Rectangle%2030.svg");
  background-size: 134px 7px;
  background-repeat: no-repeat;
  background-position: left calc(100% - 4px);
  padding-bottom: 7px;
  font-size: 22px;
}

.loan-card p:not(.tag) {
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
}

.loan-card__desc {
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 155%;
  letter-spacing: 0.24px;
}

.loan-card__desc-em {
  font-weight: 800;
}

.pc-only-br {
  display: none;
}

.loan-card__accent {
  color: #168641;
}

.consult {
  display: grid;
  grid-template-columns: 1fr 184px;
  align-items: start;
  min-height: 217px;
  padding: 29px 0 0 24px;
  background:
    linear-gradient(
      to right,
      #fff 0%,
      rgba(255, 255, 255, 0.85) 30%,
      rgba(255, 255, 255, 0) 80%
    ),
    url("../images/dame.webp") no-repeat 28% 30% / 150%,
    #fff;
}

.consult h2::before,
.consult h2::after {
  position: absolute;
  color: var(--ink);
  text-shadow:
    0 0 8px #fff,
    0 0 8px #fff,
    0 0 8px #fff,
    0 0 8px #fff,
    0 0 8px #fff;
  font-family: "Noto Sans JP";
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  letter-spacing: 0.44px;
  opacity: 0.2;
}

.consult h2::before {
  top: -14px;
  left: -25px;
  content: "『";
}

.consult h2::after {
  right: -25px;
  bottom: -5px;
  content: "』";
}

.consult h2 {
  position: relative;
  display: inline-block;
  color: black;
  text-shadow:
    0 0 8px #fff,
    0 0 8px #fff,
    0 0 8px #fff,
    0 0 8px #fff,
    0 0 8px #fff;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: 140%; /* 28px */
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.consult p {
  color: black;
  text-shadow:
    0 0 8px #fff,
    0 0 8px #fff,
    0 0 8px #fff,
    0 0 8px #fff,
    0 0 8px #fff;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: 150%; /* 24px */
  letter-spacing: 0.32px;
}

.cta-wrap {
  padding: 19px 17px 6px;
  background: #fff;
}

.cta-wrap .cta-button {
  margin: 0 auto;
  background: var(--green-dark);
}

.cta-wrap .cta-button .cta-button__label {
  color: var(--green-dark);
}

.reasons {
  padding-top: 36px;
  padding-bottom: 45px;
  background: #f9fafa;
}

.reasons h2 {
  margin-bottom: 22px;
}

.reasons h2::after {
  display: block;
  width: 50%;
  height: 20px;
  margin: 8px auto 0;
  background: url("../images/loan-h2-deco.svg") center / contain no-repeat;
  content: "";
}

.reasons-title {
  display: inline-flex;
  align-items: baseline;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 800;
  line-height: 48px;
}

.reasons-title__base {
  color: var(--ink);
  font-size: 34px;
  letter-spacing: 1.36px;
}

.reasons-title__num {
  color: var(--green);
  font-size: 56px;
  letter-spacing: 2.24px;
}

.reasons-title__tsu {
  color: var(--green);
  font-size: 32px;
  letter-spacing: 1.28px;
}

.reasons-title__no {
  color: var(--ink);
  font-size: 32px;
  letter-spacing: 1.28px;
}

.reasons-title__reason {
  color: var(--green);
  font-size: 38px;
  letter-spacing: 1.52px;
}

.reason-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 11px;
  align-items: center;
  min-height: 162px;
  margin-top: 8px;
  padding: 24px 19px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 4px 12px rgb(0 0 0 / 14%);
}

.reason-icon {
  display: grid;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #f0fff5;
  color: #218b48;
  font-size: 45px;
  place-items: center;
}

.reason-number,
.step-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--green);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.reason-number {
  padding: 2px 4px;
  font-size: 14px;
}

.step-label {
  width: 40px;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 6px 4px;
}

p.step-label span {
  color: #fff;
}

.step-label span:first-child {
  font-size: 10px;
}

.step-label span:last-child {
  font-size: 14px;
}

.reason-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
  width: fit-content;
  border-bottom: 0.5px solid var(--green);
  padding-bottom: 2px;
}

.reason-h3__stat {
  font-size: 28px;
}
.reason-h3__unit {
  font-size: 20px;
}
.reason-h3__word {
  color: var(--ink);
  font-size: 24px;
}
.reason-h3__word:nth-child(2) {
  font-size: 20px;
}
.reason-h3__keyword {
  font-size: 24px;
}
.reason-card h3 .reason-h3__small-no {
  color: var(--ink);
  font-size: 18px;
}

.flow-card h3 {
  position: relative;
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.56px;
  padding-bottom: 4px;
}

.flow-card h3 span {
  font-size: 28px;
}

.flow-card h3:has(span) {
  font-size: 20px;
}

.flow-card h3.flow-card__h3--sm {
  font-size: 18px;
}

.flow-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.5px;
  background: var(--green);
}

.flow-card__header {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 8px;
}

.reason-card p:last-child {
  margin: 12px 0 0;
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 155%;
  letter-spacing: 0.24px;
}

.flow-card p:last-child {
  margin: 0;
  font-size: 12px;
  line-height: 1.75;
}

.voice {
  overflow: hidden;
  /* カード部分を画面端まで広げるため、共通 .section の左右17pxを打ち消す */
  padding-right: 0;
  padding-left: 0;
  padding-top: 25px;
  padding-bottom: 34px;
}

.voice-swiper {
  max-width: 1440px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* SP: Swiperで横スワイプ。スライド固定幅＋次カードのピークでスワイプを示唆 */
.voice-swiper .swiper-slide {
  width: 280px;
  height: auto;
}

.voice h2 {
  margin-bottom: 4px;
}

.voice h2 span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
  line-height: 140%;
}

.voice h2 span:nth-child(odd) {
  color: var(--ink);
  font-size: 24px;
  letter-spacing: 0.96px;
}

.voice h2 span:nth-child(even) {
  color: var(--green);
  font-size: 28px;
  letter-spacing: 1.12px;
}

.lead {
  margin: 0 0 18px;
  text-align: center;
  font-size: 12px;
}

.voice-card {
  width: 100%;
  height: 100%;
  padding: 16px 13px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 14px rgb(0 0 0 / 6%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
}

.voice-card__title {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
}

.voice-card__photo {
  width: 100%;
  height: 120px;
  overflow: hidden;
  border-radius: 4px;
  flex-shrink: 0;
}

.voice-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transform: scale(1.6);
}

.voice-card__info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  width: 100%;
  margin-top: 0;
}

.voice-card__profile {
  display: flex;
  gap: 11px;
  align-items: center;
  margin-top: 0;
}

.voice-card__profile-icon {
  width: 20px;
  height: 24px;
  display: block;
  flex-shrink: 0;
}

.voice-card__profile-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink);
}

.voice-card__text {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.8;
  width: 100%;
}

.map-section {
  padding: 30px 17px 38px;
  background: #f9fafa;
}

.map-section h2 {
  margin: 0 0 8px;
  color: #12813d;
  text-align: left;
  font-size: 16px;
  line-height: 1.2;
}

.map-section h2 .map-heading-region {
  color: var(--green);
  font-family: "Noto Sans JP";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

.map-section h2 .map-heading-sub {
  font-size: 16px;
}

.map-section h2 .map-heading-line {
  font-size: 22px;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  isolation: isolate;
}

.map-section h2 .map-heading-line::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  z-index: -1;
  width: 108px;
  height: 6px;
  background: #ffef32;
}

.japan-map {
  position: relative;
  margin: -8px 0 0 auto;
  width: 326px;
  height: 351px;
  background-image: url("../images/japan-map.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.japan-map h2 {
  position: absolute;
  top: 50px;
  left: -30px;
}

.cta-wrap--white {
  padding-top: 18px;
  padding-bottom: 18px;
  background: #fff;
}

.cta-wrap--white .cta-button--primary {
  background: var(--green-dark);
}

.cta-wrap--white .cta-button--primary .cta-button__label {
  background: var(--cream);
  color: var(--green-dark);
}

.flow {
  padding-top: 42px;
  padding-bottom: 48px;
}

.flow h2 {
  position: relative;
  margin-bottom: 4px;
}

.flow h2::before,
.flow h2::after {
  position: absolute;
  top: 50%;
  width: 54px;
  height: 1px;
  background: #168641;
  content: "";
}

.flow h2::before {
  left: 24px;
}

.flow h2::after {
  right: 24px;
}

.flow__subtitle,
.flow__meta {
  margin: 0;
  text-align: center;
}

.flow__subtitle {
  font-size: 15px;
}

.flow__subtitle span {
  display: inline;
  color: var(--green);
  font-size: 18px;
}

.flow__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 20px;
  font-size: 11px;
}

.flow-card {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 119px;
  margin-top: 8px;
  padding: 17px 19px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 4px 12px rgb(0 0 0 / 14%);
}

.flow-icon {
  display: grid;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #effdf5;
  color: #168641;
  font-size: 16px;
  letter-spacing: 0;
  place-items: center;
}

.flow-card--delivery {
  position: relative;
  border: 1px solid #e9e1cb;
  background:
    linear-gradient(
      -31.4deg,
      rgba(255, 248, 218, 0.4) 5.89%,
      rgba(255, 253, 247, 0.4) 54.28%,
      rgba(255, 245, 210, 0.4) 102.66%
    ),
    linear-gradient(90deg, #fff 0%, #fff 100%);
  box-shadow: none;
}

.flow-card--delivery .step-label {
  background: #856b0d;
}

.flow-icon--delivery {
  background: linear-gradient(
    -59.5deg,
    #fff8da 5.89%,
    #fffdf7 54.28%,
    #fff5d2 102.66%
  );
  color: inherit;
}

.flow-icon--delivery img {
  width: 61px;
  height: auto;
}

.flow-card--delivery h3::after {
  background: #856b0d;
}

.delivery-desc-gold {
  color: #856b0d;
}

.flow-enjoy {
  position: absolute;
  top: 8px;
  right: 12px;
  margin: 0;
  font-family: "Homemade Apple", cursive;
  font-size: 12px;
  font-weight: 400;
  color: #856b0d;
  opacity: 0.8;
  line-height: 1.55;
  transform: rotate(-11.9deg);
  transform-origin: top right;
  pointer-events: none;
}

.flow-card p:not(.step-label) span:not(.delivery-desc-gold) {
  color: var(--green);
}

.staff-note {
  margin: 12px 0 0;
  text-align: center;
  font-size: 13px;
}

.staff-note__main {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 155%;
}

.staff-note__sub {
  color: var(--green);
  font-size: 13px;
}

.faq {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #f9f9f9;
}

.faq h2 span {
  display: block;
  margin-bottom: 2px;
  font-size: 24px;
}

details {
  margin-top: 7px;
  padding: 12px;
  border-radius: 4px;
  background: #fff;
}

summary {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
  list-style: none;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before {
  flex-shrink: 0;
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  content: "Q.";
}

summary::after {
  flex-shrink: 0;
  margin-left: auto;
  width: 32px;
  height: 32px;
  color: var(--green);
  font-size: 20px;
  font-weight: 300;
  line-height: 32px;
  text-align: center;
  content: "+";
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 8px 0 0;
  padding: 0;
  color: #212121;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
}

.privacy-page {
  background: #fff;
}

.privacy-policy {
  padding: 32px 16px 72px;
  background: #f9fafa;
  color: #0b0b10;
  font-family: "Noto Sans JP", sans-serif;
}

.privacy-policy__breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 56px;
  color: #4d4d52;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.privacy-policy__breadcrumb a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-policy__breadcrumb-sep {
  width: 4px;
  height: 7px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.privacy-policy h1 {
  margin: 0 0 32px;
  color: #0b0b10;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.4;
}

.privacy-policy p {
  margin: 0;
  color: #0b0b10;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0;
}

.privacy-policy__articles,
.privacy-policy__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-policy .privacy-policy__article-title {
  margin: 0;
  padding: 24px 0 16px;
  color: #0b0b10;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.55;
}

.privacy-policy__list {
  margin: 12px 0;
  counter-reset: privacy-list;
}

.privacy-policy__list li {
  display: flex;
  gap: 8px;
  padding: 4px 0;
  counter-increment: privacy-list;
}

.privacy-policy__list li::before {
  flex-shrink: 0;
  color: var(--green);
  font-weight: 600;
  line-height: 1.55;
  content: counter(privacy-list) ".";
}

.privacy-policy__list li p {
  flex: 1;
}

.privacy-policy__articles > li > p + p {
  margin-top: 8px;
}

.privacy-policy__sub-title {
  margin: 20px 0 8px;
  color: #0b0b10;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.privacy-policy__list--disc {
  counter-reset: none;
}

.privacy-policy__list--disc li::before {
  content: "・";
}

.privacy-page .footer__dark {
  padding-bottom: 16px;
}

.footer {
  padding: 34px 12px 12px;
  background: #111;
  color: #fff;
}

.footer h2 {
  margin: 0 0 3px;
  color: #9b9b9b;
  text-align: left;
  font-size: 24px;
  line-height: 1;
}

.footer > p {
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 500;
}

.footer dl {
  margin: 0;
  font-weight: 500;
}

.footer dt {
  margin: 16px 0 6px;
  font-size: 14px;
}

.footer dd {
  margin: 0;
  padding: 9px 12px;
  background: #242424;
  color: #f6f6f6;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.footer__dark {
  margin: 29px -12px -12px;
  padding: 0 12px 102px;
  background: #103c19;
}

.footer__dark > .cta-button {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 1000;
  background: var(--green-bright);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.footer__dark > .cta-button .cta-button__label {
  background: #fff;
  color: var(--green-bright);
}

.footer__dark > .cta-button.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.cta-button {
  overflow: hidden;
}

.cta-button:before {
  background-color: #fff;
  content: "";
  position: absolute;
  animation: flash 3s ease-in-out infinite;
  height: 100%;
  left: 0;
  top: -180px;
  transition: .2s;
  width: 30px;
}

@keyframes flash {
  0% {
    opacity:0;
    transform:scale(0) rotate(45deg)
  }
  80% {
    opacity:.5;
    transform:scale(0) rotate(45deg)
  }
  81% {
    opacity:1;
    transform:scale(4) rotate(45deg)
  }
  to {
    opacity:0;
    transform:scale(50) rotate(45deg)
  }
}

.footer__dark > p {
  margin-bottom: 16px;
  margin-top: -7px;
  color: var(--white);
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  opacity: 0.6;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  padding: 12px 28px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.footer nav a {
  opacity: 0.8;
  font-weight: 500;
}

.cta-button--primary {
  width: 354px;
  height: 70px;
  margin: 0 auto;
  border-radius: 8px;
  background: var(--green-dark);
  box-shadow: 2.83px 2.83px 5px rgba(0, 0, 0, 0.2);
}

.cta-button--primary strong {
  position: absolute;
  bottom: 9px;
  left: 0;
  right: 0;
}

.cta-button--primary .cta-button__label {
  top: 7px;
  padding: 2px 8px;
  background: var(--cream);
  color: var(--green-dark);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.consult-cta .cta-button--primary {
  background: var(--green-dark);
}

.consult-cta .cta-button--primary .cta-button__label {
  background: var(--cream);
  color: var(--green-dark);
}

/* SP ヒーロー用ボタン：cta-button / cta-button--primary より後に記述して優先度を確保 */
.hero-card__cta-sp {
  margin-top: 28px;
  background: var(--green-dark);
}

/* --------------------------------PC-------------------------------- */
/* --------------------------------PC-------------------------------- */
/* --------------------------------PC-------------------------------- */

@media (min-width: 900px) {
  body {
    background: #fff;
  }

  :root {
    --pc-edge: max(60px, calc((100vw - 1440px) / 2 + 60px));
    --pc-image-left: min(287px, 19.93vw);
  }

  .lp {
    width: 100%;
    max-width: none;
    background: #fff;
    box-shadow: none;
  }

  .hero {
    min-height: min(980px, 68.06vw);
    padding: 0;
    overflow: hidden;
    background: #fff;
  }

  .hero__inner {
    position: relative;
    max-width: 1800px;
    min-height: inherit;
    margin: 0 auto;
  }

  .hero::before {
    display: none;
  }

  /* 下端の白フェードは SP のみ。PC では無効化 */
  .hero::after {
    content: none;
  }

  .hero__copy {
    position: absolute;
    top: min(50px, 3.47vw);
    left: 60px;
    z-index: 3;
  }

  .hero__copy::before {
    display: none;
  }

  .eyebrow {
    margin-bottom: min(40px, 2.78vw);
    font-size: min(22px, 1.53vw);
    font-weight: 600;
    line-height: normal;
    letter-spacing: min(0.44px, 0.031vw);
  }

  .eyebrow::after {
    top: calc(100% + min(7px, 0.49vw));
    right: 0;
    width: min(289px, 20.07vw);
    height: min(10px, 0.69vw);
  }

  .hero h1 {
    font-size: 70px;
    line-height: 1.4;
    letter-spacing: clamp(4px, 0.39vw, 5.6px);
  }

  .hero h1 span {
    font-size: inherit;
  }

  .hero__ideal,
  .hero__ni,
  .hero__pc-text {
    font-size: inherit;
    line-height: 1.4;
    letter-spacing: clamp(4px, 0.39vw, 5.6px);
  }

  .hero__ni,
  .hero__pc-text {
    color: #282828;
  }

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

  .hero__mobile-break {
    display: none;
  }

  .hero__pc-text {
    display: inline;
  }

  .hero__photo {
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    width: min(1303px, 90.49vw);
    height: min(800px, 60.35vw);
    object-position: center;
  }

  .hero-card {
    top: min(420px, 29.17vw);
    right: auto;
    bottom: auto;
    left: 60px;
    width: 420px;
    padding: min(24px, 1.67vw) min(28px, 1.94vw);
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 2px 12px rgb(0 0 0 / 10%);
  }

  .hero-card::after {
    display: none;
  }

  .hero-card .check-list {
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-card .check-list li {
    min-height: auto;
    padding: 0 0 min(19px, 1.32vw) min(34px, 2.36vw);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.64px;
  }

  .hero-card .check-list li + li {
    padding-top: min(20px, 1.39vw);
  }

  .hero-card .check-list li:last-child {
    padding-bottom: 0;
  }

  .hero-card .check-list li::before {
    top: min(3px, 0.21vw);
    width: min(22px, 1.53vw);
    height: min(22px, 1.53vw);
  }

  .hero-card .check-list li + li::before {
    top: min(23px, 1.6vw);
  }

  .hero-card .check-list span {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.88px;
  }

  .hero-card .check-list li:last-child span {
    font-size: 23px;
    letter-spacing: 0.92px;
  }

  .hero-card .support-note {
    display: none;
  }

  /* PC用ボタン: SPボタンを隠してPC専用を表示（.cta-button--primaryより詳細度を高くして上書き） */
  .hero-card .hero-card__cta-sp {
    display: none;
  }

  /* PC用ボタン: hero__inner の中央下部に絶対配置 */
  .hero-card__cta-pc {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: min(592px, calc(100% - 120px));
    height: 80px;
    min-height: 80px;
    margin: 0;
  }

  .hero-card__cta-pc img:first-child {
    position: static;
    flex: 0 0 auto;
    width: 39px;
    height: 37px;
    margin: 0 16px 0 0;
  }

  .hero-card__cta-pc strong {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    font-size: 28px;
    line-height: normal;
    letter-spacing: 1.6px;
    text-align: center;
    transform: translateY(-50%);
  }

  .hero-card__cta-pc .cta-button__strong-sm {
    font-size: 22px;
    letter-spacing: 1.6px;
  }

  .hero-card__cta-pc .cta-button__label {
    top: -14px;
    left: 50%;
    padding: 2px 12px;
    font-size: 14px;
    line-height: normal;
    transform: translateX(-50%);
  }

  .hero-card__cta-pc .cta-button__arrow {
    top: 50%;
    right: 16px;
    width: 4px;
    height: 7px;
    transform: translateY(-50%);
  }

  .cars {
    padding: 12px 0 48px;
    overflow: hidden;
  }

  .cars h2 {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 14px;
    width: fit-content;
    margin: 0 auto 22px;
    color: var(--ink);
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 1.28px;
  }

  .cars h2 small {
    display: block;
    margin-bottom: 8px;
    font-size: 24px;
    line-height: normal;
    letter-spacing: 0.48px;
  }

  .cars h2 img:first-of-type,
  .cars h2 img:last-of-type {
    position: static;
    width: 12.5px;
    height: 28.5px;
    margin-bottom: 2px;
  }

  .cars h2 .h2-text {
    display: block;
    font-size: 32px;
    line-height: normal;
    letter-spacing: 0.72px;
  }

  .cars h2 .h2-text span {
    font-size: 32px;
    color: var(--green);
    background: linear-gradient(transparent 72%, #fff36a 0);
  }

  .car-swiper {
    width: 100%;
    margin: 0;
    padding: 24px 0 32px;
    /* カードの上下の影が切れないように visible（横は .lp がクリップ） */
    overflow: visible;
    transform: none;
  }

  .car-swiper .swiper-slide {
    width: 296px;
  }

  .car-card {
    width: 296px;
    height: 322px;
    padding: 20px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 28px rgb(0 0 0 / 6%);
    text-align: center;
  }

  .car-card__image {
    width: 306px;
    height: 246px;
    margin: 0 0 12px;
    background-size: 100%;
    margin-left: -20px;
  }

  .car-card h3 {
    display: inline-block;
    margin: 0;
    margin-right: 8px;
    color: var(--ink);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    white-space: nowrap;
    transform: translateY(0%);
  }

  .car-card p {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin: 4px 0 0;
    color: var(--ink);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    white-space: nowrap;
    transform: translateY(0%);
  }

  .car-card p span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    padding: 4px;
    border-radius: 4px;
    background: var(--green);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
  }

  .slider-controls {
    justify-content: center;
    gap: 58px;
    margin-top: 16px;
  }

  .cars .slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .car-swiper-prev,
  .car-swiper-next {
    display: block;
    width: 32px;
    height: 32px;
    opacity: 1;
    visibility: visible;
  }

  .slider-controls .car-swiper-pagination {
    order: 2;
  }

  .car-swiper-prev {
    order: 1;
  }

  .car-swiper-next {
    order: 3;
  }

  .car-swiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: #c8c8c8;
  }

  .car-swiper-pagination .swiper-pagination-bullet-active {
    background: #55575d;
  }

  .cars .caption {
    margin-top: 16px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.55;
    letter-spacing: 0.24px;
  }

  .worries {
    min-height: auto;
    padding: 72px 24px 68px;
    background: var(--surface-pale);
  }

  .worries h2 {
    margin-bottom: 52px;
    color: var(--ink);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 1.28px;
  }

  .worries h2 span {
    font-size: inherit;
    letter-spacing: inherit;
  }

  .worry-list {
    width: min(760px, 100%);
    margin: 0 auto;
    gap: 6px;
  }

  .worry-card {
    min-height: 92px;
    border-radius: 8px;
    box-shadow: 0 4px 28px rgb(0 0 0 / 6%);
  }

  .worry-card p,
  .worry-card--reverse p {
    top: 50%;
    left: 50%;
    width: max-content;
    max-width: calc(100% - 190px);
    color: var(--ink);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    transform: translate(-50%, -50%);
  }

  .worry-card p span {
    font-weight: 600;
  }

  .worry-card__person {
    bottom: 0;
    width: auto;
    height: auto;
    max-width: none;
  }

  .worry-card__person--left {
    left: 22px;
  }

  .worry-card__person--right {
    right: 10px;
    width: auto;
  }

  .solution-banner__lead,
  .solution-banner h2 span,
  .solution-banner__brand,
  .solution-banner h2 small {
    font-size: 32px;
  }

  .loan {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 36px minmax(0, 1fr);
    column-gap: 32px;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 72px clamp(48px, 10.35vw, 149px);
    background: #fff;
  }

  .loan h2 {
    grid-column: 1 / -1;
    margin: 0 0 58px;
    color: var(--ink);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 1.28px;
  }

  .loan h2 span {
    font-size: 32px;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 1.28px;
  }

  .loan h2 span:nth-child(1),
  .loan h2 span:nth-child(2),
  .loan h2 span:nth-child(4) {
    font-size: 32px;
    letter-spacing: 1.28px;
  }

  .loan h2 span:nth-child(3) {
    color: var(--green);
    font-size: 36px;
    letter-spacing: 1.44px;
  }

  .loan h2::after {
    top: calc(100% + 18px);
    width: 186px;
    height: 10px;
  }

  .loan::after {
    grid-column: 2;
    grid-row: 2;
    justify-self: center;
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 22px solid #e9e5e1;
    content: "";
  }

  .loan-card {
    display: flex;
    flex-direction: column;
    grid-row: 2;
    gap: 16px;
    align-items: center;
    align-self: stretch;
    min-height: 272px;
    margin: 13px 0 0;
    padding: 28px 10px 20px 12px;
    border: 0;
    border-radius: 4px;
    box-shadow: 2.34px 2.34px 4.13px rgb(0 0 0 / 20%);
  }

  .loan-arrow {
    display: none;
  }

  .loan-card--normal {
    grid-column: 1;
  }

  .loan-card--own {
    grid-column: 3;
    border: 1px solid #e0990e;
    background: #fdfcfa;
    box-shadow: 2.34px 2.34px 4.13px rgb(0 0 0 / 20%);
  }

  .loan-card .tag {
    top: -13px;
    min-width: 174px;
    padding: 4px 16px;
    border-radius: 16px;
    background: #424242;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    text-align: center;
  }

  .loan-card--own .tag {
    min-width: 210px;
    background: #a37e36;
  }

  .loan-card__icon {
    width: 104px;
    height: 104px;
    background: transparent;
  }

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

  .loan-card h3 {
    margin: 0;
    color: var(--ink);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.4px;
    text-align: center;
  }

  .loan-card h3 span {
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0.4px;
  }

  .loan-card--normal h3 {
    background-position: left calc(100% + 0px);
  }

  .loan-card--own h3 {
    line-height: 1;
  }

  .loan-card--own h3 .own-highlight {
    font-size: 22px;
    line-height: 1;
    letter-spacing: 0.4px;
  }

  .loan-card > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
  }

  .loan-card p:not(.tag) {
    color: var(--ink);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.61;
    letter-spacing: 0.28px;
    text-align: center;
  }

  .loan-card p:not(.tag) span {
    font-size: 14px;
    line-height: 1.61;
    letter-spacing: 0.28px;
  }

  .pc-only-br {
    display: inline;
  }

  .sp-only-br {
    display: none;
  }

  .loan-card__desc-em {
    display: block;
  }

  .consult {
    position: relative;
    display: block;
    max-width: 1440px;
    min-height: min(410px, 28.47vw);
    margin: 0 auto;
    padding: min(84px, 5.83vw) 0 0 min(205px, 14.24vw);
    overflow: hidden;
    background: #fff url("../images/dame.webp") no-repeat right
      max(-107px, -7.43vw) / min(936px, 65vw) auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 28px rgb(0 0 0 / 6%);
  }

  .consult::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: max(
      min(320px, 22.22vw),
      calc(100% - min(936px, 65vw) - min(80px, 5.56vw))
    );
    z-index: 0;
    width: min(403px, 27.99vw);
    background: linear-gradient(
      90deg,
      #fff 0%,
      rgb(255 255 255 / 82%) 34%,
      rgb(255 255 255 / 0%) 100%
    );
    content: "";
    pointer-events: none;
  }

  .consult > div {
    position: relative;
    z-index: 1;
    right: min(120px, 8.33vw);
  }

  .consult h2 {
    position: relative;
    width: fit-content;
    margin: 0 0 min(16px, 1.11vw);
    color: black;
    font-family: "Noto Sans JP", sans-serif;
    font-size: min(34px, 2.36vw);
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: 0;
    text-shadow: none;
  }

  .consult h2::before,
  .consult h2::after {
    position: absolute;
    top: max(-18px, -1.25vw);
    left: min(40px, 2.78vw);
    color: black;
    font-size: min(36px, 2.5vw);
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.72px;
    opacity: 0.4;
  }

  .consult h2::before {
    left: max(-50px, -3.47vw);
    content: "『";
  }

  .consult h2::after {
    top: min(10px, 0.69vw);
    right: max(-370px, -25.69vw);
    content: "』";
  }

  .consult p {
    margin: 0;
    color: black;
    font-family: "Noto Sans JP", sans-serif;
    font-size: min(20px, 1.39vw);
    font-weight: 900;
    line-height: 1.7;
    letter-spacing: 0;
    text-shadow: none;
    white-space: nowrap;
  }

  .consult p br {
    display: none;
  }

  .consult-cta {
    position: relative;
    z-index: 2;
    margin-top: max(-129px, -8.96vw);
  }

  .cta-wrap {
    display: flex;
    justify-content: center;
    padding: 32px 24px 40px;
    background: #fff;
  }

  .cta-wrap .cta-button,
  .cta-button--primary {
    display: flex;
    align-items: center;
    width: min(592px, calc(100vw - 48px));
    height: 80px;
    min-height: 61px;
    margin: 0 auto;
    padding: 20px 42px 14px 18px;
    border-radius: 8px;
    background: var(--green-dark);
    color: #fff;
    box-shadow: 2.83px 2.83px 5px rgba(0, 0, 0, 0.2);
  }

  .cta-button--primary img:first-child {
    position: static;
    flex: 0 0 auto;
    width: 39px;
    height: 37px;
    margin: 0 16px 0 0;
  }

  .cta-button--primary strong {
    position: absolute;
    flex: 1;
    display: block;
    top: auto;
    right: 0;
    bottom: 9px;
    left: 0;
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 1.6px;
    text-align: center;
    transform: none;
  }

  .cta-button--primary .cta-button__strong-sm {
    font-size: 22px;
    letter-spacing: 1.6px;
  }

  .cta-button--primary .cta-button__label {
    top: 9px;
    left: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 2px 12px;
    border-radius: 47px;
    background: var(--cream);
    color: var(--green-dark);
    font-size: 14px;
    font-weight: 800;
    line-height: normal;
    transform: translateX(-50%);
  }

  .cta-button--primary .cta-button__arrow {
    top: 50%;
    right: 16px;
    width: 4px;
    height: 7px;
    transform: translateY(-50%);
  }

  .cta-wrap--white .cta-button--primary {
    display: flex;
    align-items: center;
    padding: 20px 42px 14px 18px;
    background: var(--green-dark);
  }

  .cta-wrap--white .cta-button--primary img:first-child {
    position: static;
    flex: 0 0 auto;
    top: auto;
    left: auto;
    width: 39px;
    height: 37px;
    margin: 0 16px 0 0;
  }

  .cta-wrap--white .cta-button--primary strong {
    top: auto;
    bottom: 9px;
    font-size: 28px;
    letter-spacing: 1.6px;
    transform: none;
  }

  .cta-wrap--white .cta-button--primary .cta-button__strong-sm {
    font-size: 22px;
    letter-spacing: 1.6px;
  }

  .cta-wrap--white .cta-button--primary .cta-button__label {
    background: var(--cream);
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 800;
  }

  .cta-wrap--white .cta-button--primary .cta-button__arrow {
    width: 9px;
    height: 12px;
  }

  .consult-cta {
    background: transparent;
    margin-top: max(-230px, -15.97vw);
    margin-left: max(-800px, -55.56vw);
  }

  .cta-wrap.consult-cta .cta-button--primary {
    width: 455px;
    margin: 0;
  }

  .cta-wrap .cta-button--primary {
    display: flex;
    align-items: center;
    width: 592px;
    height: 80px;
    min-height: 80px;
    padding: 20px 42px 14px 18px;
    border-radius: 8px;
    background: var(--green-dark);
    box-shadow: 2.83px 2.83px 5px rgb(0 0 0 / 20%);
  }

  .cta-wrap .cta-button--primary img:first-child {
    position: static;
    flex: 0 0 auto;
    width: 39px;
    height: 37px;
    margin: 0 16px 0 0;
  }

  .cta-wrap .cta-button--primary strong {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 9px;
    left: 0;
    color: #fff;
    font-size: 28px;
    line-height: normal;
    letter-spacing: 1.6px;
    text-align: center;
    transform: none;
  }

  .cta-wrap .cta-button--primary .cta-button__strong-sm {
    font-size: 22px;
    letter-spacing: 1.6px;
  }

  .cta-wrap .cta-button--primary .cta-button__label {
    top: 9px;
    left: 50%;
    padding: 2px 12px;
    background: var(--cream);
    color: var(--green-dark);
    font-size: 14px;
    line-height: normal;
    transform: translateX(-50%);
  }

  .cta-wrap .cta-button--primary .cta-button__arrow {
    top: 50%;
    right: 16px;
    width: 4px;
    height: 7px;
    transform: translateY(-50%);
  }

  .reasons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px 6px;
    padding: 170px max(149px, calc((100vw - 1440px) / 2 + 149px));
    background: var(--surface-pale);
  }

  .reasons h2 {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--ink);
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 800;
    line-height: 1.4;
    text-align: center;
  }

  .reasons h2 small {
    margin: 0 0 4px;
    color: var(--ink);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
  }

  .reasons h2::after {
    width: 186px;
    height: 10px;
    margin-top: 12px;
  }

  .reasons-title {
    display: inline-flex;
    align-items: baseline;
    line-height: 48px;
  }

  .reasons-title__base {
    font-size: 34px;
    letter-spacing: 1.36px;
  }

  .reasons-title__num {
    font-size: 56px;
    letter-spacing: 2.24px;
  }

  .reasons-title__tsu,
  .reasons-title__no {
    font-size: 32px;
    letter-spacing: 1.28px;
  }

  .reasons-title__reason {
    font-size: 38px;
    letter-spacing: 1.52px;
  }

  .reason-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    min-height: 296px;
    margin: 0;
    padding: 20px 10px 20px 12px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 2.34px 2.34px 4.13px rgb(0 0 0 / 20%);
  }

  .reason-icon {
    position: relative;
    width: 104px;
    height: 104px;
    background: transparent;
    font-size: 0;
  }

  .reason-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .reason-card:nth-of-type(2) .reason-icon img {
    width: 100%;
    height: 100%;
  }

  .reason-card > div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .reason-card__head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 8px;
    border-bottom: 0.5px solid var(--green);
  }

  .reason-card h3 {
    margin: 0;
    padding-bottom: 0;
    border-bottom: none;
    color: var(--ink);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.4px;
    white-space: nowrap;
  }

  .reason-card h3 span {
    line-height: 1;
  }

  .reason-number {
    flex: 0 0 auto;
    width: 25px;
    height: 20px;
    margin: 0;
    padding: 2px 4px;
    border-radius: 4px;
    background: var(--green);
    font-size: 14px;
    line-height: 1;
  }

  .reason-card p:last-child {
    width: 100%;
    margin: 0;
    color: var(--ink);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
    letter-spacing: 0.28px;
    text-align: center;
  }

  .voice {
    padding: 12px 0 0;
    overflow: hidden;
    background: var(--surface-pale);
  }

  .voice h2 {
    margin: 0 0 16px;
    color: var(--ink);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.4;
    text-align: center;
    letter-spacing: 1.28px;
  }

  .voice h2 span {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 1.28px;
  }

  .voice h2 span:nth-child(1),
  .voice h2 span:nth-child(3) {
    font-size: 32px;
    letter-spacing: 1.28px;
  }

  .voice h2 span:nth-child(2),
  .voice h2 span:nth-child(4) {
    color: var(--green);
    font-size: 36px;
    letter-spacing: 1.44px;
  }

  .voice .lead {
    margin: 0 0 48px;
    color: var(--ink);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    text-align: center;
  }

  .voice-swiper {
    width: 100%;
    margin: 0;
    padding: 24px 0 32px;
    overflow: hidden;
  }

  .voice .slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 58px;
    margin-top: 16px;
  }

  .voice-card {
    width: 100%;
    padding: 20px 16px;
    gap: 12px;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgb(0 0 0 / 6%);
  }

  .voice-card__photo {
    height: 120px;
  }

  .voice-card__title {
    width: 100%;
    margin: 0;
    font-size: 14.36px;
    line-height: normal;
    text-align: left;
  }

  .voice-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transform: scale(1.6);
  }

  .voice-card__info {
    width: 100%;
    gap: 10px;
    margin-top: 0;
  }

  .voice-card__profile {
    gap: 8px;
    margin-top: 0;
  }

  .voice-card__profile-icon {
    width: 18px;
    height: 22px;
  }

  .voice-card__profile-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.28px;
  }

  .voice-card__text {
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: 0.28px;
  }

  .voice-swiper-prev,
  .voice-swiper-next {
    display: block;
    width: 32px;
    height: 32px;
    opacity: 1;
    visibility: visible;
  }

  .voice-swiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: #c8c8c8;
  }

  .voice-swiper-pagination .swiper-pagination-bullet-active {
    background: #55575d;
  }

  .map-section {
    padding: 48px clamp(48px, 10.35vw, 149px) 40px;
    background: var(--surface-pale);
  }

  .japan-map {
    width: min(742px, 100%);
    height: 352px;
    margin: 0 auto;
    background-position: right center;
    background-size: 373px 352px;
  }

  .japan-map h2 {
    top: 82px;
    left: 0;
    margin: 0;
    color: var(--green);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    text-align: left;
  }

  .map-section h2 .map-heading-region {
    color: var(--green);
    font-size: 32px;
    line-height: 1.4;
  }

  .map-section h2 .map-heading-sub {
    color: var(--green);
    font-size: 28px;
    line-height: 1.4;
  }

  .map-section h2 .map-heading-line {
    padding-bottom: 0;
    font-size: 32px;
  }

  .map-section h2 .map-heading-line::after {
    bottom: -2px;
    width: 160px;
    height: 10px;
  }

  .flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 72px 16px;
    background: var(--surface-pale);
  }

  .flow h2 {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0;
    color: var(--ink);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 1.28px;
    text-align: center;
    white-space: nowrap;
  }

  .flow h2::before,
  .flow h2::after {
    position: static;
    flex: 0 0 61px;
    width: 61px;
    height: 1px;
    background: var(--green);
  }

  .flow__subtitle {
    margin: -15px 0 0;
    color: var(--ink);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.32px;
    text-align: center;
  }

  .flow__subtitle span {
    display: inline;
    color: var(--green);
    font-size: 20px;
    letter-spacing: 0.4px;
  }

  .flow__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0;
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
  }

  .flow__meta img {
    width: 20px;
    height: 20px;
  }

  .flow .caption {
    margin: -16px 0 0;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.28px;
    opacity: 1;
  }

  .flow-cards {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: min(752px, 100%);
  }

  .flow-card {
    display: flex;
    gap: 20px;
    align-items: center;
    width: 100%;
    min-height: 119px;
    margin: 0;
    padding: 24px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 2.34px 2.34px 4.13px rgb(0 0 0 / 20%);
  }

  .flow-card--delivery {
    border: 1px solid #e9e1cb;
    background:
      linear-gradient(
        -17deg,
        rgb(255 248 218 / 40%) 5.89%,
        rgb(255 253 247 / 40%) 54.28%,
        rgb(255 245 210 / 40%) 102.66%
      ),
      #fff;
    box-shadow: none;
  }

  .flow-icon {
    flex: 0 0 88px;
    width: 88px;
    height: 88px;
    background: transparent;
  }

  .flow-icon img {
    width: 88px;
    height: 88px;
    object-fit: contain;
  }

  .flow-icon--delivery {
    background: transparent;
  }

  .flow-card > div:not(.flow-icon) {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
  }

  .flow-card__header {
    align-items: stretch;
    gap: 6px;
    margin: 0;
  }

  .step-label {
    width: 40px;
    margin: 0;
    padding: 6px 4px;
    border-radius: 4px;
    background: var(--green);
  }

  .flow-card h3 {
    display: flex;
    align-items: center;
    margin: 0;
    padding-bottom: 0;
    border-bottom: 0.5px solid var(--green);
    color: var(--ink);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.44px;
    white-space: nowrap;
  }

  .flow-card:first-child h3 {
    font-size: 20px;
    letter-spacing: 0.4px;
  }

  .flow-card h3.flow-card__h3--sm {
    font-size: 18px;
    letter-spacing: 0.36px;
  }

  .flow-card h3::after {
    display: none;
  }

  .flow-card h3 span {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 0.56px;
  }

  .flow-card p:not(.step-label):not(.flow-enjoy) {
    margin: 0;
    color: var(--ink);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.55;
    letter-spacing: 0.32px;
  }

  .flow-card p:not(.step-label):not(.flow-enjoy) span:not(.delivery-desc-gold) {
    color: var(--green);
    font-weight: 600;
  }

  .flow-card p:not(.step-label):not(.flow-enjoy) br {
    display: none;
  }

  .flow-card--delivery .step-label {
    background: #856b0d;
  }

  .flow-card--delivery h3 {
    border-bottom-color: #856b0d;
  }

  .flow-enjoy {
    top: 6px;
    right: 26px;
    font-size: 12px;
  }

  .staff-note {
    margin: 0;
    color: var(--ink);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.55;
    letter-spacing: 0.32px;
    text-align: center;
  }

  .staff-note__main {
    font-size: inherit;
  }

  .staff-note__sub {
    color: var(--green);
    font-size: inherit;
  }

  .faq details {
    width: 752px;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .faq h2 {
    font-size: 32px;
  }

  .faq h2 span {
    font-size: 28px;
  }

  .faq summary,
  .faq details p {
    font-size: 14px;
    letter-spacing: 0.28px;
  }

  .privacy-page {
    background: #fff;
  }

  .privacy-policy {
    padding: 32px max(24px, calc((100% - 942px) / 2)) 72px;
  }

  .privacy-policy h1 {
    margin-bottom: 32px;
    font-size: 32px;
  }

  .privacy-page .footer__dark {
    padding-bottom: 14px;
  }

  .footer {
    display: grid;
    grid-template-columns: 120px minmax(0, 759px);
    gap: 0 300px;
    align-items: start;
    justify-content: center;
    padding: 40px clamp(48px, 10.35vw, 149px) 0;
    background: #151515;
    color: #fff;
  }

  .footer h2 {
    grid-column: 1;
    color: #898989;
    font-family: Inter, "Noto Sans JP", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    text-align: left;
    letter-spacing: 0.44px;
    white-space: nowrap;
  }

  .footer > p {
    grid-column: 1;
    margin: 0;
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    white-space: nowrap;
    margin-bottom: 30px;
  }

  .footer dl {
    display: grid;
    grid-row: 1 / span 2;
    grid-column: 2;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 4px 20px;
    align-items: center;
    width: 100%;
    min-width: 0;
    margin: 0;
  }

  .footer dt {
    margin: 0;
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.28px;
    white-space: nowrap;
  }

  .footer dd {
    margin: 0;
    padding: 8px 16px;
    background: rgb(239 239 239 / 7%);
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.28px;
    overflow-wrap: anywhere;
  }

  .footer__dark {
    grid-column: 1 / -1;
    width: 100vw;
    min-height: 84px;
    margin: 40px calc(50% - 50vw) 0;
    padding: 0 0 112px;
    background: #103c19;
  }

  .footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 40px;
    align-items: flex-start;
    justify-content: center;
    padding: 12px 40px 12px 38px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    white-space: nowrap;
  }

  .footer nav a {
    opacity: 0.8;
    font-weight: 600;
  }

  .footer__dark > .cta-button {
    width: 592px;
    height: 80px;
    min-height: 70px;
    padding: 20px 42px 14px 18px;
    background: var(--green-bright);
  }

  .footer__dark > .cta-button img:first-child {
    width: 42px;
    height: 40px;
    margin-right: 16px;
  }

  .footer__dark > .cta-button strong {
    bottom: 9px;
    font-size: 28px;
    letter-spacing: 1.76px;
  }

  .footer__dark > .cta-button .cta-button__strong-sm {
    font-size: 22px;
    letter-spacing: 1.44px;
  }

  .footer__dark > .cta-button .cta-button__label {
    top: 7px;
    padding: 2px 8px;
    background: #fff;
    color: var(--green-bright);
    font-size: 14px;
  }

  .footer__dark > .cta-button .cta-button__arrow {
    width: 9px;
    height: 12px;
  }
}
@media (min-width: 1800px) {
  .hero__photo {
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      #000 25%,
      #000 95%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      #000 25%,
      #000 95%,
      transparent 100%
    );
  }
}
