@charset "UTF-8";

.top-section-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-sub-family);
  font-weight: 700;
  row-gap: 5px;
  color: #036eb7;
  font-size: clamp(1.5rem, 1.2583rem + 0.9917vw, 2.25rem);
}
.top-section-title span {
  display: block;
  text-transform: capitalize;
  color: #2ea6df;
  font-size: 1rem;
}

/* =============================================================
fv
============================================================= */
.top-fv {
  position: relative;
  max-height: 753px;
  padding: 0;
}
.fv-image {
  position: relative;
  overflow: hidden;
}
.fv-copy {
  position: absolute;
  left: 50%;
  top: 5%;
  width: 100%;
  transform: translateX(-50%);
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  text-shadow: 0 3px 12px rgba(18, 145, 146, 0.35);
  font-size: clamp(1.5rem, 1.2784rem + 0.9091vw, 2.1875rem);
  width: clamp(320px, 100%, 1110px);
}
.fv-copy span {
  display: inline-block;
}
/* responsive */
@media screen and (max-width: 1023px) {
  .top-fv {
    max-height: inherit;
  }
  .fv-copy {
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
/* =============================================================
news
============================================================= */
.top-news {
  position: relative;
  margin-top: -150px;
  padding-block: 0;
}
.top-news-card {
  display: grid;
  grid-template-columns: clamp(250px, 28%, 440px) 1fr;
  column-gap: 10px;
  padding-inline: 10px;
  padding-block: 30px;
  overflow: hidden;
}
.top-news-title {
  position: relative;
  z-index: 0;
  background: rgba(238, 247, 244, 0.8);
  border-radius: 14px;
  box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.1);
  font-weight: 700;
  padding: 30px;
  min-height: 120px;
}
.top-news-title::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/news-background.webp");
}
.top-news-content {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 70px;
}
.top-news-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
.top-news-link {
  display: grid;
  grid-template-columns: 84px auto 1fr;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid #e6e6e6;
  padding-block: 30px;
  font-size: 1rem;
}

.top-news-item:last-child {
  border-bottom: none;
}
.top-news-item .top-news-date {
  font-size: 0.875rem;
color: #333333;
}
.top-news-tag {
  width: 140px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 4px 14px;
  color: #ffffff;
}
.top-news-tag_alert {
  background-color: #fff6f6;
  color: #e3465e;
  border: 1px solid #dfc3c2;
}
.top-news-tag_info {
  background-color: #f2f5e4;
  color: #8ec21f;
  border: 1px solid #8ec21f;
}
.top-news-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
color: #333333;
}
.top-news-more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-size: clamp(0.875rem, 0.7944rem + 0.3306vw, 1.125rem);
  font-weight: 700;
  color: #1b67a5;
}
.top-news-more span {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}
.top-news-more:hover span {
  transform: translateX(3px);
}
/* responsive */
@media screen and (max-width: 820px) {
  .top-news {
    margin-top: -100px;
  }
  .top-news-card {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
  .top-news-title {
    min-height: 150px;
    padding: 15px 20px;
  }
  .top-news-title::before {
    width: 50%;
  }
  .top-news-content {
    padding: 20px 10px;
  }
  .top-news-link {
    grid-template-columns: 90px 1fr;
  }
  .top-news-text {
    grid-area: 2 / 1 / 3 / 3;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-height: 0;
  }
}
/* =============================================================
about
============================================================= */
.top-section-inner {
  max-width: 1900px;
}
.top-about {
  padding-top: clamp(60px, 8vw, 100px);
}

.top-about-inner {
  display: flex;
  column-gap: 70px;
  align-items: center;
  margin-right: calc(50% - 50vw);
  padding: 0 0 0 calc(50vw - 50%);
}

.top-about-image {
  overflow: hidden;
  width: 50%;
  margin-inline: auto 0;
}
.top-about-text {
  width: 50%;
  font-size: clamp(1.3rem, 0.9597rem + 0.1653vw, 1.125rem);
}
.top-about-text p {
  margin-block: 30px 70px;
}


@media screen and (max-width: 768px) {
.top-about-text {
font-size: clamp(1rem, 0.9597rem + 0.1653vw, 1.125rem);
}
}


/* responsive */
@media screen and (max-width: 1023px) {
  .top-about-inner {
    flex-direction: column-reverse;
    row-gap: 30px;
    margin: 0;
    padding: 0;
  }
  .top-about-image {
    width: 95vw;
    margin-right: calc(50% - 50vw);
  }
  .top-about-text {
    width: 100%;
  }
  .top-about-text p {
    margin-block: 20px 40px;
  }
}
/* =============================================================
evaluation
============================================================= */
.top-evaluation-inner {
  display: flex;
  flex-direction: row-reverse;
  column-gap: 56px;
  align-items: center;
  margin-left: calc(50% - 50vw);
  padding: 0 calc(50vw - 50%) 0 0;
}
.top-evaluation-image {
  width: 50%;
}
.top-evaluation-text {
  width: 50%;
  font-size: clamp(1.3rem, 0.9597rem + 0.1653vw, 1.125rem);
}
.top-evaluation-text p {
  margin-block: 30px 70px;
}

@media screen and (max-width: 768px) {
.top-evaluation-text {
font-size: clamp(1rem, 0.9597rem + 0.1653vw, 1.125rem);
}
}


.top-evaluation-subtitle {
  color: #02548c;
  font-weight: 700;
  font-size: clamp(1.35rem, 0.9597rem + 0.1653vw, 1.125rem);
  font-family: var(--font-sub-family);
  margin-block: 5px 30px;
}
/* responsive */
@media screen and (max-width: 1023px) {
  .top-evaluation-inner {
    flex-direction: column-reverse;
    row-gap: 30px;
    margin: 0;
    padding: 0;
  }
  .top-evaluation-image {
    width: 98vw;
    margin-left: calc(50% - 50vw);
  }
  .top-evaluation-text {
    width: 100%;
  }
  .top-evaluation-text p {
    margin-block: 20px 40px;
  }
}
/* =============================================================
members
============================================================= */
.top-link {
  text-align: center;
  padding-bottom: 0;
}
.top-link-title {
  text-align: center;
}
.top-link-list {
  display: flex;
  justify-content: center;
  column-gap: 68px;
  row-gap: 50px;
  max-width: 1130px;
  margin-inline: auto;
  margin-block: 80px 120px;
}


.top-link-text {
  width: 100%;
  font-size: clamp(1.3rem, 0.9597rem + 0.1653vw, 1.125rem);
}
.top-link-text p {
  margin-block: 30px 70px;
}

@media screen and (max-width: 768px) {
.top-link-text {
font-size: clamp(1rem, 0.9597rem + 0.1653vw, 1.125rem);
text-align: left;
}
}

.top-link-item {
  width: 100%;
  overflow: hidden;
  border-radius: 30px;
}
.top-link-item img {
  transition: transform 0.2s ease;
}
.top-link-item:hover img {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}
.top-link-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 140px;
  row-gap: 50px;
  align-items: center;
  background: #eef6f2;
  padding-block: 90px;
}

.top-link-actions .action-btn {
  margin: 0;
  /*font-size: clamp(1.125rem, 1.0847rem + 0.1653vw, 1.25rem);*/
  /*width: clamp(320px, 90%, 450px);*/
  line-height: 3.5;
  border-radius: 20px;
  max-width: inherit;
}
.top-link-actions .action-btn_primary {
  background-color: #1b67a5;
}
.top-link-actions .action-btn_secondary {
  background-color: #6cab43;
}
/* responsive */
@media screen and (max-width: 1023px) {
  .top-link-list {
    width: 80%;
    flex-direction: column;
    margin-block: 40px 90px;
  }
  .top-link-actions {
    flex-direction: column;
    row-gap: 30px;
    padding-block: 50px;
  }
  .top-link-actions .action-btn {
    line-height: 3;
  }
}
