/* slide */
.specialEdition__list {
  display: flex;
  justify-content: center;
  margin-right: -10px;
  margin-left: -10px;
}

.specialEdition__item {
  max-width: 235px;
  width: calc((100% - 60px) * 0.25);
  margin: 0 10px;
  border-radius: 5px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0px 6px 21px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}

.specialEdition__item:hover {
  box-shadow: 0px 6px 21px rgba(0, 0, 0, 0.2)
}

.specialEdition__anchor {
  display: block;
  transition: transform 0.3s;
  text-decoration: none;
}

.specialEdition__anchor:hover img {
  opacity: 0.8;
  transform: scale(1.1);
  transition: 0.5s transform;
}

.specialEdition__anchor:active,
.specialEdition__anchor:hover {
  text-decoration: none;
}

.specialEdition__imgOuter {
  overflow: hidden;
  padding-top: 58.29787234042553%;
  position: relative;
}

.specialEdition__imgOuter img {
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s;
}

.specialEdition__textOuter {
  padding: 20px;
  position: relative;
}

.specialEdition__textOuter.lazyloaded::after {
  background-image: url(/resource/sales/img/common/link_arrow_gray.svg);
}

.specialEdition__textOuter::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  width: 9px;
  height: 12px;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  box-sizing: border-box;
}

.specialEdition__jobs {
  font-size: 18px;
  font-weight: bold;
  color: #3A4A4D;
  line-height: 1.3;
}

.specialEdition__lead {
  overflow: hidden;
  font-size: 14px;
  color: #C1C1C1;
  margin-top: 12px !important;
  line-height: 1.5em;
  max-height: calc(1.5em * 2);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media screen and (max-width: 767px) {
  .specialEdition__list {
    display: block;
    margin-right: 0;
    margin-left: 0;
  }
  .specialEdition__item {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .specialEdition__item:nth-of-type(n+2) {
    margin-top: 12px;
  }
  .specialEdition__anchor {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .specialEdition__imgOuter {
    max-width: 128px;
    width: 100%;
    padding-top: 0;
  }
  .specialEdition__imgOuter img {
    position: static;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    width: 128px;
    height: 100%;
  }
  .specialEdition__textOuter {
    padding: 25px;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 126px;
  }
  .specialEdition__jobs {
    font-size: 16px;
    max-height: calc(1.3em * 3);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
}

@media screen and (max-width: 400px) {
  .specialEdition__textOuter {
    padding: 20px;
  }
}


/* button */
.articles__btn {
  text-decoration: none;
  width: 100%;
  max-width: 280px;
  height: 44px;
  font-size: 13px;
  margin: 60px auto 0;
  background-color: #fff;
  color: #3a4a4d;
  border: 1px solid #c6cbcc;
  border-radius: 39px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: border 0.5s ease, color 0.5s ease;
}

.articles__btn::before {
  content: "";
  width: 120%;
  height: 200%;
  position: absolute;
  top: -50%;
  right: 0;
  z-index: -1;
  background-color: #005eab;
  border-radius: 0 100% 100% 0;
  transform: translateX(-100%);
}

.articles__btn:hover::before {
  transform: translateX(10%);
}

.articles__btn:hover {
  border: 1px solid #005eab;
  color: #fff;
}

.articles__btn::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  width: 9px;
  height: 12px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.5s ease;
}

.articles__btn.arrow::after {
  background-image: url(/resource/it/common/img/link_arrow_blue.svg);
}

.articles__btn:hover.arrow::after {
  background-image: url(/resource/it/common/img/link_arrow_white.svg);
}

