:root {
  --red01: #b70000;
  --red02: #780000;
  --orange: #ee7b3a;
  --yellow: #f7de7f;
  --white: #ffffff;
  --white02: #eeeeff;
  --white03: #ffffee;
  --black: #222222;
  
  --fs14: calc(14 / 16 * 1rem);
  --fs17: calc(17 / 16 * 1rem);
  --fs20: calc(20 / 16 * 1rem);
  --fs25: calc(25 / 16 * 1rem);
  --fs30: calc(30 / 16 * 1rem);
  --fs40: calc(40 / 16 * 1rem);
  --fs50: calc(50 / 16 * 1rem);
  --fs60: calc(60 / 16 * 1rem);

  --ffgo: 'Zen Kaku Gothic New', sans-serif;
}

html {
  font-size: 100%;
  width: 100%;
  height: 100%;
}

body {
  overflow-x: hidden;
  background-color: var(--white);
  color: var(--black);
  font-weight: 500;
  font-size: var(--fs17);
  font-family: 'Zen Old Mincho', serif;
  line-height: 1.6;
  letter-spacing: 0.1em;
  word-break: break-all;
}

a {
  text-decoration: none;
}

h1 {
  color: var(--white);
  font-weight: 900;
  font-size: var(--fs60);
  line-height: 1;
}

h2 {
  margin-bottom: 50px;
  color: var(--black);
  font-weight: 900;
  font-size: var(--fs50);
  line-height: 1.2;
}

h2::first-letter {
  color: var(--red01);
}

h3 {
  margin-bottom: 30px;
  color: var(--black);
  font-weight: 900;
  font-size: var(--fs40);
  line-height: 1;
}

h4 {
  margin: 0 auto 20px;
  color: var(--black);
  font-size: var(--fs30);
  font-weight: 700;
  text-align: center;
}

h5 {
  margin-bottom: 25px;
  color: var(--purple01);
  font-size: var(--fs30);
  font-weight: 700;
  text-align: center;
}

.fs20 {
  font-size: var(--fs20);
}

.fs30 {
  font-size: var(--fs30);
}

img {
  height: auto;
}

.inner {
  width: 1150px;
  margin: 0 auto;
  padding: 80px 0;
}

.inner-bg {
  background: radial-gradient(20px circle at 50% 150%, var(--white) 0% 12.5%, var(--white02) 12.5% 25%, var(--white) 25% 37.5%, var(--white02) 37.5% 50%, var(--white) 50% 62.5%, var(--white02) 62.5% 75%, var(--white) 75% 87.5%, var(--white02) 87.5% 99.9%, transparent 99.9% 100%) 20px 0px/40px 20px
  ,radial-gradient(20px circle at 50% 100%, var(--white) 0% 12.5%, var(--white02) 12.5% 25%, var(--white) 25% 37.5%, var(--white02) 37.5% 50%, var(--white) 50% 62.5%, var(--white02) 62.5% 75%, var(--white) 75% 87.5%, var(--white02) 87.5% 99.9%, transparent 99.9% 100%) 0px 0px/40px 20px
  ,radial-gradient(20px circle at 50% 100%, var(--white) 0% 12.5%, var(--white02) 12.5% 25%, var(--white) 25% 37.5%, var(--white02) 37.5% 50%, var(--white) 50% 62.5%, var(--white02) 62.5% 75%, var(--white) 75% 87.5%, var(--white02) 87.5% 99.9%, transparent 99.9% 100%) 20px 10px/40px 20px;
}

.top-block {
  padding: 160px 0 100px;
  text-align: center;
  border-bottom: 5px solid var(--red01);
}

.pc {
  display: block;
}

.sp {
  display: none;   
}

/*LOADING*/
#loading {
  position: fixed;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  background-color: var(--white);
  text-align:center;
}

#loading-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#loading-logo .logo {
  opacity: 0;
  width: 500px;
  animation-name: logo;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
}

@keyframes logo {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}
/*-------*/

/*NAV*/
.nav-bg {
  position: fixed;
  top: 0;
  z-index: 5;
  width: 100%;
  height: 60px;
  background-color: var(--black);
  border-bottom: 2px solid var(--red01);
}

.nav-pc {display: block;}
.nav-sp-content {display: none;}

.nav-pc-list {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 850px;
  height: 60px;
  margin: 0 auto;
}

.nav-pc-list li {
  list-style: none;
}

.nav-pc-list li a {
  width: 80%;
  color: var(--white);
  font-weight: 900;
  transition-property: color;
  transition-duration: .2s;
}

.nav-pc-list li a:hover {
  color: var(--yellow);
}

.nav-pc-list li .pick {
  color: var(--yellow);
}

.open .nav-sp {
  right: 0;
  opacity: 1;
}

.nav-mask {
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 98;
  width: 0;
  height: 100vh;
  transition-property: opacity, background, width;
  transition-duration: .5s, .5s, 0s;
  transition-delay: 0s, 0s, .5s;
}

.open .nav-mask {
  opacity: 1;
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 98;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition-property: opacity, background;
  transition-duration: .5s, .5s;
}

.nav-btn {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  transition: all .5s;
  cursor: pointer;
  z-index: 101;
  opacity: 1;
}

.nav-btn span {
  display: block;
  position: absolute;
  left: 25%;
  width: 30px;
  height: 2px;
  background-color: var(--white);
  transition: all .4s;
}

.nav-btn span:nth-child(1) {
  top: 35%;
}

.nav-btn span:nth-child(2) {
  top: 50%;
}

.nav-btn span:nth-child(3) {
  top: 65%;
}

.open .nav-btn {
  box-shadow: none;
}

.open .nav-btn span {
  background-color: var(--white);
}

.open .nav-btn span:nth-child(1) {
  transform: translateY(9px) rotate(-45deg);
}

.open .nav-btn span:nth-child(2) {
  opacity: 0;
}

.open .nav-btn span:nth-child(3) {
  transform: translateY(-9px) rotate(45deg);
}
/*---*/

/*HEADER*/
#main-visual {
  background-image: url(../img/top/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

#main-visual .main-visual-area {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

#main-visual .main-visual-chara {
  overflow: hidden;
}

#main-visual .main-visual-chara img {
  display: block;
  width: 900px;
  margin: 0 auto;
  padding-top: 60px;
}

#main-visual .main-visual-cs {
  position: absolute;
  top: 70px;
  left: 10px;
}

#main-visual .main-visual-cs img {
  display: block;
  width: 55px;
}

#main-visual .main-visual-logo {
  position: absolute;
  left: 50%;
  top: 66%;
  width: 480px;
  transform: translateX(-50%);
}

#main-visual .main-visual-logo img {
  display: block;
  width: 100%;
}

#main-visual .main-visual-day {
  position: absolute;
  left: 50%;
  top: 92%;
  width: 480px;
  transform: translateX(-50%);
}

#main-visual .main-visual-day img {
  display: block;
  width: 100%;
}
/*------*/

/*footer*/
#footer {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 80px 0;
  background-color: var(--red02);
  font-size: var(--fs14);
  font-family: var(--ffgo);
  text-align: center;
}

.footer-sns {
  display: flex;
  list-style: none;
  margin-bottom: 50px;
  justify-content: center;
}

.footer-sns li {
  margin: 0 20px;
}

.footer-sns img {
  width: 100%;
}

.footer-logo-eg {
  margin-bottom: 50px;
}

.footer-sns img, .footer-logo-eg img {
  transition-duration: 0.2s;
  transition-property: opacity;
}

.footer-sns img:hover, .footer-logo-eg img:hover {
  opacity: 0.7;
}

.footer-text {
  width: 90%;
  margin: 0 auto;
  color: var(--white);
}

.footer-text p {
    padding-bottom: 15px;
}

.footer-text img {
    vertical-align: middle;
}
/*------*/

/*NEWS*/
#news {
  border-top: 2px solid var(--red01);
}

.news-area {
  height: 140px;
  overflow-y: scroll;
  padding: 12px 20px;
  border: 2px solid var(--red01);
  background-color: var(--white);
}

.news-area::-webkit-scrollbar {
  width: 10px;
}

.news-area::-webkit-scrollbar-track {
  background-color: var(--white);
}

.news-area::-webkit-scrollbar-thumb {
  background-color: var(--red01);
}

.news-list {
  display: flex;
  padding: 7px 0;
  border-bottom: 1px dotted var(--black);
  font-family: var(--ffgo);
}

.news-list:first-child {
  padding: 0 0 7px;
}

.day {
  display: block;
  min-width: 130px;
  color: var(--red01);
  font-weight: 900;
}

.text {
  display: block;
}

.text a {
  color: var(--red01);
}
/*----*/

/*TOPICS*/
#topics {
  border-top: 2px solid var(--red01);
}

.topics-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.topics-area::after {
  content: "";
  display: block;
  width: 32%;
}

.topics-banner {
  width: 32%;
  margin-bottom: 30px;
}

.topics-img {
  overflow: hidden;
  border: 3px solid var(--red01);
  margin-bottom: 5px;
}

.topics-banner img {
  width: 100%;
  transform: scale(1.01);
  transition-duration: .2s;
  transition-property: transform;
}

.topics-banner img:hover {
  transform: scale(1.05);
}

.topics-banner p {
  text-align: center;
  color: var(--black);
  font-weight: 700;
  font-family: var(--ffgo);
}
/*------*/

/*STORY*/
.top-block-story {
  background-image: url(../img/common/bg/bg01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.story-area {
  text-align: center;
  font-weight: 900;
  font-size: var(--fs20);
  line-height: 1.8;
  text-shadow: -1px -1px 1px var(--white), 0 -1px 1px var(--white), 1px -1px 1px var(--white), -1px 0px 1px var(--white), 1px 0px 1px var(--white), -1px 1px 1px var(--white), 0px 1px 1px var(--white), 1px -1px 1px var(--white);
}

.story-area p {
  margin-bottom: 30px;
}

.story-area span {
  color: var(--red01);
}

.story-area .story-img1 {
  width: 1000px;
  margin: 0 auto;
}

.story-area .story-img1 img {
  width: 100%;
}

.story-img2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 600px;
  margin: 0 auto;
}

.story-img2 .story-img {
  width: 32%;
  margin-bottom: 30px;
  overflow: hidden;
}

.story-img2 .story-img img {
  width: 100%;
  transform: scale(0.95);
  transition-duration: .2s;
  transition-property: transform;
}

.story-img2 .story-img img:hover {
  transform: scale(1);
}
/*-----*/

/*CHARACTER*/
.top-block-character {
  background-image: url(../img/common/bg/bg02.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.chara-h3-border {
  padding-bottom: 20px;
  border-bottom: 2px dashed var(--red01);
}

.chara-area {
  text-align: center;
  margin-bottom: 120px;
}

.chara-area span {
  color: var(--red01);
}

.chara-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.chara-list img {
  width: 90%;
  margin-bottom: 10px;
  border: 3px solid var(--orange);
  border-radius: 100px;
  background-size: 20px 20px;
  background-color: var(--yellow);
  background-image: linear-gradient(45deg, var(--white03) 25%, transparent 25%, transparent 75%, var(--white03) 75%, var(--white03)), linear-gradient(-45deg, var(--white03) 25%, transparent 25%, transparent 75%, var(--white03) 75%, var(--white03));
  transform: scale(1.01);
  transition-duration: .2s;
  transition-property: transform;
}

.chara-list img:hover {
  transform: scale(1.05);
}

.chara-pickup {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0 60px;
}

.chara-illust {
  position: relative;
  width: 50%;
}

.chara-illust img {
  width: 95%;
  margin: 0 auto;
}

.chara-text-area {
  width: 50%;
  padding-top: 20px;
  font-weight: 700;
  font-size: var(--fs14);
  text-shadow: -1px -1px 1px var(--white), 0 -1px 1px var(--white), 1px -1px 1px var(--white), -1px 0px 1px var(--white), 1px 0px 1px var(--white), -1px 1px 1px var(--white), 0px 1px 1px var(--white), 1px -1px 1px var(--white);
}

.chara-text-area p {
  margin-bottom: 20px;
}

.chara-text-area span {
  color: var(--red01);
}

.chara-text-area .rb {
  margin-bottom: 5px;
  font-weight: 900;
  font-family: var(--ffgo);
}

.chara-text-area .chara-cv {
  font-family: var(--ffgo);
}

.chara-profile {
  margin-bottom: 40px;
}

.chara-profile .chara-border {
  border-bottom: 2px solid var(--red01);
  color: var(--red01);
  font-weight: 900;
  font-family: var(--ffgo);
}

.chara-profile .chara-word {
  font-weight: 900;
}

.chara-profile .chara-ex {
  font-family: var(--ffgo);
}

.chara-select {
  padding: 8px 0;
  text-align: center;
  font-weight: 900;
  font-family: var(--ffgo);
}

.chara-select .button01 {
  padding: 8px 10px;
  background-color: var(--red01);
  color: var(--white);
}

.chara-select .button02 {
  padding: 8px 80px;
  background-color: var(--white);
  color: var(--red01);
}

.chara-select .button01, .chara-select .button02 {
  transition-duration: .2s;
  transition-property: opacity;
}

.chara-select .button01:hover, .chara-select .button02:hover {
  opacity: 0.8;
}
/*---------*/

/*GALLERY*/
.top-block-gallery {
  background-image: url(../img/common/bg/bg03.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

#gallery h4 {
  margin-bottom: 10px;
}

#gallery p {
  margin-bottom: 20px;
  font-size: var(--fs14);
  font-weight: 700;
  font-family: var(--ffgo);
  text-align: center;
}

#gallery span {
  color: var(--red01);
}

.gallery-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.gallery-area::after {
  content: "";
  display: block;
  width: 32%;
}

.gallery-area .gallery-img {
  width: 32%;
  margin-bottom: 30px;
  overflow: hidden;
  border: 2px solid var(--red01);
}

.gallery-area img {
  width: 100%;
  transform: scale(1.01);
  transition-duration: .2s;
  transition-property: transform;
}

.gallery-area img:hover {
  cursor: zoom-in;
  transform: scale(1.05);
}
/*-------*/

/*SPECIAL*/
.top-block-special {
  background-image: url(../img/common/bg/bg04.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
/*-------*/

/*SHOP*/
.shop-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 1150px;
  margin: 0 auto 50px;
}

.shop-contents {
  position: relative;
  width: 48%;
  overflow: hidden;
  margin-bottom: 100px;
}

.shop-bg {
  background-color: var(--white);
  border: 3px solid var(--red01);
}

.shop-area img {
  width: 100%;
  padding: 20px;
}

.shop-text-box {
  background-color: var(--white);
  text-align: center;
  font-family: var(--ffgo);
}

.shop-text01 {
  margin-bottom: 10px;
  color: var(--orange);
  font-weight: 700;
  font-size: var(--fs14);
}

.shop-text02 {
  margin-bottom: 10px;
  color: var(--red01);
  font-weight: 900;
  font-size: var(--fs20);
}

.shop-text03 {
  margin-bottom: 20px;
}

.shop-text01, .shop-text02, .shop-text03 {
  padding: 0 5px;
}

.shop-text04 {
  padding: 10px 0;
  background-color: var(--red01);
  color: var(--white);
  font-weight: 500;
  transition-property: opacity;
  transition-duration: .2s;
}

.shop-text04:hover {
  opacity: 0.8;
}
/*----*/

/*limited*/
.limited-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 1000px;
  margin: 0 auto 50px;
}

.limited-area::after {
  content: "";
  display: block;
  width: 48%;
}

.limited-contents {
  position: relative;
  width: 48%;
  overflow: hidden;
  margin-bottom: 100px;
}

.limited-contents img {
  width: 100%;
  padding: 4%;
}

.limited-bg {
  background-color: var(--white);
  border: 3px solid var(--red01);
}

.limited-text-box {
  width: 92%;
  margin: 0 auto 20px;
  background-color: var(--white);
}

.limited-text01 {
  margin-bottom: 10px;
  color: var(--red01);
  font-weight: 900;
}

.limited-text02 {
  font-weight: 700;
  font-family: var(--ffgo);
}
/*-------*/

/*MOVIE*/
.movie-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 1000px;
  margin: 0 auto 50px;
}

.movie-contents {
  position: relative;
  width: 49%;
  margin-bottom: 100px;
}

.movie-contents iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
}

.movie-contents p {
  color: var(--black);
  font-weight: 700;
}
/*-----*/

/*TRIAL*/
.trial-area {
  text-align: center;
}

.trial-area img {
  width: 100%;
  margin-bottom: 30px;
}

.trial-area p {
  display: inline-block;
  padding: 10px 5%;
  font-weight: 900;
  border: 1px solid var(--red02);
  border-left: 10px solid var(--red01);
  background-color: var(--red02);
  color: var(--white);
  transition-duration: .4s;
  transition-property: background-color, color;
}

.trial-area p:hover {
  background-color: var(--white);
  color: var(--red02);
}
/*-----*/

/*PRODUCT*/
.top-block-product {
  background-image: url(../img/common/bg/bg05.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.product-pake {
  width: 600px;
  margin: 0 auto 50px;
}

.product-pake img {
  width: 100%;
}

.product-area {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.product-spec-area, .product-staff-area {
  width: 100%;
}

.product-spec-area, .product-staff-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
  font-family: var(--ffgo);
}

.product-spec-area dt, .product-staff-area dt {
  width: 25%;
  margin-bottom: 10px;
  padding: 10px 0;
  background-color: var(--red01);
  color: var(--white);
  font-weight: 700;
  text-align: center;
}

.product-spec-area dd, .product-staff-area dd {
  width: 75%;
  margin-bottom: 10px;
  padding: 10px;
  border-bottom: 2px solid var(--red01);
  background-color: var(--white);
}
/*-------*/

@media screen and (max-width:1200px){
  body {
    /*480px-1200px fs14-fs17*/
    font-size: clamp(0.875rem, 0.75rem + 0.42vw, 1.063rem);
  }

  h1 {
    /*480px-1200px fs40-fs60*/
    font-size: clamp(2.5rem, 1.667rem + 2.78vw, 3.75rem);
  }

  h2 {
    /*480px-1200px fs40-fs50*/
    font-size: clamp(2.5rem, 2.083rem + 1.39vw, 3.125rem);
  }

  h3 {
    /*480px-1200px fs30-fs40*/
    font-size: clamp(1.875rem, 1.4583rem + 1.3889vw, 2.5rem);
  }

  h4, .fs30 {
    /*480px-1200px fs20-fs30*/
    font-size: clamp(1.25rem, 0.833rem + 1.39vw, 1.875rem);
  }

  .story-area, .fs20 {
    /*480px-1200px fs17-fs20*/
    font-size: clamp(1.063rem, 0.938rem + 0.42vw, 1.25rem);
  }

  .main-visual img {
    width: 100%;
  }

  .inner {
    width: 90%;
  }

  .nav-pc {display: none;}
  .nav-sp-content {display: block;}

  .nav-sp {
    display: none;
    position: fixed;
    top: 0;
    z-index: 99;
    width: 100%;
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
    box-shadow: 0 1px 5px var(--black);
    background-color: var(--black);
  }

  .nav-sp-list {
    width: 100%;
    margin: 0 auto;
  }

  .nav-sp-list ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    line-height: 1.2;
  }

  .nav-sp-list li {
    display: block;
    width: 100%;
    margin: 0 10px;
    padding: 25px 0;
    text-align: center;
    font-weight: 900; 
    border-top: 1px solid var(--white);
  }

  .nav-sp-list li:first-child {
    border-top: none;
  }

  .nav-sp-list li a {
    width: 80%;
    color: var(--white);
    opacity: 1;
    transition-property: opacity;
    transition-duration: .2s;
  }

  .nav-sp-list li a:hover {
    opacity: 0.8;
  }

  .nav-sp-list li img {
    width: 160px;
  }

  #story .story-img1 {
    width: 100%;
  }

  .shop-area {
    width: 90%;
  }

  .limited-area {
    width: 90%;
  }

  .movie-area {
    width: 90%;
  }
}

@media screen and (max-width:1050px) {
  #main-visual .main-visual-chara img {
    width: 90%;
  }

  #main-visual .main-visual-logo {
    width: 45%;
  }

  #main-visual .main-visual-day {
    width: 45%;
  }

  .chara-illust {
    width: 80%;
    margin: 0 auto;
  }

  .chara-text-area {
    width: 100%;
  }
}

@media screen and (max-width:800px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  #loading-logo {
    width: 100%;
  }

  #loading-logo .logo {
    width: 80%;
  }

  #main-visual .main-visual-chara img {
    width: 98%;
    margin: 0 1%;
  }

  #main-visual .main-visual-cs {
    width: 8%;
    top: calc(60px + 1%);
    left: 1%;
  }

  #main-visual .main-visual-cs img {
    width: 100%;
  }

  #main-visual .main-visual-logo {
    top: auto;
    bottom: 11%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
  }

  #main-visual .main-visual-day {
    top: auto;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
  }

  .news-list {
    display: block;
  }

  .topics-banner {
    width: 48%;
  }

  .story-img2 {
    width: 90%;
  }

  .chara-area {
    width: 100%;
  }

  .chara-banner {
    width: 26%;
    margin: 0 2% 2%;
  }

  .chara-area a{
    width: 25%;
  }

  .gallery-area .gallery-img {
    width: 48%;
  }

  .shop-contents {
    width: 100%;
  }

  .limited-contents {
    width: 100%;
  }

  .movie-contents {
    width: 100%;
  }

  .product-pake {
    width: 90%;
  }

  .product-spec-area dt, .product-staff-area dt, .product-spec-area dd, .product-staff-area dd {
    width: 100%;
  }

  .product-spec-area dt, .product-staff-area dt {
    margin-bottom: 0;
  }
}

@media screen and (max-width:480px) {
  body {
    font-size: var(--fs14);
  }

  h1 {
    font-size: var(--fs40);
  }

  h2 {
    font-size: var(--fs40);
  }

  h3 {
    font-size: var(--fs30);
  }

  h4 {
    font-size: var(--fs20);
  }

  #story p, .word, .shop-text03, .limited-text01 {
    font-size: var(--fs17);
  }

  .chara-area a{
    width: 33%;
  }

  .chara-select .button01 {
    margin: 0 5px;
  }

  .chara-select .button02 {
    display: none;
  }
}

@media screen and (max-width:320px) {
  .nav-sp-list li img {
    width: 60%;
  }

  .footer-sns {
    width: 80%;
    margin: 0 auto 15%;
  }

  .footer-sns li {
    margin: 0 5%;
  }

  .footer-logo-eg {
    margin-bottom: 15%;
  }

  .footer-logo-eg img {
    width: 25%;
  }
}