@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100&display=swap') ;
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Averia+Serif+Libre:wght@300&display=swap');
* {
  margin: 0;
  padding: 0;
  -webkit-backface-visibility: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: none;
  background: transparent;
  font-size: 62.5%;
}
body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 16px;
  font-size: 1.6em;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", 'Hiragino Kaku Gothic Pro', "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Osaka", verdana, sans-serif;
  line-height: 1.8;
  font-weight: 400;
  background: #fff;
  letter-spacing: 0.02em;
  color: #231815;
  word-break: break-all;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  padding: 0;
  margin: 0;
}
ul, ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
p {
  padding: 0;
  margin: 0;
}
img {
  -webkit-touch-callout: none;
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom;
  width: 100%;
  height: auto;
}
a {
  text-decoration: underline;
  color: #000;
  outline: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
a:active, a:hover, a:focus {
  outline: none;
}
a:hover {
  filter: alpha(opacity=60);
  -moz-opacity: .6;
  opacity: .6;
}
table {
  border-collapse: collapse;
}
.fadeIn {
  opacity: 0;
  transform: translateY(20px);
  transition: 1s;
}
.font {
  font-family: "zen-old-mincho" !important;
}
.br-sp {
    display: none;
  }
/*--------------------------------------
 * コンテンツ
 * ---------------------------------------*/
.wrapper {}
.container {
  width: 1000px;
  margin: 0 auto;
  padding-top: 3.5em;
  padding-bottom: 3.5em;
}
.bg_gray {
  background: #f2f2f0;
}
h2 {
  background: url("../images/common/icon_h2.png") no-repeat left center;
  background-size: 50px;
  padding-left: 74px;
  font-size: 2.8em;
  color: #958f8c;
  margin-bottom: 30px;
  font-family: "shippori-antique", 'Averia Serif Libre', cursive;
}
p {
  word-break: break-all;
  font-family: 'Roboto Condensed', "Helvetica", "游ゴシック", YuGothic, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Arial, sans-serif;
  line-height: 1.8;
}
/*--------------------------------------
 * ヘッダー
 * ---------------------------------------*/
.header_container {
  width: 1000px;
  margin: 0 auto;
}
header h1 {
  font-size: 2em;
}
header h1.mainVisual {
  text-align: center;
}
.header_sns_list {
  display: block;
  text-align: center;
  font-size: 2em;
}
.header_sns_list li {
  display: inline-block;
  padding-right: 10px;
}

/*--------------------------------------
 * NEWS
 * ---------------------------------------*/
#news {
  position: relative;
}
#news dl.news__item dt {
  color: #b83948;
  display: inline-block;
  width: 120px;
  font-family: 'Noto Sans JP', sans-serif;
  vertical-align: top;
}
#news p.btn {
  text-align: right;
}
#news dl.news__item dd {
  color: #231815;
  display: inline-block;
}
#news dl.news__item {
  margin-bottom: 0.5em;
}
#news dl.news__item:last-of-type {
  margin-bottom: 0;
}
#news dl.news__item a {
  text-decoration: none;
}
/*NEWS アーカイブ*/
.animated {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes slideDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.slide-down {
  -webkit-animation-name: slideDown;
  animation-name: slideDown;
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes slideUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
.slide-up {
  -webkit-animation-name: slideUp;
  animation-name: slideUp;
}
.archive_news {
  height: 100px;
  overflow: hidden;
  position: relative;
  margin: 0;
}
.close-btn, .news_more_btn {
  text-align: center;
  width: 100%;
  background: -moz-linear-gradient(to bottom, rgba(242, 242, 240, 1) 0%, rgba(242, 242, 240, 1) 80%);
  background: -webkit-linear-gradient(to bottom, rgba(242, 242, 240, 1) 0%, rgba(242, 242, 240, 1) 80%);
  background: linear-gradient(to bottom, rgba(242, 242, 240, 1) 0%, rgba(242, 242, 240, 1) 80%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
  display: block;
  height: auto;
  position: absolute;
  bottom: 0;
}
.news_more_btn p {
  color: #FFFFFF;
  vertical-align: middle;
  text-decoration: none;
  display: block;
  width: 85px;
  height: 85px;
  background: #b83948;
  border-radius: 50%;
  transition: .4s;
  line-height: 5;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
  margin: 0 auto;
  margin-top: 20px;
}
.contents.news .news_more_btn .open {
  display: block;
}
.slide-up {
  height: 100px;
  padding-bottom: 0;
  overflow: hidden;
}
.slide-down {
  height: auto;
  overflow: visible;
  padding-bottom: 100px;
}
/*--------------------------------------
 * kazemachi_channel
 * ---------------------------------------*/
#kazemachi_channel img {}
#kazemachi_channel p.intro {
  margin-bottom: 3em;
}
#kazemachi_channel .trailer {
  margin-bottom: 3em;
}
#kazemachi_channel .trailer .ttl-trailer {
  font-weight: 500;
  text-align: center;
  margin: 0.5em 0;
  font-size: 95%;
}
#kazemachi_channel .trailer a {
  display: block;
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  width: auto;
  height: 451px;
  background-size: 800px auto;
}
#kazemachi_channel .trailer a .play {
  width: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#kazemachi_channel .thumbnail {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
#kazemachi_channel .thumbnail:before {
  content: "";
  display: block;
  width: 50%;
  order: 1;
}
/* 2カラム */
#kazemachi_channel .thumbnail li.two .trailer a {block;position: relative;background-repeat: no-repeat;background-position: center center;width: 100%;height: 277px;background-size: 490px auto;}
#kazemachi_channel .thumbnail li.two,
#kazemachi_channel .thumbnail li.two.main_s{
  width: 48%;
  margin-bottom: 30px;
}
#kazemachi_channel .thumbnail li.two.movie {
    width: 800px;
    margin: 0 auto 40px;
}
#kazemachi_channel li.two .trailer {
    margin-bottom: 1em;
  }
/* pick up */
#kazemachi_channel .thumbnail li.two.main {
    width: 70%;
    margin: 0 auto 40px;
}
#kazemachi_channel .thumbnail li.two .inner {
  text-align: center;
}
#kazemachi_channel .thumbnail li.two .ttl {
  background: #b83948;
  text-align: center;
  font-weight: bold;
  color: #FFFFFF;
  margin-bottom: 10px;
}
#kazemachi_channel .thumbnail li.two .thum {
  position: relative;
  width: 100%;
  background-position: center top;
  background-size: cover;
  margin-bottom: 10px;
}
#kazemachi_channel .thumbnail li.two .cont {
  font-size: 0.9em;
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 20px;
  font-weight: 300;
}
#kazemachi_channel .thumbnail li.two .cont .info {
  border-bottom: #b83948 6px double;
  font-weight: 500;
  padding: 3px 6px;
  display: block;
  margin-bottom: 10px;
  font-size: 1.2em;
  letter-spacing: 0.5ex;
}
#kazemachi_channel .thumbnail li.two .subttl {
  font-weight: 500;
  color: #b83948;
  font-size: 130%;
  line-height: 1.6;
}

#kazemachi_channel h3.ttl_s {
  font-size: 1.5em;
  margin-bottom: 1em;
  line-height: 2;
  font-weight: bold;
  background: #b83948;
  color: #ffffff;
  text-align: center;
}
#kazemachi_channel .more_btn {
  color: #FFFFFF;
  vertical-align: middle;
  text-decoration: none;
  display: inline-block;
  width: 85px;
  height: 85px;
  background: #b83948;
  border-radius: 50%;
  text-align: center;
  line-height: 5;
  font-family: 'Noto Sans JP', sans-serif;
}

/*配信終了*/
#kazemachi_channel .thumbnail li.two.end .cont .info {
  border-bottom: #AAAAAA 6px double;
}
#kazemachi_channel .thumbnail li.two.end .subttl {
  color: #333333;
  font-size: 100%;
}
#kazemachi_channel .end h3.ttl_s {
  background: #666666;
}
#kazemachi_channel .end .more_btn {
  background: #666666;
}
/*--------------------------------------
 * kazemachi_channel_detail
 * ---------------------------------------*/
#kazemachi_channel_detail .detail li {
  margin-bottom: 5em;
}
#kazemachi_channel_detail .detail li .two{
	display: flex;
	justify-content: space-between;
}
#kazemachi_channel_detail .detail li .two img{
	width: 50%;
}
#kazemachi_channel_detail .detail li:last-child {
  margin-bottom: 0;
}
#kazemachi_channel_detail h3 {
  background: #b83948;
  color: #ffffff;
  text-align: center;
}
#kazemachi_channel_detail h3 {
  font-size: 2em;
  margin-bottom: 1em;
  font-family: "zen-old-mincho" sans-serif;
  line-height: 1.4;
}
#kazemachi_channel_detail h3.ttl_l_r {
  padding: 14px 5px 10px;
  font-weight: bold;
}
#kazemachi_channel_detail h3.ttl_l {
  padding: 10px;
}
#kazemachi_channel_detail h3.ttl_l_r rt {
  font-size: 8px;
}
#kazemachi_channel_detail img {
  margin-bottom: 2em;
}
#kazemachi_channel_detail .detail dt {
  color: #b83948;
  font-weight: bold;
  margin-bottom: 8px;
  padding: 0;
  width: 20%;
  clear: both;
  float: left;
  line-height: 2;
}
#kazemachi_channel_detail .detail dd {
  margin-bottom: 1.5em;
  padding: 0em 0 0 0.6em;
  float: left;
  font-weight: 500;
  width: 80%;
}
#kazemachi_channel .detail dd:last-of-type {
  margin-bottom: 0;
}
.btn-ticket {
  display: inline-block;
  padding: 7px 40px;
  border-radius: 50px;
  text-decoration: none;
  color: #FFF;
  background-image: linear-gradient(45deg, #b83948 0%, #b83948 100%);
  transition: .4s;
  font-weight: bold;
  font-size: 1.4em;
}
/*--------------------------------------
 * profile
 * ---------------------------------------*/
#profile .container .contents {
  display: table;
}
#profile .profile_img {
  width: 250px;
  display: table-cell;
  vertical-align: top;
  padding-right: 20px;
}
#profile .profile_txt {
  vertical-align: top;
}
/*--------------------------------------
 * banner/sns
 * ---------------------------------------*/
.sns_container{
	padding-top: 2em;
	padding-bottom: 2em;
}
.banner_area {
    text-align: center;
    margin-bottom: 1.5em;
	padding-left: 1em;
	padding-right: 1em;
}
.banner_area img {
    max-width: 400px;
    border: 1px solid;
}
.sns_list {
  display: block;
  text-align: center;
  font-size: 2em;
  line-height: 0;
}
.sns_list li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
/*--------------------------------------
 * footer
 * ---------------------------------------*/
footer {
  background: #231815;
}
.footer_container {
  width: 1000px;
  margin: 0 auto;
  padding: 30px 15px;
}
footer .copyright {
  font-size: 0.8em;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
}
/*--------------------------------------
 * モーダルウィンドウ
 * ---------------------------------------*/
div.pro {
  display: inline-block;
  border-bottom: 0px;
  line-height: 1.0em;
  text-decoration: underline;
  color: #000;
}
.lock {
  overflow: hidden;
}
.modal-content {
  font-size: 1.0em;
  letter-spacing: 0.003em;
  position: relative;
  display: none;
  background: #fff;
   overflow: auto; 
  z-index: 1001;
  width: 750px;
  -ms-width: 45%;
  margin: 50px 0 50px;
  padding: 78px 60px 74px;
  border: 3px solid #b83948;
  -ms-transform: translateY(0px) translateX(60%);
  -ms-zoom: 90%;
}
.modal-content .modal_img {
  float: left;
}
.modal-content .cap {
  font-size: 0.8em;
  display: inherit;
}
.modal-content p {
  margin: 0;
  padding: 0;
}
.modal-overlay {
  z-index: 1000;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(255, 255, 255, 0.75);
  margin: 0;
  padding: 0;
}
.modal-wrap {
  z-index: 1001;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  margin: 0;
  padding: 0;
  -ms-text-align: left;
}
.modal-open {
  color: rgba(48, 55, 118, 1); /*#303776 紺色*/
  text-decoration: none;
}
.modal-open:hover {
  color: rgba(48, 55, 118, 0.5); /*#303776 紺色*/
  text-decoration: none;
}
.modal-open img {
  margin-top: -5px;
}
.modal-open:hover img {
  opacity: 0.5;
}
.pro_img {
  margin: 0 20px 20px 0;
  width: 200px;
}
.pro_img_large {
  margin: 0 20px 20px 0;
  width: 200px;
}
.modal-close img {
  float: right;
  margin-top: -60px;
  margin-right: -46px;
  width: 50px;
}
.modal-open:hover {
  cursor: pointer;
}
.modal-close {
  text-decoration: underline;
  right: 5px;
}
.modal-close:hover {
  cursor: pointer;
}
p.profile {
  color: #231815;
  letter-spacing: 0.02em;
  line-height: 1.7em;
  font-size: 0.9em;
}
/*--------------------------------------
 * 調整用
 * ---------------------------------------*/
/*--  float  --*/
.fl_l {
  float: left;
}
.fl_r {
  float: right;
}
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}
.clearBoth {
  clear: both;
}
/*--  text-align  --*/
.ta_c {
  text-align: center !important;
  display: block;
}
.ta_l {
  text-align: left !important;
  display: block;
}
.ta_r {
  text-align: right !important;
  display: block;
}
/*--  text-weight  --*/
.bold {
  font-weight: bold;
}
/*--  text-color  --*/
.red {
  color: red;
}
/*--  margin-top  --*/
.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;
}
.mt60 {
  margin-top: 60px !important;
}
/*--  margin-right  --*/
.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;
}
.mr40 {
  margin-right: 40px !important;
}
.mr50 {
  margin-right: 50px !important;
}
.mr60 {
  margin-right: 60px !important;
}
/*--  margin-left  --*/
.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;
}
.ml40 {
  margin-left: 40px !important;
}
.ml50 {
  margin-left: 50px !important;
}
.ml60 {
  margin-left: 60px !important;
}
/*--  margin-bottom  --*/
.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;
}
.mb60 {
  margin-bottom: 60px !important;
}
/*--  padding-top  --*/
.pt5 {
  padding-top: 5px !important;
}
.pt10 {
  padding-top: 10px !important;
}
.pt15 {
  padding-top: 15px !important;
}
.pt20 {
  padding-top: 20px !important;
}
.pt25 {
  padding-top: 25px !important;
}
.pt30 {
  padding-top: 30px !important;
}
.pt40 {
  padding-top: 40px !important;
}
.pt50 {
  padding-top: 50px !important;
}
.pt60 {
  padding-top: 60px !important;
}
/*--  padding-right  --*/
.pr5 {
  padding-right: 5px !important;
}
.pr10 {
  padding-right: 10px !important;
}
.pr15 {
  padding-right: 15px !important;
}
.pr20 {
  padding-right: 20px !important;
}
.pr25 {
  padding-right: 25px !important;
}
.pr30 {
  padding-right: 30px !important;
}
.pr40 {
  padding-right: 40px !important;
}
.pr50 {
  padding-right: 50px !important;
}
.pr60 {
  padding-right: 60px !important;
}
/*--  padding-left  --*/
.pl5 {
  padding-left: 5px !important;
}
.pl10 {
  padding-left: 10px !important;
}
.pl15 {
  padding-left: 15px !important;
}
.pl20 {
  padding-left: 20px !important;
}
.pl25 {

  padding-left: 25px !important;
}
.pl30 {
  padding-left: 30px !important;
}
.pl40 {
  padding-left: 40px !important;
}
.pl50 {
  padding-left: 50px !important;
}
.pl60 {
  padding-left: 60px !important;
}
/*--  padding-bottom  --*/
.pb5 {
  padding-bottom: 5px !important;
}
.pb10 {
  padding-bottom: 10px !important;
}
.pb15 {
  padding-bottom: 15px !important;
}
.pb20 {
  padding-bottom: 20px !important;
}
.pb25 {
  padding-bottom: 25px !important;
}
.pb30 {
  padding-bottom: 30px !important;
}
.pb40 {
  padding-bottom: 40px !important;
}
.pb50 {
  padding-bottom: 50px !important;
}
.pb60 {
  padding-bottom: 60px !important;
}
/*--  font-size  --*/
.fs_bl {
  font-size: 140%;
}
.fs_l {
  font-size: 115%;
}
.fs_m {
  font-size: 92%;
}
.fs_ms {
  font-size: 80%;
}
.fs_s {
  font-size: 50%;
}