@charset "UTF-8";
/*
*
* Copyright (c) 2016, AD Line Inc. All rights reserved.
* Data : 2016.04.20
*
*/
/* Googleフォント　Noto Sans,Robot,Open Sans */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
/* アイコンフォント　Google Material,Font Awesome */
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css);
/*****************************************************

 SCSS用
 
*****************************************************/
/*****************************************************

 Common - Layout
 
*****************************************************/
html {
  font-size: 10px;
}

body {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  position: relative;
  width: auto;
  height: auto;
  min-width: 1240px;
  color: #333333;
  font-size: 1.6rem;
  line-height: 1.65;
  letter-spacing: 0.5px;
  background: #fff;
}

@media screen and (max-width: 896px) {
  body {
    min-width: auto;
    font-size: 1.4rem;
  }
}
.inner {
  position: relative;
  width: 1240px;
  margin: 0 auto;
}

@media screen and (max-width: 896px) {
  .inner {
    width: 96%;
    margin: 0 2%;
  }
}
.content_box {
  position: relative;
  width: 100%;
  height: auto;
  padding: 120px 0;
}
.content_box.bg_introduction {
  padding-bottom: 0;
  background: url("../images/bg_cloud.png") no-repeat, linear-gradient(0deg, rgba(179, 179, 179, 0) 0%, rgba(179, 179, 179, 0.7) 100%);
  background-position: top center;
  background-size: 100% auto , auto;
}
.content_box.bg_bottom {
  padding-bottom: 640px;
  background: url("../images/bg_bottom.png") no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
}

@media screen and (max-width: 896px) {
  .content_box {
    padding: 48px 0;
  }
  .content_box.bg_bottom {
    padding-bottom: 180px;
  }
}
/* PC/SP 表示・非表示
----------------------------------------------------*/
/*PCでは表示しない*/
@media screen and (min-width: 897px) {
  .pc_none {
    display: none !important;
  }
}
/*SPでは表示しない*/
@media screen and (max-width: 896px) {
  .sp_none {
    display: none !important;
  }
}
/*****************************************************

 Common - Parts
 
*****************************************************/
/*　画像
----------------------------------------------------*/
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  margin: 0;
  padding: 0;
}

/*　リンク
----------------------------------------------------*/
a {
  text-decoration: none;
  color: #0071bc;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

/* 見出し
----------------------------------------------------*/
.content_title {
  margin-bottom: 80px;
  font-size: 3.8rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (max-width: 896px) {
  .content_title {
    margin-bottom: 32px;
    font-size: 2.6rem;
  }
}
/*****************************************************

 Template - Header
 
*****************************************************/
.global_header {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("../images/main_image.png") no-repeat, #000;
  background-position: bottom center;
  background-size: cover;
}
.global_header .logo {
  position: absolute;
  top: 26.4%;
  left: 12.4%;
  width: 35.4%;
  height: 0;
  padding-bottom: 12.9%;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../images/logo.png") no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0px 0 8px rgba(255, 255, 255, 0.8));
}
.global_header .header_copy {
  position: absolute;
  top: 7.2%;
  right: 8.1%;
  width: 4%;
  height: 0;
  padding-bottom: 26%;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../images/header_copy.png") no-repeat;
  background-position: center;
  background-size: contain;
}

@media screen and (max-width: 896px) {
  .global_header {
    width: 100%;
    height: 400px;
  }
  .global_header .logo {
    position: absolute;
    top: 32.6%;
    left: 5%;
    width: 196px;
    height: 71px;
    padding-bottom: 0;
  }
  .global_header .header_copy {
    position: absolute;
    top: 7.2%;
    right: 8.1%;
    width: 34px;
    height: 224px;
    padding-bottom: 0;
  }
}
/* movie_info_wrap
----------------------------------------------------*/
.movie_info_wrap {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: auto;
  padding: 80px 0;
  color: #fff;
  text-align: center;
  background: #000;
}
.movie_info_wrap p {
  font-size: 2.0rem;
}
.movie_info_wrap dl {
  font-size: 1.8rem;
}
.movie_info_wrap dl dt {
  margin-top: 24px;
  font-size: 2.3rem;
}
.movie_info_wrap dl dd {
  margin-top: 24px;
}
.movie_info_wrap dl dd + dd {
  margin-top: 6px;
}
.movie_info_wrap dl dd .icon {
  display: inline-block;
  margin: 0 10px 0 16px;
  vertical-align: sub;
}

@media screen and (max-width: 896px) {
  .movie_info_wrap {
    padding: 40px 0;
  }
  .movie_info_wrap p {
    font-size: 1.5rem;
  }
  .movie_info_wrap dl {
    font-size: 1.2rem;
  }
  .movie_info_wrap dl dt {
    margin-top: 32px;
    font-size: 1.6rem;
  }
  .movie_info_wrap dl dd {
    margin-top: 16px;
  }
  .movie_info_wrap dl dd + dd {
    margin-top: 6px;
  }
  .movie_info_wrap dl dd .icon {
    width: 20px;
    height: auto;
    margin: 0 6px 0 12px;
  }
}
/*****************************************************

 Template - Footer
 
*****************************************************/
.global_footer {
  position: relative;
  width: 100%;
  height: auto;
  padding: 24px 0;
  background: url("../images/bg_red.jpg");
}
.global_footer .copyright {
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
}

@media screen and (max-width: 896px) {
  .global_footer {
    padding: 12px 0;
  }
  .global_footer .copyright {
    font-size: 1.3rem;
  }
}
/*****************************************************

 Page - Home
 
*****************************************************/
/* road_show_box
----------------------------------------------------*/
.road_show_box {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: auto;
  padding: 16px 0 26px;
  color: #fff;
  text-align: center;
  background: url("../images/bg_red.jpg");
}
.road_show_box .road_show_box_text {
  font-size: 3.4rem;
  line-height: 1.4;
}
.road_show_box .road_show_box_text .font_b {
  font-size: 5.8rem;
}
.road_show_box .road_show_box_text .font_sb {
  font-size: 4.2rem;
}

@media screen and (max-width: 896px) {
  .road_show_box {
    padding: 16px 0;
  }
  .road_show_box .road_show_box_text {
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .road_show_box .road_show_box_text .font_b {
    font-size: 2.2rem;
  }
  .road_show_box .road_show_box_text .font_sb {
    font-size: 1.8rem;
  }
}
/* youtube_box
----------------------------------------------------*/
.youtube_box {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.youtube_box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* introduction_copy
----------------------------------------------------*/
.introduction_copy {
  font-size: 6.0rem;
  text-align: center;
  font-weight: 600;
  line-height: 1.5;
}
.introduction_copy span {
  display: block;
  color: #b11e23;
}

@media screen and (max-width: 896px) {
  .introduction_copy {
    font-size: 2.0rem;
  }
}
/* introduction_letter_box
----------------------------------------------------*/
.introduction_letter_box {
  position: relative;
  margin-top: 24px;
}
.introduction_letter_box img {
  display: block;
  width: 100%;
  height: auto;
}

/* introduction_btm_text , introduction_btm_note_text
----------------------------------------------------*/
.introduction_btm_text {
  text-align: center;
  font-size: 2.65rem;
}
.introduction_btm_text + .introduction_btm_text {
  margin-top: 24px;
}

.introduction_btm_note_text {
  margin-top: 40px;
  text-align: center;
  color: #4d4d4d;
}

@media screen and (max-width: 896px) {
  .introduction_btm_text {
    font-size: 1.4rem;
  }
  .introduction_btm_text + .introduction_btm_text {
    margin-top: 16px;
  }

  .introduction_btm_note_text {
    margin-top: 24px;
    font-size: 1.2rem;
  }
}
/* box_kinjitsu
----------------------------------------------------*/
.box_kinjitsu {
  box-sizing: border-box;
  position: relative;
  width: 560px;
  height: auto;
  margin: 120px auto 0;
  padding: 10px 8px 14px;
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  background: #fff;
  border: 1px #b11e23 solid;
  line-height: 1.2;
}

@media screen and (max-width: 896px) {
  .box_kinjitsu {
    width: 340px;
    height: auto;
    margin: 40px auto 0;
    padding: 10px 8px;
    font-size: 2.2rem;
  }
}
/* theater_area_wrap
----------------------------------------------------*/
.theater_area_wrap {
  position: relative;
  width: 100%;
  height: auto;
}
.theater_area_wrap + .theater_area_wrap {
  margin-top: 40px;
}
.theater_area_wrap .theater_area_title {
  margin-bottom: 24px;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.4;
}

/* tbl_theater
----------------------------------------------------*/
.tbl_theater {
  position: relative;
  width: 100%;
  height: auto;
  border-collapse: separate;
  border-spacing: 2px;
}
.tbl_theater tbody tr {
  position: relative;
}
.tbl_theater tbody tr th {
  padding: 16px 8px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  background: #ecaba6;
}
.tbl_theater tbody tr td {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  padding: 18px 8px;
  font-size: 1.6rem;
  text-align: center;
  background: #f2f2f2;
}
.tbl_theater tbody tr td.w_area {
  width: 10%;
}
.tbl_theater tbody tr td.w_theater {
  width: 22.5%;
}
.tbl_theater tbody tr td.w_phone {
  width: 22.5%;
}
.tbl_theater tbody tr td.w_date {
  width: 45%;
}

/* footer_contact_btn
----------------------------------------------------*/
.footer_contact_btn {
  position: relative;
  margin-top: 40px;
}
.footer_contact_btn a {
  box-sizing: border-box;
  display: block;
  width: 560px;
  height: auto;
  margin: 0 auto;
  padding: 20px 8px 22px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #333333;
  text-align: center;
  background: #ecaba6;
}

@media screen and (max-width: 896px) {
  .footer_contact_btn {
    margin-top: 24px;
  }
  .footer_contact_btn a {
    width: 340px;
    height: auto;
    padding: 18px 8px;
    font-size: 1.4rem;
  }
}
