/* CSS Document */
.newsList .item::after, .newsList .item::before, .newsList .item, .mainArea .contentBox .classTitleBox .title {
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.mainArea {
  padding: 120px 0;
}
@media (max-width: 1180px) {
  .mainArea {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .mainArea {
    padding: 60px 0;
  }
}
.mainArea .contentBox .newsInfoBox {
  position: relative;
}
.mainArea .contentBox .newsInfoBox .dateBox {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #cccccc;
}
@media (max-width: 1180px) {
  .mainArea .contentBox .newsInfoBox .dateBox {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .mainArea .contentBox .newsInfoBox .dateBox {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .mainArea .contentBox .newsInfoBox .dateBox {
    font-size: 14px;
  }
}
.mainArea .contentBox .classTitleBox {
  position: relative;
}
.mainArea .contentBox .classTitleBox .title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--newsMColor, #003686);
  text-align: center;
  background-color: var(--newsMBgColor, #62bcea);
  min-width: 125px;
  padding: 0.375rem 0.875rem;
  border-radius: 1.875rem;
}
@media (max-width: 1180px) {
  .mainArea .contentBox .classTitleBox .title {
    font-size: 15px;
    min-width: 100px;
  }
}
@media (max-width: 768px) {
  .mainArea .contentBox .classTitleBox .title {
    font-size: 14px;
    min-width: auto;
    padding: 0.375rem 0.625rem;
  }
}

.newsList {
  position: relative;
  border-top: 1px solid rgba(167, 167, 167, 0.5);
  border-bottom: 1px solid rgba(167, 167, 167, 0.5);
}
.newsList .newsItem {
  position: relative;
}
.newsList .newsItem + .newsItem {
  border-top: 1px solid rgba(167, 167, 167, 0.5);
}
.newsList .item {
  position: relative;
  padding: 2.5rem 1.25rem;
}
@media (max-width: 1180px) {
  .newsList .item {
    padding: 2.25rem 0.625rem;
  }
}
@media (max-width: 768px) {
  .newsList .item {
    padding: 1.5rem 1rem;
  }
}
@media (max-width: 480px) {
  .newsList .item {
    padding: 1.25rem 0.625rem;
  }
}
@media (min-width: 1181px) {
  .newsList .item:hover::before {
    width: 100%;
  }
  .newsList .item:hover::after {
    height: 100%;
  }
  .newsList .item:hover .classTitleBox .title {
    color: #fff;
    background-color: #62bcea;
  }
}
.newsList .item::before {
  content: "";
  display: block;
  pointer-events: none;
  content: "";
  width: 0;
  height: 100%;
  background-color: rgba(0, 54, 134, 0.5);
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
}
.newsList .item::after {
  content: "";
  display: block;
  pointer-events: none;
  content: "";
  width: 2px;
  height: 0;
  background-color: #62bcea;
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
}
.newsList .Txt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
  max-width: 1130px;
  margin: 0 auto;
}
@media (max-width: 1180px) {
  .newsList .Txt {
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
}
@media (max-width: 768px) {
  .newsList .Txt {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 480px) {
  .newsList .Txt {
    -webkit-column-gap: 0.625rem;
       -moz-column-gap: 0.625rem;
            column-gap: 0.625rem;
    row-gap: 0.625rem;
    padding-right: 1rem;
  }
}
.newsList .newsInfoBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  min-width: 115px;
}
@media (max-width: 1180px) {
  .newsList .newsInfoBox {
    min-width: 100px;
  }
}
@media (max-width: 768px) {
  .newsList .newsInfoBox {
    min-width: 95px;
  }
}
@media (max-width: 480px) {
  .newsList .newsInfoBox {
    min-width: 90px;
  }
}
.newsList .classTitleBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.newsList .newsTitle {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: #fff;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media (max-width: 1180px) {
  .newsList .newsTitle {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .newsList .newsTitle {
    font-size: 16px;
    width: 100%;
  }
}
@media (max-width: 575px) {
  .newsList .newsTitle {
    -webkit-line-clamp: 2;
  }
}
@media (max-width: 480px) {
  .newsList .newsTitle {
    font-size: 15px;
  }
}
.newsList .plusArrow {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 48px;
}
@media (max-width: 1180px) {
  .newsList .plusArrow {
    width: 32px;
  }
}
@media (max-width: 768px) {
  .newsList .plusArrow {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    top: 50%;
    right: 4px;
    bottom: auto;
    left: auto;
    translate: 0 -50%;
  }
}
.newsList .plusArrow .arrow {
  position: relative;
  display: block;
  width: 10px;
  height: auto;
  aspect-ratio: 1/1;
  border-top: 1px solid #a7a7a7;
  border-right: 1px solid #a7a7a7;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (max-width: 768px) {
  .newsList .plusArrow .arrow {
    width: 8px;
  }
}
.newsList .linkWrap {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.shareBox {
  float: right;
}
.shareBox .btn-fb {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.shareBox .back {
  display: inline-block;
  vertical-align: middle;
  padding: 3px 5px;
  border-radius: 3px;
  font-size: 12px;
  color: #fff;
  background: rgb(174, 66, 51);
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(174, 66, 51)), to(rgb(196, 76, 76)));
  background: linear-gradient(to bottom, rgb(174, 66, 51) 0%, rgb(196, 76, 76) 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ae4233", endColorstr="#c44c4c", GradientType=0);
  /* IE6-9 */
  cursor: pointer;
}
@media (min-width: 1181px) {
  .shareBox .back:hover {
    background: #398cb1;
  }
}

.insPage .contentBox .newsInfoBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 1180px) {
  .insPage .contentBox .newsInfoBox {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .insPage .contentBox .newsInfoBox {
    margin-bottom: 1rem;
  }
}
/*# sourceMappingURL=news.css.map */