/* ==================== */
/* COMPONENT */
@media only screen and (min-width: 48.0625em) {
  .news-entries {
    padding-bottom: 10px;
  }
}

.news-entries[class*="--3column"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.news-entry {
  position: relative;
}

@media only screen and (min-width: 48.0625em) {
  .news-entry:hover .news-entry__img::after {
    opacity: 1;
  }
  .news-entry:hover .news-entry__title {
    color: #D4003B;
  }
}

.news-entries[class*="--horizontal"] .news-entry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.news-entries[class*="--horizontal"] .news-entry .news-entry__img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 112px;
  height: 112px;
}

@media only screen and (min-width: 48.0625em) {
  .news-entries[class*="--horizontal"] .news-entry .news-entry__img {
    width: 120px;
    height: 120px;
  }
}

.news-entries[class*="--horizontal"] .news-entry .news-entry__info {
  width: calc(100% - 120px);
  padding: 10px 0 10px 18px;
}

@media only screen and (min-width: 48.0625em) {
  .news-entries[class*="--horizontal"] .news-entry .news-entry__info {
    width: calc(100% - 120px);
    padding: 15px 0 15px 18px;
  }
}

.news-entries[class*="--vertical"] .news-entry {
  margin-bottom: 48px;
}

.news-entries[class*="--vertical"] .news-entry .news-entry__info {
  margin-top: 20px;
}

.news-entries[class*="--vertical--3column"] .news-entry {
  width: 100%;
}

@media only screen and (min-width: 48.0625em) {
  .news-entries[class*="--vertical--3column"] .news-entry {
    width: 31%;
  }
  .news-entries[class*="--vertical--3column"] .news-entry:nth-child(3n + 2) {
    margin-right: 3.5%;
    margin-left: 3.5%;
  }
}

.news-entries[class*="--horizontal--3column"] .news-entry {
  width: 100%;
}

.news-entries[class*="--horizontal--3column"] .news-entry:nth-child(3n + 2), .news-entries[class*="--horizontal--3column"] .news-entry:nth-child(3n + 3) {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e8e8e8;
}

@media only screen and (min-width: 48.0625em) {
  .news-entries[class*="--horizontal--3column"] .news-entry {
    width: 32%;
    margin-bottom: 20px;
  }
  .news-entries[class*="--horizontal--3column"] .news-entry:nth-child(3n + 2), .news-entries[class*="--horizontal--3column"] .news-entry:nth-child(3n + 3) {
    margin-top: 0;
    margin-left: 2%;
    padding-top: 0;
    padding-left: 2%;
    border-top: none;
    border-left: 1px solid #e8e8e8;
  }
}

.news-entry__img {
  position: relative;
  background-color: #ccc;
}

.news-entry__img:before {
  display: block;
  width: 100%;
  padding-top: 100%;
  content: "";
}

.news-entry__img::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  content: "";
  opacity: 0;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.news-entry__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.news-entry__title {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.6;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.news-entry__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 10px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

.news-entry__category {
  margin-right: 10px;
  color: #D4003B;
  font-size: 1.2rem;
  font-weight: bold;
  font-weight: 500;
}

.news-entry__date {
  font-size: 1.2rem;
}

.entry-detail__heading {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

@media only screen and (min-width: 48.0625em) {
  .entry-detail__heading {
    font-size: 2.6rem;
  }
}

.entry-detail__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.entry-detail__category {
  color: #D4003B;
}

.entry-detail__date {
  margin-left: 15px;
  color: #8d8d8d;
}

.entry-detail__slider .slick-arrow {
  border: 1px solid #E8E6E6;
  border-radius: 50%;
  background-color: #fff;
}

.entry-detail__slider .slick-arrow:before {
  width: 0;
  height: 0;
  border-width: 7px 5px 0 5px;
  border-style: solid;
  border-color: #D4003B transparent transparent transparent;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: border-color;
  transition-property: border-color;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media only screen and (min-width: 48.0625em) {
  .entry-detail__slider .slick-arrow {
    top: 50%;
    bottom: auto;
    margin: auto;
    border: none;
  }
}

.entry-detail__slider .slick-prev {
  left: 13px;
}

.entry-detail__slider .slick-prev:before {
  -webkit-transform: translateX(-1px) rotate(90deg);
  transform: translateX(-1px) rotate(90deg);
}

@media only screen and (min-width: 48.0625em) {
  .entry-detail__slider .slick-prev {
    left: 16px;
  }
}

.entry-detail__slider .slick-next {
  right: 13px;
}

.entry-detail__slider .slick-next:before {
  -webkit-transform: translateX(1px) rotate(-90deg);
  transform: translateX(1px) rotate(-90deg);
}

@media only screen and (min-width: 48.0625em) {
  .entry-detail__slider .slick-next {
    right: 16px;
  }
}

.entry-detail__slides {
  margin-bottom: 50px;
}

@media only screen and (min-width: 48.0625em) {
  .entry-detail__slides {
    margin-bottom: 60px;
  }
}

.entry-detail__slide {
  position: relative;
}

.entry-detail__slide:before {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 70.71429%;
  content: "";
}

.entry-detail__slide__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.entry-detail__content {
  padding-top: 4px;
}

.entry-detail__content p {
  font-size: 1.4rem;
}

.entry-detail__content p + p {
  margin-top: 25px;
}

.entry-detail__content iframe {
  width: 100%;
}

@media only screen and (min-width: 48.0625em) {
  .entry-detail__content {
    padding-top: 20px;
  }
  .entry-detail__content iframe {
    width: 100%;
    min-height: 440px;
  }
}

.entry-detail__aside {
  padding: 24px;
  background-color: #F4F3F3;
}

@media only screen and (min-width: 48.0625em) {
  .entry-detail__aside {
    padding: 35px 38px;
  }
}

.entry-share__heading {
  font-family: 'Roboto', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-align: center;
}

.entry-share__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.entry-share__heading + .entry-share__items {
  margin-top: 10px;
}

.entry-share__item, .entry-share__item--facebook, .entry-share__item--twitter, .entry-share__item--line {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.entry-share__item + .entry-share__item, .entry-share__item--facebook + .entry-share__item, .entry-share__item--twitter + .entry-share__item, .entry-share__item--line + .entry-share__item, .entry-share__item + .entry-share__item--facebook, .entry-share__item--facebook + .entry-share__item--facebook, .entry-share__item--twitter + .entry-share__item--facebook, .entry-share__item--line + .entry-share__item--facebook, .entry-share__item + .entry-share__item--twitter, .entry-share__item--facebook + .entry-share__item--twitter, .entry-share__item--twitter + .entry-share__item--twitter, .entry-share__item--line + .entry-share__item--twitter, .entry-share__item + .entry-share__item--line, .entry-share__item--facebook + .entry-share__item--line, .entry-share__item--twitter + .entry-share__item--line, .entry-share__item--line + .entry-share__item--line {
  margin-left: 10px;
}

.entry-share__item svg, .entry-share__item--facebook svg, .entry-share__item--twitter svg, .entry-share__item--line svg {
  fill: #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 26px;
  height: 26px;
  margin: auto;
}

.entry-share__item--facebook {
  background-color: #3B5998;
}

.entry-share__item--twitter {
  background-color: #55acee;
}

.entry-share__item--line {
  background-color: #00c300;
}

.pagination__inner {
  position: relative;
  width: 92%;
  margin-right: 4%;
  margin-left: 4%;
}

@media only screen and (min-width: 89.73641em) {
  .pagination__inner {
    width: 100%;
    max-width: 1320px;
    margin-right: auto;
    margin-left: auto;
  }
}

.pagination__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pagination__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.4rem;
  font-size: 1.6rem;
}

.pagination__item a,
.pagination__item span {
  display: block;
  z-index: 2;
  position: relative;
  width: 100%;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
}

.pagination__item--active {
  color: #D4003B;
}

.pagination__item--prev, .pagination__item--next {
  position: relative;
  background-color: #D4003B;
}

.pagination__item--prev:before, .pagination__item--next:before {
  display: block;
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-width: 6px 4px 0 4px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  content: "";
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: border-color;
  transition-property: border-color;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pagination__item--prev {
  margin-right: 10px;
}

.pagination__item--prev:before {
  -webkit-transform: translateX(-1px) rotate(90deg);
  transform: translateX(-1px) rotate(90deg);
}

.pagination__item--next {
  margin-left: 10px;
}

.pagination__item--next:before {
  -webkit-transform: translateX(1px) rotate(-90deg);
  transform: translateX(1px) rotate(-90deg);
}

.pagination__item--disabled {
  background-color: #dfe1e2;
}

/* COMPONENT */
/* ==================== */
