@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0;
  /* スクロールコンテナの役割をhtmlからbodyに移動 */
  height: 100svh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  overscroll-behavior: contain;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-size: 11px;
  transition: all 1.6s ease 0s;
  background-color: #fff;
  font-weight: 500;
  font-style: normal;
}

/* モーダル表示時にbodyのスクロールを禁止する */
.is-modal-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media screen and (min-width: 769px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pcNone {
    display: block;
  }
}

/* .load
===================================================== */
.load {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 100svh;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.load_logo {
  width: 150px;
  height: auto;
  animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
  0%, 100% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
}
.○○○○○○ {
  opacity: 0;
  transition: opacity 1s;
}
.○○○○○○.on {
  opacity: 1;
}

#page-top {
  position: fixed;
  bottom: 3%;
  right: 3%;
  z-index: 99;
}
@media screen and (max-width: 768px) {
  #page-top {
    right: 3%;
  }
}
#page-top img {
  width: 2.3611111111vw;
}
@media screen and (max-width: 768px) {
  #page-top img {
    width: 7.6vw;
  }
}

#page-top a {
  display: block;
  opacity: 0.9;
  transition: all 0.3s ease;
}

/* .header
===================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 20px;
  box-sizing: border-box;
  z-index: 1000;
  background-color: transparent; /* 背景を透明に */
  transform: translateY(-100%); /* 初期状態では画面上部に隠す */
  transition: transform 0.5s ease-in-out; /* 表示切替時のアニメーション */
}
.header img {
  width: 80px;
  height: auto;
}

.header.is-active {
  transform: translateY(0); /* is-activeクラスが付いたら画面内に表示 */
}

@media screen and (min-width: 769px) {
  .header img {
    width: 150px;
  }
}
/* .FV
===================================================== */
.fv {
  position: relative;
  height: 100svh;
  scroll-snap-align: start;
  overflow: hidden;
}

.fv_image_wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.fv_sliding_image {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  z-index: 2;
}

.fv_logo_wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 170px;
  z-index: 3;
}

@media screen and (min-width: 769px) {
  .fv {
    height: 100svh;
  }
  .fv_sliding_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: none;
  }
  .fv_logo_wrapper {
    width: 250px;
  }
}
/* --- FVのフェードイン/アウト --- */
.fv_fade_images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.fv_fade_images .fv_fade_item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: fvFadeAnimation 12s infinite;
}
.fv_fade_images .fv_fade_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fv_fade_images .fv_fade_item_pc {
  display: none;
}
.fv_fade_images .fv_fade_item_common:nth-of-type(1) {
  animation-delay: 2s;
}
.fv_fade_images .fv_fade_item_sp:nth-of-type(2) {
  animation-delay: 5s;
}
.fv_fade_images .fv_fade_item_sp:nth-of-type(4) {
  animation-delay: 8s;
}
.fv_fade_images .fv_fade_item_sp:nth-of-type(6) {
  animation-delay: 11s;
}
@media screen and (min-width: 768px) {
  .fv_fade_images .fv_fade_item_sp {
    display: none;
  }
  .fv_fade_images .fv_fade_item_pc {
    display: block;
  }
  .fv_fade_images .fv_fade_item_common {
    animation-delay: 2s !important;
  }
  .fv_fade_images .fv_fade_item_pc:nth-of-type(3) {
    animation-delay: 5s !important;
  }
  .fv_fade_images .fv_fade_item_pc:nth-of-type(5) {
    animation-delay: 8s !important;
  }
  .fv_fade_images .fv_fade_item_pc:nth-of-type(7) {
    animation-delay: 11s !important;
  }
}

@keyframes fvFadeAnimation {
  0% {
    opacity: 0;
  }
  8.33% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  33.33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* .section
===================================================== */
.concept {
  height: 100svh;
  scroll-snap-align: start;
  width: 100%;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.concept_title_en {
  font-family: helvetica-lt-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.concept_title_jp {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.02em;
  margin-top: 18px;
}

.concept_text {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  margin-top: 18px;
}

.concept_title_en,
.concept_title_jp,
.concept_text {
  max-width: 50em;
  width: auto;
}

@media screen and (min-width: 769px) {
  .concept {
    display: flex;
    flex-direction: row;
    gap: 18%;
    align-items: center;
  }
  .concept_title_en {
    font-size: 40px;
  }
  .concept_title_jp {
    font-size: 20px;
  }
  .concept_text {
    width: auto;
    font-size: 16px;
    margin-top: 0;
  }
}
/* image_block_section
===================================================== */
.image_block {
  height: 100svh;
  width: 100%;
  scroll-snap-align: start;
}

.image_block_item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  width: 100%;
  height: auto;
}

.image_block_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(35, 24, 21, 0.6);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image_block_credit {
  color: #fff;
  font-size: 14px;
  font-family: helvetica-lt-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: 0.1s;
}
.image_block_credit a:hover {
  opacity: 0.6;
  transform: 0.6s;
}

.image_block_icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
}
.image_block_icon span {
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #231815;
  top: 50%;
  left: 50%;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.image_block_icon span:first-child {
  transform: translate(-50%, -50%) rotate(0deg);
}
.image_block_icon span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}

@media screen and (min-width: 769px) {
  .image_block_icon {
    width: 20px;
    height: 20px;
  }
}
.image_block_item.is-open .image_block_overlay,
.image_block_item.is-open .image_block_credit {
  opacity: 1;
  transform: translateY(0);
}
.image_block_item.is-open .image_block_icon span {
  background-color: #fff;
}
.image_block_item.is-open .image_block_icon span:first-child {
  transform: translate(-50%, -50%) rotate(135deg);
}
.image_block_item.is-open .image_block_icon span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

/* image_block_01
===================================================== */
.image_block_01 {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 769px) {
  .image_block_item_01 {
    width: auto;
    max-width: 100%; /* Safariでの幅計算を安定させる */
    height: 80%;
    margin: 0 auto;
  }
  .image_block_item_01 img {
    width: auto; /* グローバルスタイルを上書き */
  }
}
/* image_block_02
===================================================== */
.image_block_02 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image_block_item_02 {
  width: 80%;
}

@media screen and (min-width: 769px) {
  .image_block_item_02 {
    width: auto;
    max-width: 100%; /* Safariでの幅計算を安定させる */
    height: 100%;
    margin: 0 auto;
  }
  .image_block_item_02 img {
    width: auto; /* グローバルスタイルを上書き */
  }
}
/* image_block_03
===================================================== */
.image_block_03 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5%;
}

.image_grid_item {
  width: 61%;
  display: block;
}

.image_grid_item_01 {
  margin-left: auto;
}
.image_grid_item_01 .image_block_icon span {
  background-color: #fff;
}

.image_grid_item_02 {
  margin-right: auto;
  margin-top: 6vh;
}

@media screen and (min-width: 769px) {
  .image_block_03 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0 5%;
    gap: 10vw;
  }
  .image_grid_item {
    width: auto;
    max-width: 100%; /* Safariでの幅計算を安定させる */
    height: 62%;
    display: block;
  }
  .image_grid_item img {
    width: auto; /* グローバルスタイルを上書き */
  }
  .image_grid_item_01 {
    margin: 0;
    margin-top: 10vh;
  }
  .image_grid_item_02 {
    margin: 0;
    margin-top: auto;
    margin-bottom: 10vh;
  }
}
/* image_block_04
===================================================== */
.image_block_04 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image_block_item_04 {
  width: 90%;
}

@media screen and (min-width: 769px) {
  .image_block_item_04 {
    width: auto;
    max-width: 100%; /* Safariでの幅計算を安定させる */
    height: 100%;
    margin: 0 auto;
  }
  .image_block_item_04 img {
    width: auto; /* グローバルスタイルを上書き */
  }
}
/* image_block_05
===================================================== */
.image_block_05 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image_block_item_05 {
  width: 96%;
  transform: translateY(80px);
}

@media screen and (min-width: 769px) {
  .image_block_item_05 {
    width: auto;
    max-width: 100%; /* Safariでの幅計算を安定させる */
    height: 50%;
    margin: 0 auto;
    transform: translateY(0px);
  }
  .image_block_item_05 img {
    width: auto; /* グローバルスタイルを上書き */
  }
}
/* image_block_06
===================================================== */
.image_block_06 {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 769px) {
  .image_block_item_06 {
    width: auto;
    max-width: 100%; /* Safariでの幅計算を安定させる */
    height: 100%;
    margin: 0 auto;
  }
  .image_block_item_06 img {
    width: auto; /* グローバルスタイルを上書き */
  }
}
/* image_block_07
===================================================== */
.image_block_07 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
}

@media screen and (min-width: 769px) {
  .image_block_07 {
    padding: 0;
  }
  .image_block_item_07 {
    width: auto;
    max-width: 100%; /* Safariでの幅計算を安定させる */
    height: 50%;
    margin: 0 auto;
  }
  .image_block_item_07 img {
    width: auto; /* グローバルスタイルを上書き */
  }
}
/* image_block_08
===================================================== */
.image_block_08 {
  display: flex;
  height: 100svh; /* 高さを明示的に指定 */
  align-items: flex-end; /* SPでは下端に揃える */
  justify-content: center;
}

.image_block_item_08 {
  width: auto; /* 画像の幅に合わせてコンテナの幅を自動調整 */
  height: 80%;
}
.image_block_item_08 img {
  object-fit: cover;
}

@media screen and (min-width: 769px) {
  .image_block_08 {
    align-items: center;
  }
  .image_block_item_08 {
    width: auto;
    height: 100%;
  }
  .image_block_item_08 img {
    width: auto; /* グローバルスタイルを上書き */
  }
  .image_block_item_08 .sp_img {
    display: none;
  }
  .image_block_item_08 .pc_img {
    display: block;
  }
}
/* image_block_09
===================================================== */
.image_block_09 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image_block_item_09 {
  width: 80%;
  transform: translateY(80px);
}

@media screen and (min-width: 769px) {
  .image_block_item_09 {
    width: auto;
    max-width: 100%; /* Safariでの幅計算を安定させる */
    height: 50%;
    margin: 0 auto;
    transform: translateY(0px);
  }
  .image_block_item_09 img {
    width: auto; /* グローバルスタイルを上書き */
  }
}
/* image_block_10
===================================================== */
.image_block_10 {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 769px) {
  .image_block_item_10 {
    width: auto;
    max-width: 100%; /* Safariでの幅計算を安定させる */
    height: 100%;
    margin: 0 auto;
  }
  .image_block_item_10 img {
    width: auto; /* グローバルスタイルを上書き */
  }
}
/* lineup
===================================================== */
.lineup {
  padding: 100px 0;
  height: 100svh;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.lineup_title {
  font-family: helvetica-lt-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  font-size: 24px;
  margin-bottom: 100px;
}

.lineup-swiper {
  overflow: hidden;
}

.lineup-swiper .swiper-slide {
  width: 60%;
}
@media screen and (min-width: 769px) {
  .lineup-swiper .swiper-slide {
    width: 20%;
  }
}

.swiper-button-prev {
  left: -50px;
}

.swiper-button-next {
  right: -50px;
}

/* credit
===================================================== */
.lp_credit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  font-family: helvetica-lt-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
  scroll-snap-align: start;
  height: 60svh;
}

.credit_logo {
  margin-top: 80px;
}

.copyright {
  font-size: 10px;
  margin-top: 16px;
}

@media screen and (min-width: 769px) {
  .lp_credit {
    height: 100svh;
  }
  .credit_logo {
    margin-top: 180px;
  }
}
/* modal
===================================================== */
.image_block_list {
  cursor: pointer;
}

.modal-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
}
.modal-wrapper.is-open {
  display: block;
}

.modal-inner {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  overscroll-behavior: contain;
}

.modal-list-item {
  width: 100%;
  height: 100svh;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}
.modal-list-item img {
  width: auto;
  max-width: 100%;
  max-height: 80vh;
  height: auto;
  object-fit: contain;
}
.modal-list-item p {
  margin-top: 15px;
  color: #000;
  width: 100%;
  text-align: right;
  font-family: helvetica-lt-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 10000;
}
.modal-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background-color: #231815;
}
.modal-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}/*# sourceMappingURL=style.css.map */