﻿/* パンくず 追加スタイル PC */
@media only screen and (min-width: 768px) {
  .breadcrumb__list {
    padding-bottom: 1.6rem;
  }
}

/* --- for small viewport --- */
.main-area {
  --font-aktiv-grotesk: "aktiv-grotesk", sans-serif;
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
}

.main-area :where(img, svg, iframe) {
  width: 100%;
  height: auto;
  overflow: initial;
}

.p-movie {
  position: sticky;
  top: var(--headerHeight, 0px);
  z-index: -1;
}

.p-movie iframe {
  aspect-ratio: 16 / 9;
}

.p-contents {
  position: relative;
  z-index: 2;
  background-color: var(--white, #fff);
}

.p-modal__text {
  font-family: var(--font-aktiv-grotesk);
  font-weight: var(--font-weight-light, 300);
  color: var(--dugong, #707070);
  line-height: 2;
  letter-spacing: 0.05em;
}

.p-modal__text span {
  font-weight: bold;
}

.p-modal__credit {
  display: inline;
  text-decoration: underline;
}

.p-modal__credit--disabled {
  text-decoration: none;
  pointer-events: none;
  cursor: default;
}



@media screen and (max-width: 767px) {
  .main-area {
    width: 100%;
    padding-bottom: calc(112 * (100vw / 375));
  }

  .p-movie {
    margin-bottom: calc(30 * (100vw / 375));
  }

  /* Gallery */
  .p-gallery {
    margin-top: calc(100 * (100vw / 375));
  }

  .p-gallery__list {
    --gap-x: calc(15 * (100vw / 375));
    --gap-y: calc(16 * (100vw / 375));
    padding: 0 calc(20*(100vw / 375));
  }

}

/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .main-area {
    /* width: min(100%, 124rem); */
    /* padding: 0 2rem 10rem; */
    overflow: clip;
  }


  /* Gallery */
  .p-gallery {
    margin-top: 18rem;
  }

  .p-gallery__list {
    grid-template-columns: repeat(3, minmax(0, 100%));
    --gap-x: 3rem;
    --gap-y: 3rem;
  }
}

.lp__contents-cell {
  position: relative;
}

.lp__contents-cell .splide__list {
  --display: flex;
}

.lp__prices-container {
  --color-dark: #000;
  --color-white: #fff;
  --color-overlay: rgba(0, 0, 0, .3);
  --zindex-behind: -1;
  --zindex-base: 1;
  --zindex-overlay: 10;
  --zindex-floating-element: 20;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-block: var(--lp-prices-vertical-spacer);
  padding-inline: var(--lp-prices-horizontal-spacer);
  background-color: var(--color-overlay);
  font-size: var(--lp-prices-font-size);
  line-height: var(--lp-prices-line-height);
  color: var(--color-white);
  letter-spacing: 0.04em;
  z-index: var(--zindex-overlay);
  opacity: var(--prices-opacity-value, 0);
  visibility: var(--prices-visible-status, hidden);
  pointer-events: var(--prices-pointer-events-value, none);
  transition: all 0.6s ease;
}

.lp__prices-container.is-active {
  --prices-opacity-value: 1;
  --prices-visible-status: visible;
  --prices-pointer-events-value: auto;
  --prices-transform-value: 0;
}

.lp__prices {
  opacity: var(--prices-opacity-value, 0);
  visibility: var(--prices-visible-status, hidden);
  pointer-events: var(--prices-pointer-events-value, none);
  transition: all 0.6s ease;
  width: 85%;
  font-size: calc(12* (100vw /375));
  line-height: 2;
  letter-spacing: 0.05em;
  bottom: calc(6* (100vw /375));
  left: calc(12* (100vw /375));
  position: absolute;
}

.lp__prices a:not(.not_credit) {
  text-decoration: underline;
}

.lp__prices .not_credit {
  pointer-events: none;
}

.lp__prices-button {
  position: absolute;
  bottom: calc(10 * (100vw / 375));
  right: calc(10 * (100vw / 375));
  width: calc(18 * (100vw / 375));
  height: calc(18 * (100vw / 375));
  z-index: 13;
}

.lp__prices-button span {
  display: block;
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  margin: auto;
  background-color: #fff;
  transition: all 0.3s ease;
  pointer-events: none;
}

.lp__prices-button span:nth-child(2) {
  transform: rotate(90deg);
}

.lp__prices-button.is-active span:nth-child(2) {
  transform: rotate(0deg);
}

@media screen and (min-width: 768px) {


  .lp__prices {
    font-size: 1.2rem;
    bottom: 0.6rem;
    left: 1.2rem;
  }

  .lp__prices-button {
    bottom: 1.2rem;
    right: 1.2rem;
    width: 1.8rem;
    height: 1.8rem;
  }
}



/* ===============================================
* ローディング画面 *
=============================================== */
#loading-screen {
  position: fixed;
  /* 画面に固定 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  /* 背景色を白に */
  z-index: 9999;
  /* 他の要素より手前に表示 */
  transition: opacity 1s ease-out;
  /* 1秒かけて透明度を変化させる */
  opacity: 1;
  /* 初期状態は不透明 */
}

/* フェードアウトさせるためのクラス */
#loading-screen.fade-out {
  opacity: 0;
  /* 透明にする */
  /* visibility: hidden; */
  /* アニメーション後、要素を非表示にして操作を妨げないようにする */
}

#loading-screen .loading-screen_wrap .logo_letter_item {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.3s;
}

#loading-screen .loading-screen_wrap.fade-in .logo_letter_item {
  opacity: 1;
}

#loading-screen .logo_letter_item--01,
.inner_logo .logo_letter_item--01 {
  transition-delay: .05s
}

#loading-screen .logo_letter_item--02,
.inner_logo .logo_letter_item--02 {
  transition-delay: .1s
}

#loading-screen .logo_letter_item--03,
.inner_logo .logo_letter_item--03 {
  transition-delay: .15s
}

#loading-screen .logo_letter_item--04,
.inner_logo .logo_letter_item--04 {
  transition-delay: .2s
}

#loading-screen .logo_letter_item--05,
.inner_logo .logo_letter_item--05 {
  transition-delay: .25s
}

#loading-screen .logo_letter_item--06,
.inner_logo .logo_letter_item--06 {
  transition-delay: .3s
}

#loading-screen .logo_letter_item--07,
.inner_logo .logo_letter_item--07 {
  transition-delay: .35s
}

#loading-screen .logo_letter_item--08,
.inner_logo .logo_letter_item--08 {
  transition-delay: .4s
}

#loading-screen .logo_letter_item--09 {
  transition-delay: .45s
}

#loading-screen .logo_letter_item--10 {
  transition-delay: .5s
}

#loading-screen .logo_letter_item--11 {
  transition-delay: .55s
}

#loading-screen .logo_letter_item--12 {
  transition-delay: .6s
}

#loading-screen .logo_letter_item--13 {
  transition-delay: .65s
}

#loading-screen .logo_letter_item--14 {
  transition-delay: .7s
}

#loading-screen .logo_letter_item--15 {
  transition-delay: .75s
}

#loading-screen .logo_letter_item--16 {
  transition-delay: .8s
}

#loading-screen .logo_letter_item--17 {
  transition-delay: .85s
}

#loading-screen .logo_letter_item--18 {
  transition-delay: .9s
}

#loading-screen .logo_letter_item--19 {
  transition-delay: .95s
}

.loading-screen_wrap {
  display: grid;
  place-items: center;
  height: 100%;
}

.loading-screen_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(20* (100vw /375));
}

.loading-screen_inner .logo {
  width: calc(115* (100vw /375));
}

.loading-screen_inner .sec__content__tx {
  font-size: calc(25* (100vw /375));
  letter-spacing: -0.06em;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .loading-screen_inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }

  .loading-screen_inner .logo {
    width: 14.4rem
  }

  .loading-screen_inner .sec__content__tx {
    font-size: 3.6rem;
    letter-spacing: -0.06em;
  }

}

/* ===============================================
* 文字送り *
=============================================== */
.letterAnimation {
  position: relative;
}

.letterAnimation span {
  font-style: normal;
  display: inline-block;
  position: relative;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.3s;
}

.letterAnimation.showText span {
  opacity: 1;
}

.wf-loading {
  opacity: 0;
}

/* ===============================================
* メインコンテンツ *
=============================================== */
.bg_wrap {
  background: linear-gradient(#F7F7F5 0%, #CCBCA1 25%, #A67A56 75%, #301C08 100%);
  padding-bottom: calc(112 * (100vw / 375));
}

@media screen and (min-width: 768px) {
  .bg_wrap {
    padding-bottom: 8rem;
  }
}

.p-ttl {
  width: calc(345* (100vw /375));
  margin: calc(30* (100vw /375)) auto 0;
}

.inner_logo {
  width: calc(136* (100vw /375));
}

.inner_logo .logo_letter_item {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.3s;
}

.inner_logo.fade-in .logo_letter_item {
  opacity: 1;
}

.maivsiual_tx .fvAnime.ttl {
  font-size: calc(20* (100vw /375));
  line-height: 1.25;
}

.maivsiual_tx .fvAnime.sub_ttl {
  font-size: calc(16* (100vw /375));
  line-height: 1;
  margin-top: calc(23* (100vw /375));
}

.maivsiual_tx .fvAnime.copy {
  font-size: calc(14* (100vw /375));
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.maivsiual_tx .fvAnime.__1 {
  margin-top: calc(23* (100vw /375));
}

.maivsiual_tx .fvAnime.__4 {
  margin-top: calc(11* (100vw /375));
}

@media screen and (min-width: 768px) {
  .mv {
    position: relative;
  }

  .p-ttl {
    position: absolute;
    color: #fff;
    width: 36rem;
    margin: initial;
    left: 50%;
    transform: translateX(-166.8%);
    bottom: 7.8rem;
  }

  .inner_logo {
    width: 16rem;
    fill: #fff;
  }

  .maivsiual_tx .fvAnime.ttl {
    font-size: 2.2rem;
    line-height: 1.25;
  }

  .maivsiual_tx .fvAnime.sub_ttl {
    font-size: 1.8rem;
    margin-top: 2.2rem;
  }

  .maivsiual_tx .fvAnime.copy {
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 300;
    letter-spacing: 0.02em;
  }

  .maivsiual_tx .fvAnime.__1 {
    margin-top: 3rem;
  }

  .maivsiual_tx .fvAnime.__4 {
    margin-top: 0.9rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1300px) {

  .p-ttl {
    left: 10rem;
    transform: translateX(0);

  }
}

/* ===============================================
* img *
=============================================== */
.styling01 {
  margin-top: calc(34* (100vw /375));
}

.styling02 {
  margin-top: calc(20* (100vw /375));
}

.styling03 {
  width: calc(330* (100vw /375));
  margin: calc(80* (100vw /375)) auto 0;
}

.flex__wrap {
  display: flex;
  flex-direction: column;
  margin: calc(80* (100vw /375)) auto 0;
}

.styling04 {
  width: calc(250* (100vw /375));
}

.styling05 {
  width: calc(250* (100vw /375));
  margin-left: auto;
}

.styling06 {
  width: calc(300* (100vw /375));
  margin: calc(80* (100vw /375)) auto 0;
}

.styling07 {
  width: calc(375* (100vw /375));
  margin: calc(20* (100vw /375)) auto 0;
}

.grid__wrap {
  display: grid;
  margin: calc(80* (100vw /375)) auto 0;
  grid-template-columns: calc(63* (100vw /375)) calc(63* (100vw /375));
  grid-template-rows: calc(313* (100vw /375)) calc(313* (100vw /375));
}

.grid__wrap .lp__prices {
  bottom: initial;
  top: calc(6* (100vw /375));
}

.styling08 {
  width: calc(250* (100vw /375));
  grid-area: 1/3/2/4;
}

.styling09 {
  width: calc(250* (100vw /375));
  grid-area: 2/2/3/3;
  z-index: 10;
}

.styling10 {
  width: calc(250* (100vw /375));
  grid-area: 3/1/4/2;
  z-index: 11;
}

.styling11 {
  width: calc(240* (100vw /375));
  margin: 0 0 0 auto;
}

.styling12 {
  width: calc(240* (100vw /375));
  margin: calc(20* (100vw /375)) 0 0 0;
}

.styling13 {
  width: calc(375* (100vw /375));
  margin: calc(80* (100vw /375)) auto 0;
}

.styling14 {
  width: calc(375* (100vw /375));
  margin: calc(20* (100vw /375)) auto 0;
}

@media screen and (min-width: 768px) {
  .styling01 {
    width: 38rem;
    margin: 0 auto 0;
    padding-top: 12rem;
  }

  .styling02 {
    width: 38rem;
    margin: 2rem auto 0;
  }

  .styling03 {
    width: 38rem;
    margin: 12rem auto 0;
  }

  .flex__wrap {
    margin: 12rem auto 0;
    flex-direction: row;
    justify-content: center;
  }

  .styling04 {
    width: 40rem;
  }

  .styling05 {
    width: 40rem;
    margin-left: initial;
  }

  .styling06 {
    width: 35rem;
    margin: 10.6rem auto 0;
  }

  .styling07 {
    width: 45rem;
    ;
    margin: 3.4rem auto 0;
  }

  .grid__wrap {
    width: 100.2rem;
    margin: 12rem auto 0;
    grid-template-columns: 31rem 31rem;
    grid-template-rows: 43.6rem 43.6rem;
  }

  .grid__wrap .lp__prices {
    bottom: initial;
    top: 0.6rem;
  }

  .styling08 {
    width: 38rem;
  }

  .styling09 {
    width: 38rem;
  }

  .styling10 {
    width: 38rem;
  }

  .flex__wrap.--2 {
    width: 52.5rem;
    margin: 12rem auto 0;
    flex-direction: column;
  }

  .styling11 {
    width: 35rem;
  }

  .styling12 {
    width: 35rem;
    margin: 2rem 0 0 0;
  }

  .styling13 {
    width: 35rem;
    margin: 12rem auto 0;
  }

  .styling14 {
    width: 35rem;
    margin: 2rem auto 0;
  }
}




/* STAFF CREDIT */
.p-staff {
  display: flex;
  margin-top: calc(60 * (100vw / 375));
  padding: 0 calc(15 * (100vw / 375));
  align-items: flex-start;
  flex-direction: column;
  row-gap: calc(17* (100vw / 375));
}

.p-staff__heading {
  line-height: 1.3125;
  font-size: calc(16 * (100vw / 375));
  font-weight: 300;
}

.p-staff__heading span {
  font-family: var(--font-aktiv-grotesk);
  color: #fff;
  text-decoration: underline;
  letter-spacing: 0.05em;
}

.p-staff__credit {
  font-family: var(--font-aktiv-grotesk);
  color: #fff;
  line-height: 2.5;
  letter-spacing: 0.05em;
  font-weight: 300;
  font-size: calc(14 * (100vw / 375));
}

/* Button */
.p-button {
  display: grid;
  place-items: center;
  margin: 0 auto;
  font-weight: 600;
  text-align: center;
  border: 1px solid #fff;
  color: #fff;
  width: calc(266 * (100vw / 375));
  height: calc(50 * (100vw / 375));
  margin-top: calc(50 * (100vw / 375));
  font-size: calc(14 * (100vw / 375));
}

@media screen and (min-width: 768px) {
  .p-staff {
    width: 100rem;
    margin: 12rem auto 0;
    padding: 0;
    align-items: flex-start;
    flex-direction: row;
    gap: 5.4rem;
  }

  .p-staff__heading {
    font-size: 2.6rem;
  }

  .p-staff__credit {
    font-size: 1.5rem;
    margin-top: -0.7rem;
  }

  /* Button */
  .p-button {
    width: 26.6rem;
    height: 5rem;
    margin: 11rem auto 0;
    font-size: 1.4rem;
  }
}


.js-show {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 1s;
}

.js-show.deray {
  transition-delay: 0.3s;
}

.js-show.deray2 {
  transition-delay: 0.6s;
}

.js-show.fadeup {
  transform: translate(0, 100px);
}

.js-show.faderight {
  transform: translate(-100px, 0);
}

.js-show.on {
  opacity: 1;
  transform: translate(0, 0);
}