@charset "UTF-8";
/*--- 共通 ---*/
body {
  background-color: #000;
  background-image: url(../images/main_bg_pc.svg);
  background-repeat: no-repeat;
  background-size: 2400px auto;
  background-position: center top;
}
@media screen and (max-width: 1480px) {
  body {
    background-size: 162.2vw auto;
  }
}
@media screen and (max-width: 768px) {
  body {
    background-image: url(../images/main_bg_sp.svg);
    background-size: 213.3vw auto;
    background-position: center top;
  }
}
body main {
  padding-top: 80px;
}
@media screen and (max-width: 1480px) {
  body main {
    padding-top: 5.4vw;
  }
}
@media screen and (max-width: 768px) {
  body main {
    padding-top: 11.3vw;
  }
}
body .anker {
  display: block;
  width: 100%;
  height: 0;
  padding-top: 80px;
  margin-top: -80px;
}
@media screen and (max-width: 1480px) {
  body .anker {
    padding-top: 5.4vw;
    margin-top: -5.4vw;
  }
}
@media screen and (max-width: 768px) {
  body .anker {
    padding-top: 11.3vw;
    margin-top: -11.3vw;
  }
}
body .wrap01 {
  max-width: 1000px;
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1480px) {
  body .wrap01 {
    max-width: none;
    width: 67.6vw;
  }
}
@media screen and (max-width: 768px) {
  body .wrap01 {
    width: 88%;
  }
}
body .page_line {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 1480px) {
  body .page_line {
    margin-bottom: 4.1vw;
  }
}
@media screen and (max-width: 768px) {
  body .page_line {
    margin-bottom: 4vw;
  }
}

/*--- ヘッダー ---*/
header {
  width: 100%;
  background-color: #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 98;
}
header .head_content {
  max-width: 1400px;
  width: 96%;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1480px) {
  header .head_content {
    max-width: none;
    width: 94.6vw;
    height: 5.4vw;
  }
}
@media screen and (max-width: 768px) {
  header .head_content {
    width: 92.9%;
    height: 11.3vw;
  }
}
header .head_content .logo {
  width: 151px;
}
@media screen and (max-width: 1480px) {
  header .head_content .logo {
    width: 10.2vw;
  }
}
@media screen and (max-width: 768px) {
  header .head_content .logo {
    width: 20.1vw;
  }
}
header .head_content .navToggle {
  display: block;
  width: 60px;
  height: 26px;
  cursor: pointer;
  z-index: 10;
  text-align: center;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 1480px) {
  header .head_content .navToggle {
    width: 4.1vw;
    height: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  header .head_content .navToggle {
    width: 8vw;
    height: 3.6vw;
  }
}
header .head_content .navToggle span {
  display: block;
  position: absolute;
  /* .navToggleに対して */
  width: 60px;
  border-bottom: solid 1px #fff;
  right: 0;
  transition: 0.25s ease-in-out;
}
@media screen and (max-width: 1480px) {
  header .head_content .navToggle span {
    width: 4.1vw;
  }
}
@media screen and (max-width: 768px) {
  header .head_content .navToggle span {
    width: 8vw;
  }
}
header .head_content .navToggle span:nth-child(1) {
  top: 0;
}
header .head_content .navToggle span:nth-child(2) {
  top: 13px;
}
@media screen and (max-width: 1480px) {
  header .head_content .navToggle span:nth-child(2) {
    top: 0.9vw;
  }
}
@media screen and (max-width: 768px) {
  header .head_content .navToggle span:nth-child(2) {
    top: 1.8vw;
  }
}
header .head_content .navToggle span:nth-child(3) {
  top: 26px;
}
@media screen and (max-width: 1480px) {
  header .head_content .navToggle span:nth-child(3) {
    top: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  header .head_content .navToggle span:nth-child(3) {
    top: 3.6vw;
  }
}
header .head_content .navToggle.active span {
  top: 13px;
  /* 最初のspanをマイナス45度に */
  /* 2番目と3番目のspanを45度に */
}
@media screen and (max-width: 1480px) {
  header .head_content .navToggle.active span {
    top: 0.9vw;
  }
}
@media screen and (max-width: 768px) {
  header .head_content .navToggle.active span {
    top: 1.8vw;
  }
}
header .head_content .navToggle.active span:nth-child(1) {
  transform: rotate(-45deg);
}
header .head_content .navToggle.active span:nth-child(2), header .head_content .navToggle.active span:nth-child(3) {
  transform: rotate(45deg);
}

/*--- メニュー ---*/
#sp_menu {
  position: fixed;
  z-index: 99;
  width: 400px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  right: 0;
  top: 0;
  opacity: 1;
  transform: translateX(100%);
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
}
@media screen and (max-width: 1480px) {
  #sp_menu {
    width: 27vw;
  }
}
@media screen and (max-width: 768px) {
  #sp_menu {
    width: 100%;
  }
}
#sp_menu.active {
  transform: translateX(0);
}
#sp_menu .menu_content {
  width: 77.75%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 90px;
}
@media screen and (max-width: 1480px) {
  #sp_menu .menu_content {
    padding-top: 6.1vw;
  }
}
@media screen and (max-width: 768px) {
  #sp_menu .menu_content {
    padding-top: 11.5vw;
  }
}
#sp_menu .menu_content .logo {
  width: 82.6%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 46px;
}
@media screen and (max-width: 1480px) {
  #sp_menu .menu_content .logo {
    margin-bottom: 3.1vw;
  }
}
@media screen and (max-width: 768px) {
  #sp_menu .menu_content .logo {
    width: 73.3%;
    margin-bottom: 10vw;
  }
}
#sp_menu .menu_content .menu_list li + li {
  margin-top: 26px;
}
@media screen and (max-width: 1480px) {
  #sp_menu .menu_content .menu_list li + li {
    margin-top: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  #sp_menu .menu_content .menu_list li + li {
    margin-top: 5.3vw;
  }
}
#sp_menu .menu_content .copy {
  font-size: 9px;
  line-height: 1.5em;
  color: #fff;
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 1480px) {
  #sp_menu .menu_content .copy {
    margin-top: 2.7vw;
    font-size: 0.55vw;
  }
}
@media screen and (max-width: 768px) {
  #sp_menu .menu_content .copy {
    font-size: 2.4vw;
    margin-top: 12.9vw;
  }
}

/*--- メインビジュアル ---*/
#mv {
  padding-bottom: 65px;
}
@media screen and (max-width: 1480px) {
  #mv {
    padding-bottom: 4.4vw;
  }
}
@media screen and (max-width: 768px) {
  #mv {
    padding-bottom: 12.3vw;
    overflow: hidden;
  }
}
#mv .mv_content {
  max-width: 1080px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (max-width: 1480px) {
  #mv .mv_content {
    max-width: none;
    width: 73vw;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv_content {
    width: 100%;
  }
}
#mv .mg_img {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
#mv .mv_txt {
  position: absolute;
  width: 124px;
  top: 6px;
  right: -56px;
}
@media screen and (max-width: 1480px) {
  #mv .mv_txt {
    width: 8.4vw;
    top: 0.4vw;
    right: -3.8vw;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv_txt {
    width: 80.5vw;
    top: auto;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: -9.7vw;
  }
}

/*--- ページタイトル ---*/
#page_title {
  overflow: hidden;
}
#page_title .colabo {
  margin-right: calc(50% - 50vw);
  padding-left: 36px;
  padding-bottom: 8px;
  background-image: url(../images/title_bg_pc.svg);
  background-size: auto 67px;
  background-repeat: no-repeat;
  background-position: left bottom;
}
@media screen and (max-width: 1480px) {
  #page_title .colabo {
    padding-left: 2.4vw;
    padding-bottom: 0.5vw;
    background-size: auto 4.5vw;
  }
}
@media screen and (max-width: 768px) {
  #page_title .colabo {
    padding-left: 8vw;
    padding-bottom: 1.1vw;
    background-image: url(../images/title_bg_sp.svg);
    background-size: auto 5.6vw;
  }
}
#page_title .colabo img {
  width: 384px;
}
@media screen and (max-width: 1480px) {
  #page_title .colabo img {
    width: 25.9vw;
  }
}
@media screen and (max-width: 768px) {
  #page_title .colabo img {
    width: 70.3vw;
  }
}
#page_title h1 {
  width: 848px;
  margin-top: 40px;
}
@media screen and (max-width: 1480px) {
  #page_title h1 {
    margin-top: 2.7vw;
    width: 57.3vw;
  }
}
@media screen and (max-width: 768px) {
  #page_title h1 {
    margin-top: 5.1vw;
    width: 100%;
  }
}
#page_title .area {
  width: 488px;
  margin-top: 40px;
}
@media screen and (max-width: 1480px) {
  #page_title .area {
    margin-top: 2.7vw;
    width: 33vw;
  }
}
@media screen and (max-width: 768px) {
  #page_title .area {
    margin-top: 6vw;
    width: 100%;
  }
}
#page_title .page_link {
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 1480px) {
  #page_title .page_link {
    margin-top: 6.8vw;
  }
}
@media screen and (max-width: 768px) {
  #page_title .page_link {
    width: 90.9%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15.5vw;
  }
}
#page_title .page_link li {
  width: 31.2%;
}
@media screen and (max-width: 768px) {
  #page_title .page_link li {
    width: 100%;
  }
  #page_title .page_link li + li {
    margin-top: 6.5vw;
  }
}

/*--- オリジナルステッカー ---*/
#sticker {
  margin-top: 120px;
  text-align: center;
}
@media screen and (max-width: 1480px) {
  #sticker {
    margin-top: 8.1vw;
  }
}
@media screen and (max-width: 768px) {
  #sticker {
    margin-top: 17.3vw;
    overflow: hidden;
  }
}
#sticker .title_box {
  position: relative;
}
#sticker .title_box .bg {
  width: 100%;
}
#sticker .title_box .camp_no {
  position: absolute;
  top: 50%;
  left: 11px;
  transform: translateY(-50%);
  width: 252px;
}
@media screen and (max-width: 1480px) {
  #sticker .title_box .camp_no {
    left: 0.7vw;
    width: 17vw;
  }
}
@media screen and (max-width: 768px) {
  #sticker .title_box .camp_no {
    top: 2.3vw;
    left: 50%;
    transform: translateX(-50%);
    width: 43.1vw;
  }
}
#sticker .title_box .camp_title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 19px;
  width: 660px;
}
@media screen and (max-width: 1480px) {
  #sticker .title_box .camp_title {
    right: 1.3vw;
    width: 44.6vw;
  }
}
@media screen and (max-width: 768px) {
  #sticker .title_box .camp_title {
    top: auto;
    right: auto;
    left: 50%;
    bottom: 3.6vw;
    transform: translateX(-50%);
    width: 81.1vw;
  }
}
#sticker .head_txt {
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1480px) {
  #sticker .head_txt {
    margin-top: 2.7vw;
    margin-bottom: 2.7vw;
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  #sticker .head_txt {
    margin-top: 6.7vw;
    margin-bottom: 8vw;
    font-size: 3.9vw;
    line-height: 1.9em;
  }
}
#sticker .head_txt strong {
  font-size: 29px;
  font-weight: 500;
}
@media screen and (max-width: 1480px) {
  #sticker .head_txt strong {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #sticker .head_txt strong {
    font-size: 4.7vw;
  }
}
#sticker .poduct_box {
  position: relative;
}
@media screen and (max-width: 768px) {
  #sticker .poduct_box {
    width: 80vw;
    margin-left: auto;
    margin-right: auto;
  }
}
#sticker .poduct_box + .poduct_box {
  margin-top: 43px;
}
@media screen and (max-width: 1480px) {
  #sticker .poduct_box + .poduct_box {
    margin-top: 2.9vw;
  }
}
@media screen and (max-width: 768px) {
  #sticker .poduct_box + .poduct_box {
    margin-top: 7.1vw;
  }
}
#sticker .poduct_box h3, #sticker .poduct_box .pho, #sticker .poduct_box .img, #sticker .poduct_box .coment_box {
  position: absolute;
}
#sticker .poduct_box h3 {
  left: 68px;
  top: 51px;
}
@media screen and (max-width: 1480px) {
  #sticker .poduct_box h3 {
    left: 4.6vw;
    top: 3.4vw;
  }
}
@media screen and (max-width: 768px) {
  #sticker .poduct_box h3 {
    left: 6.4vw;
    top: 6.9vw;
  }
}
#sticker .poduct_box .pho {
  z-index: 1;
}
#sticker .poduct_box .comment_box {
  position: absolute;
  width: 631px;
  left: 68px;
  top: 343px;
}
@media screen and (max-width: 1480px) {
  #sticker .poduct_box .comment_box {
    width: 42.6vw;
    left: 4.6vw;
    top: 23.2vw;
  }
}
@media screen and (max-width: 768px) {
  #sticker .poduct_box .comment_box {
    width: 100%;
    left: 0;
    top: auto;
    bottom: 6.7vw;
  }
}
#sticker .poduct_box .comment_box .comment_title {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  #sticker .poduct_box .comment_box .comment_title {
    width: 67.5vw;
  }
}
#sticker .poduct_box .comment_box .comment_txt {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 1.6em;
  color: #fff;
  letter-spacing: 0;
  text-align: left;
  margin-top: 0.7em;
}
@media screen and (max-width: 1480px) {
  #sticker .poduct_box .comment_box .comment_txt {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 768px) {
  #sticker .poduct_box .comment_box .comment_txt {
    width: 67.5vw;
    font-size: 3.5vw;
    line-height: 1.7em;
    margin-top: 1em;
  }
}
#sticker .poduct_box#anijya h3 {
  width: 632px;
}
@media screen and (max-width: 1480px) {
  #sticker .poduct_box#anijya h3 {
    width: 42.7vw;
  }
}
@media screen and (max-width: 768px) {
  #sticker .poduct_box#anijya h3 {
    width: 67.1vw;
  }
}
#sticker .poduct_box#anijya .pho {
  width: 441px;
  top: 75px;
  left: 273px;
}
@media screen and (max-width: 1480px) {
  #sticker .poduct_box#anijya .pho {
    width: 29.8vw;
    top: 5.1vw;
    left: 18.4vw;
  }
}
@media screen and (max-width: 768px) {
  #sticker .poduct_box#anijya .pho {
    width: 74.3vw;
    top: 37.6vw;
    left: 1.2vw;
  }
}
#sticker .poduct_box#anijya .img {
  width: 245px;
  bottom: 0;
  right: 27px;
}
@media screen and (max-width: 1480px) {
  #sticker .poduct_box#anijya .img {
    width: 16.6vw;
    bottom: 0;
    right: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  #sticker .poduct_box#anijya .img {
    width: 31.6vw;
    bottom: auto;
    top: 4.1vw;
    right: -2.4vw;
  }
}
#sticker .poduct_box#otojya h3 {
  width: 642px;
}
@media screen and (max-width: 1480px) {
  #sticker .poduct_box#otojya h3 {
    width: 43.4vw;
  }
}
@media screen and (max-width: 768px) {
  #sticker .poduct_box#otojya h3 {
    width: 62.7vw;
  }
}
#sticker .poduct_box#otojya .pho {
  width: 431px;
  top: 69px;
  left: 280px;
}
@media screen and (max-width: 1480px) {
  #sticker .poduct_box#otojya .pho {
    width: 29.1vw;
    top: 4.7vw;
    left: 18.9vw;
  }
}
@media screen and (max-width: 768px) {
  #sticker .poduct_box#otojya .pho {
    width: 74.3vw;
    top: 38vw;
    left: 2.8vw;
  }
}
#sticker .poduct_box#otojya .img {
  width: 427px;
  bottom: 0;
  right: -107px;
}
@media screen and (max-width: 1480px) {
  #sticker .poduct_box#otojya .img {
    width: 28.9vw;
    bottom: 0;
    right: -7.2vw;
  }
}
@media screen and (max-width: 768px) {
  #sticker .poduct_box#otojya .img {
    width: 54.7vw;
    bottom: auto;
    top: 3.9vw;
    right: -15.7vw;
  }
}
#sticker .poduct_box#otsuichi h3 {
  width: 631px;
}
@media screen and (max-width: 1480px) {
  #sticker .poduct_box#otsuichi h3 {
    width: 42.6vw;
  }
}
@media screen and (max-width: 768px) {
  #sticker .poduct_box#otsuichi h3 {
    width: 62.1vw;
  }
}
#sticker .poduct_box#otsuichi .pho {
  width: 441px;
  top: 54px;
  left: 278px;
}
@media screen and (max-width: 1480px) {
  #sticker .poduct_box#otsuichi .pho {
    width: 29.8vw;
    top: 3.6vw;
    left: 18.8vw;
  }
}
@media screen and (max-width: 768px) {
  #sticker .poduct_box#otsuichi .pho {
    width: 74.3vw;
    top: 37.6vw;
    left: 2.8vw;
  }
}
#sticker .poduct_box#otsuichi .img {
  width: 257px;
  bottom: 0;
  right: 20px;
}
@media screen and (max-width: 1480px) {
  #sticker .poduct_box#otsuichi .img {
    width: 17.4vw;
    bottom: 0;
    right: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  #sticker .poduct_box#otsuichi .img {
    width: 35.1vw;
    bottom: auto;
    top: 7.7vw;
    right: -2.1vw;
  }
}
#sticker .sub_txt {
  display: inline-block;
  font-size: 11px;
  line-height: 1.5em;
  color: #fff;
  letter-spacing: 0;
  margin-top: 25px;
  text-align: left;
}
@media screen and (max-width: 1480px) {
  #sticker .sub_txt {
    font-size: 0.7vw;
    margin-top: 1.7vw;
  }
}
@media screen and (max-width: 768px) {
  #sticker .sub_txt {
    display: block;
    width: 80vw;
    margin-left: auto;
    margin-right: auto;
    font-size: 2.1vw;
    margin-top: 4vw;
  }
}
#sticker .pho_box {
  margin-top: 85px;
}
@media screen and (max-width: 1480px) {
  #sticker .pho_box {
    margin-top: 5.7vw;
  }
}
@media screen and (max-width: 768px) {
  #sticker .pho_box {
    margin-top: 10vw;
  }
}
#sticker .pho_box h3 {
  display: inline-block;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.5em;
  background-color: #464646;
  color: #fff;
  padding: 0.2em 0.5em 0.2em;
}
@media screen and (max-width: 1480px) {
  #sticker .pho_box h3 {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  #sticker .pho_box h3 {
    font-size: 5.6vw;
  }
}
#sticker .pho_box .sticker_img {
  width: 850px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}
@media screen and (max-width: 1480px) {
  #sticker .pho_box .sticker_img {
    width: 57.4vw;
    margin-top: 2.7vw;
  }
}
@media screen and (max-width: 768px) {
  #sticker .pho_box .sticker_img {
    width: 71.2vw;
    margin-top: 6.7vw;
  }
}
#sticker .pho_box .sticker_sub_txt {
  width: 514px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
}
@media screen and (max-width: 1480px) {
  #sticker .pho_box .sticker_sub_txt {
    width: 34.7vw;
    margin-top: 1.1vw;
  }
}
@media screen and (max-width: 768px) {
  #sticker .pho_box .sticker_sub_txt {
    width: 87.5vw;
    margin-top: 4.3vw;
  }
}
#sticker .mobile_order {
  width: 359px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}
@media screen and (max-width: 1480px) {
  #sticker .mobile_order {
    width: 24.3vw;
    margin-top: 2.7vw;
  }
}
@media screen and (max-width: 768px) {
  #sticker .mobile_order {
    width: 68.8vw;
    margin-top: 6.7vw;
  }
}
@media screen and (max-width: 768px) {
  #sticker .mobile_order .pc_img {
    display: none;
  }
}
#sticker .mobile_order .sp_box {
  display: none;
}
@media screen and (max-width: 768px) {
  #sticker .mobile_order .sp_box {
    display: block;
  }
  #sticker .mobile_order .sp_box .sp_txt01, #sticker .mobile_order .sp_box .sp_txt02 {
    color: #fff;
  }
  #sticker .mobile_order .sp_box .sp_txt01 {
    font-size: 3.7vw;
    line-height: 1.7em;
  }
  #sticker .mobile_order .sp_box .sp_txt01 span {
    font-size: 4.4vw;
  }
  #sticker .mobile_order .sp_box .sp_txt02 {
    font-size: 3.7vw;
    line-height: 1.7em;
  }
  #sticker .mobile_order .sp_box .btn01 {
    margin-top: 3.7vw;
  }
}

/*--- ゲーム ---*/
#game {
  margin-top: 100px;
  text-align: center;
}
@media screen and (max-width: 1480px) {
  #game {
    margin-top: 6.8vw;
  }
}
@media screen and (max-width: 768px) {
  #game {
    margin-top: 19vw;
  }
}
#game .title_box {
  position: relative;
}
#game .title_box .bg {
  width: 100%;
}
#game .title_box .camp_no {
  position: absolute;
  top: 50%;
  left: 11px;
  transform: translateY(-50%);
  width: 258px;
}
@media screen and (max-width: 1480px) {
  #game .title_box .camp_no {
    width: 17.4vw;
    left: 0.7vw;
  }
}
@media screen and (max-width: 768px) {
  #game .title_box .camp_no {
    top: 2.3vw;
    left: 50%;
    transform: translateX(-50%);
    width: 44.1vw;
  }
}
#game .title_box .camp_title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 19px;
  width: 663px;
}
@media screen and (max-width: 1480px) {
  #game .title_box .camp_title {
    right: 1.3vw;
    width: 44.8vw;
  }
}
@media screen and (max-width: 768px) {
  #game .title_box .camp_title {
    top: auto;
    right: auto;
    left: 50%;
    bottom: 3.6vw;
    transform: translateX(-50%);
    width: 69.2vw;
  }
}
#game .txt_box01 {
  max-width: 680px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 1480px) {
  #game .txt_box01 {
    max-width: none;
    width: 45.9vw;
    margin-top: 3.4vw;
  }
}
@media screen and (max-width: 768px) {
  #game .txt_box01 {
    width: 100%;
    margin-top: 7.3vw;
  }
}
#game .txt_box01 .left_block {
  width: 64.1%;
}
@media screen and (max-width: 1480px) {
  #game .txt_box01 .left_block {
    width: 64.3%;
  }
}
@media screen and (max-width: 768px) {
  #game .txt_box01 .left_block {
    width: 100%;
    text-align: center;
  }
}
#game .txt_box01 .left_block .txt01 {
  font-size: 16px;
  line-height: 2.1em;
  color: #fff;
  text-align: left;
}
@media screen and (max-width: 1480px) {
  #game .txt_box01 .left_block .txt01 {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 768px) {
  #game .txt_box01 .left_block .txt01 {
    display: inline-block;
    font-size: 3.7vw;
    line-height: 1.7em;
    text-align: left;
  }
}
#game .txt_box01 .left_block .img02 {
  display: none;
}
@media screen and (max-width: 768px) {
  #game .txt_box01 .left_block .img02 {
    display: block;
    width: 34vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: 6.7vw;
    border: 1px solid #ccc;
  }
}
#game .txt_box01 .left_block .txt02 {
  margin-top: 45px;
}
@media screen and (max-width: 1480px) {
  #game .txt_box01 .left_block .txt02 {
    margin-top: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #game .txt_box01 .left_block .txt02 {
    width: 79.9vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: 6vw;
  }
}
#game .txt_box01 .right_block {
  width: 24%;
  border: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  #game .txt_box01 .right_block {
    display: none;
  }
}
#game .movie_box01 {
  max-width: 680px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 65px;
}
@media screen and (max-width: 1480px) {
  #game .movie_box01 {
    max-width: none;
    width: 45.9vw;
    margin-top: 4.4vw;
  }
}
@media screen and (max-width: 768px) {
  #game .movie_box01 {
    width: 88%;
    margin-top: 9.3vw;
  }
}
#game .movie_box01 .movie01 {
  width: 100%;
}

/*--- グッズ ---*/
#goods {
  margin-top: 100px;
  text-align: center;
}
@media screen and (max-width: 1480px) {
  #goods {
    margin-top: 6.8vw;
  }
}
@media screen and (max-width: 768px) {
  #goods {
    margin-top: 15.3vw;
  }
}
#goods .title_box {
  position: relative;
}
#goods .title_box .bg {
  width: 100%;
}
#goods .title_box .camp_no {
  position: absolute;
  top: 50%;
  left: 11px;
  transform: translateY(-50%);
  width: 258px;
}
@media screen and (max-width: 1480px) {
  #goods .title_box .camp_no {
    width: 17.4vw;
    left: 0.7vw;
  }
}
@media screen and (max-width: 768px) {
  #goods .title_box .camp_no {
    top: 2.3vw;
    left: 50%;
    transform: translateX(-50%);
    width: 44.1vw;
  }
}
#goods .title_box .camp_title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 19px;
  width: 624px;
}
@media screen and (max-width: 1480px) {
  #goods .title_box .camp_title {
    right: 1.3vw;
    width: 42.2vw;
  }
}
@media screen and (max-width: 768px) {
  #goods .title_box .camp_title {
    top: auto;
    right: auto;
    left: 50%;
    bottom: 5.5vw;
    transform: translateX(-50%);
    width: 79.3vw;
  }
}
#goods .head_box {
  margin-top: 68px;
  position: relative;
}
@media screen and (max-width: 1480px) {
  #goods .head_box {
    margin-top: 4.6vw;
  }
}
@media screen and (max-width: 768px) {
  #goods .head_box {
    margin-top: 6.7vw;
  }
}
#goods .head_box .txt01 {
  font-size: 20px;
  text-align: center;
  color: #fff;
  letter-spacing: 0;
}
@media screen and (max-width: 1480px) {
  #goods .head_box .txt01 {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  #goods .head_box .txt01 {
    font-size: 4.1vw;
  }
}
#goods .head_box .txt01 strong {
  font-size: 26px;
  font-weight: normal;
  display: inline-block;
  padding-bottom: 0.2em;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 1480px) {
  #goods .head_box .txt01 strong {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  #goods .head_box .txt01 strong {
    font-size: 5.3vw;
    padding-bottom: 0.1em;
  }
}
#goods .head_box .txt02 {
  font-size: 18px;
  text-align: center;
  color: #fff;
  margin-top: 1em;
  letter-spacing: 0;
}
@media screen and (max-width: 1480px) {
  #goods .head_box .txt02 {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 768px) {
  #goods .head_box .txt02 {
    margin-top: 0.5em;
    font-size: 3.7vw;
  }
}
#goods .head_box .img01 {
  position: absolute;
  width: 410px;
  top: -50px;
  left: -222px;
}
@media screen and (max-width: 1480px) {
  #goods .head_box .img01 {
    width: 27.7vw;
    top: -3.4vw;
    left: -15vw;
  }
}
@media screen and (max-width: 768px) {
  #goods .head_box .img01 {
    position: static;
    width: 74.8vw;
    margin-left: 1.6vw;
    margin-right: auto;
    margin-top: 1vw;
  }
}
#goods .head_box .img02 {
  position: absolute;
  width: 200px;
  top: -28px;
  right: -70px;
}
@media screen and (max-width: 1480px) {
  #goods .head_box .img02 {
    width: 13.5vw;
    top: -1.9vw;
    right: -4.7vw;
  }
}
@media screen and (max-width: 768px) {
  #goods .head_box .img02 {
    display: none;
  }
}
#goods #participation {
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1480px) {
  #goods #participation {
    margin-top: 2.7vw;
  }
}
@media screen and (max-width: 768px) {
  #goods #participation {
    margin-top: 0;
  }
}
#goods #participation h3 {
  text-align: center;
}
#goods #participation h3 span {
  display: inline-block;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.5em;
  color: #fff;
  background-color: #464646;
  padding: 0.2em 0.5em 0.2em;
}
@media screen and (max-width: 1480px) {
  #goods #participation h3 span {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  #goods #participation h3 span {
    display: block;
    width: 81.9vw;
    margin-left: auto;
    margin-right: auto;
    font-size: 5vw;
    line-height: 1.7em;
  }
}
#goods #participation .txt_list01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 45px;
}
@media screen and (max-width: 1480px) {
  #goods #participation .txt_list01 {
    margin-top: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #goods #participation .txt_list01 {
    display: block;
    width: 81.9vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: 6.4vw;
  }
}
#goods #participation .txt_list01 li {
  width: 49%;
}
@media screen and (max-width: 768px) {
  #goods #participation .txt_list01 li {
    width: 100%;
  }
  #goods #participation .txt_list01 li + li {
    margin-top: 3.7vw;
  }
}
#goods #participation .txt_list01 li:nth-child(3) {
  width: 100%;
  margin-top: 18px;
}
@media screen and (max-width: 1480px) {
  #goods #participation .txt_list01 li:nth-child(3) {
    margin-top: 1.2vw;
  }
}
@media screen and (max-width: 768px) {
  #goods #participation .txt_list01 li:nth-child(3) {
    margin-top: 3.7vw;
  }
}
#goods #rule {
  max-width: 720px;
  width: 100%;
  height: 182px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  overflow-y: scroll;
  background-color: #fff;
  padding: 25px 50px 35px;
}
@media screen and (max-width: 1480px) {
  #goods #rule {
    max-width: none;
    width: 48.6vw;
    height: 12.3vw;
    margin-top: 3.4vw;
    padding: 1.7vw 3.4vw 2.4vw;
  }
}
@media screen and (max-width: 768px) {
  #goods #rule {
    max-width: none;
    width: 100%;
    height: 21.6vw;
    margin-top: 10.7vw;
    padding: 2.7vw 6.7vw 4vw;
  }
}
#goods #rule h3 {
  font-size: 18px;
  font-weight: normal;
  text-align: center;
  margin-bottom: 0.5em;
  display: block;
  position: relative;
}
@media screen and (max-width: 1480px) {
  #goods #rule h3 {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 768px) {
  #goods #rule h3 {
    font-size: 3.5vw;
  }
}
#goods #rule h3::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#goods #rule h3 span {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-weight: normal;
  background-color: #fff;
  padding: 0.2em 0.5em 0.2em;
}
#goods #rule .txt01 {
  font-size: 12px;
  line-height: 2em;
  text-align: justify;
}
@media screen and (max-width: 1480px) {
  #goods #rule .txt01 {
    font-size: 0.8vw;
  }
}
@media screen and (max-width: 768px) {
  #goods #rule .txt01 {
    font-size: 2.4vw;
    line-height: 1.7em;
  }
}

/*--- Q&A ---*/
#faq {
  margin-top: 100px;
  text-align: center;
  overflow-x: hidden;
}
@media screen and (max-width: 1480px) {
  #faq {
    margin-top: 6.8vw;
  }
}
@media screen and (max-width: 768px) {
  #faq {
    margin-top: 16vw;
  }
}
#faq .title_box {
  width: 253px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 45px;
  position: relative;
}
@media screen and (max-width: 1480px) {
  #faq .title_box {
    width: 17.1vw;
    margin-bottom: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #faq .title_box {
    width: 100%;
    margin-bottom: 4.7vw;
  }
}
#faq .title_box .bg {
  width: 100%;
}
#faq .title_box .camp_title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
}
@media screen and (max-width: 1480px) {
  #faq .title_box .camp_title {
    width: 5.4vw;
  }
}
@media screen and (max-width: 768px) {
  #faq .title_box .camp_title {
    top: 54%;
    width: 13.5vw;
  }
}
#faq .faq_box + .faq_box {
  margin-top: 30px;
}
@media screen and (max-width: 1480px) {
  #faq .faq_box + .faq_box {
    margin-top: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #faq .faq_box + .faq_box {
    margin-top: 5.3vw;
  }
}
#faq .faq_box .question_block {
  background-image: url(../images/faq_bg01_pc.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: left top;
  position: relative;
}
@media screen and (max-width: 768px) {
  #faq .faq_box .question_block {
    background-image: url(../images/faq_bg01_sp.svg);
  }
}
#faq .faq_box .question_block .no {
  position: absolute;
  top: 50%;
  left: 23px;
  transform: translateY(-42%);
}
@media screen and (max-width: 1480px) {
  #faq .faq_box .question_block .no {
    left: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #faq .faq_box .question_block .no {
    left: 3.5vw;
  }
}
#faq .faq_box .question_block .no, #faq .faq_box .question_block .no img {
  width: auto;
  height: 24px;
}
@media screen and (max-width: 1480px) {
  #faq .faq_box .question_block .no, #faq .faq_box .question_block .no img {
    height: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #faq .faq_box .question_block .no, #faq .faq_box .question_block .no img {
    height: 5.5vw;
  }
}
#faq .faq_box .question_block .question_txt01 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
  color: #fff;
  text-align: center;
  padding: 1em 0;
}
@media screen and (max-width: 1480px) {
  #faq .faq_box .question_block .question_txt01 {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 768px) {
  #faq .faq_box .question_block .question_txt01 {
    font-size: 3.5vw;
    text-align: left;
    line-height: 1.5em;
    padding-left: 10.9vw;
  }
}
#faq .faq_box .answer_block {
  background-image: url(../images/faq_bg02_pc.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: left bottom;
}
@media screen and (max-width: 768px) {
  #faq .faq_box .answer_block {
    background-image: url(../images/faq_bg02_sp.svg);
  }
}
#faq .faq_box .answer_block .answer_txt01,
#faq .faq_box .answer_block .answer_txt02 {
  width: 91%;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5em;
  color: #fff;
  text-align: center;
  padding: 2.5em 0;
}
@media screen and (max-width: 1480px) {
  #faq .faq_box .answer_block .answer_txt01,
  #faq .faq_box .answer_block .answer_txt02 {
    font-size: 0.9vw;
  }
}
@media screen and (max-width: 768px) {
  #faq .faq_box .answer_block .answer_txt01,
  #faq .faq_box .answer_block .answer_txt02 {
    width: 80vw;
    font-size: 3.2vw;
    line-height: 1.5em;
    padding: 1.4em 0;
  }
}
#faq .faq_box .answer_block .answer_txt01 .sub_txt,
#faq .faq_box .answer_block .answer_txt02 .sub_txt {
  font-size: 11px;
  line-height: 1.5em;
  color: #fff;
}
@media screen and (max-width: 1480px) {
  #faq .faq_box .answer_block .answer_txt01 .sub_txt,
  #faq .faq_box .answer_block .answer_txt02 .sub_txt {
    font-size: 0.7vw;
  }
}
@media screen and (max-width: 768px) {
  #faq .faq_box .answer_block .answer_txt01 .sub_txt,
  #faq .faq_box .answer_block .answer_txt02 .sub_txt {
    font-size: 2.5vw;
  }
}
#faq .faq_box .answer_block .answer_txt01 {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #faq .faq_box .answer_block .answer_txt01 {
    text-align: left;
  }
}
#faq .faq_box .answer_block .answer_txt02 {
  text-align: left;
}

footer {
  margin-top: 115px;
}
@media screen and (max-width: 1480px) {
  footer {
    margin-top: 7.8vw;
  }
}
@media screen and (max-width: 768px) {
  footer {
    margin-top: 9.3vw;
  }
}
footer .wrap01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 50px;
}
@media screen and (max-width: 1480px) {
  footer .wrap01 {
    padding-bottom: 3.4vw;
  }
}
@media screen and (max-width: 768px) {
  footer .wrap01 {
    display: block;
    padding-bottom: 10vw;
  }
}
footer .wrap01 .link01 {
  order: 2;
}
footer .wrap01 .link01, footer .wrap01 .link01 a {
  font-size: 14px;
  line-height: 1.5em;
  color: #fff;
  text-align: left;
}
@media screen and (max-width: 1480px) {
  footer .wrap01 .link01, footer .wrap01 .link01 a {
    font-size: 0.9vw;
  }
}
@media screen and (max-width: 768px) {
  footer .wrap01 .link01, footer .wrap01 .link01 a {
    font-size: 3.7vw;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  footer .wrap01 .link01 a {
    font-size: 2.9vw;
    display: inline-block;
    margin-top: 0.6em;
  }
}
footer .wrap01 .icon_box {
  order: 1;
  width: 116px;
}
@media screen and (max-width: 1480px) {
  footer .wrap01 .icon_box {
    width: 7.8vw;
  }
}
@media screen and (max-width: 768px) {
  footer .wrap01 .icon_box {
    width: 41.2vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: 11.7vw;
  }
}
footer .wrap01 .icon_box .logo {
  width: 100%;
}
footer .wrap01 .icon_box .link_list {
  width: 91px;
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 1480px) {
  footer .wrap01 .icon_box .link_list {
    width: 6.1vw;
    margin-bottom: 1.1vw;
  }
}
@media screen and (max-width: 768px) {
  footer .wrap01 .icon_box .link_list {
    width: 32.9vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 9.3vw;
  }
}
footer .wrap01 .icon_box .link_list li {
  display: block;
}
footer .wrap01 .icon_box .link_list li, footer .wrap01 .icon_box .link_list li img {
  width: auto;
  height: 22px;
}
@media screen and (max-width: 1480px) {
  footer .wrap01 .icon_box .link_list li, footer .wrap01 .icon_box .link_list li img {
    height: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  footer .wrap01 .icon_box .link_list li, footer .wrap01 .icon_box .link_list li img {
    height: 8vw;
  }
}
footer .wrap01 .copy {
  order: 3;
  font-size: 10px;
  line-height: 1.5em;
  color: #fff;
  text-align: left;
}
@media screen and (max-width: 1480px) {
  footer .wrap01 .copy {
    font-size: 0.7vw;
  }
}
@media screen and (max-width: 768px) {
  footer .wrap01 .copy {
    font-size: 2.4vw;
    text-align: center;
    margin-top: 4.7vw;
  }
}

/* .animate,
.animate2,
.animate3 {
	opacity: 1;
	transition-property: opacity, transform;
	transition-duration: 0.5s;
	transition-timing-function: ease-in-out;
}
.animate.deactive,
.animate2.deactive,
.animate3.deactive {
	opacity: 0;
	transition: 0s;
} */
/*--- メインビジュアル ---*/
#mv .mv_img img {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transform: scale(1.05);
}
#mv .mv_img img.act {
  opacity: 1;
  transform: scale(1);
}
#mv .mv_txt img {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transform: translateY(-10%);
}
@media screen and (max-width: 768px) {
  #mv .mv_txt img {
    transform: translateX(-10%);
  }
}
#mv .mv_txt img.act {
  transform: translateY(0);
  opacity: 1;
}

/*--- ページタイトル ---*/
#page_title .colabo {
  opacity: 1;
  transition-property: margin-right;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  margin-right: calc(50% - 50vw);
}
#page_title .colabo img {
  opacity: 1;
  transform: translateY(0);
  transition-property: opacity, transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0.4s;
}
#page_title h1 {
  opacity: 1;
  transition-property: opacity, transform;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0.8s;
}
#page_title .area {
  opacity: 1;
  transition-property: opacity, transform;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 1s;
}
#page_title .page_link li {
  opacity: 1;
  transition-property: opacity, transform;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
}
#page_title .page_link li:nth-child(1) {
  transition-delay: 1.8s;
}
#page_title .page_link li:nth-child(2) {
  transition-delay: 2s;
}
#page_title .page_link li:nth-child(3) {
  transition-delay: 2.2s;
}
#page_title.deactive .colabo {
  opacity: 0;
  margin-right: calc(50% + 40vw);
  transition: 0s;
}
#page_title.deactive .colabo img {
  opacity: 0;
  transform: translateX(-10%);
  transition: 0s;
  transition-delay: 0s;
}
#page_title.deactive h1 {
  opacity: 0;
  transform: translateX(-10%);
  transition: 0s;
  transition-delay: 0s;
}
#page_title.deactive .area {
  opacity: 0;
  transform: translateX(-10%);
  transition: 0s;
  transition-delay: 0s;
}
#page_title.deactive .page_link li {
  opacity: 0;
  transform: translateY(10%);
  transition: 0s;
  transition-delay: 0s;
}
#page_title.deactive .page_link li:nth-child(1), #page_title.deactive .page_link li:nth-child(2), #page_title.deactive .page_link li:nth-child(3) {
  transition-delay: 0s;
}

/*--- オリジナルステッカー ---*/
#sticker .title_box .bg {
  opacity: 1;
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}
#sticker .title_box .camp_no img {
  opacity: 1;
  transition-property: opacity, transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transform: translateX(0);
  transition-delay: 0.15s;
}
#sticker .title_box .camp_title img {
  opacity: 1;
  transition-property: opacity, transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transform: translateX(0);
  transition-delay: 0.15s;
}
#sticker .head_txt {
  opacity: 1;
  transition-property: opacity, transform;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 1s;
}
#sticker.deactive .title_box .bg {
  opacity: 0;
  transition: 0s;
  transition-delay: 0s;
}
#sticker.deactive .title_box .camp_no img {
  opacity: 0;
  transform: translateX(-10%);
  transition: 0s;
  transition-delay: 0s;
}
#sticker.deactive .title_box .camp_title img {
  opacity: 0;
  transform: translateX(10%);
  transition: 0s;
  transition-delay: 0s;
}
#sticker.deactive .head_txt {
  opacity: 0;
  transition: 0s;
  transition-delay: 0s;
}
#sticker .poduct_box h3 {
  opacity: 1;
  transition-property: opacity, transform;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transform: translateX(0);
  transition-delay: 0.4s;
}
#sticker .poduct_box .pho {
  opacity: 1;
  transition-property: opacity, transform;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transform: translateX(0);
  transition-delay: 0.4s;
}
#sticker .poduct_box .comment_box {
  opacity: 1;
  transition-property: opacity, transform;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0.8s;
}
#sticker .poduct_box .img {
  opacity: 1;
  transition-property: opacity, transform;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transform: translateY(0);
  transition-delay: 1.4s;
}
#sticker .poduct_box .bg {
  opacity: 1;
  transition-property: opacity;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
}
#sticker .poduct_box.deactive h3 {
  opacity: 0;
  transition: 0s;
  transition-delay: 0s;
  transform: translateX(-10%);
}
#sticker .poduct_box.deactive .pho {
  opacity: 0;
  transition: 0s;
  transition-delay: 0s;
  transform: translateX(10%);
}
#sticker .poduct_box.deactive .comment_box {
  opacity: 0;
  transition: 0s;
  transition-delay: 0s;
}
#sticker .poduct_box.deactive .img {
  opacity: 0;
  transition: 0s;
  transition-delay: 0s;
  transform: translateY(10%);
}
#sticker .poduct_box.deactive .bg {
  opacity: 0;
  transition: 0s;
  transition-delay: 0s;
}
#sticker .pho_box h3 {
  opacity: 1;
  transition-property: opacity;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
}
#sticker .pho_box .sticker_img {
  opacity: 1;
  transition-property: opacity, transform;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0.8s;
}
#sticker .pho_box .sticker_sub_txt {
  opacity: 1;
  transition-property: opacity, transform;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0.8s;
}
#sticker .pho_box .mobile_order {
  opacity: 1;
  transition-property: opacity, transform;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0.8s;
}
#sticker .pho_box.deactive h3 {
  opacity: 0;
  transition: 0s;
  transition-delay: 0s;
}
#sticker .pho_box.deactive .sticker_img {
  opacity: 0;
  transition: 0s;
  transition-delay: 0s;
}
#sticker .pho_box.deactive .sticker_sub_txt {
  opacity: 0;
  transition: 0s;
  transition-delay: 0s;
}
#sticker .pho_box.deactive .mobile_order {
  opacity: 0;
  transition: 0s;
  transition-delay: 0s;
}

/*--- ゲーム ---*/
#game .title_box .bg {
  opacity: 1;
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}
#game .title_box .camp_no img {
  opacity: 1;
  transition-property: opacity, transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transform: translateX(0);
  transition-delay: 0.15s;
}
#game .title_box .camp_title img {
  opacity: 1;
  transition-property: opacity, transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transform: translateX(0);
  transition-delay: 0.15s;
}
#game .txt_box01 {
  opacity: 1;
  transition-property: opacity;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0.6s;
}
#game .movie_box01 {
  opacity: 1;
  transition-property: opacity;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
}
#game .movie_box01.deactive {
  opacity: 0;
  transition: 0s;
  transition-delay: 0s;
}
#game.deactive .title_box .bg {
  opacity: 0;
  transition: 0s;
  transition-delay: 0s;
}
#game.deactive .title_box .camp_no img {
  opacity: 0;
  transform: translateX(-10%);
  transition: 0s;
  transition-delay: 0s;
}
#game.deactive .title_box .camp_title img {
  opacity: 0;
  transform: translateX(10%);
  transition: 0s;
  transition-delay: 0s;
}
#game.deactive .txt_box01 {
  opacity: 0;
  transition: 0s;
  transition-delay: 0s;
}

/*--- グッズ ---*/
#goods .title_box .bg {
  opacity: 1;
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}
#goods .title_box .camp_no img {
  opacity: 1;
  transition-property: opacity, transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transform: translateX(0);
  transition-delay: 0.15s;
}
#goods .title_box .camp_title img {
  opacity: 1;
  transition-property: opacity, transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transform: translateX(0);
  transition-delay: 0.15s;
}
#goods .head_box .txt01, #goods .head_box .txt02 {
  opacity: 1;
  transition-property: opacity;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0.6s;
}
#goods .head_box .img01, #goods .head_box .img02 {
  opacity: 1;
  transition-property: opacity, transform;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 1s;
  transform: translateY(0);
}
#goods #participation h3 {
  opacity: 1;
  transition-property: opacity;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0.6s;
}
#goods #participation .txt_list01 li {
  opacity: 1;
  transition-property: opacity, transform;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transform: translateY(0);
}
#goods #participation .txt_list01 li:nth-child(1) {
  transition-delay: 0.8s;
}
#goods #participation .txt_list01 li:nth-child(2) {
  transition-delay: 1s;
}
#goods #participation .txt_list01 li:nth-child(3) {
  transition-delay: 1.2s;
}
#goods #participation.deactive h3 {
  opacity: 0;
  transition: 0s;
  transition-delay: 0s;
}
#goods #participation.deactive .txt_list01 li {
  opacity: 0;
  transition: 0s;
  transform: translateY(10%);
}
#goods #participation.deactive .txt_list01 li:nth-child(1), #goods #participation.deactive .txt_list01 li:nth-child(2), #goods #participation.deactive .txt_list01 li:nth-child(3) {
  transition-delay: 0s;
}
#goods.deactive .title_box .bg {
  opacity: 0;
  transition: 0s;
  transition-delay: 0s;
}
#goods.deactive .title_box .camp_no img {
  opacity: 0;
  transform: translateX(-10%);
  transition: 0s;
  transition-delay: 0s;
}
#goods.deactive .title_box .camp_title img {
  opacity: 0;
  transform: translateX(10%);
  transition: 0s;
  transition-delay: 0s;
}
#goods.deactive .head_box .txt01, #goods.deactive .head_box .txt02 {
  opacity: 0;
  transition: 0s;
  transition-delay: 0s;
}
#goods.deactive .head_box .img01, #goods.deactive .head_box .img02 {
  opacity: 0;
  transition: 0s;
  transition-delay: 0s;
  transform: translateY(10%);
}

/*--- Q&A ---*/
#faq .title_box .bg {
  opacity: 1;
  transition-property: opacity, transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transform: translateX(0);
}
#faq .title_box .camp_title img {
  opacity: 1;
  transition-property: opacity, transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0.15s;
  transform: translateX(0);
}
#faq .faq_box {
  opacity: 1;
  transition-property: opacity;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0.6s;
}
#faq.deactive .title_box .bg {
  opacity: 0;
  transition: 0s;
  transition-delay: 0s;
  transform: translateX(20%);
}
#faq.deactive .title_box .camp_title img {
  opacity: 0;
  transition: 0s;
  transition-delay: 0s;
  transform: translateX(-20%);
}
#faq.deactive .faq_box {
  opacity: 0;
  transition: 0s;
  transition-delay: 0s;
}/*# sourceMappingURL=style.css.map */