@charset "UTF-8";
/* CSS INFORMATION =====================================================
File name : base.css
Description : 共通
===================================================================== */
/* ========================================================
    base
======================================================== */
* {
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: 1.8;
  box-sizing: border-box;
}

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

a {
  text-decoration: none;
  word-break: break-all;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.7;
  }
}

dt {
  font-weight: 400;
}

em {
  font-style: normal;
}

.sp {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: inline-block;
  }
}

.color_blue01 {
  color: #004089;
}
.color_blue02 {
  color: #016bb2;
}
.color_green {
  color: #4bb404;
}
.color_purple {
  color: #943e98;
}
.color_grade01 {
  display: inline-block;
  color: transparent;
  background: linear-gradient(0deg, #004089 0%, #004089 5%, #1393d0 80%, #5ee1d9 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.text_align_left {
  text-align: left;
}
.text_align_center {
  text-align: center;
}
.text_align_right {
  text-align: right;
}
.text_indent {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}

/* ========================================================
    layout
======================================================== */
html {
  font-size: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 10px;
  }
}

body {
  width: 100%;
  color: #000000;
  font-family: "Zen Old Mincho", serif;
  font-size: 3rem;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.8rem;
  }
}

.wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/common/common_bg01.jpg);
  background-repeat: repeat;
  background-position: center top;
  background-size: auto auto;
  z-index: -4;
}

.main {
  position: relative;
  width: 100%;
}

.inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4rem;
}

/* ========================================================
    header
======================================================== */
.header {
  position: relative;
  width: 100%;
}
.header .animehead {
  position: relative;
  width: 100%;
  padding: 1.6rem 0;
}
@media screen and (min-width: 768px) {
  .header .animehead {
    padding: 1.2rem 0;
  }
}
.header .animehead::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000000;
  z-index: -3;
}
.header .animehead_logo {
  position: relative;
  width: 15.6rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .header .animehead_logo {
    width: 11.2rem;
  }
}
.header .animehead_logo > a {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header .animehead_logo > a:hover {
    opacity: 1;
  }
}
.header .subhead {
  position: absolute;
  left: 3rem;
  top: calc(100% + 3rem);
  display: block;
  z-index: 10;
}
.header .subhead_logo {
  position: relative;
  width: 27.8rem;
}
@media screen and (min-width: 1280px) {
  .header .subhead_logo {
    width: 24rem;
  }
}
.header .subhead_logo > a {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header .subhead_logo > a:hover {
    opacity: 1;
  }
}

/* ========================================================
    nav
======================================================== */
.nav {
  position: relative;
  width: 100%;
}
.nav_menu {
  position: fixed;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  z-index: 100;
}
.nav_menu_btn {
  position: fixed;
  right: calc(3rem + 100% - 100vw);
  top: 3rem;
  display: block;
  width: 12rem;
  z-index: 103;
}
@media screen and (min-width: 768px) {
  .nav_menu_btn {
    width: 9.2rem;
  }
}
.nav_menu_open {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  font-size: 0;
  background-image: url(../images/common/btn_menuopen.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  cursor: pointer;
}
.nav_menu_close {
  position: relative;
  display: none;
  width: 100%;
  aspect-ratio: 1/1;
  font-size: 0;
  background-image: url(../images/common/btn_menuclose.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  cursor: pointer;
}
.nav_menu_cont {
  position: fixed;
  right: 0;
  top: 0;
  display: none;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: linear-gradient(-45deg, rgba(40, 78, 143, 0.95) 0%, rgba(44, 142, 196, 0.95) 68%, rgba(94, 225, 217, 0.95) 100%);
  z-index: 101;
}
@media screen and (min-width: 768px) {
  .nav_menu_cont {
    width: 64rem;
  }
}
.nav_menu_inner {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 24rem 4rem 12rem 4rem;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 102;
}
@media screen and (min-width: 768px) {
  .nav_menu_inner {
    padding: 18rem 8rem 9rem 8rem;
  }
}
.nav_menu_list {
  position: relative;
  width: 100%;
}
.nav_menu_list > li {
  width: 100%;
  margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  .nav_menu_list > li {
    margin-top: 4.5rem;
  }
}
.nav_menu_list > li:first-child {
  margin-top: 0;
}
.nav_menu_list > li.menu01 > a {
  background-image: url(../images/common/nav_menu01.png);
}
@media screen and (min-width: 768px) {
  .nav_menu_list > li.menu01 > a:hover {
    background-image: url(../images/common/nav_menu01_h.png);
    opacity: 1;
  }
}
.nav_menu_list > li.menu02 > a {
  background-image: url(../images/common/nav_menu02.png);
}
@media screen and (min-width: 768px) {
  .nav_menu_list > li.menu02 > a:hover {
    background-image: url(../images/common/nav_menu02_h.png);
    opacity: 1;
  }
}
.nav_menu_list > li.menu03 > a {
  background-image: url(../images/common/nav_menu03.png);
}
@media screen and (min-width: 768px) {
  .nav_menu_list > li.menu03 > a:hover {
    background-image: url(../images/common/nav_menu03_h.png);
    opacity: 1;
  }
}
.nav_menu_list > li.menu04 > a {
  background-image: url(../images/common/nav_menu04.png);
}
@media screen and (min-width: 768px) {
  .nav_menu_list > li.menu04 > a:hover {
    background-image: url(../images/common/nav_menu04_h.png);
    opacity: 1;
  }
}
.nav_menu_list > li > a {
  display: block;
  width: 100%;
  height: 4.2rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100%;
}
@media screen and (min-width: 768px) {
  .nav_menu_list > li > a {
    height: 3.2rem;
  }
}
.nav_menu_list > li > a > span {
  font-size: 0;
}
.nav_menu_sns {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  margin-top: 12rem;
}
@media screen and (min-width: 768px) {
  .nav_menu_sns {
    margin-top: 9rem;
  }
}
.nav_menu_sns > li {
  width: 10rem;
  aspect-ratio: 1/1;
  margin: 0 2.5rem;
}
@media screen and (min-width: 768px) {
  .nav_menu_sns > li {
    width: 6rem;
    margin: 0 1.5rem;
  }
}
.nav_menu_sns > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .nav_menu_sns > li > a:hover {
    background-color: #7fe1ee;
  }
}
.nav_menu_sns > li > a > svg {
  width: 40%;
  aspect-ratio: 1/1;
  fill: #1393d0;
}

/* ========================================================
    footer
======================================================== */
.footer {
  position: relative;
  width: 100%;
  background: linear-gradient(0deg, #284e8f 0%, #2c8ec4 100%);
}
.footer .footbnr {
  position: relative;
  width: 100%;
  padding: 12rem 0;
}
@media screen and (min-width: 768px) {
  .footer .footbnr {
    padding: 9rem 0;
  }
}
.footer .footbnr::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  display: block;
  width: 89.3333333333%;
  height: 1px;
  background-color: #ffffff;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .footer .footbnr::before {
    width: 100%;
  }
}
.footer .footbnr_list {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  width: 89.3333333333%;
  margin: -3.2rem auto 0 auto;
}
@media screen and (min-width: 768px) {
  .footer .footbnr_list {
    width: 100%;
    max-width: 1560px;
  }
}
.footer .footbnr_list > li {
  width: 100%;
  margin: 3.2rem 0 0 0;
}
@media screen and (min-width: 768px) {
  .footer .footbnr_list > li {
    width: 48rem;
    margin: 3.2rem 2rem 0 2rem;
  }
}
.footer .footbnr_list > li > a {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer .footbnr_list > li > a:hover {
    transform: translateY(-1rem);
    opacity: 1;
  }
}
.footer .copyright {
  position: relative;
  width: 100%;
  padding: 4rem 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer .copyright {
    padding: 3rem 0;
  }
}
.footer .copyright_text {
  position: relative;
  width: 100%;
  padding-bottom: 0.2em;
  color: #ffffff;
  font-size: 2.4rem;
}
@media screen and (min-width: 768px) {
  .footer .copyright_text {
    font-size: 1.6rem;
  }
}
.footer .pagetop {
  position: fixed;
  right: 2rem;
  bottom: 30px;
  display: none;
  z-index: 10;
}
.footer .pagetop_btn {
  position: relative;
  width: 14rem;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  .footer .pagetop_btn {
    width: 11.2rem;
  }
}
.footer .pagetop_btn > a {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/common/btn_pagetop.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
@media screen and (min-width: 768px) {
  .footer .pagetop_btn > a:hover {
    background-image: url(../images/common/btn_pagetop_h.png);
    opacity: 1;
  }
}
.footer .pagetop_btn > a > span {
  font-size: 0;
}

/* ========================================================
    popup
======================================================== */
.popup {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: linear-gradient(-45deg, rgba(40, 78, 143, 0.95) 0%, rgba(44, 142, 196, 0.95) 68%, rgba(94, 225, 217, 0.95) 100%);
  z-index: 1000;
}
.popup_area {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 1010;
}
.popup_bg {
  position: fixed;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100vh;
  height: 100svh;
  z-index: 1020;
  cursor: pointer;
}
.popup_inner {
  position: relative;
  align-self: flex-start;
  width: calc(100% - 8rem);
  max-width: 860px;
  margin: auto;
  padding: 5rem 0;
  z-index: 1030;
}
.popup_close {
  position: relative;
  width: 13.1343283582%;
  aspect-ratio: 1/1;
  margin: 0 -2.9850746269% 0 auto;
  background-image: url(../images/common/btn_close.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  cursor: pointer;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .popup_close {
    position: absolute;
    right: 4rem;
    top: 11rem;
    width: 5.5813953488%;
    margin: 0;
  }
}
.popup_movie_embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.popup_movie_embed * {
  line-height: inherit;
}
.popup_movie_embed iframe {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.popup_movie_embed .video-js {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.popup_list > li {
  display: none;
}/*# sourceMappingURL=base.css.map */