/* scss/module/_index.scss */
@keyframes scroll-float {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-10px);
    opacity: 1;
  }
}
/* media query */
/* centering */
/* set top position of pseudo element */
/* set pseudo element(no image) */
/* set pseudo element */
/* font set */
#insights_av {
  padding-top: 100px;
}
#insights_av .item-box {
  border: none;
  border-bottom: 1px solid #18264c;
  padding-bottom: 60px;
  position: relative;
  min-height: auto;
  justify-content: flex-start;
  margin-bottom: 30px;
}
#insights_av .item-box .item-box-image {
  width: 270px;
  min-width: 270px;
  overflow: hidden;
}
#insights_av .item-box .item-box-image img {
  height: auto;
  transition: all 0.3s;
}
#insights_av .item-box .item-box-image a {
  display: contents;
}
#insights_av .item-box .item-box-texts {
  width: auto;
  padding: 0 0 0 20px;
}
#insights_av .item-box .item-box-texts .item-box-title {
  font-size: 22px;
  margin: 15px 0;
  color: #18264c;
}
#insights_av .item-box .item-box-texts .item-box-title a {
  color: #18264c;
  line-height: 1.5em;
}
#insights_av .item-box .item-box-texts .item-box-title a:first-of-type {
  display: contents;
}
#insights_av .item-box .item-box-texts .set_wrap {
  justify-content: unset;
  font-size: 12px;
}
#insights_av .item-box .item-box-texts .set_wrap time {
  margin-right: 24px;
  color: #505050;
}
#insights_av .item-box .item-box-texts .set_wrap .flex {
  align-items: center;
}
#insights_av .item-box .item-box-texts .set_wrap .flex span {
  margin-right: 7px;
}
#insights_av .item-box .item-box-texts .set_wrap .flex span img {
  display: block;
}
#insights_av .item-box .item-box-texts .set_wrap .flex a {
  color: #505050;
}
#insights_av .item-box .item-box-texts .cat_wrap {
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
}
#insights_av .item-box .item-box-texts .cat_wrap span {
  margin-right: 7px;
}
#insights_av .item-box .item-box-texts .cat_wrap span img {
  display: block;
}
#insights_av .item-box .item-box-texts .cat_wrap a {
  color: #18264c;
}
#insights_av .item-box a.more {
  position: absolute;
  bottom: 30px;
  right: 5px;
  color: #18264c;
  text-decoration: none;
  transition: 0.2s all ease;
  font-size: 14px;
}
#insights_av .item-box:hover .item-box-image img {
  transform: scale(1.1);
}
#insights_av .item-box:hover .item-box-texts .item-box-title,
#insights_av .item-box:hover .item-box-texts time {
  color: #e8340c;
  text-decoration: none;
  transition: 0.2s all ease;
}
#insights_av .item-box:hover a {
  color: #e8340c;
  text-decoration: none;
  transition: 0.2s all ease;
}