/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

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

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

body {
  font-size: 14px;
  color: #221815;
  font-family: "Noto Serif JP", serif;
  background: url(../img/common/main-bg.png) center top repeat;
  overscroll-behavior-y: none; //macの謎の無限スクロール領域を消す
}

img {
  display: block;
  width: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

a {
  font-size: inherit;
  color: inherit;
  text-decoration: none;
}

.font-lora {
  font-family: "Lora", serif;
  letter-spacing: 0.2em;
}

.sp {
  display: none;
}

.wrapper {
  display: flex;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  body {
    padding-top: 130px;
    font-size: 13px;
  }

  .wrapper {
    flex-direction: column;
  }

  .pc {
    display: none;
  }
}
.loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url(../img/common/main-bg.png) center top repeat;
  z-index: 1000;
}
.loading-container .load-logo-container {
  position: relative;
  max-width: 768px;
  width: 100%;
}
.loading-container .load-logo-container .logo1 {
  display: none;
}
.loading-container .load-logo-container .logo1 img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.loading-container .load-logo-container .logo1 img:first-child {
  position: relative;
  opacity: 1;
}
.loading-container .load-logo-container .logo1 img:nth-of-type(2) {
  animation: kira 2s infinite linear;
}
.loading-container .load-logo-container .logo1 img:last-child {
  animation: kira 2.5s 1s infinite linear;
}
.loading-container .load-logo-container .logo2 {
  display: none;
  margin: 0 auto;
  width: 80%;
}

@keyframes kira {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
header {
  position: relative;
  max-width: 384px;
  width: 100%;
  background: url(../img/common/header-bg.png) left bottom no-repeat;
}
header h1 {
  margin: 30px auto;
  max-width: 270px;
  width: 90%;
  height: auto;
  transition: opacity 0.3s;
}
header h1:hover {
  opacity: 0.5;
}
header .roadshow-text {
  padding: 20px 0 20px 0.5em;
  font-size: 26px;
  letter-spacing: 0.6em;
  text-align: center;
  border-top: solid 1px #e8e1df;
  border-bottom: solid 1px #e8e1df;
  box-sizing: border-box;
}
header nav {
  padding: 20px 57px;
  box-sizing: border-box;
}
header nav ul .menu-item {
  width: 100%;
  height: 50px;
}
header nav ul .menu-item a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
header nav ul .menu-item a .active-line-container {
  display: flex;
  justify-content: flex-start;
  width: 24px;
  height: 30px;
  opacity: 0;
}
header nav ul .menu-item a .active-line-container .active-line {
  margin-right: 2px;
  width: 1px;
  height: 100%;
  background: #ec7aac;
  transition: width 0.3s ease;
}
header nav ul .menu-item a .active-line-container .active-line:first-child {
  background: #00b9ee;
}
header nav ul .menu-item a .active-line-container .active-line:last-child {
  background: #ffe100;
}
header nav ul .menu-item a .menu-text {
  font-size: 20px;
  letter-spacing: 0.2em;
  transition: opacity 0.3s;
}
header nav ul .menu-item a .menu-text .lip-blue {
  color: #00b9ee;
}
header nav ul .menu-item a .menu-text .lip-pink {
  color: #ec7aac;
}
header nav ul .menu-item a .menu-text .lip-yellow {
  color: #ffe100;
}
header nav ul .menu-item.active a .active-line-container {
  opacity: 1;
}
header nav ul .menu-item:hover a .active-line-container {
  opacity: 1;
}
header nav ul .menu-item:hover a .active-line-container .active-line {
  margin-right: 0px;
  width: 3px;
}
header nav ul .menu-item:hover a .menu-text {
  opacity: 0.5;
}
header .sns-container {
  display: flex;
  justify-content: flex-start;
  padding: 20px 0 20px 24px;
  margin: 0 auto;
  max-width: 270px;
  width: 100%;
  border-top: solid 1px #e8e1df;
  border-bottom: solid 1px #e8e1df;
  box-sizing: border-box;
}
header .sns-container a + a {
  margin-left: 20px;
}
header .sns-container a img {
  max-width: 40px;
  transition: opacity 0.3s;
}
header .sns-container a:hover img {
  opacity: 0.7;
}
header .banner-container {
  padding: 0 57px;
  margin-top: 20px;
  box-sizing: border-box;
}
header .banner-container .left-banner img {
  margin-bottom: 20px;
  filter: drop-shadow(0 0 4px rgba(7, 0, 2, 0.2));
  transition: filter 0.3s ease, opacity 0.3s;
}
header .banner-container .left-banner img:hover {
  opacity: 0.7;
  filter: drop-shadow(0 0 1px rgba(7, 0, 2, 0.2));
}
header .banner-container .movie-header img {
  filter: drop-shadow(0 0 4px rgba(7, 0, 2, 0.2));
  transition: filter 0.3s ease, opacity 0.3s;
}
header .banner-container .movie-header img:hover {
  opacity: 0.7;
  filter: drop-shadow(0 0 1px rgba(7, 0, 2, 0.2));
}
header .menu-button {
  position: absolute;
  top: 28px;
  right: 20px;
  width: 30px;
  height: 21px;
}
header .menu-button .menu-button-line {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate3d(0, -50%, 0);
  width: 30px;
  height: 1px;
  background: #ec7aac;
}
header .menu-button .menu-button-line:first-child {
  transform: translate3d(0, calc(-50% - 10px), 0);
  background: #00b9ee;
}
header .menu-button .menu-button-line:last-child {
  transform: translate3d(0, calc(-50% + 10px), 0);
  background: #ffe100;
}

@media only screen and (max-width: 1200px) {
  header {
    max-width: 200px;
  }
  header .roadshow-text {
    font-size: 15px;
  }
  header nav {
    padding: 20px 10px;
  }
  header nav ul .menu-item {
    height: 40px;
  }
  header nav ul .menu-item a .active-line-container {
    width: 15px;
  }
  header nav ul .menu-item a .menu-text {
    font-size: 15px;
  }
  header .banner-container {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 768px) {
  header {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    height: 80px;
    background: #fff;
    z-index: 100;
    transition: height 0.3s ease;
  }
  header h1 {
    padding: 10px 0;
    margin: 0 auto;
    width: 210px;
  }
  header .roadshow-text {
    padding: 0;
    font-size: 12px;
    border: none;
  }
  header .roadshow-text br {
    display: none;
  }
  header .roadshow-text span {
    margin-right: 1em;
  }
  header nav {
    display: none;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    height: calc(100% - 80px);
  }
  header nav .menu-wrapper {
    display: flex;
    margin: 0 auto 20px;
    width: 90%;
  }
  header nav ul {
    width: 100%;
  }
  header nav ul .menu-item {
    height: 50px;
  }
  header .sns-container {
    display: flex;
    justify-content: center;
    padding-left: 0;
    max-width: 100%;
    width: 90%;
  }
  header.open {
    height: 100vh;
  }
  header.open nav {
    display: flex;
  }

  .menu-button {
    display: block;
  }

  .banner-container.sp {
    display: block;
    padding: 0 5%;
  }
  .banner-container.sp .left-banner img {
    margin-bottom: 40px;
    filter: drop-shadow(0 0 4px rgba(7, 0, 2, 0.2));
  }
  .banner-container.sp .movie-header img {
    filter: drop-shadow(0 0 4px rgba(7, 0, 2, 0.2));
  }
}
.main-contents {
  padding-bottom: 150px;
  width: 100%;
  box-sizing: border-box;
}

@media only screen and (max-width: 768px) {
  .main-contents {
    padding-bottom: 70px;
  }
}
.button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 40px;
  border: solid 1px #e8e1df;
  background: url(../img/common/btn-bg.png) right center no-repeat, #fff;
  background-size: auto 100%;
  filter: drop-shadow(0 0 5px rgba(7, 0, 2, 0.2));
  box-sizing: border-box;
  cursor: pointer;
  transition: filter 0.3s ease;
}
.button::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  transition: width 0.3s ease;
}

@media only screen and (min-width: 769px) {
  .button:hover {
    filter: drop-shadow(0 0 1px rgba(7, 0, 2, 0.2));
  }
  .button:hover::before {
    width: 100%;
  }
}
footer {
  width: 100%;
  background: #fff;
  box-shadow: 0 0 20px rgba(7, 0, 2, 0.2);
}
footer .left {
  color: #00b9ee;
}
footer .right {
  color: #ffe100;
}
footer .top-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 30px;
  bottom: 30px;
  transition: opacity 0.3s;
}
footer .top-button img {
  max-width: 45px;
}
footer .top-button p {
  margin: 5px 0 0 8px;
  font-size: 10px;
  letter-spacing: 0.6em;
}
footer .top-button:hover {
  opacity: 0.7;
}
footer .credit {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
}

@media only screen and (max-width: 768px) {
  footer .top-button {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 70px;
    border-bottom: solid 1px #e8e1df;
    box-sizing: border-box;
  }
  footer .top-button img {
    max-width: 40px;
  }
}
.modaal-wrapper .modaal-content-container {
  padding: 0;
}
.modaal-wrapper .modaal-close {
  width: 100px;
  height: 100px;
}
.modaal-wrapper .modaal-close::before, .modaal-wrapper .modaal-close::after {
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  transition: width 0.3s ease;
}
.modaal-wrapper .modaal-close::before {
  transform: translate3d(-50%, -50%, 0) rotate(45deg);
  background: #00b9ee;
}
.modaal-wrapper .modaal-close::after {
  transform: translate3d(-50%, -50%, 0) rotate(-45deg);
  background: #ffe100;
}
.modaal-wrapper .modaal-close:hover {
  background: none;
}
.modaal-wrapper .modaal-close:hover::before, .modaal-wrapper .modaal-close:hover::after {
  width: 80%;
}
