@charset "UTF-8";
/* import */
/* カラー */
/* レスポンシブ */
/*****STANDART CSS******/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var,
video {
  margin: 0;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /******SMOOTH SCROLL ANCHOR******/
}

/*****STANDART CSS******/
/* ---------common--------- */
body {
  margin: 0;
  font-family: YuGothic, "Yu Gothic", sans-serif;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

video {
  width: 100%;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

/* パンくずリスト */
.bread {
  width: 100%;
}
.bread .inner {
  margin-bottom: 0 !important;
  padding-top: 0 !important;
}
.bread ul {
  display: flex;
}
.bread ul li {
  padding: 5px;
}
.bread ul li a {
  transition: 0.15s;
}
@media (max-width: 599px) {
  .bread ul li a {
    font-size: 14px;
  }
}
.bread ul li a:hover {
  opacity: 0.7;
}
.bread ul li:after {
  content: ">";
  margin-left: 10px;
  margin-right: 10px;
}
.bread ul li:last-child:after {
  content: "";
}

/* flex */
.row {
  display: flex;
  flex-wrap: wrap;
}

.between {
  justify-content: space-between;
}

.align_start {
  align-items: flex-start;
}

.align_center {
  align-items: center;
}

.align_end {
  align-items: flex-end;
}

.flex_center {
  justify-content: center;
}

.flex_start {
  justify-content: flex-start;
}

.flex_end {
  justify-content: flex-end;
}

.stretch {
  align-items: stretch;
}

.reverse {
  flex-direction: row-reverse;
}

/* inner */
.inner {
  width: 1000px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .inner {
    width: 90%;
  }
}

/* display */
@media (max-width: 599px) {
  .sp_dn {
    display: none;
  }
}

.sp_db {
  display: none;
}
@media (max-width: 599px) {
  .sp_db {
    display: block;
  }
}

@media (max-width: 768px) {
  .tab_dn {
    display: none;
  }
}

.tab_db {
  display: none;
}
@media (max-width: 768px) {
  .tab_db {
    display: block;
  }
}

section {
  padding: 50px 0;
}

.top_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  transition: 0.3s;
  opacity: 0;
}
@media (max-width: 599px) {
  .top_btn {
    bottom: 90px;
    right: 23px;
  }
}
.top_btn .top_btn_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.top_btn img {
  width: 50%;
  margin: 0 auto 3px;
  display: block;
}
.top_btn p {
  text-align: center;
  white-space: nowrap;
  color: #fff;
}

.top_btn.active {
  opacity: 1;
}

.cta_btn {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 10px 0;
  display: none;
}
@media (max-width: 599px) {
  .cta_btn {
    display: block;
  }
}
.cta_btn .cta_btn_item {
  background-color: #fff;
  width: 48%;
  text-align: center;
  font-size: 24px;
  padding: 10px 0;
  border-radius: 20px;
}
.cta_btn .cta_btn_item.line_bg {
  background-color: #06c755;
  font-size: 24px;
  padding-top: 7px;
}
.cta_btn .cta_btn_item.line_bg img {
  width: 24px;
}
.cta_btn .cta_btn_item img {
  width: 18px;
  margin-right: 5px;
  vertical-align: middle;
  margin-bottom: 3px;
}

.commmon_mv {
  position: relative;
}
.commmon_mv h2 {
  position: absolute;
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  border-radius: 20px;
  padding: 10px 20px;
  color: #fff;
}
.commmon_mv.page_point h2 {
  background-color: #fff;
}
@media (max-width: 768px) {
  .commmon_mv.page_point h2 {
    width: 75%;
  }
}
@media (max-width: 599px) {
  .commmon_mv.page_point h2 {
    width: 90%;
  }
}

.mb_0 {
  margin-bottom: 0 !important;
}

/* 下層ページ共通 */
/* header */
header {
  padding: 20px 0;
}
header .logo {
  max-width: 250px;
  width: 100%;
}
@media (max-width: 599px) {
  header .logo {
    max-width: 200px;
  }
}
@media (max-width: 599px) {
  header .tel {
    width: 100%;
  }
}

/* footer */
footer {
  background-color: #888;
  padding: 50px 0 0;
}
@media (max-width: 768px) {
  footer .footer_row {
    justify-content: center;
  }
}
footer .logo {
  max-width: 450px;
  width: 100%;
}
footer .tel a {
  background-color: #4D15BE;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 10px;
  margin-bottom: 10px;
}
@media (max-width: 599px) {
  footer .tel a {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
  }
}
footer .tel a span {
  font-size: 16px;
}
footer .tel p {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
}
@media (max-width: 768px) {
  footer .tel p {
    text-align: center;
  }
}
footer .copyright {
  margin-top: 20px;
  text-align: center;
  padding-bottom: 20px;
}
footer .copyright p {
  color: #fff;
}
footer .copyright p a {
  color: #fff;
}

/* top */
.movie {
  padding: 0 0 80px;
}
.movie .wp-pagenavi {
  text-align: center;
}
.movie .movie_ttl {
  background-color: #4D15BE;
  padding: 20px;
  color: #fff;
  font-size: 24px;
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .movie .movie_ttl {
    padding: 10px;
    font-size: 18px;
  }
}
.movie .movie_select {
  margin-bottom: 30px;
}
.movie .movie_select .select_item {
  margin-right: 10px;
}
.movie .movie_select .select_item:last-child {
  margin-right: 0;
  margin-left: 20px;
}
@media (max-width: 599px) {
  .movie .movie_select .select_item:last-child {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
  .movie .movie_select .select_item:last-child .row {
    justify-content: center;
  }
}
@media (max-width: 599px) {
  .movie .movie_select .select_item_cast,
  .movie .movie_select .select_item_genre {
    width: 100%;
    margin-bottom: 10px;
  }
  .movie .movie_select .select_item_cast p,
  .movie .movie_select .select_item_genre p {
    width: 30%;
  }
  .movie .movie_select .select_item_cast select,
  .movie .movie_select .select_item_genre select {
    width: 70%;
  }
}
.movie .movie_select #select_search,
.movie .movie_select #select_clear {
  padding: 2px 15px;
  border-color: #000;
  border-radius: 3px;
  cursor: pointer;
}
.movie .movie_select #select_search {
  background-color: #c2e6ec;
  font-size: 16px;
  margin-right: 10px;
}
.movie .movie_select #select_clear {
  background-color: #faddf6;
}
.movie .movie_list::after {
  content: "";
  width: 32%;
}
.movie .movie_list .movie_item {
  width: 32%;
  margin-bottom: 30px;
  background-color: #000;
}
@media (max-width: 599px) {
  .movie .movie_list .movie_item {
    width: 100%;
    margin-bottom: 30px;
  }
}
.movie .movie_list .movie_item .movie_img {
  cursor: pointer;
  position: relative;
}
.movie .movie_list .movie_item .movie_img .movie_btn {
  position: absolute;
  width: 18%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.movie .movie_list .movie_item .movie_img .movie_btn img {
  height: auto;
}
.movie .movie_list .movie_item .movie_img img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.movie .movie_list .movie_item .movie_img video {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 599px) {
  .movie .movie_list .movie_item .movie_img video {
    height: 150px;
  }
}
.movie .movie_list .movie_item .movie_textarea {
  background-color: #000;
  color: #fff;
  padding: 10px;
}
.movie .movie_list .movie_item .movie_textarea .movie_textarea_row {
  margin-bottom: 10px;
}
.movie .movie_list .movie_item .movie_textarea .movie_category {
  flex-wrap: wrap;
  display: flex;
}
.movie .movie_list .movie_item .movie_textarea .movie_category p {
  color: #fff;
  background-color: #ac58fa;
  padding: 3px 10px;
  border-radius: 3px;
  margin-right: 10px;
}
.movie .movie_list .movie_item .movie_popup {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 0;
}
.movie .movie_list .movie_item .movie_popup video {
  max-width: 320px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}
@media (max-width: 599px) {
  .movie .movie_list .movie_item .movie_popup video {
    width: 90%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    max-height: 500px;
    background: #000;
    margin-bottom: -1px;
  }
}
.movie .movie_list .movie_item .movie_popup .movie_spec {
  max-width: 320px;
  width: 100%;
  padding: 20px;
  background-color: #000;
  color: #fff;
}
@media (max-width: 599px) {
  .movie .movie_list .movie_item .movie_popup .movie_spec {
    width: 90%;
  }
}
.movie .movie_list .movie_item .movie_popup .movie_spec h3 {
  font-size: 24px;
  color: #ac58fa;
}
.movie .movie_list .movie_item .movie_popup .movie_spec .date {
  margin-bottom: 10px;
}
.movie .movie_list .movie_item .movie_popup .movie_spec .date p {
  font-size: 12px;
}
.movie .movie_list .movie_item .movie_popup .close {
  cursor: pointer;
  width: 30px;
  position: absolute;
  top: 30px;
  right: 30px;
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi p {
  cursor: pointer;
  margin-right: 20px;
  font-size: 18px;
  transition: 0.3s;
}
.wp-pagenavi p:last-child {
  margin-right: 0;
}
.wp-pagenavi p:hover {
  color: #ac58fa;
}
.wp-pagenavi p.active {
  color: #ac58fa;
  font-weight: bold;
}/*# sourceMappingURL=style.css.map */