@charset "UTF-8";
/*---------------------------------------
    foundation
----------------------------------------*/
/* reset */
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 {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
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;
}

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

a {
  outline: none;
  padding: 0;
  text-decoration: none;
  transition: all 0.3s;
}

a {
  transition: opacity 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.7;
  }
}
a:visited {
  color: inherit;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

input, button, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  outline: none;
}

button {
  font-size: inherit;
  line-height: inherit;
}

textarea {
  resize: none;
}

select:focus,
textarea:focus,
input:focus {
  outline: none;
}

/*---------------------------------------
    Base CSS
----------------------------------------*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
  min-height: 100vh;
}

body {
  background-color: #2C2F33;
  color: #FFF;
  display: flex;
  flex-direction: column;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "MS P明朝", "Hiragino Mincho ProN", serif;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 2.3333333333;
  min-height: 100vh;
  position: relative;
}
@media (max-width: 767px) {
  body {
    font-size: 13px;
  }
}
@media (min-width: 768px) {
  body {
    font-size: 15px;
  }
}

main {
  flex-grow: 1;
  position: relative;
}

@media (max-width: 767px) {
  .main {
    margin-top: 62px;
  }
}
@media (min-width: 768px) {
  .main {
    margin-top: 76px;
  }
}

a {
  color: #FFF;
  display: inline-block;
}
a:visited {
  color: inherit;
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1190px;
  position: relative;
  width: 100%;
  z-index: 2;
}
@media (max-width: 767px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 768px) {
  .container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 980px) {
  .container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

section {
  overflow: hidden;
  position: relative;
}

@media (max-width: 767px) {
  .section {
    padding: 70px 0 90px;
  }
}
@media (min-width: 768px) {
  .section {
    padding: 10rem 0;
  }
}

.sr-only {
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

/*---------------------------------------
    Utilities
----------------------------------------*/
.dsp_sm {
  display: none;
}
@media (max-width: 767px) {
  .dsp_sm {
    display: block;
  }
}

@media (max-width: 767px) {
  .hide_sm {
    display: none;
  }
}

.dsp_lg {
  display: none;
}
@media (min-width: 980px) {
  .dsp_lg {
    display: block;
  }
}

@media (min-width: 980px) {
  .hide_lg {
    display: none;
  }
}

.db-pc {
  display: block;
}
@media (max-width: 767px) {
  .db-pc {
    display: inline;
  }
}
.db-sp {
  display: none;
}
@media (max-width: 767px) {
  .db-sp {
    display: block;
  }
}

@media (max-width: 767px) {
  .dn-sp {
    display: none;
  }
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .flex-md {
    display: flex;
    flex-wrap: wrap;
  }
}

.image-wrap {
  display: block;
  overflow: hidden;
  position: relative;
}
.image-wrap .img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.image-wrap img {
  -o-object-fit: cover;
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

/*---------------------------------------
    module
----------------------------------------*/
/*---------------------------------------
    Top - trailer
----------------------------------------*/
.trailer {
  height: 100vh;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: visibility 0.3s, opacity 0.3s;
  visibility: hidden;
  width: 100vw;
  z-index: 999;
}
.trailer.is-on {
  opacity: 1;
  visibility: visible;
}
.trailer__bg {
  background-color: rgba(0, 0, 0, 0.78);
  height: 100%;
  width: 100%;
}
.trailer__cont {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
@media (max-width: 767px) {
  .trailer__cont {
    padding-left: 32px;
    padding-right: 32px;
  }
}
.trailer__play {
  margin-left: auto;
  margin-right: auto;
  max-width: 420px;
  width: 100%;
}
.trailer__play a {
  background-color: rgba(110, 23, 23, 0.85);
  color: #FFF;
  display: block;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .trailer__play a {
    padding: 1.5rem 6rem 1.5rem 4rem;
  }
}
@media (min-width: 768px) {
  .trailer__play a {
    font-size: 1.9rem;
    letter-spacing: 0.15em;
    padding: 1.5rem 7rem 1.5rem 4.5rem;
  }
}
.trailer__play a::after {
  border-color: transparent transparent transparent #ffffff;
  border-style: solid;
  border-width: 10.5px 0 10.5px 18px;
  content: "";
  height: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
}
@media (max-width: 767px) {
  .trailer__play a::after {
    right: 20px;
  }
}
@media (min-width: 768px) {
  .trailer__play a::after {
    right: 3.65rem;
  }
}
.trailer__play a:hover {
  cursor: pointer;
  opacity: 1;
}
.trailer__wrap {
  margin-left: auto;
  margin-right: auto;
  max-width: 960px;
  width: 100%;
}
.trailer__wrap .movie-wrap {
  padding-top: 56%;
  position: relative;
}
.trailer__wrap .movie-wrap video {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.trailer__close {
  text-align: right;
}
.trailer__close a {
  align-items: center;
  display: inline-flex;
  font-size: 10px;
  line-height: 1;
  padding: 0.3em;
  text-transform: uppercase;
}
.trailer__close a .cross {
  display: inline-block;
  height: 16px;
  margin-left: 11.3px;
  position: relative;
  width: 16px;
}
.trailer__close a .cross::before, .trailer__close a .cross::after {
  background-color: #FFF;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  width: 100%;
}
.trailer__close a .cross::before {
  transform: translateY(-50%) rotate(-45deg);
}
.trailer__close a .cross::after {
  transform: translateY(-50%) rotate(45deg);
}
.trailer__close a:hover {
  cursor: pointer;
}
.trailer__skip {
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.4rem;
  max-width: 420px;
  text-align: right;
  width: 100%;
}
.trailer__skip a {
  align-items: center;
  display: inline-flex;
  font-size: 10px;
  line-height: 1;
  padding: 0.3em;
  text-transform: uppercase;
}
.trailer__skip a .cross {
  display: inline-block;
  height: 16px;
  margin-left: 11.3px;
  position: relative;
  width: 16px;
}
.trailer__skip a .cross::before, .trailer__skip a .cross::after {
  background-color: #FFF;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  width: 100%;
}
.trailer__skip a .cross::before {
  transform: translateY(-50%) rotate(-45deg);
}
.trailer__skip a .cross::after {
  transform: translateY(-50%) rotate(45deg);
}
.trailer__skip a:hover {
  cursor: pointer;
}

/*---------------------------------------
    Header
----------------------------------------*/
.header {
  background: linear-gradient(to bottom, #844141, #C65555);
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 39;
}
@media (max-width: 767px) {
  .header {
    height: 62px;
  }
}
@media (min-width: 768px) {
  .header {
    height: 76px;
  }
}

@media (min-width: 768px) {
  .header__container {
    height: 100%;
  }
}

@media (max-width: 767px) {
  .header__nav {
    background: linear-gradient(to bottom, #844141, #C65555);
    height: 100vh;
    opacity: 0;
    position: fixed;
    right: -100%;
    top: 0px;
    transition: all 0.3s linear;
    width: 100vw;
    z-index: 40;
  }
  .header__nav.active {
    opacity: 1;
    right: 0;
  }
}
@media (min-width: 768px) {
  .header__nav {
    align-items: center;
    display: flex;
    height: 100%;
  }
}
@media (max-width: 767px) {
  .header__nav-inner {
    height: 100%;
    overflow-y: scroll;
    padding: 238px 30px 120px;
    position: relative;
  }
  .header__nav-inner::before {
    background: url(../images/common/logo-kaiki.png) no-repeat center center/contain;
    content: "";
    height: 183px;
    left: 50%;
    position: absolute;
    top: 36px;
    transform: translateX(-50%);
    width: 116px;
  }
}
@media (min-width: 768px) {
  .header__nav-inner {
    display: contents;
  }
}
@media (max-width: 767px) {
  .header__nav-list {
    position: relative;
  }
}
@media (min-width: 768px) {
  .header__nav-list {
    align-items: center;
    display: flex;
    justify-content: space-around;
    transform: translateY(-0.2em);
    width: calc(100% - 180px);
  }
}
@media (max-width: 767px) {
  .header__nav-item {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .header__nav-item + .header__nav-item {
    margin-top: 4rem;
  }
}
.header__nav-link {
  color: #FFF;
  font-size: 1.8rem;
  line-height: 1.3;
  padding-bottom: 0.7em;
  position: relative;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.47);
}
.header__nav-link::after {
  bottom: 0;
  color: #FFF;
  content: attr(data-jp);
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "MS P明朝", "Hiragino Mincho ProN", serif;
  font-size: 10px;
  left: 50%;
  line-height: 1;
  position: absolute;
  text-align: center;
  transform: translateX(-50%) scale(0.8);
  white-space: nowrap;
  width: 100%;
}

.header__button {
  width: 180px;
}
@media (max-width: 767px) {
  .header__button {
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
  }
}
@media (min-width: 768px) {
  .header__button {
    margin-left: auto;
  }
}
.header__button a {
  background: url(../images/common/button-bg-header.png) no-repeat top/cover;
  border-radius: 3px;
  display: block;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "meiryo", sans-serif;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .header__button a {
    padding: 0.6em 0.5em 0.4em;
  }
}
@media (min-width: 768px) {
  .header__button a {
    padding: 0.3em;
  }
}

@media (max-width: 767px) {
  .header__sns {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-top: 32px;
  }
  .header__sns-item {
    width: 37px;
  }
  .header__sns-item + .header__sns-item {
    margin-left: 16px;
  }
}

@media (max-width: 767px) {
  .header__hamburger {
    background: transparent;
    height: 26px;
    position: fixed;
    right: 24px;
    top: 18px;
    width: 34px;
    z-index: 50;
  }
}
@media (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger > div {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  justify-content: center;
  width: 100%;
  z-index: 50;
}
.header__hamburger-trigger {
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.2s !important;
}
.header__hamburger-trigger span {
  box-sizing: border-box;
  display: inline-block;
  transition: all 0.4s;
}
.header__hamburger-trigger > span {
  display: -ms-grid;
  display: grid;
  height: 26px;
  place-items: center;
  width: 34px;
}
.header__hamburger-line {
  height: 100%;
  margin: -2px auto 0;
  position: relative;
  width: 100%;
}
.header__hamburger-line .line {
  background-color: #2C2F33;
  border-radius: 3px;
  height: 3px;
  position: absolute;
  right: 0;
  width: 100%;
}
.header__hamburger-line .line:nth-of-type(1) {
  top: 2px;
}
.header__hamburger-line .line:nth-of-type(2) {
  top: 12.5px;
}
.header__hamburger-line .line:nth-of-type(3) {
  bottom: 0px;
}
.header__hamburger-line.active .line:first-of-type {
  top: 4px;
  transform: translateY(7px) rotate(-45deg);
}
.header__hamburger-line.active .line:nth-of-type(2) {
  opacity: 0;
}
.header__hamburger-line.active .line:nth-of-type(3) {
  top: 15px;
  transform: translateY(-4px) rotate(45deg);
}

/*---------------------------------------
    button
----------------------------------------*/
.util-button {
  text-align: center;
}
.util-button a {
  background: url(../images/common/button-bg.png) no-repeat center/cover;
  border-radius: 2px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.35);
  color: #FFF;
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
  transition: transform 0.1s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .util-button a {
    transition: transform 0.2s ease-in-out;
  }
}
@media (max-width: 767px) {
  .util-button a {
    background-position: top;
    font-size: 16px;
    max-width: 326px;
    padding: 13px 0;
  }
}
@media (min-width: 768px) {
  .util-button a {
    font-size: 1.6rem;
    max-width: 242px;
    padding: 0.9em 0.3em 0.7em;
  }
}
.util-button a:hover {
  cursor: pointer;
  opacity: 1;
  transform: translateY(-5px);
}
.util-button a::after {
  background: url(../images/common/arrow-right.png) no-repeat center center/contain;
  content: "";
  height: 30px;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  z-index: 2;
}

/*---------------------------------------
    section-title
----------------------------------------*/
.section-title {
  text-align: center;
}
.section-title h2 {
  color: #FFF;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "MS P明朝", "Hiragino Mincho ProN", serif;
  text-shadow: 3px 3px 6px #000;
}
@media (max-width: 767px) {
  .section-title h2 {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .section-title h2 {
    font-size: 2.5rem;
  }
}

/*---------------------------------------
    Footer
----------------------------------------*/
.footer {
  background-color: #6E1717;
}
@media (max-width: 767px) {
  .footer {
    padding: 38px 0 48px;
  }
}
@media (min-width: 768px) {
  .footer {
    padding: 6.3rem 0;
  }
}
@media (min-width: 768px) {
  .footer__container {
    display: flex;
  }
}
@media (max-width: 767px) {
  .footer__logo {
    margin-left: auto;
    margin-right: auto;
    width: 82px;
  }
}
@media (min-width: 768px) {
  .footer__logo {
    width: 11.4rem;
  }
}
.footer__logo a {
  display: block;
}
@media (max-width: 767px) {
  .footer__right {
    margin-top: 28px;
  }
}
@media (min-width: 768px) {
  .footer__right {
    margin-left: auto;
  }
}
@media (min-width: 768px) {
  .footer__nav-list {
    align-items: center;
    display: flex;
  }
}
@media (max-width: 767px) {
  .footer__nav-item {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .footer__nav-item + .footer__nav-item {
    margin-top: 23px;
  }
}
@media (min-width: 768px) {
  .footer__nav-item + .footer__nav-item {
    margin-left: 7rem;
  }
}
.footer__nav-link {
  padding-bottom: 0.7em;
  position: relative;
}
@media (max-width: 767px) {
  .footer__nav-link {
    font-size: 18px;
    line-height: 1.3333333333;
  }
}
@media (min-width: 768px) {
  .footer__nav-link {
    font-size: 1.5rem;
    line-height: 1.3333333333;
  }
}
.footer__nav-link::after {
  bottom: 0;
  color: #FFF;
  content: attr(data-jp);
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "MS P明朝", "Hiragino Mincho ProN", serif;
  font-size: 10px;
  left: 50%;
  line-height: 1;
  position: absolute;
  text-align: center;
  transform: translateX(-50%) scale(0.6);
  white-space: nowrap;
  width: 100%;
}
@media (max-width: 767px) {
  .footer__links {
    margin-top: 48px;
  }
}
@media (min-width: 768px) {
  .footer__links {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    margin-top: 5rem;
  }
}
.footer__sns {
  align-items: center;
  display: flex;
}
@media (max-width: 767px) {
  .footer__sns {
    justify-content: center;
  }
}
.footer__sns-item {
  width: 3.7rem;
}
.footer__sns-item + .footer__sns-item {
  margin-left: 1.6rem;
}
.footer__corp {
  width: 133px;
}
@media (max-width: 767px) {
  .footer__corp {
    margin-left: auto;
    margin-right: auto;
    margin-top: 46px;
  }
}
@media (min-width: 768px) {
  .footer__corp {
    margin-left: 3.2rem;
  }
}
.footer__copyright {
  font-size: 10px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .footer__copyright {
    margin-top: 27px;
    text-align: center;
    transform: scale(0.7);
  }
}
@media (min-width: 768px) {
  .footer__copyright {
    margin-top: 2.7rem;
    text-align: right;
    transform: scale(0.8);
    transform-origin: right;
  }
}

/*---------------------------------------
    page-header
----------------------------------------*/
@media (max-width: 767px) {
  .page-header {
    margin-top: 62px;
    padding: 56px 0;
  }
}
@media (min-width: 768px) {
  .page-header {
    margin-top: 76px;
    padding: 6.5rem 0;
  }
}

.page-title {
  text-align: center;
  text-shadow: 3px 3px 6px #000;
}
@media (max-width: 767px) {
  .page-title {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .page-title {
    font-size: 3.2rem;
  }
}

/*---------------------------------------
    animation
----------------------------------------*/
.js-anime {
  opacity: 0;
}

.anime-fadeInUp.js-anime-active {
  -webkit-animation: fadeInUpActive 0.5s forwards;
  animation: fadeInUpActive 0.5s forwards;
}

@-webkit-keyframes fadeInUpActive {
  0% {
    opacity: 0;
    transform: translateY(30px);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUpActive {
  0% {
    opacity: 0;
    transform: translateY(30px);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*---------------------------------------
    news-feed
----------------------------------------*/
@media (min-width: 768px) {
  .news-archive {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -9rem;
  }
}
@media (min-width: 768px) {
  .news-archive__item {
    margin-bottom: 9rem;
    width: calc(33.33% - 2.6666666667rem);
  }
  .news-archive__item:not(:nth-child(3n)) {
    margin-right: 4rem;
  }
}
@media (min-width: 1280px) {
  .news-archive__item {
    width: calc(33.33% - 5.0666666667rem);
  }
  .news-archive__item:not(:nth-child(3n)) {
    margin-right: 7.6rem;
  }
}
@media (max-width: 767px) {
  .news-archive__item + .news-archive__item {
    margin-top: 70px;
  }
}
.news-archive__item.is-hidden {
  height: 0;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  opacity: 0;
  visibility: hidden;
}
.news-archive__item a {
  display: block;
}
.news-archive__item-thumb {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 0 12px 5px rgba(178, 0, 0, 0.82);
  padding-top: 58%;
}
.news-archive__item-body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "meiryo", sans-serif;
}
@media (max-width: 767px) {
  .news-archive__item-body {
    margin-top: 20px;
  }
}
@media (min-width: 768px) {
  .news-archive__item-body {
    margin-top: 2rem;
  }
}
.news-archive__item-body time {
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .news-archive__item-body time {
    font-size: 15px;
  }
}
@media (min-width: 768px) {
  .news-archive__item-body time {
    font-size: 1.4rem;
  }
}
@media (min-width: 1280px) {
  .news-archive__item-body time {
    font-size: 1.5rem;
  }
}
.news-archive__item-body h3 {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  line-height: 1.7222222222;
  overflow: hidden;
}
@media (max-width: 767px) {
  .news-archive__item-body h3 {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .news-archive__item-body h3 {
    font-size: 1.7rem;
    margin-top: 0.8rem;
  }
}
@media (min-width: 1280px) {
  .news-archive__item-body h3 {
    font-size: 1.8rem;
    margin-top: 1rem;
  }
}
/*# sourceMappingURL=sourcemaps/base.css.map */