/* ---------- 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-14: 0.875rem;/* 14px */
  --font-size-15: 0.9375rem;/* 15px */
  --font-size-16: 1rem;/* 16px */
  --font-size-18: 1.125rem;/* 18px */
  --font-size-20: 1.25rem;/* 20px */
  --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;
}

/* ---------- navigation ---------- */
.lp-navigation {
  position: relative;
  z-index: 1;
}

.lp-navigation__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  max-width: 1520px;
  padding: 0 20px;
  margin-inline: auto;
  gap: 2px;
}

.lp-navigation__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  border: 1px solid #FFF;
  background-color: #FFF;
  box-shadow: 0 0 8px 0 rgba(5, 36, 142, 0.20);
  cursor: pointer;
  overflow: hidden;
}

.lp-navigation__item::after {
  background: #5479FC;
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.3s ease-in-out;
}

.lp-navigation__text {
  position: relative;
  z-index: 1;
  font-size: clamp(14px, 0.5556vw + 7.333px, 18px);
  font-weight: 700;
  line-height: 1.5;
  background: linear-gradient(91deg, #5479FC 0%, #05248E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-navigation__item.is-active {
  border: 1px solid #FFF;
  background: linear-gradient(94deg, #5479FC 0%, #05248E 100%);
  box-shadow: 0 0 8px 0 rgba(5, 36, 142, 0.20);
  background-clip: border-box;
  -webkit-background-clip: border-box;
}

.lp-navigation__item.is-active .lp-navigation__text {
  color: #fff;
  background: none;
  -webkit-text-fill-color: unset;
  background-clip: border-box;
  -webkit-background-clip: border-box;
}

.lp-navigation__item:first-child {
  border-radius: 50px 0 0 50px;
}

.lp-navigation__item:last-child {
  border-radius: 0 50px 50px 0;
}

@media (hover: hover) {
  .lp-navigation__item:not(.lp-navigation__button):not(.is-active):hover::after{
    opacity: 1;
  }

  .lp-navigation__item:not(.lp-navigation__button):not(.is-active):hover .lp-navigation__text {
    color: #fff;
    background: none;
    -webkit-text-fill-color: unset;
    background-clip: border-box;
    -webkit-background-clip: border-box;
  }
}

.lp-navigation__button {
  display: inline-block;
}

.lp-navigation__button::after {
  content: none;
}

.lp-navigation__button a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: linear-gradient(94deg, #EA0437 0%, #D10431 100%);
  box-shadow: 0 0 8px 0 rgba(5, 36, 142, 0.20);
  text-decoration: none;
}

.lp-navigation__button a::after {
  background: #c6002a;
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.3s ease-in-out;
}

.lp-navigation__button-text {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(14px, 0.5556vw + 7.333px, 18px);
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}

.lp-navigation__button-icon {
  width: 32px;
  height: 32px;
  fill: #fff;
}

@media (hover: hover) {
  .lp-navigation__button a:hover::after{
    opacity: 1;
  }
}

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


/* ---------- 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--active-outside-01.lp-layout-wrapper::before {
  opacity: 0;
}
.lp-layout-wrapper--active-outside-01.lp-layout-wrapper::after {
  opacity: 1;
}

.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/198499002/198499002_img_bg_01.jpg) center center / cover no-repeat;
  content: "";
  pointer-events: none;
}

@media (max-width: 1200px) {
  .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--pc-wide {
  padding: 30px 0;
}

.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__column--gap-0 {
  gap: 0;
}

.lp-section__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.lp-section__layout--gap-0 {
  column-gap: 0;
}

.lp-section__layout .lp-section__image {
  grid-area: 1 / 1 / span 2;
}

.lp-section__layout .lp-tabContent {
  align-self: end;
}

.lp-section__layout .lp-buttonConversion-wrapper {
  align-self: flex-start;
}

.lp-section__image {
  max-width: clamp(33.75rem, 25.850rem + 16.479vw, 45.625rem);
}

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

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

  .lp-section--pc-wide {
    padding: 40px 0;
  }

  .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/198499002/198499002_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;
  }

  .lp-section__layout {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .lp-section__layout .lp-tabContent {
    align-self: center;
  }
  
  .lp-section__layout .lp-buttonConversion-wrapper {
    align-self: center;
  }
}

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

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

  .lp-section--no-both-space-sp {
    padding-right: 0;
    padding-left: 0;
  }
}

/* ---------- hero ---------- */
.lp-hero {
  position: relative;
  padding-right: clamp(6.875rem, 4.380rem + 5.204vw, 10.625rem);
}

.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 {
    padding-right: 0;
  }

  .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;
  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--narrow {
  margin-top: 30px;
}

.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;
  }
}

/* ---------- tabContent ---------- */
.lp-tabContent__title {
  font-size: clamp(34px, 0.8333vw + 24px, 40px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 32px;
  text-align: center;
}

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

.lp-tabContent__title--emphasis {
  background: linear-gradient(180deg, #5479FC 0%, #05248E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-tabContent__body-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.lp-tabContent__label-wrapper {
  display: flex;
  align-self: center;
  justify-self: center;
  box-shadow: 0 0 8px 0 #5479FC;
  background-color: #fff;
  padding: 8px 16px;
}

.lp-tabContent__label {
  font-size: var(--font-size-16);
  font-weight: 700;
  background: linear-gradient(94deg, #5479FC 0%, #05248E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.lp-tabContent__subtitle {
  margin: 0;
  color: #05248E;
  font-size: var(--font-size-20);
  font-weight: 700;
  line-height: 1;
}

.lp-tabContent__text {
  margin: 0;
  text-align: center;
  font-size: var(--font-size-16);
  font-weight: 500;
  line-height: 1.5;
}

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

.lp-tabContent__card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 630px;
  margin-inline: auto;
  padding: 24px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 8px 0 rgba(5, 36, 142, 0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.lp-tabContent__card-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 12px;
}

.lp-tabContent__card-inner::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  content: "";
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(84, 121, 252, 1) 50%,
      rgba(255, 255, 255, 0) 100%);
}

.lp-tabContent__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.lp-tabContent__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  background-color: #5479FC;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
}

.lp-tabContent__card-title {
  margin: 0;
  font-size: var(--font-size-20);
  font-weight: 700;
  color: #05248e;
  line-height: 1.3;
}

.lp-tabContent__card-text {
  margin: 0;
  font-size: var(--font-size-16);
  font-weight: 500;
  color: #333;
  line-height: 1.3;
}

.lp-tabContent__card-text--emphasis {
  font-weight: 700;
  color: #5479FC;
}

.lp-tabContent__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.lp-tabContent__media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.80);
  box-shadow: 0 0 8px 0 rgba(5, 36, 142, 0.25);
  backdrop-filter: blur(4px);
  padding: 16px 24px;
  max-width: 400px;
}

.lp-tabContent__media-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-20);
  color: #05248E;
  text-align: center;
  font-weight: 700;
  line-height: 2.2;
}

.lp-tabContent__media-title::after {
  content: "";
  display: block;
  margin: 12px 0;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, rgba(84, 121, 252, 0.00) 0%, #5479FC 50%, rgba(84, 121, 252, 0.00) 100%);
}

.lp-tabContent__image {
  display: block;
  max-width: 636px;
  margin-inline: auto;
  margin-bottom: 12px;
}

.lp-tabContent__image--not-space {
  margin-bottom: 0;
}

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

.lp-tabContent__media-text {
  margin: 0;
  font-size: var(--font-size-16);
  color: #333;
  text-align: center;
  font-weight: 500;
  line-height: 1.3;
}

.lp-tabContent__point-number-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.lp-tabContent__point-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(1.125rem, 0.018rem + 2.309vw, 1.75rem);;
  height: clamp(1.125rem, 0.018rem + 2.309vw, 1.75rem);;
  padding: 10px;
  border-radius: 40px;
  background-color: #5479FC;
  color: #fff;
  font-size: clamp(0.875rem, -0.011rem + 1.848vw, 1.375rem);
  font-weight: 700;
}

@media (min-width: 1201px) {
  .lp-tabContent__point-number-wrapper {
    display: none;
  }
}

@media (max-width: 1200px) {
  .lp-tabContent__text {
    font-size: clamp(1rem, -0.107rem + 2.309vw, 1.625rem);
  }

  .lp-tabContent__title {
    font-size: clamp(1.5rem, 0.171rem + 2.771vw, 2.25rem);
    text-align: center ;
    margin-bottom: 16px;
  }

  .lp-tabContent__body-inner {
    margin-bottom: 16px;
    gap: 8px;
  }

  .lp-tabContent__flex {
    flex-direction: column-reverse;
    align-items: normal;
    gap: 24px;
  }

  .lp-tabContent__grid {
    grid-template-columns: auto;
    margin-top: 24px;
  }

  .lp-tabContent__label {
    font-size: clamp(0.875rem, -0.454rem + 2.771vw, 1.625rem);
  }

  .lp-tabContent__subtitle {
    font-size:clamp(1.125rem, -0.425rem + 3.233vw, 2rem);
  }

  .lp-tabContent__card-inner {
    align-items: center;
  }

  .lp-tabContent__tag {
    font-size: clamp(0.875rem, -0.011rem + 1.848vw, 1.375rem);
  }

  .lp-tabContent__card-wrapper {
    padding: 32px;
  }

  .lp-tabContent__card-title {
    font-size: clamp(1.125rem, -0.425rem + 3.233vw, 2rem);
  }

  .lp-tabContent__card-text {
    font-size: clamp(0.938rem, -0.280rem + 2.54vw, 1.625rem);
  }

  .lp-tabContent__media {
    max-width: 630px;
    margin-inline: auto;
    padding: 32px;
  }

  .lp-tabContent__media-title {
    font-size: clamp(1.125rem, -0.425rem + 3.233vw, 2rem);
  }

  .lp-tabContent__media-text {
    font-size: clamp(0.938rem, -0.280rem + 2.54vw, 1.625rem);
  }

  .lp-tabContent__card-inner::before {
    content: none;
  }
}

@media (max-width: 767px) {

  .lp-tabContent__card-wrapper {
    padding: 16px 0;
  }

  .lp-tabContent__media {
    padding: 16px 24px;
    gap: 8px;
  }

  .lp-tabContent__media-title::after {
    margin: 8px 0;
  }

  .lp-tabContent__flex-item--wide-sp {
    padding: 0 24px;
  }

}

/* ---------- point ---------- */
.lp-point {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 4px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 0px 8px 0px rgba(5, 36, 142, 0.25);
  margin-bottom: 40px;
  max-width: 630px;
  margin-inline: auto;
}

.lp-point__title {
  margin: 0;
  font-size: clamp(1.25rem, -0.079rem + 2.771vw, 2rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #333333;
}

.lp-point__title--emphasis {
  color: #5479FC;
}

.lp-point__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-inline: auto;
}

.lp-point__item {
  display: flex;
  gap: 4px;
  align-items: center;
}

.lp-point__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(1.125rem, 0.239rem + 1.848vw, 1.625rem);
  height: clamp(1.125rem, 0.239rem + 1.848vw, 1.625rem);
  padding: 10px;
  border-radius: 40px;
  background-color: #5479FC;
  color: #fff;
  font-size: clamp(0.875rem, 0.211rem + 1.386vw, 1.25rem);
  font-weight: 700;
  flex-shrink: 0;
}

.lp-point__title-text {
  font-size: clamp(0.938rem, -0.059rem + 2.079vw, 1.5rem);
  font-weight: 500;
  line-height: 1.3;
  color: #333333;
  text-decoration: none;
}

.lp-point__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-point__icon::after {
  content: '';
  width: 12px;
  height: 9px;
  background-color: #5479FC;
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
}
@media (min-width: 1201px) {
  .lp-point {
    display: none;
  }
}

/* ---------- 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;
}