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

body {
  width: 100%;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-size: 16px; /* vw単位から固定のpx単位に変更 */
  overflow: hidden; /* スクロールコンテナの外側ではスクロールさせない */
  height: 100svh; /* bodyの高さを画面に固定 */
  transition: all 1.6s ease 0s;
  background-color: #fff;
  font-family: "nimbus-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

img {
  display: block;
  width: 100%;
}

a:hover {
  opacity: 0.6;
  transition: 0.6s;
}

@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;
}

#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;
  }
}

.wrapper {
  width: 100%;
  height: 100svh;
  overflow-y: scroll; /* この要素内でスクロールを許可する */
  -webkit-scroll-snap-type: y mandatory; /* Safari向けのベンダープレフィックス */
  scroll-snap-type: y mandatory; /* 標準のプロパティ */
}

.panel {
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .panel {
    height: 100svh;
    width: 100%;
    scroll-snap-align: start; /* 各パネルの上端でスナップさせる */
  }
}
@media screen and (min-width: 769px) {
  .panel {
    width: 50%;
    margin-left: 50%;
  }
}

@media screen and (min-width: 769px) {
  .pc_100 {
    margin-left: 0;
    width: 100%;
  }
  .pc_100 .plus-btn {
    bottom: 30px !important;
  }
  .pc_plusbtn {
    bottom: 30px !important;
  }
  .pc_img_6 {
    padding: 0 !important;
  }
}
header {
  position: fixed;
  z-index: 10;
  top: 73px;
  width: 110px;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0; /* 初期状態を透明にする */
  visibility: hidden; /* 操作もできないようにする */
}

.fv {
  /* FV内の要素を配置しやすくするため */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  opacity: 0;
  transition: opacity 1s;
}
.fv.on {
  opacity: 1;
}
.fv h1 {
  position: absolute; /* 画像の上にロゴを重ねる */
  width: 31.25vw; /* PCでの幅 */
}
@media screen and (max-width: 768px) {
  .fv h1 {
    width: 60vw; /* SPでの幅 */
    z-index: 10;
  }
}
@media screen and (min-width: 769px) {
  .fv h1 {
    position: fixed;
    width: 13.8888888889vw;
    left: 18.0555555556vw;
    transform: translate(0, -50%);
    top: 50%;
  }
}
.fv img {
  /* 背景画像のように振る舞わせる */
  object-fit: cover;
  height: 100%;
}

/* アイテム表示用のスタイル
===================================================== */
.item-container {
  position: relative; /* 子要素の配置の基準点 */
  overflow: hidden; /* はみ出した要素を隠す */
  /* activeになった時のスタイル */
}
.item-container .img_cre {
  /* .img_1, .img_2の共通スタイル */
  position: relative; /* +ボタンの配置の基準点 */
  height: 100%;
}
.item-container .img_cre img {
  object-fit: cover;
  height: 100%;
  width: 100%; /* コンテナの幅に合わせる */
}
.item-container .img_1 {
  box-sizing: border-box; /* paddingを含めて高さを100%に収める */
}
@media screen and (max-width: 768px) {
  .item-container .img_1 {
    /* 左右に余白を追加 */
    padding: 25px;
  }
}
@media screen and (min-width: 769px) {
  .item-container .img_1 {
    padding: 40px;
  }
}
.item-container .plus-btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: none; /* 枠線を削除 */
  cursor: pointer;
  transition: opacity 0.3s;
  z-index: 30; /* オーバーレイより手前に表示 */
  /* ＋ボタンの線を作成 */
}
@media screen and (min-width: 769px) {
  .item-container .plus-btn {
    bottom: 70px;
    right: 70px;
  }
}
.item-container .plus-btn::before, .item-container .plus-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px; /* 線の長さ */
  height: 1.5px; /* 線の太さ */
  background-color: #fff;
  transition: transform 0.3s ease;
}
.item-container .plus-btn::before {
  transform: translate(-50%, -50%);
}
.item-container .plus-btn::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.item-container .credit {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  opacity: 0; /* 最初は非表示 */
  transition: opacity 0.5s;
  z-index: 20;
}
.item-container.active {
  /* ×ボタンへの変形 */
}
.item-container.active .plus-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.item-container.active .plus-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.item-container.active .credit {
  opacity: 1; /* テキストを表示 */
}
.item-container.active .img_cre::after {
  /* オーバーレイ用の疑似要素 */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* 半透明の黒い膜 */
  z-index: 15;
}

footer {
  text-align: center;
  color: #fff;
  position: relative;
}
@media screen and (min-width: 769px) {
  footer {
    height: 87vw;
  }
}
footer .sta_cre {
  line-height: 2;
  position: absolute;
  top: 58.6666666667vw;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  footer .sta_cre {
    font-size: 2.9333333333vw;
  }
}
@media screen and (min-width: 769px) {
  footer .sta_cre {
    top: 30vw;
  }
}
footer ul {
  display: flex;
  justify-content: center;
  gap: 25px;
}
@media screen and (min-width: 769px) {
  footer ul {
    gap: 40px;
  }
}
footer ul li {
  width: 25px;
}
@media screen and (min-width: 769px) {
  footer ul li {
    width: 40px;
  }
}
footer .w_logo {
  width: 140px;
  margin: 25px auto;
}
@media screen and (min-width: 769px) {
  footer .w_logo {
    width: 220px;
  }
}
footer .copy {
  font-size: 9px;
}
footer .btm {
  position: absolute;
  top: 130vw;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 769px) {
  footer .btm {
    top: 70vw;
    bottom: 0;
  }
}

video {
  position: absolute;
}
video--filter {
  filter: drop-shadow(0px 0px #000);
}

.video01 {
  width: 40vw;
  top: 37.3333333333vw;
  left: 57%;
}
@media screen and (min-width: 769px) {
  .video01 {
    width: 16.6666666667vw;
    top: 14%;
  }
}

.video02 {
  width: 40vw;
  bottom: 7%;
  left: 4%;
}
@media screen and (min-width: 769px) {
  .video02 {
    width: 16.6666666667vw;
    bottom: 35%;
    left: -32vw;
  }
}

@media screen and (min-width: 769px) {
  .panel04 {
    overflow: visible !important;
  }
}

.video03 {
  width: 40vw;
  top: 50%;
  left: 4%;
  transform: translate(0%, -50%);
}
@media screen and (min-width: 769px) {
  .video03 {
    width: 16.6666666667vw;
  }
}

.video04 {
  width: 100%;
  top: 0%;
  left: 0%;
}

.clip_anime {
  clip-path: inset(0 100% -20% 0);
  transition: clip-path 2s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: 0s;
}
.clip_anime.clip-active {
  clip-path: inset(0 0 -20% 0);
}

.typing {
  position: absolute;
  color: #222222;
  letter-spacing: 0.025em;
  text-wrap: nowrap;
  text-align: center;
  font-family: "adobe-garamond-pro", serif;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .typing {
    font-size: 3.6vw;
  }
}
@media screen and (min-width: 769px) {
  .typing {
    font-size: 1.875vw;
  }
}

.typeA .typing {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .typeA .typing {
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 769px) {
  .typeA .typing {
    font-size: 1.6666666667vw;
  }
}

.typeB .typing {
  left: 50%;
  transform: translateX(-50%);
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .typeB .typing {
    font-size: 3.6vw;
    bottom: 14.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .typeB .typing {
    font-size: 1.875vw;
    bottom: 4.1666666667vw;
  }
}

.typeC .typing {
  color: #fff;
  text-align: left;
  font-weight: 400;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .typeC .typing {
    font-size: 7.2vw;
    left: 10.2666666667vw;
    bottom: 8.4vw;
  }
}
@media screen and (min-width: 769px) {
  .typeC .typing {
    font-size: 2.5vw;
    left: 5.3472222222vw;
    bottom: 4.375vw;
  }
}/*# sourceMappingURL=style.css.map */