@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

ol, ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

img, video, iframe {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: middle;
}

html {
  margin-top: 0 !important;
}

body {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 1.111vw, 16px);
  color: #000;
  background-color: #fff;
  line-height: 1.5;
  width: 100%;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
}
body a {
  color: #000;
}

a {
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
a:hover {
  opacity: 0.7;
}

h2, h3, h4, h5, h6 {
  font-size: 16px;
}

/* utility 
====================================== */
@media (max-width: 1280px) {
  .xl_only {
    display: none;
  }
}

@media (max-width: 959px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media (max-width: 768px) {
  .sp_only {
    display: block;
  }
}

.tb_only {
  display: none;
}
@media (max-width: 959px) {
  .tb_only {
    display: block;
  }
}
@media (max-width: 768px) {
  .tb_only {
    display: none;
  }
}

@media (max-width: 768px) {
  .pc_tb {
    display: none;
  }
}

.tb_sp {
  display: none;
}
@media (max-width: 959px) {
  .tb_sp {
    display: block;
  }
}

/* ------------------------------------------
アニメーション
------------------------------------------- */
/* タイトルスライドイン
========================================= */
.slide-in {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}

.slide-in_inner {
  display: inline-block;
  vertical-align: top;
}

.leftAnime {
  opacity: 0;
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
/* svg 線を描くアニメーション */
.stroke path {
  fill: transparent;
  stroke: transparent;
}

.is-stroke path {
  animation: stroke 1.5s ease-in-out forwards;
  fill: #fff;
  stroke: #fff;
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
  stroke-width: 2;
}

@keyframes stroke {
  0% {
    stroke-dashoffset: 2000;
    fill: transparent;
  }
  70% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}
/* ぼかしフェードイン
======================================== */
.blur {
  opacity: 0;
}

.is-blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: translate(20px, -20px) scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}
/* ふわふわ
======================================== */
.anime-upDown {
  animation: 3s upDown infinite;
}

@keyframes upDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
/* フェードイン（基本）
======================================== */
.fadeIn, .fadeUpDown, .fadeLeftRight, .fadeRightLeft, .fadeInOpacity, .fv_fadeRightLeft, .fv_fadeInOpacity,
.fadeInSP, .fadeUpDownSP, .fadeLeftRightSP, .fadeRightLeftSP {
  opacity: 0;
  animation-fill-mode: forwards;
  transition: opacity 1s, visibility 1s, transform 1s;
}

.fadeIn_PC_TB {
  opacity: 0;
  animation-fill-mode: forwards;
  transition: opacity 1s, visibility 1s, transform 1s;
}
@media (max-width: 768px) {
  .fadeIn_PC_TB {
    opacity: 1;
  }
}

.is-fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.is-fadeInSP {
  animation-name: fadeInAnimeSP;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.is-fadeUpDown {
  animation-name: fadeUpDownAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpDownAnime {
  from {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.is-fadeUpDownSP {
  animation-name: fadeUpDownAnimeSP;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpDownAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.is-fadeLeftRight {
  animation-name: fadeLeftRightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftRightAnime {
  from {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}
.is-fadeLeftRightSP {
  animation-name: fadeLeftRightAnimeSP;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftRightAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}
.is-fadeRightLeft {
  animation-name: fadeRightLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightLeftAnime {
  from {
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}
.is-fadeRightLeftSP {
  animation-name: fadeRightLeftAnimeSP;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightLeftAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}
.is-fadeInOpacity {
  animation-name: fadeInOpacityAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInOpacityAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* フェードイン（時間差）
======================================== */
.delayScroll > * {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUpSP {
  animation-name: fadeUpAnimeSP;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnimeSP {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.parallax {
  overflow: hidden;
}
.parallax img {
  transform: translateZ(0) scale(1.2, 1.2);
}

/*　遅延時間
======================================== */
.delay-time_05s {
  animation-delay: 0.5s;
}

.delay-time_1s {
  animation-delay: 1s;
}

.delay-time_2s {
  animation-delay: 2s;
}

.delay-time_3s {
  animation-delay: 3s;
}

.delay-time_n1 {
  animation-delay: 2s;
}

.delay-time_n2 {
  animation-delay: 2.5s;
}

/* section common
====================================== */
.section__inner {
  width: 80%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 6em 1.5em;
  position: relative;
  z-index: 0;
}
@media (max-width: 768px) {
  .section__inner {
    width: 90%;
    padding: 4em 0;
  }
}
.section__inner.--s {
  max-width: 896px;
}
.section__inner.--l {
  width: 90%;
  max-width: 1280px;
}
@media (max-width: 768px) {
  .section__inner.--l {
    width: 90%;
  }
}
.section__title {
  margin-bottom: 5em;
}
@media (max-width: 768px) {
  .section__title {
    margin-bottom: 2.5em;
  }
}
.section__title-en {
  text-transform: uppercase;
  font-size: 5em;
  color: #76B4B5;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .section__title-en {
    font-size: 3em;
  }
}
.section__title-jp {
  text-align: center;
}

body.page-template-lp-template .layout-main {
  width: 100%;
  max-width: 100%;
  background: inherit;
  margin-top: 100px;
  padding-top: 0;
}
@media (max-width: 959px) {
  body.page-template-lp-template .layout-main {
    margin-top: 56px;
    padding-left: 0;
    padding-right: 0;
  }
}
body.page-template-lp-template .layout-main__pagetop::before {
  opacity: 1;
}

.lp-cases.--green {
  background-color: #D8E2E6;
}
.lp-cases.--white {
  background-color: #fff;
}
.lp-cases__title {
  font-size: 1.75em;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
  border-left: 6px solid #195972;
  padding-left: 10px;
  margin-bottom: 2.5em;
}
@media (max-width: 768px) {
  .lp-cases__title {
    font-size: 1.25em;
    margin-bottom: 2em;
  }
}
@media (max-width: 768px) {
  .lp-cases__wrapper {
    margin: 0 16px;
  }
}
.lp-cases .splide__track {
  overflow: visible;
}
.lp-cases .splide__arrow {
  position: absolute;
  top: 47%;
  z-index: 1;
}
.lp-cases .splide__arrow.splide__arrow--prev {
  outline: none;
  left: 0;
  transform: translateX(-50%);
}
.lp-cases .splide__arrow.splide__arrow--prev::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../img/common/btn-slide.svg) no-repeat center center/contain;
  transform: rotate(180deg);
}
.lp-cases .splide__arrow.splide__arrow--next {
  outline: none;
  right: 0;
  transform: translateX(50%);
}
.lp-cases .splide__arrow.splide__arrow--next::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../img/common/btn-slide.svg) no-repeat center center/contain;
}
.lp-cases .splide__arrow:disabled {
  opacity: 0.5;
}
.lp-cases .splide__arrow svg {
  display: none;
}
.lp-cases__list {
  display: flex;
}
.lp-cases__item {
  width: 33.3333333333%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .lp-cases__item {
    width: 100%;
  }
}
.lp-cases__item-image {
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-cases__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 347/231;
}
.lp-cases__item-title {
  display: inline-block;
  font-size: 0.75em;
  background-color: #76B4B5;
  color: #fff;
  padding: 0.5em 1em;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 0.5em;
}
.lp-cases__item-sub {
  font-size: 1em;
  font-weight: bold;
  color: #195972;
  line-height: 1.625;
  margin-bottom: 1.5em;
}
@media (max-width: 768px) {
  .lp-cases__item-sub {
    font-size: 0.875em;
  }
}
.lp-cases__item-text {
  font-size: 1em;
  color: #195972;
  font-weight: 600;
  line-height: 1.5;
}

.lp-cta {
  position: relative;
  z-index: 0;
  width: 100%;
}
.lp-cta > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.lp-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(7, 41, 52, 0.9) 19.66%, rgba(21, 121, 154, 0) 100%);
  z-index: -1;
}
.lp-cta__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3.75em;
  padding-bottom: 3.75em;
  gap: 1em;
}
@media (max-width: 768px) {
  .lp-cta__inner {
    padding-top: 2.5em;
    padding-bottom: 2.5em;
    flex-direction: column;
  }
}
.lp-cta__title {
  font-size: 1.75em;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 1.25rem;
}
@media (max-width: 959px) {
  .lp-cta__title {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .lp-cta__title {
    font-size: 1.25em;
    margin-bottom: 1em;
  }
}
.lp-cta__lead {
  font-size: 1.25em;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 1.25rem;
}
@media (max-width: 768px) {
  .lp-cta__lead {
    font-size: 0.875em;
  }
}
.lp-cta__buttons {
  display: flex;
  align-items: center;
  gap: 1em;
  flex-wrap: wrap;
  margin-top: 2.5em;
}
@media (max-width: 959px) {
  .lp-cta__buttons {
    flex-direction: column;
    justify-content: center;
    margin-top: 1.25em;
  }
}
@media (max-width: 768px) {
  .lp-cta__buttons {
    gap: 1em;
  }
}
.lp-cta__button {
  width: 100%;
  max-width: 400px;
  height: 80px;
  position: relative;
  border-radius: 0;
}
@media (max-width: 768px) {
  .lp-cta__button {
    width: 100%;
    height: 48px;
    margin: 0 auto;
  }
}
.lp-cta__button a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 1.5em;
  font-weight: 500;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .lp-cta__button a {
    font-size: 1em;
  }
}
.lp-cta__button a.text-white {
  color: #fff;
}
.lp-cta__button a.text-black {
  color: #195972;
}
.lp-cta__button a::after {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background: url(../img/common/icon_arrow-green.svg) no-repeat center center/contain;
}

.lp-btns {
  width: 100%;
  display: none;
}
@media (min-width: 768px) {
  .lp-btns.--pc {
    display: block;
  }
}
@media (max-width: 767px) {
  .lp-btns.--sp {
    display: block;
  }
}
.lp-btns__inner {
  padding-top: 2em;
  padding-bottom: 2em;
}
@media (max-width: 768px) {
  .lp-btns__inner {
    padding-top: 1.25em;
    padding-bottom: 1.25em;
  }
}
.lp-btns__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .lp-btns__buttons {
    flex-direction: column;
    gap: 1em;
  }
}
.lp-btns__button {
  width: 100%;
  max-width: 400px;
  height: 80px;
  position: relative;
  border-radius: 0;
}
@media (max-width: 768px) {
  .lp-btns__button {
    width: 100%;
    height: 60px;
    margin: 0 auto;
  }
}
.lp-btns__button a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1.5em;
  font-weight: 500;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .lp-btns__button a {
    font-size: 1em;
  }
}
.lp-btns__button a.text-white {
  color: #fff;
}
.lp-btns__button a.text-black {
  color: #195972;
}

.lp-banner {
  position: relative;
  z-index: 0;
  width: 100%;
}
.lp-banner__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.lp-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(7, 41, 52, 0.9) 19.66%, rgba(21, 121, 154, 0) 100%);
  z-index: -1;
}
@media (max-width: 768px) {
  .lp-banner::before {
    background: linear-gradient(90deg, rgba(7, 41, 52, 0.9) 19.66%, rgba(21, 121, 154, 0.15) 100%);
  }
}
.lp-banner__inner {
  text-align: center;
  padding: 5em 1.5em;
}
@media (max-width: 768px) {
  .lp-banner__inner {
    text-align: left;
    padding: 5em 1em;
  }
}
.lp-banner__text-01 {
  font-size: 2em;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 0.75em;
}
@media (max-width: 768px) {
  .lp-banner__text-01 {
    font-size: 1em;
  }
}
.lp-banner__text-01 big {
  font-size: 1.5em;
}
.lp-banner__text-02 {
  font-size: 1.75em;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .lp-banner__text-02 {
    font-size: 1.5em;
  }
}
.lp-banner__text-03 {
  font-size: 2.25em;
  font-weight: 600;
  line-height: 1;
  color: #195972;
  letter-spacing: 0.05em;
  background-color: #fff;
  padding: 0.5em;
  gap: 0.5em;
  max-width: 670px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 768px) {
  .lp-banner__text-03 {
    font-size: 1.125em;
  }
}
.lp-banner__text-03 big {
  font-size: 1.778em;
  font-weight: 800;
  margin: 0 0.1em;
}
@media (max-width: 768px) {
  .lp-banner__text-03 big {
    font-size: 1.556em;
  }
}
.lp-banner__text-03 small {
  font-size: 0.667em;
}

.lp-faq {
  width: 100%;
}
.lp-faq.--green {
  background-color: #D8E2E6;
}
.lp-faq.--green .lp-faq__item {
  background-color: #fff;
}
.lp-faq.--white {
  background-color: #fff;
}
.lp-faq.--white .lp-faq__item {
  background-color: #D8E2E6;
}
.lp-faq__item {
  overflow: hidden;
  cursor: pointer;
  padding: 1.5em;
}
@media (max-width: 768px) {
  .lp-faq__item {
    padding: 1em;
  }
}
.lp-faq__item:nth-child(n+2) {
  margin-top: 1.5em;
}
.lp-faq__item.is-open .lp-faq__item__question .btn::after {
  transform: translateY(-50%);
}
.lp-faq__item__question {
  font-weight: bold;
  padding: 1em 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}
@media (max-width: 768px) {
  .lp-faq__item__question {
    font-size: 1em;
  }
}
.lp-faq__item__question-text {
  display: flex;
  gap: 0.5em;
}
.lp-faq__item__question-text .q {
  color: #195972;
  font-weight: bold;
  flex-shrink: 0;
}
.lp-faq__item__question .btn {
  width: 0.875em;
  height: 0.875em;
  display: block;
  flex-shrink: 0;
  position: relative;
}
.lp-faq__item__question .btn::before, .lp-faq__item__question .btn::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #9CA3AF;
  position: absolute;
  top: 50%;
  left: 0;
  transition: 0.3s;
}
.lp-faq__item__question .btn::before {
  transform: translateY(-50%);
}
.lp-faq__item__question .btn::after {
  transform: translateY(-50%) rotate(90deg);
}
.lp-faq__item__answer {
  padding: 1em 0;
  color: #4B5563;
  line-height: 1.625;
  border-top: 1px solid #C2C2C2;
}
@media (max-width: 768px) {
  .lp-faq__item__answer {
    font-size: 0.875em;
    line-height: 1.4;
  }
}
.lp-faq__item__answer-text {
  display: flex;
  gap: 0.5em;
}
.lp-faq__item__answer-text .a {
  flex-shrink: 0;
  font-weight: bold;
  color: #195972;
}

.lp-features.--gray {
  background-color: #eceaea;
}
.lp-features.--gray .lp-features__item {
  background-color: #fff;
}
.lp-features.--white {
  background-color: #fff;
}
.lp-features.--white .lp-features__item {
  background-color: #F9FAFB;
}
.lp-features.--black {
  background-color: #000;
}
.lp-features.--black .lp-features__title,
.lp-features.--black .lp-features__lead {
  color: #fff;
}
.lp-features.--black .lp-features__item {
  background-color: #fff;
}
.lp-features__list {
  display: flex;
  gap: 2em;
}
@media (max-width: 768px) {
  .lp-features__list {
    flex-direction: column;
  }
}
.lp-features__item {
  width: 33.3333333333%;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1019607843), 0px 4px 6px -4px rgba(0, 0, 0, 0.1019607843);
  background-color: #F9FAFB;
  border-radius: 16px;
  overflow: hidden;
  padding: 2em;
}
@media (max-width: 768px) {
  .lp-features__item {
    width: 100%;
  }
}
.lp-features__item-icon {
  background-color: #000;
  width: 4em;
  height: 4em;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5em;
}
@media (max-width: 768px) {
  .lp-features__item-icon {
    width: 3em;
    height: 3em;
  }
}
.lp-features__item-icon.--center {
  margin: 0 auto 1.5em;
}
.lp-features__item-icon span {
  font-family: "dashicons";
  font-size: 1.75em;
  color: #fff;
}
@media (max-width: 768px) {
  .lp-features__item-icon img {
    width: 1.5em;
    height: 1.5em;
  }
}
.lp-features__item-title {
  font-size: 1.5em;
  font-weight: bold;
  min-height: 3em;
  margin-bottom: 0.6667em;
}
@media (max-width: 768px) {
  .lp-features__item-title {
    font-size: 1.25em;
    min-height: inherit;
  }
}
.lp-features__item-text {
  font-size: 1.125em;
  color: #4B5563;
  line-height: 1.625;
}
@media (max-width: 768px) {
  .lp-features__item-text {
    font-size: 1em;
  }
}

.lp-features2 {
  width: 100%;
}
.lp-features2.--green {
  background-color: #D8E2E6;
}
.lp-features2.--white {
  background-color: #fff;
}
.lp-features2__lead {
  font-size: 1.125em;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  .lp-features2__lead {
    font-size: 1em;
  }
}
.lp-features2__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5em;
}
@media (max-width: 959px) {
  .lp-features2__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.lp-features2__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}
.lp-features2__item.--full {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .lp-features2__item.--full {
    grid-column: span 1;
  }
}
.lp-features2__item.--full .lp-features2__item-contents-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .lp-features2__item.--full .lp-features2__item-contents-inner {
    flex-direction: column;
  }
}
.lp-features2__item.--full .lp-features2__item-image {
  width: auto;
  flex-shrink: 0;
}
.lp-features2__item.--full .lp-features2__item-image img {
  width: auto;
}
@media (max-width: 768px) {
  .lp-features2__item.--full .lp-features2__item-image img {
    width: 100%;
  }
}
.lp-features2__item.--full .lp-features2__item-text {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  border-left: 1px solid #D8E2E6;
  padding-left: 1em;
  margin-left: 1em;
}
@media (max-width: 768px) {
  .lp-features2__item.--full .lp-features2__item-text {
    margin-top: 1em;
    padding-top: 1em;
    border-top: 1px solid #D8E2E6;
    border-left: none;
    padding-left: 0;
    margin-left: 0;
  }
}
.lp-features2__item-number {
  display: inline-block;
  font-size: 1.25em;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #195972;
  background-color: #D8E2E6;
  padding: 0.5em 1em 0;
  border-radius: 20px 20px 0 0;
}
@media (max-width: 768px) {
  .lp-features2__item-number {
    font-size: 1em;
    border-radius: 8px 8px 0 0;
  }
}
.lp-features2__item-contents {
  padding: 1.5em;
  background-color: #D8E2E6;
  border-radius: 0 20px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
}
@media (max-width: 768px) {
  .lp-features2__item-contents {
    padding: 1.5em 1em;
    border-radius: 0 8px 8px 8px;
  }
}
.lp-features2__item-contents-inner {
  background-color: #fff;
  padding: 1em;
  flex: 1;
}
.lp-features2__item-title {
  background-color: #072934;
  color: #fff;
  text-align: center;
  padding: 0.5em 1em;
  font-size: 1.25em;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .lp-features2__item-title {
    font-size: 1em;
  }
}
.lp-features2__item-image {
  width: 100%;
}
.lp-features2__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-features2__item-text {
  font-size: 0.875em;
  font-weight: 300;
  line-height: 1.6;
  margin-top: 1em;
  padding-top: 1em;
  border-top: 1px solid #D8E2E6;
}

.lp-features3.--green {
  background-color: #D8E2E6;
}
.lp-features3.--white {
  background-color: #fff;
}
.lp-features3__catch {
  text-align: center;
  font-weight: 800;
  color: #195972;
  font-size: 2.5em;
  margin-bottom: 1em;
}
.lp-features3__catch small {
  font-size: 0.7em;
}
@media (max-width: 768px) {
  .lp-features3__catch {
    font-size: 1.375em;
  }
  .lp-features3__catch small {
    font-size: 1em;
  }
}
.lp-features3__image {
  margin-bottom: 1.25em;
}
@media (max-width: 768px) {
  .lp-features3__image {
    margin: 0 calc(50% - 50vw) 1.25em;
    width: 100vw;
  }
  .lp-features3__image img {
    aspect-ratio: 375/320;
  }
}
.lp-features3__image-title {
  font-size: 1.5em;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.3;
  color: #195972;
  margin-bottom: 0.5em;
}
@media (max-width: 768px) {
  .lp-features3__image-title {
    font-size: 1.125em;
  }
}
@media (max-width: 768px) {
  .lp-features3__image-text {
    font-size: 0.875em;
  }
}
.lp-features3__container {
  margin-top: 6.25em;
}
@media (max-width: 768px) {
  .lp-features3__container {
    margin-top: 5em;
  }
}
@media (max-width: 768px) {
  .lp-features3__wrapper {
    margin: 0 16px;
  }
}
.lp-features3 .splide__track {
  overflow: visible;
}
.lp-features3 .splide__arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
}
.lp-features3 .splide__arrow.splide__arrow--prev {
  outline: none;
  left: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.lp-features3 .splide__arrow.splide__arrow--prev::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../img/common/btn-slide.svg) no-repeat center center/contain;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.lp-features3 .splide__arrow.splide__arrow--next {
  outline: none;
  right: 0;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}
.lp-features3 .splide__arrow.splide__arrow--next::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../img/common/btn-slide.svg) no-repeat center center/contain;
}
.lp-features3 .splide__arrow:disabled {
  opacity: 0.5;
}
.lp-features3 .splide__arrow svg {
  display: none;
}
.lp-features3__list {
  display: flex;
}
.lp-features3__list-title {
  font-size: 1.25em;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 800;
  margin-bottom: 2em;
}
.lp-features3__item {
  width: 25%;
}
@media (max-width: 768px) {
  .lp-features3__item {
    width: 100%;
  }
}
.lp-features3__item-image {
  width: 100%;
  margin-bottom: 1em;
}
.lp-features3__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 250/188;
}
.lp-features3__item-title {
  font-weight: 800;
  color: #195972;
  line-height: 1.5;
  margin-bottom: 0.5em;
}
.lp-features3__item-text {
  font-size: 0.875em;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.lp-features4.--green {
  background-color: #D8E2E6;
}
.lp-features4.--white {
  background-color: #fff;
}
.lp-features4.--white .lp-features4__catch-main::before {
  border: 2px solid #76B4B5;
}
.lp-features4.--white .lp-features4__item-title span {
  background-color: #195972;
  color: #fff;
}
.lp-features4__catch {
  text-align: center;
}
.lp-features4__catch-sub {
  font-size: 1.5em;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #195972;
  margin-bottom: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}
@media (max-width: 768px) {
  .lp-features4__catch-sub {
    font-size: 1em;
    align-items: flex-end;
  }
}
.lp-features4__catch-sub::before, .lp-features4__catch-sub::after {
  content: "";
  display: block;
  width: 1em;
  height: 1.5em;
}
.lp-features4__catch-sub::before {
  content: "＼";
}
.lp-features4__catch-sub::after {
  content: "／";
}
.lp-features4__catch-main {
  display: inline-block;
  padding: 0.8em 1.5em 0.5em;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #195972;
  font-size: 2em;
  line-height: 2;
  margin: 0 auto 1em;
  position: relative;
}
@media (max-width: 768px) {
  .lp-features4__catch-main {
    font-size: 1em;
    line-height: 1.5;
    padding: 0.5em 2em 0.5em;
  }
}
.lp-features4__catch-main b {
  font-size: 1.25em;
  display: inline-block;
  padding-top: 10px;
}
@media (max-width: 768px) {
  .lp-features4__catch-main b {
    font-size: 1.5em;
  }
}
.lp-features4__catch-main b span {
  position: relative;
  display: inline-block;
}
.lp-features4__catch-main b span::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -10%);
  background-color: #76B4B5;
}
@media (max-width: 768px) {
  .lp-features4__catch-main b span::before {
    width: 6px;
    height: 6px;
  }
}
.lp-features4__catch-main::before, .lp-features4__catch-main::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.lp-features4__catch-main::before {
  background-color: #fff;
  z-index: -1;
  transform: skew(-12deg);
}
.lp-features4__catch-main::after {
  background-color: #76B4B5;
  z-index: -2;
  transform: skew(-12deg) translate(10px, 10px);
}
.lp-features4__catch small {
  font-size: 0.7em;
}
@media (max-width: 768px) {
  .lp-features4__catch small {
    font-size: 1em;
  }
}
.lp-features4__list {
  margin-top: 5em;
  display: flex;
  flex-direction: column;
  gap: 6.25em;
}
.lp-features4__item {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .lp-features4__item {
    width: 100%;
    flex-direction: column;
    gap: 1.25em;
  }
}
.lp-features4__item:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .lp-features4__item:nth-child(even) {
    flex-direction: column;
  }
}
.lp-features4__item-contents {
  width: 50%;
  position: relative;
}
@media (max-width: 768px) {
  .lp-features4__item-contents {
    width: 100%;
  }
}
.lp-features4__item-number {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translate(-25%, -50%);
  color: rgba(118, 180, 181, 0.3);
  font-size: 6.25em;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .lp-features4__item-number {
    font-size: 5em;
  }
}
.lp-features4__item-catch {
  font-size: 1.25em;
  font-weight: 800;
  line-height: 1.3;
  color: #195972;
  letter-spacing: 0.05em;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .lp-features4__item-catch {
    font-size: 1em;
  }
}
.lp-features4__item-title {
  font-size: 2em;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.05em;
  margin-bottom: 0.5em;
}
@media (max-width: 768px) {
  .lp-features4__item-title {
    font-size: 1.375em;
  }
}
.lp-features4__item-title span {
  display: inline-block;
  background-color: #fff;
  padding: 0.15em 0.25em;
  margin-bottom: 8px;
}
.lp-features4__item-text {
  font-size: 0.875em;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.lp-features4__item-image {
  width: 43%;
}
@media (max-width: 768px) {
  .lp-features4__item-image {
    width: 100%;
  }
}
.lp-features4__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 488/366;
}

.lp-flow.--green {
  background-color: #D8E2E6;
}
.lp-flow.--white {
  background-color: #fff;
}
.lp-flow.--white .lp-flow__item {
  background-color: #D8E2E6;
}
.lp-flow.--white .lp-flow__item-icon {
  background-color: #fff;
}
.lp-flow__list {
  display: flex;
  flex-direction: column;
  gap: 2.5em;
}
.lp-flow__item {
  background-color: #fff;
  padding: 1.25em 2.5em;
}
@media (max-width: 768px) {
  .lp-flow__item {
    padding: 1em;
  }
}
.lp-flow__item:nth-child(n+2) {
  position: relative;
}
.lp-flow__item:nth-child(n+2)::before {
  content: "";
  display: block;
  width: 1px;
  height: 2.5em;
  background-color: #76B4B5;
  position: absolute;
  bottom: 100%;
  left: calc(2.5em + 60px);
}
@media (max-width: 768px) {
  .lp-flow__item:nth-child(n+2)::before {
    left: 50%;
  }
}
.lp-flow__item-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}
.lp-flow__item-icon {
  width: 120px;
  height: 120px;
  background-color: #D8E2E6;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .lp-flow__item-icon {
    width: 90px;
    height: 90px;
  }
}
.lp-flow__item-icon img {
  width: auto;
  margin: auto;
}
@media (max-width: 768px) {
  .lp-flow__item-icon img {
    width: 68px;
    height: 68px;
  }
}
.lp-flow__item-contents {
  width: calc(100% - 120px - 27px);
}
@media (max-width: 768px) {
  .lp-flow__item-contents {
    width: calc(100% - 90px - 16px);
  }
}
.lp-flow__item-title {
  display: flex;
  align-items: center;
  gap: 1em;
  color: #195972;
  font-weight: bold;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .lp-flow__item-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5em;
    margin-bottom: 0;
  }
}
.lp-flow__item-title-num {
  font-size: 0.75em;
  font-weight: 800;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 0.25em;
}
.lp-flow__item-title-num::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #195972;
  position: absolute;
  bottom: 0;
  left: 0;
}
.lp-flow__item-title-num .step {
  letter-spacing: 0.05em;
}
.lp-flow__item-title-num .num {
  font-size: 1.5em;
  letter-spacing: 0.05em;
  margin-left: 0.2em;
}
.lp-flow__item-title-text {
  font-size: 1.5em;
  color: #072934;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .lp-flow__item-title-text {
    font-size: 1.25em;
  }
}
.lp-flow__item-text {
  padding-left: 65px;
  font-weight: 300;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .lp-flow__item-text {
    padding-left: 0;
    margin-top: 1.25em;
  }
}

.lp-logos__inner {
  max-width: inherit;
  width: 100vw;
  padding: 1.5em 0;
}
@media (max-width: 768px) {
  .lp-logos__inner {
    padding: 1.5em 0 1em;
  }
}
.lp-logos__list {
  display: flex;
  align-items: center;
}
.lp-logos__item img, .lp-logos__item object {
  display: block;
  width: auto;
  max-width: 195px;
  height: 66px;
  display: block;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}
@media (max-width: 768px) {
  .lp-logos__item img, .lp-logos__item object {
    max-width: 100px;
    height: 30px;
  }
}

.lp-mv {
  position: relative;
  width: 100%;
  z-index: 0;
}
.lp-mv__inner {
  width: 100%;
  max-width: inherit;
  padding: 0;
  display: flex;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 959px) {
  .lp-mv__inner {
    width: 100%;
    flex-direction: column;
    padding: 17.5vw 0 0;
    gap: 5em;
  }
}
.lp-mv__contents {
  width: calc(100% - 332px);
  padding: clamp(170px, 11vw, 215px) 1em 1em;
}
@media (min-width: 1920px) {
  .lp-mv__contents {
    padding: clamp(170px, 12vw, 1000px) 1em 1em;
  }
}
@media (max-width: 959px) {
  .lp-mv__contents {
    padding: 0 4.2667% 1em 1.25em;
    width: 100%;
    background-color: #072934;
    position: relative;
  }
}
@media (max-width: 768px) {
  .lp-mv__contents {
    width: 100%;
  }
}
.lp-mv__contents::before {
  content: "";
  display: block;
  width: 100%;
  height: 5em;
  background: linear-gradient(0deg, #072934 0%, rgba(7, 41, 52, 0) 100%);
  position: absolute;
  bottom: 100%;
  left: 0;
  z-index: 1;
}
.lp-mv__contents-lower {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5%;
}
.lp-mv__image {
  position: relative;
  width: clamp(355px, 25vw, 1000px);
  margin: 0 auto 2em;
}
.lp-mv__image::before {
  content: "";
  display: block;
  padding-top: 56.327%;
}
.lp-mv__image img, .lp-mv__image video, .lp-mv__image iframe, .lp-mv__image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 1920px) {
  .lp-mv__image {
    width: clamp(355px, 27vw, 1000px);
  }
}
@media (max-width: 959px) {
  .lp-mv__image {
    width: 37%;
    margin: 0 auto 4em;
  }
}
.lp-mv__image img {
  width: 100%;
  height: 100%;
}
.lp-mv__text {
  display: inline-block;
  font-size: clamp(16px, 1.667vw, 24px);
  color: #fff;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.05em;
  margin-bottom: 0.667em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid #fff;
}
@media (max-width: 768px) {
  .lp-mv__text {
    font-size: 1em;
  }
}
.lp-mv__title img {
  width: 100%;
}
.lp-mv__box {
  margin-top: 2.5em;
}
@media (max-width: 959px) {
  .lp-mv__box {
    margin-top: 1.25em;
  }
}
.lp-mv__box-title {
  color: #fff;
  background-color: #195972;
  text-align: center;
  font-size: clamp(14px, 1.3889vw, 20px);
  line-height: 1.3;
  letter-spacing: 0.05em;
  font-weight: 600;
  padding: 0.4em;
}
.lp-mv__box-list {
  display: flex;
  justify-content: center;
  gap: 2em;
  padding: 2em 1.5em 1.5em;
  background-color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
  .lp-mv__box-list {
    gap: 0.5em;
    padding: 1em;
  }
}
.lp-mv__box-item {
  flex: 1;
}
.lp-mv__box-item-icon {
  margin: 0 auto 1em;
}
@media (max-width: 959px) {
  .lp-mv__box-item-icon {
    max-width: 48px;
    margin-bottom: 0.5em;
  }
}
.lp-mv__box-item-text {
  font-size: clamp(10px, 0.97222vw, 14px);
  line-height: 1.3;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-align: center;
}
.lp-mv__icons {
  align-items: center;
  gap: 1em;
}
@media (max-width: 959px) {
  .lp-mv__icons {
    margin-top: 1.25em;
    margin-bottom: 1em;
  }
}
.lp-mv__icons.tb_sp {
  display: none;
}
@media (max-width: 959px) {
  .lp-mv__icons.tb_sp {
    display: flex;
  }
}
.lp-mv__icons.pc_only {
  display: flex;
  flex-direction: column;
  padding: 2em;
  background-color: rgba(25, 89, 114, 0.4);
}
@media (max-width: 959px) {
  .lp-mv__icons.pc_only {
    display: none;
  }
}
.lp-mv__icon {
  width: 100%;
}
.lp-mv__icon img {
  width: 100%;
}
.lp-mv__form {
  width: 332px;
  background-color: #fff;
  height: 100%;
  padding: 2em 1em;
}
@media (max-width: 959px) {
  .lp-mv__form {
    display: none;
  }
}
.lp-mv__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}
@media (max-width: 959px) {
  .lp-mv__bg {
    display: none;
  }
}
.lp-mv__bg.has-form {
  width: calc(100% - 332px);
}
.lp-mv__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  margin: 0 auto;
}
.lp-mv__bg::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(25, 89, 114, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.lp-mv__bg-sp {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 77.333vw;
}
@media (max-width: 959px) {
  .lp-mv__bg-sp {
    display: block;
  }
}
.lp-mv__bg-sp img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top 10% center;
}
.lp-mv__bg-sp::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(25, 89, 114, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.lp-mv__fixed {
  position: fixed;
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
  max-width: 400px;
  height: 80px;
  display: none;
  padding: 0 1em;
}
@media (max-width: 768px) {
  .lp-mv__fixed {
    height: 60px;
  }
}
@media (max-width: 959px) {
  .lp-mv__fixed.is-scrolled {
    display: block;
  }
}
.lp-mv__fixed a {
  font-size: 1.8rem;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background-color: #072934;
  color: #fff;
}
.lp-mv__fixed a::after {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background: url(../img/common/icon_arrow-green.svg) no-repeat center center/contain;
}

.lp-mv2 {
  width: 100%;
  position: relative;
  z-index: 0;
}
@media (max-width: 768px) {
  .lp-mv2 {
    aspect-ratio: inherit;
  }
}
.lp-mv2__inner {
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: inherit;
  height: 100%;
}
@media (max-width: 768px) {
  .lp-mv2__inner {
    width: 100%;
    flex-direction: column-reverse;
    padding: 20em 0 0;
    gap: 2em;
  }
}
.lp-mv2__contents {
  width: 66.6666666667%;
  padding: 2em 5%;
}
@media (max-width: 768px) {
  .lp-mv2__contents {
    background-color: #072934;
    width: 100%;
    padding: 0 1em 2.5em;
    position: relative;
  }
}
.lp-mv2__contents::before {
  content: "";
  display: none;
  width: 100%;
  height: 5em;
  background: linear-gradient(0deg, #072934 0%, rgba(7, 41, 52, 0) 100%);
  position: absolute;
  bottom: 100%;
  left: 0;
  z-index: 1;
}
@media (max-width: 768px) {
  .lp-mv2__contents::before {
    display: block;
  }
}
.lp-mv2__logo {
  margin-bottom: 1em;
}
.lp-mv2__logo img {
  width: 100%;
  max-width: 474px;
  height: auto;
}
.lp-mv2__logo-text {
  display: inline-block;
  font-size: 1.5em;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.667em;
  padding-bottom: 0.25em;
  border-bottom: 2px solid #fff;
}
@media (max-width: 768px) {
  .lp-mv2__logo-text {
    font-size: 1.25em;
  }
}
.lp-mv2__title {
  display: inline-block;
  font-weight: 800;
  line-height: 1.6;
  margin-bottom: 2.8rem;
}
.lp-mv2__title.--xs {
  font-size: 2em;
}
@media (max-width: 768px) {
  .lp-mv2__title.--xs {
    font-size: 1.25em;
  }
}
.lp-mv2__title.--s {
  font-size: 2.5em;
}
@media (max-width: 768px) {
  .lp-mv2__title.--s {
    font-size: 1.5em;
  }
}
.lp-mv2__title.--m {
  font-size: 3em;
}
@media (max-width: 768px) {
  .lp-mv2__title.--m {
    font-size: 1.75em;
  }
}
.lp-mv2__title.--l {
  font-size: 3.5em;
}
@media (max-width: 768px) {
  .lp-mv2__title.--l {
    font-size: 2em;
  }
}
.lp-mv2__title.--xl {
  font-size: 4em;
}
@media (max-width: 768px) {
  .lp-mv2__title.--xl {
    font-size: 2.25em;
  }
}
.lp-mv2__text {
  font-size: 1.25em;
  color: #fff;
  line-height: 1.625;
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  .lp-mv2__text {
    font-size: 1em;
  }
}
.lp-mv2__icons {
  display: flex;
  align-items: center;
  gap: 1.25em;
  margin-bottom: 1.25em;
}
@media (max-width: 768px) {
  .lp-mv2__icons {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1em;
    gap: 1em 0.5em;
  }
}
@media (max-width: 768px) {
  .lp-mv2__icon {
    width: calc(50% - 0.5em);
  }
}
.lp-mv2__icon img {
  width: 100%;
  max-height: 90px;
  object-fit: contain;
}
.lp-mv2__icons2 {
  display: flex;
  align-items: center;
  gap: 1.25em;
  margin-bottom: 2.5em;
}
@media (max-width: 768px) {
  .lp-mv2__icons2 {
    margin-bottom: 1em;
  }
}
.lp-mv2__icon2 img {
  width: 100%;
  max-width: 170px;
}
.lp-mv2__buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .lp-mv2__buttons {
    flex-direction: column;
    align-items: flex-start;
    margin: 0 auto;
  }
}
.lp-mv2__button {
  width: 100%;
  max-width: 400px;
  height: 80px;
  position: relative;
  border-radius: 0;
}
@media (max-width: 768px) {
  .lp-mv2__button {
    width: 100%;
    height: 60px;
    margin: 0 auto;
  }
}
.lp-mv2__button a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 1.5em;
  font-weight: 500;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .lp-mv2__button a {
    height: 60px;
    font-size: 1.125em;
  }
}
.lp-mv2__button a.text-white {
  color: #fff;
}
.lp-mv2__button a.text-black {
  color: #195972;
}
.lp-mv2__button a::after {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background: url(../img/common/icon_arrow-green.svg) no-repeat center center/contain;
}
.lp-mv2__form {
  width: 332px;
  background-color: #fff;
  height: 100%;
  padding: 2em 1em;
}
@media (max-width: 959px) {
  .lp-mv2__form {
    display: none;
  }
}
.lp-mv2__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100vw;
  height: 100%;
}
@media (max-width: 768px) {
  .lp-mv2__bg {
    height: 100vw;
  }
}
.lp-mv2__bg.has-form {
  width: calc(100vw - 332px);
}
@media (max-width: 959px) {
  .lp-mv2__bg.has-form {
    width: 100vw;
  }
}
.lp-mv2__bg::before {
  content: "";
  display: block;
  width: 100px;
  height: 100%;
  background-color: #072934;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media (max-width: 768px) {
  .lp-mv2__bg::before {
    display: none;
  }
}
.lp-mv2__bg::after {
  content: "";
  display: block;
  width: 760px;
  height: 100%;
  background: linear-gradient(106.75deg, #072934 28.14%, rgba(7, 41, 52, 0) 76.38%);
  position: absolute;
  top: 0;
  left: 100px;
  z-index: 0;
}
@media (max-width: 768px) {
  .lp-mv2__bg::after {
    display: none;
  }
}
.lp-mv2__bg .wp-video {
  width: 100% !important;
  height: 100% !important;
}
.lp-mv2__bg .wp-video .mejs-controls,
.lp-mv2__bg .wp-video .mejs-mediaelement,
.lp-mv2__bg .wp-video .mejs-container .mejs-controls {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
}
.lp-mv2__bg img, .lp-mv2__bg video {
  width: 100%;
  height: 100%;
}
.lp-mv2__bg img::-webkit-media-controls, .lp-mv2__bg video::-webkit-media-controls {
  display: none !important;
}
.lp-mv2__bg img::-webkit-media-controls-enclosure, .lp-mv2__bg video::-webkit-media-controls-enclosure {
  display: none !important;
}
.lp-mv2__fixed {
  position: fixed;
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
  max-width: 400px;
  height: 80px;
  display: none;
  padding: 0 1em;
}
@media (max-width: 768px) {
  .lp-mv2__fixed {
    height: 60px;
  }
}
@media (max-width: 959px) {
  .lp-mv2__fixed.is-scrolled {
    display: block;
  }
}
.lp-mv2__fixed a {
  font-size: 1.8rem;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background-color: #072934;
  color: #fff;
}
.lp-mv2__fixed a::after {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background: url(../img/common/icon_arrow-green.svg) no-repeat center center/contain;
}

.lp-mv3__inner {
  display: flex;
  justify-content: center;
  background-color: #D8E2E6;
}
@media (max-width: 959px) {
  .lp-mv3__inner {
    flex-direction: column-reverse;
  }
}
.lp-mv3__movie {
  width: 80%;
  height: 100%;
  position: relative;
}
@media (max-width: 959px) {
  .lp-mv3__movie {
    width: 100%;
  }
}
.lp-mv3__movie .wp-video {
  width: 100% !important;
  height: 100% !important;
}
.lp-mv3__movie .wp-video .mejs-controls,
.lp-mv3__movie .wp-video .mejs-mediaelement,
.lp-mv3__movie .wp-video .mejs-container .mejs-controls {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
}
.lp-mv3__movie img, .lp-mv3__movie video {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
.lp-mv3__movie img::-webkit-media-controls, .lp-mv3__movie video::-webkit-media-controls {
  display: none !important;
}
.lp-mv3__movie img::-webkit-media-controls-enclosure, .lp-mv3__movie video::-webkit-media-controls-enclosure {
  display: none !important;
}
.lp-mv3__sound-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  font-size: 12px;
  color: #195972;
  cursor: pointer;
  z-index: 8;
  outline: none;
  box-shadow: none;
}
@media (max-width: 959px) {
  .lp-mv3__sound-btn {
    width: 35px;
    height: 35px;
    font-size: 10px;
    bottom: 25px;
    right: 10px;
  }
}
.lp-mv3__sound-btn img {
  width: 10px;
  height: 10px;
}
.lp-mv3__sound-btn:focus {
  outline: none !important;
  box-shadow: none;
}
.lp-mv3__contents {
  width: 20%;
  background-color: #fff;
  min-width: 288px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 959px) {
  .lp-mv3__contents {
    width: 100%;
    min-width: inherit;
    max-width: inherit;
    padding: 1.25em 1em;
    background-image: url(../img/officevision/fv_bg-sp.png);
    flex-direction: row;
    align-items: center;
    gap: 0.5em;
  }
}
@media (max-width: 768px) {
  .lp-mv3__contents {
    justify-content: space-between;
    padding: 0.75em 1em;
  }
}
.lp-mv3__catch {
  display: none;
  font-size: 1.75em;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 1.5em;
}
@media (max-width: 959px) {
  .lp-mv3__catch {
    display: block;
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .lp-mv3__catch {
    font-size: 1.125em;
  }
}
.lp-mv3__catch big {
  font-size: 1.57em;
}
@media (max-width: 768px) {
  .lp-mv3__catch big {
    font-size: 1em;
  }
}
.lp-mv3__icons {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
@media (max-width: 959px) {
  .lp-mv3__icons {
    display: flex;
    max-width: 120px;
  }
}
@media (max-width: 768px) {
  .lp-mv3__icons {
    gap: 0.25em;
  }
}
@media (max-width: 959px) {
  .lp-mv3__form {
    display: none;
  }
}

.lp-effects {
  position: relative;
  width: 100%;
}
.lp-effects::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% - 1px);
  width: 80px;
  height: 40px;
  transform: translateX(-50%);
  z-index: 1;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
@media (max-width: 768px) {
  .lp-effects::after {
    width: 60px;
    height: 30px;
  }
}
.lp-effects.--green {
  background-color: #D8E2E6;
}
.lp-effects.--green::after {
  background-color: #D8E2E6;
}
.lp-effects.--white {
  background-color: #fff;
}
.lp-effects__box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em 4em;
  max-width: 835px;
  margin: 0 auto 2em;
}
@media (max-width: 768px) {
  .lp-effects__box {
    flex-direction: column;
    padding: 1em;
  }
}
.lp-effects__box::before, .lp-effects__box::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #195972;
  z-index: -1;
  transform: skew(-12deg);
}
.lp-effects__box::before {
  background-color: #fff;
  z-index: -1;
  transform: skew(-12deg);
}
.lp-effects__box::after {
  background-color: #76B4B5;
  z-index: -2;
  transform: skew(-12deg) translate(10px, 10px);
}
.lp-effects__box-text {
  font-size: 1.125em;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (max-width: 768px) {
  .lp-effects__box-text {
    font-size: 1em;
  }
}
.lp-effects__box-number {
  font-size: 2.5em;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #195972;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .lp-effects__box-number {
    line-height: 1;
    font-size: 1.5em;
  }
}
.lp-effects__box-number big {
  font-size: 1.6em;
}
@media (max-width: 768px) {
  .lp-effects__box-number big {
    font-size: 1.667em;
  }
}
.lp-effects__lead {
  font-size: 1.125em;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 4.5em;
}
@media (max-width: 768px) {
  .lp-effects__lead {
    font-size: 1em;
    margin-bottom: 5em;
  }
}
.lp-effects__container {
  background-color: #fff;
  padding: 0 1.5em 2em;
  text-align: center;
}
.lp-effects__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2em 2.9%;
}
@media (max-width: 768px) {
  .lp-effects__list {
    flex-direction: column;
    gap: 2em;
  }
}
.lp-effects__list-title {
  display: inline-block;
  background-color: #195972;
  color: #fff;
  text-align: center;
  padding: 0.5em 1em;
  font-size: 1.5em;
  letter-spacing: 0.05em;
  font-weight: 800;
  transform: translateY(-50%);
  margin-bottom: 0.5em;
}
@media (max-width: 768px) {
  .lp-effects__list-title {
    font-size: 1em;
    padding: 0.5em 1em;
  }
}
.lp-effects__item {
  width: 31.4%;
  padding: 1em 2em;
}
@media (max-width: 768px) {
  .lp-effects__item {
    width: 100%;
    padding: 0 1em;
  }
}
.lp-effects__item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 262/448;
}
@media (max-width: 768px) {
  .lp-effects__item-image {
    aspect-ratio: auto;
  }
}

.lp-worries {
  position: relative;
}
.lp-worries::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 80px;
  height: 40px;
  transform: translateX(-50%);
  z-index: 1;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
@media (max-width: 768px) {
  .lp-worries::after {
    width: 60px;
    height: 30px;
  }
}
.lp-worries.--green {
  background-color: #D8E2E6;
}
.lp-worries.--green::after {
  background-color: #D8E2E6;
}
.lp-worries.--green .lp-worries__title b {
  background-color: #fff;
}
.lp-worries.--green .lp-worries__item-comment::before {
  border-bottom-color: #D8E2E6;
}
.lp-worries.--white {
  background-color: #fff;
}
.lp-worries.--white::after {
  background-color: #fff;
}
.lp-worries__title {
  font-size: 2.5em;
  font-weight: 800;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #195972;
  text-align: center;
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  .lp-worries__title {
    font-size: 1.25em;
  }
}
.lp-worries__title b {
  display: inline-block;
  font-size: 1.3em;
  line-height: 1;
  padding: 1.6rem;
  margin: 0 1.6rem;
  background-color: #D8E2E6;
}
@media (max-width: 768px) {
  .lp-worries__title b {
    font-size: 1.2em;
    margin: 0.8rem 0.6rem;
    padding: 1.2rem;
  }
}
.lp-worries__title small {
  font-size: 0.8em;
  line-height: 1;
}
@media (max-width: 768px) {
  .lp-worries__title small {
    font-size: 0.9em;
  }
}
.lp-worries__list {
  display: flex;
  justify-content: center;
  gap: 2em 2.9%;
}
@media (max-width: 768px) {
  .lp-worries__list {
    flex-direction: column;
    gap: 2em;
  }
}
.lp-worries__item {
  flex: 1;
  position: relative;
}
@media (max-width: 768px) {
  .lp-worries__item {
    width: 100%;
  }
}
.lp-worries__item-contents {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  height: 100%;
}
.lp-worries__item-contents.--no-text {
  justify-content: flex-start;
}
.lp-worries__item-title {
  font-size: 1.625em;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  line-height: 1.5;
  color: #195972;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .lp-worries__item-title {
    font-size: 1.375em;
    margin-bottom: 1.6rem;
  }
}
.lp-worries__item-num {
  font-size: 1.538461em;
  color: #76B4B5;
  line-height: 1;
}
@media (max-width: 768px) {
  .lp-worries__item-num {
    font-size: 1.6363em;
  }
}
.lp-worries__item-text {
  font-size: 1.125em;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .lp-worries__item-text {
    font-size: 1em;
  }
}
.lp-worries__item-image {
  padding: 1.5em 0;
}
@media (max-width: 768px) {
  .lp-worries__item-image {
    padding: 1em 0;
  }
}
.lp-worries__item-image img {
  aspect-ratio: 1/1;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .lp-worries__item-image img {
    max-width: 200px;
  }
}
.lp-worries__item-comment {
  font-size: 1.125em;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 600;
  padding-top: 2.4rem;
  border-top: 2px solid #76B4B5;
  margin-top: 1.5rem;
  position: relative;
}
@media (max-width: 768px) {
  .lp-worries__item-comment {
    max-width: 200px;
    font-size: 0.875em;
    padding-top: 1.6rem;
    margin: 1.6rem auto 0;
  }
}
.lp-worries__item-comment::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translate(-50%, 1px);
  border: 10px solid transparent;
  border-bottom: 12px solid #FFF;
  z-index: 2;
}
@media (max-width: 768px) {
  .lp-worries__item-comment::before {
    border: 5px solid transparent;
    border-bottom: 10px solid #fff;
  }
}
.lp-worries__item-comment::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 12px solid transparent;
  border-bottom: 14px solid #76B4B5;
  z-index: 1;
}
@media (max-width: 768px) {
  .lp-worries__item-comment::after {
    border: 7px solid transparent;
    border-bottom: 12px solid #76B4B5;
  }
}

.lp-menu.--green {
  background-color: #D8E2E6;
}
.lp-menu.--white {
  background-color: #fff;
}
.lp-menu__lead {
  font-size: 1.125em;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 2.5em;
}
@media (max-width: 768px) {
  .lp-menu__lead {
    font-size: 1em;
  }
}
.lp-menu__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.5em;
}
@media (max-width: 768px) {
  .lp-menu__list {
    gap: 0.5em;
  }
}
.lp-menu__item {
  border: 2px solid #76B4B5;
}
.lp-menu__item.--half {
  width: calc(50% - 1.25em);
}
@media (max-width: 959px) {
  .lp-menu__item.--half {
    width: 100%;
  }
}
.lp-menu__item.--full {
  width: 100%;
}
.lp-menu__item.--full .lp-menu__item-contents-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5em;
}
@media (max-width: 768px) {
  .lp-menu__item.--full .lp-menu__item-contents-inner {
    gap: 1.25em;
  }
}
.lp-menu__item.--full .lp-menu__item-list {
  margin: 0;
}
@media (max-width: 768px) {
  .lp-menu__item.--full .lp-menu__item-list {
    width: 100%;
  }
}
.lp-menu__item.--full .lp-menu__item-price {
  margin: 0;
}
@media (max-width: 768px) {
  .lp-menu__item.--full .lp-menu__item-price {
    width: 100%;
  }
}
.lp-menu__item-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  gap: 0.333em;
  background-color: #76B4B5;
  color: #fff;
  padding: 0.5em 1em;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .lp-menu__item-title {
    font-size: 1.25em;
  }
}
.lp-menu__item-contents {
  background-color: #fff;
  padding: 1.5em;
}
@media (max-width: 768px) {
  .lp-menu__item-contents {
    padding: 1.25em 1em;
  }
}
.lp-menu__item-text {
  font-size: 1.25em;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 300;
  text-align: center;
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  .lp-menu__item-text {
    font-size: 0.875em;
    margin-bottom: 1.5em;
  }
}
.lp-menu__item-list {
  display: flex;
  flex-direction: column;
  gap: 1em;
  max-width: 390px;
  margin: 0 auto;
}
.lp-menu__item-item {
  display: flex;
  align-items: center;
  gap: 1em;
}
@media (max-width: 768px) {
  .lp-menu__item-item {
    justify-content: space-between;
  }
}
.lp-menu__item-item-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.333em;
  font-weight: 800;
  letter-spacing: 0.05em;
  background-color: #195972;
  color: #fff;
  padding: 0.5em;
  min-width: 170px;
}
@media (max-width: 768px) {
  .lp-menu__item-item-title {
    font-size: 0.875em;
    padding: 0.5em;
    min-width: 132px;
  }
}
.lp-menu__item-item-number {
  font-size: 1.25em;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 300;
}
@media (max-width: 768px) {
  .lp-menu__item-item-number {
    font-size: 0.875em;
  }
}
.lp-menu__item-item-number big {
  font-size: 1.5em;
  color: #195972;
  font-weight: 800;
}
@media (max-width: 768px) {
  .lp-menu__item-item-number big {
    font-size: 2em;
  }
}
.lp-menu__item-price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  max-width: 390px;
  margin: 2.5em auto 0;
  background-color: #D8E2E6;
  padding: 0.5em;
}
@media (max-width: 768px) {
  .lp-menu__item-price {
    margin-top: 1.25em;
  }
}
.lp-menu__item-price-icon {
  width: 32px;
  height: 32px;
}
@media (max-width: 768px) {
  .lp-menu__item-price-icon {
    width: 28px;
    height: 28px;
  }
}
.lp-menu__item-price-text {
  font-size: 1.25em;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 300;
}
@media (max-width: 768px) {
  .lp-menu__item-price-text {
    font-size: 1em;
  }
}
.lp-menu__item-price-text big {
  font-size: 2em;
  color: #195972;
  font-weight: 800;
}
@media (max-width: 768px) {
  .lp-menu__item-price-text big {
    font-size: 1.75em;
  }
}

.lp-menu2.--green {
  background-color: #D8E2E6;
}
.lp-menu2.--white {
  background-color: #fff;
}
@media (max-width: 768px) {
  .lp-menu2__inner {
    width: 100%;
  }
}
.lp-menu2__lead {
  font-size: 1.125em;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 2.5em;
}
@media (max-width: 768px) {
  .lp-menu2__lead {
    font-size: 1em;
  }
}
.lp-menu2__field1, .lp-menu2__field2 {
  padding: 2.5em;
  background-color: #fff;
}
@media (max-width: 768px) {
  .lp-menu2__field1, .lp-menu2__field2 {
    width: 100vw;
    padding: 1.25em 0;
  }
}
.lp-menu2__field1-title, .lp-menu2__field2-title {
  font-size: 1.75em;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #195972;
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .lp-menu2__field1-title, .lp-menu2__field2-title {
    font-size: 1.25em;
  }
}
@media (max-width: 768px) {
  .lp-menu2__field1-title {
    margin-bottom: 0;
  }
}
.lp-menu2__field1-tabs {
  display: flex;
  justify-content: center;
  gap: 1.25em;
  margin-bottom: 1.75em;
}
@media (max-width: 768px) {
  .lp-menu2__field1-tabs {
    min-width: 990px;
  }
}
@media (max-width: 768px) {
  .lp-menu2__field1-tabs-wrapper {
    width: 100vw;
    overflow: scroll;
    padding: 3em 1.25em 0;
  }
}
.lp-menu2__field1-tab {
  border: 1px solid #D8E2E6;
  border-radius: 8px;
  padding: 1.25em 2.5em;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
@media (max-width: 768px) {
  .lp-menu2__field1-tab {
    padding: 1.25em 1em;
  }
}
.lp-menu2__field1-tab.is-active {
  background-color: #D8E2E6;
  position: relative;
  filter: drop-shadow(0px 0px 24px rgba(25, 89, 114, 0.3019607843)) drop-shadow(0px 0px 8px rgba(25, 89, 114, 0.2509803922));
}
.lp-menu2__field1-tab.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: 24px;
  height: 18.5px;
  background: none;
  border: none;
  display: block;
  pointer-events: none;
  content: "";
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #D8E2E6;
}
.lp-menu2__field1-tab-icon {
  margin-bottom: 0.5em;
}
.lp-menu2__field1-tab-title {
  font-size: 1.25em;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.1em;
  min-height: 53px;
}
.lp-menu2__field1-tab-title small {
  font-size: 0.7em;
}
.lp-menu2__field1-tab-text {
  font-size: 0.875em;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 300;
}
@media (max-width: 768px) {
  .lp-menu2__field1-panels-wrapper {
    width: 100vw;
    overflow: scroll;
  }
}
.lp-menu2__field1-panel {
  display: none;
}
@media (max-width: 768px) {
  .lp-menu2__field1-panel {
    width: 100vw;
  }
}
.lp-menu2__field1-panel.is-active {
  display: block;
}
@media (max-width: 768px) {
  .lp-menu2__field1-panel-image {
    padding: 0 1.25em;
    overflow: scroll;
    padding-bottom: 1.25em;
  }
}
@media (max-width: 768px) {
  .lp-menu2__field1-panel-image img {
    min-width: 831px;
  }
}
.lp-menu2__field1-panel-text {
  font-size: 0.875em;
  font-weight: 300;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .lp-menu2__field1-panel-text {
    padding: 0 1.25em;
    text-align: left;
  }
}
.lp-menu2__field2 {
  margin-top: 2.5em;
}
@media (max-width: 768px) {
  .lp-menu2__field2-image {
    padding: 0 1.25em;
  }
}
@media (max-width: 768px) {
  .lp-menu2__field2-tabs-wrapper {
    width: 100vw;
    overflow: scroll;
    padding: 0 1.25em;
  }
}
.lp-menu2__field2-tabs {
  display: flex;
  justify-content: center;
  gap: 1.25em;
  margin-bottom: 1.75em;
}
@media (max-width: 768px) {
  .lp-menu2__field2-tabs {
    min-width: 1304px;
  }
}
.lp-menu2__field2-tab {
  border: 1px solid #D8E2E6;
  border-radius: 0 0 8px 8px;
  cursor: pointer;
  flex-direction: column;
  flex: 1;
}
.lp-menu2__field2-tab.is-active {
  background-color: #D8E2E6;
  border-top: 1px solid #195972;
  background-color: #D8E2E6;
  filter: drop-shadow(0px 0px 24px rgba(25, 89, 114, 0.3019607843)) drop-shadow(0px 0px 8px rgba(25, 89, 114, 0.2509803922));
}
.lp-menu2__field2-tab.is-active .lp-menu2__field2-tab-title {
  background-color: #195972;
  color: #fff;
}
.lp-menu2__field2-tab.is-active .lp-menu2__field2-tab-num {
  background-color: #fff;
}
.lp-menu2__field2-tab.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: 24px;
  height: 18.5px;
  background: none;
  border: none;
  display: block;
  pointer-events: none;
  content: "";
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #D8E2E6;
}
.lp-menu2__field2-tab-title {
  background-color: #D8E2E6;
  color: #195972;
  line-height: 1.6;
  font-weight: 600;
  padding: 0.5em 1em;
  text-align: center;
  letter-spacing: 0.05em;
}
.lp-menu2__field2-tab-contents {
  padding: 1.25em;
}
.lp-menu2__field2-tab-nums {
  display: flex;
  justify-content: center;
  gap: 0.5em;
  margin-bottom: 1.25em;
}
.lp-menu2__field2-tab-num {
  background-color: #D8E2E6;
  color: #072934;
  padding: 0.5em 1em;
  font-size: 0.75em;
  font-weight: 300;
  letter-spacing: 0.05em;
}
.lp-menu2__field2-tab-num big {
  display: inline-block;
  font-size: 2em;
  font-weight: 800;
  margin: 0 4px;
}
.lp-menu2__field2-tab-num b {
  font-size: 1.6rem;
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.lp-menu2__field2-tab-text {
  font-size: 0.875em;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .lp-menu2__field2-panels-wrapper {
    padding: 0 1.25em;
  }
}
.lp-menu2__field2-panel {
  display: none;
}
.lp-menu2__field2-panel.is-active {
  display: block;
}
.lp-menu2__field2-panel-container {
  display: flex;
  justify-content: space-between;
  gap: 2.5em;
}
@media (max-width: 768px) {
  .lp-menu2__field2-panel-container {
    flex-direction: column;
  }
}
.lp-menu2__field2-panel-recommend, .lp-menu2__field2-panel-price {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.lp-menu2__field2-panel-recommend-box, .lp-menu2__field2-panel-price-box {
  background-color: #D8E2E6;
  padding: 1.25em 2.25em;
  min-height: 208px;
}
.lp-menu2__field2-panel-recommend-title, .lp-menu2__field2-panel-price-title {
  display: flex;
  justify-content: center;
  gap: 0.5em;
  font-size: 1.125em;
  color: #195972;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.lp-menu2__field2-panel-recommend-note, .lp-menu2__field2-panel-price-note {
  font-size: 0.875em;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .lp-menu2__field2-panel-recommend-note, .lp-menu2__field2-panel-price-note {
    margin-top: 0.6em;
  }
}
.lp-menu2__field2-panel-recommend-title::before {
  content: "";
  display: inline-block;
  width: 1.75em;
  height: 1.75em;
  background: url(../img/common/icon_good.svg) no-repeat center center/contain;
  flex-shrink: 0;
}
.lp-menu2__field2-panel-recommend-list {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  margin-top: 1.25em;
}
.lp-menu2__field2-panel-recommend-item {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #072934;
}
@media (max-width: 768px) {
  .lp-menu2__field2-panel-recommend-item {
    font-size: 0.875em;
  }
}
.lp-menu2__field2-panel-recommend-item::before {
  content: "";
  display: inline-block;
  width: 2em;
  height: 2em;
  background: url(../img/common/icon_check.svg) no-repeat center center/contain;
  flex-shrink: 0;
}
.lp-menu2__field2-panel-price-title::before {
  content: "";
  display: inline-block;
  width: 1.75em;
  height: 1.75em;
  background: url(../img/common/icon_price.svg) no-repeat center center/contain;
  flex-shrink: 0;
}
.lp-menu2__field2-panel-price-box {
  display: flex;
  flex-direction: column;
  gap: 1.25em;
}
.lp-menu2__field2-panel-price-contents {
  min-height: 118px;
  padding: 0.875em 0;
}
.lp-menu2__field2-panel-price-text {
  font-size: 1.125em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #072934;
  text-align: center;
  margin-bottom: 1.2rem;
}
.lp-menu2__field2-panel-price-yen {
  font-size: 1.125em;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #195972;
  text-align: center;
}
.lp-menu2__field2-panel-price-yen big {
  font-size: 2.667em;
  line-height: 1;
}

.lp-option.--green {
  background-color: #D8E2E6;
}
.lp-option.--green .lp-option__item-upper-inner::before {
  border-top: 12px solid #D8E2E6;
}
.lp-option.--green .lp-option__price {
  background-color: #fff;
}
.lp-option.--white {
  background-color: #fff;
}
.lp-option.--white .lp-option__catch-main::before {
  border: 2px solid #76B4B5;
}
.lp-option.--white .lp-option__item-title span {
  background-color: #195972;
  color: #fff;
}
.lp-option__catch {
  text-align: center;
}
.lp-option__catch-sub {
  font-size: 1.5em;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #195972;
  margin-bottom: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}
@media (max-width: 768px) {
  .lp-option__catch-sub {
    font-size: 1em;
    align-items: flex-end;
  }
}
.lp-option__catch-sub::before, .lp-option__catch-sub::after {
  content: "";
  display: block;
  width: 1em;
  height: 1.5em;
}
.lp-option__catch-sub::before {
  content: "＼";
}
.lp-option__catch-sub::after {
  content: "／";
}
.lp-option__catch-main {
  min-width: 80%;
  display: inline-block;
  padding: 0.8em 1.5em 0.5em;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #195972;
  font-size: 1.5em;
  line-height: 2;
  margin: 0 auto 1em;
  position: relative;
}
@media (max-width: 768px) {
  .lp-option__catch-main {
    font-size: 1em;
    line-height: 1.5;
    padding: 1em;
    width: 100%;
  }
}
.lp-option__catch-main big {
  font-size: 1.667em;
}
@media (max-width: 768px) {
  .lp-option__catch-main big {
    font-size: 1.5em;
  }
}
.lp-option__catch-main::before, .lp-option__catch-main::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.lp-option__catch-main::before {
  background-color: #fff;
  z-index: -1;
  transform: skew(-12deg);
}
.lp-option__catch-main::after {
  background-color: #76B4B5;
  z-index: -2;
  transform: skew(-12deg) translate(10px, 10px);
}
.lp-option__catch small {
  font-size: 0.7em;
}
@media (max-width: 768px) {
  .lp-option__catch small {
    font-size: 1em;
  }
}
.lp-option__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em 3.5%;
  margin-top: 5em;
}
@media (max-width: 768px) {
  .lp-option__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5em;
  }
}
.lp-option__item {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.lp-option__item-upper-inner {
  display: flex;
  align-items: center;
  gap: 0.875em;
  padding-bottom: 1.5em;
  margin-bottom: 1em;
  border-bottom: 2px solid #76B4B5;
  position: relative;
}
.lp-option__item-upper-inner::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, -1px);
  border: 10px solid transparent;
  border-top: 12px solid #FFF;
  z-index: 2;
}
.lp-option__item-upper-inner::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 12px solid transparent;
  border-top: 14px solid #76B4B5;
  z-index: 1;
}
.lp-option__item-icon {
  flex-shrink: 0;
}
.lp-option__item-catch {
  font-size: 1.25em;
  font-weight: 600;
  line-height: 1.5;
  color: #072934;
  padding-top: 0.5em;
}
.lp-option__item-catch span {
  color: #76B4B5;
}
.lp-option__item-icon2 {
  padding-top: 0.5em;
  padding-bottom: 1.5em;
}
.lp-option__item-icon2 img {
  margin: 0 auto;
}
.lp-option__item-lower {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.lp-option__item-text_01 {
  font-size: 1.5em;
  border: 2px solid #76B4B5;
  padding: 0.9em 1em;
  background-color: #fff;
  color: #76B4B5;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 5.6rem;
  position: relative;
}
@media (max-width: 768px) {
  .lp-option__item-text_01 {
    font-size: 1.25em;
    padding: 0.8em 1em;
  }
}
.lp-option__item-text_01::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 3rem);
  transform: translate(-50%, -50%);
  width: 4rem;
  height: 4rem;
  background: url("../img/common/icon_plus.svg") no-repeat center center/contain;
}
.lp-option__item-contents {
  padding: 1.5em;
  height: 100%;
  border: 2px solid #76B4B5;
  margin-bottom: 5.6rem;
  background-color: #fff;
  position: relative;
}
.lp-option__item-contents::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 3rem);
  transform: translate(-50%, -50%);
  width: 4rem;
  height: 4rem;
  background: url("../img/common/icon_plus.svg") no-repeat center center/contain;
}
.lp-option__item-title {
  font-size: 1.5em;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #195972;
  min-height: 72px;
  margin-bottom: 0.8333em;
}
@media (max-width: 768px) {
  .lp-option__item-title {
    font-size: 1.25em;
    min-height: inherit;
  }
}
.lp-option__item-image {
  margin-bottom: 1.25em;
}
.lp-option__item-image img {
  margin: 0 auto;
}
.lp-option__item-text_02 {
  line-height: 1.5;
  font-weight: 300;
}
.lp-option__item-text_03 {
  font-size: 1.5em;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 600;
  background-color: #76B4B5;
  color: #fff;
  padding: 0.9em 1em;
  text-align: center;
}
@media (max-width: 768px) {
  .lp-option__item-text_03 {
    font-size: 1.25em;
    padding: 0.8em 1em;
  }
}
.lp-option__price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
  padding: 2.5em;
  margin-top: 2.5em;
  background-color: #D8E2E6;
}
@media (max-width: 768px) {
  .lp-option__price {
    justify-content: space-between;
    padding: 1.25em;
  }
}
.lp-option__price-title {
  text-align: center;
  color: #195972;
}
.lp-option__price-title-en {
  font-size: 1.625em;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .lp-option__price-title-en {
    font-size: 1.25em;
  }
}
.lp-option__price-title-jp {
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .lp-option__price-title-jp {
    font-size: 0.875em;
  }
}
.lp-option__price-text {
  font-size: 1.75em;
  color: #195972;
  font-weight: 800;
}
@media (max-width: 768px) {
  .lp-option__price-text {
    font-size: 1.5em;
  }
}
.lp-option__price-text span {
  font-size: 2.2857em;
  line-height: 1;
  margin-right: 4px;
}
@media (max-width: 768px) {
  .lp-option__price-text span {
    font-size: 2em;
  }
}
.lp-option__text {
  font-size: 1.5em;
  line-height: 1.5;
  color: #195972;
  letter-spacing: 0.05em;
  font-weight: 800;
  text-align: center;
  margin-top: 1.667em;
}
@media (max-width: 768px) {
  .lp-option__text {
    font-size: 1em;
    margin-top: 2.5em;
  }
}

.lp-reasons.--green {
  background-color: #D8E2E6;
}
.lp-reasons.--white {
  background-color: #fff;
}
.lp-reasons__title {
  text-align: center;
  font-size: 1.75em;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #195972;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .lp-reasons__title {
    font-size: 1.375em;
  }
}
.lp-reasons__lead {
  text-align: center;
  font-size: 1.125em;
  font-weight: 400;
  color: #4B5563;
  margin-bottom: 2.5rem;
}
.lp-reasons__list {
  display: flex;
  justify-content: center;
  gap: 2.5em;
}
@media (max-width: 768px) {
  .lp-reasons__list {
    flex-direction: column;
    align-items: center;
  }
}
.lp-reasons__item {
  width: 33.3333333333%;
}
@media (max-width: 768px) {
  .lp-reasons__item {
    width: 100%;
  }
}
.lp-reasons__item-number {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 3em;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #76B4B5;
  text-align: center;
}
.lp-reasons__item-title {
  font-size: 1.25em;
  font-weight: 800;
  line-height: 1.5;
  color: #195972;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .lp-reasons__item-title {
    font-size: 1.125em;
  }
}
.lp-reasons__item-image {
  margin-bottom: 1.25em;
}
.lp-reasons__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 347/194;
}
.lp-reasons__item-text {
  font-size: 0.875em;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.lp-form {
  width: 100%;
}
.lp-form.--green {
  background-color: #D8E2E6;
}
.lp-form.--green .lp-features__item {
  background-color: #fff;
}
.lp-form.--white {
  background-color: #fff;
}
.lp-form.--white .lp-features__item {
  background-color: #D8E2E6;
}
.lp-form__inner {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .lp-form__inner {
    flex-direction: column;
    gap: 4em;
    padding-bottom: 0;
  }
}
.lp-form__contents {
  width: 47%;
}
@media (max-width: 768px) {
  .lp-form__contents {
    width: 100%;
  }
}
.lp-form__image {
  margin-bottom: 2.5em;
}
.lp-form__image img {
  width: 100%;
  max-width: 526px;
  margin: 0 auto;
}
.lp-form__title {
  font-size: 1.75em;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
  border-left: 6px solid #195972;
  padding-left: 10px;
  margin-bottom: 2.5em;
}
@media (max-width: 768px) {
  .lp-form__title {
    font-size: 1.25em;
    margin-bottom: 2em;
  }
}
.lp-form__catch {
  font-size: 1.5em;
  letter-spacing: 0;
  line-height: 1.5;
  font-weight: 600;
  color: #195972;
  margin-bottom: 1.667em;
}
@media (max-width: 768px) {
  .lp-form__catch {
    font-size: 1.25em;
    margin-bottom: 2em;
  }
}
.lp-form__lead {
  font-size: 0.875em;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 2.8em;
}
.lp-form__lead small {
  font-size: 0.85em;
}
.lp-form__lead .pc {
  display: inline-block;
}
@media (max-width: 768px) {
  .lp-form__lead .pc {
    display: none;
  }
}
.lp-form__lead .sp {
  display: none;
}
@media (max-width: 768px) {
  .lp-form__lead .sp {
    display: inline-block;
  }
}
.lp-form__list-title {
  font-size: 1.25em;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 1em;
}
.lp-form__item {
  display: flex;
  font-size: 1em;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #072934;
}
.lp-form__item.--icon {
  gap: 4px;
}
.lp-form__item.--icon + .lp-form__item {
  margin-top: 0.5em;
}
.lp-form__item.--icon::before {
  content: "";
  display: inline-block;
  width: 2em;
  height: 2em;
  background: url(../img/common/icon_check.svg) no-repeat center center/contain;
  flex-shrink: 0;
}
.lp-form__item::before {
  content: "・";
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}
.lp-form__input {
  width: 48%;
  background-color: #F1F1F1;
  padding: 1.75em;
}
@media (max-width: 768px) {
  .lp-form__input {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}

.lp-whatis {
  position: relative;
  z-index: 0;
}
.lp-whatis.--green {
  background-color: #D8E2E6;
}
.lp-whatis.--green .lp-features__item {
  background-color: #fff;
}
.lp-whatis.--white {
  background-color: #fff;
}
.lp-whatis.--white .lp-features__item {
  background-color: #D8E2E6;
}
.lp-whatis::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 56.9vw;
  height: 33.4vw;
  max-height: 480px;
  background: rgba(118, 180, 181, 0.25);
}
.lp-whatis__inner {
  padding-top: 100px;
  display: flex;
  justify-content: space-between;
  padding-bottom: 0;
}
.lp-whatis__title {
  position: relative;
  z-index: 0;
  display: inline-block;
  margin-bottom: 40px;
}
.lp-whatis__title span {
  font-size: 28px;
  letter-spacing: 0.02em;
  color: #195972;
  display: inline-block;
  margin-bottom: 12px;
}
.lp-whatis__title img {
  width: 346px;
  display: block;
}
.lp-whatis__title::after {
  font-family: "Yu Gothic StdN", YuGothic, sans-serif;
  content: "?";
  position: absolute;
  top: 50%;
  right: 0;
  z-index: -1;
  transform: translate(50%, -50%);
  font-size: 160px;
  color: #76B4B5;
  opacity: 0.7;
}
.lp-whatis__contents {
  width: 49%;
}
.lp-whatis__lead {
  font-size: 18px;
  letter-spacing: 0.05em;
  color: #072934;
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 40px;
}
.lp-whatis__image {
  width: 48.6111vw;
  padding-top: 57px;
  margin-right: calc(50% - 50vw);
}
.lp-whatis__image.pc_only {
  display: block;
}
.lp-whatis__image.tb_sp {
  display: none;
}
.lp-whatis__image img {
  aspect-ratio: 700/458;
}

@media (max-width: 959px) {
  .lp-whatis::before {
    width: 76vw;
    height: 76.5333vw;
    top: 0;
  }
  .lp-whatis__inner {
    padding-top: 60px;
    flex-direction: column;
  }
  .lp-whatis__title {
    margin-bottom: 40px;
  }
  .lp-whatis__title span {
    font-size: 18px;
  }
  .lp-whatis__title img {
    width: 230px;
  }
  .lp-whatis__title::after {
    font-size: 88px;
  }
  .lp-whatis__lead {
    font-size: 16px;
    margin-bottom: 0;
  }
  .lp-whatis__contents {
    width: 100%;
  }
  .lp-whatis__image {
    width: 100%;
    padding-top: 0;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .lp-whatis__image.pc_only {
    display: none;
  }
  .lp-whatis__image.tb_sp {
    display: block;
  }
}
.footer {
  background-color: #111827;
}
.footer__inner {
  padding: 4em 0;
}
@media (max-width: 768px) {
  .footer__inner {
    padding: 2em 0;
  }
}
.footer__contents {
  color: #fff;
  margin-bottom: 2em;
}
.footer__company {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 0.25em;
}
.footer__address {
  line-height: 1.8;
}
.footer__copy {
  color: #9CA3AF;
  text-align: center;
  line-height: 1;
}
@media (max-width: 768px) {
  .footer__copy {
    font-size: 0.625em;
  }
}

.layout-footer {
  width: 100%;
  max-width: 100%;
}
.layout-footer__container {
  justify-content: flex-end;
  padding: 2em 0;
}
@media (max-width: 959px) {
  .layout-footer__container {
    padding: 0 0 2em;
  }
}
.layout-footer__copyright {
  bottom: 2em;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100px;
  background-color: #fff;
}
@media (max-width: 959px) {
  .header {
    height: 56px;
  }
}
.header__inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: inherit;
  padding: 0 0 0 2.5em;
}
@media (max-width: 768px) {
  .header__inner {
    padding: 0 1em 0 0.75em;
  }
}
.header__left {
  display: flex;
  align-items: center;
}
.header__logo {
  position: relative;
  z-index: 5;
}
.header__logo a {
  display: block;
  max-width: 200px;
}
@media (max-width: 768px) {
  .header__logo a {
    max-width: 120px;
  }
}
.header__logo a:hover {
  opacity: 0.7;
}
.header__logo a img {
  width: 100%;
}
.header__nav-btn {
  display: none;
}
.header__nav-btn:checked + .header__nav-label span {
  background: none;
}
.header__nav-btn:checked + .header__nav-label span::before {
  transform: rotate(-45deg);
  transform-origin: center;
}
.header__nav-btn:checked + .header__nav-label span::after {
  transform: rotate(45deg);
  top: 5px;
  transform-origin: center;
}
.header__nav-btn:checked + .header__nav-label + .header__nav-wrap {
  height: 100vh;
}
@media (max-width: 959px) {
  .header__nav-label {
    display: block;
    width: 15px;
    height: 15px;
    cursor: pointer;
    position: relative;
  }
}
@media (max-width: 959px) {
  .header__nav-label span, .header__nav-label span::before, .header__nav-label span::after {
    content: "";
    position: absolute;
    overflow: visible;
    display: block;
    width: 100%;
    height: 2px;
    background: #072934;
    transition-duration: 0.3s;
  }
}
@media (max-width: 959px) {
  .header__nav-label span {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
  }
}
@media (max-width: 959px) {
  .header__nav-label span::before {
    top: 5px;
  }
}
@media (max-width: 959px) {
  .header__nav-label span::after {
    top: 10px;
  }
}
.header__nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2222vw, 32px);
}
@media (max-width: 959px) {
  .header__nav-wrap {
    position: absolute;
    left: 0;
    top: 100%;
    overflow: hidden;
    width: 100vw;
    height: 0;
    padding: 0 4.8vw;
    background: #ffffff;
    transition-duration: 400ms;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
    gap: 0;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
}
@media (max-width: 959px) {
  .header__nav-list {
    display: block;
    width: 100%;
    padding-top: 10.667vw;
  }
}
.header__nav-item > a {
  color: #4B5563;
  font-size: 1.125em;
  line-height: 1;
  font-weight: 600;
  padding: 1em clamp(0.625em, 1.3889vw, 1.25em);
  position: relative;
}
@media (max-width: 959px) {
  .header__nav-item > a {
    border-bottom: 1px solid #DAE2E5;
    display: block;
    padding-left: 2.4vw;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 3.86vw;
    color: #195972;
    font-weight: bold;
    line-height: 13.5vw;
    background: url(../img/common/menu-arrow.svg) right 2.42vw center/4.35vw auto no-repeat;
  }
}
.header__nav-item > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #4B5563;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
@media (max-width: 959px) {
  .header__nav-item > a::after {
    display: none;
  }
}
.header__nav-item > a:hover::after {
  transform: scaleX(1);
}
.header__nav-links {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 959px) {
  .header__nav-links {
    width: 100%;
    height: auto;
    margin-top: 10.667vw;
  }
}
.header__nav-link {
  height: 100%;
}
@media (max-width: 959px) {
  .header__nav-link {
    width: 100%;
    height: auto;
  }
}
.header__nav-link > a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.5em;
  height: 100%;
  letter-spacing: 0.03em;
  font-weight: 500;
}
@media (max-width: 959px) {
  .header__nav-link > a {
    display: block;
    text-align: center;
    font-size: 1em;
    line-height: 1.5;
    letter-spacing: 0.03em;
    padding: 0.75em;
  }
}
.header__nav-link > a.text-white {
  color: #fff;
}
.header__nav-link > a.text-black {
  color: #072934;
}
.header__nav-link > a > span.text {
  white-space: nowrap;
}

.header.is-open {
  height: 100vh;
}

.is-open .header__inner {
  height: 56px;
}
.is-open .header__menu {
  display: block;
}
.is-open .header__btn {
  display: block;
  width: 32px;
}
.is-open .header__btn .bar:nth-child(1) {
  transform: translateY(8px) rotate(30deg);
}
.is-open .header__btn .bar:nth-child(2) {
  opacity: 0;
}
.is-open .header__btn .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-30deg);
}