@charset "utf-8";

/* ======================
archive
========================= */
.news {
  padding: clamp(60px, 16.67vw, 118px) 0 clamp(84px, 23.3vw, 118px);
}
.news__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 3.47%;
}
.news__item {
  width: calc(93.06% / 3);
}
.news__item a {
  height: 100%;
  padding-bottom: 5.8em;
  position: relative;
}
.news__item .imgbk {
  aspect-ratio: 223 / 147;
  overflow: hidden;
}
.news__item .imgbk img {
  transition: 0.3s;
}
.news__item a:hover .imgbk img {
  scale: 1.1;
}
.news__item .txtbk {
  padding: 6% 8% 0;
}
.news__item .txtbk__heading {
  font-size: clamp(20px, 2.27vw, 30px);
  line-height: 1.31;
  letter-spacing: 0.036em;
  font-feature-settings: "palt";
  margin-bottom: 20px;
}
.news__item .txtbk__heading-date {
  font-size: max(13px, 0.9vw);
  line-height: 1.85;
  letter-spacing: 0.02em;
  margin-bottom: 0.5em;
}

.news__item .txtbk .txt {
  font-size: clamp(14px, 1.59vw, 18px);
  line-height: 1.78;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news__item .txtbk .more_detaile {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5em;
  position: absolute;
  bottom: 6%;
  right: 9%;
}
.news__item .txtbk .more_detaile .arrow {
  font-size: clamp(14px, 1.59vw, 18px);
  width: 2.64em;
  height: 2.64em;
  position: relative;
  z-index: 1;
}
.news__item:hover .more_detaile .arrow {
  animation: arrowQuick 0.35s ease-out;
}
@keyframes arrowQuick {
  0% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(12px);
  }
  100% {
    transform: translateX(0);
  }
}

.news__item .txtbk .more_detaile .arrow::before {
  content: "";
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #ffe0b1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.news__item .txtbk .more_detaile .arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../imgs/common/bk_arow.svg) no-repeat center/1.29em;
}
/* ======================
single
========================= */
.news_detail__inner {
  padding: 8% 0;
}
.news_detail__title {
  font-size: clamp(22px, 4.58vw, 35px);
  margin-bottom: 0.7em;
}
.news_detail__content img {
  max-width: 600px;
}
.news_detail__content p {
  margin-bottom: 1.75em;
}
.news_detail__content p a {
  display: inline;
  color: #0165bf;
  text-decoration: underline;
}
.news_movie__iframe {
  max-width: 600px;
  aspect-ratio: 16 / 9;
}

@media screen and (max-width: 768px) {
  .news__list {
    justify-content: space-between;
  }
  .news__item {
    width: 48%;
  }
}
@media screen and (max-width: 480px) {
  .news__item {
    width: 100%;
  }
}
