@charset "UTF-8";
/*
# =================================================================
# フォント
# =================================================================*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Reggae+One&display=swap');
.fontMontserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.fontMontserrat.light {
  font-weight: 300;
}
.fontMontserrat.bold {
  font-weight: 700;
}
.fontReggae {
  font-family: "Reggae One", system-ui;
  font-weight: 400;
  font-style: normal;
}

/*
# =================================================================
# 共通要素
# =================================================================*/
html {
  height: 100%;
  overflow: hidden;
  font-size: 62.5%;
}
html.act {
  height: auto;
  overflow: auto;
}
body {
  height: 100%;
  background: #ffea00;
  border: 20px solid #000;
  font-family: "Noto Sans JP", "-apple-system", "BlinkMacSystemFont",
    "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3",
    "Meiryo", "sans-serif";
  font-size: 1.3rem;
  color: #000;
  overflow: hidden;
}
body.act {
  height: auto;
}
header {
}
h1 {
}
nav {
}
footer {
}
a:link,
a:active,
a:visited,
a:hover {
  color: #000;
  text-decoration: none;
}
a {
  opacity: 1;
  transition: .3s ease-in-out;
}
a:hover {
  opacity: .6;
}
img {
  max-width: 100%;
  vertical-align: top;
}
*:focus {
  outline: none;
}
.sp {
  display: none !important;
}
.boxModal {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, .4);
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: .3s ease-in-out;
  z-index: 100;
}
.boxModal.act {
  opacity: 1;
  visibility: visible;
}
.boxModal .bg {
  max-width: 1366px;
  width: 90%;
  margin: 0 auto;
  padding: 65px 40px;
  background: #ffea00;
  border: 20px solid #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.boxModal .bg .inner {
  max-width: 930px;
}
.boxModal .bg .inner .box1 {
  height: 600px;
  display: flex;
  flex-wrap: wrap;
}
.boxModal .bg .inner .box1 .img {
  width: 48%;
  display: flex;
  align-items: center;
}
.boxModal .bg .inner .box1 .txt {
  width: 52%;
  padding: 90px 0 0 0;
  background: url(../img/memberBg4.png) no-repeat center top / contain;
}
.boxModal .bg .inner .box1 .txt h2 {
  margin: 0 0 12px 0;
  font-size: 25px;
  color: #ffea00;
  text-align: center;
}
.boxModal .bg .inner .box1 .txt h2 span {
  padding: 0 0 5px 0;
  font-family: "dirty-bakers-dozen-spraypaint", sans-serif;
  font-size: 18px;
  color: #fff;
  display: block;
}
.boxModal .bg .inner .box1 .txt p {
  max-width: 280px;
  width: 100%;
  margin: 0 auto;
  font-family: "MFW-GothicMB101Pro-DeBold";
  font-weight: 300;
  font-size: 16px;
  color: #fff;
  line-height: 1.56;
}
.boxModal .bg .btnClose {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.boxFirst {
  opacity: 0;
  visibility: hidden;
  display: none;
}
.boxFirst.act {
  opacity: 1;
  visibility: visible;
  display: block;
}

/*
# =================================================================
# エフェクト要素
# =================================================================*/
/* フェードイン＆バウンド処理 */
.fade {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 2s, visibility 2s, transform 2s;  
}
.fade.act {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* Lottie */
#lottie-container {
  width: 100%;
  height: 100vh;
}
.lottie-container4 {
  position: relative;
  z-index: -1;
}

/*
# =================================================================
# トップページ
# =================================================================*/
/* 共通 */
main {
  position: relative;
}
.inner {
  max-width: 1366px;
  width: 90%;
  margin: 0 auto;
}
/* mvBg */
.mvBg {
  width: 100%;
  height: 100svh;
}
.mvBg .ofh1 {
    position: relative;
    top: 50%;
    transform: translate(0, -50%);
  overflow: hidden;
}
.mvBg .ofh1 img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  top: -90px;
  transform: scale(1.06);
  display: none;
}
/* mv */
.mv {
  width: 100%;
  height: 100svh;
  position: absolute;
  left: 0;
  top: 0;
}
.mv .mainTxt {
  width: 960px;
  height: 360px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
  overflow: hidden;
}
.mv .mainTxt .txtAni {
  width: 960px;
  height: 360px;
  position: absolute;
  top: 0;
  left: 0;
}
.mv .mainTxt .txtAni img {
  width: 960px;
  height: 360px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 0%, black 0%);
  -webkit-mask-size: 0% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-image: linear-gradient(to right, transparent 0%, black 0%, black 0%);
  mask-size: 0% 100%;
  mask-repeat: no-repeat;
  opacity: 0;
}
.mv .mainTxt .txtAni1 img {
  animation: leftToRightFade1 1.8s forwards ease-out;
}
@keyframes leftToRightFade1 {
  0% {
    -webkit-mask-size: 0% 100%;
    mask-size: 0% 100%;
    opacity: 0;
  }
  50% {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    opacity: 1;
  }
  99% {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.mv .mainTxt .txtAni2 img {
  animation: leftToRightFade2 1.8s forwards ease-out 1.8s;
}
@keyframes leftToRightFade2 {
  0% {
    -webkit-mask-size: 0% 100%;
    mask-size: 0% 100%;
    opacity: 0;
  }
  50% {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    opacity: 1;
  }
  99% {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.mv .mainTxt .txtAni3 img {
  animation: leftToRightFade3 1.8s forwards ease-out 3.6s;
}
@keyframes leftToRightFade3 {
  0% {
    -webkit-mask-size: 0% 100%;
    mask-size: 0% 100%;
    opacity: 0;
  }
  50% {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    opacity: 1;
  }
  99% {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.mv .mainTxt .txtAni4 {
  display: none;
}
.mv .mainTxt .txtAni4 img {
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 0%, black 0%);
  -webkit-mask-size: 100% 0%;
  -webkit-mask-position: 0 100%;
  mask-image: linear-gradient(to bottom, transparent 0%, black 0%, black 0%);
  mask-size: 100% 0%;
  mask-position: 0 100%;
  /*animation: leftToRightFade4 1.8s forwards ease-out 5.4s;*/
  animation: leftToRightFade4 1.8s forwards ease-out;
}
@keyframes leftToRightFade4 {
  0% {
    -webkit-mask-size: 100% 0%;
    mask-size: 100% 0%;
    opacity: 0;
  }
  50% {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    opacity: 1;
  }
  99% {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    opacity: 1;
  }
  100% {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    opacity: 1;
  }
}
.mv .sound {
  width: 285px;
  height: 65px;
  padding: 15px;
  background: rgba(0,0,0,.8);
  color: #fff;
  line-height: 1;
  display: flex;
  flex-wrap: wrap;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 10;
}
.mv .sound .img {
  width: 35px;
}
.mv .sound .control {
  width: calc(100% - 35px);
  padding: 0 0 0 15px;
}
.mv .sound .control h2 {
  margin: 0 0 10px 0;
  font-size: 11px;
}
.mv .sound .control .barControl {
  display: flex;
  flex-wrap: wrap;
}
.mv .sound .control .barControl #playPauseBtn {
  width: 8px;
  margin: 0 12px 0 0;
  position: relative;
  top: -1px;
}
.mv .sound .control .barControl #sb {
  width: 35px;
  margin: 0 5px 0 0;
}
.mv .sound .control .barControl #sb #seekBar {
  width: 35px;
  height: 5px;
  background: linear-gradient(to right, white 0%, gray 0%);
  border-radius: 10px;
  position: relative;
  top: -3px;
}
.mv .sound .control .barControl #sb #seekBar[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 11px;
  height: 11px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
}
.mv .sound .control .barControl #timeDisplay {
  width: 60px;
  font-size: 10px;
}
.mv .sound .control .barControl #vc {
  width: 85px;
}
.mv .sound .control .barControl #vc img {
  position: relative;
  top: -2px;
}
.mv .sound .control .barControl #vc #volumeControl {
  width: 40px;
  height: 5px;
  border-radius: 10px;
  background: linear-gradient(to right, white 100%, gray 100%);
  position: relative;
  top: -3px;
}
.mv .sound .control .barControl #vc #volumeControl[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 11px;
  height: 11px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
}
.about {
  padding: 0 0 330px 0;
  background: url(../img/aboutBg1.png) no-repeat center bottom / 100%;
  overflow: hidden;
}
.about .inner {
  position: relative;
}
.about .inner .bgImg {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  top: 480px;
  left: 0;
  right: 0;
  z-index: 1;
}
.about .inner .bgImg2 .lottie-container3 {
  transform: scale(1.2);
}
.about .inner .txt {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 25px auto;
}
.about .inner .txt6 {
  margin: 0 auto 280px auto;
}
.about .inner .txt img {
  mix-blend-mode: multiply;
}
.comm {
  height: 1280px;
  margin: -1px 0 0 0;
  padding: 70px 0 0 0;
  background: url(../img/commBg1.jpg) no-repeat center top / 100%;
  overflow: hidden;
  position: relative;
}
.comm h2 {
  max-width: 495px;
  width: 90%;
  margin: 0 auto;
}
.comm h2 img {
  display: block;
}
.comm .bgImg1 {
  /*max-width: 919px;*/
  width: 919px;
  position: absolute;
  top: 120px;
  left: -185px;
  z-index: 1;
}
.comm .bgImg2 {
  max-width: 643px;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  left: 490px;
  right: 0;
  bottom: 130px;
}
.comm .bgImg3 {
  max-width: 284px;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  right: -284px;
  bottom: 420px;
  z-index: 1;
}
.comm .bgImg3.fade {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: .3s ease-in-out .5s;
}
.comm .bgImg3.fade.act {
  right: -80px;
}
.comm .bgImg4 {
  /*max-width: 919px;*/
  width: 919px;
  margin: 0 auto;
  position: absolute;
  top: 220px;
  left: 490px;
  right: 0;
}
.comm .bgImg4 p {
  font-family: "MFW-GothicMB101Pro-DeBold";
  font-size: 16px;
  line-height: 1.6;
  position: absolute;
}
.comm .bgImg4 p:nth-of-type(1) {
  top: 24px;
  left: 292px;
  transform: rotate(-4deg);
}
.comm .bgImg4 p:nth-of-type(2) {
  color: #fff;
  top: 144px;
  left: 202px;
  transform: rotate(4deg);
}
.comm .bgImg4 p:nth-of-type(3) {
  top: 252px;
  left: 380px;
  transform: rotate(-4deg);
}
.comm .bgImg4 p:nth-of-type(4) {
  color: #fff;
  top: 378px;
  left: 292px;
  transform: rotate(4deg);
}
.comm .bgImg4 p:nth-of-type(5) {
  top: 495px;
  left: 260px;
  transform: rotate(-4deg);
}
.comm .bgImg5 {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 2;
}
.member {
  height: 1520px;
  margin: -1px 0 0 0;
  background: url(../img/memberBg2.png) no-repeat center bottom / 100%,
  url(../img/memberBg1.jpg) no-repeat center top / 100%;
  position: relative;
  top: -1px;
}
.member .inner {
  position: relative;
}
.member .inner .bgImg {
  max-width: 1003px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  top: 120px;
}
.member .inner .box1 {
  max-width: 990px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  z-index: 2;
}
.member .inner .box1 a {
  width: 100%;
  display: block;
  position: relative;
  transition: none;
}
.member .inner .box1 a:nth-of-type(1) {
  max-width: 433px;
  margin: 0 0 120px 0;
  left: 65px;
  transform: translateY(0);
  animation: member-ani1 1.5s ease-in-out infinite;
}
@keyframes member-ani1 {
  50% {transform: translateY(20px);}
  100% {transform: translateY(0);}
}
.member .inner .box1 a:nth-of-type(2) {
  max-width: 432px;
  left: 155px;
  top: 85px;
  transform: translateY(0);
  animation: member-ani2 1.5s ease-in-out infinite;
}
@keyframes member-ani2 {
  50% {transform: translateY(-20px);}
  100% {transform: translateY(0);}
}
.member .inner .box1 a:nth-of-type(3) {
  max-width: 411px;
  left: 15px;
  transform: translateY(0);
  animation: member-ani3 1.5s ease-in-out infinite;
}
@keyframes member-ani3 {
  50% {transform: translateY(-20px);}
  100% {transform: translateY(0);}
}
.member .inner .box1 a:nth-of-type(4) {
  max-width: 458px;
  top: 50px;
  left: 80px;
  transform: translateY(0);
  animation: member-ani4 1.5s ease-in-out infinite;
}
@keyframes member-ani4 {
  50% {transform: translateY(20px);}
  100% {transform: translateY(0);}
}
.member .inner .box1 a:hover {
  opacity: 1;
  cursor: url('../img/memberPointer1.png'), auto;
}
.progress {
  height: 1100px;
  margin: -1px 0 0 0;
  background: url(../img/progressBg2.png) no-repeat center bottom / 100%,
  url(../img/progressBg1.jpg) no-repeat center top / 100%;
  position: relative;
  top: -1px;
}
.progress .bgImg {
  position: absolute;
}
.progress .bgImg1 {
  width: 79px;
  left: 0;
  top: 0;
}
.progress .bgImg2 {
  width: 79px;
  right: 0;
  top: -120px;
}
.progress .ofh1 {
  width: 388px;
  height: 256px;
  position: absolute;
  bottom: 170px;
  left: 0;
  z-index: 1;
  overflow: hidden;
}
.progress .ofh1 .bgImg3 {
  left: -388px;
}
.progress .ofh1 .bgImg3.fade {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: .3s ease-in-out .5s;
}
.progress .ofh1 .bgImg3.fade.act {
  left: -40px;
}
.progress h2 {
  max-width: 619px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  top: -85px;
}
.progress .box1 {
  max-width: 1176px;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  top: 110px;
  left: 0;
  right: 0;
}
.progress .box1 .img {
  width: 100%;
  position: absolute;
}
.progress .box1 .img1 {
  max-width: 329px;
  top: 0;
  left: 0;
  transform: translateY(0);
  animation: progress-ani1 1.5s ease-in-out infinite;
}
@keyframes progress-ani1 {
  50% {transform: translateY(-20px);}
  100% {transform: translateY(0);}
}
.progress .box1 .img2 {
  max-width: 266px;
  top: 20px;
  right: -20px;
  transform: translateY(0);
  animation: progress-ani2 1.5s ease-in-out infinite;
}
@keyframes progress-ani2 {
  50% {transform: translateY(20px);}
  100% {transform: translateY(0);}
}
.progress .box1 .img3 {
  max-width: 933px;
  margin: 0 auto;
  top: 50px;
  right: 0;
  left: 0;
}
.progress .box2 {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  top: 90px;
  left: 265px;
  right: 0;
}
.progress .box2 > .txt {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.progress .box2 > .txt1 {
  margin: 0 0 28px 0;
  left: 60px;
}
.progress .box2 > .txt2 {
  margin: 0 0 15px 0;
}
.progress .box2 > .txt3 {
  left: 50px;
}
.progress .box2 > .txt .img {

}
.progress .box2 > .txt .txt {
  padding: 0 0 0 10px;
  font-family: "MFW-GothicMB101Pro-DeBold";
  font-size: 16px;
  color: #fff;
  transform: rotate(-5deg);
  position: relative;
}
.progress .box2 > .txt1 .txt {
  top: -5px;
}
.progress .box2 > .txt2 .txt {
  top: -6px;
}
.progress .box2 > .txt3 .txt {
  top: -3px;
}
.progress .box3 {
  max-width: 580px;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  top: 460px;
  left: -45px;
  right: 0;
}
.progress .box3 > .txt {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.progress .box3 > .txt1 .txt {
  padding: 0 0 0 10px;
  font-family: "MFW-GothicMB101Pro-DeBold";
  font-size: 16px;
  color: #fff;
  transform: rotate(-5deg);
  position: relative;
  top: -8px;
}
.progress .box3 > .txt2 {
  left: 90px;
  top: -20px;
}
.inventory {
  margin: -1px 0 0 0;
  padding: 0 0 120px 0;
  background: url(../img/inventoryBg2.png) no-repeat center bottom / 100%,
  url(../img/inventoryBg1.jpg) no-repeat center top / 100%;
  position: relative;
  top: -1px;
  overflow: hidden;
}
.inventory h2 {
  max-width: 619px;
  width: 90%;
  margin: 0 auto;
}
.inventory .box1 {
  width: 1676px;
  margin: 0 auto;
  position: relative;
  top: -170px;
  left: 50px;
}
.inventory .box1 .slideImg {
  width: 100%;
  position: absolute;
}
.inventory .box1 .slideImg.fade {
  transform: translate(0,0);
  transition: .3s ease-in-out .5s;
}
.inventory .box1 .slideImg1 {
  max-width: 1247px;
  top: 168px;
  right: -90px;
}
.inventory .box1 .slideImg1.fade.act {
  right: 10px;
}
.inventory .box1 .slideImg2 {
  max-width: 561px;
  top: 794px;
  left: 162px;
}
.inventory .box1 .slideImg2.fade.act {
  left: 262px;
}
.inventory .box1 .slideImg3 {
  max-width: 457px;
  top: 983px;
  right: 358px;
}
.inventory .box1 .slideImg3.fade.act {
  right: 458px;
}
.inventory .box1 h3 {
  color: #000;
  position: absolute;
  transform: rotate(-10deg);
}
.inventory .box1 h3:nth-of-type(1) {
  font-size: 40px;
  top: 580px;
  left: 660px;
}
.inventory .box1 h3:nth-of-type(2) {
  font-size: 30px;
  top: 1360px;
  left: 330px;
}
.inventory .box1 h3:nth-of-type(3) {
  font-size: 30px;
  top: 1330px;
  left: 860px;
}
.inventory .box1 h3 span {
  padding: 0 5px;
  background: rgba(255, 234, 0, .9);
  display: inline-block;
}
.inventory .box1 h3:nth-of-type(1) span {
  margin: 0 0 15px 0;
}
.inventory .box1 h3:nth-of-type(2) span {
  margin: 0 0 10px 0;
}
.inventory .box1 h3:nth-of-type(3) span {
  margin: 0 0 10px 0;
}
.ticket {
  height: 1420px;
  margin: -1px 0 0 0;
  background: url(../img/ticketBg2.png) no-repeat center bottom / 100%,
  url(../img/ticketBg1.jpg) no-repeat center top / 100%;
  overflow: hidden;
  position: relative;
  top: -1px;
}
.ticket h2 {
  max-width: 890px;
  width: 100%;
  margin: 0 auto;
}
.ticket h2 img {
  width: 100%;
  display: block;
}
.ticket .slideImg {
  height: 126px;
  box-shadow: 10px 15px 30px 0 rgba(0, 0, 0, .4);
  position: relative;
}
.ticket .slideImg1 {
  transform: rotate(5deg);
  top: 450px;
  z-index: 4;
}
.ticket .slideImg2 {
  transform: rotate(3deg);
  z-index: 3;
}
.ticket .slideImg3 {
  transform: rotate(-8deg);
  top: 100px;
  z-index: 2;
}
.ticket .slideImg4 {
  transform: rotate(12deg);
  top: -390px;
  left: -40px;
  z-index: 1;
}
.ticket .slideImg img {
  width: 5934px;
  max-width: none;
  display: block;
  position: absolute;
  top: 0;
}
.ticket .slideImg1 img {
  right: 0;
  animation: slideImg1 40s linear infinite;
}
@keyframes slideImg1 {
  100% {right: -2970px;}
}
.ticket .slideImg2 img {
  right: 0;
  animation: slideImg2 40s linear infinite;
}
@keyframes slideImg2 {
  100% {right: -2970px;}
}
.ticket .slideImg3 img {
  left: 0;
  animation: slideImg3 40s linear infinite;
}
@keyframes slideImg3 {
  100% {left: -2970px;}
}
.ticket .slideImg4 img {
  left: 0;
  animation: slideImg4 40s linear infinite;
}
@keyframes slideImg4 {
  100% {left: -2970px;}
}
.yokocho {
  margin: -1px 0 0 0;
  padding: 0 0 375px 0;
  background: url(../img/yokochoBg1.jpg) no-repeat center top / 100%;
  position: relative;
  top: -1px;
}
.yokocho h2 {
  max-width: 803px;
  width: 100%;
  margin: 0 auto -90px auto;
  position: relative;
  top: -110px;
}
.yokocho h2 img {
  display: block;
  mix-blend-mode: multiply;
}
.yokocho .bgImg1 {
  max-width: 352px;
  width: 100%;
  position: absolute;
  top: 110px;
  left: 0;
}
.yokocho .bgImg2 {
  max-width: 353px;
  width: 100%;
  position: absolute;
  top: -30px;
  right: 0;
}
.yokocho .bgImg3 {
  max-width: 721px;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  bottom: 50px;
  left: -80px;
  right: 0;
  z-index: 1;
}
.yokocho .bgImg4 {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 2;
}
.yokocho p {
  margin: 0 0 40px 0;
  font-size: 39px;
  color: #fff;
  text-align: center;
  transform: rotate(-4deg);
}
.yokocho p span {
  padding: 0 10px 3px 20px;
  background: rgba(255,0,0,.8);
  display: inline-block;
}
.yokocho p span:nth-of-type(1) {
  margin: 0 90px 5px 0;
}
.yokocho p span:nth-of-type(2) {
  margin: 0 0 0 200px;
}
.yokocho .box1 {
  max-width: 1085px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.yokocho .box1 .img1 {
  max-width: 947px;
  margin: 0 auto 25px auto;
}
.yokocho .box1 .img2 {
  max-width: 594px;
}
.yokocho .box1 .img3 {
  max-width: 491px;
  position: relative;
  left: -50px;
  top: 10px;
}
.signpost {
  height: 1020px;
  margin: -1px 0 0 0;
  background: url(../img/signpostBg2.png) no-repeat center bottom -1px / 100%,
  url(../img/signpostBg1.jpg) no-repeat center top / 100%;
}
.signpost .inner h2 {
  max-width: 568px;
  width: 100%;
  margin: 0 auto;
}
.signpost .inner .box1 {
  max-width: 1329px;
  width: 100%;
  height: 705px;
  margin: -40px auto 0 auto;
  padding: 290px 0 0 0;
  background: url(../img/signpostImg1.png) no-repeat center center / 100%;
  text-align: center;
  color: #fff;
}
.signpost .inner .box1 h3 {
  margin: 0 0 20px 0;
  font-size: 45px;
  transform: rotate(-5deg);
}
.signpost .inner .box1 p {
  font-size: 20px;
  transform: rotate(-5deg);
  line-height: 1.8;
}
.faq {
  height: 1140px;
  margin: -1px 0 0 0;
  background: url(../img/faqBg2.png) no-repeat center bottom / 100%,
  url(../img/faqBg1.png) no-repeat center top / 100%,
  #ffea00;
  position: relative;
  top: -1px;
}
.faq .inner {
  position: relative;
}
.faq .inner .bgImg {
  width: 100%;
  margin: 0 auto;
}
.faq .inner .bgImg1 {
  max-width: 511px;
  position: relative;
  z-index: 1;
}
.faq .inner .bgImg2 {
  max-width: 527px;
  position: absolute;
  top: 140px;
  left: 0;
  right: 0;
  z-index: 2;
}
.faq .inner .bgImg3 {
  max-width: 495px;
  position: absolute;
  top: 590px;
  left: 65px;
  right: 0;
  z-index: 3;
}
.faq .inner .bgImg4 {
  display: none;
}
.faq .inner h2 {
  max-width: 338px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  top: -83px;
  left: 10px;
  z-index: 4;
}
.faq .inner .popUpImg {
  width: 100%;
  margin: 0 auto;
  position: absolute;
}
.faq .inner .popUpImg1 {
  max-width: 452px;
  top: -35px;
  right: 0;
  left: -620px;
}
.faq .inner .popUpImg2 {
  max-width: 486px;
  top: -50px;
  left: 0;
  right: -710px;
  z-index: 1;
}
.faq .inner .popUpImg3 {
  max-width: 511px;
  top: 360px;
  left: -620px;
  right: 0;
}
.faq .inner .popUpImg4 {
  max-width: 485px;
  top: 340px;
  right: -610px;
  left: 0;
  z-index: 3;
}
.faq .inner .popUpImg img.fade {
  opacity: 1;
  visibility: hidden;
  transform: scale(0);
}
.faq .inner .popUpImg1 img.fade {
  transition: visibility .5s, transform .5s;
}
.faq .inner .popUpImg2 img.fade {
  transition: visibility .5s, transform .5s .25s;
}
.faq .inner .popUpImg3 img.fade {
  transition: visibility .5s, transform .5s .5s;
}
.faq .inner .popUpImg4 img.fade {
  transition: visibility .5s, transform .5s .75s;
}
.faq .inner .popUpImg img.fade.act {
  visibility: visible;
  transform: scale(1);
}
.faith {
  height: 1200px;
  margin: -1px 0 0 0;
  padding: 20px 0 0 0;
  background: url(../img/faithBg2.png) no-repeat center bottom / 100%,
  url(../img/faithBg3.png) no-repeat left -20px top 200px,
  url(../img/faithBg4.png) no-repeat right -20px top 200px,
  url(../img/faithBg1.jpg) no-repeat center top / 100%;
  overflow: hidden;
  position: relative;
  top: -2px;
}
.faith h2 {
  max-width: 800px;
  width: 70%;
  margin: 0 auto 25px auto;
}
.faith h2 img {
  width: 100%;
  display: block;
}
.faith .slideImg {
  height: 47px;
  position: relative;
}
.faith .slideImg1 {
  transform: rotate(-3deg);
  top: -5px;
  z-index: 1;
}
.faith .slideImg2 {
  transform: rotate(-2deg);
  top: 55px;
  z-index: 1;
}
.faith .slideImg3 {
  height: 42px;
  transform: rotate(-2deg);
  top: 130px;
  z-index: 3;
}
.faith .slideImg4 {
  transform: rotate(-2deg);
  top: 220px;
  z-index: 3;
}
.faith .slideImg5 {
  transform: rotate(-3deg);
  top: 270px;
  z-index: 3;
}
.faith .slideImg img {
  max-width: none;
  display: block;
  position: absolute;
  top: 0;
}
.faith .slideImg1 img {
  width: 5810px;
  left: 0;
  animation: faith_slideImg1 40s linear infinite;
}
@keyframes faith_slideImg1 {
  100% {left: -2905px;}
}
.faith .slideImg2 img {
  width: 6096px;
  right: 0;
  animation: faith_slideImg2 40s linear infinite;
}
@keyframes faith_slideImg2 {
  100% {right: -3048px;}
}
.faith .slideImg3 img {
  width: 5632px;
  left: 0;
  animation: faith_slideImg3 40s linear infinite;
}
@keyframes faith_slideImg3 {
  100% {left: -2816px;}
}
.faith .slideImg4 img {
  width: 5984px;
  right: 0;
  animation: faith_slideImg4 40s linear infinite;
}
@keyframes faith_slideImg4 {
  100% {right: -2992px;}
}
.faith .slideImg5 img {
  width: 5928px;
  left: 0;
  animation: faith_slideImg5 40s linear infinite;
}
@keyframes faith_slideImg5 {
  100% {left: -2964px;}
}
.faith .bgImg {
  position: relative;
}
.faith .bgImg1 {
  height: 47px;
  transform: rotate(3deg);
  top: -190px;
}
.faith .bgImg2 {
  top: -110px;
  left: -25px;
  transform: rotate(3deg);
  z-index: 2;
}
.faith .bgImg3 {
  top: -25px;
  left: -80px;
  transform: rotate(3deg);
}
.faith .bgImg4 {
  top: 50px;
  transform: rotate(3deg);
}
.faith .bgImg img {
  width: 6000px;
  max-width: none;
  display: block;
}
.profile {
  margin: -1px 0 0 0;
  padding: 0 0 90px 0;
  background: url(../img/profileBg2.png) no-repeat center bottom / 100%,
  url(../img/profileBg1.jpg) no-repeat center top / 100%;
  border-bottom: 20px solid #000;
  position: relative;
  top: -2px;
}
.profile .inner h2 {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto -40px auto;
  mix-blend-mode: multiply;
  position: relative;
  top: -80px;
}
.profile .inner h2 img {
  display: block;
}
.profile .inner > p {
  margin: 0 0 30px 0;
  font-family: "MFW-GothicMB101Pro-Heavy";
  font-size: 20px;
  text-align: center;
  line-height: 2.1;
}
.profile .inner .box1 {
  max-width: 825px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 200px 35px 100px;
  background: url(../img/profileTtl2.png) no-repeat left 27px top,
  url(../img/profileImg1.png) no-repeat right 50px top 20px,
  #000;
  border-radius: 10px;
  color: #fff;
}
.profile .inner .box1 h3 {
  margin: 0 0 20px 0;
  font-family: "MFW-GothicMB101Pro-Heavy";
  font-size: 22px;
}
.profile .inner .box1 h3 span {
  padding: 0 0 0 25px;
  font-size: 16px;
  position: relative;
  top: -2px;
}
.profile .inner .box1 p {
  font-family: "MFW-GothicMB101Pro-DeBold";
  font-size: 16px;
  line-height: 1.7;
}
.bnr {
  margin: -1px 0 0 0;
  padding: 90px 0 55px 0;
  background: url(../img/profileBg1.jpg) no-repeat center top / 100%;
  position: relative;
}
.bnr .inner > a {
  max-width: 700px;
  width: 100%;
  margin: 0 auto 75px auto;
  display: block;
}
.bnr .inner > a img {
  display: block;
}
.bnr .inner .box1 img {
  max-width: 200px;
  width: 100%;
  margin: 0 auto 30px auto;
  display: block;
  mix-blend-mode: multiply;
}
.bnr .inner .box1 .copy {
  font-family: "MFW-GothicMB101Pro-DeBold";
  font-size: 14px;
  text-align: center;
  line-height: 1;
  letter-spacing: .04em;
}
.bnr .btnPagetop {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 15px;
  bottom: 60px;
}

/*
# =================================================================
# レスポンシブ要素
# =================================================================*/
/* 4K:2560px */
@media screen and (min-width: 1921px) {
  .about {
    padding: 0 0 420px 0;
  }
  .comm {
    height: 1350px;
  }
  .comm .bgImg2 {
    bottom: 210px;
  }
  .comm .bgImg3 {
    bottom: 560px;
  }
  .comm .bgImg5 {
    max-width: none;
  }
  .comm .bgImg5 img {
    width: 100%;
  }
  .member {
    height: 1650px;
  }
  .progress .ofh1 {
    bottom: 250px;
  }
  .inventory {
    padding: 0 0 220px 0;
  }
  .ticket {
    height: 1630px;
  }
  .yokocho {
    padding: 0 0 415px 0;
  }
  .yokocho .bgImg3 {
    bottom: 90px;
  }
  .yokocho .bgImg4 {
    max-width: none;
  }
  .yokocho .bgImg4 img {
    width: 100%;
  }
  .yokocho h2 {
    margin: 0 auto -140px auto;
    top: -160px;
  }
  .signpost {
    height: 1110px;
  }
  .faq {
    height: 1260px;
  }
  .faith {
    height: 1310px;
  }
}
@media screen and (min-width: 2251px) {
  .yokocho {
    padding: 0 0 450px 0;
  }
  .yokocho .bgImg3 {
    bottom: 125px;
  }
  .yokocho h2 {
    margin: 0 auto -190px auto;
    top: -210px;
  }
}

/* PC:1920px */

/* laptop NotePC L */
@media screen and (max-width: 1700px) {
  .inventory .box1 {
    width: 1676px;
    margin: 0 auto;
    left: calc((100% - 1676px + 100px) / 2);
  }
}
@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
  .boxModal .bg .inner .box1 .img {
    width: calc(100% - 480px);
  }
  .boxModal .bg .inner .box1 .txt {
    width: 480px;
  }
  .about {
    padding: 0 0 260px 0;
    background: url(../img/aboutBg1.png) no-repeat center bottom / 1366px;
  }
  .comm {
    height: 1215px;
    background: url(../img/commBg1.jpg) no-repeat center top / 1366px;
  }
  .comm .bgImg3 {
    bottom: 300px;
  }
  .comm .bgImg5 {
    height: 286px;
  }
  .comm .bgImg5 img {
    max-width: none;
    width: 1366px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .member {
    height: 1480px;
    background: url(../img/memberBg2.png) no-repeat center bottom / 1366px,
    url(../img/memberBg1.jpg) no-repeat center top / 1366px;
  }
  .progress {
    height: 1030px;
    background: url(../img/progressBg2.png) no-repeat center bottom / 1366px,
    url(../img/progressBg1.jpg) no-repeat center top / 1366px;
  }
  .progress .box1 .img2 {
    right: 0;
  }
  .inventory {
    padding: 0 0 70px 0;
    background: url(../img/inventoryBg2.png) no-repeat center bottom / 1366px,
    url(../img/inventoryBg1.jpg) no-repeat center top / 1366px;
  }
  .ticket {
    height: 1230px;
    background: url(../img/ticketBg2.png) no-repeat center bottom / 1366px,
    url(../img/ticketBg1.jpg) no-repeat center top / 1366px;
  }
  .yokocho {
    background: url(../img/yokochoBg1.jpg) no-repeat center top / 1366px;
  }
  .yokocho .bgImg4 {
    height: 284px;
  }
  .yokocho .bgImg4 img {
    max-width: none;
    width: 1366px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .signpost {
    height: 900px;
    background: url(../img/signpostBg2.png) no-repeat center bottom -1px / 1366px,
    url(../img/signpostBg1.jpg) no-repeat center top / 1366px;
  }
  .signpost .inner .box1 {
    margin: -70px auto 0 auto;
  }
  .signpost .inner .box1 h3 {
    font-size: 3.3vw;
  }
  .signpost .inner .box1 p {
    font-size: 1.465vw;
  }
  .faq {
    height: 1050px;
    background: url(../img/faqBg2.png) no-repeat center bottom / 1366px,
    url(../img/faqBg1.png) no-repeat center top / 1366px,
    #ffea00;
  }
  .faq .inner .bgImg1 {
    max-width: 37.5vw
  }
  .faq .inner .bgImg2 {
    max-width: 38.6vw;
    top: 10.25vw;
  }
  .faq .inner .bgImg3 {
    max-width: 36.3vw;
    top: 43.2vw;
  }
  .faq .inner h2 {
    top: -8vw;
  }
  .faq .inner .popUpImg1 {
    max-width: 33.1vw;
    left: -45.4vw;
  }
  .faq .inner .popUpImg2 {
    max-width: 35.6vw;
    right: -52vw;
  }
  .faq .inner .popUpImg3 {
    max-width: 37.5vw;
    left: -45.4vw;
    top: 26.35vw;
  }
  .faq .inner .popUpImg4 {
    max-width: 35.6vw;
    right: -44.7vw;
    top: 24.9vw;
  }
  .faith {
    height: 1080px;
    background: url(../img/faithBg2.png) no-repeat center bottom / 1366px,
    url(../img/faithBg3.png) no-repeat left -20px top 165px,
    url(../img/faithBg4.png) no-repeat right -20px top 165px,
    url(../img/faithBg1.jpg) no-repeat center top / 1366px;
  }
  .profile {
    background: url(../img/profileBg2.png) no-repeat center bottom / 1366px,
    url(../img/profileBg1.jpg) no-repeat center top / 1366px;
  }
  .bnr {
    background: url(../img/profileBg1.jpg) no-repeat center top / 1366px;
  }
}
@media screen and (max-width: 1160px) {
  /* comm */
  .comm .bgImg1 {
    left: -385px;
  }
  .comm .bgImg2 {
    left: 320px;
  }
  .comm .bgImg4 {
    left: 190px;
  }
  /* member */
  .member {
    height: 142vw;
  }
  .member .inner .box1 a:nth-of-type(1) {
    width: 45%;
    left: 5vw;
  }
  .member .inner .box1 a:nth-of-type(2) {
    width: 45%;
    left: 13vw;
  }
  .member .inner .box1 a:nth-of-type(3) {
    width: 45%;
    left: 0;
  }
  .member .inner .box1 a:nth-of-type(4) {
    width: 45%;
    left: 5vw;
  }
}
@media screen and (max-width: 1100px) {
  /* yokocho */
  .yokocho .bgImg1 {
    display: none;
  }
  .yokocho .bgImg2 {
    display: none;
  }
  .yokocho .box1 .img1 {
    width: 90%;
  }
  .yokocho .box1 .img2 {
    width: 55%;
  }
  .yokocho .box1 .img3 {
    width: 45%;
    position: static;
  }
  .yokocho p {
    font-size: 4vw;
  }
  .yokocho p span:nth-of-type(1) {
    margin: 0 5vw 5px 0;
  }
  .yokocho p span:nth-of-type(2) {

  }
  /* faq */
  .faq {
    height: 930px;
  }
  .faq .inner h2 {
    max-width: 270px;
    left: 0;
  }
}

/* laptop NotePC */
@media screen and (max-width: 1024px) {
  .boxModal .bg {
    height: 90svh;
    padding: 30px 40px 65px 40px;
    overflow: hidden;
  }
  .boxModal .bg .inner .box1 {
    height: auto;
    display: block;
  }
  .boxModal .bg .inner .box1 .img {
    width: 30%;
    margin: 0 auto;
    text-align: center;
    display: block;
    position: relative;
    z-index: 1;
  }
  .boxModal1 .bg .inner .box1 .img {
    left: 3vw;
  }
  .boxModal .bg .inner .box1 .txt {
    width: 100%;
    height: 600px;
    position: relative;
    top: -80px;
  }
  /* mv */
  .mv .mainTxt {
    width: 80%;
    height: 29vw;
    margin: 0 auto;
    top: 20vw;
    left: 0;
    right: 0;
    transform: none;
  }
  .mv .mainTxt .txtAni {
    width: 100%;
    height: auto;
    margin: 0 auto;
    right: 0;
  }
  .mv .mainTxt .txtAni1 img {
    width: 100%;
    height: auto;
  }
  .mv .mainTxt .txtAni2 img {
    width: 100%;
    height: auto;
  }
  .mv .mainTxt .txtAni3 img {
    width: 100%;
    height: auto;
  }
  .mv .mainTxt .txtAni4 img {
    width: 100%;
    height: auto;
  }
  /* progress */
  .progress {
    height: 1270px;
  }
  .progress .box1 {
    top: 260px;
  }
  .progress .box1 .img1 {
    max-width: 29vw;
  }
  .progress .box1 .img2 {
    max-width: 23vw;
  }
  .progress .box1 .img3 {
    max-width: 75vw;
    top: 70px;
  }
  .progress .box3 {
    top: 610px;
  }
  /* inventory */
  .inventory {
    padding: 0 0 130px 0;
  }
  .inventory .box1 {
    width: 144%;
    top: -90px;
    left: -16%;
  }
  .inventory .box1 .slideImg {
    max-width: none;
  }
  .inventory .box1 .slideImg1 {
    width: 102.5vw;
    top: 14vw;
    right: -4vw;
  }
  .inventory .box1 .slideImg1.fade.act {
    right: 1vw;
  }
  .inventory .box1 .slideImg2 {
    width: 46.4vw;
    top: 65.6vw;
    left: 16.6vw;
  }
  .inventory .box1 .slideImg2.fade.act {
    left: 21.6vw;
  }
  .inventory .box1 .slideImg3 {
    width: 37.8vw;
    top: 81.1vw;
    right: 32.75vw;
  }
  .inventory .box1 .slideImg3.fade.act {
    right: 37.75vw;
  }
  .inventory .box1 h3:nth-of-type(1) {
    font-size: 3.6vw;
    top: 48vw;
    left: 54vw;
  }
  .inventory .box1 h3:nth-of-type(2) {
    font-size: 2.9vw;
    top: 111vw;
    left: 23vw;
  }
  .inventory .box1 h3:nth-of-type(3) {
    font-size: 2.9vw;
    top: 108vw;
    left: 66.5vw;
  }
}
@media screen and (max-width: 960px) {
  /* about */
  .about .inner .bgImg {
    top: 430px;
  }
  /* comm */
  .comm {
    height: 1335px;
  }
  .comm .bgImg1 {
    left: -525px;
  }
  .comm .bgImg4 {
    left: 60px;
  }
}
@media screen and (max-width: 880px) {
  .progress .box2 {
    left: 150px;
  }
  .progress .bgImg1 {
    display: none;
  }
  .progress .bgImg2 {
    display: none;
  }
}

/* tablet */
@media screen and (max-width: 768px) {
  /* 共通 */
  html {
    height: auto;
    overflow: auto;
  }
  body {
    height: auto;
    overflow: auto;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .boxModal .bg {
    padding: 30px 0 0 0;
    overflow: hidden;
  }
  .boxModal .bg .inner {
    width: 100%;
  }
  .boxModal .bg .inner .box1 .txt {
    width: 100%;
    background: url(../img/memberBg4.png) no-repeat center top / 90%;
  }
  .boxFirst {
    opacity: 1;
    visibility: visible;
    display: block;
  }
  /* mv */
  .mvBg {
    height: 100svh;
  }
  .mvBg .ofh1 img {
    display: block;
  }
  .lottie-container4 {
    display: none;
  }
  .mv .mainTxt {
    top: 50%;
    transform: translate(0, -60%);
  }
  .mv .mainTxt .txtAni4 {
    display: block;
  }
  .mv .sound {
    margin: 0 auto;
    left: 0;
    bottom: 15px;
  }
  .mv .sound .control {
    display: flex;
    flex-wrap: wrap;
  }
  .mv .sound .control h2 {
    width: calc(100% - 18px);
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
  }
  .mv .sound .control .barControl {
    width: 18px;
  }
  .mv .sound .control .barControl #playPauseBtn {
    width: 18px;
    margin: 0 auto;
  }
  .mv .sound .control .barControl #playPauseBtn img {
    width: 100%;
    height: auto;
  }
  .mv .sound .control .barControl #sb {
    display: none;
  }
  .mv .sound .control .barControl #timeDisplay {
    display: none;
  }
  .mv .sound .control .barControl #vc {
    display: none;
  }
  /* about */
  .about {
    padding: 0 0 160px 0;
    background: url(../img/aboutBg1_sp.png) no-repeat center bottom / 100%;
  }
  .about .inner .bgImg {
    top: 74vw;
  }
  .about .inner .txt {
    margin: 0 auto 1.4vw auto;
  }
  .about .inner .txt6 {
    margin: 0 auto 34vw auto;
  }
  .comm {
    height: 1110px;
    background: url(../img/commBg1_sp.jpg) no-repeat center top / 100%;
  }
  .comm h2 {
    width: 70%;
    position: relative;
    z-index: 1;
  }
  .comm .bgImg1 {
    display: none;
  }
  .comm .bgImg2 {
    width: 110%;
    left: -8vw;
    top: 24vw;
  }
  .comm .bgImg3 {
    display: none;
  }
  .comm .bgImg4 {
    top: 42vw;
    left: calc((121% - 919px) / 2);
  }
  .comm .bgImg5 {
    height: auto;
  }
  .comm .bgImg5 img {
    width: 100%;
    position: relative;
    left: auto;
    top: auto;
    bottom: 0;
    transform: none;
  }
  .member {
    height: 198vw;
    background: url(../img/memberBg2_sp.png) no-repeat center bottom -1px / 100%,
    url(../img/memberBg1_sp.jpg) no-repeat center top / 100%;
    overflow: hidden;
  }
  .member .inner {
    width: 100%;
  }
  .member .inner .bgImg {
    width: 88%;
    top: 0;
    left: 8vw;
  }
  .member .inner .box1 a:nth-of-type(1) {
    width: 50%;
    margin: 0;
    top: 27vw;
    left: -3vw;
  }
  .member .inner .box1 a:nth-of-type(2) {
    width: 50%;
    top: 46vw;
    left: 8vw;
  }
  .member .inner .box1 a:nth-of-type(3) {
    width: 47%;
    top: 51vw;
    left: -2vw;
  }
  .member .inner .box1 a:nth-of-type(4) {
    width: 53%;
    top: 54vw;
    left: 5vw;
  }
  /* progress */
  .progress {
    height: 180vw;
    background: url(../img/progressBg1_sp.jpg) no-repeat center top / 100%;
  }
  .progress h2 {
    top: -1vw;
  }
  .progress .ofh1 {
    width: 260px;
    height: 172px;
    bottom: -30px;
  }
  .progress .ofh1 .bgImg3 {
    width: 260px;
    height: 172px;
    left: -260px;
  }
  .progress .ofh1 .bgImg3.fade.act {
    left: -80px;
  }
  .progress .bgImg4 {
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 1;
  }
  .progress .box1 {
    top: 64vw;
  }
  .progress .box1 .img3 {
    top: 7vw;
  }
  .progress .box2 {
    width: calc(100% - 20px);
    top: 26vw;
    left: 20px;
    right: auto;
  }
  .progress .box2 > .txt .txt {
    line-height: 1.4;
  }
  .progress .box2 > .txt1 {
    width: calc(100% - 60px);
  }
  .progress .box3 > .txt1 {
    width: calc(100% - 5vw);
  }
  .progress .box3 > .txt1 .txt {
    line-height: 1.4;
  }
  .progress .box3 {
    top: 115vw;
    left: 0;
  }
  .progress .box3 > .txt2 {
    width: 95%;
    left: auto;
    right: -5vw;
  }
  .progress .box2 > .txt3 {
    width: calc(100% - 50px);
  }
  /* inventory */
  .inventory {
    background: url(../img/inventoryBg2_sp.png) no-repeat center bottom -1px / 100%,
    url(../img/inventoryBg1_sp.jpg) no-repeat center top / 110%;
    z-index: 1;
  }
  .inventory .box1 {
    width: 100%;
    top: 0;
    left: 0;
  }
  .inventory .box1 .slideImg1 {
    width: 143.4vw;
    top: 12.6vw;
    right: -56.8vw;
  }
  .inventory .box1 .slideImg1.fade.act {
    right: -51.8vw;
  }
  .inventory .box1 .slideImg1 img {
    width: 100%;
  }
  .inventory .box1 .slideImg2 {
    width: 78.8vw;
    top: 122vw;
    left: 3.2vw;
  }
  .inventory .box1 .slideImg2.fade.act {
    left: 8.2vw;
  }
  .inventory .box1 .slideImg2 img {
    width: 100%;
  }
  .inventory .box1 .slideImg3 {
    width: 71vw;
    top: 227vw;
    right: -2.6vw;
  }
  .inventory .box1 .slideImg3.fade.act {
    right: 3.6vw;
  }
  .inventory .box1 .slideImg3 img {
    width: 100%;
  }
  .inventory .box1 h3:nth-of-type(1) {
    font-size: 5.6vw;
    top: 93vw;
    left: 5vw;
  }
  .inventory .box1 h3:nth-of-type(2) {
    font-size: 5.6vw;
    top: 189vw;
    left: 5vw;
  }
  .inventory .box1 h3:nth-of-type(3) {
    font-size: 5.6vw;
    top: 284vw;
    left: 5vw;
  }
  /* ticket */
  .ticket {
    height: 1040px;
    background: url(../img/ticketBg2_sp.png) no-repeat center bottom -1px / 100%,
    url(../img/ticketBg1_sp.jpg) no-repeat center top / 100%;
  }
  .ticket .slideImg1 {
    transform: rotate(5deg) scale(.8);
    top: 420px;
    right: -100px;
  }
  .ticket .slideImg2 {
    transform: rotate(3deg) scale(.8);
    top: 30px;
    right: -100px;
  }
  .ticket .slideImg3 {
    transform: rotate(-8deg) scale(.8);
    top: 75px;
    left: -100px;
  }
  .ticket .slideImg4 {
    transform: rotate(12deg) scale(.8);
    top: -340px;
    left: -100px;
  }
  /* yokocho */
  .yokocho {
    padding: 0 0 25vw 0;
    background: url(../img/yokochoBg1_sp.jpg) no-repeat center top / 100%;
  }
  .yokocho h2 {
    width: 95%;
    margin: 0 auto -20px auto;
    top: -30px;
  }
  .yokocho .bgImg3 {
    display: none;
  }
  .yokocho .bgImg4 {
    height: 0;
    padding-top:20.8333333%;
  }
  .yokocho .bgImg4 img {
    width: 100%;
  }
  .yokocho .box1 {
    width: 94.5%;
    display: block;
    position: relative;
    left: -1.2%;
  }
  .yokocho .box1 .img1 {
    width: 100%;
    margin: 0 auto 35px auto;
  }
  .yokocho .box1 .img2 {
    max-width: none;
    width: 100%;
    margin: 0 0 25px 0;
  }
  .yokocho .box1 .img3 {
    max-width: none;
    width: 100%;
  }
  .yokocho p {
    margin: 0 0 15px 0;
    font-size: 5vw;
  }
  .yokocho p span:nth-of-type(1) {
    margin: 0 0 5px 0;
    position: relative;
    left: -4.6vw;
  }
  .yokocho p span:nth-of-type(2) {
    margin: 0;
    position: relative;
    right: -12.4vw;
  }
  /* signpost */
  .signpost {
    height: 118vw;
    background: url(../img/signpostBg2.png) no-repeat center bottom -1px / 100%,
    url(../img/signpostBg1.jpg) no-repeat center top / 100%;
    overflow: hidden;
  }
  .signpost .inner {
    width: 100%;
  }
  .signpost .inner h2 {
    width: 90%;
  }
  .signpost .inner .box1 {
    max-width: none;
    width: 160%;
    height: 80vw;
    margin: 0 auto;
    padding: 26vw 0 0 0;
    position: relative;
    left: -30%;
    top: -2vw;
  }
  .signpost .inner .box1 h3 {
    margin: 0 0 10px 0;
    font-size: 5vw;
  }
  .signpost .inner .box1 p {
    font-size: 4vw;
    line-height: 1.25;
  }
  /* faq */
  .faq {
    height: 305vw;
    background: url(../img/faqBg2_sp.png) no-repeat center bottom / 100%,
    url(../img/faqBg1.png) no-repeat center top -10px  / 1366px,
    #ffea00;
  }
  .faq .inner .bgImg1,
  .faq .inner .bgImg2,
  .faq .inner .bgImg3 {
    display: none;
  }
  .faq .inner .bgImg4 {
    max-width: 750px;
    width: 80%;
    margin: 0 auto;
    display: block;
  }
  .faq .inner h2 {
    top: -78vw;
  }
  .faq .inner .popUpImg1 {
    max-width: 80%;
    top: 60vw;
    left: 0;
  }
  .faq .inner .popUpImg2 {
    max-width: 80%;
    top: 113vw;
    right: 0;
  }
  .faq .inner .popUpImg3 {
    max-width: 80%;
    top: 218vw;
    left: 0;
    z-index: 4;
  }
  .faq .inner .popUpImg4 {
    max-width: 80%;
    top: 167vw;
    right: 0;
  }
  .faq .inner .popUpImg3 img.fade {
    transition: visibility .5s, transform .5s .75s;
  }
  .faq .inner .popUpImg4 img.fade {
    transition: visibility .5s, transform .5s .5s;
  }
  /* faith */
  .faith {
    height: 1040px;
    background: url(../img/faithBg2.png) no-repeat center bottom / 100%,
    url(../img/faithBg3_sp.png) no-repeat center top 140px / 100%,
    url(../img/faithBg1_sp.jpg) no-repeat center top / 100%;
  }
  .faith h2 {
    margin: 0 auto 30px auto;
  }
  /* profile */
  .profile .inner h2 {
    width: 96%;
    margin: 0 auto 10px auto;
    top: -10px;
  }
  .profile .inner .box1 {
    padding: 200px 20px 35px 20px;
    background: url(../img/profileTtl2.png) no-repeat left 27px top,
    url(../img/profileImg1.png) no-repeat center top 20px,
    #000;
  }
  .profile .inner .box1 h3 {
    text-align: center;
  }
  .profile .inner .box1 h3 span {
    padding: 15px 0 0 0;;
    display: block;
    position: static;
  }
  .profile .inner .box1 p {
    text-align: center;
  }
  /* bar */
  .bnr {
    padding: 90px 0 90px 0;
  }
}
@media screen and (max-width: 640px) {
  .boxModal .bg .inner .box1 .img {
    width: 160px;
  }
  .boxModal .bg .inner .box1 .txt {
    background: url(../img/memberBg4.png) no-repeat center top / 110%;
  }
  /* comm */
  .comm {
    height: 180vw;
  }
  /* inventory */
  .inventory .box1 .slideImg3 {
    top: 221vw;
  }
  /* progress */
  .progress  {
    height: 196vw;
  }
  .progress .box1 {
    top: 73vw;
  }
  .progress .box2 {
    top: 27vw;
  }
  .progress .box3 {
    top: 119vw;
  }
  .progress .box3 > .txt1 {
    left: 5vw;
    top: -10px;
  }
}
@media screen and (max-width: 540px) {
  /* comm */
  .comm {
    height: 188vw;
  }
}

/* mobile L */
@media screen and (max-width: 480px) {
  /* 共通 */
  body {
    border: 7px solid #000;
  }
  .inner {
    width: 93%;
  }
  .boxModal .bg {
    width: 100%;
    height: 100vh;
    padding: 20vw 0 0 0;
    border: none;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }
  .boxModal .bg .inner .box1 .txt {
    height: 670px;
    padding: 105px 0 0 0;
    background: url(../img/memberBg4.png) no-repeat center top / 130%;
  }
  /* about */
  .about {
    padding: 0 0 100px 0;
  }
  .about .inner .bgImg {
    top: 77vw;
  }
  .about .inner .bgImg2 .lottie-container3 {
    transform: scale(1.4);
  }
  /* comm */
  .comm {
    height: 183vw;
    padding: 40px 0 0 0;
  }
  .comm .bgImg2 {
    top: 15vw;
  }
  .comm .bgImg4 {
    width: 150%;
    top: 34vw;
    left: -18%;
  }
  .comm .bgImg4 p {
    font-size: 3.35vw;
    line-height: 1.3;
  }
  .comm .bgImg4 p:nth-of-type(1) {
    top: 4vw;
    left: 43vw;
  }
  .comm .bgImg4 p:nth-of-type(2) {
    top: 28.6vw;
    left: 37vw;
  }
  .comm .bgImg4 p:nth-of-type(3) {
    top: 53.6vw;
    left: 51vw;
  }
  .comm .bgImg4 p:nth-of-type(4) {
    top: 78.4vw;
    left: 43vw;
  }
  .comm .bgImg4 p:nth-of-type(5) {
    top: 100vw;
    left: 40vw;
  }
  /* member */
  .member .inner .box1 a:nth-of-type(3) {
    top: 55vw;
  }
  /* progress */
  .progress .box1 .img1 {
    left: 10px;
  }
  .progress .box1 .img2 {
    right: 10px;
  }
  .progress .box2 > .txt .img {
    width: 24vw;
  }
  .progress .box3 > .txt .img {
    width: 32vw;
  }
  .progress .box2 > .txt .txt {
    font-size: 3.3vw;
  }
  .progress .box3 > .txt1 .txt {
    font-size: 3.3vw;
  }
  /* inventory */
  .inventory {
    padding: 0 0 100px 0;
  }
  .inventory .box1 {
    top: 10px;
  }
  .inventory .box1 .slideImg3 {
    top: 233vw;
  }
  .inventory .box1 h3:nth-of-type(1) {
    font-size: 6.2vw;
    top: 96vw;
  }
  .inventory .box1 h3:nth-of-type(2) {
    font-size: 6.2vw;
    top: 194vw;
  }
  .inventory .box1 h3:nth-of-type(3) {
    font-size: 6.2vw;
    top: 290vw;
  }
  .inventory .box1 h3:nth-of-type(1) span {
    margin: 0 0 10px 0;
  }
  .inventory .box1 h3:nth-of-type(2) span {
    margin: 0 0 10px 0;
  }
  .inventory .box1 h3:nth-of-type(3) span {
    margin: 0 0 10px 0;
  }
  /* ticket */
  .ticket {
    height: 790px;
  }
  .ticket .slideImg1 {
    transform: rotate(5deg) scale(.68);
    top: 360px;
  }
  .ticket .slideImg2 {
    transform: rotate(3deg) scale(.68);
    top: -5px;
  }
  .ticket .slideImg3 {
    transform: rotate(-8deg) scale(.68);
    top: 15px;
  }
  .ticket .slideImg4 {
    transform: rotate(12deg) scale(.68);
    top: -360px;
  }
  /* yokocho */
  .yokocho h2 {
    margin: 0 auto -10px auto;
    top: -20px;
  }
  /* signpost */
  .signpost .inner h2 {
    width: 86%;
  }
  .signpost .inner .box1 {
    padding: 23vw 0 0 0;
  }
  .signpost .inner .box1 h3 {
    font-size: 7.4vw;
  }
  .signpost .inner .box1 p {
    font-size: 4.8vw;
  }
  /* faq */
  .faq {
    height: 358vw;
    overflow: hidden;
  }
  .faq .inner h2 {
    max-width: 56%;
    top: -88vw;
  }
  .faq .inner .popUpImg1 {
    max-width: 100%;
    top: 72vw;
    left: -8vw;
  }
  .faq .inner .popUpImg2 {
    max-width: 100%;
    top: 132vw;
    right: -35vw;
  }
  .faq .inner .popUpImg3 {
    max-width: 100%;
    top: 243vw;
    left: auto;
    right: -16vw;
  }
  .faq .inner .popUpImg4 {
    max-width: 100%;
    left: auto;
    right: 18vw;
    top: 191vw;
  }
  /* faith */
  .faith {
    height: 900px;
    background: url(../img/faithBg2.png) no-repeat center bottom / 100%,
    url(../img/faithBg3_sp.png) no-repeat center top 110px / 100%,
    url(../img/faithBg1_sp.jpg) no-repeat center top / 100%;
  }
  .faith .slideImg2 {
    top: 50px;
  }
  .faith .slideImg3 {
    top: 120px;
  }
  .faith .slideImg4 {
    top: 190px;
  }
  .faith .slideImg5 {
    top: 250px;
  }
  .faith .bgImg2 {
    top: -120px;
  }
  .faith .bgImg3 {
    top: -40px;
  }
  .faith .bgImg4 {
    top: 35px;
  }
  /* profile */
  .profile {
    padding: 0 0 50px 0;
    border-bottom: 7px solid #000;
  }
  .profile .inner > p {
    font-size: 3.55vw;
  }
  .profile .inner .box1 {
    padding: 212px 20px 35px 20px;
    background: url(../img/profileTtl2.png) no-repeat left 20px top,
    url(../img/profileImg1.png) no-repeat center top 32px,
    #000;
  }
  .profile .inner .box1 h3 {
    font-size: 5.5vw;
  }
  .profile .inner .box1 h3 span {
    padding: 13px 0 0 0;
    font-size: 4.2vw;
  }
  .profile .inner .box1 p {
    font-size: 3.8vw;
    line-height: 1.8;
  }
  /* bnr */
  .bnr {
    padding: 50px 0 150px 0;
  }
  .bnr .inner > a {
    margin: 0 auto 50px auto;
  }
  .bnr .inner .box1 .copy {
    font-size: 3.5vw;
  }
  .bnr .btnPagetop {
    bottom: 90px;
  }
}
@media screen and (max-width: 450px) {
  .boxModal .bg .inner .box1 .txt h2 {
    font-size: 5.5vw;
  }
  .boxModal .bg .inner .box1 .txt h2 span {
    font-size: 4vw;
  }
  .boxModal .bg .inner .box1 .txt p {
    font-size: 3.56vw;
  }
  /* about */
  .about .inner .bgImg {
    top: 75.5vw;
  }
  /* progress */
  .progress {
    height: 198vw;
  }
  /* ticket */
  .ticket {
    height: 770px;
  }
  /* faq */
  .faq {
    background: url(../img/faqBg2_sp.png) no-repeat center bottom / 120%,
    url(../img/faqBg1.png) no-repeat center top / 1366px,
    #ffea00;
  }
  /* faith */
  .faith {
    height: 850px;
    background: url(../img/faithBg2.png) no-repeat center bottom / 100%,
    url(../img/faithBg3_sp.png) no-repeat center top 110px / 100%,
    url(../img/faithBg1_sp.jpg) no-repeat center top / 120%;
  }
}

/* mobile M */
@media screen and (max-width: 375px) {
  /* about */
  .about {
    padding: 0 0 80px 0;
  }
  /* comm */
  .comm h2 {
    top: -3vw;
  }
  /* member */
  .member {
    height: 196vw;
  }
  /* progress */
  .progress {
    height: 206vw;
  }
  .progress .box2 {
    top: 26vw;
  }
  .progress .box3 > .txt2 {
    top: -5px;
  }
  /* inventory */
  .inventory {
    padding: 0 0 90px 0;
  }
  /* ticket */
  .ticket {
    height: 720px;
  }
  /* faith */
  .faith {
    height: 790px;
  }
}

/* mobile S */
@media screen and (max-width: 320px) {
  /* faith */
  .faith {
    height: 760px;
    background: url(../img/faithBg2.png) no-repeat center bottom / 100%,
    url(../img/faithBg3_sp.png) no-repeat center top 100px / 110%,
    url(../img/faithBg1_sp.jpg) no-repeat center top / 120%;
  }
}