﻿:root {
  --lp-width: 1000px;
  --lp-side-space: 32px;
}

html,
body {
  margin: 0;
  padding: 0;
}

.lp-wrap {
  width: 100%;
  max-width: var(--lp-width);
  margin: 0 auto;
  font-family: "Noto Sans JP", Arial, sans-serif;
  color: #111;
  background: #fff;
  overflow: hidden;
}

.lp-wrap * {
  box-sizing: border-box;
}

.lp-wrap img {
  max-width: 100%;
  display: block;
}

.mv-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 0 var(--lp-side-space) 0 0;
  background: #fff;
  flex-wrap: nowrap;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.logo {
  display: block;
  width: 160px;
  line-height: 1;
  background-color: #050505;
  padding: 0.75rem 1rem;
}

.logo img {
  width: 100%;
  height: auto;
}

.header-copy {
  color: #111;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  flex: 0 1 auto;
}

.mv-btns {
  display: flex;
  gap: 6px;
  color: #fff;
  flex: 0 0 auto;
}

.mv-btns a {
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: 700;
  white-space: nowrap;
  width: 116px;
  text-align: center;
  color: #fff;
  text-decoration: none;
}

.green {
  background: #00b050;
}

.red {
  background: #e60012;
}

.floating-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  gap: 10px;
  /* width: 100%; */
  /* max-width: var(--lp-width); */
  /* margin: 0 auto; */
  padding: 16px var(--lp-side-space);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 -4px 18px rgba(0, 0, 0, .16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity .25s ease, transform .25s ease;
  font-family: "Noto Sans JP", Arial, sans-serif;
}

.floating-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  border-radius: 999px;
  color: #fff;
  padding: 1rem 0;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.floating-cta-btn span {
  font-size: 1rem;
}

.floating-cta-line {
  background: #00b050;
}

.floating-cta-review {
  background: #e60012;
}

.beve-lp-theme.has-floating-cta {
  padding-bottom: 76px;
}

@media (max-width:767px) {
  .header-brand {
    gap: 1rem;
  }

  .logo {
    width: 120px;
  }

  .header-copy {
    font-size: 16px;
  }

  .floating-cta {
    gap: 8px;
  }

  .floating-cta-btn {
    flex: 1 1 0;
    width: auto;
    padding: .75rem 0;
  }

}

@media (max-width:560px) {
  .mv-btns a {
    font-size: 12px;
    width: 96px;
  }

  .header-copy {
    font-size: 14px;
  }

  .header-copy {
    display: none;
  }
}

@media (max-width:480px) {
  .header-brand {
    gap: 0.5rem;
  }

  .floating-cta {
    padding: 8px var(--lp-side-space) calc(8px + env(safe-area-inset-bottom));
  }

  .floating-cta-btn {
    /* min-height: 44px; */
    font-size: 18px;
  }

.floating-cta-btn span {
  font-size: 11px;
}

}

.mv {
  background: #050505;
  color: #fff;
  padding: 54px var(--lp-side-space);
  position: relative;
  overflow: hidden;
}

.mv-catch {
  font-size: 22px;
  color: #ffd900;
  font-weight: 900;
}

.mv-title {
  font-size: 64px;
  line-height: 1.15;
  font-weight: 900;
  margin: 0;
}

.mv-title strong {
  color: #e60012;
}

.mv-catch,
.mv-title,
.merits {
  position: relative;
  z-index: 2;
}

.mv-catch span {
  background: #fff200;
  color: #000;
  display: inline-block;
  padding: 6px 12px;
  margin-right: 12px;
}

.mv-visual {
  position: relative;
}

.mv-car-img {
  width: 725px;
}

.mv-girl-img {
  width: 330px;
  position: absolute;
  right: 0;
  bottom: -54px;
  z-index: 2;
}

.mv-medal-img {
  width: 165px;
  position: absolute;
  right: 0;
  top: -160px;
  z-index: 3;
}

.merits {
  display: flex;
  gap: 12px;
  margin: 0;
}

.merits span {
  border: 1px solid #fff;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  padding: 7px 12px;
}

.form-box {
  border: 4px solid #e60033;
  padding: 52px var(--lp-side-space);
  text-align: center;
}

.form-box h2 {
  font-size: 38px;
  line-height: 1.35;
  margin: 0 0 6px;
}

.form-box h2 span {
  color: #e60012;
  font-size: 1.45em;
}

.form-box p {
  color: #e60012;
  font-weight: 700;
  margin: 0 0 16px;
}

.form-box label {
  display: block;
  text-align: left;
  max-width: 620px;
  font-size: 14px;
  font-weight: 700;
  margin: 10px 0 4px;
  margin-left: auto;
  margin-right: auto;
}

.form-box input {
  width: 100%;
  max-width: 620px;
  height: 42px;
  border: 1px solid #ddd;
  background: #f1f1f1;
  border-radius: 5px;
  display: block;
  margin: 0 auto;
}

.form-box input.is-invalid {
  border-color: #e60012;
  background: #fff4f4;
}

.form-error {
  display: block;
  max-width: 620px;
  min-height: 18px;
  margin: 4px auto 0;
  color: #e60012;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
}

.cta-btn {
  display: grid;
  grid-template-columns: 86px 1fr 28px;
  align-items: center;
  margin: 38px auto 0;
  width: 100%;
  max-width: 544px;
  min-height: 124px;
  position: relative;
  background: #e60012;
  color: #fff;
  font-weight: 900;
  padding: 28px 22px 18px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 5px 0 #a00000;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.cta-btn::before {
  content: "誰でもローンが通る！";
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  width: min(365px, 70%);
  background: #fffb00;
  color: #000;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 900;
  text-align: center;
  padding: 12px 18px;
  border-radius: 12px;
}

.cta-badge {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #00d51f;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cta-badge small {
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 4px;
}

.cta-badge strong {
  font-size: 39px;
  font-weight: 900;
}

.cta-main {
  display: block;
  font-size: 48px;
  line-height: 1;
  letter-spacing: .02em;
  text-align: center;
}

.cta-btn:disabled,
.cta-btn.is-submitting {
  cursor: wait;
  opacity: .75;
  box-shadow: none;
  transform: translateY(5px);
}

.wpcf7 form.sent .wpcf7-response-output {
  display: none;
}

.sec {
  padding: 76px var(--lp-side-space);
  text-align: center;
}

.sec-title {
  font-size: 38px;
  font-weight: 900;
  margin: 0 0 40px;
}

.lineup {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px 38px;
}

.car-card .car-img {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.car-card .car-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.car-card p {
  font-size: 20px;
  font-weight: 700;
  margin: 8px 0 0;
}

.reason-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  position: relative;
  z-index: 2;
}

.welcome-text {
  color: #f1f1f1;
  font-size: 112px;
  font-weight: 900;
  line-height: 1;
  margin: -60px 0 0 0;
  position: relative;
  z-index: 1;
}

.reason-list div {
  background: #050505;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 10px;
}

.compare {
  background: #fff;
}

.compare-scroll {
  width: 100%;
  overflow-x: auto;
  padding: 0 0 8px;
}

.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 24px 0;
  table-layout: fixed;
  font-size: 20px;
}

.compare-table th {
  height: 124px;
  padding: 18px 10px;
  color: #fff;
  border-radius: 24px 24px 0 0;
  font-size: 42px;
  line-height: 1;
  vertical-align: middle;
}

.compare-table th:first-child,
.compare-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  width: 164px;
  min-width: 164px;
}

.compare-table th:first-child {
  background: transparent;
  border-radius: 0;
}

.compare-table th:nth-child(1) {
  background: #fff;
}

.compare-table th:nth-child(2) {
  background: #e60012;
  font-size: 54px;
}

.compare-table th:nth-child(3) {
  background: #6385bc;
}

.compare-table th:nth-child(4) {
  background: #587d32;
}

.compare-table td {
  height: 112px;
  background: #f7f5f5;
  padding: 18px 12px;
  border-top: 1px solid #d8d8d8;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  vertical-align: middle;
}

.compare-table td:first-child {
  background: #f7f5f5;
  border-top: 0;
  font-size: 22px;
}

.compare-table td:nth-child(2) {
  background: #e60012;
  color: #fff;
  font-weight: 900;
}

.voice {
  background: #f3f3f3;
}

.voice-card {
  background: #fff;
  margin-bottom: 22px;
  padding: 16px;
  text-align: left;
  border-radius: 6px;
  display: grid;
  grid-template-columns: minmax(220px, 36%) 1fr;
  gap: 20px;
  align-items: center;
}

.voice-img {
  width: 100%;
  height: auto;
  border-radius: 2px;
}

.voice-body {
  min-width: 0;
}

.voice-card h3 {
  font-size: 15px;
  border-left: 5px solid #e60012;
  padding-left: 10px;
  margin: 0 0 12px;
}

.voice-stars {
  width: 112px;
  margin: 0 0 12px;
}

.voice-card p {
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.feature-card {
  background: #f7f7f7;
  text-align: left;
  padding: 18px;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-size: 18px;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  /* gap: 10px; */
}

.feature-card h3 img {
  margin-right: 10px;
}

.feature-card h3 span {
  background: linear-gradient(transparent 60%, #FBFF00 60%);
}

.feature-icon {
  width: 15px;
  height: 37px;
  object-fit: contain;
  flex: 0 0 auto;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.flow {
  background: #fafafa;
}

.flow-item {
  display: flex;
  gap: 18px;
  text-align: left;
  padding: 22px 0;
  border-bottom: 1px solid #ccc;
  align-items: flex-start;
}

.flow-num {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #f2f2f2;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 66px;
  line-height: 1;
}

.flow-num span {
  display: block;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 4px;
}

.flow-num strong {
  display: block;
  font-size: 26px;
  font-weight: 900;
}

.flow-item h3 {
  font-size: 18px;
  margin: 0 0 6px;
}

.flow-item p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.faq {
  background: #f7f2f2;
}

.faq-box {
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  text-align: left;
  margin-bottom: 14px;
}

.faq-box dt {
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 8px;
}

.faq-box dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
}

.faq-box dd span {
  color: #e60012;
  font-weight: 900;
}

.footer {
  background: #1a0b05;
  color: #fff;
  text-align: center;
  font-size: 12px;
  padding: 20px;
}

.thanks-page {
  min-height: 100vh;
  background: #fff;
}

.thanks-hero {
  background: #050505;
  color: #fff;
  padding: 80px var(--lp-side-space);
  text-align: center;
}

.thanks-label {
  display: inline-block;
  background: #fff200;
  color: #000;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  padding: 10px 18px;
  margin-bottom: 22px;
}

.thanks-title {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.35;
  margin: 0 0 18px;
}

.thanks-lead {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
  margin: 0 auto;
  max-width: 720px;
}

.thanks-content {
  padding: 64px var(--lp-side-space);
}

.thanks-box {
  max-width: 760px;
  margin: 0 auto;
  background: #f7f7f7;
  border-left: 8px solid #e60012;
  padding: 34px;
  text-align: left;
}

.thanks-box h2 {
  font-size: 24px;
  font-weight: 900;
  margin: 0 0 16px;
}

.thanks-box p {
  font-size: 15px;
  line-height: 1.9;
  margin: 0 0 12px;
}

.thanks-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.thanks-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 52px;
  background: #e60012;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 5px 0 #a00000;
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
}

.text-area {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width:1000px) {
  .mv {
    padding: 5.4vw 3.2vw;
  }

  .text-area {
    gap: 2vw;
  }

  .mv-catch {
    font-size: 2.2vw;
  }

  .mv-catch span {
    padding: 0.6vw 1.2vw;
    margin-right: 1.2vw;
  }

  .mv-title {
    font-size: 6.4vw;
  }

  .merits {
    gap: 1.2vw;
  }

  .merits span {
    font-size: 1.5vw;
    padding: 0.7vw 1.2vw;
  }

  .mv-car-img {
    width: 72.5vw;
  }

  .mv-medal-img {
    top: -16vw;
    width: 16.5vw;
  }

  .mv-girl-img {
    width: 33vw;
    right: 0;
    bottom: -5.4vw;
  }
}

@media (max-width:767px) {
  :root {
    --lp-side-space: 20px;
  }

  .mv-medal-img {
    top: -24vw;
    width: 21vw;
  }

  .mv-girl-img {
    width: 39vw;
    right: -7vw;
  }

  .mv-car-img {
    transform: translateY(2vw);
  }

  .mv {
    display: flex;
    flex-direction: column;
    gap: 2vw;
  }

  .mv-catch {
    font-size: 4vw;
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .mv-catch span {
    font-size: 3.3vw;
  }

  .merits span {
    font-size: 3.5vw;
  }

  .form-box {
    padding: 36px var(--lp-side-space);
  }

  .form-box h2 {
    font-size: 30px;
  }

  .sec {
    padding: 52px var(--lp-side-space);
  }

  .sec-title {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .car-card p {
    font-size: 16px;
  }

  .lineup,
  .reason-list {
    grid-template-columns: 1fr 1fr;
  }

  .car-card .car-img {
    min-height: 92px;
  }

  .cta-btn {
    width: 100%;
    grid-template-columns: 68px 1fr;
    min-height: 104px;
    padding: 24px 14px 14px;
  }

  .cta-btn::before {
    top: -25px;
    width: 72%;
    padding: 9px 12px;
  }

  .cta-badge {
    width: 68px;
    height: 68px;
  }

  .cta-badge small {
    font-size: 9px;
  }

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

  .cta-main {
    font-size: 42px;
  }

  .welcome-text {
    font-size: 64px;
    margin: -40px 0 0;
  }

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

  .compare-table {
    min-width: 680px;
    border-spacing: 18px 0;
    font-size: 18px;
  }

  .compare-table th {
    height: 104px;
    border-radius: 18px 18px 0 0;
    font-size: 34px;
  }

  .compare-table th:nth-child(2) {
    font-size: 44px;
  }

  .compare-table td {
    height: 96px;
    font-size: 19px;
  }

  .compare-table th:first-child,
  .compare-table td:first-child {
    width: 140px;
    min-width: 140px;
    font-size: 18px;
  }

  .thanks-hero {
    padding: 60px var(--lp-side-space);
  }

  .thanks-title {
    font-size: 34px;
  }

  .thanks-lead {
    font-size: 16px;
  }

  .thanks-content {
    padding: 48px var(--lp-side-space);
  }
}

@media (max-width:480px) {
  :root {
    --lp-side-space: 16px;
  }

  .form-box {
    padding: 28px var(--lp-side-space);
  }

  .form-box h2 {
    font-size: 24px;
  }

  .cta-btn::before {
    font-size: 18px;
  }

  .cta-main {
    font-size: 30px;
  }

  .sec {
    padding: 42px var(--lp-side-space);
  }

  .sec-title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .car-card p {
    font-size: 14px;
  }

  .reason-list {
    grid-template-columns: 1fr;
  }

  .lineup {
    gap: 22px 12px;
  }

  .welcome-text {
    font-size: 64px;
    margin: -36px 0 0;
  }

  .compare-table {
    min-width: 600px;
    border-spacing: 14px 0;
  }

  .compare-table th {
    height: 86px;
    border-radius: 14px 14px 0 0;
    font-size: 28px;
  }

  .compare-table th:nth-child(2) {
    font-size: 36px;
  }

  .compare-table td {
    height: 82px;
    font-size: 16px;
    padding: 12px 8px;
  }

  .compare-table th:first-child,
  .compare-table td:first-child {
    width: 112px;
    min-width: 112px;
    font-size: 15px;
  }

  .flow-item {
    gap: 10px;
  }

  .thanks-title {
    font-size: 28px;
  }

  .thanks-box {
    padding: 24px 18px;
  }

  .thanks-actions {
    display: block;
  }

  .thanks-btn {
    width: 100%;
  }
}
