/* ---------- reset ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

p {
  margin-bottom: 16px;
}

ul,
ol {
  list-style: none;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-size: 1em;
  font-family: monospace;
}

a {
  background-color: transparent;
  text-decoration: underline;
}

a:hover,
a:active,
a:focus {
  text-decoration: none;
}

abbr[title] {
  border-bottom: 0;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bold;
}

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

dfn,
cite {
  font-style: normal;
}

code,
kbd,
samp {
  font-size: 1em;
  font-family: monospace;
}

small {
  font-size: 100%;
}

i {
  font-style: italic;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  max-width: 100%;
  border-style: none;
  vertical-align: bottom;
}

table {
  width: 100%;
  border-collapse: collapse;
}

button,
input,
optgroup,
select,
textarea {
  border-radius: 0;
  font-size: 100%;
  line-height: inherit;
  font-family: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  border: 0;
  background: none;
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: none;
}

legend {
  display: table;
  max-width: 100%;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/* ---------- base ---------- */
:root {
  /* font size */
  --font-size-13: 0.8125rem;/* 13px */
  --font-size-16: 1rem;/* 16px */
  --font-size-18: 1.125rem;/* 18px */
  --font-size-22: 1.375rem;/* 22px */
  --font-size-24: 1.5rem;/* 24px */
  --font-size-28: 1.75rem;/* 28px */
  --font-size-30: 1.875rem;/* 30px */
  --font-size-44: 2.75rem;/* 44px */
  --font-size-48: 3rem;/* 48px */
  --font-size-56: 3.5rem;/* 56px */
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


html {
  font-size: 100%;
}

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

.sp-only {
  display: none;
}

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

/* ---------- header ---------- */
.lp-layout-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.60) 0%, rgba(255, 255, 255, 0.00) 100%);
  backdrop-filter: blur(2px);
}

.lp-layout-header__content {
  max-width: 1520px;
  padding: 24px 20px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-layout-header__logo {
  display: block;
  width: 160px;
  line-height: 1;
}

.lp-layout-header__logo img {
  width: 100%;
}

@media (max-width: 1200px) {
  .lp-layout-header {
    padding-bottom: 8px;
    background: #DAE2F7;
  }

  .lp-layout-header__content {
    padding: 18px 24px;
    justify-content: center;
  }

  .lp-layout-header__list {
    display: none;
  }

  .lp-layout-header__logo {
    width: 92px;
  }

}

/* ---------- textPhone ---------- */
.lp-textPhone {
  line-height: 1;
}

.lp-textPhone__body {
  display: inline-block;
  text-decoration: none;
  cursor: default;
  color: #333;
}

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

.lp-textPhone__number {
  font-size: var(--font-size-24);
  font-weight: 700;
}

.lp-icon {
  width: 37.5px;
  height: 37.5px;
  fill: #277a80;
}

/* ---------- footer ---------- */
.lp-layout-footer {
  padding: 20px 0;
  background-color: #080808;
}

.lp-layout-footer__content {
  max-width: 1400px;
  margin-inline: auto;
  padding: 0 20px;
}

.lp-layout-footer__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: var(--font-size-13);
  text-align: center;
}

.lp-layout-footer__list>li {
  display: flex;
  justify-content: center;
}

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

@media (hover: hover) {
  .lp-layout-footer__list>li>a:hover {
    text-decoration: underline;
  }
}

.lp-layout-footer__list>li+li {
  position: relative;
  margin-left: 16px;
  padding-left: 16px;
}

.lp-layout-footer__list>li+li::before {
  position: absolute;
  top: 50%;
  left: 0;
  height: 14px;
  transform: translateY(-50%);
  border-left: 1px solid #fff;
  content: "";
}

.lp-layout-footer__list>li>ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.lp-layout-footer__list>li>ul>li>a {
  color: #fff;
  text-decoration: none;
}

.lp-layout-footer__list>li>ul>li+li {
  position: relative;
  margin-left: 16px;
  padding-left: 16px;
}

.lp-layout-footer__list>li>ul>li+li::before {
  position: absolute;
  top: 50%;
  left: 0;
  height: 14px;
  transform: translateY(-50%);
  border-left: 1px solid #fff;
  content: "";
}

.lp-layout-footer__copyright {
  color: #fff;
}

@media (max-width: 767px) {
  .lp-layout-footer {
    padding: 40px 0;
  }

  .lp-layout-footer__list {
    row-gap: 19px;
  }

  .lp-layout-footer__list>li+li {
    margin-left: 30px;
    padding-left: 30px;
  }

  .lp-layout-footer__list>li+.lp-layout-footer__copyright {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .lp-layout-footer__list>li+.lp-layout-footer__copyright::before {
    content: none;
  }
}

/* ---------- wrapper ---------- */
.lp-layout-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.lp-layout-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 1;
  background: 
    linear-gradient(102deg, rgba(84, 121, 252, 0.00) 0%, rgba(84, 121, 252, 0.20) 100%), 
    linear-gradient(180deg, #A9BADE 0%, #FFF 100%);
  content: "";
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

.lp-layout-wrapper::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: linear-gradient(180deg, #EDF1F9 0%, rgba(255, 255, 255, 0.80) 100%);
  content: "";
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

.lp-layout-wrapper__background-color-use::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background: url(/img/products/vl-800/198499001/198499001_img_bg_01.jpg) center center / cover no-repeat;
  content: "";
  pointer-events: none;
}

@media (max-width: 1200px) {
  .lp-layout-wrapper {
    min-height: auto;
  }

  .lp-layout-wrapper:before,
  .lp-layout-wrapper:after {
    content: none;
  }

  .lp-layout-wrapper__background-color-use {
    display: none;
  }

  .lp-layout-wrapper__background-color-use::after {
    content: none;
  }
}

/* ---------- section ---------- */
.lp-section {
  display: none;
}

.lp-section.is-active {
  display: block;
  animation: fadeIn 0.4s linear 0s;
  animation-fill-mode: forwards;
}

.lp-section__column {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.lp-section__column--wide {
  gap: clamp(2.5rem, -2.708rem + 6.944vw, 5.625rem);
}

.lp-section__image {
  max-width: clamp(540px, 27.7778vw + 206.6667px, 740px);
}

.lp-section__image img {
  width: 100%;
}

@media (max-width: 1200px) {
  .lp-section {
    display: block;
    padding: 40px 0;
    background-color: #F1F4FA;
  }

  .lp-section:first-child {
    position: relative;
    z-index: 1;
  }

  .lp-section:first-child::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/img/products/vl-800/198499001/198499001_img_bg_01.jpg) center bottom / cover no-repeat;
    z-index: -1;
    opacity: 0.6;
  }

  .lp-section:first-child::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(84, 121, 252, 0.20) 0%, rgba(84, 121, 252, 0.20) 100%), linear-gradient(180deg, #BDC9E2 0%, #FFF 100%);
    z-index: -2;
  }

  .lp-section:first-child {
    padding-top: 0;
  }

  .lp-section__column {
    flex-direction: column;
  }

  .lp-section__column--wide {
    gap: 12px;
  }

  .lp-section__column--reverse {
    flex-direction: column-reverse;
  }
}

@media (max-width: 767px) {
  .lp-section {
    padding: 20px 24px;
  }

  .lp-section:last-child {
    padding-bottom: 40px;
  }
}

/* ---------- hero ---------- */
.lp-hero {
  position: relative;
}

.lp-hero__title {
  font-size: clamp(68px, 1.6667vw + 48px, 80px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}

.lp-hero__title--emphasis {
  font-size: clamp(72px, 2.7778vw + 38.6667px, 92px);
  font-weight: 700;
  background: linear-gradient(180deg, #5479FC 0%, #05248E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-hero__title--deco {
  font-size: clamp(2.125rem, 1.210rem + 1.908vw, 3.5rem);
  margin-bottom: clamp(1.25rem, 0.834rem + 0.867vw, 1.875rem);
}

.lp-hero__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

}

.lp-hero__label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  font-size: var(--font-size-22);
  font-weight: 700;
  color: #5479FC;
  line-height: 1;
  background-image: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0.48) 68.1%, rgba(255, 255, 255, 0.64) 85.38%, rgba(255, 255, 255, 0.80) 100%);
  border-radius: 50%;
}

.lp-hero__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}

.lp-hero__product {
  font-size: var(--font-size-22);
  font-weight: 700;
  color: #05248e;
  line-height: 1;
}

.lp-hero__series {
  font-size: var(--font-size-28);
  font-weight: 700;
  color: #05248e;
  line-height: 1;
}

.lp-hero__series em {
  font-size: var(--font-size-44);
  font-style: normal;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .lp-hero__text {
    gap: 4px;
  }
}

@media (max-width: 767px) {
  .lp-hero__content {
    gap: 8px;
  }

  .lp-hero__title {
    font-size: var(--font-size-48);
  }

  .lp-hero__title--emphasis {
    font-size: var(--font-size-56);
  }

  .lp-hero__product {
    font-size: var(--font-size-18);
  }

  .lp-hero__series {
    font-size: var(--font-size-18);
  }

  .lp-hero__series em {
    font-size: var(--font-size-30);
  }

  .lp-hero__label {
    width: 60px;
    height: 60px;
    font-size: var(--font-size-16);
  }
}

/* ---------- main ---------- */
.lp-layout-main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 1200px) {
  .lp-layout-main {
    display: block;
    margin: 0;
    padding: 0;
  }
}

/* ---------- buttonConversion ---------- */
.lp-buttonConversion-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-buttonConversion {
  position: relative;
  margin-top: 64px;
  border-radius: 50px;
  overflow: hidden;
  text-decoration: none;
}

.lp-buttonConversion::before {
  content: "";
  display: block;
  position: absolute;
  margin: auto;
  aspect-ratio: 1 / 1;
  inset: 0;
  rotate: -25deg;
  background: linear-gradient(135deg, #05248E 0%, #5479FC 20%, rgba(84, 121, 252, 0.40) 50%, #5479FC 87.5%, #05248E 100%);
  content: "";
}

.lp-buttonConversion-body {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 54px;
  border-radius: 50px;
  background-color: #fff;
  margin: 4px;
  gap: 4px;
}

.lp-buttonConversion-text {
  font-size: var(--font-size-18);
  font-weight: 700;
  color: #ea0437;
  line-height: 1;
  text-align: center;
}

.lp-buttonConversion__icon {
  width: 37.5px;
  height: 37.5px;
  fill: #EA0437;
}

@media (hover: hover) {
  .lp-buttonConversion:hover::before {
    animation: rotate 1s ease-out 1;
  }

  .lp-buttonConversion:hover::after {
    background-color: #f5f5f5;
  }
}

@media (max-width: 1200px) {
  .lp-buttonConversion {
    margin-top: 24px;
  }
}

@media (max-width: 767px) {
  .lp-buttonConversion-body {
    padding: 18px 20px;
  }

  .lp-buttonConversion-text {
    font-size: var(--font-size-16);
  }

  .lp-buttonConversion__icon {
    width: 24px;
    height: 24px;
  }
}


/* ---------- lp-footer-textPhone ---------- */

@media (min-width: 1201px) {
  .lp-footer-textPhone {
    display: none;
  }
}

.lp-footer-textPhone {
  padding: 20px 0 40px;
  background-color: #F1F4FA;
}

a.lp-footer-textPhone-body {
  color: currentColor;
  text-decoration: none;
  cursor: default;
}

.lp-footer-textPhone-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: center;
}

.lp-footer-textPhone-body > *:last-child {
  margin-bottom: 0;
}

.lp-footer-textPhone-numberGroup {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-footer-textPhone-number {
  font-size: var(--font-size-24);
  font-weight: bold;
  line-height: 1.45;
}
.lp-footer-textPhone-note {
  display: block;
  margin-bottom: 8px;
  font-size: var(--font-size-13);
  line-height: 1.41;
}

.lp-footer-textPhone-icon {
  width: 36px;
  min-width: 36px;
  height: 20px;
  min-height: 20px;
}

.lp-footer-textPhone-icon .of-iconColor-primary {
  fill: #00a23f;
}
