@charset "UTF-8";
/* import */
/* カラー */
/* レスポンシブ */
/*****STANDART CSS******/

/* ------------------------------
共通
------------------------------*/
:root {
  --view-size: 1600;
}

@media screen and (max-width: 768px) {
  :root {
    --view-size: 375;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var,
video {
  margin: 0;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /******SMOOTH SCROLL ANCHOR******/
}

/*****STANDART CSS******/
/* ---------common--------- */
body {
  margin: 0;
  font-size: calc(16 / var(--view-size) * 100vw);
   font-family: "Zen Kaku Gothic New", sans-serif;
}

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

img {
  vertical-align: bottom;
  width: 100%;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}
.inner {
  margin: 0 auto;
}

/* flex */
.row {
  display: flex;
  flex-wrap: wrap;
}

.between {
  justify-content: space-between;
}

.align_start {
  align-items: flex-start;
}

.align_center {
  align-items: center;
}

.align_end {
  align-items: flex-end;
}

.flex_center {
  justify-content: center;
}

.flex_start {
  justify-content: flex-start;
}

.flex_end {
  justify-content: flex-end;
}

.stretch {
  align-items: stretch;
}

.reverse {
  flex-direction: row-reverse;
}

/* display */
@media (max-width: 768px) {
  .sp_dn {
    display: none;
  }
}

.sp_db {
  display: none;
}
@media (max-width: 768px) {
  .sp_db {
    display: block;
  }
}

@media (max-width: 768px) {
  .tab_dn {
    display: none;
  }
}

.tab_db {
  display: none;
}
@media (max-width: 768px) {
  .tab_db {
    display: block;
  }
}

/* slick */
.slick-prev, .slick-next {
  top: 50%;
  transform: translateY(-50%);
  width: calc(40 / var(--view-size) * 100vw);
  height: calc(40 / var(--view-size) * 100vw);
  z-index: 100;
}
.slick-prev::before, .slick-next::before {
  content: "";
  width: calc(40 / var(--view-size) * 100vw);
  height: calc(40 / var(--view-size) * 100vw);
  padding: 0;
  display: block;
  border-radius: 0;
}
.slick-prev {
  left: calc(-20 / var(--view-size) * 100vw);
}
.slick-next {
  right: calc(-20 / var(--view-size) * 100vw);
}

.eventinfo .slick-prev::before {
  background: url(../images/arrow_left_green.png) center / cover no-repeat;
}
.eventinfo .slick-next::before {
  background: url(../images/arrow_right_green.png) center / cover no-repeat;
}
.newshop .slick-prev::before {
  background: url(../images/arrow_left_pink.png) center / cover no-repeat;
}
.newshop .slick-next::before {
  background: url(../images/arrow_right_pink.png) center / cover no-repeat;
}
.expedition .slick-prev::before {
  background: url(../images/arrow_left_orange.png) center / cover no-repeat;
}
.expedition .slick-next::before {
  background: url(../images/arrow_right_orange.png) center / cover no-repeat;
}

/* cat-top */
#cat-top {
    position: fixed;
    right: calc(10 / var(--view-size) * 100vw);
    bottom: calc(-300 / var(--view-size) * 100vw);
    transition: .3s;
    z-index: 600;
}
#cat-top.active {
  bottom: calc(10 / var(--view-size) * 100vw);
}
#cat-top a {
    width: calc(64 / var(--view-size) * 100vw);
    display: block;
    text-align: center;
    font-size: calc(13 / var(--view-size) * 100vw);
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    line-height: 1;
    transition: 1s;
}
#cat-top a:hover {
  color: #111;
  opacity: 1;
}
#cat-top a:hover span {
  background: #f998a4;
}
#cat-top span {
    padding-top: calc(2 / var(--view-size) * 100vw);
    width: calc(64 / var(--view-size) * 100vw);
    height: calc(64 / var(--view-size) * 100vw);
    display: block;
    background: #c30d23;
    -webkit-border-radius: calc(2 / var(--view-size) * 100vw);
    -moz-border-radius: calc(2 / var(--view-size) * 100vw);
    border-radius: calc(2 / var(--view-size) * 100vw);
    -webkit-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
}
#cat-top img {
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  #cat-top a {
    width: calc(48 / var(--view-size) * 100vw);
    font-size: calc(10 / var(--view-size) * 100vw);
  }
  #cat-top span {
    width: calc(48 / var(--view-size) * 100vw);
    height: calc(48 / var(--view-size) * 100vw);
  }
}

#top_earth {
  margin-top: calc(-64 / var(--view-size) * 100vw);
  padding-top: calc(64 / var(--view-size) * 100vw);
}
/* ------------------------------
end 共通
------------------------------*/

/* ------------------------------
header
------------------------------*/

header {
  background-color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: .3s;
}
.headerlogo {
  width: calc(300 / var(--view-size) * 100vw);
  margin: 0 auto;
  padding: calc(6 / var(--view-size) * 100vw) 0;
  transition: .3s;
}
header.active {
  background-color: rgba(255, 255, 255, 0.7);
}
header.active .headerlogo {
  width: calc(200 / var(--view-size) * 100vw);
  padding: calc(11 / var(--view-size) * 100vw) 0;
}
.headerlogo img {
  vertical-align: baseline;
}
.headerlogo h1 {
  line-height: 1;
}


.menu_btn {
  display: block;
  width: calc(54 / var(--view-size) * 100vw);
  height: calc(54 / var(--view-size) * 100vw);
  position: absolute;
  top: 0;
  right: 0;
  background-color: #cd0080;
  z-index: 4000;
  cursor: pointer;
}
.menu_btn span {
  display: inline-block;
  height: calc(2 / var(--view-size) * 100vw);
  width: calc(28 / var(--view-size) * 100vw);
  background-color: #fff;
  border-radius: calc(10 / var(--view-size) * 100vw);
  position: absolute;
  top: calc(8 / var(--view-size) * 100vw);
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.menu_btn span:nth-child(1) {
  top: calc(15 / var(--view-size) * 100vw);
}
.menu_btn span:nth-child(2) {
  top: calc(25 / var(--view-size) * 100vw);
}
.menu_btn span:nth-child(3) {
  top: calc(35 / var(--view-size) * 100vw);
}


.nav_sp {
  right: -100%;
  opacity: 0;
  position: fixed;
  top: 0;
  width: 30%;
  height: 100%;
  background-color: #00aeeb;
  z-index: 500;
  transition: 500ms ease-out;
  padding: calc(160 / var(--view-size) * 100vw) 0 0;
  text-align: center;
}
.nav_sp li {
  border-bottom: calc(1 / var(--view-size) * 100vw) dashed #fff;
  padding: calc(16 / var(--view-size) * 100vw) 0;
}
.nav_sp a {
  font-size: calc(22 / var(--view-size) * 100vw);
  color: #fff;
  font-weight: bold;
}

.open .menu_btn {
  z-index: 1000;
}
.open .menu_btn span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50% !important;
  left: 50%;
}
.open .menu_btn span:nth-child(2) {
  opacity: 0;
}
.open .menu_btn span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50% !important;
  left: 50%;
}

.open .nav_sp {
  opacity: 1 !important;
  right: 0 !important;
}

@media (max-width: 768px) {
  .headerlogo {
    width: calc(220 / var(--view-size) * 100vw);
    padding: calc(7 / var(--view-size) * 100vw) 0;
  }
  header.active .headerlogo {
    width: calc(180 / var(--view-size) * 100vw);
    padding: calc(7 / var(--view-size) * 100vw) 0;
  }

  .menu_btn {
    width: calc(46 / var(--view-size) * 100vw);
    height: calc(46 / var(--view-size) * 100vw);
  }
  .menu_btn span {
    width: calc(22 / var(--view-size) * 100vw);
  }
  .menu_btn span:nth-child(1) {
    top: calc(15 / var(--view-size) * 100vw);
  }
  .menu_btn span:nth-child(2) {
    top: calc(24 / var(--view-size) * 100vw);
  }
  .menu_btn span:nth-child(3) {
    top: calc(33 / var(--view-size) * 100vw);
  }

  .nav_sp {
    width: 100%;
    padding-top: calc(120 / var(--view-size) * 100vw);
  }
  .nav_sp a {
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}

/* ------------------------------
end header
------------------------------*/

/* ------------------------------
animation
------------------------------*/

/* デフォルトアニメ */
.fadein {
  opacity: 0;
  transform: translateY(3%);
}
.fadein.active {
  animation: 0.3s forwards fadein;
}

.fadein2 {
  opacity: 0;
  transform: translateY(3%);
}
.fadein2.active {
  animation: 0.3s forwards 0.2s fadein;
}

.fadein3 {
  opacity: 0;
  transform: translateY(3%);
}
.fadein3.active {
  animation: 0.3s forwards 0.4s fadein;
}

.fadein4 {
  opacity: 0;
  transform: translateY(3%);
}
.fadein4.active {
  animation: 0.3s forwards 0.6s fadein;
}

.leftin {
  transform: translateX(-100%);
  overflow: hidden;
}
.leftin.active {
  animation: 0.5s forwards leftin;
}

.rightin {
  transform: translateX(100%);
  overflow: hidden;
}
.rightin.active {
  animation: 0.5s forwards rightin;
}

.rightin {
  transform: translateX(100%);
  overflow: hidden;
}
.rightin.active {
  animation: 0.5s forwards rightin;
}

.scale {
  opacity: 0;
  transform: scale(0.5);
}
.scale.active {
  animation: 0.5s forwards scale;
}

/* end デフォルトアニメ */

.top_bg_star {
  opacity: 0;
  transform: scale(0.5);
  animation: 0.8s forwards fadein;
}

.top_levelup_img {
  opacity: 0;
  transform: scale(0.5);
  animation: 0.8s forwards scale;
}

.top_levelup_main_character_01 {
  opacity: 0;
  transform: translateY(6%);
  animation: 0.3s forwards 1s fadein;
}
.top_levelup_main_character_02 {
  opacity: 0;
  transform: translateY(6%);
  animation: 0.3s forwards 1s fadein;
}
.top_levelup_main_character_01.active {
  animation: buruburu 1.3s linear infinite;
  opacity: 1;
}
.top_levelup_main_character_02.active {
  animation: buruburu 1.3s linear infinite;
  opacity: 1;
}
@keyframes buruburu{
 0%{transform:translateY(0)}
 7%{transform:translateY(calc(-5 / var(--view-size) * 100vw))}
 14%{transform:translateY(calc(5 / var(--view-size) * 100vw))}
 20%{transform:translateY(calc(-5 / var(--view-size) * 100vw))}
 32%{transform:translateY(calc(5 / var(--view-size) * 100vw))}
 40%{transform:translateY(0)}
}

.top_levelup_sub_character_01 {
  opacity: 0;
  transform: translateY(6%);
  animation: 0.3s forwards 2s fadein;
}
.top_levelup_sub_character_02 {
  opacity: 0;
  transform: translateY(6%);
  animation: 0.3s forwards 2.2s fadein;
}
.top_levelup_sub_character_03 {
  opacity: 0;
  transform: translateY(6%);
  animation: 0.3s forwards 2.4s fadein;
}
.top_levelup_sub_character_04 {
  opacity: 0;
  transform: translateY(6%);
  animation: 0.3s forwards 2.6s fadein;
}



@keyframes scale {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(6%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes leftin {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes rightin {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
/* ------------------------------
end animation
------------------------------*/

/* ------------------------------
top
------------------------------*/
.top {
  background: url(../images/top_bg.png) center / cover no-repeat;
  height: calc(1856 / var(--view-size) * 100vw);
  margin-top: calc(53 / var(--view-size) * 100vw);
  position: relative;
}
.top_bg_star {
  width: calc(1522 / var(--view-size) * 100vw);
  position: absolute;
  top: calc(12 / var(--view-size) * 100vw);
  left: calc(37 / var(--view-size) * 100vw);
}

.top_levelup_img {
  width: calc(500 / var(--view-size) * 100vw);
  margin: 0 auto;
  padding-top: calc(802 / var(--view-size) * 100vw);
  position: relative;
  z-index: 500;
}
.top_levelup_text {
  position: absolute;
  width: calc(860 / var(--view-size) * 100vw);
  top: calc(80 / var(--view-size) * 100vw);
  left: calc(367 / var(--view-size) * 100vw);
  z-index: 300;
  animation: 0.8s forwards scale;
}
.top_levelup_text.active {
  animation: btn_animation 1.3s ease-in-out infinite;
}

@keyframes btn_animation {
  0% {
    transform: scale(1);
  }
  15.38% {
    transform: scale(1.08); /* 拡大① */
  }
  30.76% {
    transform: scale(1);   /* 縮小① */
  }
  46.15% {
    transform: scale(1.08); /* 拡大② */
  }
  61.53% {
    transform: scale(1);   /* 縮小②（ここまでで0.8秒） */
  }
  100% {
    transform: scale(1);   /* ここまで休憩（0.5秒） */
  }
}



.top_levelup_main_character {
  z-index: 500;
}
.top_levelup_main_character_01 {
  width: calc(95 / var(--view-size) * 100vw);
  position: absolute;
  top: calc(300 / var(--view-size) * 100vw);
  right: calc(647 / var(--view-size) * 100vw);
}
.top_levelup_main_character_02 {
  width: calc(231 / var(--view-size) * 100vw);
  position: absolute;
  top: calc(565 / var(--view-size) * 100vw);
  left: calc(552 / var(--view-size) * 100vw);
}

.top_levelup_sub_character_01 {
  width: calc(81 / var(--view-size) * 100vw);
  position: absolute;
  top: calc(257 / var(--view-size) * 100vw);
  left: calc(213 / var(--view-size) * 100vw);
}
.top_levelup_sub_character_02 {
  width: calc(74 / var(--view-size) * 100vw);
  position: absolute;
  left: calc(304 / var(--view-size) * 100vw);
  top: calc(488 / var(--view-size) * 100vw);
}
.top_levelup_sub_character_03 {
  width: calc(68 / var(--view-size) * 100vw);
  position: absolute;
  right: calc(250 / var(--view-size) * 100vw);
  top: calc(167 / var(--view-size) * 100vw);
}
.top_levelup_sub_character_04 {
  width: calc(81 / var(--view-size) * 100vw);
  position: absolute;
  right: calc(332 / var(--view-size) * 100vw);
  top: calc(617 / var(--view-size) * 100vw);
}

.top_earth_character_01 {
  width: calc(164 / var(--view-size) * 100vw);
  position: absolute;
  top: calc(1005 / var(--view-size) * 100vw);
  left: calc(300 / var(--view-size) * 100vw);
}
.top_earth_character_02 {
  width: calc(193 / var(--view-size) * 100vw);
  position: absolute;
  top: calc(1072 / var(--view-size) * 100vw);
  right: calc(402 / var(--view-size) * 100vw);
}
.top_earth_character_03 {
  width: calc(76 / var(--view-size) * 100vw);
  position: absolute;
  top: calc(1270 / var(--view-size) * 100vw);
  left: calc(530 / var(--view-size) * 100vw);
}
.top_earth_character_04 {
  width: calc(86 / var(--view-size) * 100vw);
  position: absolute;
  top: calc(1282 / var(--view-size) * 100vw);
  right: calc(534 / var(--view-size) * 100vw);
}

.top_earth_ttl {
  width: calc(588 / var(--view-size) * 100vw);
  position: absolute;
  bottom: calc(322 / var(--view-size) * 100vw);
  left: calc(492 / var(--view-size) * 100vw);
}
.top_earth_btns {
  width: calc(1012 / var(--view-size) * 100vw);
  position: absolute;
  left: calc(300 / var(--view-size) * 100vw);
  bottom: calc(32 / var(--view-size) * 100vw);
}
.top_earth_btns a {
  display: block;
  width: calc(460 / var(--view-size) * 100vw);
  position: relative;
}
.top_earth_btns a:nth-child(1)::after {
  content: "";
  background: url(../images/top_earth_btn_and.png) center / cover no-repeat;
  width: calc(64 / var(--view-size) * 100vw);
  height: calc(64 / var(--view-size) * 100vw);
  position: absolute;
  top: calc(182 / var(--view-size) * 100vw);
  right: calc(-78 / var(--view-size) * 100vw);
}
.top_earth_btn_02 {
  transform: translateY(calc(4 / var(--view-size) * 100vw));
}
@media (max-width: 768px) {
  .top {
    height: calc(693 / var(--view-size) * 100vw);
    background: url(../images/top_bg_sp.png) center / cover no-repeat;
    margin-top: calc(46 / var(--view-size) * 100vw);
  }
  .top_bg_star {
    width: calc(345 / var(--view-size) * 100vw);
    top: calc(24 / var(--view-size) * 100vw);
    left: calc(15 / var(--view-size) * 100vw);
  }
  .top_levelup_img {
    width: calc(180 / var(--view-size) * 100vw);
    padding-top: calc(296 / var(--view-size) * 100vw);
  }
  .top_levelup_text {
    width: calc(300 / var(--view-size) * 100vw);
    left: calc(40 / var(--view-size) * 100vw);
    top: calc(40 / var(--view-size) * 100vw);
  }

  .top_levelup_main_character_01 {
    width: calc(32 / var(--view-size) * 100vw);
    top: calc(116 / var(--view-size) * 100vw);
    right: calc(132 / var(--view-size) * 100vw);
  }
  .top_levelup_main_character_02 {
    width: calc(64 / var(--view-size) * 100vw);
    top: calc(228 / var(--view-size) * 100vw);
    left: calc(110 / var(--view-size) * 100vw);
  }

  .top_levelup_sub_character_01 {
    width: calc(26 / var(--view-size) * 100vw);
    top: calc(102 / var(--view-size) * 100vw);
    left: calc(28 / var(--view-size) * 100vw);
  }
  .top_levelup_sub_character_02 {
    width: calc(24 / var(--view-size) * 100vw);
    left: calc(40 / var(--view-size) * 100vw);
    top: calc(174 / var(--view-size) * 100vw);
  }
  .top_levelup_sub_character_03 {
    width: calc(20 / var(--view-size) * 100vw);
    right: calc(30 / var(--view-size) * 100vw);
    top: calc(101 / var(--view-size) * 100vw);
  }
  .top_levelup_sub_character_04 {
    width: calc(22 / var(--view-size) * 100vw);
    right: calc(34 / var(--view-size) * 100vw);
    top: calc(203 / var(--view-size) * 100vw);
  }

  .top_earth_character_01 {
    width: calc(50 / var(--view-size) * 100vw);
    top: calc(385 / var(--view-size) * 100vw);
    left: calc(35 / var(--view-size) * 100vw);
  }
  .top_earth_character_02 {
    width: calc(56 / var(--view-size) * 100vw);
    top: calc(407 / var(--view-size) * 100vw);
    right: calc(58 / var(--view-size) * 100vw);
  }
  .top_earth_character_03 {
    width: calc(22 / var(--view-size) * 100vw);
    top: calc(479 / var(--view-size) * 100vw);
    left: calc(110 / var(--view-size) * 100vw);
  }
  .top_earth_character_04 {
    width: calc(26 / var(--view-size) * 100vw);
    top: calc(483 / var(--view-size) * 100vw);
    right: calc(116 / var(--view-size) * 100vw);
  }

  .top_earth_ttl {
    width: calc(213 / var(--view-size) * 100vw);
    bottom: calc(123 / var(--view-size) * 100vw);
    left: calc(82 / var(--view-size) * 100vw);
  }
  .top_earth_btns {
    width: calc(335 / var(--view-size) * 100vw);
    left: calc(21 / var(--view-size) * 100vw);
    bottom: calc(28 / var(--view-size) * 100vw);
  }
  .top_earth_btns a {
    width: calc(150 / var(--view-size) * 100vw);
  }
  .top_earth_btns a:nth-child(1)::after {
    width: calc(24 / var(--view-size) * 100vw);
    height: calc(24 / var(--view-size) * 100vw);
    top: calc(55 / var(--view-size) * 100vw);
    right: calc(-32 / var(--view-size) * 100vw);
  }

  .top_earth_btn_02 {
    transform: translateY(calc(1 / var(--view-size) * 100vw));
  }

}
/* ------------------------------
end top
------------------------------*/


/* ------------------------------
eventinfo
------------------------------*/
.eventinfo {
  background-color: #00aeeb;
  position: relative;
  padding: calc(126 / var(--view-size) * 100vw) 0 calc(106 / var(--view-size) * 100vw);
}
.eventinfo .inner {
  position: relative;
  z-index: 500;
}
.eventinfo_bg {
  width: 100%;
  position: absolute;
  left: 0;
  top: calc(64 / var(--view-size) * 100vw);
  z-index: 100;
}
.eventinfo .inner {
  width: calc(1060 / var(--view-size) * 100vw);
}
.eventinfo_ttl {
  margin-bottom: calc(40 / var(--view-size) * 100vw);
}
.eventinfo_main {
  width: calc(813 / var(--view-size) * 100vw);
  margin: 0 auto calc(64 / var(--view-size) * 100vw);
  display: block;
  transition: .3s !important;
  position: relative;
}
.eventinfo_main .eventinfo_main_img:hover {
  opacity: 1;
}

.eventinfo_img {
  width: calc(498 / var(--view-size) * 100vw);
  margin-bottom: calc(64 / var(--view-size) * 100vw);
  display: block;
  transition: .3s !important;
}

.eventinfo_img:hover {
  opacity: 0.7 !important;
}
.eventinfo_main .eventinfo_main_apl {
  width: calc(144 / var(--view-size) * 100vw);
  position: absolute;
  right: calc(53 / var(--view-size) * 100vw);
  top: calc(158 / var(--view-size) * 100vw);
  transition: .3s;
  z-index: 100;
}
.eventinfo_main .eventinfo_main_apl:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .eventinfo {
    padding: calc(48 / var(--view-size) * 100vw) 0;
    overflow: hidden;
  }
  .eventinfo_bg {
    top: calc(24 / var(--view-size) * 100vw);
  }
  .eventinfo .inner {
    width: calc(335 / var(--view-size) * 100vw);
  }
  .eventinfo_ttl {
    margin-bottom: calc(24 / var(--view-size) * 100vw);
  }

 .eventinfo_img {
    width: 90%;
    margin: 0 auto;
    margin-bottom: calc(32 / var(--view-size) * 100vw);
  }
  .eventinfo_img:last-child {
    margin-bottom: 0;
  }
  .eventinfo_main {
    width: 90%;
    margin: 0 auto;
    margin-bottom: calc(32 / var(--view-size) * 100vw);
  }
  .eventinfo_main .eventinfo_main_apl {
    width: calc(198 / var(--view-size) * 100vw);
    right: calc(28 / var(--view-size) * 100vw);
    top: calc(276 / var(--view-size) * 100vw);
  }
}

/* ------------------------------
end eventinfo
------------------------------*/



/* ------------------------------
newshop
------------------------------*/
.newshop {
  padding: calc(116 / var(--view-size) * 100vw) 0 calc(70 / var(--view-size) * 100vw);
  background: url(../images/newshop_bg.png) top / cover no-repeat;
  position: relative;
}
.newshop .inner {
  width: calc(1097 / var(--view-size) * 100vw);
}
.newshop_illust {
  position: absolute;
  top: calc(374 / var(--view-size) * 100vw);
  width: 100%;
}
.newshop_ttl {
  margin-bottom: calc(40 / var(--view-size) * 100vw);
}
.newshop_cont {
  width: calc(813 / var(--view-size) * 100vw);
  margin: 0 auto;
}
.newshop_img {
  margin-bottom: calc(64 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .newshop {
    padding: calc(48 / var(--view-size) * 100vw) 0;
  }
  .newshop .inner {
    width: calc(335 / var(--view-size) * 100vw);
  }
  .newshop_ttl {
    margin-bottom: calc(24 / var(--view-size) * 100vw);
  }
  .newshop_illust {
    top: calc(54 / var(--view-size) * 100vw);
  }
  .newshop_img {
    margin-bottom: 0;
    margin: 0 calc(12 / var(--view-size) * 100vw);
  }
  .newshop_slide {
    width: 90%;
    margin: 0 auto;
  }
}

/* ------------------------------
end newshop
------------------------------*/



/* ------------------------------
expedition
------------------------------*/
.expedition {
  padding: calc(116 / var(--view-size) * 100vw) 0 calc(80 / var(--view-size) * 100vw);
  background: url(../images/expedition_bg.png) top / cover no-repeat;
  position: relative;
  transform: translateY(calc(-1 / var(--view-size) * 100vw));
}
.expedition .inner {
  width: calc(1097 / var(--view-size) * 100vw);
}
.expedition_illust {
  position: absolute;
  top: calc(3 / var(--view-size) * 100vw);
  width: 100%;
}
.expedition_ttl {
  margin-bottom: calc(40 / var(--view-size) * 100vw);
}
.expedition_cont {
  width: calc(1020 / var(--view-size) * 100vw);
  margin: 0 auto;
}
.expedition_img {
  margin-bottom: calc(64 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .expedition {
    padding: calc(48 / var(--view-size) * 100vw) 0;
    overflow: hidden;
  }
  .expedition .inner {
    width: calc(335 / var(--view-size) * 100vw);
  }
  .expedition_ttl {
    margin-bottom: calc(24 / var(--view-size) * 100vw);
  }
  .expedition_illust {
    top: calc(16 / var(--view-size) * 100vw);
  }
  .expedition_img {
    margin-bottom: 0;
    margin: 0 calc(8 / var(--view-size) * 100vw);
  }
  .expedition_slide {
    width: 90%;
    margin: 0 auto;
  }
}

/* ------------------------------
end expedition
------------------------------*/


/* ------------------------------
powerup
------------------------------*/
.powerup {
  padding: calc(88 / var(--view-size) * 100vw) 0 calc(146 / var(--view-size) * 100vw);
  background: url(../images/powerup_bg.png) center / cover no-repeat;
  transform: translateY(calc(-1 / var(--view-size) * 100vw));
}
.powerup .inner {
  width: calc(1200 / var(--view-size) * 100vw);
}
.powerup_ttl {
  margin-bottom: calc(64 / var(--view-size) * 100vw);
  width: calc(1077 / var(--view-size) * 100vw);
}
.powerup_box {
  background-color: #fff6bb;
  border-radius: calc(60 / var(--view-size) * 100vw);
  padding-bottom: calc(132 / var(--view-size) * 100vw);
}
.powerup_box_ttl {
  width: calc(1160 / var(--view-size) * 100vw);
  padding-top: calc(16 / var(--view-size) * 100vw);
}
.powerup_box_cont {
  width: calc(820 / var(--view-size) * 100vw);
  margin: 0 auto;
}
.powerup_box_img {
  margin-bottom: calc(64 / var(--view-size) * 100vw);
}
.powerup_box_img:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .powerup {
    padding: calc(16 / var(--view-size) * 100vw) 0 calc(56 / var(--view-size) * 100vw);
  }
  .powerup .inner {
    width: calc(335 / var(--view-size) * 100vw);
  }
  .powerup_ttl {
    margin-bottom: calc(32 / var(--view-size) * 100vw);
    width: calc(300 / var(--view-size) * 100vw);
  }
  .powerup_box {
    border-radius: calc(32 / var(--view-size) * 100vw);
    padding-bottom: calc(48 / var(--view-size) * 100vw);
  }
  .powerup_box_ttl {
    width: calc(320 / var(--view-size) * 100vw);
  }
  .powerup_box_cont {
    width: calc(300 / var(--view-size) * 100vw);
  }
  .powerup_box_img {
    margin-bottom: calc(40 / var(--view-size) * 100vw);
  }
}

/* ------------------------------
end powerup
------------------------------*/


/* ------------------------------
cooldown
------------------------------*/
.cooldown {
  padding: calc(88 / var(--view-size) * 100vw) 0 calc(146 / var(--view-size) * 100vw);
  background: url(../images/cooldown_bg.png) center / cover no-repeat;
  transform: translateY(calc(-1 / var(--view-size) * 100vw));
}
.cooldown .inner {
  width: calc(1200 / var(--view-size) * 100vw);
}
.cooldown_ttl {
  margin-bottom: calc(64 / var(--view-size) * 100vw);
  width: calc(1097 / var(--view-size) * 100vw);
  margin-left: auto;
}
.cooldown_box {
  background-color: #d4f0ff;
  border-radius: calc(60 / var(--view-size) * 100vw);
  padding-bottom: calc(132 / var(--view-size) * 100vw);
}
.cooldown_box_ttl {
  width: calc(1160 / var(--view-size) * 100vw);
  padding-top: calc(16 / var(--view-size) * 100vw);
}
.cooldown_box_cont {
  width: calc(820 / var(--view-size) * 100vw);
  margin: 0 auto;
}
.cooldown_box_img {
  margin-bottom: calc(64 / var(--view-size) * 100vw);
}
.cooldown_box_img:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .cooldown {
    padding: calc(32 / var(--view-size) * 100vw) 0 calc(56 / var(--view-size) * 100vw);
  }
  .cooldown .inner {
    width: calc(335 / var(--view-size) * 100vw);
  }
  .cooldown_ttl {
    margin-bottom: calc(32 / var(--view-size) * 100vw);
    width: calc(300 / var(--view-size) * 100vw);
  }
  .cooldown_box {
    border-radius: calc(32 / var(--view-size) * 100vw);
    padding-bottom: calc(48 / var(--view-size) * 100vw);
  }
  .cooldown_box_ttl {
    width: calc(320 / var(--view-size) * 100vw);
  }
  .cooldown_box_cont {
    width: calc(300 / var(--view-size) * 100vw);
  }
  .cooldown_box_img {
    margin-bottom: calc(40 / var(--view-size) * 100vw);
  }
}

/* ------------------------------
end cooldown
------------------------------*/



/* ------------------------------
cinema
------------------------------*/
.cinema {
  background-color: #d4d7da;
  padding: calc(56 / var(--view-size) * 100vw) 0 calc(72 / var(--view-size) * 100vw);
  border-top: calc(12 / var(--view-size) * 100vw) solid #000;
  border-bottom: calc(12 / var(--view-size) * 100vw) solid #000;
  transform: translateY(calc(-1 / var(--view-size) * 100vw));
}
.cinema_ttl {
  width: calc(985 / var(--view-size) * 100vw);
  margin: 0 auto calc(40 / var(--view-size) * 100vw);
}
.cinema_row {
  width: calc(900 / var(--view-size) * 100vw);
  margin: 0 auto;
}
.cinema_img {
  width: calc(407 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .cinema {
    padding: calc(48 / var(--view-size) * 100vw) 0 calc(40 / var(--view-size) * 100vw);
    border-top: calc(8 / var(--view-size) * 100vw) solid #000;
    border-bottom: calc(8 / var(--view-size) * 100vw) solid #000;
  }
  .cinema_ttl {
    width: calc(335 / var(--view-size) * 100vw);
  }
  .cinema_row {
    width: calc(240 / var(--view-size) * 100vw);
  }
  .cinema_img {
    width: 100%;
    margin-bottom: calc(32 / var(--view-size) * 100vw);
  }
  .cinema_img:last-child {
    margin-bottom: 0;
  }
}
/* ------------------------------
end cinema
------------------------------*/



/* ------------------------------
clear
------------------------------*/
.clear {
  padding: calc(64 / var(--view-size) * 100vw) 0;
  background: url(../images/clear_bg.png) center / cover no-repeat;
}
.clear_cont {
  width: calc(1012 / var(--view-size) * 100vw);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .clear {
    padding: calc(40 / var(--view-size) * 100vw) 0;
  }
  .clear_cont {
    width: calc(330 / var(--view-size) * 100vw);
  }
}
/* ------------------------------
end clear
------------------------------*/