@charset "UTF-8";
/* sp-only ------------*/
/* pc-only ------------*/
/* hover-only ------------*/
/* flex ------------*/
/* Font Awesome 疑似要素 ------------*/
/* Edge用 ------------*/
/* IE用 ------------*/
/* Font styles ------------*/
/* Color styles ------------*/
/* 375pxデザイン時のpxからvwを計算 ------------*/
/* calc内で使いたい場合: calc( 100% - vw(10) ); */
/*------------------------------------------------
main-header
------------------------------------------------*/
@media screen and (max-width: 767px) {
  .main-header .main-header__en {
    width: 28.2666666667vw;
  }
}

/*------------------------------------------------
lcl-techblog
------------------------------------------------*/
.lcl-techblog {
  padding: 40px 0 80px;
  /*------------ lcl-techblog-navi__list ------------*/
  /*------------ lcl-techblog__list ------------*/
  /*------------ lcl-techblog__btn ------------*/
}
@media screen and (max-width: 767px) {
  .lcl-techblog {
    padding: 0 0 13.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .lcl-techblog .lcl-techblog__in {
    width: 100%;
    padding: 0 4vw;
  }
}
.lcl-techblog .lcl-techblog-navi__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .lcl-techblog .lcl-techblog-navi__list {
    margin-bottom: 10.6666666667vw;
    padding-top: 2.6666666667vw;
  }
}
.lcl-techblog .lcl-techblog-navi-list__item {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .lcl-techblog .lcl-techblog-navi-list__item {
    margin-bottom: 2.6666666667vw;
  }
}
.lcl-techblog .lcl-techblog-navi-list__item:not(:last-child) {
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .lcl-techblog .lcl-techblog-navi-list__item:not(:last-child) {
    margin-right: 1.3333333333vw;
  }
}
.lcl-techblog .lcl-techblog-navi-list-item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 5px 20px;
  color: #0081cc;
  font-size: 14px;
  line-height: 1.8;
  font-weight: normal;
  font-style: normal;
  -webkit-transition: color 0.3s, background-color 0.3s, -webkit-transform 0.3s;
  transition: color 0.3s, background-color 0.3s, -webkit-transform 0.3s;
  transition: color 0.3s, background-color 0.3s, transform 0.3s;
  transition: color 0.3s, background-color 0.3s, transform 0.3s, -webkit-transform 0.3s;
  border: 1px solid #0081cc;
  border-radius: 30px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .lcl-techblog .lcl-techblog-navi-list-item__link {
    font-size: 3.4666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .lcl-techblog .lcl-techblog-navi-list-item__link:before, .lcl-techblog .lcl-techblog-navi-list-item__link:after {
    position: absolute;
    top: 50%;
    content: "";
    width: 20px;
    height: 20px;
    background-color: #0081cc;
    border-radius: 50%;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    z-index: -1;
  }
  .lcl-techblog .lcl-techblog-navi-list-item__link:before {
    left: -20px;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .lcl-techblog .lcl-techblog-navi-list-item__link:after {
    right: -20px;
    -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
  }
}
@media screen and (max-width: 767px) {
  .lcl-techblog .lcl-techblog-navi-list-item__link {
    padding: 0.5333333333vw 4vw;
    border-radius: 8vw;
  }
}
@media screen and (min-width: 768px) {
  .lcl-techblog .lcl-techblog-navi-list-item__link:hover {
    color: #fff;
  }
  .lcl-techblog .lcl-techblog-navi-list-item__link:hover .svg-path {
    fill: #fff;
  }
  .lcl-techblog .lcl-techblog-navi-list-item__link:hover:before {
    -webkit-animation: icon-left 0.8s both;
            animation: icon-left 0.8s both;
    -webkit-animation-direction: alternate;
            animation-direction: alternate;
  }
  .lcl-techblog .lcl-techblog-navi-list-item__link:hover:after {
    -webkit-animation: icon-right 0.8s both;
            animation: icon-right 0.8s both;
    -webkit-animation-direction: alternate;
            animation-direction: alternate;
  }
}
.lcl-techblog .lcl-techblog-navi-list-item__link.lcl-techblog-navi-list-item__link--active {
  color: #fff;
  background: #0081cc;
}
.lcl-techblog .lcl-techblog-navi-list-item__link.lcl-techblog-navi-list-item__link--active .svg-path {
  fill: #fff;
}
.lcl-techblog .lcl-techblog-navi-list-item__link.lcl-techblog-navi-list-item__link--active:before, .lcl-techblog .lcl-techblog-navi-list-item__link.lcl-techblog-navi-list-item__link--active:after {
  content: none;
}
.lcl-techblog .lcl-techblog__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .lcl-techblog .lcl-techblog__list {
    margin-bottom: 13.3333333333vw;
  }
}
.lcl-techblog .lcl-techblog__item {
  width: calc(33.3333333% - 27px);
}
@media screen and (min-width: 768px) {
  .lcl-techblog .lcl-techblog__item:not(:nth-child(3n)) {
    margin-right: 40px;
  }
  .lcl-techblog .lcl-techblog__item:nth-child(n+4) {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .lcl-techblog .lcl-techblog__item {
    width: 100%;
  }
  .lcl-techblog .lcl-techblog__item:not(:last-child) {
    margin-bottom: 5.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .lcl-techblog .lcl-techblog__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (hover: hover) {
  .lcl-techblog .lcl-techblog__link:hover .lcl-techblog__fig {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@media screen and (min-width: 768px) and (-ms-high-contrast: none), screen and (min-width: 768px) and (-ms-high-contrast: active) {
  .lcl-techblog .lcl-techblog__link:hover .lcl-techblog__fig {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.lcl-techblog .lcl-techblog__figwrap {
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  min-height: 168px;
  height: 10vw;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .lcl-techblog .lcl-techblog__figwrap {
    border-radius: 1.3333333333vw;
    width: 26.6666666667vw;
    min-height: 15.2vw;
    height: 15.2vw;
    margin: 0 2.6666666667vw 0 0;
  }
}
.lcl-techblog .lcl-techblog__fig {
  background-image: url(../img/no-image.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #f5f5f5;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 767px) {
  .lcl-techblog .lcl-techblog__main {
    width: calc(100% - 29.3333333333vw);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.lcl-techblog .lcl-techblog__info {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .lcl-techblog .lcl-techblog__info {
    margin-bottom: 0;
  }
}
.lcl-techblog .lcl-techblog__item-data {
  font-size: 12px;
  line-height: 1.65;
  color: #767676;
}
@media screen and (max-width: 767px) {
  .lcl-techblog .lcl-techblog__item-data {
    font-size: 2.6666666667vw;
  }
}
.lcl-techblog .lcl-techblog__item-cat {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 1.65;
  color: #0081cc;
  border-right: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .lcl-techblog .lcl-techblog__item-cat {
    font-size: 2.9333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .lcl-techblog .lcl-techblog__item-cat {
    padding: 0 1.3333333333vw;
  }
}
.lcl-techblog .lcl-techblog__item-ttl {
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .lcl-techblog .lcl-techblog__item-ttl {
    font-size: 3.4666666667vw;
    line-height: 1.4;
    margin-bottom: 1.3333333333vw;
  }
}
.lcl-techblog .lcl-techblog__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 450px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .lcl-techblog .lcl-techblog__btn {
    width: 69.3333333333vw;
  }
}
.lcl-techblog .lcl-techblog-btn__prev.lcl-techblog-btn__prev--none {
  pointer-events: none;
  opacity: 0;
}
.lcl-techblog .lcl-techblog-btn__next.lcl-techblog-btn__next--none {
  pointer-events: none;
  opacity: 0;
}