@charset "UTF-8";

@import url(font.css);

/* Common */
header {
  margin-bottom: 0 !important;
}

#main .mainInner {
  max-width: none !important;
  background-color: #000000;
}

footer {
  margin-top: 0 !important;
}

#main article h1 {
  padding: 0;
  margin: 0;
  border-bottom: none;
}

/* godzilla */
/* gallery */
#gallery {
  max-width: 1000px;
  margin: 0 auto;
  /* 中央揃え */
  padding: 20px;
}

#gallery_cnt .gallery_ul_gzl {
  display: flex;
  justify-content: space-between;
  /* アイテム間の間隔を均等に */
  flex-wrap: wrap;
  /* 画面が小さい場合に折り返す */
}

#gallery_cnt li {
  list-style: none;
  width: 30%;
  /* 3つの画像を横並びにする */
  margin-bottom: 20px;
  /* 下にスペースを確保 */
}

#gallery_cnt figure {
  text-align: left;
}

#gallery_cnt img {
  width: 100%;
  /* 画像を親要素に合わせて縮小 */
  height: auto;
  /* 高さは自動調整 */
}

#gallery figcaption {
  margin-top: 10px;
  color: #fff;
  font-family: NotoSansJP;
  font-weight: 500;
  line-height: 1.7;
}

/* MV */
#title {
  position: relative;
  width: 100%;
  margin: 0 auto;
  height: auto;
  /* 高さを指定する or 中身の高さを維持 */
}

/* 背景画像部分はワイドに */
.visual-bg {
  position: relative;
  /* レイヤー基準にする */
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  z-index: 1;
}

/* エフェクト */
/* ●　最初上にいてスクロールするとするする来て最後に下の方の位置で着地 */

#stopper {
  position: absolute;
  /* top: 385px; */
  top: 42%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 540px;
  display: flex;
  justify-content: center;
  transition: top 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);

  z-index: 3;
}

#stopper.fixed {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

#stopper.stopped {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

#image.image01 {
  margin-top: 5%;
}


/* #stopperの調整 */
#stopper.stopped {
  top: 58%;
}

/* #stopperの調整 おわり */

#stopper img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.visual-inner {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  max-width: 100%;
  z-index: 2;
  /* 前に出す */
}

/* 右上に浮かせる画像 */
.float-image {
  position: absolute;
  top: 10px;
  right: 2vw;
  width: 22%;
  /* 画像サイズを親幅の割合で指定（例：22%で約220px相当） */
  height: auto;
  max-width: 120px;
  /* 画像の実サイズより大きくならないように */
  z-index: 2;
}

.float-image_left {
  position: absolute;
  top: 10px;
  left: 2vw;
  width: 22%;
  /* 画像サイズを親幅の割合で指定（例：22%で約220px相当） */
  height: auto;
  max-width: 100px;
  /* 画像の実サイズより大きくならないように */
  z-index: 2;
}

#name {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1000px;
  /* 背景と揃えると自然 */
  z-index: 3;
  padding-top: 2vw;
}

/* 中身は PC で1000px、それ以下では縮む */
.name-inner {
  width: 100%;
}

.name-inner img {
  width: 100%;
  height: auto;
  display: block;
}

#name img {
  width: 100%;
  height: auto;
  display: block;
}

/* gzl */
#gzl {
  color: #FFFFFF;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.05rem;
}

#main #gzl article h1 {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

#image,
#contents {
  max-width: 1000px;
  margin: 0 auto 0;
}

#gzl h2 {
  max-width: 1200px;
  margin: 0 auto 0;
  text-align: center;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 1), rgba(51, 255, 51, 1) 50%, rgba(0, 0, 0, 1));
  margin-bottom: 20px;
}

/* #conceptの調整 */

#concept {
  margin-bottom: 20px;
}

@media screen and (max-width: 1000px) {
  #concept {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.item {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 1000px) {
  .item li {
    width: 49%;
  }
}

#pkg {
  margin-bottom: 20px;
}

#text {
  text-align: justify;
  line-height: 1.75;
  margin-bottom: 20px;
}

#spec {
  margin-bottom: 30px;
}

.spec_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  border: solid 1px #ffffff;
  margin-bottom: 20px;
}

.spec_item {
  width: 100%;
  /* width: 47%; */
  padding: 20px 30px 20px;
  line-height: 1.7;
}

.spec_item li {
  list-style: none;
}

.bottom {
  margin-bottom: 20px;
}

.right {
  text-align: right;
}

.box {
  line-height: 1.7;
  margin-bottom: 5%;
}

.box a {
  text-align: right;
  font-size: 125%;
  color: #ffffff;
}

.shop {
  margin: 0 0 60px;
  text-align: center;
}

.shop a {
  padding: 25px 40px 23px;
  color: #FFFFFF;
  background: -webkit-linear-gradient(#f50000 0%, #f53232 50%, #be0f0f 51%, #dc0a0a 100%);
  background: -o-linear-gradient(#f50000 0%, #f53232 50%, #be0f0f 51%, #dc0a0a 100%);
  background: linear-gradient(#f50000 0%, #f53232 50%, #be0f0f 51%, #dc0a0a 100%);
  border-radius: 10px;
  font-size: 186%;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}

ul.link {
  margin: 50px 0 30px;
  text-align: center;
  display: flex;
  gap: 40px;
  /* PCでは40pxの間隔 */
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  list-style: none;
}

.link li {
  flex: 0 1 auto;
}

.link img {
  width: 90%;
  max-width: 500px;
  /* お好みで調整 */
  height: auto;
}

.caution {
  max-width: 1000px;
  margin: 0 auto 60px;
  font-size: 86%;
  clear: both;
}

.caution {
  max-width: 1000px;
  margin: 0 auto 60px;
  font-size: 86%;
  clear: both;
}

/* フォント　NotoSansJP レギュラー */

#main {
  font-family: NotoSansJP;
  font-weight: 500;
}

.preload-hide {
  opacity: 0;
}


.show {
  animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


/* lightboxの調整 */

#lightbox .lb-outerContainer {
  background-color: #3b0144;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}

#lightboxOverlay.lightboxOverlay {
  background-color: #0e001a;
}

.sp {
  display: none;
}