/* stylelint-disable no-descending-specificity */
/* stylelint-disable scss/no-global-function-names */
@media (min-width: 768px) and (max-width: 1279.98px) {
  html {
    font-size: 0.7142857143vw;
  }
}
@media (min-width: 768px) {
  .archive {
    border-top: 1px solid #58595b;
  }
}

.landing-page {
  --color-base-light: #e4ede5;
  --color-base-warm: #f4f1ea;
  --color-text-main: #58595b;
  --color-accent: #943232;
  --font-primary: 'nunito-sans', sans-serif;
  --font-accent: 'petersburg-web', serif;
}
@media (min-width: 768px) {
  .landing-page {
    --rate: 0.1rem;
    --container-size: 100cqi / 750;
    padding-block-end: calc(140 * var(--rate));
  }
}
@media (max-width: 767.98px) {
  .landing-page {
    --rate: 100vw / 750;
    --container-size: var(--rate);
  }
}

.landing-page * {
  box-sizing: border-box;
  font-feature-settings: 'palt';
  line-height: 1;
}

.landing-page a {
  display: var(--display, block);
}

.landing-page a:hover {
  opacity: 0.7 !important;
}

.landing-page img,
.landing-page picture {
  display: block;
}

.landing-page img,
.landing-page svg {
  width: 100%;
  height: auto;
  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-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 (min-width: 768px) {
  .landing-page .only-sp {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .landing-page .without-sp {
    display: none;
  }
}
@media (min-width: 768px) {
  .landing-page__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }
}

.landing-page__hero {
  overflow: hidden;
  background-color: var(--color-base-light);
}
@media (min-width: 768px) {
  .landing-page__hero {
    position: sticky;
    top: var(--header-container-height, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - (var(--header-container-height, 0px)));
  }
}

.landing-page__hero-image {
  display: flex;
  align-items: center;
  align-self: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .landing-page__hero-image {
    width: 30vw;
    height: 100%;
  }
}
@media (min-width: 768px) and (max-height: 869px) {
  .landing-page__hero-image a,
  .landing-page__hero-image img {
    height: 100%;
    max-height: 40vw;
  }
}
@media (min-width: 768px) {
  .landing-page__contents-body {
    width: 31.4285714286vw;
    margin-inline: auto;
    container-type: inline-size;
  }
}

.landing-page__contents-container {
  overflow: hidden;
  background-color: var(--color-base-warm);
}

.landing-page__contents-lead {
  padding-block: calc(110 * var(--container-size)) calc(125 * var(--container-size));
  font-size: calc(25 * var(--container-size));
  line-height: 2;
  color: var(--color-text-main);
  text-align: center;
  letter-spacing: 0.12em;
}

.landing-page__contents-shell + .landing-page__contents-shell {
  margin-block-start: var(--shell-gap, calc(172 * var(--container-size)));
}

.landing-page__contents-shell:first-child .landing-page__contents-block:first-child {
  padding-inline-start: calc(90 * var(--container-size));
}

.landing-page__contents-shell:first-child .landing-page__contents-block:nth-child(3) {
  position: relative;
  padding-inline: calc(68 * var(--container-size));
}

.landing-page__contents-shell:first-child .landing-page__contents-decoration {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding-block-end: calc(7 * var(--container-size));
  padding-inline: calc(45 * var(--container-size));
  margin: auto;
}

.landing-page__contents-shell:first-child .landing-page__contents-decoration-list {
  --decolation-justify: space-between;
  width: 100%;
  height: 100%;
}

.landing-page__contents-shell:first-child .landing-page__contents-decoration-item:first-child {
  width: calc(160 * var(--container-size));
}

.landing-page__contents-shell:first-child .landing-page__contents-decoration-item:last-child {
  width: calc(173 * var(--container-size));
}

.landing-page__contents-shell:nth-child(2) .landing-page__contents-block:first-child {
  padding-inline-end: calc(210 * var(--container-size));
}

.landing-page__contents-shell:nth-child(2) .landing-page__contents-block:nth-child(2) {
  --block-gap: calc(60 * var(--container-size));
}

.landing-page__contents-shell:nth-child(2) .landing-page__contents-block:nth-child(3) {
  --block-gap: calc(44 * var(--container-size));
  padding-inline: calc(85 * var(--container-size)) calc(35 * var(--container-size));
}

.landing-page__contents-shell:nth-child(2) .landing-page__contents-block:nth-child(3) .landing-page__contents-image {
  border: 3px solid var(--color-accent);
}

.landing-page__contents-shell:nth-child(2)
  .landing-page__contents-block:nth-child(3)
  .landing-page__contents-image
  img {
  aspect-ratio: 624/836;
  object-fit: cover;
}

.landing-page__contents-shell:nth-child(2) .landing-page__contents-decoration {
  display: flex;
  column-gap: calc(60 * var(--container-size));
}

.landing-page__contents-shell:nth-child(2) .landing-page__contents-decoration-list {
  flex-shrink: 0;
  column-gap: calc(60 * var(--container-size));
  animation: loop-infinite-to-left 30s infinite linear 0.5s both;
}

.landing-page__contents-shell:nth-child(2) .landing-page__contents-decoration-text {
  width: calc(971 * var(--container-size));
}

.landing-page__contents-shell:nth-child(2) .landing-page__contents-prices {
  --prices-justfy: end;
  padding-inline: calc(85 * var(--container-size)) calc(35 * var(--container-size));
}

.landing-page__contents-shell:nth-child(3) .landing-page__contents-block:nth-child(2) {
  position: relative;
  z-index: 2;
  padding-block-start: calc(72 * var(--container-size));
  padding-inline-end: calc(73 * var(--container-size));
  margin-inline-start: calc(-55 * var(--container-size));
  margin-inline-end: calc(162 * var(--container-size));
}

.landing-page__contents-shell:nth-child(3) .landing-page__contents-block:nth-child(2) .landing-page__contents-image {
  padding: calc(14 * var(--container-size));
  border: 2px solid var(--color-accent);
  border-radius: 100vh;
}

.landing-page__contents-shell:nth-child(3) .landing-page__contents-block:nth-child(3) {
  --block-gap: calc(-50 * var(--container-size));
  padding-inline-start: calc(165 * var(--container-size));
}

.landing-page__contents-shell:nth-child(3) .landing-page__contents-decoration {
  position: absolute;
  top: 0;
  right: 0;
}

.landing-page__contents-shell:nth-child(3) .landing-page__contents-decoration-text {
  width: calc(350 * var(--container-size));
}

.landing-page__contents-shell:nth-child(3) .landing-page__contents-prices {
  --prices-justfy: end;
  padding-inline: calc(165 * var(--container-size)) calc(35 * var(--container-size));
}

.landing-page__contents-shell:nth-child(4) .landing-page__contents-block:first-child {
  padding-inline-end: calc(180 * var(--container-size));
}

.landing-page__contents-shell:nth-child(4) .landing-page__contents-block:nth-child(2) {
  position: relative;
  padding-block-end: calc(33 * var(--container-size));
  padding-inline-start: calc(42 * var(--container-size));
  margin-inline-start: calc(198 * var(--container-size));
}

.landing-page__contents-shell:nth-child(4) .landing-page__contents-block:nth-child(3) {
  --block-gap: calc(61 * var(--container-size));
  width: calc(666 * var(--container-size));
  margin-inline: auto;
}

.landing-page__contents-shell:nth-child(4) .landing-page__contents-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
}

.landing-page__contents-shell:nth-child(4) .landing-page__contents-decoration-text {
  width: calc(70 * var(--container-size));
}

.landing-page__contents-shell:nth-child(5) .landing-page__contents-block:first-child {
  padding-inline: calc(105 * var(--container-size));
}

.landing-page__contents-shell:nth-child(5) .landing-page__contents-prices {
  --prices-justfy: end;
  --prices-gap: calc(33 * var(--container-size));
  padding-inline: calc(160 * var(--container-size)) calc(105 * var(--container-size));
}

.landing-page__contents-shell:nth-child(6) .landing-page__contents-block:first-child {
  position: relative;
}

.landing-page__contents-shell:nth-child(6) .landing-page__contents-block:first-child::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: calc(100% - 34 * var(--container-size));
  height: calc(100% - 34 * var(--container-size));
  margin: auto;
  pointer-events: none;
  content: '';
  border: 1.5px solid var(--color-accent);
}

.landing-page__contents-shell:nth-child(6)
  .landing-page__contents-block:first-child
  .landing-page__contents-decoration {
  position: absolute;
  top: calc(47 * var(--container-size));
  left: calc(48 * var(--container-size));
}

.landing-page__contents-shell:nth-child(6)
  .landing-page__contents-block:first-child
  .landing-page__contents-decoration-text {
  width: calc(59 * var(--container-size));
}

.landing-page__contents-shell:nth-child(6) .landing-page__contents-block:nth-child(2) {
  padding-inline: calc(190 * var(--container-size)) calc(35 * var(--container-size));
}

.landing-page__contents-shell:nth-child(6) .landing-page__contents-block:nth-child(3) {
  position: relative;
  padding-inline: calc(68 * var(--container-size));
}

.landing-page__contents-shell:nth-child(6)
  .landing-page__contents-block:nth-child(3)
  .landing-page__contents-decoration {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding-block-end: calc(3 * var(--container-size));
  padding-inline: calc(45 * var(--container-size)) calc(42 * var(--container-size));
  margin: auto;
}

.landing-page__contents-shell:nth-child(6)
  .landing-page__contents-block:nth-child(3)
  .landing-page__contents-decoration-list {
  --decolation-justify: space-between;
  width: 100%;
  height: 100%;
}

.landing-page__contents-shell:nth-child(6)
  .landing-page__contents-block:nth-child(3)
  .landing-page__contents-decoration-item:first-child {
  width: calc(160 * var(--container-size));
}

.landing-page__contents-shell:nth-child(6)
  .landing-page__contents-block:nth-child(3)
  .landing-page__contents-decoration-item:last-child {
  width: calc(164 * var(--container-size));
}

.landing-page__contents-shell:nth-child(6) .landing-page__contents-prices {
  padding-inline: calc(55 * var(--container-size));
}

.landing-page__contents-block + .landing-page__contents-block {
  margin-block-start: var(--block-gap, calc(80 * var(--container-size)));
}

.landing-page__contents-decoration {
  pointer-events: none;
}

.landing-page__contents-decoration-list {
  display: flex;
  align-items: center;
  justify-content: var(--decolation-justify, center);
}

.landing-page__contents-prices {
  display: flex;
  flex-wrap: wrap;
  column-gap: calc(11 * var(--container-size));
  align-items: center;
  justify-content: var(--prices-justfy, center);
  margin-block-start: var(--prices-gap, calc(29 * var(--container-size)));
  font-family: var(--font-primary);
  font-size: calc(22 * var(--container-size));
  color: var(--color-accent);
}

.landing-page__contents-prices a {
  line-height: 1.75;
}

.landing-page__contents-foot {
  margin-block-start: calc(180 * var(--container-size));
  color: var(--color-accent);
  text-align: center;
}

.landing-page__contents-foot-link-button {
  --display: inline-block;
  position: relative;
  padding-block-end: calc(5 * var(--container-size));
  font-family: var(--font-accent);
  font-size: calc(78 * var(--container-size));
  font-style: italic;
}

.landing-page__contents-foot-link-button::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  background-color: var(--color-accent);
}

.landing-page__contents-foot-link-text {
  padding-block-end: calc(7 * var(--container-size));
  border-bottom: 1px solid var(--color-accent);
}

.landing-page__contents-foot-credit {
  margin-block: calc(150 * var(--container-size));
  font-family: var(--font-primary);
  font-size: calc(22 * var(--container-size));
  line-height: 1.75;
}

.landing-page .splide__pagination {
  position: absolute;
  right: 0;
  bottom: calc(20 * var(--container-size));
  left: initial;
  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-accent);
  opacity: 1;
}

.landing-page .splide__pagination__page.is-active {
  background: var(--color-accent);
  transform: scale(1);
}
