#archive-introduction {
  overflow: hidden;
  padding-top: 10rem;
  padding-bottom: 7rem;
}
@media (max-width: 768px) {
  #archive-introduction {
    padding: 8rem 0;
  }
}
#archive-introduction .introduction_list--inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
#archive-introduction .case--list {
  margin-bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 2rem;
}
@media (max-width: 768px) {
  #archive-introduction .case--list {
    gap: 2rem;
  }
}
#archive-introduction .case--list li {
  width: calc((100% - 4rem) / 3);
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}
@media (max-width: 768px) {
  #archive-introduction .case--list li {
    width: 100%;
  }
}
#archive-introduction .case--list li:hover .__img img {
  transform: scale(1.1);
}
#archive-introduction .case--list li .__img {
  width: 100%;
  aspect-ratio: 294/189;
  overflow: hidden;
}
#archive-introduction .case--list li .__img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.3s;
}
#archive-introduction .case--list li .__text {
  flex: 1;
  padding: 1.5rem 1rem;
  background-color: #fff;
}
#archive-introduction .case--list li .__text .category {
  font-size: 0.85rem;
  color: #734026;
  background: #F3E6D9;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  width: fit-content;
  padding: 0 0.5rem;
}
#archive-introduction .case--list li .__text .company-wrapper {
  display: flex;
  gap: 0.25rem 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0.5rem;
  min-height: calc(2em + 0.25rem);
}
#archive-introduction .case--list li .__text .company-wrapper .company {
  position: relative;
  color: #848484;
  font-weight: 700;
  line-height: 1;
  font-size: 0.6rem;
}
#archive-introduction .case--list li .__text .company-wrapper .company::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #848484;
  right: -0.5rem;
  top: 50%;
  transform: translate(0, -50%);
}
#archive-introduction .case--list li .__text .company-wrapper .people {
  color: #848484;
  font-weight: 700;
  line-height: 1;
  font-size: 0.6rem;
}
#archive-introduction .case--list li .__text .title {
  line-height: 1.4;
  margin-bottom: 0.5rem;
  min-height: 2.8em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  white-space: normal;
}
#archive-introduction .case--list li .__text p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  white-space: normal;
  font-size: initial;
  font-weight: normal;
}
#archive-introduction .gallery-category {
  margin-bottom: 3rem;
  padding-top: 1rem;
}
#archive-introduction .gallery-category__group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
#archive-introduction .gallery-category__title {
  min-width: 70px;
  font-size: 0.95rem;
  font-weight: 700;
}
#archive-introduction .gallery-category__button {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-left: 1rem;
}
#archive-introduction .gallery-category a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border: 1px solid #E5E5E5;
  border-radius: 999px;
  background: #fff;
  color: #555;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
#archive-introduction .gallery-category a:hover {
  border-color: #5EBFB2;
  color: #5EBFB2;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(94, 191, 178, 0.18);
}
#archive-introduction .gallery-category a.is-active {
  background: #5EBFB2;
  border-color: #5EBFB2;
  color: #fff;
  box-shadow: 0 8px 20px rgba(94, 191, 178, 0.25);
}
@media (max-width: 768px) {
  #archive-introduction .gallery-category__group {
    gap: 0.5rem;
    align-items: flex-start;
    flex-direction: column;
  }
  #archive-introduction .gallery-category__title {
    width: 100%;
    margin-bottom: 0.25rem;
  }
  #archive-introduction .gallery-category__button {
    gap: 0.5rem;
  }
  #archive-introduction .gallery-category a {
    padding: 0.45rem 0.9rem;
    font-size: 0.8rem;
  }
}
#archive-introduction .gallery-category a {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
#archive-introduction .gallery-category a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #5EBFB2;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  z-index: -1;
}
#archive-introduction .gallery-category a:hover {
  color: #fff;
  border-color: #5EBFB2;
}
#archive-introduction .gallery-category a:hover::before {
  transform: scaleX(1);
}
#archive-introduction .gallery-category a.is-active::before {
  transform: scaleX(1);
}
#archive-introduction .gallery-category a.is-active {
  color: #fff;
}

#news-detail {
  padding: 10rem 0;
}
@media (max-width: 768px) {
  #news-detail {
    padding: 8rem 0;
  }
}
#news-detail .news-detail--inner {
  max-width: 850px;
  margin: auto;
}
#news-detail .thumbnail {
  margin-bottom: 2rem;
  width: 100%;
  height: fit-content;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 30px;
}
#news-detail .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#news-detail .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
#news-detail .meta time {
  color: #888;
  font-size: 0.9rem;
}
#news-detail .category {
  display: inline-block;
  background: #F3E6D9;
  color: #734026;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
}
#news-detail .title {
  font-size: clamp(1.8rem, 4vw, 2rem);
  line-height: 1.5;
  color: #734026;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  #news-detail .title {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
}
#news-detail .content {
  line-height: 2;
  color: #555;
}
#news-detail .content h2 {
  margin: 4rem 0 1.5rem;
  padding-left: 1rem;
  border-left: 6px solid #FFA340;
  color: #4A3728;
}
#news-detail .content h3 {
  margin: 3rem 0 1rem;
  color: #734026;
}
#news-detail .content p {
  margin-bottom: 1.8rem;
}
#news-detail .content img {
  width: 100%;
  border-radius: 20px;
  margin: 2.5rem 0;
}
#news-detail .content ul {
  margin: 2rem 0;
  padding-left: 1.5rem;
}
#news-detail .content ul li {
  margin-bottom: 0.8rem;
}
#news-detail .content a {
  color: #fe732d;
  text-decoration: underline;
}
#news-detail .news-gallery {
  margin-top: 5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#news-detail .news-gallery__item {
  height: 280px;
  border-radius: 24px;
  overflow: hidden;
  flex: 1 1 260px;
}
#news-detail .news-gallery__item:nth-child(3n) {
  flex-basis: 420px;
}
#news-detail .news-gallery__item:nth-child(4n) {
  flex-basis: 300px;
}
#news-detail .news-gallery__item:nth-child(5n) {
  flex-basis: 520px;
}
#news-detail .news-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
#news-detail .news-gallery__item:hover img {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  #news-detail .news-gallery {
    gap: 12px;
  }
  #news-detail .news-gallery__item {
    flex-basis: 100% !important;
    height: 220px;
  }
}
#news-detail .pager {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid #d5d5d5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#news-detail .pager a {
  color: #734026;
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */