@charset "UTF-8";
.lp-wrapper {
  --pc-width: 1400;
  --sp-width: 750;
  --pc-artboard-width: 400;
  --sp-artboard-width: 750;
  --formula: calc(var(--variable) * var(--ratio));
  --formula_pc: calc(var(--variable) * 1);
}
@media (max-width: 767px) {
  .lp-wrapper {
    --ratio: 1;
    --variable: calc(100vw / var(--sp-width));
  }
}
@media (min-width: 768px) {
  .lp-wrapper {
    --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width));
    --variable: calc(100vw / var(--pc-width));
  }
}
@media (max-width: 767px) {
  .lp-wrapper {
    --ratio: 1;
    --variable: calc(100vw / var(--sp-width));
  }
}

.lp-inner {
  width: calc(var(--sp-artboard-width) * var(--formula_pc));
  margin-inline: auto;
}
@media (min-width: 768px) {
  .lp-inner {
    width: calc(var(--pc-artboard-width) * var(--formula_pc));
  }
}

@media (max-width: 767px) {
  .lp-hidden--mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .lp-hidden--desktop {
    display: none !important;
  }
}

.lp-wrapper {
  overflow: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
.lp-wrapper * {
  font-feature-settings: "palt";
  box-sizing: border-box;
}
.lp-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  transition: unset;
  display: block;
}
.lp-wrapper svg {
  shape-rendering: geometricPrecision;
}
.lp-wrapper picture {
  display: block;
}
.lp-wrapper button {
  padding: 0;
  cursor: pointer;
  appearance: none;
}

* > .main-area {
  font-feature-settings: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: unset;
  min-width: auto;
}

body:has(.lp-wrapper) #Contents {
  overflow: unset;
}

.lp-layout .lp-primary {
  overflow-x: clip !important;
}
@media (min-width: 768px) {
  .lp-layout .lp-sub--sticky {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100dvh - var(--header-height));
    overflow: hidden;
    position: sticky;
    left: 0;
    top: var(--header-height);
  }
}
@media (min-width: 768px) {
  .lp-layout--column-02 {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .lp-layout--column-03 {
    display: grid;
    grid-template-columns: 1fr calc(var(--pc-artboard-width) * var(--formula_pc)) 1fr;
  }
}

.lp-inner {
  width: calc(var(--sp-artboard-width) * var(--formula));
  margin-inline: auto;
}
@media (min-width: 768px) {
  .lp-inner {
    width: calc(var(--pc-artboard-width) * var(--formula_pc));
  }
}

.lp-wrapper {
  --header-container-height: 120px;
  --animation-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", sans-serif;
}
@media (min-width: 768px) {
  .lp-wrapper {
    background-color: #fbf9f1;
  }
}
.lp-wrapper :where([class^=ani-], [class*=" ani-"]) {
  will-change: transform, opacity, filter, translate;
  transition: opacity 1.2s var(--animation-ease), translate 1.2s var(--animation-ease), scale 1.2s var(--animation-ease), rotate 1.2s var(--animation-ease), filter 1.2s var(--animation-ease);
}

.ani-fade {
  opacity: 0;
  transition-delay: 0s;
  transition: opacity 1.2s cubic-bezier(0.88, 0.14, 0.87, 0.86), transform 1.2s cubic-bezier(0.88, 0.14, 0.87, 0.86), filter 1.2s cubic-bezier(0.88, 0.14, 0.87, 0.86);
  will-change: opacity, transform, filter, scale;
}
.ani-fade.is-active, .is-active .ani-fade {
  opacity: 1;
}

.ani-clip-wipe {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s ease-out 0.5s;
}
.ani-clip-wipe.is-active, .is-active .ani-clip-wipe {
  clip-path: inset(0);
}

.ani-fade--up {
  transform: translateY(100px);
}
.ani-fade--up:not(:has(.slider)) img {
  scale: 1.1;
}
.ani-fade--up:has(.slider) .slider {
  scale: 1.1;
}
.ani-fade--up.is-active, .is-active .ani-fade--up {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1s ease-out, transform 1s ease-out;
}
.ani-fade--up.is-active:not(:has(.slider)) img, .is-active .ani-fade--up:not(:has(.slider)) img {
  opacity: 1;
  animation-name: zoomInAnime;
  animation-duration: 1s;
  animation-fill-mode: both;
  transition: 1s;
}
.ani-fade--up.is-active:has(.slider) .slider, .is-active .ani-fade--up:has(.slider) .slider {
  opacity: 1;
  animation-name: zoomInAnime;
  animation-duration: 1s;
  animation-fill-mode: both;
  transition: 1s;
}

.ani-fade--left {
  transform: translateX(10%);
}
.ani-fade--left img {
  scale: 1.1;
}
.ani-fade--left.is-active, .is-active .ani-fade--left {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1s ease-out, transform 1s ease-out;
}
.ani-fade--left.is-active img, .is-active .ani-fade--left img {
  opacity: 1;
  animation-name: zoomInAnime;
  animation-duration: 1s;
  animation-fill-mode: both;
  transition: 1s;
}

.ani-fade--right {
  transform: translateX(-10%);
}
.ani-fade--right img {
  scale: 1.1;
}
.ani-fade--right.is-active, .is-active .ani-fade--right {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1s ease-out, transform 1s ease-out;
}
.ani-fade--right.is-active img, .is-active .ani-fade--right img {
  opacity: 1;
  animation-name: zoomInAnime;
  animation-duration: 1s;
  animation-fill-mode: both;
  transition: 1s;
}

#Contents:has(.lp-wrapper) .main-area .main-inner {
  width: 100%;
}

@keyframes zoomInAnime {
  0% {
    opacity: 0;
    scale: 1.2;
    transition: 1s all;
  }
  100% {
    scale: 1;
    opacity: 1;
    transition: 1s all;
  }
}
@media (min-width: 768px) {
  .lp-layout--column-02 {
    margin-bottom: 5.6rem;
  }
}
.lp-sub {
  display: none;
}

.lp-primary .lp-inner {
  background-color: #fff;
}

.lp-look {
  position: relative;
  color: #298359;
}
.lp-look .media {
  position: relative;
  width: calc(750 * var(--formula));
  overflow: hidden;
}
.lp-look .media a,
.lp-look .media span {
  display: block;
}
.lp-look .media--right {
  margin-inline: auto 0;
}
.lp-look .media--center {
  margin-inline: auto 0;
}
.lp-look .item-credit {
  position: relative;
  z-index: 2;
  margin-top: calc(32 * var(--formula));
  text-align: center;
  font-family: "urw-din-semi-condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(20 * var(--formula));
  line-height: 1.9;
  letter-spacing: 0.04em;
  font-display: swap;
  text-transform: uppercase;
}
.lp-look .item-credit p {
  display: inline-block;
}
.lp-look .item-credit p:nth-of-type(even)::before {
  content: "/";
  margin-left: calc(4 * var(--formula));
  margin-right: calc(10 * var(--formula));
}
.lp-look .item-credit a {
  display: inline-block;
  color: #298359;
}

@media (min-width: 768px) {
  .lp-layout .lp-sub--sticky {
    height: calc(100vh - var(--before-main-offset));
    top: var(--before-main-offset);
  }
}

.lp-mv .media {
  position: relative;
}
@media (min-width: 768px) {
  .lp-mv .media {
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 768px) {
  .lp-mv .media a {
    width: 100%;
    height: 100%;
    display: block;
  }
}
@media (min-width: 768px) {
  .lp-mv .media picture {
    width: 100%;
    height: 100%;
    display: block;
  }
}
@media (min-width: 768px) {
  .lp-mv .media img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: 50% 0;
  }
}
.lp-mv .title {
  width: calc(521 * var(--formula));
  position: absolute;
  left: calc(112 * var(--formula));
  bottom: calc(178 * var(--formula));
  pointer-events: none;
}
@media (min-width: 768px) {
  .lp-mv .title {
    width: calc(394 * var(--formula_pc));
    position: absolute;
    left: 50%;
    bottom: calc(37 * var(--formula_pc));
    z-index: 1;
    transform: translateX(-50%);
  }
}
@media (min-width: 768px) {
  .lp-mv .title img {
    width: 100%;
    height: auto;
    object-fit: unset;
  }
}
.lp-mv .ani-clip-wipe {
  transition-delay: 1s;
}

.lp-intro {
  padding-top: calc(110 * var(--formula));
  text-align: center;
}
.lp-intro .title {
  font-size: calc(34 * var(--formula));
  line-height: 1.5294117647;
  letter-spacing: 0.025em;
  font-weight: 500;
}
.lp-intro .text {
  margin-top: calc(38 * var(--formula));
  font-size: calc(24 * var(--formula));
  line-height: 2;
  letter-spacing: 0.025em;
  font-weight: 400;
}
@media (min-width: 768px) {
  .lp-intro .text {
    margin-top: calc(19 * var(--formula_pc));
  }
}

.lp-section .title {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.lp-look .slider .swiper-pagination {
  position: absolute;
  width: fit-content;
  bottom: calc(20 * var(--formula));
  right: calc(20 * var(--formula));
  left: unset;
  display: flex;
  flex-wrap: wrap;
  gap: calc(12 * var(--formula));
}
.lp-look .slider .swiper-slide {
  background-color: #fff;
}
.lp-look .slider .swiper-pagination-bullet {
  border: max(1 * var(--formula), 1px) solid #fff;
  border-radius: 50%;
  background-color: transparent;
  width: calc(10 * var(--formula));
  height: calc(10 * var(--formula));
  margin: 0 !important;
  opacity: 1 !important;
}
.lp-look .slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
}

.lp-section--01 {
  margin-top: calc(151 * var(--formula));
}
@media (min-width: 768px) {
  .lp-section--01 {
    margin-top: calc(76 * var(--formula_pc));
  }
}
.lp-section--01 .title {
  width: calc(517 * var(--formula));
  margin-inline: auto;
}
.lp-section--01 .lp-look--01 {
  margin-top: calc(60 * var(--formula));
}
.lp-section--01 .lp-look--02 {
  margin-top: calc(40 * var(--formula));
}
.lp-section--01 .lp-look--02 .media {
  margin-inline: auto calc(31 * var(--formula));
  width: calc(615 * var(--formula));
}
.lp-section--01 .lp-look--02 .item-credit {
  text-align: left;
  margin-inline: auto calc(30 * var(--formula));
  width: calc(615 * var(--formula));
}

.lp-section--02 {
  margin-top: calc(179 * var(--formula));
}
.lp-section--02 .title {
  width: calc(423 * var(--formula));
  margin-inline: auto calc(34 * var(--formula));
}
.lp-section--02 .lp-look--01 {
  margin-top: calc(-12 * var(--formula));
}
.lp-section--02 .lp-look--01 .media {
  width: calc(660 * var(--formula));
  margin-left: 0;
}
.lp-section--02 .lp-look--02 {
  margin-top: calc(20 * var(--formula));
}
.lp-section--02 .lp-look--02 .media {
  width: calc(660 * var(--formula));
}
.lp-section--02 .lp-look--02 .item-credit {
  margin-inline: calc(30 * var(--formula)) auto;
  text-align: left;
  margin-top: calc(30 * var(--formula));
}
.lp-section--02 .lp-look--02 .item-credit p:nth-of-type(even)::before {
  content: "/";
  margin-left: calc(1 * var(--formula));
  margin-right: calc(10 * var(--formula));
}

.lp-section--03 {
  margin-top: calc(192 * var(--formula));
  padding-bottom: calc(111 * var(--formula));
  background-color: #ffffee;
}
.lp-section--03 .title {
  width: calc(439 * var(--formula));
  margin-top: calc(48 * var(--formula));
  margin-inline: auto;
  left: calc(0 * var(--formula));
}
.lp-section--03 .lp-look--02 {
  margin-top: calc(61 * var(--formula));
}
.lp-section--03 .lp-look--02 .media {
  width: calc(630 * var(--formula));
  margin-inline: auto;
}
.lp-section--03 .lp-look--02 .item-credit {
  margin-top: calc(31 * var(--formula));
  text-align: center;
  width: fit-content;
  position: relative;
  margin-inline: auto;
  left: calc(-1 * var(--formula));
}
.lp-section--03 .lp-look--02 .item-credit p:nth-of-type(even)::before {
  content: "/";
  margin-left: calc(6 * var(--formula));
  margin-right: calc(8 * var(--formula));
}

.lp-section--04 {
  padding-top: calc(129 * var(--formula));
}
.lp-section--04 .title {
  width: calc(419 * var(--formula));
  margin-inline: calc(31 * var(--formula)) auto;
}
.lp-section--04 .lp-look--01 {
  margin-top: calc(-13 * var(--formula));
}
.lp-section--04 .lp-look--01 .media {
  width: calc(675 * var(--formula));
}
.lp-section--04 .lp-look--02 {
  margin-top: calc(40 * var(--formula));
}
.lp-section--04 .lp-look--02 .item-credit {
  margin-inline: auto calc(29 * var(--formula));
  text-align: right;
}
.lp-section--04 .lp-look--02 .item-credit p:nth-of-type(even)::before {
  content: "/";
  margin-left: calc(2 * var(--formula));
  margin-right: calc(8 * var(--formula));
}

.lp-links {
  margin-top: calc(142 * var(--formula));
}
.lp-links .button {
  width: calc(333 * var(--formula));
  display: block;
  margin-inline: auto;
  padding-bottom: calc(20 * var(--formula));
  position: relative;
}
.lp-links .button::before {
  content: "";
  display: block;
  width: calc(338 * var(--formula));
  height: max(1 * var(--formula), 1px);
  background-color: #298359;
  position: absolute;
  bottom: calc(1 * var(--formula));
  left: calc(-3 * var(--formula));
}

.lp-staff-credit {
  margin-top: calc(180 * var(--formula));
  color: #fff;
  padding-bottom: calc(60 * var(--formula));
}
.lp-staff-credit .ani-clip-wipe {
  transition-delay: 1s;
  transition-duration: 1s;
}
.lp-staff-credit .media {
  width: calc(675 * var(--formula));
  position: relative;
  margin-inline: auto;
}
.lp-staff-credit .content {
  position: absolute;
  left: 0;
  bottom: calc(73 * var(--formula));
  width: 100%;
  height: fit-content;
  pointer-events: none;
}
.lp-staff-credit .heading {
  width: calc(295 * var(--formula));
  margin-inline: auto;
  position: relative;
  left: calc(-1 * var(--formula));
}
.lp-staff-credit .text {
  margin-top: calc(14 * var(--formula));
  text-align: center;
  font-family: "urw-din-semi-condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(20 * var(--formula));
  line-height: 2;
  letter-spacing: 0.03em;
  width: fit-content;
  margin-inline: auto;
  left: calc(0 * var(--formula));
  text-transform: uppercase;
  position: relative;
}

@media (min-width: 768px) {
  .lp-layout .lp-sub--sticky {
    transition: height 0.2s linear, top 0.2s linear;
  }
  body:has(.header-fixed.show) .lp-layout .lp-sub--sticky {
    transition: height 0.5s linear, top 0.5s linear;
  }
  body:has(.header-fixed.show) .lp-layout .lp-sub--sticky {
    height: calc(100vh - 12rem);
    top: 12rem;
  }
}/*# sourceMappingURL=style.css.map */