@charset "UTF-8";

/* ! CSSの構成 新着ニュース ================================================== 

ページヘッド

-------------------------------------------------- */
main > .container > section {
  margin: 30px 0 0;
}


/* ! ページヘッド ================================================== */
.page_head_news {
  color: #fff;
  padding: 60px 0;
  background: #024B6E;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  position: relative;
  z-index: 0;
  overflow: hidden;/*ブラー効果でボヤけた部分を非表示*/
}
.page_head_news:before{
  content: '';
  background: inherit;/*.bgImageで設定した背景画像を継承する*/
  -webkit-filter: blur(20px);
  -moz-filter: blur(20px);
  -o-filter: blur(20px);
  -ms-filter: blur(20px);
  filter: blur(20px);
  position: absolute;
  /*ブラー効果で画像の端がボヤけた分だけ位置を調整*/
  top: -40px;
  left: -40px;
  right: -40px;
  bottom: -40px;
  z-index: -1;/*重なり順序を一番下にしておく*/
}
.page_head_news:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.2) url(../img/bg_pattern.svg) repeat center center;
  background-size: 2px 2px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: .8;
}
.page_head_news.movie_list:after{
  background: rgba(0,0,0,.7) url(../img/img_movie_category01.jpg) repeat center 70%;
  background-size: cover !important;
}


.page_head_news.movie_list:before{
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #333;
  opacity: .8;
  top: 0;
  left: 0;
}
.movie_list{
  position: relative;
}
.movie_list:after{
  background: rgba(0,0,0,.7) url(../img/img_movie_category01.jpg) repeat center 70%;
  background-size: cover !important;
}
.movie_list:before{
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .4;
  top: 0;
  left: 0;
  z-index: 100;
}
.movie_list .container{
  z-index: 200 !important;
  
}



.page_head_news .container {
  position: relative;
  z-index: 2;
}
.page_head_news .explain {
  font: 400 14px/1.6em 'Hiragino Sans', sans-serif;
}



/* ! 新着情報ページ ================================================== */
.main_news .white_box {
  padding: 20px 60px;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.main_news .paging {
  margin-top: 40px;
}

/* ! 新着情報リスト ================================================== */
.list_news article {
  display: -webkit-flex; display: flex;
  -webkit-flex-wrap: nowrap; flex-wrap: nowrap;
  position: relative;
}
.list_news article:hover p:not(.date) {
  text-decoration: underline;
}
.list_news article > a {
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.list_news .date {
  color: #ccc;
  font: 600 12px/1.6em 'Hiragino Sans', sans-serif;
  -webkit-flex: 0 0 100px; flex: 0 0 100px;
}
.list_news p {
  font: 400 14px/1.6em 'Hiragino Sans', sans-serif;
}




/* ! ○○とはC ================================================== */