/* stylelint-disable no-descending-specificity */
/* stylelint-disable scss/no-global-function-names */
/* @media (min-width: 768px) and (max-width: 1280px) {
  html {
    font-size: 0.7142857143vw;
  }
} */
@media (min-width: 768px) {
  .archive {
    border-top: 1px solid #58595b;
  }
}

.landing-page {
  --color-white: #ffffff;
  --color-navy: #37376D;
  --font-garamond: "garamond-premier-pro", serif;
  --font-gothic: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
}

@media (min-width: 768px) {
  .landing-page {
    --rate: 0.1rem;
    --container-size: 100cqi / 750;
    padding-block-end: calc(140 * var(--rate));
  }
}
@media (max-width: 767px) {
  .landing-page {
    --rate: 100vw / 750;
    --container-size: var(--rate);
  }
  .landing-page a:hover {
    opacity: 1 !important;
  }
}

.landing-page * {
  box-sizing: border-box;
  font-feature-settings: 'palt';
  line-height: 1;
}

.landing-page a {
  display: var(--display, block);
}

.landing-page img,
.landing-page picture {
  display: block;
}

.landing-page img,
.landing-page svg {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  image-rendering: optimizequality;
}

.landing-page .animation-zoom-in {
  overflow: hidden;
}

.landing-page .animation-zoom-in > * {
  opacity: 0;
  transition: all 1.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1.1);
}

.landing-page .animation-zoom-in.is-show > * {
  opacity: 1;
  transform: scale(1);
}

.landing-page .animation-zoom-in-circle {
  overflow: hidden;
  clip-path: ellipse(50% 50% at 50% 50%);
}

.landing-page .animation-zoom-in-circle > * {
  opacity: 0;
  transition: all 1.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1.1);
}

.landing-page .animation-zoom-in-circle.is-show > * {
  opacity: 1;
  transform: scale(1);
}

.landing-page .animation-fade {
  opacity: 0;
  transform: translate(0, 0);
  filter: blur(5px);
  transition: all 1.1s ease;
}

.landing-page .animation-fade.is-show {
  opacity: 1;
  filter: blur(0px);
  transform: translate(0, 0);
}

.landing-page .fadein-load {
  opacity: 0;
  transform: translate(0, 0);
  filter: blur(5px);
  transition: all 1s ease;
}

.landing-page .fadein-load.active {
  opacity: 1;
  filter: blur(0px);
  transform: translate(0, 0);
}

.landing-page .animation-fade-to-top {
  opacity: 0;
  transform: translateY(5%);
}

.landing-page .animation-fade-to-top.is-show {
  opacity: 1;
  transition: all 1.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(0);
}

.landing-page .animation-fade-to-left {
  opacity: 0;
  transform: translateX(5%);
}

.landing-page .animation-fade-to-left.is-show {
  opacity: 1;
  transition: all 1.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(0);
}

.landing-page .animation-fade-to-right {
  opacity: 0;
  transform: translateX(-5%);
}

.landing-page .animation-fade-to-right.is-show {
  opacity: 1;
  transition: all 1.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(0);
}

.landing-page .animation-fade-to-left-hard {
  opacity: 0;
  transition-duration: 1.1s;
  transform: translate3d(30%, 0, 0);
}

.landing-page .animation-fade-to-left-hard.is-show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.landing-page .animation-fade-to-right-hard {
  opacity: 0;
  transition-duration: 1.1s;
  transform: translate3d(-30%, 0, 0);
}

.landing-page .animation-fade-to-right-hard.is-show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.landing-page .animation-slide-in-to-bottom {
  clip-path: inset(0 0 100% 0);
}

.landing-page .animation-slide-in-to-bottom.is-show {
  clip-path: inset(0 0 0 0);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.landing-page .animation-slide-in-to-top {
  clip-path: inset(100% 0 0 0);
}

.landing-page .animation-slide-in-to-top.is-show {
  clip-path: inset(0 0 0 0);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes loop-infinite-to-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}


@media screen and (max-width: 767px) {
  .landing-page .without-sp {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .landing-page .only-sp {
    display: none !important;
  }
}

.landing-page__hero {
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .landing-page__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }
  .landing-page__hero {
    position: sticky;
    top: var(--header-container-height, 0);
    height: calc(100vh - (var(--header-container-height, 0px)));
    overflow: hidden;
  }
  .landing-page__hero .landing-page__hero-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 32% bottom;
  }
  .landing-page__hero .landing-page_title_box {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 1;
  }
  .landing-page_title_box .landing-page_title {
    position: absolute;
    width: calc(300*(100vw / 1400));
    right: calc(40*100vw/1400);
    bottom: 5.5dvh;
  }
}

.landing-page__hero-image {
  display: grid;
  height: 100%;
}

.landing-page__contents-lead {
  font-family: var(--font-gothic);
  padding-block: calc(108* var(--container-size)) calc(128* var(--container-size));
  font-size: calc(25 * var(--container-size));
  line-height: 2;
  color: var(--color-navy);
  text-align: center;
  letter-spacing: 0.12em;
  font-weight: var(--fw-regular);
}

.landing-page__contents-image {
  position: relative;
  display: inline-block;
}
.landing-page__contents-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  z-index: -1; /* 画像の背面に配置 */
}

@media (min-width: 768px) {
  .landing-page__contents-body {
    width: 31.4285714286vw;
    margin-inline: auto;
    container-type: inline-size;
  }
}

.landing-page__contents-container {
  overflow: clip;
}

.landing-page__contents-shell + .landing-page__contents-shell {
  margin-block-start: var(--shell-gap, calc(184* var(--container-size)));
}

.landing-page__contents-shell .contents_title {
  font-size: calc(60* var(--container-size));
  font-family: var(--font-book);
  font-weight: 400;
  color: var(--color-beige);
  text-align: right;
  letter-spacing: 0.01em;
  margin-top: calc(50* var(--container-size));
}

.landing-page__contents-shell:first-child .landing-page__contents-block02 {
  padding-inline-start: calc(190* var(--container-size));
  padding-inline-end: calc(40* var(--container-size));
  margin-top: calc(80* var(--container-size));
}

.landing-page__contents-shell:first-child .landing-page__contents-block03 {
  padding-inline-start: calc(40* var(--container-size));
  padding-inline-end: calc(210* var(--container-size));
  margin-top: calc(40* var(--container-size));
}

@media (min-width: 768px) {
  .landing-page__contents-shell:first-child .landing-page__contents-block:first-child {
    margin-top: min(30*(100vw / 1400), 30px);
  }
  .landing-page__contents-shell .contents_title {
    margin-top: calc(47* var(--container-size));
  }
  .landing-page__contents-shell:first-child .landing-page__contents-block:first-child .landing-page__contents-image {
      margin-top: calc(65* var(--container-size));
  }
}

.landing-page__contents-shell:nth-child(2) {
  margin-top: calc(188* var(--container-size));
  position: relative;
}

.landing-page__contents-shell:nth-child(2) .landing-page__contents-block01 {
  padding-inline-end: calc(110* var(--container-size));
}

.landing-page__contents-shell:nth-child(2) .landing-page__contents-block02 {
  position: absolute;
  padding-inline-start: calc(270* var(--container-size));
  padding-inline-end: calc(40* var(--container-size));
  top: calc(920* var(--container-size));
  z-index: 3;
}

.landing-page__contents-shell:nth-child(2) .landing-page__contents-prices {
  position: absolute;
  top: calc(1400* var(--container-size));
  left: calc(55* var(--container-size));
  z-index: 5;
  /* flex: none; */
  display: block;
  align-items: start;
}

.landing-page__contents-shell:nth-child(3) .landing-page__contents-block01 {
  margin-top: calc(820* var(--container-size));
  padding-inline-end: calc(190* var(--container-size));
}

.landing-page__contents-shell:nth-child(3) .landing-page__contents-block02 {
  margin-top: calc(40* var(--container-size));
  padding-inline-start: calc(90* var(--container-size));
}
.landing-page__contents-shell:nth-child(3) .landing-page__contents-prices {
  width: calc(335* var(--container-size));
  justify-content: var(--prices-justfy, left);
  margin-inline-start: calc(92* var(--container-size));
  margin-block-start: var(--prices-gap, calc(36* var(--container-size)));
}

.landing-page__contents-shell:nth-child(4) {
  margin-block-start: var(--shell-gap, calc(184* var(--container-size)));
}

.landing-page__contents-shell:nth-child(4) .landing-page__contents-block02 {
  margin-top: calc(202* var(--container-size));
  padding-inline-start: calc(95* var(--container-size));
  padding-inline-end: calc(95* var(--container-size));
  position: relative;
}

.landing-page__contents-shell:nth-child(4) .landing-page__contents-block02 .contents-txt_box {
    position: absolute;
    width: calc(307* var(--container-size));
    top: calc(-79* var(--container-size));
    left: calc(34* var(--container-size));
    pointer-events: none;
    z-index: 3;
}

.landing-page__contents-shell:nth-child(4) .landing-page__contents-prices {
  --prices-justfy: right;
  width: calc(500* var(--container-size));
  margin-inline-start: calc(154* var(--container-size));
  /* padding-inline: calc(85* var(--container-size)) calc(35* var(--container-size)); */
}

.landing-page__contents-shell:nth-child(5) {
  margin-block-start: var(--shell-gap, calc(186* var(--container-size)));
}

.landing-page__contents-shell:nth-child(5) .landing-page__contents-block01 {
  padding-inline-start: calc(210* var(--container-size));
}

.landing-page__contents-shell:nth-child(5) .landing-page__contents-block02 {
  padding-inline-end: calc(90* var(--container-size));
  margin-top: calc(82* var(--container-size));
}

.landing-page__contents-shell:nth-child(5) .landing-page__contents-prices {
  justify-content: var(--prices-justfy, left);
  padding-inline-start: calc(40* var(--container-size));
}

.landing-page__contents-block + .landing-page__contents-block {
  margin-block-start: var(--block-gap, calc(80 * var(--container-size)));
  padding-inline-start: calc(84* var(--container-size));
}

.landing-page__contents-prices {
    display: flex;
    flex-wrap: wrap;
    column-gap: calc(15* var(--container-size));
    align-items: center;
    justify-content: var(--prices-justfy, center);
    margin-block-start: var(--prices-gap, calc(34* var(--container-size)));
    font-family: var(--font-garamond);
    font-size: calc(25* var(--container-size));
    color: var(--color-navy);
}
.landing-page__contents-shell:first-child .landing-page__contents-prices {
  justify-content: var(--prices-justfy, left);
  padding-inline-start: calc(40* var(--container-size));
}

.landing-page__contents-prices a {
  line-height: 1.6;
}

.landing-page__contents-foot {
  padding-block: calc(185* var(--container-size)) calc(26* var(--container-size));
  color: var(--color-navy);
  text-align: center;
}

.landing-page__contents-foot-link-button {
  --display: inline-block;
  position: relative;
  padding-block-end: calc(5* var(--container-size));
  font-family: "garamond-premier-pro-display", serif;
  font-size: calc(56* var(--container-size));
  font-weight: var(--fw-medium);
  letter-spacing: 0;
}

.landing-page__contents-foot-link-button::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  background-color: var(--color-navy);
}

.landing-page__contents-foot-link-text {
  padding-block-end: calc(8* var(--container-size));
  border-bottom: 1px solid var(--color-navy);
}

.landing-page__contents-foot-credit {
    margin-block: calc(154* var(--container-size)) calc(125 * var(--container-size));
  font-family: var(--font-garamond);
  font-size: calc(25 * var(--container-size));
  line-height: 1.6;
  letter-spacing: 0.01em;
  font-weight: var(--fw-regular);
}

.landing-page .splide__pagination {
  position: absolute;
  right: initial;
  bottom: calc(20 * var(--container-size));
  left: 0;
  column-gap: calc(20 * var(--container-size));
  padding: 0 calc(20 * var(--container-size));
}

.landing-page .splide__pagination__page {
  width: calc(10 * var(--container-size));
  height: calc(10 * var(--container-size));
  padding: 0;
  margin: 0;
  background: transparent;
  border: 1px solid var(--color-white);
  opacity: 1;
}

.landing-page .splide__pagination__page.is-active {
  background: var(--color-white);
  transform: scale(1);
}

  .text_anim p {
    font-family: var(--font-garamond);
    font-size: calc(50 * var(--container-size));
    letter-spacing: 0;
    line-height: 1.1328;
    margin: 0;
    text-align: left;
    color: var(--color-navy);
    padding-top: calc(6* var(--container-size));
  }
  .text_anim span {
    opacity: 0;
    display: inline-block;
    transform: translateY(0.5rem);
    transition: opacity 0.5s ease, transform 0.5s ease;
    font-family: var(--font-garamond);
    font-weight: var(--fw-semibold);
    font-style: normal;
    position: relative;
    z-index: 10;
    color: var(--color-navy);
  }

.anim-page-title path {
  opacity: 0;
}
.anim-page-title path.is-show:nth-of-type(1) {
  -webkit-animation-delay: 0.025s;
          animation-delay: 0.025s;
}
.anim-page-title path.is-show:nth-of-type(2) {
  -webkit-animation-delay: 0.05s;
          animation-delay: 0.05s;
}
.anim-page-title path.is-show:nth-of-type(3) {
  -webkit-animation-delay: 0.075s;
          animation-delay: 0.075s;
}
.anim-page-title path.is-show:nth-of-type(4) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.anim-page-title path.is-show:nth-of-type(5) {
  -webkit-animation-delay: 0.125s;
          animation-delay: 0.125s;
}
.anim-page-title path.is-show:nth-of-type(6) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.anim-page-title path.is-show:nth-of-type(7) {
  -webkit-animation-delay: 0.175s;
          animation-delay: 0.175s;
}
.anim-page-title path.is-show:nth-of-type(8) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.anim-page-title path.is-show:nth-of-type(9) {
  -webkit-animation-delay: 0.225s;
          animation-delay: 0.225s;
}
.anim-page-title path.is-show:nth-of-type(10) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.anim-page-title path.is-show:nth-of-type(11) {
  -webkit-animation-delay: 0.275s;
          animation-delay: 0.275s;
}
.anim-page-title path.is-show:nth-of-type(12) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.anim-page-title path.is-show:nth-of-type(13) {
  -webkit-animation-delay: 0.325s;
          animation-delay: 0.325s;
}
.anim-page-title path.is-show:nth-of-type(14) {
  -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s;
}
.anim-page-title path.is-show:nth-of-type(15) {
  -webkit-animation-delay: 0.375s;
          animation-delay: 0.375s;
}
.anim-page-title path.is-show:nth-of-type(16) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.anim-page-title path.is-show:nth-of-type(17) {
  -webkit-animation-delay: 0.425s;
          animation-delay: 0.425s;
}
.anim-page-title path.is-show:nth-of-type(18) {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}
.anim-page-title path.is-show:nth-of-type(19) {
  -webkit-animation-delay: 0.475s;
          animation-delay: 0.475s;
}
.anim-page-title path.is-show:nth-of-type(20) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.anim-page-title path.is-show:nth-of-type(21) {
  -webkit-animation-delay: 0.525s;
          animation-delay: 0.525s;
}
.anim-page-title path.is-show:nth-of-type(22) {
  -webkit-animation-delay: 0.55s;
          animation-delay: 0.55s;
}
.anim-page-title path.is-show:nth-of-type(23) {
  -webkit-animation-delay: 0.575s;
          animation-delay: 0.575s;
}
.anim-page-title path.is-show:nth-of-type(24) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.anim-page-title path.is-show:nth-of-type(25) {
  -webkit-animation-delay: 0.625s;
          animation-delay: 0.625s;
}

@-webkit-keyframes show-title {
  0% {
    opacity: 0;
    transform: translate3d(0, 5px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes show-title {
  0% {
    opacity: 0;
    transform: translate3d(0, 5px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.anim-page-title path.is-show {
  -webkit-animation: show-title 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: show-title 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

