@charset "UTF-8";
/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
}

html {
  color: #252525;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  overflow-wrap: break-word;
}

body {
  background: #fff;
  margin: 0;
}

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

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
select,
textarea,
button {
  color: inherit;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
  padding-left: 0;
  padding-top: 0;
}

#wrapper {
  position: relative;
}

.inner-block {
  margin: 0 auto;
  position: relative;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}

.ib {
  display: inline-block;
}

.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-header
----------------------------------- */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
}
.lp-header .inner-block {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 100%;
  padding: 40px 32px 21px;
}
.lp-header .menu-area .c-menu-wrap {
  position: relative;
}
.lp-header .menu-area .c-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
.lp-header .menu-area .c-menu li {
  position: relative;
}
.lp-header .menu-area .c-menu .inn {
  cursor: pointer;
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.lp-header .menu-area .c-menu .sub-menu .inn {
  font-weight: 400;
  padding: min(15px, 3.8461538462vw);
}
.lp-header .btn-menu {
  width: min(40px, 10.2564102564vw);
  height: min(10px, 2.5641025641vw);
  z-index: 999;
  position: relative;
}
.lp-header .btn-menu .inn {
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: min(40px, 10.2564102564vw);
  height: min(10px, 2.5641025641vw);
}
.lp-header .btn-menu .line:nth-of-type(2)::after {
  top: 0;
  content: "";
}
.lp-header .btn-menu .line,
.lp-header .btn-menu .line:nth-of-type(2)::after {
  background: #252525;
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.lp-header .btn-menu .line:nth-of-type(1) {
  top: 0;
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
.lp-header .btn-menu .line:nth-of-type(3) {
  bottom: 0;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.lp-header .btn-menu .line:nth-of-type(2) {
  top: 11px;
}
.lp-header .btn-menu .line:nth-of-type(1),
.lp-header .btn-menu .line:nth-of-type(3) {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.lp-header .btn-menu.is-open .line {
  top: 5px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.lp-header .btn-menu.is-open .line:nth-of-type(1), .lp-header .btn-menu.is-open .line:nth-of-type(3) {
  -webkit-transform: scaleX(0) translate3d(0, 0, 0);
          transform: scaleX(0) translate3d(0, 0, 0);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.lp-header .btn-menu.is-open .line:nth-of-type(2), .lp-header .btn-menu.is-open .line:nth-of-type(2)::after {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.lp-header .btn-menu.is-open .line:nth-of-type(2) {
  -webkit-transform: rotate(15deg) translate3d(0, 0, 0);
          transform: rotate(15deg) translate3d(0, 0, 0);
}
.lp-header .btn-menu.is-open .line:nth-of-type(2)::after {
  -webkit-transform: rotate(150deg) translate3d(0, 0, 0);
          transform: rotate(150deg) translate3d(0, 0, 0);
}

footer {
  padding-left: 0;
  position: relative;
  z-index: 1000;
}

.lp-btn01 {
  background: -webkit-gradient(linear, left top, right top, from(rgb(2, 101, 229)), to(rgb(250, 159, 45)));
  background: linear-gradient(90deg, rgb(2, 101, 229) 0%, rgb(250, 159, 45) 100%);
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  line-height: 1.3125;
  height: 61px;
  width: 100%;
  max-width: 240px;
  padding: 20px 40px;
  overflow: hidden;
}
.lp-btn01::before {
  background: -webkit-gradient(linear, right top, left top, from(rgb(2, 101, 229)), to(rgb(250, 159, 45)));
  background: linear-gradient(-90deg, rgb(2, 101, 229) 0%, rgb(250, 159, 45) 100%);
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
}
.lp-btn01 .inn-wrap {
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.lp-btn01 span {
  display: block;
  width: 100%;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.lp-btn01 span:nth-child(1) {
  -webkit-transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.lp-btn01 span:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: translateY(calc(100% + 0px));
          transform: translateY(calc(100% + 0px));
}
.lp-btn01.black {
  background: #252525;
  max-width: 375px;
}
.lp-btn01.black::before {
  background: transparent;
}
.lp-btn01.line {
  background: transparent;
  border: 1px solid #252525;
  max-width: 568px;
}
.lp-btn01.line::before {
  background: transparent;
}
.lp-btn01.line span {
  color: #252525;
}
.lp-btn01.line.arrow::before {
  background: #252525;
}
.lp-btn01.line.arrow::after {
  background: #fff;
}
.lp-btn01.arrow::before {
  background: #fff;
  border-radius: 100px;
  height: 34px;
  width: 34px;
  left: inherit;
  right: 40px;
  opacity: 1;
}
.lp-btn01.arrow::after {
  background: #252525;
  -webkit-mask-image: url(../img/lp/ico-arrow.svg);
          mask-image: url(../img/lp/ico-arrow.svg);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  content: "";
  height: 14px;
  width: 17px;
  position: absolute;
  top: 0;
  right: 48px;
  bottom: 0;
  margin: auto;
}

.lp-ttl01 {
  margin-bottom: 36px;
}
.lp-ttl01 .main {
  display: block;
  font-size: 42px;
  font-weight: bold;
  line-height: 1.4523809524;
}
.lp-ttl01 .main.en {
  font-family: "Jost", sans-serif;
  font-weight: 500;
}
.lp-ttl01 .main.fz-28 {
  font-size: 28px;
}
.lp-ttl01 .sub {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.1818181818;
}

.c-txt {
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
}
.c-txt.white {
  color: #fff;
}
.c-txt + .c-txt {
  margin-top: 28px;
}

.c-contents-box + .c-contents-box {
  margin-top: 60px;
}
.c-contents-box .contents-txt {
  border-top: 1px dashed #252525;
  font-size: 16px;
  font-weight: 400;
  padding-top: 10px;
  line-height: 1.4375;
  position: relative;
  padding-left: 22px;
  margin-bottom: 60px;
}
.c-contents-box .contents-txt::before {
  background: url(../img/lp/ico-star.svg) no-repeat center center/contain;
  content: "";
  height: 11px;
  width: 12px;
  position: absolute;
  top: 9px;
  left: 0;
  bottom: 0;
  margin: auto;
}
.c-contents-box .contents-grid {
  display: grid;
  grid-template-columns: 1fr min(544px, 37.7777777778vw);
  gap: 64px;
}
.c-contents-box .contents-grid.single {
  grid-template-columns: 1fr;
}
.c-contents-box .contents-grid + .contents-grid {
  margin-top: 40px;
}
.c-contents-box .ttl-wrap .c-txt {
  line-height: 1.5;
  max-width: 448px;
}
.c-contents-box .ttl-wrap .c-txt.full {
  max-width: 100%;
}
.c-contents-box .btn-wrap {
  margin-top: 70px;
}

.c-link-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px;
}
.c-link-wrap .link {
  background: #fff;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 120px 1fr;
  grid-template-rows: repeat(2, auto);
  gap: 0 40px;
  padding: 20px 32px;
}
.c-link-wrap .link[target=_blank] {
  position: relative;
}
.c-link-wrap .link[target=_blank]::before {
  background: #252525;
  border-radius: 100px;
  content: "";
  height: 34px;
  width: 34px;
  right: 32px;
  opacity: 1;
  position: absolute;
  bottom: 42px;
}
.c-link-wrap .link[target=_blank]::after {
  background: #fff;
  -webkit-mask-image: url(../img/lp/ico-arrow.svg);
          mask-image: url(../img/lp/ico-arrow.svg);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  content: "";
  height: 14px;
  width: 17px;
  position: absolute;
  right: 40px;
  bottom: 52px;
  margin: auto;
}
.c-link-wrap .link[target=_blank] .c-txt {
  padding-right: 50px;
}
.c-link-wrap .link-img {
  grid-area: 1/1/3/2;
}
.c-link-wrap .ttl {
  grid-area: 1/2/2/3;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: grid;
  grid-template-columns: 40px auto 1fr;
  gap: 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.c-link-wrap .logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-link-wrap .num {
  border: 1px solid #252525;
  border-radius: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  font-weight: bold;
  font-family: "Jost", sans-serif;
  line-height: 1;
  min-height: 40px;
  padding-top: 3px;
}
.c-link-wrap .inn {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
}
.c-link-wrap .inn.fz-20 {
  font-size: 20px;
}
.c-link-wrap .c-txt {
  grid-area: 2/2/3/3;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 1px;
}

.c-swiper {
  position: relative;
}
.c-swiper .swiper-controller {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px;
  position: absolute;
  top: 40px;
  left: 160px;
  z-index: 10;
  height: 34px;
}
.c-swiper .swiper-controller .swiper-button-prev, .c-swiper .swiper-controller .swiper-button-next {
  background: #fff;
  border-radius: 100px;
  height: 34px;
  width: 34px;
  position: relative;
  top: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin: 0;
}
.c-swiper .swiper-controller .swiper-button-prev::before, .c-swiper .swiper-controller .swiper-button-next::before {
  background: #252525;
  -webkit-mask-image: url(../img/lp/ico-arrow.svg);
          mask-image: url(../img/lp/ico-arrow.svg);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8px;
  margin: auto;
  height: 14px;
  width: 17px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-swiper .swiper-controller .swiper-button-prev::after, .c-swiper .swiper-controller .swiper-button-next::after {
  content: none;
}
.c-swiper .swiper-controller .swiper-button-prev svg, .c-swiper .swiper-controller .swiper-button-next svg {
  display: none;
}
.c-swiper .swiper-controller .swiper-button-prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  left: 0;
}
.c-swiper .swiper-controller .swiper-button-next {
  width: 67px;
  right: 0;
  left: 0;
}

.card-swiper {
  margin-top: 60px;
  position: relative;
}
.card-swiper:not(.swiper-initialized) {
  padding: 0;
}
.card-swiper:not(.swiper-initialized) .swiper-button-prev,
.card-swiper:not(.swiper-initialized) .swiper-button-next {
  display: none;
}
.card-swiper:not(.swiper-initialized) .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card-swiper .swiper-slide {
  height: auto;
}
.card-swiper.no-gap .card {
  background: transparent;
  border-bottom: 0;
  padding: 0;
}
.card-swiper.no-gap .card .img {
  margin: 0;
  max-width: 100%;
}
.card-swiper .card {
  background: #252525;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px 20px;
  height: 100%;
}
.card-swiper .card .img {
  margin: 0 auto 20px;
  max-width: calc(100% - 20px);
}
.card-swiper .card .card-ttl {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.75;
  margin-bottom: 16px;
}
.card-swiper .card .c-txt {
  color: #fff;
  line-height: 1.5;
}
.card-swiper .swiper-controller {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px;
  z-index: 10;
  position: absolute;
  bottom: 0;
  right: 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.card-swiper .swiper-controller .swiper-button-prev, .card-swiper .swiper-controller .swiper-button-next {
  background: #fff;
  border-radius: 100px;
  height: 34px;
  width: 34px;
  position: relative;
  top: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.card-swiper .swiper-controller .swiper-button-prev::before, .card-swiper .swiper-controller .swiper-button-next::before {
  background: #252525;
  -webkit-mask-image: url(../img/lp/ico-arrow.svg);
          mask-image: url(../img/lp/ico-arrow.svg);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8px;
  margin: auto;
  height: 14px;
  width: 17px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.card-swiper .swiper-controller .swiper-button-prev::after, .card-swiper .swiper-controller .swiper-button-next::after {
  content: none;
}
.card-swiper .swiper-controller .swiper-button-prev svg, .card-swiper .swiper-controller .swiper-button-next svg {
  display: none;
}
.card-swiper .swiper-controller .swiper-button-prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  left: 0;
}
.card-swiper .swiper-controller .swiper-button-next {
  width: min(67px, 17.1794871795vw) !important;
  right: 0;
}

.lp-parallax-wrap {
  overflow: hidden;
  position: relative;
  z-index: 101;
}

.lp-parallax-section {
  display: block;
  position: relative;
  height: calc(var(--vh, 1vh) * 100);
  margin-bottom: 130svh;
}
.lp-parallax-section--01 {
  z-index: 102;
}
.lp-parallax-section--01 .parallax-content {
  padding-top: clamp(200px, 480px, min(480px, 33.3333333333vw));
}
.lp-parallax-section--02 {
  z-index: 103;
}
.lp-parallax-section--02 .parallax-content {
  padding-top: min(380px, 26.3888888889vw);
}
.lp-parallax-section--03 {
  z-index: 104;
}
.lp-parallax-section--03 .parallax-content {
  padding-top: min(397px, 27.5694444444vw);
}
.lp-parallax-section--04 {
  z-index: 105;
}
.lp-parallax-section--04 .parallax-content {
  padding-top: min(400px, 27.7777777778vw);
}
.lp-parallax-section .parallax-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.lp-parallax-section .parallax-img div picture {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.lp-parallax-section .parallax-img div picture source {
  display: none;
}
.lp-parallax-section .parallax-img div picture img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  width: 104%;
  height: 104%;
}
.lp-parallax-section .parallax-content {
  margin-left: auto;
  max-width: calc(100% - 96px);
  position: relative;
  top: 0;
  z-index: 3;
}
.lp-parallax-section .area-ttl-wrap {
  max-width: 543px;
}
.lp-parallax-section .area-ttl-wrap .ttl {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  gap: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 40px;
}
.lp-parallax-section .area-ttl-wrap .ttl .inn {
  font-size: 14px;
}
.lp-parallax-section .area-ttl-wrap .ttl .inn.large {
  font-size: 42px;
}
.lp-parallax-section .area-ttl-wrap .c-txt {
  max-width: 100%;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
}
.lp-parallax-section .txt-box {
  background: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  max-width: 1120px;
  margin: 116px 0 0 auto;
}
.lp-parallax-section .txt-box .c-contents-box {
  padding: 80px 64px 163px;
}
.lp-parallax-section .txt-box .lp-ttl01 .main {
  font-weight: bold;
}
.lp-parallax-section .btn-wrap .lp-btn01 {
  margin: auto;
}

.c-popup-area {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
  height: auto;
  width: 100%;
  max-width: 170px;
}
.c-popup-area a {
  background: linear-gradient(45deg, rgb(2, 101, 229) 0%, rgb(250, 159, 45) 100%);
  border-radius: 20px 0 0 0;
  display: block;
  padding: 20px 5px 30px;
}
.c-popup-area .img {
  max-width: 144px;
  margin: 0 auto 11px;
}
.c-popup-area .txt {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 10px;
}
.c-popup-area .ttl {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.3125;
  text-align: center;
  overflow: hidden;
  height: 21px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.c-popup-area .ttl span {
  display: block;
  width: 100%;
}
.c-popup-area .ttl span:nth-child(1) {
  -webkit-transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.c-popup-area .ttl span:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: translateY(calc(100% + 0px));
          transform: translateY(calc(100% + 0px));
}
.c-popup-area .close-btn {
  background: #F4F4F4;
  border-radius: 100px;
  cursor: pointer;
  height: 24px;
  width: 24px;
  position: absolute;
  top: -14px;
  right: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-popup-area .close-btn::before, .c-popup-area .close-btn::after {
  background: #252525;
  content: "";
  height: 1px;
  width: 12px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-popup-area .close-btn::before {
  -webkit-transform: rotate(-150deg);
          transform: rotate(-150deg);
}
.c-popup-area .close-btn::after {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.lp-home .lp-mv-section {
  position: relative;
  height: calc(var(--vh, 1vh) * 100);
  z-index: 100;
  overflow: hidden;
}
.lp-home .lp-mv-section .mv-ttl {
  color: #fff;
  font-size: min(58px, 4.0277777778vw);
  font-weight: bold;
  line-height: 1.0689655172;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.lp-home .lp-mv-section .mv-ttl .inn {
  display: block;
}
.lp-home .lp-mv-section .mv-ttl .inn + .inn {
  margin-right: 20px;
}
.lp-home .lp-mv-section .en-txt {
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: min(148px, 10.2777777778vw);
  font-weight: 300;
  line-height: 1.4459459459;
  text-align: center;
  position: absolute;
  bottom: max(-55px, -3.8194444444vw);
  left: -12px;
  right: 0;
  margin: auto;
  white-space: nowrap;
}
.lp-home .lp-mv-section .en-txt .bold {
  font-weight: bold;
}
.lp-home .lp-mv-section .mv-swiper {
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  z-index: -1;
}
.lp-home .lp-mv-section .swiper-wrapper {
  overflow: hidden;
  position: relative;
  z-index: 0;
  height: 100%;
}
.lp-home .lp-mv-section .swiper-slide.swiper-slide-active img {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
}
.lp-home .lp-mv-section .slide-img {
  position: relative;
  overflow: hidden;
  height: calc(var(--vh, 1vh) * 100);
}
.lp-home .lp-mv-section .slide-img img, .lp-home .lp-mv-section .slide-img source {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 7s 1s ease-out;
  transition: 7s 1s ease-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lp-home .lp-concept-section .inner-block {
  padding-top: 120px;
  padding-bottom: 120px;
}
.lp-home .lp-facilities-section .inner-block {
  padding-top: 120px;
  padding-bottom: 120px;
}
.lp-home .lp-tour-section .gradation-bg-area {
  position: relative;
  min-height: 100vh;
  z-index: 100;
  overflow: hidden;
}
.lp-home .lp-tour-section .gradation-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.lp-home .lp-tour-section .gradation-bg picture {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.lp-home .lp-tour-section .gradation-bg picture source {
  display: none;
}
.lp-home .lp-tour-section .gradation-bg picture img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  width: 104%;
  height: 104%;
}
.lp-home .lp-tour-section .tour-area {
  background: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: relative;
  z-index: 500;
}
.lp-home .lp-tour-section .tour-area .inner-block {
  padding-top: 84px;
  padding-bottom: 57px;
}
.lp-home .lp-tour-section .schedule-area {
  position: relative;
  overflow: hidden;
  z-index: 500;
}
.lp-home .lp-tour-section .schedule-area .l-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100vh;
  z-index: 10;
}
.lp-home .lp-tour-section .schedule-area .l-left .ttl {
  font-size: 50px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  line-height: 1.44;
}
.lp-home .lp-tour-section .schedule-area .l-left .l-6 {
  letter-spacing: 0.06em;
}
.lp-home .lp-tour-section .schedule-area .l-right {
  background: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 200px 88px 180px;
  position: relative;
  width: 50%;
}
.lp-home .lp-tour-section .schedule-area .schedule-list > li {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-radius: 10px;
  display: grid;
  grid-template-columns: min(96px, 6.6666666667vw) 1fr;
  gap: 12px;
  padding: 28px 24px;
}
.lp-home .lp-tour-section .schedule-area .schedule-list > li + li {
  margin-top: 40px;
}
.lp-home .lp-tour-section .schedule-area .schedule-list > li:last-child {
  margin-top: 60px;
  position: relative;
}
.lp-home .lp-tour-section .schedule-area .schedule-list > li:last-child::before, .lp-home .lp-tour-section .schedule-area .schedule-list > li:last-child::after {
  background: #252525;
  border-radius: 3px;
  content: "";
  height: 24px;
  width: 3px;
  position: absolute;
  top: -42px;
  left: 0;
  right: 0;
  margin: auto;
}
.lp-home .lp-tour-section .schedule-area .schedule-list > li:last-child::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.lp-home .lp-tour-section .schedule-area .schedule-list > li .num {
  display: block;
  font-size: 40px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  line-height: 1;
}
.lp-home .lp-tour-section .schedule-area .schedule-list > li .time {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4285714286;
}
.lp-home .lp-tour-section .schedule-area .schedule-list > li .ico {
  max-width: 56px;
}
.lp-home .lp-tour-section .schedule-area .schedule-list > li .inn {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: grid;
  grid-template-columns: min(100px, 6.9444444444vw) 1fr;
  gap: 12px;
}
.lp-home .lp-tour-section .schedule-area .schedule-list > li .ttl {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.45;
}
.lp-home .lp-tour-section .schedule-area .dot-list {
  margin-top: 20px;
}
.lp-home .lp-tour-section .schedule-area .dot-list li {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2142857143;
  position: relative;
  padding-left: 15px;
}
.lp-home .lp-tour-section .schedule-area .dot-list li::before {
  background: #252525;
  border-radius: 100px;
  content: "";
  height: 5px;
  width: 5px;
  position: absolute;
  top: 7px;
  left: 0;
}
.lp-home .lp-tour-section .schedule-area .note-list {
  margin-top: 20px;
}
.lp-home .lp-tour-section .schedule-area .note-list li {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  padding-left: 15px;
}
.lp-home .lp-tour-section .schedule-area .note-list li::before {
  content: "※";
  position: absolute;
  top: 1px;
  left: 0;
}
.lp-home .lp-tour-section .tour-img-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 60px 0;
  margin-top: 80px;
}
.lp-home .lp-tour-section .tour-img-wrap .babyroom-box-wrap .babyroom-box {
  background: #FFF5EE;
  border-radius: 10px;
  padding: 30px 25px;
}
.lp-home .lp-tour-section .tour-img-wrap .babyroom-box-wrap .ttl {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.75;
  position: relative;
  padding-left: 69px;
  margin-bottom: 20px;
}
.lp-home .lp-tour-section .tour-img-wrap .babyroom-box-wrap .ttl::before {
  background: url(../img/lp/ico-baby.svg) no-repeat center center/contain;
  content: "";
  height: 40px;
  width: 49px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.lp-home .lp-tour-section .tour-img-wrap .babyroom-box-wrap .l-grid {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.lp-home .lp-access-section .inner-block {
  padding-top: 116px;
  padding-bottom: 126px;
}
.lp-home .lp-access-section .map-area {
  position: relative;
  width: 100%;
  padding-top: 30.36%;
  height: 0;
  margin-top: 87px;
}
.lp-home .lp-access-section .map-area iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.lp-home .lp-access-section .c-table {
  margin-top: 60px;
  width: 100%;
}
.lp-home .lp-access-section .c-table tr {
  border-bottom: 1px dashed #252525;
}
.lp-home .lp-access-section .c-table th, .lp-home .lp-access-section .c-table td {
  padding: 20px 0;
  text-align: left;
}
.lp-home .lp-access-section .c-table th {
  font-size: 16px;
  font-weight: bold;
  vertical-align: baseline;
  min-width: 280px;
}
.lp-home .lp-access-section .c-table td {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}
.lp-home .lp-access-section .c-table .inn {
  display: block;
}
.lp-home .lp-access-section .c-table .inn + .inn {
  margin-top: 25px;
}
.lp-home .home-pickup-section {
  padding: 0;
  width: calc(100% + 116px);
}
.lp-home .home-pickup-section .c-arrow-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px;
  z-index: 10;
  margin-top: 30px;
}
.lp-home .home-pickup-section .swiper-button-prev, .lp-home .home-pickup-section .swiper-button-next {
  display: block;
  position: relative;
  top: 0;
  background: #fff;
  border-radius: 100px;
  height: 34px;
  width: 34px;
  position: relative;
  left: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin-top: 0;
}
.lp-home .home-pickup-section .swiper-button-prev::before, .lp-home .home-pickup-section .swiper-button-next::before {
  background: #252525;
  -webkit-mask-image: url(../img/lp/ico-arrow.svg);
          mask-image: url(../img/lp/ico-arrow.svg);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8px;
  margin: auto;
  height: 14px;
  width: 17px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.lp-home .home-pickup-section .swiper-button-prev::after, .lp-home .home-pickup-section .swiper-button-next::after {
  display: none;
}
.lp-home .home-pickup-section .swiper-button-prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.lp-home .home-pickup-section .swiper-button-next {
  width: 67px;
}
.lp-home .c-section {
  position: relative;
  z-index: 1000;
}
.lp-home .c-section.bg-noise01 {
  background: url(../img/lp/bg-noise01.jpg.webp) center top/cover;
}
.lp-home .c-section.bg-noise02 {
  background: url(../img/lp/bg-noise02.jpg.webp) center top/cover;
}
.lp-home .c-bread {
  position: relative;
  z-index: 1002;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 14px;
  }
  body {
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  #wrapper {
    min-width: 320px;
  }
  .inner-block {
    padding-left: 20px;
    padding-right: 20px;
  }
  .pc {
    display: none !important;
  }
  .lp-header .inner-block {
    padding: 35px 20px 20px;
  }
  .lp-header .menu-area .c-menu-wrap {
    background: url(../img/lp/bg-noise01.jpg.webp) center top/cover;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: min(139px, 35.641025641vw) min(20px, 5.1282051282vw) min(40px, 10.2564102564vw);
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .lp-header .menu-area .c-menu-wrap.is-open {
    opacity: 1;
    pointer-events: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .lp-header .menu-area .c-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .lp-header .menu-area .c-menu li {
    border-bottom: 1px dashed #252525;
  }
  .lp-header .menu-area .c-menu > li > .inn {
    position: relative;
    padding-left: 22px;
  }
  .lp-header .menu-area .c-menu > li > .inn::before {
    background: url(../img/lp/ico-star.svg) no-repeat center center/contain;
    content: "";
    height: 11px;
    width: 12px;
    position: absolute;
    top: 3px;
    left: 0;
    bottom: 0;
    margin: auto;
  }
  .lp-header .menu-area .c-menu .inn {
    font-size: min(22px, 5.641025641vw);
    font-weight: bold;
    line-height: 0.9545454545;
    padding: min(30px, 7.6923076923vw) 0;
  }
  .lp-header .menu-area .c-menu .sub-menu li {
    border: none;
  }
  .lp-header .menu-area .c-menu .sub-menu li:last-child .inn {
    padding-bottom: min(30px, 7.6923076923vw);
  }
  .lp-header .logo {
    z-index: 10;
  }
  .lp-header .logo img {
    max-width: min(80px, 20.5128205128vw);
  }
  .lp-btn01 {
    font-size: 12px;
    max-width: 160px;
    padding: 10px 15px;
    height: min(41px, 10.5128205128vw);
    line-height: 1.75;
  }
  .lp-btn01.black {
    height: min(74px, 18.9743589744vw);
    padding: 26px 30px;
  }
  .lp-btn01.line {
    padding: 20px 15px;
    height: min(82px, 21.0256410256vw);
  }
  .lp-btn01.line span {
    line-height: 1.3125;
  }
  .lp-btn01.arrow::before {
    height: min(34px, 8.7179487179vw);
    width: min(34px, 8.7179487179vw);
    right: min(30px, 7.6923076923vw);
  }
  .lp-btn01.arrow::after {
    height: min(14px, 3.5897435897vw);
    width: min(17px, 4.358974359vw);
    right: min(38px, 9.7435897436vw);
  }
  .lp-ttl01 {
    margin-bottom: min(25px, 6.4102564103vw);
  }
  .lp-ttl01 .main {
    font-size: min(32px, 8.2051282051vw);
    line-height: 1.4375;
  }
  .lp-ttl01 .main.fz-28 {
    font-size: min(24px, 6.1538461538vw);
  }
  .lp-ttl01 .sub {
    font-size: min(20px, 5.1282051282vw);
    line-height: 1.2;
  }
  .c-txt {
    font-size: min(14px, 3.5897435897vw);
  }
  .c-txt + .c-txt {
    margin-top: min(40px, 10.2564102564vw);
  }
  .c-contents-box + .c-contents-box {
    margin-top: min(108px, 27.6923076923vw);
  }
  .c-contents-box .contents-txt {
    font-size: min(16px, 4.1025641026vw);
    margin-bottom: 20px;
  }
  .c-contents-box .contents-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .c-contents-box .contents-grid + .contents-grid {
    margin-top: min(80px, 20.5128205128vw);
  }
  .c-contents-box .ttl-wrap .c-txt {
    max-width: 100%;
  }
  .c-contents-box .btn-wrap {
    margin-top: min(136px, 34.8717948718vw);
  }
  .c-link-wrap {
    gap: min(20px, 5.1282051282vw);
  }
  .c-link-wrap .link {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    grid-template-columns: min(120px, 30.7692307692vw) 1fr;
    gap: min(20px, 5.1282051282vw);
    padding: min(32px, 8.2051282051vw) min(20px, 5.1282051282vw);
  }
  .c-link-wrap .link[target=_blank]::before {
    height: min(34px, 8.7179487179vw);
    width: min(34px, 8.7179487179vw);
    right: min(20px, 5.1282051282vw);
    bottom: min(56px, 14.358974359vw);
  }
  .c-link-wrap .link[target=_blank]::after {
    height: min(14px, 3.5897435897vw);
    width: min(17px, 4.358974359vw);
    right: min(28px, 7.1794871795vw);
    bottom: min(66px, 16.9230769231vw);
  }
  .c-link-wrap .link[target=_blank] .c-txt {
    padding-right: min(40px, 10.2564102564vw);
  }
  .c-link-wrap .link-img {
    grid-area: 1/1/2/2;
  }
  .c-link-wrap .ttl {
    grid-area: 1/2/2/3;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
    gap: min(10px, 2.5641025641vw);
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .c-link-wrap .logo {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .c-link-wrap .num {
    font-size: min(20px, 5.1282051282vw);
    min-height: min(24px, 6.1538461538vw);
    width: min(24px, 6.1538461538vw);
    padding-top: 1px;
  }
  .c-link-wrap .inn {
    font-size: min(14px, 3.5897435897vw);
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .c-link-wrap .c-txt {
    grid-area: 2/1/3/3;
    font-size: min(12px, 3.0769230769vw);
    margin-top: 0;
  }
  .c-swiper .swiper-controller {
    gap: min(20px, 5.1282051282vw);
    top: min(40px, 10.2564102564vw);
    left: min(20px, 5.1282051282vw);
    height: min(44px, 11.2820512821vw);
  }
  .c-swiper .swiper-controller .swiper-button-prev::before, .c-swiper .swiper-controller .swiper-button-next::before {
    height: min(18px, 4.6153846154vw);
    width: min(22px, 5.641025641vw);
    right: min(11px, 2.8205128205vw);
  }
  .c-swiper .swiper-controller .swiper-button-prev, .c-swiper .swiper-controller .swiper-button-next {
    height: min(44px, 11.2820512821vw);
    width: min(44px, 11.2820512821vw);
  }
  .c-swiper .swiper-controller .swiper-button-next {
    left: 0;
    width: min(87px, 22.3076923077vw);
  }
  .card-swiper {
    margin-top: min(60px, 15.3846153846vw);
    padding-bottom: min(74px, 18.9743589744vw);
  }
  .card-swiper .card {
    padding: min(30px, 7.6923076923vw) min(20px, 5.1282051282vw);
  }
  .card-swiper .card .img {
    margin: 0 auto min(20px, 5.1282051282vw);
    max-width: calc(100% - min(20px, 5.1282051282vw));
  }
  .card-swiper .card .card-ttl {
    font-size: min(18px, 4.6153846154vw);
    line-height: 1.75;
  }
  .card-swiper .swiper-controller .swiper-button-prev::before, .card-swiper .swiper-controller .swiper-button-next::before {
    height: min(18px, 4.6153846154vw);
    width: min(22px, 5.641025641vw);
    right: min(11px, 2.8205128205vw);
  }
  .lp-parallax-section {
    margin-bottom: 50vh;
    height: 100%;
  }
  .lp-parallax-section--01 .parallax-content {
    padding-top: min(525px, 134.6153846154vw);
  }
  .lp-parallax-section--02 .parallax-content {
    padding-top: min(525px, 134.6153846154vw);
  }
  .lp-parallax-section--03 .parallax-content {
    padding-top: min(525px, 134.6153846154vw);
  }
  .lp-parallax-section--04 .parallax-content {
    padding-top: min(525px, 134.6153846154vw);
  }
  .lp-parallax-section .parallax-content {
    max-width: calc(100% - 20px);
  }
  .lp-parallax-section .area-ttl-wrap {
    max-width: 100%;
  }
  .lp-parallax-section .area-ttl-wrap .ttl .inn {
    font-size: min(14px, 3.5897435897vw);
  }
  .lp-parallax-section .area-ttl-wrap .ttl .inn.large {
    font-size: min(28px, 7.1794871795vw);
  }
  .lp-parallax-section .area-ttl-wrap .ttl {
    gap: min(30px, 7.6923076923vw);
    margin-bottom: min(40px, 10.2564102564vw);
  }
  .lp-parallax-section .area-ttl-wrap .ttl img {
    max-height: min(30px, 7.6923076923vw);
  }
  .lp-parallax-section .txt-box {
    margin: min(120px, 30.7692307692vw) 0 0 auto;
  }
  .lp-parallax-section .txt-box .c-contents-box {
    padding: min(60px, 15.3846153846vw) min(20px, 5.1282051282vw) min(148px, 37.9487179487vw);
  }
  .lp-parallax-section .c-contents-box .btn-wrap {
    margin-top: min(60px, 15.3846153846vw);
  }
  .c-popup-area {
    max-width: 100%;
    width: calc(100% - min(70px, 17.9487179487vw));
  }
  .c-popup-area a {
    display: grid;
    grid-template-columns: min(95px, 24.358974359vw) 1fr;
    gap: 10px;
    padding: min(16px, 4.1025641026vw) min(15px, 3.8461538462vw) min(16px, 4.1025641026vw) min(35px, 8.9743589744vw);
  }
  .c-popup-area .img {
    max-width: 100%;
    margin: auto;
  }
  .c-popup-area .txt {
    font-size: 10px;
    margin-bottom: min(10px, 2.5641025641vw);
    line-height: 1.5;
  }
  .c-popup-area .ttl {
    font-size: min(16px, 4.1025641026vw);
    height: min(21px, 5.3846153846vw);
  }
  .c-popup-area .close-btn {
    height: min(24px, 6.1538461538vw);
    width: min(24px, 6.1538461538vw);
    top: max(-15px, -3.8461538462vw);
  }
  .c-popup-area .close-btn::before, .c-popup-area .close-btn::after {
    width: 10px;
  }
  .lp-home .lp-mv-section .mv-ttl {
    font-size: min(32px, 8.2051282051vw);
    line-height: 1.0697674419;
    bottom: inherit;
    top: min(160px, 41.0256410256vw);
  }
  .lp-home .lp-mv-section .mv-ttl .inn + .inn {
    margin-right: 13px;
  }
  .lp-home .lp-mv-section .en-txt {
    font-size: min(78px, 20vw);
    line-height: 0.8163265306;
    left: -7px;
    bottom: -10px;
    text-align: left;
  }
  .lp-home .lp-concept-section .inner-block {
    padding-top: min(90px, 23.0769230769vw);
    padding-bottom: min(98px, 25.1282051282vw);
  }
  .lp-home .lp-facilities-section .inner-block {
    padding-top: min(90px, 23.0769230769vw);
    padding-bottom: min(108px, 27.6923076923vw);
  }
  .lp-home .lp-facilities-section .contents-grid:first-of-type {
    gap: 0;
  }
  .lp-home .lp-tour-section .tour-area .inner-block {
    padding-top: min(90px, 23.0769230769vw);
    padding-bottom: min(195px, 50vw);
  }
  .lp-home .lp-tour-section .schedule-area .l-left {
    position: relative;
    width: 100%;
    height: 100%;
    padding: min(98px, 25.1282051282vw) min(20px, 5.1282051282vw);
  }
  .lp-home .lp-tour-section .schedule-area .l-left .ttl {
    font-size: min(50px, 12.8205128205vw);
  }
  .lp-home .lp-tour-section .schedule-area .l-right {
    padding: min(80px, 20.5128205128vw) min(20px, 5.1282051282vw) min(47px, 12.0512820513vw);
    width: 100%;
  }
  .lp-home .lp-tour-section .schedule-area .schedule-list > li {
    grid-template-columns: min(64px, 16.4102564103vw) 1fr;
    gap: 10px;
    padding: min(24px, 6.1538461538vw) min(10px, 2.5641025641vw);
  }
  .lp-home .lp-tour-section .schedule-area .schedule-list > li + li {
    margin-top: min(25px, 6.4102564103vw);
  }
  .lp-home .lp-tour-section .schedule-area .schedule-list > li:last-child {
    margin-top: min(55px, 14.1025641026vw);
  }
  .lp-home .lp-tour-section .schedule-area .schedule-list > li:last-child::before, .lp-home .lp-tour-section .schedule-area .schedule-list > li:last-child::after {
    height: min(24px, 6.1538461538vw);
    width: min(3px, 0.7692307692vw);
    top: max(-40px, -10.2564102564vw);
  }
  .lp-home .lp-tour-section .schedule-area .schedule-list > li .num {
    font-size: min(28px, 7.1794871795vw);
  }
  .lp-home .lp-tour-section .schedule-area .schedule-list > li .time {
    font-size: min(12px, 3.0769230769vw);
  }
  .lp-home .lp-tour-section .schedule-area .schedule-list > li .ico {
    max-width: min(50px, 12.8205128205vw);
  }
  .lp-home .lp-tour-section .schedule-area .schedule-list > li .inn {
    grid-template-columns: min(70px, 17.9487179487vw) 1fr;
    gap: 10px;
  }
  .lp-home .lp-tour-section .schedule-area .schedule-list > li .ttl {
    font-size: min(18px, 4.6153846154vw);
    line-height: 1.2222222222;
  }
  .lp-home .lp-tour-section .schedule-area .dot-list {
    margin-top: min(10px, 2.5641025641vw);
  }
  .lp-home .lp-tour-section .schedule-area .dot-list li {
    font-size: min(12px, 3.0769230769vw);
    line-height: 1.1666666667;
    padding-left: 10px;
  }
  .lp-home .lp-tour-section .schedule-area .dot-list li::before {
    height: 3px;
    width: 3px;
    top: 6px;
  }
  .lp-home .lp-tour-section .schedule-area .note-list {
    margin-top: min(25px, 6.4102564103vw);
  }
  .lp-home .lp-tour-section .schedule-area .note-list li {
    font-size: min(14px, 3.5897435897vw);
    padding-left: 15px;
    line-height: 1.5;
  }
  .lp-home .lp-tour-section .schedule-area .note-list li::before {
    top: 0;
  }
  .lp-home .lp-tour-section .tour-img-wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .lp-home .lp-tour-section .tour-img-wrap > .c-txt {
    margin-top: min(40px, 10.2564102564vw);
  }
  .lp-home .lp-tour-section .tour-img-wrap .babyroom-box-wrap {
    margin-top: min(40px, 10.2564102564vw);
  }
  .lp-home .lp-tour-section .tour-img-wrap .babyroom-box-wrap .babyroom-box {
    padding: min(30px, 7.6923076923vw) min(26px, 6.6666666667vw);
  }
  .lp-home .lp-tour-section .tour-img-wrap .babyroom-box-wrap .ttl {
    font-size: min(16px, 4.1025641026vw);
    line-height: 1.5;
    padding-left: min(59px, 15.1282051282vw);
    margin-bottom: min(20px, 5.1282051282vw);
  }
  .lp-home .lp-tour-section .tour-img-wrap .babyroom-box-wrap .ttl::before {
    height: min(40px, 10.2564102564vw);
    width: min(49px, 12.5641025641vw);
  }
  .lp-home .lp-tour-section .tour-img-wrap .babyroom-box-wrap .l-grid {
    grid-template-columns: 1fr;
    gap: min(16px, 4.1025641026vw);
  }
  .lp-home .lp-tour-section .tour-img-wrap .babyroom-box-wrap .img {
    margin: auto;
    width: calc(100% - min(74px, 18.9743589744vw));
  }
  .lp-home .lp-tour-section .contents-grid {
    gap: 0;
  }
  .lp-home .lp-access-section .inner-block {
    padding-top: min(119px, 30.5128205128vw);
    padding-bottom: min(105px, 26.9230769231vw);
  }
  .lp-home .lp-access-section .map-area {
    padding-top: 100%;
    margin-top: min(80px, 20.5128205128vw);
  }
  .lp-home .lp-access-section .c-table {
    margin-top: min(48px, 12.3076923077vw);
  }
  .lp-home .lp-access-section .c-table th, .lp-home .lp-access-section .c-table td {
    padding: min(20px, 5.1282051282vw) 0;
  }
  .lp-home .lp-access-section .c-table th {
    font-size: min(16px, 4.1025641026vw);
    min-width: min(80px, 20.5128205128vw);
  }
  .lp-home .lp-access-section .c-table td {
    font-size: min(14px, 3.5897435897vw);
    padding-left: min(15px, 3.8461538462vw);
  }
  .lp-home .lp-access-section .c-table .inn + .inn {
    margin-top: min(25px, 6.4102564103vw);
  }
  .lp-home .home-pickup-section {
    width: calc(100% + 20px);
  }
  .lp-home .home-pickup-section .c-arrow-wrap {
    margin-left: auto;
    margin-right: min(19px, 4.8717948718vw);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media only screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  .inner-block {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1200px;
  }
  a,
  a::before,
  a::after,
  button,
  button::before,
  button::after {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .sp {
    display: none !important;
  }
  .lp-header .menu-area {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    display: grid;
    grid-template-columns: 1fr auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 60px;
    padding: 10px 10px 10px 40px;
  }
  .lp-header .menu-area .c-menu li:hover > .inn {
    color: rgba(0, 0, 0, 0.3);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .lp-header .menu-area .c-menu li:hover > span.inn + .sub-menu-wrap {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .lp-header .menu-area .c-menu .sub-menu-wrap {
    position: absolute;
    top: 20px;
    left: -20px;
    min-width: 208px;
    padding-top: 40px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .lp-header .menu-area .c-menu .sub-menu {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 20px;
  }
  .lp-header .menu-area .c-menu .sub-menu li + li {
    margin-top: 10px;
  }
  .lp-header .btn-menu {
    display: none;
  }
  .lp-btn01:hover::before {
    opacity: 1;
  }
  .lp-btn01:hover span:nth-child(1) {
    -webkit-transform: translateY(calc(-100% - 0px));
            transform: translateY(calc(-100% - 0px));
    -webkit-transition: 0.3s cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition: 0.3s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  }
  .lp-btn01:hover span:nth-child(2) {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
    transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  }
  .c-link-wrap .link:hover {
    background: #FFF5EE;
  }
  .c-swiper .swiper-controller .swiper-button-prev:hover, .c-swiper .swiper-controller .swiper-button-next:hover {
    background: #252525;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-swiper .swiper-controller .swiper-button-prev:hover::before, .c-swiper .swiper-controller .swiper-button-next:hover::before {
    background: #fff;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .card-swiper .swiper-controller .swiper-button-prev:hover, .card-swiper .swiper-controller .swiper-button-next:hover {
    background: #252525;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .card-swiper .swiper-controller .swiper-button-prev:hover::before, .card-swiper .swiper-controller .swiper-button-next:hover::before {
    background: #fff;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .lp-parallax-section--04 .card-swiper:not(.swiper-initialized) .swiper-wrapper {
    gap: 0;
  }
  .lp-parallax-section .txt-box .c-contents-box .contents-txt {
    margin-bottom: 53px;
  }
  .lp-parallax-section .txt-box .c-txt {
    line-height: 2;
  }
  .c-popup-area a:hover .ttl span:nth-child(1) {
    -webkit-transform: translateY(calc(-100% - 0px));
            transform: translateY(calc(-100% - 0px));
    -webkit-transition: 0.3s cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition: 0.3s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  }
  .c-popup-area a:hover .ttl span:nth-child(2) {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
    transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  }
  .c-popup-area .close-btn:hover {
    background: #252525;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-popup-area .close-btn:hover::before, .c-popup-area .close-btn:hover::after {
    background: #fff;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .lp-home .lp-tour-section .schedule-area .l-right {
    margin-left: auto;
  }
  .lp-home .lp-tour-section .tour-img-wrap .tour-img:nth-child(1) {
    grid-area: 1/1/2/2;
  }
  .lp-home .lp-tour-section .tour-img-wrap .tour-img:nth-child(2) {
    grid-area: 1/2/2/3;
  }
  .lp-home .lp-tour-section .tour-img-wrap > .c-txt {
    grid-area: 2/1/3/2;
    padding-right: 16px;
  }
  .lp-home .lp-tour-section .tour-img-wrap .babyroom-box-wrap {
    grid-area: 2/2/3/3;
    padding-left: 48px;
  }
  .lp-home .home-pickup-section .swiper-button-prev:hover, .lp-home .home-pickup-section .swiper-button-next:hover {
    background: #252525;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .lp-home .home-pickup-section .swiper-button-prev:hover::before, .lp-home .home-pickup-section .swiper-button-next:hover::before {
    background: #fff;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1030px) {
  .lp-header .menu-area {
    gap: 20px;
  }
  .lp-header .menu-area .c-menu {
    gap: 10px;
  }
  .lp-header .logo img {
    max-width: 95px;
  }
  .lp-btn01 {
    max-width: 220px;
    padding: 20px 15px;
  }
}
@media only screen and (max-width: 1000px) {
  .card-swiper .swiper-controller {
    gap: min(20px, 5.1282051282vw);
    bottom: 0;
    right: min(19px, 4.8717948718vw);
  }
  .card-swiper .swiper-controller .swiper-button-prev, .card-swiper .swiper-controller .swiper-button-next {
    height: min(44px, 11.2820512821vw);
    width: min(44px, 11.2820512821vw);
  }
}
@media only screen and (min-width: 768px) and (max-height: 750px) {
  .lp-parallax-section {
    min-height: 200vh;
  }
  .lp-parallax-section .parallax-img {
    min-height: 200vh;
  }
  .lp-home .lp-mv-section {
    min-height: 200vh;
  }
  .lp-home .lp-mv-section .slide-img {
    min-height: 200vh;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1300px) {
  .lp-home .lp-facilities-section .contents-grid {
    grid-template-columns: min(400px, 30.7692307692vw) 1fr;
  }
  .lp-home .lp-tour-section .schedule-area .l-right {
    padding: 200px 30px 180px;
  }
}
/*# sourceMappingURL=style_lp.css.map */