@charset "UTF-8";

/* CSS Document */

/* ===============

OOCSSとSMACSS（utility層追加）
にてコーディング

=============== */

/*初期設定CSS*/
#cont{
  color:#333;
  font:500 14px / 1.6 "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Arial, メイリオ, Meiryo, sans-serif;
  letter-spacing:.1em;
}

/* layout */
.l_section{
  margin: 64px 0;
}
.l_section__item + .l_section__item{
  margin-top: 64px;
}
/* module */
/* 見出し */
.m_heading{}
.m_heading__ttl{
  line-height: 1;
  font-weight: bold;
}
.m_heading__img{
  line-height: 0;
  text-align: center;
}
.m_heading__img > img{
  max-width: 100%;
  height: auto;
}
.m_heading--primary{
  margin-bottom: 40px;
}
.m_heading--primary > .m_heading__ttl{
  line-height: 1.4;
  font-size: 28px;
}
.m_heading--secondary{
  padding: 12px 0 12px 12px;
  border-left: 8px solid #e5002d;
  margin-bottom: 24px;
  background: #fff0f3;
}
.m_heading--secondary > .m_heading__ttl{
  font-size: 20px;
}
@media screen and (max-width: 768px){
  .m_heading--primary > .m_heading__ttl{
    line-height: 1.6;
    font-size: 24px;
  }
}
@media screen and (max-width: 599px){
  .m_heading--primary > .m_heading__ttl{
    font-size: 16px;
  }
  .m_heading--secondary > .m_heading__ttl{
    line-height: 1.6;
    font-size: 16px;
  }
}
/* ダウンロードボタンの外箱 */
.m_downloadBox{
  padding: 40px;
  border: 1px solid #ccc;
  box-shadow: inset 0 0 12px rgba(0,0,0,.1);
  background: #fff0f3;
}
.m_downloadBox__ttl{
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: bold;
}
.m_downloadBox__btn{
  position: relative;
  left: 50%;
  display: inline-block;
  transform: translateX(-50%);
}
.m_downloadBox__btnTarget{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 32px 12px 48px;
  border-radius: 12px;
  line-height: 1;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: .3s opacity;
}
.m_downloadBox__btnTarget:hover{
  opacity: .7;
  text-decoration: none;
}
.m_downloadBox__btnTarget::before{
  content: "\f019";
  position: absolute;
  top: 50%;
  left: 16px;
  font-family: "font awesome 5 free";
  font-weight: bold;
  transform: translateY(-50%);
}
.m_downloadBox__btnTarget--cv{
  background: #107040;
  color: #fff;
}
.m_downloadBox__btnTarget--cv:hover{
  color: #fff;
}
@media screen and (max-width: 599px){
  .m_downloadBox{
    padding: 40px 16px;
  }
  .m_downloadBox__btnTarget{
    font-size: 12px;
  }
}

/* utility */
.u_hide{
  display: none;
}
@media screen and (max-width: 768px){
  .u_resMdHide{
    display: none;
  }
}
@media screen and (max-width: 599px){
  .u_resSmHide{
    display: none;
  }
}