<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/* 記事全体設定変更 */
.expLearning {
  font: 400 16px / 1.6 helvetica neue,noto sans jp,yu gothic,YuGothic,ヒラギノ角ゴ pron w3,hiragino kaku gothic pron,Arial,メイリオ,Meiryo,sans-serif;
  font-size: 15px;
  line-height: 1.6;
}
/* トップ画 */
.eL-header {
  margin-bottom: 20px;
}

/* section */
.eL_section {}
.eL_section + .eL_section {
  margin-top: 32px;
}
/* section header */
.eL-section_heading-ttl {
  position: relative;
  margin-bottom: 18px;
  padding: 0 0 6px 40px;
  border-bottom: 1px solid #b22b36;
  font-size: 24px;
}
.eL-section_heading-ttl::before {
  position: absolute;
  top: 0;
  left: 0;
content: url("/resource/img/active-learning/icon_arrow.png");
  display: inline-block;
  padding-right: 6px;
}
@media screen and (max-width: 768px) {
  div#cont {margin: 0;}
  .eL-section_heading-ttl {
    padding-left: 35px;
    font-size: 20px;
  }
  .eL-section_heading-ttl::before {
    transform: scale(.85);
  }
}

/* contents */
.eL__sectionInner {
  padding: 0 24px;
}
.eL__sI_list &gt; li {
  position: relative;
  display: block;
  padding-left: 1.1em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.eL__sI_list &gt; li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  
}
@media screen and (max-width: 768px) {
  .eL__sectionInner {
    padding: 0 8px;
  }
}

.eL__menuBox {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.eL__menuBox &gt; dl {
  width: 300px;
  margin-bottom: 24px;
  padding: 0 8px;
}
.eL__mB__linkImg {overflow: hidden;}
.eL__mB__linkImg img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  transition: .4s transform;
}
.eL__mB__link:hover .eL__mB__linkImg img {
  transform: scale(1.1);
  transition: .4s transform;
}
.eL__mB__linkTtl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0;
  min-height: 64px;
  background: #b22b36;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  transition: .4s opacity;
}
.eL__mB__link:hover .eL__mB__linkTtl {
  opacity: .8;
  transition: .4s opacity;
}
.eL__mB__linkTtl span {
  display: inline-block;
  font-size: 16px;
  letter-spacing: .75px;
}
.eL__mB__txt {
  position: relative;
  margin: 0 auto;
  padding: 16px 0;
  width: 90%;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #b22b36;
}
.eL__mB__txt::before,
.eL__mB__txt::after {
  position: absolute;
  top: 12.5%;
  content: "";
  display: block;
  /*width: 2px;
  height: 75%;
  background-color: #b22b36;*/
  border-top: 3.5em solid #b22b36;
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
  height: 0;
  width: 2px;
}
.eL__mB__txt::before {
  left: -10px;
  transform: rotate(-15deg);
}
.eL__mB__txt::after {
  right: -10px;
  transform: rotate(15deg);
}
@media screen and (max-width:768px){
  .eL__menuBox &gt; dl {width:47.5%;}
  .eL__mB__txt { font-size: 2.25vw; }
}
@media screen and (max-width:599px){
  .eL__menuBox &gt; dl {
    width: 100%;
  }
  .eL__mB__linkImg,
  .eL__mB__linkTtl {
    margin: 0 auto;
    max-width:270px;
  }
  .eL__mB__txt {
    max-width:260px;
    font-size: 16px;
  }
  .eL__menuBox &gt; dl &gt; dd {
    margin: 0 auto;
    width: 90%;
    min-width: 300px;
  }
  .eL__menuBox &gt; dl + dl {
    padding-top: 16px;
    /*border-top: 1px dotted #b22b36;*/
  }
}


/* utility */
.u_inBlk {display:inline-block;}

</pre></body></html>