:root {
  --green: #036533;
  --black: #1a1a1a;
  --orange: #f5aa17;
  /* デザイン基準幅: PC 1440 / SP 375。px値は calc(px / 14.4 * 1cqw)（PC）,
     calc(px / 3.75 * 1cqw)（SP）で .lp コンテナ幅に比例させる */
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@keyframes scrollHintFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scrollHintNudge {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(calc(10 / 3.75 * 1cqw));
  }
}

body {
  margin: 0;
  background: #fff;
  color: var(--black);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input,
textarea {
  font: inherit;
}

.lp {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  container-type: inline-size;
}

/* ベタ画像は遅延読み込みのためセクション単位で分割。
   オーバーレイの縦位置%はパートごとの分母・オフセット(デザインpx、inline指定)で解決 */
.lp__part {
  position: relative;
}

.lp__picture,
.lp__image {
  display: block;
  width: 100%;
}

.lp__image {
  height: auto;
  user-select: none;
}

/* ---- 漫画カルーセル (PC: 表示領域 x121-1319 / y1034-1582) ---- */

.comic-carousel {
  position: absolute;
  top: calc(211 / 917 * 100%);
  left: calc(121 / 1440 * 100%);
  z-index: 1;
  width: calc(1198 / 1440 * 100%);
  height: calc(548 / 917 * 100%);
}

.comic-carousel__viewport {
  position: relative;
  z-index: 1;
  overflow-x: clip;
  overflow-y: visible;
  width: 100%;
  height: 100%;
}

.comic-carousel__track {
  display: flex;
  gap: calc(189 / 14.4 * 1cqw);
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform 400ms ease;
}

/* デザイン: 各漫画にドロップシャドウ (Rectangle 108/109 のエフェクト) */
.comic-carousel__track li {
  position: relative;
  flex: 0 0 calc(308 / 14.4 * 1cqw);
  box-shadow: 0 calc(2 / 14.4 * 1cqw) calc(9 / 14.4 * 1cqw) rgba(0, 0, 0, 0.84);
  transition: transform 400ms ease;
}

.comic-carousel__track img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 隣接スライドは 257x456 に縮小 + #D9D9D9 77% をかぶせる (Rectangle 109) */
.comic-carousel__track li::after {
  position: absolute;
  inset: 0;
  background: rgba(217, 217, 217, 0.77);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms ease;
}

.comic-carousel__track li.is-prev::after,
.comic-carousel__track li.is-next::after {
  opacity: 1;
}

.comic-carousel__track li.is-prev {
  transform-origin: right center;
  transform: translate(calc(2 / 14.4 * 1cqw), calc(-13 / 14.4 * 1cqw)) scale(0.834416, 0.832117);
}

.comic-carousel__track li.is-next {
  transform-origin: left center;
  transform: translateY(calc(-13 / 14.4 * 1cqw)) scale(0.834416, 0.832117);
}

/* 矢印: 円67px + 影込みの描画境界85px基準で配置 */
.comic-carousel__button {
  position: absolute;
  top: calc(218 / 548 * 100%);
  z-index: 3;
  width: calc(85 / 1198 * 100%);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.comic-carousel__button img {
  display: block;
  width: 100%;
  height: auto;
}

.comic-carousel__button--prev {
  left: calc(320 / 1198 * 100%);
}

.comic-carousel__button--next {
  left: calc(791 / 1198 * 100%);
}

.comic-carousel.is-at-start .comic-carousel__button--prev {
  visibility: hidden;
  pointer-events: none;
}

/* ページネーションドット (デザイン: 緑ピル39x7 + グレー7x7 x9, gap7) */
.comic-dots {
  position: absolute;
  top: calc(780 / 917 * 100%);
  left: calc(634.5 / 1440 * 100%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: calc(7 / 14.4 * 1cqw);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 calc(8 / 14.4 * 1cqw) #fff;
}

.comic-dots__dot {
  width: calc(7 / 14.4 * 1cqw);
  height: calc(7 / 14.4 * 1cqw);
  border-radius: 999px;
  background: #d9d9d9;
  transition: width 200ms ease, background-color 200ms ease;
}

.comic-dots__dot.is-active {
  width: calc(39 / 14.4 * 1cqw);
  background: var(--green);
}

/* ---- クリック領域 (CTA→フォーム / 電話 / フッターリンク) ----
   デザインpx座標をカスタムプロパティで指定: PC --pt/--pl/--pw/--ph, SP --st/--sl/--sw/--sh */

.hotspot {
  position: absolute;
  z-index: 4;
  display: block;
  top: calc((var(--pt) - var(--off-pc)) / var(--den-pc) * 100%);
  left: calc(var(--pl) / 1440 * 100%);
  width: calc(var(--pw) / 1440 * 100%);
  height: calc(var(--ph) / var(--den-pc) * 100%);
}

/* ---- よくあるご質問 ---- */

/* 通常フロー・可変高: 閉=縮む / 全開=デザインの2319px相当 */
.faq-accordion {
  width: 100%;
  padding-top: calc(125 / 14.4 * 1cqw);
  padding-bottom: calc(171 / 14.4 * 1cqw);
  background: #e5eee4;
}

.faq-accordion h2 {
  margin: 0 0 calc(105 / 14.4 * 1cqw);
  color: var(--green);
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: calc(42 / 14.4 * 1cqw);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  transform: translateY(calc(10 / 14.4 * 1cqw));
}

.faq-accordion__list {
  display: flex;
  flex-direction: column;
  gap: calc(32 / 14.4 * 1cqw);
  width: calc(975 / 14.4 * 1cqw);
  margin: 0 auto;
}

.faq-item {
  position: relative;
  overflow: hidden;
  border-radius: calc(15 / 14.4 * 1cqw);
  background: #fff;
  box-shadow: 0 calc(1 / 14.4 * 1cqw) calc(5.6 / 14.4 * 1cqw) #8f998e;
}

/* 質問行: Qマーク・質問文・アイコンを行の縦中央に揃える */
.faq-item__question {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: calc(90 / 14.4 * 1cqw);
  padding: calc(32 / 14.4 * 1cqw) calc(72 / 14.4 * 1cqw) calc(32 / 14.4 * 1cqw) calc(80 / 14.4 * 1cqw);
  border: 0;
  background: transparent;
  color: #1a1a1a;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(22 / 14.4 * 1cqw);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.1818;
  text-align: left;
  cursor: pointer;
}

.faq-item__q-text {
  display: inline-block;
}

.faq-item__mark {
  position: absolute;
  font-family: "Hind Guntur", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  /* Hind Gunturはemボックス内でグリフが上寄りのため光学補正 */
  --ink-nudge: 0.1em;
}

.faq-item__mark--q {
  top: 50%;
  left: calc(44 / 14.4 * 1cqw);
  color: var(--green);
  font-size: calc(32 / 14.4 * 1cqw);
  transform: translate(-50%, calc(-50% + var(--ink-nudge)));
}

.faq-item__mark--a {
  /* 回答1行目 (pad 27px + 行高26pxの半分) の中央に合わせる */
  top: calc(40 / 14.4 * 1cqw);
  left: calc(44.5 / 14.4 * 1cqw);
  color: var(--orange);
  font-size: calc(32 / 14.4 * 1cqw);
  transform: translate(-50%, calc(-50% + var(--ink-nudge)));
}

.faq-item__icon {
  position: absolute;
  top: 50%;
  left: calc(919 / 975 * 100%);
  width: calc(19.8 / 14.4 * 1cqw);
  height: calc(19.8 / 14.4 * 1cqw);
  transform: translate(-50%, -50%);
}

.faq-item__icon::before,
.faq-item__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(19.8 / 14.4 * 1cqw);
  height: calc(3 / 14.4 * 1cqw);
  background: var(--orange);
  content: "";
  transition: transform 200ms ease;
}

.faq-item__icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.faq-item:not(.is-open) .faq-item__icon::before {
  transform: translate(-50%, -50%);
}

.faq-item:not(.is-open) .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item__answer {
  position: relative;
  padding: calc(27 / 14.4 * 1cqw) 0 calc(37 / 14.4 * 1cqw) calc(80 / 14.4 * 1cqw);
}

.faq-item__answer::before {
  position: absolute;
  top: 0;
  right: calc(42 / 14.4 * 1cqw);
  left: calc(34 / 14.4 * 1cqw);
  height: 1px;
  background: #a6a6a6;
  content: "";
}

.faq-item__answer p {
  max-width: calc(895 / 14.4 * 1cqw);
  margin: 0;
  font-size: calc(22 / 14.4 * 1cqw);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.1818;
}

.faq-item:not(.is-open) .faq-item__answer {
  display: none;
}

.br-sp {
  display: none;
}

.funding-scroll {
  display: none;
}

/* ---- お問い合わせフォーム ---- */

.contact-form {
  position: absolute;
  top: calc(291 / 1951 * 100%);
  left: 50%;
  width: calc(742 / 1440 * 100%);
  height: calc(1461 / 1951 * 100%);
  transform: translateX(-50%);
  /* CTAアンカー移動時にセクション見出し(291px上)から見えるように */
  scroll-margin-top: calc(291 / 14.4 * 1cqw);
}

.contact-form input,
.contact-form textarea,
.contact-form button {
  position: absolute;
  border: 0;
  outline: 0;
  background: transparent;
}

.contact-form input,
.contact-form textarea {
  padding: 0 16px;
  color: #24251f;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: calc(14 / 14.4 * 1cqw);
}

.contact-form textarea {
  padding-top: 12px;
  resize: none;
}

.contact-form button {
  cursor: pointer;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(255, 255, 255, 0.35);
  box-shadow: inset 0 0 0 2px rgba(3, 101, 51, 0.55);
  border-radius: 5px;
}

.contact-form [name="company"],
.contact-form [name="address"],
.contact-form [name="tel"],
.contact-form [name="lease_request"] {
  left: calc(57 / 742 * 100%);
  width: calc(629 / 742 * 100%);
  height: calc(50 / 1461 * 100%);
}

.contact-form [name="company"] { top: calc(122 / 1461 * 100%); }
.contact-form [name="address"] { top: calc(217 / 1461 * 100%); }
.contact-form [name="tel"] { top: calc(312 / 1461 * 100%); }
.contact-form [name="lease_request"] { top: calc(791 / 1461 * 100%); }

.contact-form [name="vehicle_count"],
.contact-form [name="model_year"],
.contact-form [name="desired_amount"],
.contact-form [name="remaining_debt"],
.contact-form [name="snow_area"] {
  left: calc(57 / 742 * 100%);
  width: calc(293 / 742 * 100%);
  height: calc(50 / 1461 * 100%);
}

.contact-form [name="vehicle_type"],
.contact-form [name="mileage"],
.contact-form [name="consultation_timing"],
.contact-form [name="sale_count"],
.contact-form [name="buyback"] {
  left: calc(393 / 742 * 100%);
  width: calc(293 / 742 * 100%);
  height: calc(50 / 1461 * 100%);
}

.contact-form [name="vehicle_count"],
.contact-form [name="vehicle_type"] { top: calc(506 / 1461 * 100%); }
.contact-form [name="model_year"],
.contact-form [name="mileage"] { top: calc(601 / 1461 * 100%); }
.contact-form [name="desired_amount"],
.contact-form [name="consultation_timing"] { top: calc(696 / 1461 * 100%); }
.contact-form [name="remaining_debt"],
.contact-form [name="sale_count"] { top: calc(985 / 1461 * 100%); }
.contact-form [name="snow_area"],
.contact-form [name="buyback"] { top: calc(1080 / 1461 * 100%); }

.contact-form [name="use_of_funds"] {
  top: calc(1175 / 1461 * 100%);
  left: calc(57 / 742 * 100%);
  width: calc(629 / 742 * 100%);
  height: calc(141 / 1461 * 100%);
}

.contact-form button {
  top: calc(1364 / 1461 * 100%);
  left: calc(124 / 742 * 100%);
  width: calc(450 / 742 * 100%);
  height: calc(49 / 1461 * 100%);
}

/* ================================ SP ================================ */

@media (max-width: 767px), (max-device-width: 767px) {
  /* ---- 漫画カルーセル (SP: 漫画 x60-316 / y968-1423) ---- */

  .comic-carousel {
    top: calc(166 / 744 * 100%);
    left: calc(60 / 375 * 100%);
    width: calc(256 / 375 * 100%);
    height: calc(455 / 744 * 100%);
  }

  .comic-carousel__track {
    gap: calc(24 / 3.75 * 1cqw);
  }

  .comic-carousel__track li {
    box-shadow: none;
  }

  .comic-carousel__track li {
    flex-basis: 100%;
  }

  .comic-carousel__track li.is-prev,
  .comic-carousel__track li.is-next {
    transform: none;
  }

  .comic-carousel__track li.is-prev::after,
  .comic-carousel__track li.is-next::after {
    opacity: 0;
  }

  .comic-carousel__button {
    top: calc(200 / 455 * 100%);
    width: calc(78 / 256 * 100%);
  }

  .comic-carousel__button--prev {
    left: calc(-60 / 256 * 100%);
  }

  .comic-carousel__button--next {
    left: calc(237 / 256 * 100%);
  }

  .comic-dots {
    top: calc(648 / 744 * 100%);
    left: calc(103.5 / 375 * 100%);
    gap: calc(7 / 3.75 * 1cqw);
    box-shadow: 0 0 0 calc(8 / 3.75 * 1cqw) #fff;
  }

  .comic-dots__dot {
    width: calc(7 / 3.75 * 1cqw);
    height: calc(7 / 3.75 * 1cqw);
  }

  .comic-dots__dot.is-active {
    width: calc(39 / 3.75 * 1cqw);
  }

  /* ---- クリック領域 ---- */

  .hotspot {
    top: calc((var(--st) - var(--off-sp)) / var(--den-sp) * 100%);
    left: calc(var(--sl) / 375 * 100%);
    width: calc(var(--sw) / 375 * 100%);
    height: calc(var(--sh) / var(--den-sp) * 100%);
  }

  /* ---- 他の資金調達との違い (表全体: x18-970 / y8725-9199) ---- */

  .funding-scroll {
    position: absolute;
    top: calc(1429 / 2028 * 100%);
    left: 0;
    z-index: 3;
    display: block;
    width: 100%;
    height: calc(474 / 2028 * 100%);
    overflow: visible;
  }

  .funding-scroll__viewport {
    width: 100%;
    height: 100%;
    padding-left: calc(18 / 3.75 * 1cqw);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .funding-scroll__viewport::-webkit-scrollbar {
    display: none;
  }

  .funding-table {
    position: relative;
    width: calc(952 / 3.75 * 1cqw);
    height: calc(474 / 3.75 * 1cqw);
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  }

  .funding-table__bg {
    position: absolute;
    top: calc(25 / 3.75 * 1cqw);
    left: 0;
    width: calc(947 / 3.75 * 1cqw);
    height: calc(437 / 3.75 * 1cqw);
    border-radius: calc(20 / 3.75 * 1cqw);
    background: #fdfdfd;
    box-shadow: 0 0 calc(9 / 3.75 * 1cqw) rgba(0, 0, 0, 0.25);
  }

  .funding-table__head {
    position: absolute;
    top: calc(25 / 3.75 * 1cqw);
    left: 0;
    width: calc(952 / 3.75 * 1cqw);
    height: calc(120 / 3.75 * 1cqw);
    border-radius: calc(20 / 3.75 * 1cqw) calc(20 / 3.75 * 1cqw) 0 0;
    background: #bdbdbd;
  }

  .funding-table__vline {
    position: absolute;
    top: calc(25 / 3.75 * 1cqw);
    left: calc(729 / 3.75 * 1cqw);
    width: 1px;
    height: calc(120 / 3.75 * 1cqw);
    background: #fdfdfd;
  }

  .funding-table__hline {
    position: absolute;
    top: calc(var(--y) / 3.75 * 1cqw);
    left: calc(5 / 3.75 * 1cqw);
    width: calc(942 / 3.75 * 1cqw);
    height: 1px;
    background: #d9d9d9;
  }

  /* ベタ焼きのカード上下端の残像を隠す帯 */
  .funding-table__band {
    position: absolute;
    top: calc(var(--y) / 3.75 * 1cqw);
    left: calc(214 / 3.75 * 1cqw);
    width: calc(738 / 3.75 * 1cqw);
    height: calc(var(--h) / 3.75 * 1cqw);
    background: #fff;
  }

  .funding-table__card {
    position: absolute;
    top: 0;
    left: calc(214 / 3.75 * 1cqw);
    width: calc(260 / 3.75 * 1cqw);
    height: calc(474 / 3.75 * 1cqw);
    border: calc(3 / 3.75 * 1cqw) solid var(--green);
    border-radius: calc(15 / 3.75 * 1cqw);
    background: #ecf5f0;
  }

  .funding-table__logo {
    position: absolute;
    top: calc(43 / 3.75 * 1cqw);
    left: calc(233 / 3.75 * 1cqw);
    width: calc(207 / 3.75 * 1cqw);
    height: auto;
  }

  .funding-table__text {
    position: absolute;
    top: calc(var(--y) / 3.75 * 1cqw);
    left: calc(var(--x) / 3.75 * 1cqw);
    width: calc(var(--w) / 3.75 * 1cqw);
    margin: 0;
    line-height: 1.6;
    text-align: center;
    white-space: nowrap;
  }

  .funding-table__text--head {
    color: #000;
    font-size: calc(16 / 3.75 * 1cqw);
    font-weight: 500;
  }

  .funding-table__text--label {
    color: var(--green);
    font-size: calc(19 / 3.75 * 1cqw);
    font-weight: 600;
  }

  .funding-table__text--pmg {
    color: var(--green);
    font-size: calc(20 / 3.75 * 1cqw);
    font-weight: 700;
  }

  .funding-table__text--cell {
    color: #2b2b2b;
    font-size: calc(16 / 3.75 * 1cqw);
    font-weight: 600;
  }

  .funding-table__sym {
    position: absolute;
    top: calc(var(--y) / 3.75 * 1cqw);
    left: calc(var(--x) / 3.75 * 1cqw);
    color: #777;
  }

  .funding-table__sym--green {
    color: var(--green);
  }

  .funding-table__sym--dbl,
  .funding-table__sym--circle {
    width: calc(25 / 3.75 * 1cqw);
    height: calc(25 / 3.75 * 1cqw);
    border: calc(2 / 3.75 * 1cqw) solid currentColor;
    border-radius: 50%;
  }

  .funding-table__sym--dbl::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(15 / 3.75 * 1cqw);
    height: calc(15 / 3.75 * 1cqw);
    border: calc(2 / 3.75 * 1cqw) solid currentColor;
    border-radius: 50%;
    content: "";
    transform: translate(-50%, -50%);
  }

  .funding-table__sym--x {
    width: calc(20 / 3.75 * 1cqw);
    height: calc(20 / 3.75 * 1cqw);
  }

  .funding-table__sym--x::before,
  .funding-table__sym--x::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(26 / 3.75 * 1cqw);
    height: calc(2 / 3.75 * 1cqw);
    background: currentColor;
    content: "";
  }

  .funding-table__sym--x::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .funding-table__sym--x::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .funding-table__sym--tri {
    width: calc(27.4 / 3.75 * 1cqw);
    height: calc(24.3 / 3.75 * 1cqw);
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 27.4 24.3"><path d="M13.7 1.5 L25.7 22.8 H1.7 Z" fill="none" stroke="%23777777" stroke-width="2" stroke-linejoin="round"/></svg>') center / contain no-repeat;
  }

  /* セクションが画面に入ったら表示し、左右にゆらして横スクロールを促す。
     表がスクロールされたら消える */
  .funding-scroll__hint {
    position: absolute;
    top: calc(178 / 474 * 100%);
    left: calc(108 / 375 * 100%);
    z-index: 2;
    width: calc(150 / 375 * 100%);
    height: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease;
  }

  .funding-scroll__hint.is-visible {
    opacity: 1;
    animation: scrollHintFadeIn 500ms ease-out both,
      scrollHintNudge 1.8s ease-in-out 700ms infinite;
  }

  .funding-scroll__hint.is-hidden {
    opacity: 0;
    animation: none;
  }

  /* ---- よくあるご質問 (SP) ---- */

  .faq-accordion {
    padding-top: calc(66 / 3.75 * 1cqw);
    padding-bottom: calc(96 / 3.75 * 1cqw);
  }

  .faq-accordion h2 {
    margin-bottom: calc(58 / 3.75 * 1cqw);
    font-size: calc(32 / 3.75 * 1cqw);
  }

  .faq-accordion__list {
    gap: calc(24 / 3.75 * 1cqw);
    width: calc(335 / 3.75 * 1cqw);
  }

  .faq-item {
    border-radius: calc(15 / 3.75 * 1cqw);
    box-shadow: 0 calc(1 / 3.75 * 1cqw) calc(5.6 / 3.75 * 1cqw) #8f998e;
  }

  .faq-item__question {
    min-height: calc(61 / 3.75 * 1cqw);
    padding: calc(19.5 / 3.75 * 1cqw) calc(40 / 3.75 * 1cqw) calc(19.5 / 3.75 * 1cqw) calc(55 / 3.75 * 1cqw);
    font-size: calc(18 / 3.75 * 1cqw);
    line-height: 1.2222;
  }

  .faq-item__mark--q {
    top: 50%;
    left: calc(30 / 3.75 * 1cqw);
    font-size: calc(32 / 3.75 * 1cqw);
  }

  .faq-item__mark--a {
    /* 回答1行目 (pad 16px + 行高19pxの半分) の中央 */
    top: calc(25.5 / 3.75 * 1cqw);
    left: calc(30 / 3.75 * 1cqw);
    font-size: calc(32 / 3.75 * 1cqw);
  }

  .faq-item__icon {
    top: 50%;
    left: calc(303 / 335 * 100%);
    width: calc(19.8 / 3.75 * 1cqw);
    height: calc(19.8 / 3.75 * 1cqw);
  }

  .faq-item__icon::before,
  .faq-item__icon::after {
    width: calc(19.8 / 3.75 * 1cqw);
    height: calc(3 / 3.75 * 1cqw);
  }

  .faq-item__answer {
    padding: calc(16 / 3.75 * 1cqw) calc(18 / 3.75 * 1cqw) calc(24 / 3.75 * 1cqw) calc(55 / 3.75 * 1cqw);
  }

  .faq-item__answer::before {
    right: calc(18 / 3.75 * 1cqw);
    left: calc(18 / 3.75 * 1cqw);
  }

  .faq-item__answer p {
    max-width: calc(262 / 3.75 * 1cqw);
    font-size: calc(16 / 3.75 * 1cqw);
    line-height: 1.1875;
  }

  .br-sp {
    display: inline;
  }

  /* ---- フォーム ---- */

  .contact-form {
    top: calc(136 / 1797 * 100%);
    width: calc(336 / 375 * 100%);
    height: calc(1522 / 1797 * 100%);
    scroll-margin-top: calc(136 / 3.75 * 1cqw);
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0 10px;
    font-size: calc(14 / 3.75 * 1cqw);
  }

  .contact-form [name="company"],
  .contact-form [name="address"],
  .contact-form [name="tel"],
  .contact-form [name="vehicle_count"],
  .contact-form [name="vehicle_type"],
  .contact-form [name="model_year"],
  .contact-form [name="mileage"],
  .contact-form [name="desired_amount"],
  .contact-form [name="consultation_timing"],
  .contact-form [name="lease_request"],
  .contact-form [name="remaining_debt"],
  .contact-form [name="sale_count"],
  .contact-form [name="snow_area"],
  .contact-form [name="buyback"] {
    left: calc(30 / 336 * 100%);
    width: calc(277 / 336 * 100%);
    height: calc(32 / 1522 * 100%);
  }

  .contact-form [name="company"] { top: calc(147 / 1522 * 100%); }
  .contact-form [name="address"] { top: calc(217 / 1522 * 100%); }
  .contact-form [name="tel"] { top: calc(287 / 1522 * 100%); }
  .contact-form [name="vehicle_count"] { top: calc(441 / 1522 * 100%); }
  .contact-form [name="vehicle_type"] { top: calc(511 / 1522 * 100%); }
  .contact-form [name="model_year"] { top: calc(581 / 1522 * 100%); }
  .contact-form [name="mileage"] { top: calc(651 / 1522 * 100%); }
  .contact-form [name="desired_amount"] { top: calc(721 / 1522 * 100%); }
  .contact-form [name="consultation_timing"] { top: calc(791 / 1522 * 100%); }
  .contact-form [name="lease_request"] { top: calc(861 / 1522 * 100%); }
  .contact-form [name="remaining_debt"] { top: calc(1015 / 1522 * 100%); }
  .contact-form [name="sale_count"] { top: calc(1085 / 1522 * 100%); }
  .contact-form [name="snow_area"] { top: calc(1155 / 1522 * 100%); }
  .contact-form [name="buyback"] { top: calc(1225 / 1522 * 100%); }

  .contact-form [name="use_of_funds"] {
    top: calc(1295 / 1522 * 100%);
    left: calc(30 / 336 * 100%);
    width: calc(277 / 336 * 100%);
    height: calc(96 / 1522 * 100%);
  }

  .contact-form button {
    top: calc(1421 / 1522 * 100%);
    left: calc(31 / 336 * 100%);
    width: calc(276 / 336 * 100%);
    height: calc(49 / 1522 * 100%);
  }

}
