@charset "UTF-8";
/*! Reset CSS */
@import url("https://fonts.googleapis.com/css?family=Playfair+Display:400,700,700i|Open+Sans:300,300i,700&display=swap");
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
a, b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

body {
  line-height: 1.8;
  font-family: "Open Sans", Helvetica, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  color: #fff;
}

span {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

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

ul {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: #fff;
  outline: none;
  text-decoration: none;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

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

sup {
  vertical-align: baseline;
  position: relative;
  top: -1ex;
  font-size: 0.7em;
}

button {
  outline: none;
}

/*==================================================================
	共通extend用
===================================================================*/
/*クリアフィックス*/
.clearfix {
  *zoom: 1;
}
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* --------------------------------------------------
 Module CSS
 -------------------------------------------------- */
/* --------------------------------------------------
 01:  webfont
 -------------------------------------------------- */
/* --------------------------------------------------
 02:  Margin Padding
 -------------------------------------------------- */
.mt0 {
  margin-top: 0 !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt-50 {
  margin-top: -50px !important;
}

.mb0 {
  margin-bottom: 0 !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;
}

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

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

.mr0 {
  margin-right: 0 !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.ml0 {
  margin-left: 0 !important;
}

.ml5 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.ml30 {
  margin-left: 30px !important;
}

/* --------------------------------------------------
 02.5:  Margin Padding (responsive)
 -------------------------------------------------- */
.mt_s {
  margin-top: 20px !important;
}
@media screen and (max-width: 767px) {
  .mt_s {
    margin-top: 10px !important;
  }
}

.mt_sm {
  margin-top: 30px !important;
}
@media screen and (max-width: 767px) {
  .mt_sm {
    margin-top: 15px !important;
  }
}

.mt_m {
  margin-top: 40px !important;
}
@media screen and (max-width: 767px) {
  .mt_m {
    margin-top: 20px !important;
  }
}

.mt_ml {
  margin-top: 50px !important;
}
@media screen and (max-width: 767px) {
  .mt_ml {
    margin-top: 25px !important;
  }
}

.mt_l {
  margin-top: 60px !important;
}
@media screen and (max-width: 767px) {
  .mt_l {
    margin-top: 30px !important;
  }
}

.mt_ll {
  margin-top: 80px !important;
}
@media screen and (max-width: 767px) {
  .mt_ll {
    margin-top: 40px !important;
  }
}

.mt_xl {
  margin-top: 100px !important;
}
@media screen and (max-width: 767px) {
  .mt_xl {
    margin-top: 50px !important;
  }
}

.mb_s {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 767px) {
  .mb_s {
    margin-bottom: 10px !important;
  }
}

.mb_sm {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 767px) {
  .mb_sm {
    margin-bottom: 15px !important;
  }
}

.mb_m {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 767px) {
  .mb_m {
    margin-bottom: 20px !important;
  }
}

.mb_ml {
  margin-bottom: 50px !important;
}
@media screen and (max-width: 767px) {
  .mb_ml {
    margin-bottom: 25px !important;
  }
}

.mb_l {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 767px) {
  .mb_l {
    margin-bottom: 30px !important;
  }
}

.mb_ll {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 767px) {
  .mb_ll {
    margin-bottom: 40px !important;
  }
}

.mb_xl {
  margin-bottom: 100px !important;
}
@media screen and (max-width: 767px) {
  .mb_xl {
    margin-bottom: 50px !important;
  }
}

/* --------------------------------------------------
 03:  Set Style
 -------------------------------------------------- */
.clear {
  clear: both;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.tac {
  text-align: center;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.hidden {
  display: none;
}

.serif {
  font-family: "Playfair Display", "Times New Roman", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
}

.aligncenter {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.indent p, p.indent {
  text-indent: -1em;
  padding-left: 1em;
}

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

.movieModalBtn {
  cursor: pointer;
}

.col3 {
  display: flex;
  flex-wrap: wrap;
}
.col3 > li, .col3 .item {
  width: 31.9%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .col3 > li, .col3 .item {
    margin-bottom: 3%;
  }
}
.col3 > li:not(:nth-child(3n)), .col3 .item:not(:nth-child(3n)) {
  margin-right: 2.15%;
}
.col3.jcCenter {
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .col3.spCol2 > li {
    width: 48.5%;
  }
  .col3.spCol2 > li:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .col3.spCol2 > li:nth-child(2n+1) {
    margin-right: 3%;
  }
}

.m-box01 {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
}

/* --------------------------------------------------
 04:  Responsive
 -------------------------------------------------- */
.pc {
  display: inherit;
}

.tb {
  display: none;
}

.tb_sp {
  display: none;
}

.sp {
  display: none;
}

@media screen and (max-width: 1023px) {
  .pc {
    display: inherit;
  }

  .tb {
    display: inherit;
  }

  .tb_sp {
    display: inherit;
  }

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

  .tb {
    display: none;
  }

  .tb_sp {
    display: inherit;
  }

  .sp {
    display: inherit;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden;
}

.modaal-accessible-hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
}

.modaal-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 1;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  transition: all 0.3s ease-in-out;
}
.modaal-wrapper * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
}
.modaal-wrapper .modaal-close {
  border: none;
  background: transparent;
  padding: 0;
  -webkit-appearance: none;
}
.modaal-wrapper.modaal-start_none {
  display: none;
  opacity: 1;
}
.modaal-wrapper.modaal-start_fade {
  opacity: 0;
}
.modaal-wrapper *[tabindex="0"] {
  outline: none !important;
}
.modaal-wrapper.modaal-fullscreen {
  overflow: hidden;
}

.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
}
.modaal-fullscreen .modaal-outer-wrapper {
  display: block;
}

.modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 80px 25px;
}
.modaal-fullscreen .modaal-inner-wrapper {
  padding: 0;
  display: block;
  vertical-align: top;
}

.modaal-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: left;
  color: #000;
  max-width: 1000px;
  border-radius: 0px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: auto;
}
.modaal-container.is_loading {
  height: 100px;
  width: 100px;
  overflow: hidden;
}
.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto;
}

.modaal-close {
  position: fixed;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}
.modaal-close:focus, .modaal-close:hover {
  outline: none;
  background: #fff;
}
.modaal-close:focus:before, .modaal-close:focus:after, .modaal-close:hover:before, .modaal-close:hover:after {
  background: #b93d0c;
}
.modaal-close span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.modaal-close:before, .modaal-close:after {
  display: block;
  content: " ";
  position: absolute;
  top: 14px;
  left: 23px;
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: #fff;
  transition: background 0.2s ease-in-out;
}
.modaal-close:before {
  transform: rotate(-45deg);
}
.modaal-close:after {
  transform: rotate(45deg);
}
.modaal-fullscreen .modaal-close {
  background: #afb7bc;
  right: 10px;
  top: 10px;
}

.modaal-content-container {
  padding: 30px;
}

.modaal-confirm-wrap {
  padding: 30px 0 0;
  text-align: center;
  font-size: 0;
}

.modaal-confirm-btn {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: transparent;
}
.modaal-confirm-btn.modaal-ok {
  padding: 10px 15px;
  color: #fff;
  background: #555;
  border-radius: 3px;
  transition: background 0.2s ease-in-out;
}
.modaal-confirm-btn.modaal-ok:hover {
  background: #2f2f2f;
}
.modaal-confirm-btn.modaal-cancel {
  text-decoration: underline;
}
.modaal-confirm-btn.modaal-cancel:hover {
  text-decoration: none;
  color: #2f2f2f;
}

@keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.modaal-instagram .modaal-container {
  width: auto;
  background: transparent;
  box-shadow: none !important;
}
.modaal-instagram .modaal-content-container {
  padding: 0;
  background: transparent;
}
.modaal-instagram .modaal-content-container > blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
.modaal-instagram iframe {
  opacity: 0;
  margin: -6px !important;
  border-radius: 0 !important;
  width: 1000px !important;
  max-width: 800px !important;
  box-shadow: none !important;
  animation: instaReveal 1s linear forwards;
}

.modaal-image .modaal-inner-wrapper {
  padding-left: 140px;
  padding-right: 140px;
}
.modaal-image .modaal-container {
  width: auto;
  max-width: 100%;
}

.modaal-gallery-wrap {
  position: relative;
  color: #fff;
}

.modaal-gallery-item {
  display: none;
}
.modaal-gallery-item img {
  display: block;
}
.modaal-gallery-item.is_active {
  display: block;
}

.modaal-gallery-label {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  font-size: 18px;
  text-align: center;
  color: #fff;
}
.modaal-gallery-label:focus {
  outline: none;
}

.modaal-gallery-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}
.modaal-gallery-control.is_hidden {
  opacity: 0;
  cursor: default;
}
.modaal-gallery-control:focus, .modaal-gallery-control:hover {
  outline: none;
  background: #fff;
}
.modaal-gallery-control:focus:before, .modaal-gallery-control:focus:after, .modaal-gallery-control:hover:before, .modaal-gallery-control:hover:after {
  background: #afb7bc;
}
.modaal-gallery-control span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.modaal-gallery-control:before, .modaal-gallery-control:after {
  display: block;
  content: " ";
  position: absolute;
  top: 16px;
  left: 25px;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  transition: background 0.2s ease-in-out;
}
.modaal-gallery-control:before {
  margin: -5px 0 0;
  transform: rotate(-45deg);
}
.modaal-gallery-control:after {
  margin: 5px 0 0;
  transform: rotate(45deg);
}

.modaal-gallery-next-inner {
  left: 100%;
  margin-left: 40px;
}
.modaal-gallery-next-outer {
  right: 45px;
}

.modaal-gallery-prev:before, .modaal-gallery-prev:after {
  left: 22px;
}
.modaal-gallery-prev:before {
  margin: 5px 0 0;
  transform: rotate(-45deg);
}
.modaal-gallery-prev:after {
  margin: -5px 0 0;
  transform: rotate(45deg);
}
.modaal-gallery-prev-inner {
  right: 100%;
  margin-right: 40px;
}
.modaal-gallery-prev-outer {
  left: 45px;
}

.modaal-video-wrap {
  margin: auto 50px;
  position: relative;
}

.modaal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #000;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.modaal-video-container iframe,
.modaal-video-container object,
.modaal-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modaal-iframe .modaal-content {
  width: 100%;
  height: 100%;
}

.modaal-iframe-elem {
  width: 100%;
  height: 100%;
  display: block;
}

@media only screen and (min-width: 1400px) {
  .modaal-video-container {
    padding-bottom: 0;
    height: 731px;
  }
}
@media only screen and (max-width: 1140px) {
  .modaal-image .modaal-inner-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }

  .modaal-gallery-control {
    top: auto;
    bottom: 20px;
    transform: none;
    background: rgba(0, 0, 0, 0.7);
  }
  .modaal-gallery-control:before, .modaal-gallery-control:after {
    background: #fff;
  }

  .modaal-gallery-next {
    left: auto;
    right: 20px;
  }

  .modaal-gallery-prev {
    left: 20px;
    right: auto;
  }
}
@media screen and (max-width: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
}
@media screen and (max-height: 1100px) {
  .modaal-instagram iframe {
    width: 700px !important;
  }
}
@media screen and (max-height: 1000px) {
  .modaal-inner-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .modaal-instagram iframe {
    width: 600px !important;
  }
}
@media screen and (max-height: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }

  .modaal-video-container {
    max-width: 900px;
    max-height: 510px;
  }
}
@media only screen and (max-width: 600px) {
  .modaal-instagram iframe {
    width: 280px !important;
  }
}
@media only screen and (max-height: 820px) {
  .modaal-gallery-label {
    display: none;
  }
}
.modaal-loading-spinner {
  background: none;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  transform: scale(0.25);
}

@-ms-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: .1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: .1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: .1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: .1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: .1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.modaal-loading-spinner > div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute;
}

.modaal-loading-spinner > div > div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff;
}

.modaal-loading-spinner > div:nth-of-type(1) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -webkit-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
}

.modaal-loading-spinner > div:nth-of-type(2) > div, .modaal-loading-spinner > div:nth-of-type(3) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(1) {
  -ms-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(2) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: .12s;
  -moz-animation-delay: .12s;
  -webkit-animation-delay: .12s;
  -o-animation-delay: .12s;
  animation-delay: .12s;
}

.modaal-loading-spinner > div:nth-of-type(2) {
  -ms-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(3) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: .25s;
  -moz-animation-delay: .25s;
  -webkit-animation-delay: .25s;
  -o-animation-delay: .25s;
  animation-delay: .25s;
}

.modaal-loading-spinner > div:nth-of-type(4) > div, .modaal-loading-spinner > div:nth-of-type(5) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(3) {
  -ms-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(4) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: .37s;
  -moz-animation-delay: .37s;
  -webkit-animation-delay: .37s;
  -o-animation-delay: .37s;
  animation-delay: .37s;
}

.modaal-loading-spinner > div:nth-of-type(4) {
  -ms-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(5) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: .5s;
  -moz-animation-delay: .5s;
  -webkit-animation-delay: .5s;
  -o-animation-delay: .5s;
  animation-delay: .5s;
}

.modaal-loading-spinner > div:nth-of-type(6) > div, .modaal-loading-spinner > div:nth-of-type(7) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(5) {
  -ms-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(6) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: .62s;
  -moz-animation-delay: .62s;
  -webkit-animation-delay: .62s;
  -o-animation-delay: .62s;
  animation-delay: .62s;
}

.modaal-loading-spinner > div:nth-of-type(6) {
  -ms-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(7) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: .75s;
  -moz-animation-delay: .75s;
  -webkit-animation-delay: .75s;
  -o-animation-delay: .75s;
  animation-delay: .75s;
}

.modaal-loading-spinner > div:nth-of-type(7) {
  -ms-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(8) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: .87s;
  -moz-animation-delay: .87s;
  -webkit-animation-delay: .87s;
  -o-animation-delay: .87s;
  animation-delay: .87s;
}

.modaal-loading-spinner > div:nth-of-type(8) {
  -ms-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}

[data-aos][data-aos][data-aos-duration="50"], body[data-aos-duration="50"] [data-aos] {
  transition-duration: 50ms;
}

[data-aos][data-aos][data-aos-delay="50"], body[data-aos-delay="50"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="50"].aos-animate, body[data-aos-delay="50"] [data-aos].aos-animate {
  transition-delay: 50ms;
}

[data-aos][data-aos][data-aos-duration="100"], body[data-aos-duration="100"] [data-aos] {
  transition-duration: .1s;
}

[data-aos][data-aos][data-aos-delay="100"], body[data-aos-delay="100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="100"].aos-animate, body[data-aos-delay="100"] [data-aos].aos-animate {
  transition-delay: .1s;
}

[data-aos][data-aos][data-aos-duration="150"], body[data-aos-duration="150"] [data-aos] {
  transition-duration: .15s;
}

[data-aos][data-aos][data-aos-delay="150"], body[data-aos-delay="150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="150"].aos-animate, body[data-aos-delay="150"] [data-aos].aos-animate {
  transition-delay: .15s;
}

[data-aos][data-aos][data-aos-duration="200"], body[data-aos-duration="200"] [data-aos] {
  transition-duration: .2s;
}

[data-aos][data-aos][data-aos-delay="200"], body[data-aos-delay="200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="200"].aos-animate, body[data-aos-delay="200"] [data-aos].aos-animate {
  transition-delay: .2s;
}

[data-aos][data-aos][data-aos-duration="250"], body[data-aos-duration="250"] [data-aos] {
  transition-duration: .25s;
}

[data-aos][data-aos][data-aos-delay="250"], body[data-aos-delay="250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="250"].aos-animate, body[data-aos-delay="250"] [data-aos].aos-animate {
  transition-delay: .25s;
}

[data-aos][data-aos][data-aos-duration="300"], body[data-aos-duration="300"] [data-aos] {
  transition-duration: .3s;
}

[data-aos][data-aos][data-aos-delay="300"], body[data-aos-delay="300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="300"].aos-animate, body[data-aos-delay="300"] [data-aos].aos-animate {
  transition-delay: .3s;
}

[data-aos][data-aos][data-aos-duration="350"], body[data-aos-duration="350"] [data-aos] {
  transition-duration: .35s;
}

[data-aos][data-aos][data-aos-delay="350"], body[data-aos-delay="350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="350"].aos-animate, body[data-aos-delay="350"] [data-aos].aos-animate {
  transition-delay: .35s;
}

[data-aos][data-aos][data-aos-duration="400"], body[data-aos-duration="400"] [data-aos] {
  transition-duration: .4s;
}

[data-aos][data-aos][data-aos-delay="400"], body[data-aos-delay="400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="400"].aos-animate, body[data-aos-delay="400"] [data-aos].aos-animate {
  transition-delay: .4s;
}

[data-aos][data-aos][data-aos-duration="450"], body[data-aos-duration="450"] [data-aos] {
  transition-duration: .45s;
}

[data-aos][data-aos][data-aos-delay="450"], body[data-aos-delay="450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="450"].aos-animate, body[data-aos-delay="450"] [data-aos].aos-animate {
  transition-delay: .45s;
}

[data-aos][data-aos][data-aos-duration="500"], body[data-aos-duration="500"] [data-aos] {
  transition-duration: .5s;
}

[data-aos][data-aos][data-aos-delay="500"], body[data-aos-delay="500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="500"].aos-animate, body[data-aos-delay="500"] [data-aos].aos-animate {
  transition-delay: .5s;
}

[data-aos][data-aos][data-aos-duration="550"], body[data-aos-duration="550"] [data-aos] {
  transition-duration: .55s;
}

[data-aos][data-aos][data-aos-delay="550"], body[data-aos-delay="550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="550"].aos-animate, body[data-aos-delay="550"] [data-aos].aos-animate {
  transition-delay: .55s;
}

[data-aos][data-aos][data-aos-duration="600"], body[data-aos-duration="600"] [data-aos] {
  transition-duration: .6s;
}

[data-aos][data-aos][data-aos-delay="600"], body[data-aos-delay="600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="600"].aos-animate, body[data-aos-delay="600"] [data-aos].aos-animate {
  transition-delay: .6s;
}

[data-aos][data-aos][data-aos-duration="650"], body[data-aos-duration="650"] [data-aos] {
  transition-duration: .65s;
}

[data-aos][data-aos][data-aos-delay="650"], body[data-aos-delay="650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="650"].aos-animate, body[data-aos-delay="650"] [data-aos].aos-animate {
  transition-delay: .65s;
}

[data-aos][data-aos][data-aos-duration="700"], body[data-aos-duration="700"] [data-aos] {
  transition-duration: .7s;
}

[data-aos][data-aos][data-aos-delay="700"], body[data-aos-delay="700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="700"].aos-animate, body[data-aos-delay="700"] [data-aos].aos-animate {
  transition-delay: .7s;
}

[data-aos][data-aos][data-aos-duration="750"], body[data-aos-duration="750"] [data-aos] {
  transition-duration: .75s;
}

[data-aos][data-aos][data-aos-delay="750"], body[data-aos-delay="750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="750"].aos-animate, body[data-aos-delay="750"] [data-aos].aos-animate {
  transition-delay: .75s;
}

[data-aos][data-aos][data-aos-duration="800"], body[data-aos-duration="800"] [data-aos] {
  transition-duration: .8s;
}

[data-aos][data-aos][data-aos-delay="800"], body[data-aos-delay="800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="800"].aos-animate, body[data-aos-delay="800"] [data-aos].aos-animate {
  transition-delay: .8s;
}

[data-aos][data-aos][data-aos-duration="850"], body[data-aos-duration="850"] [data-aos] {
  transition-duration: .85s;
}

[data-aos][data-aos][data-aos-delay="850"], body[data-aos-delay="850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="850"].aos-animate, body[data-aos-delay="850"] [data-aos].aos-animate {
  transition-delay: .85s;
}

[data-aos][data-aos][data-aos-duration="900"], body[data-aos-duration="900"] [data-aos] {
  transition-duration: .9s;
}

[data-aos][data-aos][data-aos-delay="900"], body[data-aos-delay="900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="900"].aos-animate, body[data-aos-delay="900"] [data-aos].aos-animate {
  transition-delay: .9s;
}

[data-aos][data-aos][data-aos-duration="950"], body[data-aos-duration="950"] [data-aos] {
  transition-duration: .95s;
}

[data-aos][data-aos][data-aos-delay="950"], body[data-aos-delay="950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="950"].aos-animate, body[data-aos-delay="950"] [data-aos].aos-animate {
  transition-delay: .95s;
}

[data-aos][data-aos][data-aos-duration="1000"], body[data-aos-duration="1000"] [data-aos] {
  transition-duration: 1s;
}

[data-aos][data-aos][data-aos-delay="1000"], body[data-aos-delay="1000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1000"].aos-animate, body[data-aos-delay="1000"] [data-aos].aos-animate {
  transition-delay: 1s;
}

[data-aos][data-aos][data-aos-duration="1050"], body[data-aos-duration="1050"] [data-aos] {
  transition-duration: 1.05s;
}

[data-aos][data-aos][data-aos-delay="1050"], body[data-aos-delay="1050"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1050"].aos-animate, body[data-aos-delay="1050"] [data-aos].aos-animate {
  transition-delay: 1.05s;
}

[data-aos][data-aos][data-aos-duration="1100"], body[data-aos-duration="1100"] [data-aos] {
  transition-duration: 1.1s;
}

[data-aos][data-aos][data-aos-delay="1100"], body[data-aos-delay="1100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1100"].aos-animate, body[data-aos-delay="1100"] [data-aos].aos-animate {
  transition-delay: 1.1s;
}

[data-aos][data-aos][data-aos-duration="1150"], body[data-aos-duration="1150"] [data-aos] {
  transition-duration: 1.15s;
}

[data-aos][data-aos][data-aos-delay="1150"], body[data-aos-delay="1150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1150"].aos-animate, body[data-aos-delay="1150"] [data-aos].aos-animate {
  transition-delay: 1.15s;
}

[data-aos][data-aos][data-aos-duration="1200"], body[data-aos-duration="1200"] [data-aos] {
  transition-duration: 1.2s;
}

[data-aos][data-aos][data-aos-delay="1200"], body[data-aos-delay="1200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1200"].aos-animate, body[data-aos-delay="1200"] [data-aos].aos-animate {
  transition-delay: 1.2s;
}

[data-aos][data-aos][data-aos-duration="1250"], body[data-aos-duration="1250"] [data-aos] {
  transition-duration: 1.25s;
}

[data-aos][data-aos][data-aos-delay="1250"], body[data-aos-delay="1250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1250"].aos-animate, body[data-aos-delay="1250"] [data-aos].aos-animate {
  transition-delay: 1.25s;
}

[data-aos][data-aos][data-aos-duration="1300"], body[data-aos-duration="1300"] [data-aos] {
  transition-duration: 1.3s;
}

[data-aos][data-aos][data-aos-delay="1300"], body[data-aos-delay="1300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1300"].aos-animate, body[data-aos-delay="1300"] [data-aos].aos-animate {
  transition-delay: 1.3s;
}

[data-aos][data-aos][data-aos-duration="1350"], body[data-aos-duration="1350"] [data-aos] {
  transition-duration: 1.35s;
}

[data-aos][data-aos][data-aos-delay="1350"], body[data-aos-delay="1350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1350"].aos-animate, body[data-aos-delay="1350"] [data-aos].aos-animate {
  transition-delay: 1.35s;
}

[data-aos][data-aos][data-aos-duration="1400"], body[data-aos-duration="1400"] [data-aos] {
  transition-duration: 1.4s;
}

[data-aos][data-aos][data-aos-delay="1400"], body[data-aos-delay="1400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1400"].aos-animate, body[data-aos-delay="1400"] [data-aos].aos-animate {
  transition-delay: 1.4s;
}

[data-aos][data-aos][data-aos-duration="1450"], body[data-aos-duration="1450"] [data-aos] {
  transition-duration: 1.45s;
}

[data-aos][data-aos][data-aos-delay="1450"], body[data-aos-delay="1450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1450"].aos-animate, body[data-aos-delay="1450"] [data-aos].aos-animate {
  transition-delay: 1.45s;
}

[data-aos][data-aos][data-aos-duration="1500"], body[data-aos-duration="1500"] [data-aos] {
  transition-duration: 1.5s;
}

[data-aos][data-aos][data-aos-delay="1500"], body[data-aos-delay="1500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1500"].aos-animate, body[data-aos-delay="1500"] [data-aos].aos-animate {
  transition-delay: 1.5s;
}

[data-aos][data-aos][data-aos-duration="1550"], body[data-aos-duration="1550"] [data-aos] {
  transition-duration: 1.55s;
}

[data-aos][data-aos][data-aos-delay="1550"], body[data-aos-delay="1550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1550"].aos-animate, body[data-aos-delay="1550"] [data-aos].aos-animate {
  transition-delay: 1.55s;
}

[data-aos][data-aos][data-aos-duration="1600"], body[data-aos-duration="1600"] [data-aos] {
  transition-duration: 1.6s;
}

[data-aos][data-aos][data-aos-delay="1600"], body[data-aos-delay="1600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1600"].aos-animate, body[data-aos-delay="1600"] [data-aos].aos-animate {
  transition-delay: 1.6s;
}

[data-aos][data-aos][data-aos-duration="1650"], body[data-aos-duration="1650"] [data-aos] {
  transition-duration: 1.65s;
}

[data-aos][data-aos][data-aos-delay="1650"], body[data-aos-delay="1650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1650"].aos-animate, body[data-aos-delay="1650"] [data-aos].aos-animate {
  transition-delay: 1.65s;
}

[data-aos][data-aos][data-aos-duration="1700"], body[data-aos-duration="1700"] [data-aos] {
  transition-duration: 1.7s;
}

[data-aos][data-aos][data-aos-delay="1700"], body[data-aos-delay="1700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1700"].aos-animate, body[data-aos-delay="1700"] [data-aos].aos-animate {
  transition-delay: 1.7s;
}

[data-aos][data-aos][data-aos-duration="1750"], body[data-aos-duration="1750"] [data-aos] {
  transition-duration: 1.75s;
}

[data-aos][data-aos][data-aos-delay="1750"], body[data-aos-delay="1750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1750"].aos-animate, body[data-aos-delay="1750"] [data-aos].aos-animate {
  transition-delay: 1.75s;
}

[data-aos][data-aos][data-aos-duration="1800"], body[data-aos-duration="1800"] [data-aos] {
  transition-duration: 1.8s;
}

[data-aos][data-aos][data-aos-delay="1800"], body[data-aos-delay="1800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1800"].aos-animate, body[data-aos-delay="1800"] [data-aos].aos-animate {
  transition-delay: 1.8s;
}

[data-aos][data-aos][data-aos-duration="1850"], body[data-aos-duration="1850"] [data-aos] {
  transition-duration: 1.85s;
}

[data-aos][data-aos][data-aos-delay="1850"], body[data-aos-delay="1850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1850"].aos-animate, body[data-aos-delay="1850"] [data-aos].aos-animate {
  transition-delay: 1.85s;
}

[data-aos][data-aos][data-aos-duration="1900"], body[data-aos-duration="1900"] [data-aos] {
  transition-duration: 1.9s;
}

[data-aos][data-aos][data-aos-delay="1900"], body[data-aos-delay="1900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1900"].aos-animate, body[data-aos-delay="1900"] [data-aos].aos-animate {
  transition-delay: 1.9s;
}

[data-aos][data-aos][data-aos-duration="1950"], body[data-aos-duration="1950"] [data-aos] {
  transition-duration: 1.95s;
}

[data-aos][data-aos][data-aos-delay="1950"], body[data-aos-delay="1950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1950"].aos-animate, body[data-aos-delay="1950"] [data-aos].aos-animate {
  transition-delay: 1.95s;
}

[data-aos][data-aos][data-aos-duration="2000"], body[data-aos-duration="2000"] [data-aos] {
  transition-duration: 2s;
}

[data-aos][data-aos][data-aos-delay="2000"], body[data-aos-delay="2000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2000"].aos-animate, body[data-aos-delay="2000"] [data-aos].aos-animate {
  transition-delay: 2s;
}

[data-aos][data-aos][data-aos-duration="2050"], body[data-aos-duration="2050"] [data-aos] {
  transition-duration: 2.05s;
}

[data-aos][data-aos][data-aos-delay="2050"], body[data-aos-delay="2050"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2050"].aos-animate, body[data-aos-delay="2050"] [data-aos].aos-animate {
  transition-delay: 2.05s;
}

[data-aos][data-aos][data-aos-duration="2100"], body[data-aos-duration="2100"] [data-aos] {
  transition-duration: 2.1s;
}

[data-aos][data-aos][data-aos-delay="2100"], body[data-aos-delay="2100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2100"].aos-animate, body[data-aos-delay="2100"] [data-aos].aos-animate {
  transition-delay: 2.1s;
}

[data-aos][data-aos][data-aos-duration="2150"], body[data-aos-duration="2150"] [data-aos] {
  transition-duration: 2.15s;
}

[data-aos][data-aos][data-aos-delay="2150"], body[data-aos-delay="2150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2150"].aos-animate, body[data-aos-delay="2150"] [data-aos].aos-animate {
  transition-delay: 2.15s;
}

[data-aos][data-aos][data-aos-duration="2200"], body[data-aos-duration="2200"] [data-aos] {
  transition-duration: 2.2s;
}

[data-aos][data-aos][data-aos-delay="2200"], body[data-aos-delay="2200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2200"].aos-animate, body[data-aos-delay="2200"] [data-aos].aos-animate {
  transition-delay: 2.2s;
}

[data-aos][data-aos][data-aos-duration="2250"], body[data-aos-duration="2250"] [data-aos] {
  transition-duration: 2.25s;
}

[data-aos][data-aos][data-aos-delay="2250"], body[data-aos-delay="2250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2250"].aos-animate, body[data-aos-delay="2250"] [data-aos].aos-animate {
  transition-delay: 2.25s;
}

[data-aos][data-aos][data-aos-duration="2300"], body[data-aos-duration="2300"] [data-aos] {
  transition-duration: 2.3s;
}

[data-aos][data-aos][data-aos-delay="2300"], body[data-aos-delay="2300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2300"].aos-animate, body[data-aos-delay="2300"] [data-aos].aos-animate {
  transition-delay: 2.3s;
}

[data-aos][data-aos][data-aos-duration="2350"], body[data-aos-duration="2350"] [data-aos] {
  transition-duration: 2.35s;
}

[data-aos][data-aos][data-aos-delay="2350"], body[data-aos-delay="2350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2350"].aos-animate, body[data-aos-delay="2350"] [data-aos].aos-animate {
  transition-delay: 2.35s;
}

[data-aos][data-aos][data-aos-duration="2400"], body[data-aos-duration="2400"] [data-aos] {
  transition-duration: 2.4s;
}

[data-aos][data-aos][data-aos-delay="2400"], body[data-aos-delay="2400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2400"].aos-animate, body[data-aos-delay="2400"] [data-aos].aos-animate {
  transition-delay: 2.4s;
}

[data-aos][data-aos][data-aos-duration="2450"], body[data-aos-duration="2450"] [data-aos] {
  transition-duration: 2.45s;
}

[data-aos][data-aos][data-aos-delay="2450"], body[data-aos-delay="2450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2450"].aos-animate, body[data-aos-delay="2450"] [data-aos].aos-animate {
  transition-delay: 2.45s;
}

[data-aos][data-aos][data-aos-duration="2500"], body[data-aos-duration="2500"] [data-aos] {
  transition-duration: 2.5s;
}

[data-aos][data-aos][data-aos-delay="2500"], body[data-aos-delay="2500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2500"].aos-animate, body[data-aos-delay="2500"] [data-aos].aos-animate {
  transition-delay: 2.5s;
}

[data-aos][data-aos][data-aos-duration="2550"], body[data-aos-duration="2550"] [data-aos] {
  transition-duration: 2.55s;
}

[data-aos][data-aos][data-aos-delay="2550"], body[data-aos-delay="2550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2550"].aos-animate, body[data-aos-delay="2550"] [data-aos].aos-animate {
  transition-delay: 2.55s;
}

[data-aos][data-aos][data-aos-duration="2600"], body[data-aos-duration="2600"] [data-aos] {
  transition-duration: 2.6s;
}

[data-aos][data-aos][data-aos-delay="2600"], body[data-aos-delay="2600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2600"].aos-animate, body[data-aos-delay="2600"] [data-aos].aos-animate {
  transition-delay: 2.6s;
}

[data-aos][data-aos][data-aos-duration="2650"], body[data-aos-duration="2650"] [data-aos] {
  transition-duration: 2.65s;
}

[data-aos][data-aos][data-aos-delay="2650"], body[data-aos-delay="2650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2650"].aos-animate, body[data-aos-delay="2650"] [data-aos].aos-animate {
  transition-delay: 2.65s;
}

[data-aos][data-aos][data-aos-duration="2700"], body[data-aos-duration="2700"] [data-aos] {
  transition-duration: 2.7s;
}

[data-aos][data-aos][data-aos-delay="2700"], body[data-aos-delay="2700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2700"].aos-animate, body[data-aos-delay="2700"] [data-aos].aos-animate {
  transition-delay: 2.7s;
}

[data-aos][data-aos][data-aos-duration="2750"], body[data-aos-duration="2750"] [data-aos] {
  transition-duration: 2.75s;
}

[data-aos][data-aos][data-aos-delay="2750"], body[data-aos-delay="2750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2750"].aos-animate, body[data-aos-delay="2750"] [data-aos].aos-animate {
  transition-delay: 2.75s;
}

[data-aos][data-aos][data-aos-duration="2800"], body[data-aos-duration="2800"] [data-aos] {
  transition-duration: 2.8s;
}

[data-aos][data-aos][data-aos-delay="2800"], body[data-aos-delay="2800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2800"].aos-animate, body[data-aos-delay="2800"] [data-aos].aos-animate {
  transition-delay: 2.8s;
}

[data-aos][data-aos][data-aos-duration="2850"], body[data-aos-duration="2850"] [data-aos] {
  transition-duration: 2.85s;
}

[data-aos][data-aos][data-aos-delay="2850"], body[data-aos-delay="2850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2850"].aos-animate, body[data-aos-delay="2850"] [data-aos].aos-animate {
  transition-delay: 2.85s;
}

[data-aos][data-aos][data-aos-duration="2900"], body[data-aos-duration="2900"] [data-aos] {
  transition-duration: 2.9s;
}

[data-aos][data-aos][data-aos-delay="2900"], body[data-aos-delay="2900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2900"].aos-animate, body[data-aos-delay="2900"] [data-aos].aos-animate {
  transition-delay: 2.9s;
}

[data-aos][data-aos][data-aos-duration="2950"], body[data-aos-duration="2950"] [data-aos] {
  transition-duration: 2.95s;
}

[data-aos][data-aos][data-aos-delay="2950"], body[data-aos-delay="2950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2950"].aos-animate, body[data-aos-delay="2950"] [data-aos].aos-animate {
  transition-delay: 2.95s;
}

[data-aos][data-aos][data-aos-duration="3000"], body[data-aos-duration="3000"] [data-aos] {
  transition-duration: 3s;
}

[data-aos][data-aos][data-aos-delay="3000"], body[data-aos-delay="3000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="3000"].aos-animate, body[data-aos-delay="3000"] [data-aos].aos-animate {
  transition-delay: 3s;
}

[data-aos][data-aos][data-aos-easing=linear], body[data-aos-easing=linear] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

[data-aos][data-aos][data-aos-easing=ease], body[data-aos-easing=ease] [data-aos] {
  transition-timing-function: ease;
}

[data-aos][data-aos][data-aos-easing=ease-in], body[data-aos-easing=ease-in] [data-aos] {
  transition-timing-function: ease-in;
}

[data-aos][data-aos][data-aos-easing=ease-out], body[data-aos-easing=ease-out] [data-aos] {
  transition-timing-function: ease-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-out], body[data-aos-easing=ease-in-out] [data-aos] {
  transition-timing-function: ease-in-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-back], body[data-aos-easing=ease-in-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

[data-aos][data-aos][data-aos-easing=ease-out-back], body[data-aos-easing=ease-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-back], body[data-aos-easing=ease-in-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-aos][data-aos][data-aos-easing=ease-in-sine], body[data-aos-easing=ease-in-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

[data-aos][data-aos][data-aos-easing=ease-out-sine], body[data-aos-easing=ease-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-sine], body[data-aos-easing=ease-in-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

[data-aos][data-aos][data-aos-easing=ease-in-quad], body[data-aos-easing=ease-in-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quad], body[data-aos-easing=ease-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quad], body[data-aos-easing=ease-in-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-cubic], body[data-aos-easing=ease-in-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-cubic], body[data-aos-easing=ease-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-cubic], body[data-aos-easing=ease-in-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-quart], body[data-aos-easing=ease-in-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quart], body[data-aos-easing=ease-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quart], body[data-aos-easing=ease-in-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos^=fade][data-aos^=fade] {
  opacity: 0;
  transition-property: opacity,transform;
}

[data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  transform: translateZ(0);
}

[data-aos=fade-up] {
  transform: translate3d(0, 100px, 0);
}

[data-aos=fade-down] {
  transform: translate3d(0, -100px, 0);
}

[data-aos=fade-right] {
  transform: translate3d(-100px, 0, 0);
}

[data-aos=fade-left] {
  transform: translate3d(100px, 0, 0);
}

[data-aos=fade-up-right] {
  transform: translate3d(-100px, 100px, 0);
}

[data-aos=fade-up-left] {
  transform: translate3d(100px, 100px, 0);
}

[data-aos=fade-down-right] {
  transform: translate3d(-100px, -100px, 0);
}

[data-aos=fade-down-left] {
  transform: translate3d(100px, -100px, 0);
}

[data-aos^=zoom][data-aos^=zoom] {
  opacity: 0;
  transition-property: opacity,transform;
}

[data-aos^=zoom][data-aos^=zoom].aos-animate {
  opacity: 1;
  transform: translateZ(0) scale(1);
}

[data-aos=zoom-in] {
  transform: scale(0.6);
}

[data-aos=zoom-in-up] {
  transform: translate3d(0, 100px, 0) scale(0.6);
}

[data-aos=zoom-in-down] {
  transform: translate3d(0, -100px, 0) scale(0.6);
}

[data-aos=zoom-in-right] {
  transform: translate3d(-100px, 0, 0) scale(0.6);
}

[data-aos=zoom-in-left] {
  transform: translate3d(100px, 0, 0) scale(0.6);
}

[data-aos=zoom-out] {
  transform: scale(1.2);
}

[data-aos=zoom-out-up] {
  transform: translate3d(0, 100px, 0) scale(1.2);
}

[data-aos=zoom-out-down] {
  transform: translate3d(0, -100px, 0) scale(1.2);
}

[data-aos=zoom-out-right] {
  transform: translate3d(-100px, 0, 0) scale(1.2);
}

[data-aos=zoom-out-left] {
  transform: translate3d(100px, 0, 0) scale(1.2);
}

[data-aos^=slide][data-aos^=slide] {
  transition-property: transform;
}

[data-aos^=slide][data-aos^=slide].aos-animate {
  transform: translateZ(0);
}

[data-aos=slide-up] {
  transform: translate3d(0, 100%, 0);
}

[data-aos=slide-down] {
  transform: translate3d(0, -100%, 0);
}

[data-aos=slide-right] {
  transform: translate3d(-100%, 0, 0);
}

[data-aos=slide-left] {
  transform: translate3d(100%, 0, 0);
}

[data-aos^=flip][data-aos^=flip] {
  backface-visibility: hidden;
  transition-property: transform;
}

[data-aos=flip-left] {
  transform: perspective(2500px) rotateY(-100deg);
}

[data-aos=flip-left].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-right] {
  transform: perspective(2500px) rotateY(100deg);
}

[data-aos=flip-right].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-up] {
  transform: perspective(2500px) rotateX(-100deg);
}

[data-aos=flip-up].aos-animate {
  transform: perspective(2500px) rotateX(0);
}

[data-aos=flip-down] {
  transform: perspective(2500px) rotateX(100deg);
}

[data-aos=flip-down].aos-animate {
  transform: perspective(2500px) rotateX(0);
}

html {
  font-size: 62.5%;
}

body {
  background: #333;
  font-size: 1.6em;
  color: #fff;
}
@media screen and (max-width: 1023px) {
  body {
    -webkit-text-size-adjust: none;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4em;
  }
}

@media screen and (max-width: 1023px) {
  a {
    -webkit-tap-highlight-color: transparent;
  }
  a:hover {
    text-decoration: none;
  }
}
@media screen and (min-width: 768px) {
  a {
    transition: opacity 0.3s ease-in, background 0.3s ease-in;
  }
  a:hover {
    opacity: 0.7;
  }
}

.contentInner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .contentInner {
    margin: 0 25px;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .contentInner {
    margin: 0 15px;
  }
}
.contentInner.long {
  max-width: 1366px;
}
@media screen and (max-width: 1023px) {
  .contentInner.long {
    margin: 0 auto;
  }
}

#wrap {
  width: 100%;
}

#header {
  width: 100%;
  position: fixed;
  height: 80px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  transition: background 0.3s;
}
@media screen and (max-width: 1023px) {
  #header {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  #header {
    padding: 0 10px;
    height: 60px;
  }
}
#header.scroll {
  background: rgba(0, 0, 0, 0.6);
}
#header .logo {
  width: 121px;
}
@media screen and (max-width: 767px) {
  #header .logo {
    width: 90px;
  }
}
#header .menuWrap {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  #header .menuWrap {
    margin-left: 50px;
  }
}
#header .menuOpen {
  width: 25px;
  height: 25px;
  margin-left: 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  #header .menuOpen {
    display: none;
  }
}
#header .menuOpen span {
  width: 100%;
  height: 2px;
  display: block;
  background: #fff;
  transition: all 0.3s;
  position: absolute;
}
#header .menuOpen span:nth-child(1) {
  top: 3px;
}
#header .menuOpen span:nth-child(2) {
  top: 11px;
}
#header .menuOpen span:nth-child(3) {
  top: 19px;
}
#header .menuOpen.active span:nth-child(1) {
  top: 13px;
  transform: rotate(225deg);
}
#header .menuOpen.active span:nth-child(2) {
  opacity: 0;
}
#header .menuOpen.active span:nth-child(3) {
  top: 13px;
  transform: rotate(-225deg);
}
#header .pageNav {
  display: flex;
}
@media screen and (max-width: 767px) {
  #header .pageNav {
    display: none;
  }
}
#header .pageNav .item {
  padding-right: 40px;
  margin-right: 40px;
}
@media screen and (max-width: 1023px) {
  #header .pageNav .item {
    padding-right: 20px;
    margin-right: 20px;
  }
}
#header .pageNav .item:last-child {
  padding-right: 0;
  margin-right: 0;
}
#header .pageNav .item:last-child a:after {
  content: none;
}
#header .pageNav .item a {
  position: relative;
  font-size: 18px;
  font-family: "Playfair Display", "Times New Roman", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  #header .pageNav .item a {
    display: block;
  }
}
#header .pageNav .item a:after {
  content: '';
  display: block;
  position: absolute;
  width: 1px;
  height: 18px;
  background: #fff;
  right: -40px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 1023px) {
  #header .pageNav .item a:after {
    right: -20px;
  }
}
@media screen and (max-width: 1023px) {
  .fr #header .pageNav .item a {
    font-size: 15px;
  }
}
#header .langSelect {
  margin-left: 40px;
  width: auto;
}
@media screen and (max-width: 1023px) {
  #header .langSelect {
    margin-left: 20px;
  }
}
#header .langSelect .langBtn {
  margin-right: 0;
  transition: opacity 0.3s;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  #header .langSelect .langBtn:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  #header .langSelect .langBtn {
    display: none;
  }
}
#header .langSelect .langSelectTxt {
  display: none;
}
#header .langSelect .langList {
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
}
#header .orderBtn {
  margin-left: 40px;
}
@media screen and (max-width: 1023px) {
  #header .orderBtn {
    margin-left: 20px;
  }
}
#header .orderBtn .line2 {
  line-height: 1.2;
  text-align: center;
  font-size: 14px;
  padding: 10px 20px 11px;
}
@media screen and (max-width: 1023px) {
  #header .orderBtn .line2 {
    padding: 5px 15px;
  }
}

.headerSP {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  background: #000;
  padding: 60px 0 20px;
  transform: translateY(-105%);
  transition: transform 0.5s;
}
@media screen and (min-width: 768px) {
  .headerSP {
    display: none;
  }
}
.headerSP.active {
  transform: translateY(0);
}
.headerSP .pageNav .item a {
  text-align: center;
  padding: 8px;
  display: block;
}
.headerSP .langSelect {
  display: block;
  width: auto;
  text-align: center;
  margin-top: 20px;
}
.headerSP .langSelect .langList {
  position: static;
  width: auto;
  margin-top: 20px;
  border-top: 1px solid #666;
}
.headerSP .langSelect .langList::after {
  content: "";
  display: block;
  clear: both;
}
.headerSP .langSelect .langList li {
  width: 50%;
  float: left;
  border-bottom: 1px solid #666;
}
.headerSP .langSelect .langList li:nth-child(2n+1) {
  border-right: 1px solid #666;
}
.headerSP .langSelect .langList a {
  font-size: 13px;
}

#mainContent .smallTxt {
  font-size: 0.875em;
}
#mainContent .largeTxt {
  font-size: 1.25em;
}
#mainContent .txt p {
  margin-bottom: 1em;
}
#mainContent > .block {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  #mainContent > .block {
    padding: 40px 0;
  }
}
#mainContent.iOS > .bgFixed {
  position: relative;
}
#mainContent.iOS > .bgFixed:before {
  content: '';
  display: block;
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-position: center top;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: 0;
}
#mainContent.iOS > .bgFixed.current:before {
  position: fixed;
}

#footer {
  background: #000;
  position: relative;
}
#footer .footerTop {
  padding: 40px 0;
  text-align: center;
}
#footer .footerTop .langSelect {
  margin: 0 auto 60px;
}
#footer .footerTop .footerNav {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
#footer .footerTop .footerNav li {
  font-size: 14px;
  padding: 0 10px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #footer .footerTop .footerNav li {
    margin-bottom: 15px;
  }
}
#footer .footerTop .footerNav li + li {
  border-left: 1px #999 solid;
}
#footer .footerBottom {
  padding: 40px 0;
  border-top: 1px solid #4d4d4d;
}
#footer .footerBottom .contentInner {
  position: relative;
}
#footer .footerBottom .notes {
  font-size: 11px;
  text-align: center;
  margin-bottom: 20px;
}
#footer .footerBottom .rating {
  width: 154px;
  position: absolute;
  left: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #footer .footerBottom .rating img {
    max-height: 100px;
  }
}
@media screen and (max-width: 767px) {
  #footer .footerBottom .rating {
    position: static;
    margin: 0 auto 20px;
    width: 110px;
  }
}
@media screen and (max-width: 767px) {
  .uk #footer .footerBottom .rating, .fr #footer .footerBottom .rating {
    width: 70px;
  }
}
.us #footer .footerBottom .rating {
  width: 180px;
}
#footer .footerBottom .copy {
  font-size: 10px;
  text-align: center;
  width: calc(100% - 340px);
  max-width: 1000px;
  margin: auto;
}
.us #footer .footerBottom .copy {
  width: calc(100% - 390px);
}
@media screen and (max-width: 767px) {
  .us #footer .footerBottom .copy {
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  #footer .footerBottom .copy {
    width: auto;
    margin: 0 15px;
  }
}
#footer #pageTop {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  display: inline-block;
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 10;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  #footer #pageTop {
    bottom: 55px;
    right: 10px;
  }
}
#footer #pageTop:after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.titleStyle01 {
  color: #fff;
  font-size: 80px;
  font-weight: bold;
  text-align: center;
  text-shadow: 0px 0px 18px rgba(0, 0, 0, 0.6);
  font-family: "Playfair Display", "Times New Roman", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  letter-spacing: 0.04em;
  line-height: 90px;
  height: 100px;
  transition: padding 0.6s ease-in !important;
  overflow: hidden;
  padding-top: 100px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .titleStyle01 {
    font-size: 40px;
    line-height: 45px;
    height: 50px;
    padding-top: 50px;
    margin-bottom: 15px;
  }
}
.titleStyle01.aos-animate {
  padding-top: 0;
}

.titleStyle02 {
  font-size: 40px;
  position: relative;
  z-index: 0;
  display: table;
  font-family: "Playfair Display", "Times New Roman", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .titleStyle02 {
    font-size: 24px;
    margin: -20px auto 20px;
  }
}
.titleStyle02:after {
  content: '';
  display: block;
  position: absolute;
  width: calc(100% - 40px);
  height: 30px;
  background: rgba(202, 0, 11, 0.5);
  left: 20px;
  bottom: 0;
  z-index: -1;
  transition: width 0.2s ease-in 0.5s;
}
@media screen and (max-width: 767px) {
  .titleStyle02:after {
    bottom: -10px;
  }
}
@media screen and (max-width: 767px) {
  .titleStyle02.line2 {
    margin-top: -30px;
  }
}
.titleStyle02.line2:after {
  height: 50px;
  bottom: 20px;
}
@media screen and (max-width: 767px) {
  .titleStyle02.line2:after {
    height: 40px;
    bottom: 10px;
  }
}
.titleStyle02.line2 .last {
  padding-left: 100px;
}
.titleStyle02.line2 .right {
  text-align: right;
  width: 100%;
  display: inline-block;
}
@media screen and (max-width: 374px) {
  .titleStyle02.spSmall-fz22 {
    font-size: 22px;
  }
}

.titleStyle03 {
  overflow: hidden;
  text-align: center;
}
.titleStyle03:not(:first-child) {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .titleStyle03:not(:first-child) {
    margin-top: 15px;
  }
}
.titleStyle03 span {
  font-size: 24px;
  font-weight: bold;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  padding: 0 20px;
  font-family: "Playfair Display", "Times New Roman", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .titleStyle03 span {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.titleStyle03 span:before, .titleStyle03 span:after {
  content: '';
  width: 50vw;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
}
.titleStyle03 span:before {
  right: 100%;
}
.titleStyle03 span:after {
  left: 100%;
}

.boxStyle01 {
  position: relative;
}
.boxStyle01 .inner {
  width: 68%;
  min-width: 680px;
}
@media screen and (max-width: 1023px) {
  .boxStyle01 .inner {
    min-width: 0;
    width: 100%;
    max-width: 680px;
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  .boxStyle01 .inner {
    height: calc((100vw - 30px) * 1.31);
  }
}
.boxStyle01 .imgBox {
  position: relative;
  overflow: hidden;
  transition: width 0.2s ease-in;
  width: 0;
  height: 100%;
}
.boxStyle01 .imgBox:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #c9000b url(/common/img/ico_guild_w.png) center center no-repeat;
  transition: width 0.2s ease-in 0.5s;
}
@media screen and (max-width: 767px) {
  .boxStyle01 .imgBox:after {
    background-size: 50px;
  }
}
.boxStyle01 .imgBox.aos-animate {
  width: 100%;
}
.boxStyle01 .imgBox.aos-animate:after {
  width: 0;
}
.boxStyle01 .imgBox img {
  max-width: none;
  max-height: 100%;
}
@media screen and (max-width: 1023px) {
  .boxStyle01 .imgBox.aos-animate {
    width: 100%;
  }
}
.boxStyle01 .txtBox {
  width: 48%;
  padding: 30px;
  position: absolute;
  right: 0;
  top: 50%;
}
@media screen and (max-width: 1023px) {
  .boxStyle01 .txtBox {
    width: 90%;
    max-width: 600px;
    position: relative;
    margin: -70px auto 0;
    padding: 20px;
  }
}

.boxStyle02 .cont {
  position: relative;
  margin-bottom: 80px;
}
@media screen and (max-width: 1023px) {
  .boxStyle02 .cont {
    margin-bottom: 40px;
  }
}
.boxStyle02 .cont .imgBox {
  display: block;
  position: relative;
  overflow: hidden;
  transition: width 0.2s ease-in;
  width: 0;
  height: 450px;
}
.boxStyle02 .cont .imgBox:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #c9000b url(/common/img/ico_guild_w.png) center center no-repeat;
  transition: width 0.2s ease-in 0.5s;
}
@media screen and (max-width: 767px) {
  .boxStyle02 .cont .imgBox:after {
    background-size: 50px;
  }
}
.boxStyle02 .cont .imgBox.aos-animate {
  width: 800px;
}
.boxStyle02 .cont .imgBox.aos-animate:after {
  width: 0;
}
.boxStyle02 .cont .imgBox img {
  max-width: none;
  max-height: 100%;
}
@media screen and (max-width: 767px) {
  .boxStyle02 .cont .imgBox img {
    max-width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .boxStyle02 .cont .imgBox {
    width: 100%;
    height: 56.25vw;
    max-height: 450px;
  }
}
@media screen and (max-width: 1023px) {
  .boxStyle02 .cont .imgBox.aos-animate {
    width: 100%;
  }
}
.boxStyle02 .cont .txtBox {
  padding: 0 8vw;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
@media screen and (max-width: 1023px) {
  .boxStyle02 .cont .txtBox {
    width: 100%;
    padding: 0 15px;
    position: static;
    transform: none;
  }
}
.boxStyle02 .cont .txtBox .txt {
  max-width: 350px;
}
@media screen and (max-width: 1023px) {
  .boxStyle02 .cont .txtBox .txt {
    padding: 0 15px;
    max-width: none;
  }
}
.boxStyle02 .cont:nth-child(2n+1) .txtBox .txt {
  margin-left: auto;
}
.boxStyle02 .cont:nth-child(2n) .imgBox {
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .boxStyle02 .cont:nth-child(2n) .imgBox:after {
    right: auto;
    left: 0;
  }
}
.boxStyle02 .cont:nth-child(2n) .txtBox {
  left: 0;
  right: auto;
}

.boxStyle03 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .boxStyle03 {
    display: block;
  }
}
.boxStyle03 .imgBox {
  width: 37.5%;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .boxStyle03 .imgBox {
    width: 100%;
    margin-bottom: 20px;
    padding: 0 20px;
  }
}
.boxStyle03 .imgBox img {
  border-radius: 10px;
}
.boxStyle03 .imgBox .notes {
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  margin-top: 10px;
}
.boxStyle03 .txtBox {
  width: 59%;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .boxStyle03 .txtBox {
    width: 100%;
  }
}

.listStyle02 {
  display: flex;
  flex-wrap: wrap;
}
.listStyle02 dt {
  border-bottom: 3px solid #cd000c;
  width: 150px;
  font-weight: bold;
}
.listStyle02 dd {
  border-bottom: 1px solid #cd000c;
  width: -webkit-calc(100% - 150px);
  width: calc(100% - 150px);
}

.listStyle03 {
  justify-content: center;
}
.listStyle03 .item {
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
}
@media screen and (max-width: 767px) {
  .listStyle03 .item {
    width: 100%;
  }
}
.listStyle03 .item > a {
  display: block;
  height: 100%;
}
.listStyle03 .item .imgBox {
  position: relative;
}
.listStyle03 .item .imgBox:before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 60%;
}
.listStyle03 .item .txtBox {
  padding: 15px;
  font-size: 15px;
  text-align: center;
}

.listStyle04 > dt {
  font-family: "Playfair Display", "Times New Roman", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  border-bottom: 1px solid #fff;
  font-size: 18px;
}
.listStyle04 > dd {
  margin-top: 15px;
}

.btnStyle01 a {
  display: inline-block;
  background: #cd000c;
  font-family: "Playfair Display", "Times New Roman", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  letter-spacing: 0.04em;
  color: #fff;
  border-radius: 50px;
  font-weight: bold;
  font-size: 18px;
  padding: 4px 20px 6px;
}
.btnStyle01 a:hover {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .btnStyle01 a {
    white-space: nowrap;
    padding: 2px 12px;
  }
}
@media screen and (max-width: 1023px) {
  .fr .btnStyle01 a {
    padding: 4px 10px 6px;
    font-size: 16px;
  }
}

.btnStyle02 a {
  display: inline-block;
  border: 1px solid #fff;
  padding: 6px 50px 6px 20px;
  position: relative;
  transition: all 0.3s ease;
  font-family: "Playfair Display", "Times New Roman", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  letter-spacing: 0.04em;
}
.btnStyle02 a:after {
  content: '';
  display: block;
  position: absolute;
  width: 7px;
  height: 14px;
  background: url(/common/img/ico_arrow02_next.png) 0 0/contain no-repeat;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.btnStyle02 a:hover:after {
  right: 15px;
}

.tableStyle01 {
  display: table;
}
.tableStyle01 dl {
  display: table-row;
}
.tableStyle01 dl dt, .tableStyle01 dl dd {
  word-break: break-all;
  display: table-cell;
  line-height: 1.5;
  padding-bottom: 12px;
}
.tableStyle01 dl dt {
  padding-right: 1em;
}

#moviesSlider {
  margin-bottom: 20px;
}
#moviesSlider .slide {
  position: relative;
  transition: opacity 0.3s;
  cursor: pointer;
}
#moviesSlider .slide:after {
  content: '';
  display: block;
  position: absolute;
  width: 100px;
  height: 100px;
  background: url(/common/img/ico_play.png) 0 0/contain no-repeat;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  #moviesSlider .slide:after {
    width: 70px;
    height: 70px;
  }
}
@media screen and (min-width: 768px) {
  #moviesSlider .slide:hover {
    opacity: 0.7;
  }
}
#moviesSlider .slide .txtBox {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 6px 15px;
}

#moviesSliderNav {
  width: calc(100% - 100px);
  margin: auto;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  #moviesSliderNav {
    width: 100%;
    padding-bottom: 40px;
  }
}
#moviesSliderNav .slide {
  margin: 0 10px;
  position: relative;
  transition: opacity 0.3s;
  cursor: pointer;
  flex-basis: 100%;
}
#moviesSliderNav .slide:after {
  content: '';
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  background: url(/common/img/ico_play.png) 0 0/contain no-repeat;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  #moviesSliderNav .slide:after {
    width: 35px;
    height: 35px;
  }
}
@media screen and (min-width: 768px) {
  #moviesSliderNav .slide:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  #moviesSliderNav .slide {
    margin: 0 5px;
  }
}
#moviesSliderNav .slide .txtBox {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 4px 15px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  #moviesSliderNav .slide .txtBox {
    padding: 3px 5px;
    font-size: 11px;
    line-height: 1.4;
  }
}
#moviesSliderNav .slick-arrow {
  width: 40px;
  height: 100%;
  cursor: pointer;
  position: absolute;
  top: 0;
  background: #cd000c center center no-repeat;
}
@media screen and (max-width: 767px) {
  #moviesSliderNav .slick-arrow {
    width: 30px;
    height: 30px;
    top: 50%;
    transform: translateY(-50%);
    background-size: 10px;
    top: auto;
    transform: none;
    bottom: 0;
  }
}
#moviesSliderNav .slick-arrow.prev {
  background-image: url(/common/img/ico_arrow01_prev.png);
  left: -50px;
}
@media screen and (max-width: 767px) {
  #moviesSliderNav .slick-arrow.prev {
    background-image: url(/common/img/ico_arrow02_prev.png);
    left: 0;
  }
}
#moviesSliderNav .slick-arrow.next {
  background-image: url(/common/img/ico_arrow01_next.png);
  right: -50px;
}
@media screen and (max-width: 767px) {
  #moviesSliderNav .slick-arrow.next {
    background-image: url(/common/img/ico_arrow02_next.png);
    right: 0;
  }
}
#moviesSliderNav .slick-dots {
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 3px;
}
#moviesSliderNav .slick-dots li {
  display: inline-block;
  margin: 0 10px;
}
#moviesSliderNav .slick-dots button {
  outline: none;
  background: #fff;
  border: 0;
  text-indent: -9999px;
  width: 15px;
  height: 15px;
  padding: 0;
  border-radius: 15px;
  opacity: 0.5;
}
#moviesSliderNav .slick-dots .slick-active button {
  opacity: 1;
}

#charaSlider {
  margin: 0 auto 60px;
  max-width: 800px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #charaSlider {
    width: 100%;
    margin-bottom: 20px;
  }
}
#charaSlider .slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #charaSlider .slide {
    display: block;
  }
}
#charaSlider .slide .imgBox {
  width: 50%;
  height: 450px;
}
@media screen and (max-width: 767px) {
  #charaSlider .slide .imgBox {
    width: 100%;
    padding: 0 15px;
  }
}
#charaSlider .slide .imgBox img {
  margin: auto;
  max-height: 100%;
}
#charaSlider .slide .txtBox {
  width: 50%;
}
@media screen and (max-width: 767px) {
  #charaSlider .slide .txtBox {
    width: 100%;
    padding: 0 15px;
    margin-top: -50vw;
    background: linear-gradient(to bottom, transparent 0%, #000 40%);
    position: relative;
  }
}
#charaSlider .slide .txtBox .nameBox {
  display: table;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #charaSlider .slide .txtBox .nameBox {
    display: block;
    margin-bottom: 15px;
  }
}
#charaSlider .slide .txtBox .nameBox .name {
  font-size: 40px;
  font-weight: bold;
  font-family: "Playfair Display", "Times New Roman", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  letter-spacing: 0.04em;
  position: relative;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  #charaSlider .slide .txtBox .nameBox .name {
    font-size: 25px;
  }
}
#charaSlider .slide .txtBox .nameBox .name:after {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 1px;
  background: #fff;
  bottom: 0;
  left: 0;
  transition: width 0.4s ease-in 0.8s;
}
#charaSlider .slide .txtBox .nameBox .name.aos-animate:after {
  width: 100%;
}
#charaSlider .slide .txtBox .nameBox .cv {
  font-size: 20px;
  font-style: italic;
  text-align: right;
}
@media screen and (max-width: 767px) {
  #charaSlider .slide .txtBox .nameBox .cv {
    font-size: 16px;
  }
}
#charaSlider .slide .txtBox .description {
  margin-bottom: 30px;
}
#charaSlider .slide .txtBox .movieBox {
  display: flex;
  justify-content: space-between;
}
#charaSlider .slide .txtBox .movieBox .item {
  width: 48%;
}
#charaSlider .slide .txtBox .movieBox .item.playBtn {
  position: relative;
}
#charaSlider .slide .txtBox .movieBox .item.playBtn:after {
  content: '';
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  background: url(/common/img/ico_play.png) 0 0/contain no-repeat;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  #charaSlider .slide .txtBox .movieBox .item.playBtn:after {
    width: 35px;
    height: 35px;
  }
}
#charaSlider .slick-arrow {
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: absolute;
  top: 40vw;
  background: #cd000c center center/10px no-repeat;
  z-index: 1;
}
#charaSlider .slick-arrow.prev {
  background-image: url(/common/img/ico_arrow02_prev.png);
  left: 0;
}
#charaSlider .slick-arrow.next {
  background-image: url(/common/img/ico_arrow02_next.png);
  right: 0;
}

#charaSliderNav {
  overflow: hidden;
  z-index: 1;
}
#charaSliderNav .slide {
  margin: 0 3px;
  position: relative;
  transition: opacity 0.3s;
  cursor: pointer;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  #charaSliderNav .slide:hover {
    opacity: 0.7;
  }
}
#charaSliderNav .slide .name {
  position: absolute;
  height: 50%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
  bottom: 0;
  width: 100%;
  padding-bottom: 10px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 15px;
  font-family: "Playfair Display", "Times New Roman", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
}
#charaSliderNav .slick-current {
  transform: translateY(-10px);
}
@media screen and (max-width: 767px) {
  #charaSliderNav .slick-list {
    width: calc(100% + 6px);
  }
}
#charaSliderNav .slick-track {
  margin-left: -3px;
  padding: 10px 0;
}
@media screen and (max-width: 767px) {
  #charaSliderNav .slick-track {
    padding-bottom: 35px;
  }
}
#charaSliderNav .slick-arrow {
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #cd000c center center/10px no-repeat;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #charaSliderNav .slick-arrow {
    transform: none;
    top: auto;
    bottom: 0;
  }
}
#charaSliderNav .slick-arrow.prev {
  background-image: url(/common/img/ico_arrow02_prev.png);
  left: 0;
}
@media screen and (max-width: 767px) {
  #charaSliderNav .slick-arrow.prev {
    left: auto;
    right: 35px;
  }
}
#charaSliderNav .slick-arrow.next {
  background-image: url(/common/img/ico_arrow02_next.png);
  right: 0;
}

.tabNavProduct {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .tabNavProduct {
    margin-bottom: 5px;
  }
}
.tabNavProduct .tabItem {
  text-align: center;
  margin: 0 10px;
  padding: 10px 0;
  color: #000;
  font-size: 20px;
  width: 40%;
  font-family: "Playfair Display", "Times New Roman", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  position: relative;
  transition: opacity 0.3s;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .tabNavProduct .tabItem:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .tabNavProduct .tabItem {
    font-size: 16px;
    margin: 0 5px;
  }
}
.tabNavProduct .tabItem:after {
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 11px 0 11px;
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .tabNavProduct .tabItem:after {
    border-width: 10px 6px 0px 6px;
    bottom: -10px;
  }
}
.tabNavProduct .tabItem.standard {
  color: #fff;
  background-image: linear-gradient(to right, #650207 0%, #c9000b 100%);
}
.tabNavProduct .tabItem.standard:after {
  border-color: #970109 transparent transparent transparent;
}
.tabNavProduct .tabItem.box {
  background-image: linear-gradient(to right, #d07206 0%, #fffc95 50%, #fff433 100%);
}
.tabNavProduct .tabItem.box:after {
  border-color: #fffa95 transparent transparent transparent;
}
.tabNavProduct .tabItem.deluxe {
  background-image: linear-gradient(to right, #b6b6b6 0%, #eeeeee 50%, #d2d2d2 100%);
}
.tabNavProduct .tabItem.deluxe:after {
  border-color: #eee transparent transparent transparent;
}
.tabNavProduct .tabItem.active:after {
  content: '';
}

.tabContWrap > .tabCont {
  display: none;
}
.tabContWrap > .tabCont .coming {
  text-align: center;
  padding: 120px 0;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .tabContWrap > .tabCont .coming {
    padding: 60px 0;
  }
}
.tabContWrap[data-tab="product"] {
  border: 1px solid #fff;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .tabContWrap[data-tab="product"] {
    padding: 15px;
  }
}

.tabNavCountry {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .tabNavCountry {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
}
body:not(.us) .tabNavCountry [data-href="us"] {
  display: none;
}
.tabNavCountry .tabItem {
  margin: 0 15px;
  width: 60px;
  filter: drop-shadow(0px 0px 10px #000);
  transition: padding 0.3s ease-in;
  cursor: pointer;
  transition: opacity 0.3s;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .tabNavCountry .tabItem:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .tabNavCountry .tabItem {
    width: 25%;
    margin: 0 0 25px;
    text-align: center;
  }
  .tabNavCountry .tabItem img {
    width: 50px;
  }
}
.tabNavCountry .tabItem.active {
  padding-bottom: 20px;
  position: relative;
}
.tabNavCountry .tabItem.active:after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7px 8px 7px;
  border-color: transparent transparent #fff transparent;
  position: absolute;
  bottom: 0;
  left: calc(50% - 7px);
}

.logoList {
  display: flex;
  margin: auto;
}
.logoList.snsBox {
  justify-content: center;
}
.logoList.snsBox .item {
  width: 30px;
  margin: 0 25px;
}
.logoList.brandBox {
  justify-content: space-between;
  max-width: 190px;
}
.logoList.brandBox .item {
  height: 40px;
}
.logoList.brandBox .item img {
  max-height: 100%;
}

.langSelect {
  display: inline-block;
  position: relative;
}
.langSelect .langBtn {
  width: 24px;
  position: relative;
  margin-right: 20px;
  display: inline-block;
}
.langSelect .langSelectTxt {
  display: inline-block;
  border-bottom: 1px solid #fff;
  padding: 0 25px 0 0;
  position: relative;
  transition: opacity 0.3s;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .langSelect .langSelectTxt:hover {
    opacity: 0.7;
  }
}
.langSelect .langSelectTxt:after {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  box-shadow: 1px 1px 0 #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.langSelect .langList {
  display: none;
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  width: 160px;
  position: absolute;
  top: 35px;
  right: 0;
  z-index: 1;
}
.langSelect .langList li a {
  display: block;
  padding: 8px;
  font-size: 15px;
}
.langSelect .langList li a.disable {
  pointer-events: none;
  color: #666;
}

#modalBg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  z-index: 100;
}

#movieModal {
  width: 80%;
  max-width: 1000px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 101;
}
@media screen and (max-width: 767px) {
  #movieModal {
    width: 90%;
  }
}
#movieModal .closeBtn {
  padding: 20px;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: -55px;
}
@media screen and (max-width: 767px) {
  #movieModal .closeBtn {
    padding: 14px;
    top: -40px;
    right: 0;
  }
}
#movieModal .closeBtn::before, #movieModal .closeBtn::after {
  content: "";
  position: absolute;
  display: block;
  background: #fff;
  width: 40px;
  height: 2px;
  top: 17px;
  left: 3px;
  z-index: 1;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  #movieModal .closeBtn::before, #movieModal .closeBtn::after {
    width: 30px;
    top: 13px;
    left: 0px;
  }
}
#movieModal .closeBtn::before {
  transform: rotate(135deg);
}
#movieModal .movieWrap {
  position: relative;
}
#movieModal .movieWrap:before {
  content: '';
  display: block;
  position: relative;
  padding-top: 56.25%;
  height: 0;
  overflow: hidden;
}
#movieModal .movieWrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modaal-gallery-item img {
  max-height: calc(100vh - 120px);
  width: auto !important;
}

#mainVisual {
  background: #000;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #mainVisual {
    padding-top: 60px;
  }
}
#mainVisual .movieBg {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  bottom: 0;
}
#mainVisual .movieBg video, #mainVisual .movieBg img.bgImg {
  position: absolute;
  width: 100%;
  height: 100%;
  font-family: 'object-fit: cover;';
  object-fit: cover;
  top: 0;
}
#mainVisual .movieBg:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
}
#mainVisual .movieBg.scroll {
  position: absolute;
}
#mainVisual .movieBg .movieLabel {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 1;
  max-width: 50px;
}
@media screen and (max-width: 767px) {
  #mainVisual .movieBg .movieLabel {
    left: 10px;
    bottom: 10px;
    width: 12vw;
  }
}
#mainVisual .newsWrap {
  margin-top: -50px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #mainVisual .newsWrap.contentInner {
    margin: 0 0 0 15px;
  }
}
#mainVisual .mainCont {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #mainVisual .mainCont {
    padding-bottom: 0;
  }
}
#mainVisual .mainCont .img {
  display: block;
  margin: auto;
}
#mainVisual .mainCont .img.logo {
  margin-bottom: 30px;
}
#mainVisual .btnWrap {
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  margin: 30px auto;
  display: inline-block;
  padding: 10px 10px 10px 30px;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  #mainVisual .btnWrap {
    border-radius: 0;
    text-align: center;
    padding: 20px;
  }
}
#mainVisual .btnWrap .txt {
  display: inline-block;
  vertical-align: middle;
  font-size: 40px;
  margin-right: 30px;
  font-family: "Playfair Display", "Times New Roman", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #mainVisual .btnWrap .txt {
    font-size: 20px;
    margin: 0 0 15px 0;
  }
}
#mainVisual .btnWrap .txt .num {
  font-family: 'Times New Roman', serif;
}
#mainVisual .btnWrap .btn {
  display: inline-block;
  vertical-align: middle;
  max-width: 285px;
}
#mainVisual .btnWrap .preOrderBtn {
  background: #cd000c;
  font-family: "Playfair Display", "Times New Roman", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  letter-spacing: 0.04em;
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  border-radius: 50px;
  position: relative;
  height: 60px;
  line-height: 60px;
  display: inline-block;
  padding: 0 65px;
  max-width: none;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  #mainVisual .btnWrap .preOrderBtn {
    font-size: 20px;
    padding: 0 19%;
  }
}
#mainVisual .btnWrap .preOrderBtn:before, #mainVisual .btnWrap .preOrderBtn:after {
  content: '';
  display: block;
  position: absolute;
  top: 10px;
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 767px) {
  #mainVisual .btnWrap .preOrderBtn:before, #mainVisual .btnWrap .preOrderBtn:after {
    top: 15px;
    width: 30px;
    height: 30px;
  }
}
#mainVisual .btnWrap .preOrderBtn:before {
  background: url(/common/img/ico_btn_cart.png) 0 0/contain no-repeat;
  left: 12px;
}
@media screen and (max-width: 767px) {
  #mainVisual .btnWrap .preOrderBtn:before {
    left: 8px;
  }
}
#mainVisual .btnWrap .preOrderBtn:after {
  background: url(/common/img/ico_btn_arrow.png) 0 0/contain no-repeat;
  right: 12px;
}
@media screen and (max-width: 767px) {
  #mainVisual .btnWrap .preOrderBtn:after {
    right: 8px;
  }
}
@media screen and (max-width: 767px) {
  #mainVisual .btnWrap .preOrderBtn.line2 {
    line-height: 1.2;
    padding: 5px 20%;
  }
}
@media screen and (max-width: 767px) {
  #mainVisual #newsList .item {
    max-width: 78vw;
    margin-right: 15px;
    height: auto;
  }
}
#mainVisual #newsList .slick-track {
  display: flex;
}
#mainVisual #newsList .slick-dots {
  text-align: center;
  margin-top: 15px;
}
#mainVisual #newsList .slick-dots li {
  display: inline-block;
  margin: 0 10px;
}
#mainVisual #newsList .slick-dots button {
  outline: none;
  background: #fff;
  border: 0;
  text-indent: -9999px;
  width: 15px;
  height: 15px;
  padding: 0;
  border-radius: 15px;
  opacity: 0.5;
}
#mainVisual #newsList .slick-dots .slick-active button {
  opacity: 1;
}

#movies {
  background: #000 url(/common/img/bg_movies.jpg) center top/cover no-repeat;
  background-attachment: fixed;
}
#movies:before {
  background-image: url(/common/img/bg_movies.jpg);
}

#features {
  background: #000 url(/common/img/bg_features.jpg) center top/cover no-repeat;
  background-attachment: fixed;
}
#features:before {
  background-image: url(/common/img/bg_features.jpg);
}

#characters {
  background: #000 url(/common/img/bg_characters.jpg) center top/cover no-repeat;
  background-attachment: fixed;
  position: relative;
  transition: background 0.3s;
  overflow: hidden;
}
#characters[data-bg=chara1] {
  background-image: url(/common/img/bg_characters.jpg);
}
#characters[data-bg=chara1]:before {
  background-image: url(/common/img/bg_characters.jpg);
}
#characters[data-bg=chara2] {
  background-image: url(/common/img/chara/gallery_lucy_bg.jpg);
}
#characters[data-bg=chara2]:before {
  background-image: url(/common/img/chara/gallery_lucy_bg.jpg);
}
#characters[data-bg=chara3] {
  background-image: url(/common/img/chara/gallery_gray_bg.jpg);
}
#characters[data-bg=chara3]:before {
  background-image: url(/common/img/chara/gallery_gray_bg.jpg);
}
#characters[data-bg=chara4] {
  background-image: url(/common/img/chara/gallery_erza_bg.jpg);
}
#characters[data-bg=chara4]:before {
  background-image: url(/common/img/chara/gallery_erza_bg.jpg);
}
#characters[data-bg=chara5] {
  background-image: url(/common/img/chara/gallery_wendy_bg.jpg);
}
#characters[data-bg=chara5]:before {
  background-image: url(/common/img/chara/gallery_wendy_bg.jpg);
}
#characters[data-bg=chara6] {
  background-image: url(/common/img/chara/gallery_gajeel_bg.jpg);
}
#characters[data-bg=chara6]:before {
  background-image: url(/common/img/chara/gallery_gajeel_bg.jpg);
}
#characters[data-bg=chara7] {
  background-image: url(/common/img/chara/gallery_juvia01.jpg);
}
#characters[data-bg=chara7]:before {
  background-image: url(/common/img/chara/gallery_juvia01.jpg);
}
#characters[data-bg=chara8] {
  background-image: url(/common/img/chara/gallery_rogue01.jpg);
}
#characters[data-bg=chara8]:before {
  background-image: url(/common/img/chara/gallery_rogue01.jpg);
}
#characters[data-bg=chara9] {
  background-image: url(/common/img/chara/gallery_kagura01.jpg);
}
#characters[data-bg=chara9]:before {
  background-image: url(/common/img/chara/gallery_kagura01.jpg);
}
#characters[data-bg=chara10] {
  background-image: url(/common/img/chara/gallery_sherria01.jpg);
}
#characters[data-bg=chara10]:before {
  background-image: url(/common/img/chara/gallery_sherria01.jpg);
}
#characters[data-bg=chara11] {
  background-image: url(/common/img/chara/gallery_sting01.jpg);
}
#characters[data-bg=chara11]:before {
  background-image: url(/common/img/chara/gallery_sting01.jpg);
}
#characters[data-bg=chara12] {
  background-image: url(/common/img/chara/gallery_ichiya_bg.jpg);
}
#characters[data-bg=chara12]:before {
  background-image: url(/common/img/chara/gallery_ichiya_bg.jpg);
}
#characters[data-bg=chara13] {
  background-image: url(/common/img/chara/gallery_laxus_bg.jpg);
}
#characters[data-bg=chara13]:before {
  background-image: url(/common/img/chara/gallery_laxus_bg.jpg);
}
#characters[data-bg=chara14] {
  background-image: url(/common/img/chara/gallery_mirajane_bg.jpg);
}
#characters[data-bg=chara14]:before {
  background-image: url(/common/img/chara/gallery_mirajane_bg.jpg);
}
#characters[data-bg=chara15] {
  background-image: url(/common/img/chara/gallery_jellal01.jpg);
}
#characters[data-bg=chara15]:before {
  background-image: url(/common/img/chara/gallery_jellal01.jpg);
}
#characters[data-bg=chara16] {
  background-image: url(/common/img/chara/gallery_gildarts_bg.jpg);
}
#characters[data-bg=chara16]:before {
  background-image: url(/common/img/chara/gallery_gildarts_bg.jpg);
}
@media screen and (max-width: 767px) {
  #characters {
    overflow: hidden;
  }
  #characters:after {
    content: '';
    display: block;
    position: absolute;
    width: 100vw;
    height: 300px;
    background: #000;
    bottom: 0;
    z-index: 0;
  }
}
@media screen and (max-width: 767px) {
  #characters .contentInner {
    margin: 0;
  }
}
#characters .titleStyle01 {
  position: relative;
}
#characters .bg {
  background: rgba(0, 0, 0, 0.8);
  width: 560px;
  height: 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: skewX(-12deg);
  transform-origin: top left;
  transition: height 0.4s ease-in 0.8s;
}
#characters .bg.aos-animate {
  height: 100%;
}
#characters .bgLayer {
  background: rgba(0, 0, 0, 0.4);
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#preOrder {
  background: #000 url(/common/img/bg_preorder.jpg) center top/cover no-repeat;
  background-attachment: fixed;
}
#preOrder:before {
  background-image: url(/common/img/bg_preorder.jpg);
}
#preOrder .contentInner {
  max-width: 930px;
}

.topPage #mainVisual {
  height: 100vh;
  background: #000 url(/common/img/bg_mv.jpg) top center/cover no-repeat;
  padding: 0;
}
.topPage #mainVisual .langSelect {
  margin: 60px auto;
}
.topPage #mainVisual .langSelect .langList {
  top: 35px;
  right: 0;
}

/* --------------------------------------------------
 dlc
 -------------------------------------------------- */
#dlcContent {
  background: #000 url(/common/img/dlc/bg_dlc.png) no-repeat center top;
  background-size: 100% auto;
  padding-top: 70px;
}
@media screen and (max-width: 767px) {
  #dlcContent {
    padding-top: 35px;
  }
}
#dlcContent .pageTitle {
  padding-top: 60px;
  padding-bottom: 40px;
  font-weight: bold;
  font-family: "Playfair Display", "Times New Roman", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  font-size: 80px;
  letter-spacing: .025em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #dlcContent .pageTitle {
    padding-top: 30px;
    padding-bottom: 20px;
    font-size: 40px;
  }
}
#dlcContent .dlcNavList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 12px;
}
#dlcContent .dlcNavList li {
  width: 235px;
}
@media screen and (max-width: 767px) {
  #dlcContent .dlcNavList li {
    width: 50%;
  }
}
#dlcContent .dlcNavList li a, #dlcContent .dlcNavList li span {
  padding: 7px 0;
  display: block;
  font-weight: bold;
  text-align: center;
  font-family: "Playfair Display", "Times New Roman", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  font-size: 20px;
  letter-spacing: .025em;
  position: relative;
}
@media screen and (max-width: 767px) {
  #dlcContent .dlcNavList li a, #dlcContent .dlcNavList li span {
    font-size: 14px;
  }
}
#dlcContent .dlcNavList li a:hover::after, #dlcContent .dlcNavList li span::after {
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-color: rgba(255, 255, 255, 0);
  border-top-width: 20px;
  border-bottom-width: 20px;
  border-left-width: 7px;
  border-right-width: 7px;
  margin-right: -7px;
  border-top-color: #fff;
  bottom: -40px;
  right: 50%;
}
@media screen and (max-width: 767px) {
  #dlcContent .dlcNavList li a:hover::after, #dlcContent .dlcNavList li span::after {
    display: none;
  }
}
#dlcContent .dlcNavList li a {
  background: #cd000c;
}
#dlcContent .dlcNavList li a:hover::after {
  border-top-color: #cd000c;
}
#dlcContent .dlcNavList li span {
  color: #cd000c;
  background: #fff;
}
#dlcContent .dlcNavList li span::after {
  border-top-color: #fff;
}
#dlcContent .dlcMain {
  border: 1px #fff solid;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  #dlcContent .dlcMain {
    padding: 15px;
  }
}
#dlcContent .dlcBox {
  position: relative;
  background: rgba(154, 14, 1, 0.8);
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  margin: 8px auto 30px;
}
@media screen and (max-width: 767px) {
  #dlcContent .dlcBox {
    display: block;
    padding: 15px;
    margin: 4px auto 15px;
  }
}
#dlcContent .dlcBox:last-of-type {
  margin-bottom: 0;
}
#dlcContent .dlcBoxImg {
  width: 240px;
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  #dlcContent .dlcBoxImg {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5px;
  }
}
#dlcContent .dlcBoxInner {
  width: calc(100% - 270px);
}
@media screen and (max-width: 767px) {
  #dlcContent .dlcBoxInner {
    width: 100%;
  }
}
#dlcContent .dlcBoxInner .date {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  #dlcContent .dlcBoxInner .date {
    font-size: 12px;
  }
}
#dlcContent .dlcBoxInner .title {
  font-size: 26px;
  font-family: "Playfair Display", "Times New Roman", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  #dlcContent .dlcBoxInner .title {
    font-size: 18px;
  }
}
#dlcContent .dlcBoxInner .type {
  display: flex;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #dlcContent .dlcBoxInner .type {
    margin-bottom: 10px;
  }
}
#dlcContent .dlcBoxInner .type li {
  margin-right: 10px;
  padding: 0 20px;
  line-height: 30px;
  border-radius: 15px;
}
@media screen and (max-width: 767px) {
  #dlcContent .dlcBoxInner .type li {
    font-size: 12px;
    padding: 0 5px;
    margin-right: 5px;
    line-height: inherit;
  }
}
#dlcContent .dlcBoxInner .type li.ps4 {
  background: #0f397e;
}
#dlcContent .dlcBoxInner .type li.xbox {
  background: #6e9039;
}
#dlcContent .dlcBoxInner .type li.steam {
  background: #000;
}
#dlcContent .dlcBox .dlcBtn {
  width: 100%;
  border: 1px #fff solid;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  font-family: "Playfair Display", "Times New Roman", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  cursor: pointer;
  display: block;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  #dlcContent .dlcBox .dlcBtn {
    font-size: 16px;
    margin-top: 15px;
  }
}
#dlcContent .dlcBox .dlcContent {
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  font-family: "Playfair Display", "Times New Roman", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  display: block;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  #dlcContent .dlcBox .dlcContent {
    font-size: 16px;
    margin-top: 15px;
  }
}
#dlcContent .dlcBox .dlcDetail {
  display: none;
}
#dlcContent .dlcBox .dlcDetailWrap {
  margin-top: 20px;
  margin-bottom: -15px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  #dlcContent .dlcBox .dlcDetailWrap {
    margin-bottom: -8px;
  }
}
#dlcContent .dlcBox .dlcDetailImg {
  width: calc((100% - 40px) / 5);
  margin: 0 10px 15px 0;
}
@media screen and (max-width: 767px) {
  #dlcContent .dlcBox .dlcDetailImg {
    width: 48%;
    margin: 0 4% 8px 0;
  }
}
#dlcContent .dlcBox .dlcDetailImg:nth-of-type(5n) {
  margin: 0 0 15px;
}
@media screen and (max-width: 767px) {
  #dlcContent .dlcBox .dlcDetailImg:nth-of-type(5n) {
    margin: 0 4% 8px 0;
  }
}
@media screen and (max-width: 767px) {
  #dlcContent .dlcBox .dlcDetailImg:nth-child(2n) {
    margin: 0 0 8px;
  }
}
#dlcContent .dlcBox .dlcDetailText {
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  #dlcContent .dlcBox .dlcDetailText {
    font-size: 11px;
  }
}
#dlcContent .dlcBox .dlcSeasonPassWrap {
  margin-top: 20px;
  margin-bottom: -15px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  #dlcContent .dlcBox .dlcSeasonPassWrap {
    margin-bottom: -8px;
  }
}
#dlcContent .dlcBox .dlcSeasonPassImg {
  width: calc((100% - 60px) / 3);
  margin: 0 30px 15px 0;
}
@media screen and (max-width: 767px) {
  #dlcContent .dlcBox .dlcSeasonPassImg {
    width: 48%;
    margin: 0 4% 8px 0;
  }
}
#dlcContent .dlcBox .dlcSeasonPassImg:nth-of-type(3n) {
  margin: 0 0 15px;
}
@media screen and (max-width: 767px) {
  #dlcContent .dlcBox .dlcSeasonPassImg:nth-of-type(3n) {
    margin: 0 4% 8px 0;
  }
}
@media screen and (max-width: 767px) {
  #dlcContent .dlcBox .dlcSeasonPassImg:nth-child(2n) {
    margin: 0 0 8px;
  }
}
#dlcContent .dlcBox .dlcSeasonPassText {
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  #dlcContent .dlcBox .dlcSeasonPassText {
    font-size: 11px;
  }
}
#dlcContent .dlcBox .dlcUpdate {
  position: absolute;
  top: -8px;
  left: -8px;
  font-size: 14px;
  font-weight: bold;
  background: #cd000c;
  padding: 0 20px 2px;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  #dlcContent .dlcBox .dlcUpdate {
    font-size: 13px;
    padding: 0 10px;
    top: -4px;
    left: -4px;
  }
}

/* --------------------------------------------------
 spec (responsive)
 -------------------------------------------------- */
.game_page_autocollapse {
  padding-top: 20px;
  border-top: dotted 1px #666;
  margin-top: 30px;
}

.game_area_sys_req_leftCol, .game_area_sys_req_rightCol {
  float: left;
  width: 49%;
}

.game_area_sys_req_leftCol {
  margin-right: 1%;
}

.game_area_sys_req ul {
  list-style-type: none;
  margin-left: 0px;
  line-height: 18px;
  font-size: 12px;
}

.sysreq_contents .sysreq_content.active, .music_album_track_list_contents .music_album_track_listing_ctn.active {
  display: block;
}

.sysreq_contents {
  margin-top: 10px;
}

.game_area_sys_req ul li strong {
  color: #b99e5b;
  font-size: 12px;
  margin-right: 4px;
  font-weight: normal;
  margin-bottom: 2px;
  text-transform: none;
}

@media screen and (max-width: 767px) {
  .game_area_sys_req_leftCol, .game_area_sys_req_rightCol {
    width: 99%;
  }

  .game_area_sys_req_leftCol {
    margin-right: 0%;
    margin-bottom: 5%;
  }
}

/*# sourceMappingURL=style.css.map */

.for_su{
    border: dotted 1px;
    padding: 2%;
    margin-top: 40px;
    width: 100%;
}
.for_su h3{font-weight: bold;}

