@charset "UTF-8";
/* -------------------------------- */
/* responsive set                   */
/* -------------------------------- */
/* -------------------------------- */
/* common
/* -------------------------------- */
body,
html,
h1,
h2,
h3,
h4,
h5,
ol,
ul,
li,
p,
figure,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 100px; /* header高さ */
}

ul {
  list-style: none;
}

img {
  display: block;
}

.sp {
  display: none;
}
@media screen and (max-width: 440px) {
  .sp {
    display: block;
  }
}

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

@media (hover: none) {
  a:hover {
    opacity: 1;
  }
}
/* --------------------------------
header
-------------------------------- */
.header {
  /* 古いヘッダーを非表示に */
  display: none;
}

header {
  position: fixed;
  top: 45px;
  left: 30px;
  z-index: 999;
}
@media screen and (max-width: 440px) {
  header {
    top: 30px;
    left: 20px;
  }
}
header h1 img {
  height: auto;
  width: 320px;
}
@media screen and (max-width: 440px) {
  header h1 img {
    width: 250px;
  }
}

/* global navigation */
.visuallyHidden {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.hamburger {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  cursor: pointer;
  position: fixed;
  right: 30px;
  top: 30px;
  z-index: 920;
  transition: 0.4s;
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 440px) {
  .hamburger {
    right: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
  }
}
.hamburger-line {
  position: relative;
  width: 26px;
  height: 2px;
  background: #001868;
  transition: 0.4s;
}
@media screen and (max-width: 440px) {
  .hamburger-line {
    width: 20px;
  }
}
.hamburger-line::before, .hamburger-line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: #001868;
  transition: 0.4s;
}
.hamburger-line::before {
  top: -8px;
}
.hamburger-line::after {
  top: 8px;
}
.hamburger[aria-expanded=true] .hamburger-line {
  transform: rotate(45deg);
}
.hamburger[aria-expanded=true] .hamburger-line::before {
  top: 0;
  transform: rotate(90deg);
}
.hamburger[aria-expanded=true] .hamburger-line::after {
  top: 0;
  transform: rotate(90deg);
}

.overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
  z-index: 900;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 910;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  min-width: 1200px;
  max-height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 70px 70px 0 70px;
}
@media screen and (max-width: 440px) {
  .modal-container {
    display: block;
    min-width: initial;
    padding: 30px;
    top: 0%;
    left: 0%;
    transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    width: 100%;
    box-sizing: border-box;
  }
}
.modal-container.active {
  opacity: 1;
  visibility: visible;
}
.modal-container h2 {
  margin-right: 70px;
}
@media screen and (max-width: 440px) {
  .modal-container h2 {
    margin-right: 0px;
    margin-bottom: 30px;
    margin-top: 50px;
  }
}
.modal-container h2 a {
  color: #001868;
  border: 1px solid #001868;
  border-radius: 10px;
  padding: 15px 2em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 440px) {
  .modal-container h2 a {
    padding: 15px 1em;
  }
}
.modal-container h2 a img {
  height: 1em;
  width: auto;
  margin-left: 1em;
}
.modal-container .menu-list {
  color: #001868;
  font-family: "Noto Sans JP", "Helvetica Neue", "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
}
.modal-container .menu-list:nth-of-type(1) {
  margin-right: 70px;
}
@media screen and (max-width: 440px) {
  .modal-container .menu-list:nth-of-type(1) {
    margin-right: 0px;
    margin-bottom: 25px;
  }
}
.modal-container .menu-list:nth-of-type(2) > li:nth-last-of-type(1) a {
  display: block;
  font-size: 26px;
  color: #fff;
  width: 300px;
  display: inline-block;
}
@media screen and (max-width: 440px) {
  .modal-container .menu-list:nth-of-type(2) > li:nth-last-of-type(1) a {
    margin: 20px 0 0 0;
  }
}
.modal-container .menu-list > li {
  font-size: 1.625rem;
  margin-bottom: 50px;
}
@media screen and (max-width: 440px) {
  .modal-container .menu-list > li {
    font-size: 1.125rem;
    margin-bottom: 25px;
  }
}
.modal-container .menu-list > li:nth-last-of-type(1) {
  margin-bottom: 0px;
}
.modal-container .menu-list > li a {
  color: #001868;
  text-decoration: none;
  transition: 0.4s;
  position: relative;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.modal-container .menu-list > li a img {
  height: 0.6em;
  width: auto;
  margin-left: 10px;
}
.modal-container .menu-list > li ul li {
  padding-left: 1em;
  position: relative;
  font-size: 1.25rem;
}
@media screen and (max-width: 440px) {
  .modal-container .menu-list > li ul li {
    font-size: 1rem;
  }
}
.modal-container .menu-list > li ul li a {
  margin-bottom: 15px;
  font-weight: 400;
}
@media screen and (max-width: 440px) {
  .modal-container .menu-list > li ul li a {
    margin-bottom: 15px;
  }
}
.modal-container section.sp {
  width: 100%;
  padding: 100px 30px 0;
  box-sizing: border-box;
}
.modal-container section.sp > ul > li {
  margin-bottom: 15px;
}
.modal-container section.sp > ul > li a {
  color: #001868;
  text-decoration: none;
  position: relative;
}
.modal-container section.sp > ul > li h2 {
  font-size: 0.875rem;
  color: #001868;
  margin-bottom: 15px;
  padding-right: 2em;
}
.modal-container section.sp > ul > li h2 a {
  color: #001868;
}
.modal-container section.sp > ul > li h3 {
  font-size: 0.75rem;
  color: #001868;
  margin-bottom: 10px;
}
.modal-container section.sp > ul > li ul {
  margin-bottom: 15px;
}
.modal-container section.sp > ul > li ul li {
  padding-left: 1em;
  position: relative;
  font-size: 0.75rem;
  margin-bottom: 7px;
}
.modal-container section.sp > ul > li ul li::after {
  content: "";
  background: #001868;
  height: 1px;
  width: 0.7em;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

body.is-fixed {
  overflow: hidden;
}

.footer {
  padding-bottom: 6.5rem;
}

@media screen and (min-width: 768px) {
  .footer {
    padding-bottom: 3rem;
  }
}
.footer__inner {
  max-width: calc(1440px - 6rem);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.25rem;
}

.footer__heading {
  z-index: 2;
  position: relative;
  text-align: center;
  color: #001868;
}

.footer__button {
  position: relative;
  display: block;
  margin-top: 2.5rem;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.footer__button-inner {
  z-index: 2;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

@media screen and (min-width: 768px) {
  .footer__button-inner {
    display: table;
  }
}
.footer__button-inner .button {
  margin-left: auto;
  margin-right: auto;
}

.footer__button-inner:not(:hover) + .footer__button-cover {
  filter: grayscale(1);
  opacity: 0.25;
}

.footer__button-cover {
  z-index: 1;
  position: absolute;
  transform: translateY(-40%);
  top: 50%;
  display: block;
  width: 100%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: filter 0.3s, opacity 0.5s;
  opacity: 0.9;
}

@media screen and (min-width: 768px) {
  .footer__button-cover {
    transform: translateY(-42%);
    background-image: url(./../img/footer-cover01.png);
  }
}
.footer__button-cover::before {
  content: "";
  display: block;
  padding-top: 64%;
}

@media screen and (min-width: 768px) {
  .footer__button-cover::before {
    padding-top: 25%;
  }
}
.footer__image {
  z-index: 2;
  position: relative;
  display: block;
  max-width: 319px;
  width: 95.52%;
  margin-top: 0.5rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .footer__image {
    max-width: 100%;
    width: 493px;
  }
}
.footer__copyright {
  z-index: 2;
  position: relative;
  text-align: center;
  margin-top: 3.5rem;
}

@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 1.5rem;
  }
}
.footer__copyright small {
  font-size: 12px;
  line-height: 2;
}

@media screen and (min-width: 768px) {
  .footer__copyright small {
    font-size: 14px;
  }
}
.footer__copyright small img {
  display: inline-block;
  width: 172px;
  margin-left: 0.5em;
}

@media screen and (min-width: 768px) {
  .footer__copyright small img {
    width: 252px;
    margin-left: 0.75em;
  }
}
.image {
  position: relative;
  width: 100%;
}

.image img {
  width: 100%;
}

.image.-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.image.-cover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.menu-anchor {
  display: block;
  margin-top: -6rem;
  padding-top: 6rem;
}

@media screen and (min-width: 768px) {
  .menu-anchor {
    margin-top: -7.5rem;
    padding-top: 7.5rem;
  }
}
.link {
  display: table;
}

.link > a, .link > span {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #001868;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.link > a::before, .link > span::before {
  content: "";
  display: inline-block;
  background-image: url(./../img/icon-movie-blue.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  height: 20px;
  margin-right: 0.75rem;
}

.link a {
  transition: opacity 0.3s;
}

.link a:hover {
  opacity: 0.5;
}

.button {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  display: table;
  max-width: 560px;
  width: 100%;
  padding: 0.25rem 1.5rem 1rem;
  border-radius: 64px;
  background-color: #001868;
  filter: drop-shadow(6px 6px 0 #fbccd6);
  transform: translateZ(0);
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .button {
    max-width: 100%;
    width: 336px;
  }
}
.button span {
  display: inline-block;
  margin-top: 0.375rem;
}

.button span.-play {
  position: relative;
  padding-left: 2rem;
}

.button span.-play ::before {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  top: 55%;
  left: 0;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(./../img/icon-movie.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.button em, .button strong {
  font-style: normal;
  font-size: 1.3125em;
}

.button.-large {
  font-size: 16px;
  width: 100%;
  padding: 0.25rem 1.5rem 0.75rem;
}

@media screen and (min-width: 768px) {
  .button.-large {
    font-size: 26px;
    width: 592px;
    padding: 0.75rem 1.5rem 1rem;
  }
}
@media screen and (min-width: 768px) {
  .button.-large span.-play {
    padding-left: 2.75rem;
  }
}
@media screen and (min-width: 768px) {
  .button.-large span.-play ::before {
    top: 58%;
    width: 1.95rem;
    height: 1.95rem;
  }
}
.button.-large em {
  font-size: 1.125em;
}

@media screen and (min-width: 768px) {
  .button.-large em {
    font-size: 1.0769em;
  }
}
.button.-large strong {
  font-size: 1.125em;
}

@media screen and (min-width: 768px) {
  .button.-large strong {
    font-size: 1.2307em;
  }
}
.button.-gradation {
  background: linear-gradient(114deg, #001868 0%, #001868 10%, #674db1 30%, #ba4973 64%, #edb33d 86%, #fbcad5 92%);
  filter: drop-shadow(6px 6px 0 #001868);
}

.button:hover::after {
  content: "";
  height: 300%;
  width: 10%;
  position: absolute;
  transform: rotate(45deg);
  top: -85%;
  left: -35%;
  background-color: #fff;
  opacity: 1;
  animation-name: reflection;
  animation-duration: 0.8s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@keyframes reflection {
  0% {
    transform: scale(3) rotate(45deg);
    opacity: 1;
  }
  32% {
    opacity: 0.25;
  }
  64%, 100% {
    transform: scale(32) rotate(45deg);
    opacity: 0;
  }
}
a.card {
  transition: opacity 0.3s;
}

a.card:hover {
  opacity: 0.5;
}

.card {
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  background-color: #fff;
  filter: drop-shadow(0 0 8px rgba(22, 22, 22, 0.04));
  transform: translateZ(0);
}

.card__image {
  position: relative;
}

.card__image::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 63.75%;
}

.card__image .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.card__content {
  padding: 1rem 1.5rem 1.5rem;
}

@media screen and (min-width: 768px) {
  .card__content {
    min-height: 168px;
    padding: 1rem 1.5rem 2rem;
  }
}
.card__text {
  margin-top: 0.5rem;
}

@media screen and (min-width: 768px) {
  .card__text {
    margin-top: 0.75rem;
  }
}
.global-nav {
  overflow-y: scroll;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 4rem;
  background-color: #fff;
  opacity: 1;
  transition: opacity 0.3s, visibility 0.3s;
}/*# sourceMappingURL=common.css.map */