@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
* {
  -webkit-box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

*::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

body {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
  text-size-adjust: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button, label {
  cursor: pointer;
}

h1, h2, h3, h4, h5, p {
  margin: 0;
  padding: 0;
}

figure {
  display: block;
  margin: 0;
  padding: 0;
}

dl, ul, ol, li, dt, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

header a h1 {
  margin-left: 0;
}

header a h1 img {
  width: 350px;
}

#footer {
  z-index: 10;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding-bottom: 15px;
  background: url("../img/bg_footer_bl.png") no-repeat center top;
  background-size: 2500px 447px;
}

html.fixed #footer {
  position: fixed;
  bottom: -355px;
}

html.fixed.footer #footer {
  position: absolute;
  bottom: 0;
}

#footer .page-top {
  display: block;
  padding: 25px 0;
  color: #00b3ff;
  font-family: Lato;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none;
}

#footer .page-top:before {
  display: inline-block;
  width: 23px;
  height: 19px;
  margin-right: 20px;
  background: url("../img/arw_up.svg") no-repeat center center;
  background-size: 100%;
  vertical-align: middle;
  content: "";
}

#footer .page-top:hover {
  opacity: 0.7;
}

#footer .banner {
  padding-top: 30px;
}

#footer ul {
    display: block;
    margin-bottom: 0;
    width: 75%;
    margin:0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#footer ul li {
    margin: 0 10px;
}


#footer ul li {
    margin-bottom: 15px;
    width: 30%;
}


#footer ul li a img {
    width: 100%;
}


#footer ul li a {
  display: block;
  border: 1px solid #00b3ff;
  line-height: 0;
}



#footer .copyright {
  color: #00b3ff;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
}

html.modal {
  overflow: hidden;
}

.slideup {
  -webkit-animation: slideUp 1s forwards;
  animation: slideUp 1s forwards;
}

@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translate(0, 100px);
    transform: translate(0, 100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes slideUp {
  0% {
    -webkit-transform: translate(0, 100px);
    transform: translate(0, 100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}

#modal {
  -webkit-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

#modal.act {
  z-index: 300;
  opacity: 1;
}

#modal .modal_main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000000 url("../img/bg_modal_bl.jpg") no-repeat left center;
  background-size: 67vh 100%;
}

#modal .modal_main .inner {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  align-items: center;
  justify-content: center;
}

#modal .modal_main .btnPrev {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transform: translate(0, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 91px;
  padding: 42px 22px 0 0;
  transform: translate(0, -50%);
  background: url("../img/bg_btn_prev.svg");
  background-size: 100%;
  color: #000000;
  font-family: Lato;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  text-decoration: none;
}

#modal .modal_main .btnPrev:hover {
  opacity: 0.7;
}

#modal .modal_main .btnNext {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transform: translate(0, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  position: absolute;
  top: 50%;
  right: 0;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 91px;
  padding: 42px 0 0 22px;
  transform: translate(0, -50%);
  background: url("../img/bg_btn_next.svg");
  background-size: 100%;
  color: #000000;
  font-family: Lato;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  text-decoration: none;
}

#modal .modal_main .btnNext:hover {
  opacity: 0.7;
}

#modal .modal_main .btnClose {
  display: block;
  z-index: 2;
  position: absolute;
  top: 30px;
  right: 30px;
}

#modal .modal_main .btnClose:hover {
  opacity: 0.7;
}

#modal .modal_main .modal_inner {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 40px;
  right: 80px;
  bottom: 40px;
  left: 80px;
  align-items: center;
  justify-content: space-between;
}

#modal .modal_main .modal_inner figure {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 100%;
  max-height: 750px;
}

#modal .modal_main .modal_inner .info {
  width: calc(50% - 50px);
  color: #000000;
}

#modal .modal_main .modal_inner .info .name {
  margin-bottom: 25px;
  color: #00b6ff;
  letter-spacing: 0.2em;
}

#modal .modal_main .modal_inner .info .name dt {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 900;
}

#modal .modal_main .modal_inner .info .name dd {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 900;
}

#modal .modal_main .modal_inner .info .cv {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  color: #00b6ff;
  letter-spacing: 0.2em;
}

#modal .modal_main .modal_inner .info .cv:after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1515px;
  height: 130px;
  background: url("../img/bg_cv.svg") no-repeat left bottom;
  background-size: 1515px 130px;
  content: "";
}

#modal .modal_main .modal_inner .info .cv dt {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 59px;
  height: 25px;
  margin-right: 10px;
  background: url("../img/bg_btn_cv.svg") no-repeat center center;
  background-size: 100%;
  color: #ffffff;
  font-family: Lato;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
}

#modal .modal_main .modal_inner .info .cv dd {
  z-index: 2;
  position: relative;
  margin-right: 20px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 900;
}

#modal .modal_main .modal_inner .info .txt {
  width: 80%;
  margin-bottom: 35px;
  color: #ffffff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 2;
}

#modal .modal_main .modal_inner .info .sub-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#modal .modal_main .modal_inner .info .sub-img li {
  margin: 0 12px;
}

.loader-top {
  -webkit-transform: translate(-50%, 0);
  display: none;
  z-index: 100;
  position: absolute;
  top: 200px !important;
  transform: translate(-50%, 0);
}

html.pre .loader-top {
  display: block;
}

.main-img {
  position: relative;
  margin-bottom: 100px;
  background-color: #ffffff;
}

.main-img:after {
  z-index: 2;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 300px;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#000000));
  background: -webkit-linear-gradient(transparent, #000000);
  background: linear-gradient(transparent, #000000);
  content: '';
}

html.pre .main-img {
  visibility: hidden;
  background-color: #000000;
}

.main-img.hide figure {
  -webkit-transform: scale(2);
  transform: scale(2);
  opacity: 0;
}

.main-img.hide .hyuse {
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0;
}

.main-img.hide .chika {
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0;
}

.main-img.hide .osamu {
  -webkit-transform: translate(0, 0) scale(2);
  transform: translate(0, 0) scale(2);
  opacity: 0;
}

.main-img.hide .yuma {
  -webkit-transform: translate(0, 0) scale(2);
  transform: translate(0, 0) scale(2);
  opacity: 0;
}

.main-img.hide h1 {
  -webkit-transform: translate(-50%, 0) scale(4);
  transform: translate(-50%, 0) scale(4);
  opacity: 0;
}

.main-img.hide .onair {
  -webkit-transform: translate(-50%, 0) scale(2);
  transform: translate(-50%, 0) scale(2);
  opacity: 0;
}

.main-img.hide .flare {
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
}

.main-img.hide .banner {
  opacity: 0;
}

.main-img figure {
  -webkit-transition: all 0.6s ease-out 0.1s;
  -webkit-transform: scale(1);
  transform: scale(1);
  background-color: #000000;
  line-height: 0;
  opacity: 1;
  transition: all 0.6s ease-out 0.1s;
}

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

.main-img h1 {
  -webkit-transform: translate(-50%, 0) scale(1);
  -webkit-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition: all 0.3s ease-out 1.7s;
  z-index: 3;
  position: absolute;
  top: 29%;
  left: 50%;
  width: 54.8%;
  transform: translate(-50%, 0) scale(1);
  opacity: 1;
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.3s ease-out 1.7s;
}

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

.main-img .onair {
  -webkit-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition: all 0.3s ease-out 1.9s;
  -webkit-transform: translate(-50%, 0) scale(1);
  z-index: 3;
  position: absolute;
  top: 64.5%;
  left: 50%;
  width: 56.42%;
  transform: translate(-50%, 0) scale(1);
  opacity: 1;
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.3s ease-out 1.9s;
}

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

.main-img .hyuse {
  -webkit-transition: all 0.4s ease-out 0.7s;
  -webkit-transform: scale(1);
  position: absolute;
  bottom: 0;
  left: 22.3%;
  width: 30.13%;
  transform: scale(1);
  line-height: 0;
  opacity: 1;
  transition: all 0.4s ease-out 0.7s;
}

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

.main-img .chika {
  -webkit-transition: all 0.4s ease-out 0.9s;
  -webkit-transform: scale(1);
  position: absolute;
  bottom: 0;
  left: 46%;
  width: 31.19%;
  transform: scale(1);
  line-height: 0;
  opacity: 1;
  transition: all 0.4s ease-out 0.9s;
}

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

.main-img .osamu {
  -webkit-transition: all 0.4s ease-out 1.1s;
  -webkit-transform: translate(0, 0) scale(1);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32.69%;
  transform: translate(0, 0) scale(1);
  line-height: 0;
  opacity: 1;
  transition: all 0.4s ease-out 1.1s;
}

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

.main-img .yuma {
  -webkit-transform-origin: center center;
  -webkit-transition: all 0.4s ease-out 1.3s;
  -webkit-transform: translate(0, 0) scale(1);
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42.65%;
  transform: translate(0, 0) scale(1);
  transform-origin: center center;
  line-height: 0;
  opacity: 1;
  transition: all 0.4s ease-out 1.3s;
}

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

.main-img .flare {
  -webkit-transition: all 0.4s ease-out 1.5s;
  -webkit-transform: scale(1);
  -webkit-transform-origin: 55% 50%;
  z-index: 3;
  position: absolute;
  top: 5%;
  left: 30.5%;
  width: 33.8%;
  transform: scale(1);
  transform-origin: 55% 50%;
  line-height: 0;
  mix-blend-mode: screen;
  opacity: 1;
  transition: all 0.4s ease-out 1.5s;
}

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

.main-img .banner {
  -webkit-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition: all 0.3s ease-out 1.9s;
  z-index: 4;
  position: absolute;
  bottom: -100px;
  left: 33px;
  opacity: 1;
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.3s ease-out 1.9s;
}

.main-img .banner li a {
  display: block;
  width: 290px;
  border: 1px solid #00b3ff;
  line-height: 0;
}

.main-img .banner li a img {
  width: 100%;
}

@-webkit-keyframes flareAnim {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    opacity: 1;
  }
}

@keyframes flareAnim {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes flareAnim2 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.97;
  }
  100% {
    opacity: 1;
  }
}

@keyframes flareAnim2 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.97;
  }
  100% {
    opacity: 1;
  }
}

.loader {
  -webkit-transform: translateZ(0);
  -webkit-animation: loader 1.7s infinite ease, round 1.7s infinite ease;
  position: relative;
  top: 0;
  width: 1em;
  height: 1em;
  margin: 40px auto;
  overflow: hidden;
  transform: translateZ(0);
  border-radius: 50%;
  color: #156c8f;
  font-size: 60px;
  text-indent: -9999em;
  animation: loader 1.7s infinite ease, round 1.7s infinite ease;
}

@-webkit-keyframes round {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes loader {
  0% {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%,
  95% {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%,
  59% {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
  20% {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
  }
  38% {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
  }
  to {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}

@keyframes loader {
  0% {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%,
  95% {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%,
  59% {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
  20% {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
  }
  38% {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
  }
  to {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}

body {
  -webkit-box-align: center;
  -ms-flex-align: center;
  position: relative;
  align-items: center;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #000000;
  color: #ffffff;
}

html.menuOpen body {
  overflow: hidden;
}

.w100p {
  width: 100% !important;
}

main {
  display: block;
}

main.page {
  padding: 124px 3% 500px 3%;
  background-image: url("../img/bg_body2.png"), url("../img/bg_body.png");
  background-position: left 250px,center top;
  background-repeat: no-repeat,no-repeat;
  background-size: 270px 2482px,100%;
}

.SP {
  display: none;
}

aside.w700,
section.w700 {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.notes {
  font-size: 14px;
  font-size: 0.875rem;
}

.txtC {
  margin-bottom: 30px;
  text-align: center;
}

.txt14 {
  margin-bottom: 40px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
}

.titB {
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: 1px solid #00b3ff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 900;
}

.titL {
  margin-bottom: 35px;
  color: #00b3ff;
  text-align: center;
}

.page .titL {
  margin-bottom: 60px;
}

.titL .en {
  margin-bottom: 10px;
  font-family: Lato;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.titL .en::after {
  display: block;
  width: 68px;
  height: 4px;
  margin: 15px auto 0 auto;
  background: url("../img/ln_title.svg") no-repeat;
  background-size: 100%;
  content: "";
}

.titL h2 {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 900;
}

.titMC {
  margin-bottom: 30px;
  padding-bottom: 17px;
  background: url("../img/ln_title_mc.svg") no-repeat center bottom;
  background-size: 33px 4px;
  font-family: Lato,'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
}

.titS {
  position: relative;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto 55px auto;
  padding-bottom: 15px;
  padding-left: 60px;
  border-bottom: 1px solid #00b3ff;
  color: #00b3ff;
  font-size: 42px;
  font-size: 2.625rem;
  font-weight: 900;
}

.titS.cat2 {
  border-bottom: 1px solid #c626f4;
  color: #c626f4;
}

.titS.cat2:before {
  background: url("../img/ico_title_cat2.svg") no-repeat center center;
}

.titS.small {
  font-size: 26px;
  font-size: 1.625rem;
}

.titS.small.cat2 {
  border-bottom: 1px solid #c626f4;
  color: #c626f4;
}

.titS.small.cat2:before {
  background: url("../img/ico_title_cat2.svg") no-repeat center center;
}

.titS:before {
  -webkit-transform: translate(0, -50%);
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 51px;
  height: 19px;
  transform: translate(0, -50%);
  background: url("../img/ico_title.svg") no-repeat center center;
  background-size: 100%;
  vertical-align: middle;
  content: "";
}

.btn {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 284px;
  height: 78px;
  margin: 0 auto;
  padding-bottom: 3px;
  background: url("../img/bg_btn_bl.png") no-repeat;
  background-size: 100%;
  color: #00b3ff;
  font-family: Lato;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 1;
  text-decoration: none;
}

.btn:hover {
  opacity: 0.7;
}

.news-area {
  position: relative;
  padding: 97px 3% 176px 3%;
  background: url("../img/top/bg_news2.png") repeat-y center center;
  background-size: 100%;
}
.news-area .news-area-inr {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.news-area .bg {
  z-index: -1;
  position: absolute;
  bottom: -840px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.news-area .bg img {
  width: 100%;
}

.news-list {
  z-index: 2;
  position: relative;
  margin-bottom: 55px;
}

.news-list li {
  margin-bottom: 35px;
}

.news-list li:last-child {
  margin-bottom: 0;
}

.news-list li:after {
  display: block;
  width: 92px;
  height: 1px;
  margin-top: 6px;
  background: url("../img/ln_news.svg") no-repeat;
  background-size: 100%;
  content: "";
}

.news-list li a {
  -webkit-box-align: end;
  -ms-flex-align: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-end;
  color: #ffffff;
  text-decoration: none;
}

.news-list li a:hover {
  opacity: 0.7;
}

.news-list li a .date {
  color: #00b3ff;
  font-family: Lato;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
}

.news-list li a .txt {
  padding-left: 13px;
  font-weight: 600;
}





.top_goods-area {
  position: relative;
  padding: 0 3% 176px 3%;
  background: url("../img/top/bg_news2.png") repeat-y center center;
  background-size: 100%;
}
.top_goods-area .top_goods-area-inr {
  width: 100%;
  max-width: 865px;
  margin: 0 auto;
}
.top_goods-list li a:hover {
    opacity: 0.7;
}
.top_goods-list {
    z-index: 2;
    position: relative;
    margin-bottom: 55px;
    display: flex;
}
.top_goods-list li a .date {
    color: #00b3ff;
    font-family: Lato;
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: bold;
    margin-bottom: 15px;
}
.top_goods-list li a .date:after {
    display: block;
    width: 92px;
    height: 1px;
    margin-top: 6px;
    background: url(../img/ln_news.svg) no-repeat;
    background-size: 100%;
    content: "";
}
.top_goods-list:before, .top_goods-list:after {
    display: table;
    content: "";
}
.top_goods-list li {
    width: 100%;
    max-width: 253px;
    margin-right: 52px;
    float: left;
}
.top_goods-list li:nth-child(3n) {
    margin-right: 0;
}
.top_goods-list li a {
    color: #ffffff;
    text-decoration: none;
}
.top_goods-list li a .txt {
    font-weight: 600;
}
.top_goods-list li a figure {
    width: 253px;
    margin-bottom: 5px;
}
.top_goods-list li a figure img {
    width: 100%;
}
@media screen and (max-width: 812px){
  .top_goods-area {
      padding: 0 3% 97px 3%;
      background: url(../img/top/bg_news2_sp.png) repeat-y center center;
      background-size: 100%;
  }
  .top_goods-list li:nth-child(3n){
      display:none;
  }
  .top_goods-list li {
      width: 49%;
      max-width: 405px;
      margin-right: 2%;
      float: left;
  }
  .top_goods-list li:nth-child(2n) {
      margin-right: 0;
  }
  .top_goods-list li a figure {
      width: 100%;
      margin-bottom: 5px;
  }
  .top_goods-list li a figure img {
      width: 100%;
  }



}










.movie-area {
  position: relative;
  margin: 0;
  background-color: #156c8f;
  background-image: url("../img/bg_movie01_bl.png");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 316px 642px;
  color: #000000;
}

.movie-area:before {
  -webkit-transform: translate(0, -79px);
  display: block;
  position: relative;
  width: 100%;
  height: 79px;
  transform: translate(0, -79px);
  background: url("../img/frm_top.svg") no-repeat center center;
  content: "";
}

.movie-area:after {
  -webkit-transform: translate(0, 79px);
  display: block;
  z-index: -1;
  position: relative;
  width: 100%;
  height: 79px;
  transform: translate(0, 79px);
  background: url("../img/frm_bottom.svg") no-repeat center center;
  content: "";
}

.movie-area .bg {
  position: absolute;
  right: 0;
  bottom: -38px;
  line-height: 0;
}

.movie-area .bg img {
  width: 218px;
}

.movie-area-inr {
  z-index: 2;
  position: relative;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}

.movie-block {
  margin-bottom: 115px;
}

.movie-block .movie {
  padding-left: 30px;
}

.movie-block .movie a {
  display: block;
  position: relative;
  width: 100%;
  max-width: 740px;
  overflow: hidden;
  border: 2px solid #00b3ff;
  line-height: 0;
}

.movie-block .movie a img.banner {
  -webkit-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.movie-block .movie a img.play {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 128px;
  transform: translate(-50%, -50%);
}

.movie-block .movie a:hover img.banner {
  -webkit-transform: scale(1.25);
  transform: scale(1.25);
}

.movie-block .movie.large {
  padding: 0;
}

.movie-block .movie.large a {
  max-width: 865px;
  margin: 0 auto;
}

.movie-block .titM {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  max-width: 638px;
  margin-bottom: 35px;
  padding-bottom: 25px;
  padding-left: 30px;
  background: url("../img/bg_tit_movie01.png") no-repeat right bottom;
  background-size: 100%;
}

.movie-block .titM:before {
  -webkit-transform: rotate(135deg);
  -webkit-transform-origin: left center;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2000px;
  height: 4px;
  transform: rotate(135deg);
  transform-origin: left center;
  background: #000000;
  content: "";
}

.movie-block .titM .en {
  margin-right: 20px;
  font-family: Lato;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.movie-block .titM h2 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 900;
}

.movie-block:nth-child(2n) .titM {
  margin-left: auto;
  padding-left: 0;
  background: url("../img/bg_tit_movie02.png") no-repeat left bottom;
  background-size: 100%;
}

.movie-block:nth-child(2n) .titM:before {
  -webkit-transform: rotate(45deg);
  -webkit-transform-origin: left center;
  left: 100%;
  width: 1000px;
  transform: rotate(45deg);
  transform-origin: left center;
}

.movie-block:nth-child(2n) .movie {
  padding-right: 30px;
  padding-left: 0;
}

.movie-block:nth-child(2n) .movie a {
  margin-left: auto;
}

.twitter-area {
  padding: 174px 3% 500px 3%;
  overflow: hidden;
  background: url("../img/top/bg_twitter.png") no-repeat center 20px;
  background-size: 100%;
}

.twitter-area-inr {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.twitter-area-block h3 {
  position: relative;
  margin-bottom: 20px;
  padding-left: 60px;
  color: #00b3ff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.2;
}

.twitter-area-block h3.small {
  margin-bottom: 5px;
  font-size: 16px;
  font-size: 1rem;
}

.twitter-area-block h3:before {
  -webkit-transform: translate(0, -50%);
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 51px;
  height: 19px;
  transform: translate(0, -50%);
  background: url("../img/ico_title.svg") no-repeat center center;
  background-size: 100%;
  vertical-align: middle;
  content: "";
}

.twitter-area-block .twitter {
  width: 100%;
  max-width: 380px;
  height: 550px;
  overflow: hidden;
  border: 1px solid #00b3ff;
  background-color: #ffffff;
}

.btnFollow {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transform: translate(4px, 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 143px;
  height: 34px;
  margin: 0 0 0 auto;
  padding: 8px 0 0 25px;
  transform: translate(4px, 0);
  background: url("../img/bg_btn_follow_bl.png") no-repeat center center;
  background-size: 100%;
  color: #00b3ff;
  font-family: Lato;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.btnFollow:hover {
  opacity: 0.7;
}

#nav {
  z-index: 20;
  position: fixed;
  top: 0;
  right: 0;
}

#nav .menu {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 93px;
  height: 93px;
  background: url("../img/bg_menu.svg") no-repeat center center;
  background-size: 100%;
}

#nav .menu:hover {
  opacity: 0.7;
}

#nav .menu div {
  -webkit-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 43px;
  height: 4px;
  background-color: #000000;
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

html.menuOpen #nav .menu div {
  background-color: transparent;
}

#nav .menu div:before {
  -webkit-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  display: block;
  position: relative;
  top: -15px;
  width: 43px;
  height: 4px;
  background-color: #000000;
  content: "";
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

html.menuOpen #nav .menu div:before {
  -webkit-transform: rotate(-45deg);
  top: 2px;
  transform: rotate(-45deg);
}

#nav .menu div:after {
  -webkit-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  display: block;
  position: relative;
  bottom: -12px;
  width: 43px;
  height: 4px;
  background-color: #000000;
  content: "";
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

html.menuOpen #nav .menu div:after {
  -webkit-transform: rotate(45deg);
  bottom: 2px;
  transform: rotate(45deg);
}

.nav-menu {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background: #156c8f url("../img/bg_nav_bl.jpg") no-repeat left bottom;
  background-size: 306px 403px;
  opacity: 0;
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

html.menuOpen .nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 19;
  opacity: 1;
}

.nav-menu .logo {
  width: 50%;
  text-align: center;
}

.nav-menu .logo img {
  width: 596px;
}

.nav-menu ul {
  width: 50%;
}

.nav-menu ul li {
  margin-bottom: 22px;
}

.nav-menu ul li:last-child {
  margin-bottom: 0;
}

.nav-menu ul li a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  color: #000000;
  text-decoration: none;
}

.nav-menu ul li a:hover {
  opacity: 0.7;
}

.nav-menu ul li a .en {
  margin-right: 20px;
  font-family: Lato;
  font-size: 32px;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.nav-menu ul li a .txt {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 900;
}

.nav-menu-inr {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  width: calc(100% - 170px);
  margin: 85px;
}

.page-links {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto 80px auto;
}

.page-links dl {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  padding-right: 40px;
  padding-bottom: 25px;
}

.page-links dl dt {
  padding: 5px 18px;
  border-radius: 30px;
  background-color: #00b3ff;
  color: #000000;
  font-family: Lato;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: bold;
}

.page-links dl dd {
  z-index: 2;
  position: relative;
  margin-left: 17px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 900;
}

.page-links dl dd:nth-child(2) {
  margin-left: 20px;
}

.page-links dl dd a {
  padding-right: 20px;
  background: url("../img/arw_down_b.png") no-repeat right center;
  background-size: 13px 8px;
  color: #ffffff;
  text-decoration: none;
}

.page-links dl:first-child {
  min-width: 270px;
  /*max-width: 448px;
  margin-right: 20px;*/
}

.page-links dl:first-child:after {
  display: block;
  z-index: -1;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1500px;
  height: 59px;
  background: url("../img/bg_charactor-sel_b.png") no-repeat right bottom;
  content: "";
}

.page-links dl:nth-child(2) {
  min-width: 300px;
  max-width: 448px;
  padding-left: 22px;
  background: url("../img/bg_charactor-sel_p.png") no-repeat right bottom;
}

.page-links dl:nth-child(2) dt {
  background-color: #c626f4;
}

.page-links dl:nth-child(2) dd a {
  background: url("../img/arw_down_p.png") no-repeat right center;
  background-size: 13px 8px;
}












.page-linksPC {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}

.page-linksPC dl {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  padding-right: 40px;
  padding-bottom: 15px;
}

.page-linksPC dl dt {
  width:120px;
  text-align:center;
  margin: 0 30px 0 0;
  padding: 5px 18px;
  border-radius: 30px;
  background-color: #00b3ff;
  color: #000000;
  font-family: Lato;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: bold;
  transform: translateY(20px);
}

.page-linksPC dl dd {
  z-index: 2;
  position: relative;
  margin: 0 22px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 900;
}

.page-linksPC dl dd:nth-child(2) {
  margin-left: 20px;
}

.page-linksPC dl dd a {
  padding-right: 20px;
  background: url("../img/arw_right.png") no-repeat right center;
  background-size: 10px 12px;
  color: #ffffff;
  text-decoration: none;
}

.page-linksPC dl:first-child {
  min-width: 270px;
  /*max-width: 448px;
  margin-right: 20px;*/
}

.page-linksPC dl:first-child:after {
  display: block;
  z-index: -1;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1500px;
  height: 59px;
  content: "";
}

.page-linksPCb {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto 80px auto;
}

.page-linksPCb dl {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  padding-right: 40px;
  padding-bottom: 25px;
}

.page-linksPCb dl dt {
  padding: 5px 18px;
  margin: 0 30px 0 0;
  width:120px;
}

.page-linksPCb dl dd {
  z-index: 2;
  position: relative;
  margin: 0 22px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 900;
}

.page-linksPCb dl dd:nth-child(2) {
  margin-left: 20px;
}

.page-linksPCb dl dd a {
  padding-right: 20px;
  background: url("../img/arw_right.png") no-repeat right center;
  background-size: 10px 12px;
  color: #ffffff;
  text-decoration: none;
}

.page-linksPCb dl:first-child {
  min-width: 270px;
  /*max-width: 448px;
  margin-right: 20px;*/
}

.page-linksPCb dl:first-child:after {
  display: block;
  z-index: -1;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1500px;
  height: 59px;
  background: url("../img/bg_charactor-sel_b.png") no-repeat right bottom;
  content: "";
}

.page-linksSP {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto 80px auto;
}

.page-linksSP dl {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  padding-right: 40px;
  padding-bottom: 25px;
}

.page-linksSP dl dt {
  padding: 5px 18px;
  border-radius: 30px;
  background-color: #00b3ff;
  color: #000000;
  font-family: Lato;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: bold;
}

.page-linksSP dl dd {
  z-index: 2;
  position: relative;
  margin-left: 17px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 900;
}

.page-linksSP dl dd:nth-child(2) {
  margin-left: 20px;
}

.page-linksSP dl dd a {
  padding-right: 20px;
  background: url("../img/arw_right.png") no-repeat right center;
  background-size: 10px 12px;
  color: #ffffff;
  text-decoration: none;
}

.page-linksSP dl:first-child {
  min-width: 270px;
  /*max-width: 448px;
  margin-right: 20px;*/
}

.page-linksSP dl:first-child:after {
  display: block;
  z-index: -1;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1500px;
  height: 59px;
  background: url("../img/bg_charactor-sel_b.png") no-repeat right bottom;
  content: "";
}
.page-linksSP{
  display: none;
}

@media screen and (max-width: 812px) {
  .page-linksPC{
    display: none;
  }
  .page-linksPCb{
    display: none;
  }
  .page-linksSP {
    display: block;
  }
  .page-linksSP dl {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 15px;
    padding-right: 0;
  }
  .page-linksSP dl dt {
    width: 100%;
    margin-bottom: 10px;
    font-size: 11px;
    font-size: 0.6875rem;
  }
  .page-linksSP dl dd {
    margin: 8px 16px;
    font-size: 14px;
    font-size: 0.875rem;
  }
  .page-linksSP dl dd:nth-child(2) {
    margin-left: 18px;
  }
  .page-linksSP dl:first-child {
    margin-right: 0;
  }
  .page-linksSP dl:first-child:after {
    width: 100%;
  }
  .page-linksSP dl:nth-child(2) {
    max-width: 448px;
    padding-left: 0;
  }

}














.character-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto 75px auto;
}

.character-area .tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 280px;
  padding-top: 120px;
  padding-left: 25px;
  color: #ffffff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 900;
}

.character-area .tit figure {
  margin-right: 17px;
}

.character-area .tit figure img {
  width: 59px;
}

.character-area .tit div:before {
  display: inline-block;
  width: 34px;
  height: 19px;
  margin-right: 14px;
  background: url("../img/ico_title_s.svg") no-repeat center center;
  vertical-align: middle;
  content: '';
}

.character-area .tit div.cat2:before {
  background: url("../img/ico_title_s_cat2.svg") no-repeat center center;
}

.character-area ul {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex: 1;
  flex-wrap: wrap;
}

.character-area ul li {
  width: 144px;
}

.character-area ul li a {
  display: block;
  position: relative;
  padding-bottom: 18px;
  text-decoration: none;
}

.character-area ul li a figure {
  -webkit-box-align: end;
  -ms-flex-align: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-end;
  height: 266px;
}

.character-area ul li a figure img {
  width: 100%;
}

.character-area ul li a .info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 20px);
  padding: 8px 10px;
  background-color: #1c3133ee;
}

.character-area ul li a .info .name {
  color: #ffffff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 900;
}

.character-area ul li a .info .kana {
  color: #96d6dc;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 900;
}

.character-area ul.cat2 li a .info {
  background-color: #2b0038ee;
}

.news-page {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 75px auto;
}

.news-page p.txt {
  margin-bottom: 35px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 2;
}

.news-page p.txt a {
  color: #d957ff;
  font-weight: 600;
  text-decoration: none;
}

.news-page p.txt a:hover {
  text-decoration: underline;
}

.news-page a.link {
  padding-right: 18px;
  background: url("../img/ico_link.png") no-repeat right 7px;
  background-size: 10px 9px;
  color: #156c8f !important;
  font-weight: 600 !important;
  text-decoration: none;
}

.news-page a.link:hover {
  text-decoration: underline;
}

.news-page figure.center {
  margin-bottom: 30px;
  text-align: center;
}

.news-page .list {
  margin-bottom: 30px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
}

.news-page .list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 15px;
}

.news-page .list li:before {
  display: block;
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 10px;
  height: 10px;
  border: 3px solid #156c8f;
  content: "";
}

.news-page .youtube {
  margin-bottom: 30px;
}

.news-page h4 {
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 8px;
  font-size: 16px;
  font-size: 1rem;
}

.news-page h4:after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 17px;
  height: 1px;
  background-color: #156c8f;
  content: "";
}

.news-page-list {
  z-index: 2;
  position: relative;
  margin-bottom: 115px;
}

.news-page-list li {
  margin-bottom: 55px;
  border-bottom: 1px solid #156c8f;
}

.news-page-list li:last-child {
  margin-bottom: 0;
}

.news-page-list li a {
  -webkit-box-align: end;
  -ms-flex-align: end;
  display: block;
  position: relative;
  align-items: flex-end;
  padding-bottom: 13px;
  color: #ffffff;
  text-decoration: none;
}

.news-page-list li a:hover {
  opacity: 0.7;
}

.news-page-list li a .date {
  margin-bottom: 15px;
  color: #00b3ff;
  font-family: Lato;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
}

.news-page-list li a .date:after {
  display: block;
  width: 92px;
  height: 1px;
  margin-top: 6px;
  background: url("../img/ln_news.svg") no-repeat;
  background-size: 100%;
  content: "";
}

.news-page-list li a .txt {
  padding-left: 0;
  font-weight: 600;
}

.news-page-list li a .more {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: -7px;
  bottom: -44px;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 51px;
  padding-bottom: 4px;
  padding-left: 40px;
  background: url("../img/bg_btn_news.png") no-repeat center center;
  background-size: 100%;
  color: #00b3ff;
  font-family: Lato;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.article-tit {
  margin-bottom: 35px;
  border-bottom: 1px solid #156c8f;
}

.article-tit .date {
  margin-bottom: 15px;
  color: #00b3ff;
  font-family: Lato;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
}

.article-tit .date:after {
  display: block;
  width: 92px;
  height: 1px;
  margin-top: 6px;
  background: url("../img/ln_news.svg") no-repeat;
  background-size: 100%;
  content: "";
}

.article-tit h3 {
  padding-bottom: 13px;
  padding-left: 0;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
}

.page-content {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto 75px auto;
}

.goods-list {
  margin-bottom: 85px;
}

.goods-list:before, .goods-list:after {
  display: table;
  content: "";
}

.goods-list:after {
  clear: both;
}

.goods-list li {
  width: 100%;
  max-width: 490px;
  margin-right: 52px;
  margin-bottom: 115px;
  float: left;
}

.goods-list li:nth-child(2n) {
  margin-right: 0;
}

.goods-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 20px 25px;
  background: url("../img/bg_right-top.svg") no-repeat right top;
  color: #ffffff;
  text-decoration: none;
}

.goods-list li a:hover {
  opacity: 0.7;
}

.goods-list li a figure {
  width: 186px;
}

.goods-list li a figure img {
  width: 100%;
}

.goods-list li a .info {
  padding: 15px 0 0 15px;
  width:55%;
}
@media screen and (max-width: 812px) {
.goods-list li a .info {
  padding: 15px 0 0 5px;
  width:100%;
}
}

.goods-list li a .info .name {
  min-height: 48px;
  margin-bottom: 20px;
  color: #00b3ff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 900;
}
@media screen and (max-width: 812px) {
.goods-list li a .info .name {
  min-height: 48px;
  margin-bottom: 20px;
  color: #00b3ff;
  font-size: 16px;
  font-size: 1rem;
  font-size: 0.825rem;
  font-weight: 900;
}
}

.goods-list li a .info dl {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 900;
}

.goods-list li a .info dl dt {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 30px;
  margin-right: 15px;
  background: url("../img/bg_dt.svg") no-repeat center center;
  background-size: 100%;
}
@media screen and (max-width: 812px){
.goods-list li a .info dl dt{
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28%;
    height: 30px;
    margin-right: 5px;
    background: url(../img/bg_dt.svg) no-repeat center center;
    background-size: 100%;
}
.goods-list li a .info dl dt, .goods-list li a .info dl dd {
    font-size: 0.825em;
}
}

.goods-list li a .more {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0;
  bottom: -34px;
  align-items: center;
  justify-content: center;
  width: 127px;
  height: 34px;
  padding: 0 0 2px 30px;
  background: url("../img/bg_btn_goods.svg") no-repeat center center;
  background-size: 100%;
  color: #000000;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}



/*************************************************************/

.pagenation_wrapp{
  position: relative;
  z-index: 1;
  padding: 10px 0 30px 0;
}
nav.pagination-container {
  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;
}

ul.pagination li {
  float: left;
  margin: 0 30px;
}
@media screen and (max-width: 812px) {
  ul.pagination li {
    margin: 5px 15px;
  }
}

li.prev {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  width: 60px;
  height: 67px;
  background: url(../img/bg_btn_prev.svg);
  background-size: 100%;
  color: #000000;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: Lato;
  font-weight: bold;
  text-decoration: none;
  padding: 26px 12px 0 0 !important;
  -webkit-transform: translate(0, -11%);
          transform: translate(0, -11%);
  z-index: 2;
}
@media screen and (max-width: 812px) {
  li.prev {
    width: 40px;
    height: 46px;
    font-size: 0.75rem;
    padding: 18px 7px 0 0 !important;
    -webkit-transform: translate(0, 1%);
            transform: translate(0, 1%);
  }
}

li.prev a {
  color: #000000;
  text-decoration: none;
  display: inline-block;
  position: rerative;
  margin: -24px -10px 0 0;
  padding: 35px 22px 18px 10px;
}

li.prev a:hover,
li.page a:hover,
li.next a:hover {
  background: rgba(0, 0, 0, 0.2);
}

li.next {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  width: 60px;
  height: 67px;
  background: url(../img/bg_btn_next.svg);
  background-size: 100%;
  color: #000000;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: Lato;
  font-weight: bold;
  text-decoration: none;
  padding: 26px 0 0 12px !important;
  -webkit-transform: translate(0, -11%);
          transform: translate(0, -11%);
  z-index: 2;
}
@media screen and (max-width: 812px) {
  li.next {
    width: 40px;
    height: 46px;
    font-size: 0.75rem;
    padding: 18px 0 0 7px !important;
    -webkit-transform: translate(0, 1%);
            transform: translate(0, 1%);
  }
}

li.next a {
  color: #000000;
  text-decoration: none;
  display: inline-block;
  position: rerative;
  margin: -24px 0 0 -10px;
  padding: 35px 10px 18px 22px;
}

li.page {
  width: 30px;
  height: 54px;
  background: #166f8f;
  position: relative;
}
@media screen and (max-width: 812px) {
  li.page {
    width: 25px;
    height: 45px;
  }
}

li.page a {
  height: 100%;
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  text-decoration: none;
  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;
  position: relative;
  z-index: 1;
  margin: 0px -18px;
  padding: 10px 30px;
}
@media screen and (max-width: 812px) {
  li.page a {
    margin: 0px 0px 0px -12px;
    padding: 0px 25px;
    position: relative;
  }
}

li.page::before,
li.page::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #166f8f;
  z-index: 0;
}

li.page::before {
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
}

li.page::after {
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg);
}

li.page.active,
li.page.active::before,
li.page.active::after {
  background-color: #ffffff;
}

.holder {
  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;
}

.holder a {
  cursor: pointer;
  margin: 0 5px;
  width: 30px;
  height: 54px;
  background: #166f8f;
  position: relative;
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  text-decoration: none;
  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;
  margin: 0px 20px;
}
@media screen and (max-width: 812px) {
  .holder a {
    width: 20px;
    height: 34px;
    margin: 0 12px;
  }
}

.holder a::before {
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}

.holder a::after {
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

.holder a::before,
.holder a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #166f8f;
  z-index: -1;
}

.holder a.jp-previous {
  margin-right: 15px;
}

.holder a.jp-next {
  margin-left: 15px;
}

.holder a.jp-current, a.jp-current:hover {
  color: #FF4242;
  font-weight: bold;
}

.holder a.jp-disabled, a.jp-disabled:hover {
  color: #bbb;
}

.holder a.jp-current {
  cursor: default;
  margin: 0 5px;
  width: 30px;
  height: 54px;
  background: #ffffff;
  position: relative;
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  text-decoration: none;
  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;
  margin: 0px 20px;
}
@media screen and (max-width: 812px) {
  .holder a.jp-current {
    width: 20px;
    height: 34px;
    margin: 0 13px;
  }
}

.holder a.jp-current::before {
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}

.holder .jp-currenta::after {
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

.holder a.jp-current::before,
.holder a.jp-current::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #ffffff;
  z-index: -1;
}

.holder span {
  margin: 0 5px;
}





.subcat-links {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto 80px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 812px) {
  .subcat-links {
    display: block;
    margin: 0 auto 40px auto;
  }
}
.subcat-links dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 40px;
  padding-bottom: 25px;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 812px) {
  .subcat-links dl {
    margin-bottom: 15px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.subcat-links dl dt {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: bold;
  color: #000000;
  background-color: #00b3ff;
  padding: 5px 18px;
  border-radius: 30px;
  font-family: Lato;
}
@media screen and (max-width: 812px) {
  .subcat-links dl dt {
    width: 100%;
    font-size: 11px;
    font-size: 0.6875rem;
    margin-bottom: 10px;
  }
}
.subcat-links dl dd {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  margin-left: 35px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 812px) {
  .subcat-links dl dd {
    font-size: 14px;
    font-size: 0.875rem;
    margin-left: 10px;
    margin-bottom: 10px;
  }
}
.subcat-links dl dd:nth-child(2) {
  margin-left: 20px;
}
@media screen and (max-width: 812px) {
  .subcat-links dl dd:nth-child(2) {
    margin-left: 10px;
  }
}
.subcat-links dl dd a {
  text-decoration: none;
  color: #ffffff;
  padding-right: 20px;
  background: url("../img/arw_down_b.png") no-repeat right center;
  background-size: 13px 8px;
}
.subcat-links dl:first-child {
  min-width: 270px;
}
@media screen and (max-width: 812px) {
  .subcat-links dl:first-child {
    margin-right: 0;
  }
}
.subcat-links dl:first-child:after {
  content: "";
  display: block;
  width: 1500px;
  height: 59px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 812px) {
  .subcat-links dl:first-child:after {
    width: 100%;
  }
}
.subcat-links dl:nth-child(2) {
  padding-left: 22px;
  background: url("../img/bg_charactor-sel_p.png") no-repeat right bottom;
  max-width: 448px;
  min-width: 300px;
}
@media screen and (max-width: 812px) {
  .subcat-links dl:nth-child(2) {
    padding-left: 0;
    max-width: 448px;
  }
}
.subcat-links dl:nth-child(2) dt {
  background-color: #c626f4;
}
.subcat-links dl:nth-child(2) dd a {
  background: url("../img/arw_down_p.png") no-repeat right center;
  background-size: 13px 8px;
}



/*************************************************************/








.table-onair {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 55px auto;
  border-top: 1px solid #00b3ff;
  background-color: #000000aa;
}

.table-onair tr {
  border-bottom: 1px solid #00b3ff;
}

.table-onair th, .table-onair td {
  width: 50%;
  padding: 20px 0;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
}

.banner-list:before, .banner-list:after {
  display: table;
  content: "";
}

.banner-list:after {
  clear: both;
}

.banner-list li {
  margin-right: 50px;
  margin-bottom: 30px;
  float: left;
}

.banner-list li:nth-child(3n) {
  margin-right: 0;
}

.banner-list li a {
  color: #ffffff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.banner-list li a:hover {
  opacity: 0.7;
}

.slider_wrap {
  margin-bottom: 20px;
}

.slider_main {
  position: relative;
}

.slider_main .btn_prev,
.slider_main .btn_next {
  z-index: 10;
}

.slider_main .btn_prev button,
.slider_main .btn_next button {
  padding: 0;
  border: none;
  background-color: transparent;
}

.slider_main .btn_prev:hover,
.slider_main .btn_next:hover {
  opacity: 0.7;
}

.slider_main .btn_prev {
  -webkit-transform: translate(0, -50%);
  position: absolute;
  top: 38%;
  left: 2px;
  transform: translate(0, -50%);
}

.slider_main .btn_next {
  -webkit-transform: translate(0, -50%);
  position: absolute;
  top: 38%;
  right: 2px;
  transform: translate(0, -50%);
}

.slick-slide img {
  width: 100%;
}

.slick-list {
  margin-bottom: 30px;
  border: 2px solid #00b3ff;
}

.slick-dots {
  position: static;
  bottom: -115px;
}

.slick-dots li {
  position: relative;
  width: 160px;
  height: auto;
  margin: 0 20px 10px 0;
  line-height: 0;
}

.slick-dots li:nth-child(4n) {
  margin-right: 0;
}

.slick-dots li:hover {
  opacity: 0.7;
}

.slick-dots li img {
  width: 100%;
}

.slick-dots li:after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #00b3ff33;
  content: "";
}

.slick-dots li.slick-active:after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #00b3ff;
  content: "";
}

.episode-movie {
  margin-bottom: 90px;
  border: 2px solid #00b3ff;
}

.episode-movie a {
  display: block;
  position: relative;
  overflow: hidden;
  line-height: 0;
}

.episode-movie a img.banner {
  -webkit-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.episode-movie a img.play {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 128px;
  transform: translate(-50%, -50%);
}

.episode-movie a:hover img.banner {
  -webkit-transform: scale(1.25);
  transform: scale(1.25);
}

.back-number {
  margin-bottom: 50px;
  padding: 20px 60px 35px 45px;
  background: url("../img/bg_right-top.svg") no-repeat right top;
}

.back-number h2 {
  margin-bottom: 30px;
  color: #00b3ff;
  font-family: Lato;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: bold;
  text-align: center;
}

.back-number ul:before, .back-number ul:after {
  display: table;
  content: "";
}

.back-number ul:after {
  clear: both;
}

.back-number ul li {
  margin-right: 24px;
  margin-bottom: 21px;
  float: left;
}

.back-number ul li:nth-child(4n) {
  margin-right: 0;
}

.back-number ul li a {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 129px;
  height: 34px;
  padding: 0 0 2px 7px;
  background: url("../img/bg_btn_normal.svg") no-repeat center center;
  color: #000000;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 900;
  text-decoration: none;
}

.back-number ul li a:hover {
  opacity: 0.7;
}

.cast-list {
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 480px;
  margin: 0 auto 100px auto;
}

.cast-list li {
  width: 50%;
  margin-bottom: 35px;
}

.cast-list li.full {
  width: 100%;
}

.cast-list li .chara {
  color: #00b3ff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.cast-list li .cv {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 700;
  text-align: center;
}

.music-area {
  padding: 25px 30px 45px 50px;
  background: url("../img/bg_right-top.svg") no-repeat right top;
}

.music-area h4 {
  margin-bottom: 35px;
  color: #00b3ff;
  font-family: Lato;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
}

.music-area .opt {
  width: 100%;
  margin: 0 auto 40px auto;
  text-align: center;
}

.music-area .opt dt {
  -webkit-transform: translate(-10px, 0);
  margin-bottom: 15px;
  transform: translate(-10px, 0);
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 900;
}

.music-area .opt dd {
  margin-bottom: 25px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
}

.music-area .opt dd img {
  width: 100%;
}

.music-area .artist {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  font-size: 14px;
  font-size: 0.875rem;
}

.music-area .artist .info {
  margin-left: 40px;
}

.music-area .artist .info dl {
  margin-bottom: 25px;
}

.music-area .artist .info dl dt {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
}

.music-area .artist .info dl dd {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
}

.music-area .artist .info dl dd a {
  color: #d957ff;
  text-decoration: none;
}

.music-area .artist .info dl dd a:hover {
  text-decoration: underline;
}

.music-area .artist .info p {
  line-height: 1.6;
}

.music-area .opt-cd {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  padding-top: 35px;
  background: url("../img/ln_small.svg") no-repeat center top;
  font-size: 14px;
  font-size: 0.875rem;
}

.music-area .opt-cd .info {
  margin-left: 23px;
}

.music-area .opt-cd .info dl {
  margin-bottom: 30px;
}

.music-area .opt-cd .info dl dt {
  -webkit-transform: translate(-8px, 0);
  transform: translate(-8px, 0);
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
}

.music-area .opt-cd .info dl dd {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
}

.music-area .opt-cd .info .txt {
  margin-bottom: 5px;
}

.music-area .opt-cd .info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.music-area .opt-cd .info ul li {
  margin-right: 15px;
}

.music-area .opt-cd .info ul li a {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 105px;
  height: 20px;
  background: url("../img/bg_btn_music.svg") no-repeat center center;
  color: #000000;
  font-family: Lato;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  text-decoration: none;
}

.music-area .opt-cd .info ul li a:hover {
  opacity: 0.7;
}

.goods-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 70px;
}

.goods-detail .info {
  margin-left: 24px;
  padding-top: 25px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
}

.goods-detail .info dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 10px;
}

.goods-detail .info dl:nth-child(3) {
  margin-bottom: 35px;
}

.goods-detail .info dl dt {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 102px;
  height: 24px;
  margin-right: 10px;
  background-color: #1c3133cc;
}

.goods-detail .info p.txt {
  line-height: 2;
}

.goods-detail .info a {
  color: #d957ff;
  text-decoration: none;
}

.goods-detail .info a:hover {
  text-decoration: underline;
}

.movie_list:before, .movie_list:after {
  display: table;
  content: "";
}

.movie_list:after {
  clear: both;
}

.movie_list li {
  width: 24%;
  margin-right: calc(4%/3);
  margin-bottom: 30px;
  float: left;
}

.movie_list li:nth-child(4n) {
  margin-right: 0;
}

.movie_list li:nth-child(4n - 3) {
  clear: left;
}

.movie_list li a {
  display: block;
  color: #ffffff;
  text-decoration: none;
}

.movie_list li a figure {
  position: relative;
  margin-bottom: 5px;
  border: 1px solid #00b3ff;
  line-height: 0;
}

.movie_list li a figure img.img {
  width: 100%;
}

.movie_list li a figure img.play {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  transform: translate(-50%, -50%);
}

.movie_list li a .day {
  margin-bottom: 15px;
  color: #00b3ff;
  font-family: Lato;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
}

.movie_list li a .day:after {
  display: block;
  width: 92px;
  height: 1px;
  margin-top: 6px;
  background: url(../img/ln_news.svg) no-repeat;
  background-size: 100%;
  content: "";
}

.movie_list li a h3 {
  font-size: 13px;
  font-size: 0.8125rem;
}

@media screen and (max-width: 812px) {
  .mb0 {
    margin-bottom: 0px !important;
  }
  .mb5 {
    margin-bottom: 3px !important;
  }
  .mb10 {
    margin-bottom: 6px !important;
  }
  .mb15 {
    margin-bottom: 9px !important;
  }
  .mb20 {
    margin-bottom: 12px !important;
  }
  .mb25 {
    margin-bottom: 15px !important;
  }
  .mb30 {
    margin-bottom: 18px !important;
  }
  .mb35 {
    margin-bottom: 21px !important;
  }
  .mb40 {
    margin-bottom: 24px !important;
  }
  .mb45 {
    margin-bottom: 27px !important;
  }
  .mb50 {
    margin-bottom: 30px !important;
  }
  .mb55 {
    margin-bottom: 33px !important;
  }
  .mb60 {
    margin-bottom: 36px !important;
  }
  .mb65 {
    margin-bottom: 39px !important;
  }
  .mb70 {
    margin-bottom: 42px !important;
  }
  .mb75 {
    margin-bottom: 45px !important;
  }
  .mb80 {
    margin-bottom: 48px !important;
  }
  .mb85 {
    margin-bottom: 51px !important;
  }
  .mb90 {
    margin-bottom: 54px !important;
  }
  .mb95 {
    margin-bottom: 57px !important;
  }
  .mb100 {
    margin-bottom: 60px !important;
  }
  header a h1 {
    margin-left: 0;
    text-align: center;
  }
  header a h1 img {
    width: 100%;
  }
  header a h1 img {
    width: 200px;
  }
  #footer {
    background: url("../img/bg_footer_sp_bl.png") no-repeat center top;
    background-size: 1000px 750px;
  }
  html.fixed #footer {
    bottom: -390px;
  }
#footer ul {
    display: block;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    width: 90%;
    flex-wrap: wrap;
}


#footer ul li {
    margin-bottom: 15px;
    width: 48%;
}

#footer ul li {
    margin: 0 0 15px 0;
}


  #modal .modal_main .inner {
    display: block;
  }
  #modal .modal_main .btnPrev {
    -webkit-transform: translate(0, 0);
    top: auto;
    bottom: 15px;
    width: 50px;
    height: 55px;
    padding: 30px 15px 0 0;
    transform: translate(0, 0);
    font-size: 10px;
    font-size: 0.625rem;
  }
  #modal .modal_main .btnNext {
    -webkit-transform: translate(0, 0);
    top: auto;
    bottom: 15px;
    width: 50px;
    height: 55px;
    padding: 30px 0 0 15px;
    transform: translate(0, 0);
    font-size: 10px;
    font-size: 0.625rem;
  }
  #modal .modal_main .btnClose {
    -webkit-transform: translate(-50%, 0);
    top: auto;
    right: auto;
    bottom: 15px;
    left: 50%;
    transform: translate(-50%, 0);
  }
  #modal .modal_main .modal_inner {
    display: block;
    top: 0;
    right: 0;
    bottom: 80px;
    left: 0;
    overflow-x: hidden;
    overflow-y: auto;
  }
  #modal .modal_main .modal_inner figure {
    display: block;
    width: 100%;
    height: auto;
    padding: 15px;
    text-align: center;
  }
  #modal .modal_main .modal_inner figure img {
    position: static;
    height: 350px;
    margin: 0 auto;
  }
  #modal .modal_main .modal_inner .info {
    width: 100%;
    padding: 15px;
  }
  #modal .modal_main .modal_inner .info .name dt {
    font-size: 32px;
    font-size: 2rem;
  }
  #modal .modal_main .modal_inner .info .name dd {
    font-size: 14px;
    font-size: 0.875rem;
  }
  #modal .modal_main .modal_inner .info .cv:after {
    width: 100%;
  }
  #modal .modal_main .modal_inner .info .cv dt {
    font-size: 14px;
    font-size: 0.875rem;
  }
  #modal .modal_main .modal_inner .info .cv dd {
    font-size: 16px;
    font-size: 1rem;
  }
  #modal .modal_main .modal_inner .info .txt {
    font-size: 14px;
    font-size: 0.875rem;
  }
  #modal .modal_main .modal_inner .info .sub-img li {
    width: calc(50% - 12px);
    text-align: center;
  }
  #modal .modal_main .modal_inner .info .sub-img li img {
    width: 100%;
    max-width: 185px;
  }
  .main-img {
    margin-bottom: 0;
  }
  .main-img:after {
    height: 90px;
  }
  .main-img {
    height: 148.56vw;
    overflow: hidden;
  }
  .main-img figure {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .main-img figure img {
    -o-object-fit: cover;
    position: relative;
    left: -8%;
    width: 108%;
    height: 108%;
    object-fit: cover;
  }
  .main-img h1 {
    top: 55%;
    left: 50%;
    width: 79%;
  }
  .main-img .onair {
    -webkit-transform: translate(-50%, 0) scale(1);
    transform: translate(-50%, 0) scale(1);
  }
  .main-img .onair {
    top: 77%;
    left: 50%;
    width: 58.72%;
  }
  .main-img .hyuse {
    bottom: 0;
    left: 9%;
    width: 48%;
  }
  .main-img .chika {
    bottom: 0;
    left: 44%;
    width: 49.19%;
  }
  .main-img .osamu {
    top: 35%;
    left: -15%;
    width: 55%;
  }
  .main-img .yuma {
    top: 40%;
    left: 54%;
    width: 64%;
  }
  .main-img .flare {
    top: 10%;
    left: 20.5%;
    width: 49.73%;
  }
  .main-img .banner {
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
  .main-img .banner li a {
    margin: auto;
  }
  main.page {
    padding: 124px 3% 500px 3%;
    background-image: url("../img/bg_body2.png"), url("../img/bg_body.png");
    background-position: left 125px,center top;
    background-repeat: repeat-y,no-repeat;
    background-size: 135px 1241px,200%;
  }
  .PC {
    display: none;
  }
  .SP {
    display: block;
  }
  .notes {
    font-size: 12px;
    font-size: 0.75rem;
  }
  .titL .en {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .titL h2 {
    font-size: 16px;
    font-size: 1rem;
  }
  .titS {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .titS.cat2:before {
    background: url("../img/ico_title_sp_cat2.svg") no-repeat center center;
  }
  .titS.small.cat2:before {
    background: url("../img/ico_title_sp_cat2.svg") no-repeat center center;
  }
  .titS:before {
    background: url("../img/ico_title_sp.svg") no-repeat center center;
    background-size: 40px 10px;
  }
  .btn {
    width: 228px;
    height: 65px;
    font-size: 16px;
    font-size: 1rem;
  }
  .news-area {
    padding: 35px 3% 97px 3%;
    background: url("../img/top/bg_news2_sp.png") repeat-y center center;
    background-size: 100%;
  }
  .news-area .bg {
    bottom: -780px;
  }
  .news-list li:after {
    display: none;
  }
  .news-list li a {
    display: block;
  }
  .news-list li a .date:after {
    display: block;
    width: 92px;
    height: 1px;
    margin-top: 6px;
    background: url("../img/ln_news.svg") no-repeat;
    background-size: 100%;
    content: "";
  }
  .news-list li a .txt {
    padding-left: 0;
  }
  .movie-area {
    background-image: none;
  }
  .movie-area:before {
    -webkit-transform: translate(0, -38px);
    height: 39px;
    transform: translate(0, -38px);
    background: url("../img/frm_top_sp.svg") no-repeat right 20px top;
    background-size: 1000px 39px;
  }
  .movie-area:after {
    -webkit-transform: translate(0, 38px);
    height: 39px;
    transform: translate(0, 38px);
    background: url("../img/frm_bottom_sp.svg") no-repeat left 20px top;
    background-size: 1000px 39px;
  }
  .movie-block {
    margin-bottom: 55px;
    overflow: hidden;
  }
  .movie-block .movie a {
    max-width: 300px;
  }
  .movie-block .movie a img.play {
    width: 71px;
  }
  .movie-block .movie.large a {
    max-width: 300px;
  }
  .movie-block .titM {
    max-width: calc(100% - 94px);
    margin-left: 30px;
    padding-left: 0;
    background: url("../img/bg_tit_movie01.png") no-repeat right bottom;
    background-size: 200%;
  }
  .movie-block .titM:before {
    width: 1000px;
    height: 3px;
  }
  .movie-block .titM .en {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .movie-block .titM h2 {
    font-size: 16px;
    font-size: 1rem;
  }
  .movie-block:nth-child(2n) .titM {
    margin-right: 0;
    margin-left: 64px;
    background: url("../img/bg_tit_movie02.png") no-repeat left bottom;
    background-size: 200%;
  }
  .twitter-area {
    padding: 95px 3% 500px 3%;
    background: url("../img/top/bg_twitter_sp.png") no-repeat center top;
    background-size: 100%;
  }
  .twitter-area-inr {
    display: block;
  }
  .twitter-area-block:first-child {
    margin-bottom: 50px;
  }
  .twitter-area-block .twitter-tit {
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
  }
  .twitter-area-block h3 {
    margin-bottom: 0;
  }
  .twitter-area-block h3.small {
    font-size: 12px;
    font-size: 0.75rem;
  }
  .twitter-area-block h3:before {
    background: url("../img/ico_title_sp.svg") no-repeat center center;
    background-size: 40px 10px;
  }
  .twitter-area-block .twitter {
    height: 340px;
  }
  .twitter-area-block .twitter iframe {
    height: 340px !important;
  }
  #nav .menu {
    width: 65px;
    height: 65px;
  }
  #nav .menu div {
    width: 35px;
    height: 3px;
  }
  #nav .menu div:before {
    top: -13px;
    width: 35px;
    height: 3px;
  }
  #nav .menu div:after {
    bottom: -10px;
    width: 35px;
    height: 3px;
  }
  .nav-menu {
    background-image: none;
  }
  html.menuOpen .nav-menu {
    display: block;
    overflow: auto;
  }
  .nav-menu .logo {
    width: 100%;
  }
  .nav-menu .logo img {
    display: block;
    width: 100%;
    max-width: 364px;
    margin: 0 auto;
  }
  .nav-menu ul {
    width: 100%;
    margin-bottom: 35px;
  }
  .nav-menu ul li a .en {
    margin-right: 12px;
    font-size: 30px;
    font-size: 1.875rem;
  }
  .nav-menu ul li a .txt {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .nav-menu-inr {
    -ms-flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
    padding: 85px 3%;
  }
  .page-links {
    display: block;
  }
  .page-links dl {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 15px;
    padding-right: 0;
  }
  .page-links dl dt {
    width: 100%;
    margin-bottom: 10px;
    font-size: 11px;
    font-size: 0.6875rem;
  }
  .page-links dl dd {
    margin-left: 10px;
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 7px;
  }
  .page-links dl dd:nth-child(2) {
    margin-left: 0;
  }
  .page-links dl:first-child {
    margin-right: 0;
  }
  .page-links dl:first-child:after {
    width: 100%;
  }
  .page-links dl:nth-child(2) {
    max-width: 448px;
    padding-left: 0;
  }
  .character-area {
    display: block;
  }
  .character-area .tit {
    padding-top: 0;
    font-size: 20px;
    font-size: 1.25rem;
  }
  .character-area ul {
    -ms-flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 300px;
    margin: 0 auto;
  }
  .news-page img[width] {
    width: 100%;
  }
  .news-page .youtube iframe {
    width: 100%;
    height: 56vw;
  }
  .news-page-list li a {
    display: block;
  }
  .goods-list li {
    width: 49.5%;
    margin-bottom: 115px;
    float: left;
    margin-right: 1%;
    margin-left: auto;
  }
  .goods-list li a {
    display: block;
    position: relative;
    padding: 10px 15px;
    background: url(../img/bg_right-top.svg) no-repeat right top;
    color: #ffffff;
    text-decoration: none;
  }
  .goods-list li a figure {
    margin: 0 auto;
    width:auto;
  }
  .table-onair th, .table-onair td {
    font-size: 13px;
    font-size: 0.8125rem;
  }
  .banner-list li {
    width: 50%;
    margin-right: 0;
  }
  .banner-list li a {
    display: block;
    font-size: 12px;
    font-size: 0.75rem;
  }
  .banner-list li a img {
    width: 90%;
    max-width: 200px;
  }
  .slider_wrap {
    margin-bottom: 105px;
  }
  .slick-dots {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    bottom: -75px;
    justify-content: space-between;
  }
  .slick-dots li {
    width: 25%;
    margin: 0 5px 10px 0;
  }
  .slick-dotted.slick-slider {
    margin-bottom: 0;
  }
  .episode-movie a img.play {
    width: 71px;
  }
  .back-number {
    padding: 20px 40px 35px 25px;
  }
  .back-number ul li {
    width: 50%;
    margin-right: 0;
  }
  .back-number ul li:nth-child(2n) {
    margin-right: 0;
  }
  .back-number ul li a {
    margin: 0 auto;
  }
  .music-area {
    padding: 25px 25px 45px 25px;
  }
  .music-area .artist {
    display: block;
  }
  .music-area .artist figure {
    margin-bottom: 15px;
    text-align: center;
  }
  .music-area .artist .info {
    margin-left: 0;
  }
  .music-area .opt-cd {
    display: block;
  }
  .music-area .opt-cd figure {
    margin-bottom: 15px;
    text-align: center;
  }
  .music-area .opt-cd .info {
    margin-left: 0;
  }
  .music-area .opt-cd .info .txt {
    margin-bottom: 30px;
  }
  .music-area .opt-cd .info ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .goods-detail {
    display: block;
  }
  .goods-detail figure {
    text-align: center;
  }
  .goods-detail .info {
    margin-left: 0;
  }
  .movie_list li {
    width: 49%;
    margin-right: 2%;
  }
  .movie_list li:nth-child(2n) {
    margin-right: 0;
  }
  .movie_list li:nth-child(2n - 1) {
    clear: left;
  }
}
