@charset "UTF-8";
/* 簡易リセットCSS */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@700&display=swap");

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: 'Kaisei Opti', serif !important;
  font-weight: 700;
}

.particle-network-animation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  pointer-events:none;
  z-index: 5;
  opacity: 0.6;
}
.particle-network-animation::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  opacity: 0.2;
}

h1 {
  margin: 0;
  padding: 0;
  font-size: .24rem;
}

li,
ul {
  margin: 0;
  padding: 0;
  list-style: none inside;
}

html {
  font-size: 16px;
  overflow-x: hidden;
}

html::-webkit-scrollbar {
  display: none;
}

.fade-in-up {
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-500 {
  animation-delay: 0.5s;
}

.delay-600 {
  animation-delay: 0.6s;
}

body {
  position: relative;
  width: 100%;
  color: var(--color_text);
  font-size: 1rem;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  overflow-y: hidden;
  background: url(../img/pc/bg2.jpg) no-repeat center center;
  background-attachment: fixed;
  overflow: hidden;
  padding: 41px 0 0 0 !important;
}

header {
  width: 100%;
  position: fixed;
  z-index: 1000;
  height: 3.75rem;
}

.sp_header {
  display: none;
}

header nav {
  width: 100%;
  position: relative;
  transition: 0.3s;
  background: #f3e5cf;
  height: 4.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom: .125rem solid #544a49;
  margin-top: 0;
  border-radius: 0 0 1.5625rem 1.5625rem;
}

header nav:after {
  content: "";
  width: 100%;
  height: 2.8125rem;
  background: url(../img/nav.png) no-repeat center top;
  background-size: 100%;
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
}

header nav .menu_pc {
  width: 100%;
  max-width: 42rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 0 auto;
  z-index: 100;
  position: sticky;
}

header nav .menu_pc li a {
  color: #3a3231;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.8rem;
}

header nav .menu_pc li a:hover {
  color: #bb0408;
}

.swiper-pagination {
  transition: 0s;
  transition-delay: 0s;
}

header nav .global_pagination {
  width: 9rem;
  height: .6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

header nav .global_pagination .gp-bullet-active {
  background-position-y: -0.6rem !important;
}

header nav .global_pagination span {
  width: 1.38rem;
  height: .6rem;
  margin: 0 .1rem !important;
  opacity: 1;
  font-size: 0;
  outline: none;
  line-height: 0;
}

.top_icon,
.menu,
.menu_open {
  display: none;
}

footer {
  background: #ffffff;
  height: 10rem;
  /* position: absolute; */
  bottom: 0;
  width: 100%;
  z-index: 101;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
  font-family: Avenir, Helvetica, Arial, sans-serif;
  font-weight: 100;
}

footer .company_info {
  padding: 1.875rem;
  position: relative;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

footer .company_info img {
  width: 11.625rem;
  height: 4.3125rem;
}

footer .company_info div {
  margin: 0rem 0rem 0rem 2.5rem;
}

footer .company_info ul {
  margin-bottom: 0rem;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

footer .company_info ul li {
  margin: 0 .3125rem;
  padding-left: .3125rem;
  border-left: .0625rem solid #cccccc;
}

footer .company_info ul li a {
  color: #000;
  text-decoration: none;
  font-weight: 300;
}

footer .company_info ul li a:hover {
  color: #0d6efd;
  text-decoration: underline;
}

footer .company_info ul li:first-child {
  border: none;
  padding-left: 0rem;
  margin: 0 .625rem 0 0;
}

footer p {
  width: 100%;
  text-align: center;
  margin: .5rem 0 0;
  color: #000;
  font-size: .875rem;
}

.go_top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.875rem;
  z-index: 999;
  display: none;
  transition: transform 0.5s ease-in-out;
  width: 7rem;
  height: 7rem;
}

.go_top img {
  width: 100%;
}

/* Google Fonts読み込み */
/* スライダー全体 */
.vertical-slider {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-color: #2d2c41;
}

/* スライド */
.vertical-slider__slide {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 10rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
  color: #fff;
  z-index: -3;
}

.vertical-slider__slide>section {
  position: relative;
  z-index: 10;
}

/* SP時の文字サイズ調整 */
@media (max-width: 37.4375rem) {
  .vertical-slider__slide {
    font-size: 16vw;
  }
}

#top {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-image: url(../img/pc/top_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  position: relative;
}
.sp_start_btn,.sp_start_btn_off{
  display:none;
}

.pc_start_btn,.pc_start_btn_off{
  width: 18rem;
  height:18rem;
  display: block;
  position: absolute;
  left: 65%;
  top: 65%;
   transition: transform 0.5s ease;
}

.pc_start_btn:hover{
  transform: scale(1.05); 
}

.pc_start_btn img,.pc_start_btn_off img{
  width:100%;
}

.sp_top_bg {
  display: none;
}

.hide {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.2);
}

.hide2 {
  display: none;
}

.hide3 {
  opacity: 0;
}

#rewards {
  width: 100%;
  z-index: 0;
  position: relative;
  padding: 6.25rem 0;
  scroll-margin-top: 0rem;
  background: url(../img/pc/rewards/rewards_bg.jpg) no-repeat center center;
  background-size: cover;
}

#rewards h1 {
  width: 34rem;
  height: auto;
  margin: 0px auto 1.125rem;
  z-index: 100;
  position: sticky;
}

#rewards h1 img {
  width: 100%;
}

#rewards .rewards_wrapper {
  width: 100%;
  max-width: 52rem;
  height: auto;
  margin: 0 auto;
  transform: translate(-13rem,0%);
  z-index: 1;
  position: sticky;
}
.rewards_banner{
  display:flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.rewards_banner li{margin: 1rem 0.5rem;}
.rewards_banner li img{
  width:100%;
  height: 16.18rem;
  transition: transform 0.5s ease;
}
.rewards_banner li img:hover{
  transform: scale(1.05); 
}
.sp_rewards_banner{
  display:none;
}

#feature {
  width: 100%;
  z-index: 0;
  position: relative;
  scroll-margin-top: 6.25rem;
}

#feature h1 {
  width: 43.75rem;
  height: 6.8125rem;
  margin: 9.375rem auto 3.125rem;
  z-index: 100;
  position: sticky;
}

#feature h1 img {
  width: 100%;
}

#feature .feature-slider {
  position: relative;
  z-index: 2;
  min-width: 600px;
  width: 90%;
  max-width: 1280px;
  margin: 3.125rem auto 0 auto;
  padding: 0 0 3.125rem 0 !important;
  filter: drop-shadow(.1875rem .1875rem .1875rem rgba(0, 0, 0, 0.3));
}

#feature .feature-slider .swiper-slide {
  width: 60.4375rem;
  margin: 0 auto;
  opacity: 0.4;
  overflow: hidden;
  transition: 0.7s;
  transform: scale(0.9);
}

#feature .feature-slider .swiper-slide img {
  display: block;
  width: 100%;
  margin: 0 auto;
  max-width: 960px;
  aspect-ratio: 1104 / 621;
  border: 1px #f7e34e solid;
}

#feature .feature-slider .swiper-slide-active {
  opacity: 1;
  z-index: 1;
  transform: scale(1);
}

#feature .feature-slider .swiper-slide-active {
  opacity: 1;
  z-index: 1;
  transform: scale(1);
}

#feature .feature_pagination {
  width: 100%;
  text-align: center;
  line-height: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

#feature .feature_pagination .swiper-pagination-bullet {
  width: .9375rem;
  height: .9375rem;
  display: inline-block;
  border-radius: 100%;
  opacity: 1;
  background: #22324e;
}

#feature .feature_pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #ffaf39;
  width: 1.875rem;
  height: .9375rem;
  border-radius: .625rem;
}

#feature .feature_pagination span {
  margin: 0 .5rem;
}

#feature .feature_pagination span:focus {
  outline: -webkit-focus-ring-color auto 0rem;
}

#feature .prev svg {
  width: 3.125rem;
  height: 3.125rem;
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translate(-50%, 0);
  display: flex;
  z-index: 100;
  fill: #182b42;
  cursor: pointer;
  display: none;
}

#feature .next svg {
  width: 3.125rem;
  height: 3.125rem;
  position: absolute;
  top: 50%;
  right: 12%;
  transform: translate(-50%, 0);
  display: flex;
  z-index: 100;
  fill: #182b42;
  cursor: pointer;
  display: none;
}

#feature .next svg:hover,
#feature .prev svg:hover {
  fill: #2d4f78;
}

#world {
  width: 100%;
  background: url(../img/pc/world/world_bg.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 6.25rem 0;
  scroll-margin-top: 2rem;
  overflow: hidden;
}

#world:after{
  content:"";
  width:100%;
  max-width: 60rem;
  height:100%;
  background: url(../img/pc/world/character.png) no-repeat center center;
  background-size: cover;
  position:absolute;
  left: 50%;
  transform: translateX(0rem);
  top: 4rem;
  animation: gentle-float 3s ease-in-out infinite;
}
@keyframes gentle-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1rem);
  }
}

#world h1 {
  width: 24rem;
  height: auto;
  margin: 0rem auto 3.125rem;
  z-index: 100;
  position: sticky;
  display: flex;
  align-items: center;
  justify-content: center;
}

#world h1 img {
  width: 100%;
}

#world .world_text {
  width: 55.6875rem;
  display: block;
  margin: 0 auto;
  transform: translate(-8rem,0%);
  z-index: 1;
  position: sticky;
}

#world .world_text img {
  width: 100%;
}

#spec {
  width: 100%;
  background: linear-gradient(90deg, #302a2a,#544a49,#302a2a);
  background-size: 100%;
  padding: 3.125rem 0 0;
  scroll-margin-top: 0rem;
  z-index: 6;
  position: sticky;
}

.spec_info {
  padding: 0rem 0 4.25rem;
}

#spec h1 {
  width: 6.86rem;
  height: 1rem;
  margin: 1.2rem auto .2rem;
  z-index: 100;
  position: sticky;
}

#spec h1 img {
  width: 100%;
}

.assist {
  width: 100%;
  max-width: 56.25rem;
  margin: 2rem auto;
  color: #fff;
  background: rgb(0 0 0 / 45%);
  padding: 2rem;
}

.assist h2 {
  font-size: 1.25rem;
  font-weight: 600;
  width: 100%;
  text-align: center;
  margin-bottom: 1rem;
}

#spec .spec_inner {
  width: 100%;
  max-width: 56.25rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}

#spec .spec_inner img {
  display: block;
  width: 13.125rem;
  border-radius: 1.25rem;
  border: .25rem solid #fff;
}

#spec .spec_inner .spec_table {
  font-size: .9375rem;
  border-collapse: separate;
  border-spacing: .25rem;
  color: #fff;
}

#spec .spec_inner .spec_table th {
  padding: .3125rem;
  width: 8.75rem;
  text-align: center;
  margin-right: .1875rem;
  vertical-align: middle;
  background-color: rgb(0 0 0 / 45%);
}

#spec .spec_inner .spec_table td {
  vertical-align: middle;
  padding: 0 1em;
  background-color: rgb(0 0 0 / 45%);
}

#spec .spec_inner .spec_table td span {
  font-size: 70%;
}

#spec .notice {
  line-height: 2;
  font-size: 1rem;
  display: block;
  margin: 3.125rem auto 0;
  width: 100%;
  background: rgb(0 0 0 / 45%);
  max-width: 56.25rem;
  padding: 1em 2em;
  color: #fff;
}

#spec .notice span {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
}

.hide4 {
  display: none;
}

#foot_link,
#foot_link_ed {
  position: fixed;
  bottom: 1.5rem;
  right: 0;
  z-index: 2;
  transition: 0.3s;
  /* transform: translateY(-65%); */
  display: none;
  width: 2rem;
  height: 2rem;
}

#foot_link img {
  width: 100%;
  opacity: 0.7;
}

#foot_link_ed img {
  width: 100%;
  opacity: 0.7;
}

#foot_link img:hover {
  content: url(../img/start2_on.png);
  scale: 1.01;
  transition: 0.2s;
  opacity: 1;
}



body#finish {
  min-width: 9rem;
  background-image: none;
  background-color: #fff;
}

body#finish #wrapper {
  background-image: none !important;
}

body#finish footer {
  position: static;
}

.finish {
  background-image: none !important;
}

#finish_body {
  min-width: 9rem;
  height: 57rem;
  width: 100%;
  background: url(../img/pc/finish.jpg) no-repeat center top;
  background-size: cover;
}

body#finish .finish .return {
  position: absolute;
  width: 24rem;
  height: 6rem;
  left: 50%;
  transform: translate(-31rem, 0);
  bottom: 17.5rem;
  background: url(
  ../img/return.png) no-repeat center center;
  background-size: 100%;
}

@media only screen and (min-width:2000px) {
  html{
    font-size: 18px;
  }
}

@media only screen and (min-width:1600px) and (max-width:1919px) {
  html{
    font-size: 15px;
  }

} 

@media only screen and (min-width:1440px) and (max-width:1599px) {
  html{
    font-size: 13px;
  }
} 


@media only screen and (min-width:1334px) and (max-width:1439px) {
  html{
    font-size: 14px;
  }
} 

@media only screen and (min-width:1280px) and (max-width:1333px) {
  html{
    font-size: 13px;
  }
} 

@media only screen and (min-width:1100px) and (max-width:1279px) {
  html{
    font-size: 13px;
  }  
} 
@media only screen and (min-width:700px) and (max-width:1099px) {
  html{
    font-size: 12px;
  }
} 
