/* ---------------

layout

--------------- */
/* 節 */
.l_section--primary > .l_section__item + .l_section__item{
  margin-top: 64px;
}
.l_section--secondary > .l_section__item + .l_section__item{
  margin-top: 24px;
}
/* ---------------

module

--------------- */
/* ボタン */
.m_btn{
  display: flex;
  justify-content: space-between;
}

.m_btn__target{
  color: #fff !important;
  font-weight: bold;
  background: linear-gradient(90deg, rgba(249,188,0,1) 0%,rgba(235,95,2,1)100%);
  padding: 10px 30px 8px;
  letter-spacing: 0;
  display: block;
  position: relative;
  text-decoration: none;
  font-size: 14px;
  z-index: 1;
  width: fit-content;
}
.m_btn__target::before{
  content: "";
  position: absolute;
  transform: translateY(0) translateX(0);
  width: 0;
  transition: width .2s ease-out;
  height: 100%;
  left: 0;
  bottom: 0;
  background: #1A2336;
  z-index: -1;
}
.m_btn__target:hover::before{
  width: 100%;
}
.m_btn__inner{
  display: block;
  color: #fff;
  font-family: inherit;
}
@media screen and (max-width: 768px){
.m_btn{
  display: block;
}
.m_btn__target{
  margin-bottom: 15px;
}
}

/* 見出し */
.m_heading__ttl{
  letter-spacing: .1em;
  font-weight: bold;
}
.m_heading--primary{
  margin-bottom: 40px;
  padding: 20px;
  border-top: 2px solid #4366ae;
  border-bottom: 2px solid #4366ae;
}
.m_heading--primary .m_heading__ttl{
  font-size: 28px;
  color: #4366ae;
}
@media screen and (max-width: 768px) {
  .m_heading--primary{
    padding: 16px 0;
  }
  .m_heading--primary .m_heading__ttl{
    font-size: 20px;
  }
}
/* ヒーローズエリア */
.m_herosArea{
  margin-bottom: 40px;
}

/* リード文 */
.m_lead__ttl{
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 18px;
}
.m_lead__msg{
  font-size: 14px;
}
.m_lead__msg + .m_lead__msg{
  margin-top: 8px;
}
/* ダウンロードコンテンツのラッパー */
.m_contentsWrap{
  display: flex;
  align-items: stretch;
  margin: -30px;
}
.m_contentsWrap__img{
  flex: 0 0 754px;
  width: 754px;
  margin: 0 auto;
  padding: 30px;
  line-height: 0;
  text-align: center;
}
.m_contentsWrap__imgTarget{
  display: block;
}
.m_contentsWrap__body{
  flex: 1 1 auto;
  padding: 30px;
}
@media screen and (max-width: 768px){
  .m_contentsWrap{
    display: block;
    margin: -12px -30px;
  }
  .m_contentsWrap__img{
    width: 100%;
    padding: 12px 30px;
  }
  .m_contentsWrap__body{
    padding: 12px 30px;
  }
}

/* ダウンロードコンテンツ */
.m_contents__date{
  color: #c8c8c8;
  line-height: 1;
  font-weight: bold;
  font-size: 13px;
}
.m_contents__heading{
  margin-bottom: 24px;
}
.m_contents__ttl{
  line-height: 1.4;
  font-size: 18px;
}
.m_contents__slider img{
  width: 100%;
  height: auto;
  border: 1px solid #ccc;
}
.m_contents__slider + .m_contents__btn{
  margin-top: 24px;
}
.m_contents__btn + .m_contents__list{
  margin-top: 16px;
}
.m_contents__listItem{
  font-size: 12px;
}
.m_contents__listItem + .m_contents__listItem{
  margin-top: 8px;
}
.m_contents__link{
  position: relative;
  display: block;
  padding-left: 16px;
  color: inherit;
}
.m_contents__link:hover{
  opacity: .7;
}
.m_contents__link::before{
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px){
  .m_contents__slider--moviecCatalog .slick-dots{
    visibility: hidden;
    pointer-events: none;
  }  
}

/* ---------------

utility

--------------- */
/* 間隙 */
.u_mb64{
  margin-bottom: 64px;
}