@charset "utf-8";

/*==================================================
履歴
===================================*/

.topicsCol {
  position: relative;
  background-image: url(../images/common/bg_texture.png);
  background-size: cover;
  width: 100%;
  height: 300px;
  padding: 20px;
  margin: 0 auto;
  overflow: auto;
  
}
.topicsCol h5 {
  text-align: center;
  color: #2e2e2e;
  font-size: 140%;
  font-weight: bold;
}
.topicsCol ul {
  font-size: 85%;
}
.topicsCol::-webkit-scrollbar {
  display: none;
}
.topicsCol ul li {
  list-style: none;
  padding: 8px;
  font-size: 16px;
  border-bottom: 1px #000 solid;
}
.topicsCol ul li p {
  margin-top: 5px;
}
.topicsCol ul li a {
  display: inline-block;
  text-decoration: none;
}
.topicsCol ul li a:link, .topicsCol ul li a:active, .topicsCol ul li a:visited {
  color: #2e2e2e;
}
.topicsCol ul li a:hover {
  color: red;
}
.topicsCol ul li span::after {
  display: inline-block;
  min-width: 90px;
  margin-left: 10px;
  margin-bottom: 2.8px;
  padding: 0 5px 2px 5px;
  text-align: center;
  line-height: 15px;
  font-size: 80%;
  color: #FFF;
  vertical-align: middle;
}
.topicsCol ul li.blog-date span::after {
  content: 'ブログ';
}
.topicsCol ul li.movie-date span::after {
  content: 'ムービー';
}
.topicsCol ul li.gallery-date span::after {
  content: 'ギャラリー';
}
.topicsCol ul li.contact-date span::after {
  content: 'コンタクト';
}
.topicsCol ul li.other-date span::after {
  content: 'その他';
}

.topicsCol ul li.blog-date span::after {
  background: #e60012;
}

.topicsCol ul li.movie-date span::after {
  background: #1fa700;
}

.topicsCol ul li.gallery-date span::after {
  background: #8a939e;
}

.topicsCol ul li.contact-date span::after {
  background: #2f96ff;
}

.topicsCol ul li.other-date span::after {
  background: #393939;
}

/*==================================================
ページトップの動画
===================================*/

#video {
    display: flex;
    width: 100%; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 100%; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
    overflow: hidden;
}

/*==================================================
スライダーのためのcss
===================================*/

.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
   width:94%;
    margin:0 auto;
}

.slider .sliderCol {
  min-height: 300px;
  background: #ffef00;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5);
  padding: 15px;
}

.slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

.slider p {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
    color: #000;
}

/*　画像の拡大　*/

.zoomIn img{
  filter:sepia(100%);
  transform: scale(1);
  transition: .3s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
}

.zoomIn a {/*hoverした時の変化*/
  text-decoration: none;
}

.zoomIn a:hover img{/*hoverした時の変化*/
  filter: sepia(0);
  transform: scale(1.2);/*拡大の値を変更したい場合はこの数値を変更*/
}

/*　画像のマスク　*/

.mask{
    display: block;
    line-height: 0;/*行の高さを0にする*/
    overflow: hidden;/*拡大してはみ出る要素を隠す*/
}

.slideDate {
  font-size: 14px;
}
.ico_category{
    display: inline-block;
    color: #FFF;
    padding: 2px 7px;
    margin: 0 10px 5px 0;
    font-size: 14px;
    font-weight: normal;
}

.after-effects{
  background-color: #1f0141;       
}

.photoshop{
  background-color: #001e36;       
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin:0 10px;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 46%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #FFF;/*矢印の色*/
    border-right: 2px solid #FFF;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -4%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -4%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
  margin:20px 0 -25px 0;
}

.slick-dots li {
    display:inline-block;
  margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}

/*==================================================
スライダーのためのcss
===================================*/
.slider_under img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider_under .slick-slide {
    margin:10px 10px;/*スライド左右の余白調整*/
}


@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;600;700;800;900&family=Noto+Sans+JP:wght@300;400;600;700;800;900&display=swap");
.newsWrap {
  width: 100%;
  padding-bottom: 60px;
  overflow: hidden;
  background:rgba(0,0,0,0.9);
}

@media (min-width: 1024px) and (max-width: 1919.9px) {
  .newsWrap {
    padding-bottom: 3.125vw
  }
}

@media (max-width: 1023.9px) {
  .newsWrap {
    padding-bottom: 5.19231vw
  }
}

.newsCol {
  position: relative
}

.newsInner {
  position: relative;
  width: 880px;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
  background-image: url(../images/common/bg_texture.png);
  background-size: cover;
  z-index: 5
}

@media (min-width: 1024px) and (max-width: 1919.9px) {
  .newsInner {
    width: 45.83333vw;
    padding-top: 6.25vw;
    padding-bottom: 2.08333vw;
    padding-right: 2.08333vw;
    padding-left: 2.08333vw;
  }
}

@media (max-width: 1023.9px) {
  .newsInner {
    width: 90%;
    padding-top: 13.84615vw;
    padding-bottom: 5.19231vw;
    padding-right: 5.19231vw;
    padding-left: 5.19231vw;
  }
}

.newsInner .selectCategory {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  top: 15px;
  right: 10px;
  padding-right: 28px;
  background-color: transparent;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 23px 22px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: #171717 1px solid;
  border-radius: 0px;
  color: #171717;
  font-weight: 700;
  cursor: pointer;
}

.newsInner .selectCategory::-ms-expand {
  display: none;
}

.newsInner .selectCategory option {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  font-weight: 700;
  cursor: pointer;
  background-color: #fff;
  padding: 10px;
}

@media (min-width: 1024px) and (max-width: 1919.9px) {
  .newsInner .selectCategory {
    top: 3.125vw;
    padding-right: 1.45833vw;
    background-size: 1.19792vw 1.14583vw;
  }
}

@media (max-width: 1023.9px) {
  .newsInner .selectCategory {
    top: 5vw;
    padding-right: 3.63462vw;
    background-size: 2.98558vw 2.85577vw;
  }
}

.newsInner .selectCategory option {
  color: #171717;
}

.newsInner .updateCol {
  height: 350px;
  overflow-y: auto;
}

@media (min-width: 1024px) {
  .newsInner .updateCol::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  .newsInner .updateCol::-webkit-scrollbar-track {
    border-radius: 5px;
    border: 1px #171717 solid;
  }
  .newsInner .updateCol::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #171717;
  }
}

@media (min-width: 1024px) and (max-width: 1919.9px) {
  .newsInner .updateCol {
    height: 18.22917vw;
  }
}

@media (max-width: 1023.9px) {
  .newsInner .updateCol {
    height: 52.78846vw;
  }
}

.newsInner .updateCol dt, .newsInner .updateCol dd, .newsInner .updateCol a {
  color: #171717;
  text-decoration: none;
}

.newsInner .updateCol dt {
  font-weight: 800;
  font-size: 18px;
}

.newsInner .updateCol dt .icoCategory {
  color: #171717;
  border: #171717 1px solid;
  line-height: 1;
  padding: 1px 10px;
  font-weight: 800;
  font-size: 16px;
  margin-left: 10px;
}

@media (min-width: 1024px) and (max-width: 1919.9px) {
  .newsInner .updateCol dt {
    font-size: .9375vw;
  }
  .newsInner .updateCol dt .icoCategory {
    padding: .05208vw .52083vw;
    font-size: .83333vw;
    margin-left: .52083vw;
  }
}

@media (max-width: 1023.9px) {
  .newsInner .updateCol dt {
    font-size: 3.11538vw;
  }
  .newsInner .updateCol dt .icoCategory {
    padding: .08654vw .86538vw;
    font-size: 2.42308vw;
    margin-left: .86538vw;
  }
}

.newsInner .updateCol dd {
  margin-top: 5px;
  margin-bottom: 40px;
}

.newsInner .updateCol dd a {
  font-size: 18px;
  font-weight: 600;
}

.newsInner .updateCol dd a:hover {
  color: #ff4425;
}

@media (min-width: 1024px) {
  .newsInner .updateCol dd {
    width: 760px;
  }
}

@media (min-width: 1024px) and (max-width: 1919.9px) {
  .newsInner .updateCol dd {
    width: 39.58333vw;
    margin-top: .26042vw;
    margin-bottom: 2.08333vw;
  }
  .newsInner .updateCol dd a {
    font-size: .9375vw;
  }
}

@media (max-width: 1023.9px) {
  .newsInner .updateCol dd {
    margin-top: .43269vw;
    margin-bottom: 3.46154vw;
  }
  .newsInner .updateCol dd a {
    font-size: 3.11538vw;
  }
}

.newsInner .updateCol dd:last-child {
  margin-bottom: 0;
}