@charset "UTF-8";
/* CSS Document */
/* 基本情報 */
img {
  max-width: 100%;
}

@keyframes bodyFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
:root {
  font-size: clamp(10px, 12px + 1.25vw, 28px);
}

/* 重要ラッパーの設定 */
#wrapper {
  width: 700px;
  margin: 0 auto;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  padding-top: 4rem;
}

body {
  animation: bodyFadeIn 3s ease 0s 1 normal;
  -webkit-animation: bodyFadeIn 3s ease 0s 1 normal;
  background: url(../../_img/bg.jpg);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-style: normal;
  display: block;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: “alpha(opacity=80) ”;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

#mask {
  width: 100%;
  height: 300px;
  background: url(../../_img/top_bg_mask_pc.png) center repeat-x;
  position: absolute;
  top: 530px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 3;
}

@media (max-width: 767px) {
  #mask {
    width: 100%;
    height: 300px;
    background: url(../../_img/top_bg_mask_sp.png) center/100% no-repeat;
    position: absolute;
    top: 28rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 3;
  }
}
/* 重要背景ビデオ設定 */
/* ▼ 背景動画の枠（高さは640px、1500px未満では縮まない） */
.bg-video {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* 1500px未満 → 1500px × 640px の固定表示 */
@media (max-width: 1499px) {
  .bg-video {
    width: 1500px;
    height: 640px;
    margin: 0 auto; /* ← 枠を中央 */
  }
}
/* 1500px以上 → 画面幅に合わせて拡大、アスペクト比維持 */
@media (min-width: 1500px) {
  .bg-video {
    width: 100vw;
    aspect-ratio: 1500/640;
    height: 640px;
  }
}
/* ▼ 中央揃えの本体（これが最重要） */
.bg-video__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* ← これで中央基準でトリミング */
}

/* ▼ スマホ（例：767px以下）のときは「ふつうの動画」に戻す */
@media (max-width: 767px) {
  .bg-video {
    position: relative;
    width: 100%;
    height: auto; /* 高さ固定をやめる */
    margin: 0 auto;
    overflow: hidden;
  }
  .bg-video__video {
    position: static; /* absolute を解除 */
    inset: auto;
    top: auto;
    left: auto;
    transform: none;
    width: 100%; /* 横幅100％ */
    height: auto; /* 縦は自動（引き延ばさない） */
    -o-object-fit: contain;
       object-fit: contain; /* or cover でもOK。気になる方を使って */
    display: block;
  }
}
section#top {
  width: 1000px;
  height: 620px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
}
section#top img {
  width: 100%;
}
section#top #top_logo_mini {
  width: 14%;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  display: none;
}
section#top #scene1, section#top #scene2, section#top #scene3 {
  width: 100%;
  height: 620px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 0;
}
section#top #top_s1_copy {
  width: 20%;
  position: absolute;
  top: 7px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 21;
}
section#top #top_s1_chara {
  width: 55%;
  position: absolute;
  bottom: -50px;
  left: 20px;
  z-index: 1;
}
section#top #top_s1_chara2 {
  width: 35%;
  position: absolute;
  bottom: -110px;
  right: 70px;
  z-index: 1;
}
section#top #top_s2_copy {
  width: 35%;
  position: absolute;
  top: 20px;
  left: 150px;
  z-index: 2;
}
section#top #top_s2_chara1 {
  width: 25%;
  position: absolute;
  bottom: -120px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
}
section#top #top_s2_chara2 {
  width: 85%;
  position: absolute;
  top: 0px;
  right: -160px;
  z-index: 0;
}
section#top #top_s3_logo {
  width: 50%;
  position: absolute;
  top: 80px;
  left: 50px;
  z-index: 2;
}
section#top #top_s3_logoinfo {
  width: 54%;
  position: absolute;
  top: 290px;
  left: 1rem;
  z-index: 2;
}
section#top #top_s3_chara {
  width: 56%;
  position: absolute;
  bottom: -50px;
  right: 0px;
  z-index: 0;
}

@media (max-width: 767px) {
  /* ヘッダービジュアル部分 */
  section#top {
    width: 100%;
    height: 40rem;
    padding: 0px 0;
    margin: 0px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* 背景動画 */
  }
  section#top img {
    width: 100%;
  }
  section#top #bg_mv {
    width: 100%;
    height: 43rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -1;
    -o-object-fit: cover;
       object-fit: cover;
  }
  section#top #bg_mv video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; /* 画面いっぱいにトリミングして表示 */
  }
  section#top #top_logo_mini {
    width: 23%;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 0;
  }
  section#top #scene1, section#top #scene2, section#top #scene3 {
    width: 100%;
    height: 38rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 0;
  }
  section#top #top_s1_copy {
    width: 37%;
    position: absolute;
    top: 1rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 4;
  }
  section#top #top_s1_chara {
    width: 100%;
    position: absolute;
    bottom: 2rem;
    left: -4rem;
    z-index: 2;
  }
  section#top #top_s1_chara2 {
    width: 65%;
    position: absolute;
    bottom: 1rem;
    right: -3.6rem;
    z-index: 1;
  }
  section#top #top_s2_copy {
    width: 66%;
    position: absolute;
    top: 0.4rem;
    left: 0.5rem;
    z-index: 2;
  }
  section#top #top_s2_chara1 {
    width: 50%;
    position: absolute;
    bottom: -2rem;
    left: 2rem;
    right: auto;
    z-index: 1;
  }
  section#top #top_s2_chara2 {
    width: 180%;
    position: absolute;
    top: 6rem;
    right: -14rem;
    z-index: 0;
  }
  section#top #top_s3_logo {
    width: 85%;
    position: absolute;
    top: 0.5rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
  }
  section#top #top_s3_logoinfo {
    width: 90%;
    position: absolute;
    top: 9.2rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
  }
  section#top #top_s3_chara {
    width: 100%;
    position: absolute;
    bottom: -3em;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 0;
  }
}
/*  見出し;*/
h1 {
  font-size: 0;
}

h2 {
  width: 900px;
  margin-bottom: 1rem;
  max-width: none;
  position: relative;
  left: -100px;
}

/* スマホ時（例：768px以下） */
@media (max-width: 768px) {
  h2 {
    width: 500px; /* 画像は1000px固定で縮まない */
    max-width: none; /* 縮小禁止 */
    position: relative;
    left: 50%; /* 中央の基準へ */
    transform: translateX(-50%); /* 完全中央寄せ（はみ出し均等） */
    z-index: 10;
  }
}
/* テーブル設定 */
div.table1 {
  width: 95%;
  margin: 0px auto 5rem;
  background: url("../../_img/table_cmn.png") center/100%;
  position: relative;
}

div.table1:before {
  content: "";
  width: 100%;
  height: 2rem;
  position: absolute;
  left: 0;
  right: 0;
  top: -1.8rem;
  background: url("../../_img/table_top.png") center/100% no-repeat;
}

div.table1:after {
  content: "";
  width: 100%;
  height: 2rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1.7rem;
  background: url("../../_img/table_btm.png") center/100% no-repeat;
}

#toast div.table1:after {
  content: "";
  width: 100%;
  height: 13rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12rem;
  background: url("../../_img/table_btm_toast.png") center/100% no-repeat;
}

/* ボタン;*/
a.btn {
  display: block;
  width: 90%;
  background: linear-gradient(to left, #ff3700, #ffb347);
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 0.3rem 0;
  margin: 0.5rem auto;
  font-size: 1.1rem;
  line-height: 30px;
  text-decoration: none;
  border-radius: 100px;
}

a.btn:hover {
  background: linear-gradient(to left, #ff7852, #ffcd88);
}

/* セクション共通 */
section {
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* セクション個別設定 */
#about {
  margin-top: -6rem;
}
#about .info {
  width: 100%;
  margin: 0 auto;
  margin-top: -1rem;
}
#about .table1 ul {
  padding: 0.5rem 1rem;
}
#about .table1 ul li {
  line-height: 1.3rem;
  font-size: 1.07rem;
  color: #e73079;
  margin-bottom: 0.6rem;
}
#about .table1 ul li:last-child {
  margin-bottom: 0;
}
#about .table1 ul li span {
  color: #fff;
  background: #9066d6;
  padding: 0.2rem 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  margin-right: 0.5rem;
  border-radius: 10px;
}

#toast {
  margin-top: -3rem;
  margin-bottom: 15rem;
}
#toast .table1 {
  padding-bottom: 1rem;
}
#toast .top {
  width: 90%;
  margin: 0 auto -2rem;
  position: relative;
  top: -2rem;
  z-index: 0;
}
#toast .step {
  width: 92%;
  margin-left: 0;
}
#toast .st1 {
  margin-top: -4rem;
  position: relative;
  z-index: 2;
}
#toast .st5 {
  margin: 2rem auto 1rem;
  width: 95%;
  position: relative;
  z-index: 2;
}

#pspot .top {
  width: 90%;
  margin: 0 auto;
  position: relative;
  top: -2rem;
}
#pspot .info {
  width: 92%;
  margin: -1rem auto;
}

#secret {
  margin-top: -3rem;
}
#secret .info {
  width: 90%;
  margin: 0 auto;
}

#caution {
  width: 100%;
  padding: 1.5rem;
  background: #46083f;
  color: #fff;
  font-size: 0.8rem;
  line-height: 1.1rem;
  font-weight: 700;
}
#caution h3 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  text-align: center;
}
#caution li {
  text-indent: -1em;
  margin-bottom: 0.5em;
}
#caution .double {
  margin: 0 0 0.3em 1em;
}

#info .table1 {
  padding-bottom: 0.2rem;
}
#info h3 {
  width: 90%;
  margin: 0 auto;
}
#info dl.comics {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
#info dl.comics dt {
  width: 40%;
}
#info dl.comics dd {
  width: 58%;
  margin-left: 2%;
  font-size: 0.9rem;
}
#info div.anime {
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

/* フッター */
footer {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  position: relative;
  z-index: 10;
  background: #FFF;
}
footer p {
  color: #000;
  font-size: 0.6rem;
  line-height: 1rem;
  text-align: center;
}
footer ul#textLink {
  text-align: center;
  font-size: 0.6rem;
  display: flex;
  justify-content: center;
  font-weight: 700;
}
footer ul#textLink li {
  margin: 0 0.3rem;
}
footer #snsBtn {
  font-size: 0;
  padding: 20px 0;
  text-align: center;
}
footer #snsBtn img {
  width: 50px;
  height: auto;
}
footer #snsBtn li {
  line-height: 1.83333;
  letter-spacing: 0;
  display: inline-block;
}
footer #snsBtn li + li {
  margin-left: 15px;
}

/* clearfix */
.clearfix {
  zoom: 1;
}

.clearfix:after, ul:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

@media screen and (max-width: 667px) {
  #wrapper {
    width: 100%;
    border: none;
    overflow: hidden;
    margin: -7rem auto 0;
    padding-top: 9rem;
  }
}/*# sourceMappingURL=style.css.map */