@charset "utf-8";
/* CSS Document */

/* 全ページ共通 */
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700,900&display=swap');

* {
  font-family: 'Noto Sans JP', Meiryo, sans-serif;
  box-sizing: border-box;
  line-height: 1.75em;
  word-break: break-all;
}

body {
  width: 100%;
  height: 100%;
  font-size: 16px;
  color: #fff;
  background-color: #286DFF;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

#container {
  width: 100%;
  max-width: 1920px;
  min-height: 100vh;
  margin: 0 auto;
  background-color: #286DFF;
  background-size: 1920px auto;
  background-position: center top;
  background-repeat: no-repeat;
}
/* containerの背景振り分け */
.container-top {
  background-image: url(../img/back_top.jpg);
}
.container-movie {
  background-image: url(../img/back_movie.jpg);
}
.container-facility {
  background-image: url(../img/back_facility.jpg);
}
.container-detail {
  background-image: url(../img/back_detail.jpg);
}
@media all and (max-width: 1000px){
  #container {
    background-size: 192% auto;
  }
}

/* 共通部分 */
.inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
header {
  width: 100%;
  max-width: 1000px;
  padding-top: 2.75em;
  padding-left: 3%;
  padding-right: 3%;
  position: fixed;
  z-index: 99;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.head__top {
  font-size: 1.25em;
  text-shadow: 1px 1px 1px #286DFF;
}
.br475 {
  display: none;
}
.head__content {
  margin-top: -10px;
}
.head__content img {
  width: 310px;
}
#nav__hum-check {
  display: none;
}
.nav__menu li {
  display: inline-block;
}
.nav__menu a {
  font-size: 1.25em;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-left: 2em;
  text-shadow: 1px 1px 1px #286DFF;
}
.nav__menu a:hover,
.nav__menu a:focus {
  border-bottom: 1px solid #fff;
}
#main {
  padding-top: 120px;
}
.main__content {
  width: 94%;
  max-width: 1056px;
  margin: 0 auto;
  line-height: 1.6em;
}
footer {
  width: 94%;
  margin: 0 auto;
  padding: 24px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 0.85em;
}
.footer__contact p {
  margin-top: 1em;
  line-height: 1.4em;
}
.footer_sns {
  text-align: right;
  padding-top: 2.4em;
}
.footer_sns a {
  display: inline-block;
  margin-left: 2em;
}
.footer_sns p {
  margin-top: 1.2em;
}

.btn {
  text-align: center;
}
.btn_back {
  margin-top: 5em;
}
.btn_search {
  margin-bottom: 7em;
}
.btn_more {
  margin-bottom: 3em;
}
.btn a,
.btn input {
  display: inline-block;
  font-size: 1em;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  background: #FF8AD8;
  padding: 0.1em 2em 0.15em;
}
.btn a:hover,
.btn input:hover,
.btn a:active,
.btn input:active,
.btn a:focus,
.btn input:focus {
  color: #FF8AD8;
  background: #fff;
}
.not-found {
  font-size: 1.5em;
  text-align: center;
  padding: 4em 0;
}
@media all and (max-width: 900px){
  header {
    padding-top: 2em;
  }
  .head__top, .nav__menu a {
    font-size: 1.1em;
  }
  .nav__menu a {
    margin-left: 1.5em;
  }
}
@media all and (max-width: 750px){
  header {
    padding-top: 1.5em;
    display: block;
  }
  .head__top {
    font-size: 1em;
  }
  .head__content {
    margin-top: -5px;
  }
  .head__content img {
    width: 270px;
  }
  .nav__hum {
    position: fixed;
    top: 18px;
    right: 20px;
    width: 32px;
    height: 32px;
    transition: all .4s;
    pointer-events: all;
    display: inline-block;
    z-index: 10;
  }
  .nav__hum span {
    display: inline-block;
    width: 32px;
    height: 3px;
    background: #fff;
    position: absolute;
    transition: all .4s;
  }
  .nav__hum span:nth-of-type(1) {
    top: 9px;
  }
  .nav__hum span:nth-of-type(2) {
    top: 19px;
  }
  .nav__hum span:nth-of-type(3) {
    top: 29px;
  }
  .nav__menu {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #286DFF;
    width: 100%;
    transition: all .4s;
    transform: translateY(-110%);
    pointer-events: all;
    z-index: 5;
  }
  .nav__menu li {
    display: block;
    border-bottom: 1px solid #419DFF;
  }
  .nav__menu a {
    display: block;
    color: #fff;
    text-align: center;
    padding: 1.25em;
    margin: 0;
    text-shadow: none;
  }
  .nav__menu a:hover,
  .nav__menu a:active,
  .nav__menu a:focus {
    border-bottom: none;
    color: #286DFF;
    background: #fff;
  }
  #nav__hum-check:checked ~ .nav__menu {
    margin-top: 78px;
    transform: translateY(0);
  }
  #nav__hum-check:checked ~ .nav__hum span:nth-of-type(1) {
    transform: rotate(315deg);
    top: 18px;
  }
  #nav__hum-check:checked ~ .nav__hum span:nth-of-type(2) {
    opacity: 0;
  }
  #nav__hum-check:checked ~ .nav__hum span:nth-of-type(3) {
    transform: rotate(-315deg);
    top: 18px;
  }
  #nav__hum-check:checked ~ .nav__menu {
    visibility: visible;
    opacity: 1;
  }
  #main {
    padding-top: 80px;
  }
  .btn_back {
    margin-top: 3em;
  }
  .btn_search {
    margin-bottom: 4em;
  }
  .not-found {
    font-size: 1.25em;
  }
}
@media all and (max-width: 550px) {
  footer {
    display: block;
    font-size: 0.75em;
  }
  .footer_sns {
    text-align: left;
    padding-top: 2.4em;
  }
  .footer_sns a {
    margin-left: 0;
    margin-right: 2em;
  }
  .footer_sns p {
    margin-top: 0.5em;
  }
}
@media all and (max-width: 475px) {
  .head__top {
    margin-top: -0.5em;
    line-height: 1.4em;
  }
  .br475 {
    display: block;
  }
  .head__content img {
    width: 220px;
  }
}

/* トップページで使用 */
.swiper-container {
  width: 100%;
  max-width: 1000px;
  height: auto;
  padding-bottom: 75px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.swiper-pagination {
  width: 100%;
}
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 7px;
}
.swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
  margin: 0 7px;
}
.swiper-pagination-bullet-active {
  background: #FF8AD8;
}
.swiper-slide img {
  width: 100%;
  height: auto;
  border: 2px solid #fff;
  object-fit: cover;
}
.swiper-slide a {
  color: #fff;
  text-decoration: none;
}
.swiper-slide__title {
  padding-top: 1em;
  font-size: 1.2em;
  line-height: 1.3em;
}
.swiper-slide__facility {
  padding-top: 0.8em;
  font-size: 0.8em;
  line-height: 1.3em;
}
.top__logo {
  text-align: center;
  padding: 28px 0 100px;
}
.top__logo img {
  width: 82%;
  max-width: 817px;
  height: auto;
}
.top__explain {
  width: 94%;
  max-width: 740px;
  margin: 100px auto;
}
.top__explain img {
  width: 50%;
  margin-bottom: 2em;
}
.top__explain p {
  margin-top: 1em;
}
.top__explain a {
  font-weight: bold;
  color: #FF8AD8;
  text-decoration: none;
  border-bottom: 1px solid #FF8AD8;
}
.sfm-link {
  padding-top: 2em;
  text-align: center;
}
.sfm-link a {
  border: none;
}
.sfm-link a img {
  width: 100%;
  max-width: 440px;
  margin: 0;
}
.sfm-link a:hover, .sfm-link a:focus {
  opacity: 0.7;
}
@media all and (max-width: 750px) {
  .swiper-container {
    margin-bottom: 20px;
  }
  .top__logo {
    padding-right: 15px;
  }
  .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-bullet {
    margin: 0 5px;
  }
  .swiper-slide__title {
    font-size: 1em;
  }
  .swiper-slide__facility {
    font-size: 0.75em;
  }
  .top__explain {
    font-size: 0.9em;
  }
  .top__explain p {
    margin-top: 0.75em;
  }
}
@media all and (max-width: 475px) {
  .top__explain {
    font-size: 0.85em;
  }
  .top__explain br {
    display: none;
  }
}

/* 動画検索・施設一覧ページで使用 */
.list__title {
  font-size: 1.75em;
  text-align: center;
  padding-top: 350px;
  padding-bottom: 2.5em;
}
.list__form {
  width: 90%;
  max-width: 685px;
  margin: 0 auto 3em;
}
.list__select-flex {
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.list__select-box {
  position: relative;
  margin-bottom: 1.5em;
}
.list__select-flex .list__select-box {
  width: 31%;
}
.list__select-box--date {
  z-index: 10;
}
.list__select-box--facility {
  z-index: 7;
}
.list__select-box--genre {
  z-index: 5;
}
.list__select-item,
.list__select li,
.list__free-search {
  width: 100%;
  font-size: 1em;
  font-weight: bold;
  color: #286DFF;
  text-align: center;
  background: #fff;
  border: none;
  padding: 0.3em 2em;
  position: relative;
  cursor: pointer;
}
.list__select-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.75em;
  margin-top: -5px;
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  border: 10px solid transparent;
  border-top: 10px solid #286DFF;
}
.list__select {
  list-style: none;
  width: 100%;
  position: absolute;
  top: 2em;
}
.list__select li:hover,
.list__select li:focus {
  color: #fff;
  background: #286DFF;
}
.list__free-search {
  margin-bottom: 1.5em;
  background-image: url(../img/search.png);
  background-repeat: no-repeat;
  background-size: 1.5em auto;
  background-position: right 8px center;
}
input.list__free-search::placeholder {
  color: #286DFF;
}
input.list__free-search:-ms-input-placeholder {
  color: #286DFF;
}
input.list__free-search::-ms-input-placeholder {
  color: #286DFF;
}
.no-result {
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  padding: 2em 0 5em;
}
@media all and (max-width: 1000px) {
  .list__title {
    padding-top: 27vw;
  }
}
@media all and (max-width: 750px) {
  .list__title {
    font-size: 1.5em;
    padding-bottom: 1.5em;
  }
  .list__select-item,
  .list__select li,
  .list__free-search {
    font-size: 0.85em;
  }
  .list__select-item::after {
    right: 0.5em;
    margin-top: -4px;
    width: 8px;
    height: 8px;
    border: 8px solid transparent;
    border-top: 8px solid #286DFF;
  }
}
@media all and (max-width: 700px) {
  .list__select-flex {
    display: block;
  }
  .list__select-flex .list__select-box {
    width: 100%;
  }
}

/* 動画検索・記事ページで使用 */
.single__genre img {
  width: 38px;
  margin-right: 12px;
}
.footer__genre {
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 3em 0 5em;
}
.footer__genre li {
  padding: 0 10px;
}
.footer__genre img {
  border-bottom: 2px solid #fff;
  padding: 0 10px 7px;
}
.footer__genre span {
  display: block;
  text-align: center;
}
.footer__genre span.museum {
  letter-spacing: -0.1em;
  margin: 0 -0.75em 0 -1em;
}
.footer__genre span.museum > span {
  display: inline-block;
  letter-spacing: -0.25em;
  font-size: 1em;
}
@media all and (max-width: 750px) {
  .footer__genre {
    padding: 2em 0 4em;
  }
  .footer__genre li {
    padding: 0 5px;
  }
  .footer__genre li:first-child {
    padding-left: 0;
  }
  .footer__genre li:last-child {
    padding-right: 0;
  }
  .footer__genre span {
    font-size: 0.75em;
  }
}

/* 動画・施設を並べる際に使用 */
.flex__box {
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 3em;
}
.flex__box::after {
  content: "";
  display: block;
  width: 31%;
}
.flex__box-list {
  padding: 2em 0 10em;
}
.flex__box-facility {
  width: 48%;
  margin-top: 5em;
}
.flex__box-movie {
  width: 31%;
}
.flex__box-movie a {
  color: #fff;
  text-decoration: none;
}
.flex__box-movie .flex__box-image {
  width: 100%;
  border: 2px solid #fff;
}
.flex__box-movie .flex__box-title {
  line-height: 1.3em;
  padding: 1em 0;
  margin-bottom: 1em;
}
.flex__box-movie .flex__box-title span {
  display: inline-block;
  font-size: 0.8em;
  padding-top: 0.5em;
}
.flex__box-movie .flex__box-title .movie__genre {
  display: -ms-flexbox;
  display: flex;
  max-width: 260px;
}
.movie__genre img {
  width: 47px;
  height: 47.5px;
  padding: 5px 0;
  padding-right: 6%;
}
.search_parameter {
  font-size: 0;
}
@media all and (max-width: 750px) {
  .flex__box {
    margin-bottom: 2em;
  }
  .flex__box-list {
    padding-top: 0;
  }
  .flex__box-movie {
    width: 47%;
  }
  .flex__box-facility {
    width: 100%;
    margin-top: 3em;
  }
}
@media all and (max-width: 475px) {
  .flex__box {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .flex__box-movie {
    width: 85%;
  }
}


/* 施設一覧・記事ページで使用 */
.single__content p {
  margin-bottom: 1em;
}
.single__title {
  font-size: 2em;
  line-height: 1.4em;
  padding: 1.5em 0 0.75em;
}
.single_youtube {
  border: 2px solid #fff;
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  margin-bottom: 2em;
}
.single_youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.font__large {
  font-size: 1.2em;
}
.single__width70 {
  width: 100%;
  max-width: 720px;
}
.single__width70 a {
  color: #FF8AD8;
}
.single__hr {
  border: none;
  border-bottom: 1px solid #fff;
  margin: 2em 0;
}
.facility__dl dt {
  float: left;
  clear: both;
}
.facility__dl dd {
  min-height: 1.75em;
  margin-left: 4.5em;
  display: block;
}
.facility__dt-space--web {
  letter-spacing: 0.22em;
}
.facility__dt-space--sns {
  letter-spacing: 0.27em;
}
.facility__dd-web a {
  color: #FF8AD8;
}
.facility__dd-facebook a,
.facility__dd-twitter a,
.facility__dd-instagram a {
  display: inline-block;
  color: #fff;
  line-height: 25px;
  text-decoration: none;
  padding-left: 25px;
  background-repeat: no-repeat;
  background-size: 19px 19px;
  background-position: left bottom;
}
.facility__dd-facebook a {
  background-image: url(../img/sns_facebook.png);
}
.facility__dd-twitter a {
  background-image: url(../img/sns_twitter.png);
}
.facility__dd-instagram a {
  background-image: url(../img/sns_instagram.png);
}
.relate__title {
  font-size: 1.5em;
  margin: 3em 0 1em;
}

@media all and (max-width: 750px) {
  .single__title {
    font-size: 1.5em;
  }
  .font__large {
    font-size: 1.05em;
  }
  .font__small {
    font-size: 0.85em;
  }
  .relate__title {
    font-size: 1.25em;
  }
}
