/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/

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

* {
  margin: 0;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

em {
  font-style: normal;
  font-weight: bold;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

#root, #__next {
  isolation: isolate;
}

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

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-wrap: break-word;
  min-width: 320px;
  background: #fff;
  color: #333;
  font-family: source-han-sans-japanese, notosans, "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "MS PGothic", sans-serif;
  font-size: 16px;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.5;
}

.only-sp {
  display: none;
}

@media (max-width: 1024px) {
  .only-pc {
    display: none;
  }
}

@media (max-width: 1024px) {
  .only-sp {
    display: block;
  }
}

.lp-header {
  background-color: #fff;
}

.lp-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1432px;
  margin: 0 auto;
  padding: 12px 10px;
}

@media (max-width: 1024px) {
  .lp-header__inner {
    justify-content: center;
    padding: 24px 20px;
  }
}

.lp-header__logo {
  display: block;
  width: 160px;

  & img {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .lp-header__logo {
    width: 110px;
  }
}

@media (max-width: 1024px) {
  .lp-header__phone {
    display: none;
  }
}

.lp-textPhone {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  color: currentColor;
}

.lp-textPhone__number {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}

.lp-textPhone__numberGroup {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.lp-textPhone__note {
  display: block;
  font-size: 12px;
  line-height: 1.2;
}

.lp-textPhone__icon {
  width: 36px;
  min-width: 36px;
  height: 20px;
  min-height: 20px;
}

.lp-textPhone__icon .of-iconColor-primary {
  fill: #00a23f;
}

.lp-footer {
  background-color: #222;
  color: #fff;
}

.lp-footer__content {
  max-width: 1300px;
  margin: 0 auto;
  padding: 16px 10px;
}

.lp-footer__list {
  display: flex;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}

@media (max-width: 1024px) {
  .lp-footer__list {
   row-gap: 8px;
  }
}

.lp-footer__list li {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.lp-footer__copyright {
  text-align: center;
}

.lp-footer__list li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  background-color: #fff;
}

.lp-footer__list a {
  text-decoration: none;
  color: #fff;
}

.lp-buttons {
  display: flex;
  justify-content: center;
  gap: 32px;
}

@media (max-width: 1024px) {
  .lp-buttons {
    flex-wrap: wrap;
  }
}

.lp-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 360px;
  width: 100%;
  text-decoration: none;
  color: #C43958;
  font-size: clamp(16px, 14.055px + 0.274vw, 18px);
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 56px;
  background: linear-gradient(309deg, #F2F3F6 -13.68%, #EFEFF2 171.92%);
  box-shadow: 3px 3px 20px 0 rgba(36, 65, 93, 0.30), -3px -3px 10px 0 #FFF, 4px 0 0 0 #FFF;
  transition: box-shadow 0.3s ease;
}

.lp-button--center {
  justify-content: center;
}

@media (hover: hover) {
  .lp-button:hover {
    box-shadow: 0 0 0 0 rgba(36, 65, 93, 0.30), 0 0 0 0 #FFF, 4px 0 0 0 #ECEDF0;
  }
}

.lp-button__image {
  margin: -22px 0;
  flex-shrink: 0;
  
  & img {
    max-width: 62px;
    width: 100%;
    box-shadow: 3px 3px 3px 0 rgba(36, 65, 93, 0.30);
  }
}

.lp-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.lp-main {
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex: 1;
  background-image: url('/img/products/vl-800/209566002/209566002_bg_01.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

@media (max-width: 1024px) {
  .lp-main {
    background-image:
      url('/img/products/vl-800/209566002/209566002_bg_01_sp.png');
    background-position: top 29em center;
    background-repeat: no-repeat;
  }
}

.lp-jumbotron {
  padding: 40px 0 20px;
}

@media (max-width: 1024px) {
  .lp-jumbotron {
    padding: 0;
  }

  .lp-jumbotron:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #000 5%, #00011E 100%);
    z-index: -1;
  }
}

.lp-jumbotron__inner {
  display: flex;
  gap: 12px;
  max-width: 1432px;
  margin-inline: auto;
  padding: 0 10px;
}

@media (max-width: 1024px) {
  .lp-jumbotron__inner {
    flex-direction: column;
    max-width: 710px;
    padding: 32px 20px;
    gap: 24px;
  }
}

.lp-jumbotron__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

@media (max-width: 1024px) {
  .lp-jumbotron__content {
    gap: clamp(24px, 8.438px + 2.192vw, 40px);
    align-items: center;
  }
}

.lp-jumbotron__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (max-width: 1024px) {
  .lp-jumbotron__body {
    gap: clamp(24px, 16.219px + 1.096vw, 32px);
  }
}

.lp-jumbotron__text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lp-jumbotron__title {
  font-size: clamp(56px, -5.714px + 8.036vw, 110px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -2px;
  color: #fff;

  & em {
    color: #FF0;
  }
}

@media (max-width: 1024px) {
  .lp-jumbotron__title {
    text-align: center;
  }
}

.lp-jumbotron__description {
  color: #FFF;
  font-size: clamp(16px, 12.110px + 0.548vw, 20px);
  font-weight: 700;
}

.lp-jumbotron__list {
  display: flex;
  align-items: center;
  gap: clamp(2px, -11.616px + 1.918vw, 16px);
}

@media (max-width: 1024px) {
  .lp-jumbotron__list {
    justify-content: center;
  }
}

.lp-jumbotron__item {
  display: flex;
  align-items: center;
  border-radius: 16px;
  background: #036EB8;
  color: #FFF;
  font-size: clamp(12px, 4.219px + 1.096vw, 20px);
  font-weight: 700;
  min-width: 160px;
  width: max-content;
  padding-left: 6px;
}

@media (max-width: 1024px) {
  .lp-jumbotron__item {
    padding: 2px 5px 2px 2px;
    min-width: auto;
  }
}

.lp-jumbotron__item-icon {
  display: block;
  width: clamp(1.5rem, 0.223rem + 2.877vw, 2.813rem);

  & img {
    width: 100%;
  }
}

.lp-jumbotron__image-wrapper {
  max-width: 650px;
}