@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:500,700,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

/* MediaQuery = SP => Tablet(600px) => PC(1024px) */
/* 1em = 1vw */

/* -------------------------
  root設定
------------------------- */
:root {
  font-size: 62.5%;

  /* カラー変数 */
  --color_main:           hsl(0, 0%, 100%);
  --color_base:           hsl(0, 0%, 100%);
  --color_baseRGB:        255, 255, 255;
  --color_baseHalf:       rgb(194, 26, 0);
  --color_baseHalfRGB:    194, 26, 0;
  --color_baseDark:       rgb(163, 22, 0);
  --color_baseDarkRGB:    163, 22, 0;
  --color_accent:         #FF2626;
  --color_accentRGB:      255, 38, 38;
  --color_accentDark:     #996515;
  --color_accentDarkRGB:  153, 101, 21;
  --color_new:            #FFD817;
  --color_links:          #0081CC;
  --color_text:           hsl(0, 0%, 0%);

  /* フォントファミリー変数 */
  --font_family_ENG: "Jost", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
  --font_weight_ENG: 700;
  
  /* border-radius変数 */
  --radius_xs:   3px;
  --radius_sm:   6px;
  --radius_md:   8px;
  --radius_lg:  12px;
  --radius_xl:  24px;

  /* line-height変数 */
  --line_height_sm:  1.3;
  --line_height_md:  1.5;
  --line_height_lg:  1.7;
  --line_height_xl:  2.0;
  --line_height_2xl: 2.2;

  /* サイズ変数 */
  --header_height: 50px;
  --contents__maxWidth: 100%;

 /* フォントサイズ変数 */
  --font_size_xs:   1.3vw;
  --font_size_sm:   1.4vw;
  --font_size_md:   1.6vw;
  --font_size_lg:   2.0vw;
  --font_size_xl:   2.4vw;
  --font_size_2xl:  3.0vw;
  --font_size_3xl:  3.8vw;
  --font_size_4xl:  5.2vw;
}

/* タブレット変数 */
@media (min-width: 600px) {
  :root {
    /* font-size: 72.5%; */
    font-size: 75%;

    /* サイズ変数 */
    --header_height: 50px;
  }
}

/* PC変数 */
@media (min-width: 1024px) {
  :root {
    /* font-size: 72.5%; */
    font-size: 75%;

    /* サイズ変数 */
    --header_height: 70px;
    --contents__maxWidth: 600px;
  }
}


/* -------------------------
  デバイス判定
------------------------- */
@media (max-width: 599px) {
  .pc {
    display: none !important;
  }
  .tablet:not(.sp) {
    display: none !important;
  }
}
@media (min-width: 600px) and (max-width: 1023px) {
  .tablet ~ .pc:not(.tablet) {
    display: none !important;
  }
  .sp:not(.tablet) {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .sp {
    display: none !important;
  }
  .tablet:not(.pc) {
    display: none !important;
  }
}
/* デバイスが縦長の向き */
@media (orientation: portrait) {
  .landscape {
    display: none !important;
  }
}
/* デバイスが横長の向き */
@media (orientation: landscape) {
  .portrait {
    display: none !important;
  }
}


/* -------------------------
  html body
------------------------- */
html {
  touch-action: manipulation;
  background-color: var(--color_base);
  overscroll-behavior: none;
  scroll-behavior: smooth;
}
body {
  font-family: 'Noto Sans JP', "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1vw;
  font-weight: normal;
  line-height: var(--line_height_md);
  background: var(--color_base);
  color: var(--color_text);
  text-align: left;
  font-feature-settings: "palt";
  background-color: var(--color_base);
}
@media (min-width: 600px) {
  body {
    font-size: calc(1vw * 0.8);
  }
}
@media (min-width: 1024px) {
  body {
    font-size: calc(var(--contents__maxWidth) * 0.008);
  }
}
body * {
  letter-spacing: 0.1em;
}


/* -------------------------
  ローディング中の画面
------------------------- */
.loading__mask {
  z-index: 1001;
  position: fixed;
  top: 0;
  left: 0;
  width:  100vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  user-select: none;
  text-align: center;
  background: var(--color_base);
  clip-path: polygon(0% 0%, 0% 100%, 0 100%, 0 50%, 100% 50%, 100% 50%, 0 50%, 0 100%, 100% 100%, 100% 0%);
  transition: clip-path 0.75s, opacity 0s 0.75s;
  will-change: clip-path;
}
body.loaded .loading__mask {
  clip-path: polygon(0% 0%, 0% 100%, 0 100%, 0 0, 100% 0%, 100% 100%, 0 100%, 0 100%, 100% 100%, 100% 0%);
  opacity: 0;
}

.loading__progress {
  --progress_percent: 0%;
  --bar_height: 4px;
  color: var(--color_text);
  position: absolute;
  top: 0;
  left: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 70%;
  height: auto;
  max-width: 300px;
  pointer-events: none;
}
.loading__progressText {
  position: absolute;
  top: -1.3em;
  left: 0;
  width: 100%;
  font-size: 12px;
  height: 1em;
  line-height: 1;
}
.loading__progressText::before,
.loading__progressText::after {
  content: '';
  color: currentColor;
  font-family: system-ui;
  letter-spacing: 0.05em;
  opacity: 0.8;
}
.loading__progressText::before {
  content: 'LOADING...';
  text-align: left;
  position: absolute;
  top: 0;
  left: 0;
  animation: loadingText 0.75s infinite linear;
}
@keyframes loadingText {
  0%   {content: 'LOADING   ';}
  25%  {content: 'LOADING.  ';}
  50%  {content: 'LOADING.. ';}
  75%  {content: 'LOADING...';}
  100% {content: 'LOADING   ';}
}

.loading__progressText::after {
  content: attr(data-progress);
  text-align: right;
  position: absolute;
  top: 0;
  right: 0;
}

.loading__progressBar {
  width: 100%;
  height: var(--bar_height);
  background-color: hsla(0, 0%, 0%, 0.1);
  border-radius: var(--bar_height);
  overflow: hidden;
}
.loading__progressBarFill {
  border-radius: var(--bar_height);
  height: 100%;
  width: var(--progress_percent);
  background-color: hsla(0, 0%, 0%, 1);
  transition: width 0.2s ease-in-out;
}


/* -------------------------
  common
------------------------- */
*:focus {
  outline: none;
}
img {
  display: block;
  /* Microsoft Edgeで画像検索無効に */
  pointer-events: none;
}
span.br {
  display: inline-block;
}
::selection {
  /* background-color: yellow; */
}
h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0.1em;
  line-height: var(--line_height_sm);
}
/* @media (any-hover: hover) {
  a[href] {
    transition: opacity 0.1s;
  }
  a[href]:hover {
    transition: opacity 0.2s;
    opacity: 0.5;
  }
} */
a[href] {
  transition: opacity 0.15s, scale 0.15s;
}
@media (any-hover: hover) {
  a[href]:hover, button:hover {
    opacity: 0.7;
    transition: opacity 0.1s, scale 0.1s;
  }
}
a[href]:active, button:active {
  opacity: 0.7;
  transition: opacity 0.1s, scale 0.1s;
}

p>a[href^="http"] {
  color: var(--color_links);
}
p>a[href^="http"][target="_blank"] {
  position: relative;
  margin-left:  0.2em;
  margin-right: 0.2em;
}
p>a[href^="http"][target="_blank"]::after {
  content: "";
  position: relative;
  display: inline-block;
  width:  1em;
  height: 1em;
  aspect-ratio: 1 / 1;
  transform: translate(0, 15%);
  -webkit-mask: url(../img/icon__externaLlink.svg) center / contain no-repeat;
  mask: url(../img/icon__externaLlink.svg) center / contain no-repeat;
  background-color: var(--color_links);
}

.inner {
  padding-left:   5%;
  padding-right:  5%;
  padding-top:    16.25em;
  padding-bottom: 16.25em;
}
.sectionSpace {
  width: 100%;
  position: relative;
  padding-bottom: 12em;
}
.sectionBorder {
  display: none;
}
@media (min-width: 1024px) {
  .sectionBorder {
    display: block;
    position: relative;
    width: 84%;
    margin: auto;
    opacity: 0.15;
    padding-bottom: 6em;
    border-top-width: 2px;
    border-radius: 2px;
  }
}



/* -------------------------
  header
------------------------- */
header {
  position: fixed;
  padding: 10px 15px;
  z-index: 10;
  width: 100%;
  pointer-events: none;
}
@media (min-width: 1024px) {
  header {
    padding: 30px 2%;
  }
}
.header__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.header__logo {
  /* filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.25)); */
  width: 32em;
  display: block;
  pointer-events: all;
}
.header__title {
  width: 24em;
}
.header__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* -------------------------
  container
------------------------- */
.container__parallax {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width:  100%;
  height: 100vh;
  height: 100lvh;
  top: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.container__parallax.overlay {
  height: 100svh;
  height: calc(100svh + 100px);
}
.container__parallax img {
  width:  100%;
  height: 100%;
  object-fit: cover;
}
.container__parallax.overlay img.parallaxOverlay__cover {
  position: absolute;
  width:  100%;
  height: 200vw;
  object-fit: cover;
  object-position: 50% 50%;
}
.container__parallax.overlay img.parallaxOverlay__effect {
  position: absolute;
  width:  100%;
  height: 100%;
  min-height: 200vw;
  object-fit: cover;
  object-position: 50% 50%;
}
@media (min-width: 1024px) {
  .container__parallax {
    min-height: 56.25vw;
    top:  50%;
    transform: translate(-50%,-50%);
    left: 50%;
  }
  .container__parallax.overlay img {
    position: absolute;
    width:  120% !important;
    height: 120% !important;
    min-height: 0 !important;
    object-fit: cover;
    object-position: 25% 50% !important;
  }
}

.container__main {
  display: contents;
}

@media (min-width: 1024px) {
  :root {
    /* バリアブルサイズ計算変数（画面幅に比例して上昇する数値） */
    --variableSize__minWindow:  1024; /* 想定する最小画面幅 */
    --variableSize__maxWindow:  1920; /* 想定する最大画面幅 */
    --variableSize__minSize:       0; /* 最小画面幅時の目標サイズ */
    --variableSize__maxSize:     300; /* 最大画面幅時の目標サイズ */
    --variableSize__calc: ((var(--variableSize__minSize) * 1px) + (var(--variableSize__maxSize) - var(--variableSize__minSize)) * (100vw - (var(--variableSize__minWindow) * 1px))/(var(--variableSize__maxWindow) - var(--variableSize__minWindow)));
  }
  .container__main,.footer__inner,.fixed__btnWrap {
    display: block;
    width: var(--contents__maxWidth);
    margin-left: calc(100% - var(--contents__maxWidth) - 8%);
    margin-left: calc(100% - var(--contents__maxWidth) - var(--variableSize__calc));
    margin-left: calc(var(--variableSize__calc));
  }
}

/* ローディング明けモーション */
body .container__parallax {
  overflow: hidden;
}
body .container__parallax.overlay img {
  filter: blur(2vw);
  scale: 1.15;
  transition: filter 1.5s, scale 3.0s;
}
body .container__parallax.overlay img.parallaxOverlay__cover {
  filter: blur(2vw);
  scale: 1.1;
  transition: filter 1.0s, scale 2.0s;
  transform: translateY(calc(var(--GSAP_scrub) * 1));
  will-change: transform;
}
body .container__parallax.overlay img.parallaxOverlay__effect {
  filter: blur(3vw);
  scale: 1.3;
  transition: filter 1.5s, scale 3.0s;
  transform: translateY(calc(var(--GSAP_scrub) * 0.5));
  will-change: transform;
}
body.loaded .container__parallax.overlay img {
  filter: blur(0);
  scale: 1;
}

.js__gsap {
  --GSAP_scrub: 0px;
}

/* -------------------------
  hero
------------------------- */
.container__sns {
  display: none;
}
@media (min-width: 1200px) {
  @media (min-height: 600px) {
    .container__sns {
      display: block;
      position: fixed;
      top: 50%;
      transform: translateY(-50%);
      left: 2%;
      z-index: 1;
    }
  }
}
.sns__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.sns__copy {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font_family_ENG);
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
}
.sns__border {
  width: 1px;
  height: 60px;
  background: hsla(0, 0%, 0%, 0.2);
}
.sns__link {
  width: 44px;
  aspect-ratio: 1/1;
  background: #000;
  border-radius: 100%;
}
.sns__link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}



/* -------------------------
  main
------------------------- */
main {
  
}
main section:not(.coverSlide) {
  position: relative;
  width: 100%;
}



/* -------------------------
  coverSlide
------------------------- */
section.coverSlide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8em 16em;
}
.coverSlide__slider {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  max-width: 400px;
}
.coverSlide__slider .swiper-wrapper {
  position: relative;
  min-height: 0;
}
.coverSlide__slider .swiper-wrapper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}
.coverSlide__slider .swiper-wrapper .swiper-slide .slider__cover {
  position: relative;
  aspect-ratio: 539 / 765;
  min-height: 0;
  filter: drop-shadow(20px 30px 50px rgba(0, 0, 0, 0.1));
}
.coverSlide__slider .swiper-wrapper .swiper-slide .slider__cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.coverSlide__slider .swiper-wrapper .swiper-slide .slider__year {
  font-family: var(--font_family_ENG);
  font-size: 52px;
  font-style: italic;
  text-align: center;
  line-height: 1;
  margin-top: 0.25em;
}

.coverSlide__slider .swiper-wrapper .swiper-slide img {
  transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.coverSlide__slider .swiper-wrapper .swiper-slide-active img {
  scale: 1;
  translate: 0 0;
}
.coverSlide__slider .swiper-wrapper .swiper-slide-prev img {
  scale: 0.95;
  /* translate: 0 -5%; */
}
.coverSlide__slider .swiper-wrapper .swiper-slide-next img {
  scale: 1.05;
  /* translate: 0 5%; */
}
@media (min-width: 1024px) {
  section.coverSlide {
    position: fixed;
    top: 0;
    right: calc(var(--variableSize__calc) * 0.5);
    width: calc(100% - (var(--variableSize__calc) * 1.75 + var(--contents__maxWidth)));
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4% 4% 3%;
  }
  .coverSlide__slider {
    max-width: none;
  }
}


/* -------------------------
  hero
------------------------- */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 100vh;
  height: 100svh;
  min-height: 141vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14em;
  padding: 4%;
}
.hero h1 {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
}
.hero h1 img {
  width: 100%;
}
.hero__buttonWrap {
  position: relative;
  width: 100%;
}
.hero__button {
  position: relative;
  display: flex;
  background: var(--color_accent);
  color: #fff;
  border-radius: 100px;
  text-align: center;
  padding: 20px 20px;
  padding-left: calc(9.6% + 45px);
  width: fit-content;
  justify-content: center;
  margin: auto;
}
.hero__buttonIllust {
  position: absolute;
  bottom: 10px;
  left: max(4vw, 20px);
  width: 16%;
}
.hero__buttonData {
  position: absolute;
  top: 0;
  left: 56%;
  transform: translate(-50%,-50%);
  font-size: 3.5vw;
  font-size: min(3.5vw, 16px);
  padding: 5px 15px;
  border-radius: 4px;
  background: #FFD817;
  color: #000;
  width: max-content;
}
.hero__buttonTitle {
  font-size: 4vw;
  font-size: min(4vw, 20px);
  text-align: left;
}
@media (min-width: 1024px) {
  .hero {
    padding: 0;
    min-height: var(--contents__maxWidth);
  }
  .hero__buttonData {
    font-size: 16px;
    padding: 5px 15px;
  }
  .hero__buttonIllust {
    position: absolute;
    bottom: 10px;
    left: 25px;
    width: 16%;
  }
  .hero__button {
    padding: 20px 30px;
    padding-left: calc(9.6% + 45px);
  }
  .hero__buttonTitle {
    font-size: 20px;
  }
}



/* -------------------------
  movie
------------------------- */
.movie {

}

.iframeClickable__wrap {
  position: relative;
  width:  100%;
  height: auto;
  aspect-ratio: 16 / 9;
  /* background-color: #000; */
  /* width: 160%; */
  /* scale: 0.625; */
  /* transform-origin: top left; */
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
}
@media (min-width: 600px) {
  .iframeClickable__wrap {
    width: 100%;
    scale: 1;
  }
}
.iframeClickable__wrap iframe {
  background-color: #000;
  width:  100%;
  height: 100%;
}
.iframeClickable__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  border-radius: 2.6em;
  overflow: hidden;
  background-color: #000;
}
.iframeClickable__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.iframeClickable__thumb::after {
  content: "";
  position: absolute;
  top:  50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width:  34%;
  height: 34%;
  max-width:  80px;
  max-height: 80px;
  opacity: 0.9;
  background: url(../img/iframeClickable__thumbIcon.svg) no-repeat center / contain;
  transition: scale 0.3s;
  transform-origin: top left;
}
.iframeClickable__thumb::before {
  content: "";
  position: absolute;
  top:  0;
  left: 0;
  width:  100%;
  height: 100%;
  opacity: 0.25;
  background: #000;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .iframeClickable__thumb:hover::after {
    scale: 1.1;
  }
  .iframeClickable__thumb:hover::before {
    opacity: 0;
  }
}
.iframeClickable__thumb:active::before {
  opacity: 0;
}


 
/* -------------------------
  introduction
------------------------- */
.introduction {
  
}
.introduction .inner {
  display: flex;
  flex-direction: column;
  gap: 9.34em;
}
.introduction h2 {
  font-size: 5em;
  font-weight: bold;
  line-height: var(--line_height_2xl);
  text-align: center;
  color: var(--color_accent);
}
.introduction p {
  font-size: 1.6rem;
  line-height: var(--line_height_2xl);
  text-align: center;
}
.instagram__button {
  background: var(--color_accent);
  padding: 20px 30px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  color: #fff;
  gap: 10px;
  width: fit-content;
  margin: auto;
  letter-spacing: 0.05em;
}



/* -------------------------
  present
------------------------- */
.present {
}
.present .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8em;
}
.present__titleWrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5em;
}
.present h2 {
  font-size: 5.6rem;
  font-weight: 800;
  font-family: var(--font_family_ENG);
  color: var(--color_accent);
  font-style: italic;
  letter-spacing: 0.0em;
  text-align: center;
  line-height: 1;
}
.present h2 .japanese {
  font-size: 80%;
  font-weight: 900;
  font-family: 'Noto Sans JP', "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
  font-style: italic;
  letter-spacing: 0.05em;
  display: inline-block;
  transform: translateY(-6%);
  margin: 0 0.2em;
}
.present__copy {
  font-size: 1.4rem;
  line-height: var(--line_height_xl);
}
.present__notice {
  font-size: 1.1rem;  
  line-height: var(--line_height_lg);
  opacity: 0.7;
}

.present__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6em;
}
.presentItem {
  width: 100%;
  padding: 4em;
  display: flex;
  flex-direction: column;
  gap: 4em;
  background: #fff;
  border-radius: 2.6em;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
}
.presentItem__BadgeWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.presentItem__Badge {
  padding: 0.3em 0.6em;
  border-radius: 4px;
  font-size: 1.3rem;
  color: #fff;
  background-color: gray;
}
.presentItem__Badge.new {
  color: #000;
  background-color: var(--color_new);
}
.presentItem__Badge.open {
  color: #fff;
  background-color: var(--color_accent);
}
.presentItem__Badge.pre {
  color: #fff;
  background-color: #000;
}

.presentItem__Banner {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
.presentItem__Banner img {
  width: 100%;
  height: auto;
}
.presentItem__btnWrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.presentItem__btn {
  position: relative;
  border-radius: 100px;
  min-width: 130px;
  padding: 10px 20px;
  color: #fff;
  background-color: gray;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
}
.presentItem__btn::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 24px;
  aspect-ratio: 1/1;
  /* top: 50%;
  transform: translateY(-50%);
  right: 20px; */
  background: url(../img/icon__open.svg) center / contain no-repeat;
  margin-left: auto;
}
.presentItem__btn.detail {
  color: #fff;
  background-color: var(--color_accent)
}
.presentItem__btn.detail::after {
  background-image: url(../img/icon__open.svg);
}
.presentItem__btn.movie {
  color: #fff;
  background-color: var(--color_links);
}
.presentItem__btn.movie::after {
  background-image: url(../img/icon__movie.svg);
}
.presentItem__btn.close {
  color: #fff;
  background-color: #000;
}
.presentItem__btn.close::after {
  background-image: url(../img/icon__close.svg);
}



/* -------------------------
  present modal
------------------------- */
.presentModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  background-color: hsla(0, 0%, 0%, 0.7);
  z-index: 10000;
  overflow-y: auto;
}
.presentModal__inner {
  padding-top: 10em;
  padding-bottom: 10em;
  display: flex;
  justify-content: center;
  cursor: pointer;
}
.modal__container {
  width: auto;
  max-width: var(--contents__maxWidth);
  margin: 4%;
  cursor: auto;
}
.presentModal .inner {
  padding-top: 0;
  padding-bottom: 0;
}
.presentModal .presentItem {
}
.presentModal.is-open {
  opacity: 1;
  pointer-events: all;
}

.presentItem__detail {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5em;
  margin: auto;
  margin-top: 2.5em;
  max-width: 480px;
}
.presentItem__detail h3 {
  color: var(--color_accent);
  font-size: 2.0rem;
  font-weight: bold;
}
.presentItem__detail h4 {
  color: var(--color_accent);
  font-size: 1.6rem;
  font-weight: bold;
}
.presentItem__detail h5 {
  font-size: 1.6rem;
  font-weight: bold;
}
.presentItem__detail p {
  font-size: 1.3rem;
  line-height: var(--line_height_lg);
  text-align: left;
  width: fit-content;
  margin: auto;
}
.presentItem__detail img {
  width: 80%;
  max-width: 400px;
  max-height: 600px;
  height: auto;
  object-fit: contain;
  margin: 0.6em 0;
}
.presentItem__detail hr {
  border-top: solid 1px hsla(0, 0%, 0%, 0.15);
  margin: 5em 0;
  width: 100%;
}
.presentItem__detail hr:last-child {
  margin-bottom: 0;
}
.presentItem__detail .blue {
  color: var(--color_links);
}
.presentItem__detail .red {
  color: var(--color_accent);
}
.presentItem__detail .black {
  color: #000;
}

/* -------------------------
  footer
------------------------- */
footer {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 100vh;
  min-height: 100lvh;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer__inner {
  position: relative;
  width: var(--contents__maxWidth);
  height: 100%;
  pointer-events: all;
  z-index: 1;
}
.footer__inner .inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer__sns .sns__wrapper {
  display: flex;
  flex-direction: row;
}
.footer__sns .sns__copy {
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  text-align: center;
  margin-bottom: 1em;
}
.footer__logo {
  display: block;
  width: 70%;
  max-width: 320px;
}
.footer__logo img {
  width: 100%;
}
.footer__copyWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4em;
}
.footer__notice {
  font-size: 11px;
  text-align: center;
  opacity: 0.8;
  line-height: var(--line_height_xl);
  opacity: 0.5;
}
.footer__copyright {
  font-size: 11px;
  text-align: center;
  opacity: 0.8;
  line-height: var(--line_height_xl);
  opacity: 0.5;
}
.footer__pagetopBtn {
  background: #000;
  padding: 1em 3em;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  color: #fff;
  gap: 10px;
  width: fit-content;
  margin: auto;
}


/* -------------------------
  pagetop
------------------------- */
.fixed__btnWrap {
  position: fixed;
  bottom: 20px;
  left:   8%;
  right:  8%;
  width: auto;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: bottom 0.3s;
  pointer-events: none;
}
@media (min-width:1024px){
  .fixed__btnWrap {
    bottom: 20px;
    left:  auto;
    right: auto;
    width: var(--contents__maxWidth);
    padding: 0 calc(var(--contents__maxWidth) * 0.08);
  }
}
.fixed__btnWrap > * {
  pointer-events: all;
}
.fixed__btnWrap.aos-init:not(.aos-animate) {
  bottom: -50px;
}
.fixed__btnWrap .btn__pageTop {
  width: 50px;
  height: 50px;
  line-height: 1;
  text-align: right;
  background: rgba(0,0,0,1);
  border-radius: 25px;
  transition: 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
.fixed__btnWrap .btn__pageTop img {
  margin-top: 2px;
}
@media (any-hover: hover) {
  .fixed__btnWrap .btn__pageTop:hover {
    background: rgba(0,0,0,0.75);
  }
}
.fixed__btnWrap .btn__pageTop:active {
  background: rgba(0,0,0,1);
}

.fixed__btnWrap .btn__apply {
  height: 50px;
  width: auto;
  max-width: calc(100% - 60px);
}
@media (min-width:600px){
  .fixed__btnWrap.aos-init:not(.aos-animate) {
  bottom: -60px;
  }
  .fixed__btnWrap .btn__apply {
    height: 60px;
  }
}
@media (min-width:1024px){
  .fixed__btnWrap.aos-init:not(.aos-animate) {
    bottom: -60px;
    }
    .fixed__btnWrap .btn__apply {
    height: 60px;
  }
}



/* -------------------------
  modal-video カスタム
------------------------- */
.modal-video {
  background-color: #000;
}
.modal-video-body {
  max-width: 100svh !important;
}
.modal-video-inner {
  max-width: 100svh !important;
  max-height: 100svh !important;
}
.modal-video-movie-wrap {
  padding-bottom: 100% !important;
}
.modal-video iframe {
}
@media (orientation: landscape) {
  .modal-video-body {
    max-width: none;
  }
  .modal-video-inner {
    padding: 10px 10px;
    max-width: none;
  }
  .modal-video-movie-wrap {
    padding-bottom: 100% !important;
  }
}