@charset "UTF-8";
/* CSS Document */
@charset "UTF-8";

.flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.fw {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

.fnw {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.jcsb {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.jcfe {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;

}

.jcc {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.jcfs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.aic {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.aifs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

/* ====================
  all
==================== */
.cinema_archive {
  width: 80rem;
  margin: 0 auto 7.3rem;
  font-feature-settings: "palt";
  text-align: center;
  line-height: 1;
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 400;
}

.cinema_archive img {
  width: 100%;
}

.cinema_archive_ttl {
  font-size: 2.4rem;
}

.cinema_archive_list_wrap {
  margin-top: 3rem;
}

.cinema_archive_list_item {
  width: 24rem;
}

.cinema_archive_list_ttl {
  font-size: 2rem;
  margin-top: 2rem;
}

/* for pc */
@media only screen
and (min-device-width: 768px) {
  .sp_only {
    display: none;
  }
}


/* for tablet */
@media only screen
and (min-device-width: 768px)
and (max-device-width: 1200px)
and (-webkit-min-device-pixel-ratio: 1) {
  .header,
  .footer,
  .header .header-inner {
  }
}

/* for sp */
@media only screen
and (max-device-width: 767px) {
  .pc_only {
    display: none;
  }

  .cinema_archive {
    width: calc(600 * (100vw / 750));
    margin: 0 auto calc(70 * (100vw / 750));
  }

  .cinema_archive_ttl {
    font-size: calc(36 * (100vw / 750));
  }

  .cinema_archive_list_wrap {
    margin-top: 0;
  }

  .cinema_archive_list_item {
    width: calc(600 * (100vw / 750));
    margin-top: calc(50 * (100vw / 750));
  }

  .cinema_archive_list_ttl {
    font-size: calc(32 * (100vw / 750));
    margin-top: calc(32 * (100vw / 750));
  }
}


/* ====================
  for IE
==================== */
@media all and (-ms-high-contrast: none) {
}

/* IE11 */
_:-ms-lang(x)::-ms-backdrop, .selector {}

/* Edge(EdgeHTML) */
_:-ms-lang(x)::backdrop, .selector {}

/* Edge(Chromium) */
_:lang(x)::-ms-, .selector {}

/* Chrome */
_:lang(x)::-internal-media-controls-overlay-cast-button, .selector {}

/* Safari */
_:lang(x)+_:-webkit-full-screen-document, .selector {}

/* Firefox */
_:lang(x)::-moz-placeholder, .selector {}

/* Edge(EdgeHTML) & IE11 & IE10 */
_:-ms-lang(x), .selector {}

/* Edge(Chromium) & Chrome & Safari & Firefox */
_:lang(x)::-webkit-, .selector {}

/************ fade **********/
.fade {
  -webkit-transition-duration: 2s;
  -o-transition-duration: 2s;
  transition-duration: 2s;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
}

.fade.onView {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}