@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

ul {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration: none;
}

img,
picture,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    /*animation-duration: 0.01ms !important;*/
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition: none;
  }
}
body,
html {
  height: 100%;
  scroll-behavior: smooth;
}

.nav-wrap {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 1rem 1.5rem 1rem 1rem;
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  width: 90%;
  max-width: 1100px;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  z-index: 10;
}
.nav-wrap .logo-wrap {
  width: 20rem;
}
.nav-wrap .hamburger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  width: 30px;
  height: 30px;
}
.nav-wrap .hamburger-menu span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #a5a5a5;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.nav-wrap .hamburger-menu span:nth-child(1) {
  top: 3px;
}
.nav-wrap .hamburger-menu span:nth-child(2) {
  top: 13px;
}
.nav-wrap .hamburger-menu span:nth-child(3) {
  top: 23px;
}
.nav-wrap .hamburger-menu.open span:nth-child(1) {
  top: 13px;
  transform: rotate(135deg);
}
.nav-wrap .hamburger-menu.open span:nth-child(2) {
  opacity: 0;
  left: -57px;
}
.nav-wrap .hamburger-menu.open span:nth-child(3) {
  top: 13px;
  transform: rotate(-135deg);
}
.nav-wrap .main-nav-list {
  display: flex;
  gap: 1rem;
}
.nav-wrap .main-nav-list .search-wrap {
  display: flex;
  align-items: center;
  margin: auto;
}
.nav-wrap .main-nav-list .search-wrap input {
  padding: 0.5rem 1rem;
  border: 1px solid #378686;
  border-radius: 50px 0 0 50px;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  background-color: rgba(55, 134, 134, 0);
}
.nav-wrap .main-nav-list .search-wrap input:focus, .nav-wrap .main-nav-list .search-wrap input:hover {
  border-color: #378686; /* 輸入框專注狀態顏色 */
  background-color: #fff;
  border-radius: 10px 0 0 10px;
}
.nav-wrap .main-nav-list .search-wrap input:focus + button, .nav-wrap .main-nav-list .search-wrap input:hover + button {
  border-radius: 0 10px 10px 0;
}
.nav-wrap .main-nav-list .search-wrap button {
  padding: 0.5rem 1rem;
  background-color: #378686; /* 按鈕顏色 */
  color: white;
  border: none;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  transition: 0.3s ease;
}
.nav-wrap .main-nav-list .search-wrap button:hover {
  background-color: #2c6b6b; /* 按鈕懸停時顏色 */
}
.nav-wrap .main-nav-list ul {
  display: flex;
}
.nav-wrap .main-nav-list ul li {
  width: 80px;
}
.nav-wrap .main-nav-list ul li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 2px;
  padding: 5px;
  border-radius: 8px;
  transition: 0.3s ease;
}
.nav-wrap .main-nav-list ul li a img {
  width: 2rem;
  height: 2rem;
}
.nav-wrap .main-nav-list ul li a span {
  color: #a5a5a5;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
}
.nav-wrap .main-nav-list ul li a:hover {
  background-color: #f8f79c;
}
.nav-wrap .main-nav-list ul li a:hover span {
  color: #1b1716;
}
@media (max-width: 1100px) {
  .nav-wrap .hamburger-menu {
    display: block;
  }
  .nav-wrap .main-nav-list {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgb(255, 255, 255);
    flex-direction: column;
    padding: 1rem;
    padding-top: 90px;
    border-radius: 44px;
    z-index: -1;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    transition: 0.3s ease;
  }
  .nav-wrap .main-nav-list .search-wrap {
    justify-content: center;
    display: none;
  }
  .nav-wrap .main-nav-list ul {
    justify-content: space-around;
  }
  .nav-wrap .main-nav-list li {
    display: none;
  }
  .nav-wrap .main-nav-list.show {
    opacity: 1;
  }
  .nav-wrap .main-nav-list.show li, .nav-wrap .main-nav-list.show .search-wrap {
    display: flex;
  }
  .nav-wrap .main-nav-list li {
    width: 100%;
  }
  .nav-wrap .main-nav-list li a {
    flex-direction: row;
    justify-content: flex-start;
    padding: 10px;
  }
}

.hero-section {
  margin-top: 8rem;
  padding: 0 40px;
}
@media (max-width: 576px) {
  .hero-section {
    padding: 0 1rem;
  }
}
.hero-section .banner-wrap {
  position: relative;
}
.hero-section .banner-wrap .icon-wrap {
  position: absolute;
  bottom: -4rem;
  left: 50%;
  transform: translate(-50%, 0%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  padding: 30px;
  border-radius: 50rem;
  background-color: #fff;
  color: #a5a5a5;
  background-color: #fff;
  outline: 18px solid #fff;
  border: 10px solid #aadddd;
}
@media (max-width: 768px) {
  .hero-section .banner-wrap .icon-wrap {
    width: 90px;
    height: 90px;
    outline: 10px solid #fff;
    border: 6px solid #aadddd;
  }
}
.hero-section .banner-wrap .icon-wrap img {
  width: 100%;
}
.hero-section .banner-wrap img {
  width: 100%;
  border-radius: 1.2rem;
}
.hero-section .primary-function-wrap {
  padding: 100px 0 0 0;
}
.hero-section .primary-function-wrap ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
}
@media (min-width: 768px) {
  .hero-section .primary-function-wrap ul {
    flex-direction: row;
  }
}
.hero-section .primary-function-wrap ul li a {
  color: #378686;
  background-color: #bbecec;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem 1rem 4rem;
  font-size: clamp(1.3rem, 3vw, 1.5rem);
  font-weight: bold;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 100%;
  border: 1px solid #4daaaa;
  border-radius: 20px;
  box-shadow: 2px 2px 0 2px #4daaaa;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translate(-5px, -5px);
  overflow: hidden;
}
.hero-section .primary-function-wrap ul li a img {
  width: 25%;
  transition: transform 0.3s ease, content 0.3s ease;
  transform: scale(1);
}
.hero-section .primary-function-wrap ul li a:hover, .hero-section .primary-function-wrap ul li a:focus {
  transform: translate(0);
  box-shadow: 0 0 0 0;
  border: 1px solid #4daaaa;
}
.hero-section .primary-function-wrap ul li a:hover a, .hero-section .primary-function-wrap ul li a:focus a {
  background-color: #fff;
}
.hero-section .primary-function-wrap ul li a:hover a img, .hero-section .primary-function-wrap ul li a:focus a img {
  content: url("../img/arrow-right.png");
  transform: scale(0.6);
}

.marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}
.marquee span {
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 3px #d6eaec;
  padding-right: 100px;
  animation: marquee 75s linear infinite;
  letter-spacing: 1px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.news-section {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 50px 0;
}
@media (max-width: 768px) {
  .news-section {
    flex-direction: column;
    padding: 0 40px;
    gap: 20px;
  }
}
.news-section .title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .news-section .title-wrap {
    align-items: center;
  }
}
.news-section .title-wrap h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
.news-section .news-list-wrap {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .news-section .news-list-wrap {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.news-section .news-list-wrap .more-button a {
  display:flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: #378686;
  background-color: #bbecec;
  border-radius: 0.5rem;
  width: 210px;
  padding: 0.5rem;
  font-weight: 600;
  box-shadow: 2px 2px 0 2px #4daaaa;
  transform: translate(-5px, -5px);
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid #4daaaa;
}
.news-section .news-list-wrap .more-button a img {
  width: 15%;
  filter: invert(51%) sepia(23%) saturate(390%) hue-rotate(121deg) brightness(93%) contrast(84%);
  transform: rotate(-45deg);
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.news-section .news-list-wrap .more-button a:hover, .news-section .news-list-wrap .more-button a:focus {
  transform: translate(0);
  box-shadow: 0 0 0 0;
  border: 1px solid #4daaaa;
  background-color: #fff;
}
.news-section .news-list-wrap .more-button a:hover img, .news-section .news-list-wrap .more-button a:focus img {
  transform: rotate(0deg);
}
.news-section .news-list-wrap .news-wrap {
  background-color: #fff;
  border-radius: 2rem;
  font-size: 1.3rem;
  width: 100%;
}
.news-section .news-list-wrap .news-wrap li a {
  display: flex;
  gap: 1rem;
  color: #4daaaa;
  border-bottom: 1px solid #e2e3f3;
  padding: 10px;
  transition: 0.3s ease;
}
.news-section .news-list-wrap .news-wrap li a .date {
  color: #e48e1d;
}

.news-section .news-list-wrap .news-wrap li a .category {
    color: #DB1207;
    white-space: nowrap;
}

.news-section .news-list-wrap .news-wrap li a:hover {
    background-color: #f8f79c;
    border-bottom: 1px dashed #a5a5a5;
}

.popular-section {
  padding: 4rem;
  background-color: #8bd6d6;
  position: relative;
  z-index: 1;
}
@media (max-width: 576px) {
  .popular-section {
    padding: 1.3rem 1rem;
  }
}
.popular-section .popular-bottom-bgc {
  position: absolute;
  bottom: 0;
  right: 0;
}
.popular-section::before {
  content: "";
  position: absolute;
  background-image: url(../img/popular-bg-top.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.popular-section .section-title-span {
  color: #fff;
}
@media (max-width: 992px) {
  .popular-section .title-wrap {
    text-align: center;
  }
}
.popular-section .popular-list-wrap {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
  font-size: 1.3rem;
  margin-bottom: -100px;
}
@media (max-width: 576px) {
  .popular-section .popular-list-wrap {
    font-size: 1rem;
    gap: 1rem;
  }
}
.popular-section .popular-list-wrap li a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: #a5a5a5;
  font-weight: bold;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 200px;
  background-color: #fff;
  padding: 0.8rem;
  border: 1px solid #4daaaa;
  border-radius: 20px;
  box-shadow: 2px 2px 0 2px #4daaaa;
  transform: translate(-5px, -5px);
  text-align: center;
}
.popular-section .popular-list-wrap li a img {
  width: 50%;
}
.popular-section .popular-list-wrap li a:hover, .popular-section .popular-list-wrap li a:focus {
  color: #1b1716;
  transform: translate(0);
  box-shadow: 0 0 0 0;
  border: 1px solid #4daaaa;
  background-color: #f8f79c;
}
@media (max-width: 576px) {
  .popular-section .popular-list-wrap li a {
    width: 150px;
  }
}

.statistics-section {
  margin-top: 100px;
  padding: 4rem;
}
@media (max-width: 992px) {
  .statistics-section {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .statistics-section {
    padding: 1rem;
  }
}
@media (max-width: 992px) {
  .statistics-section .title-wrap {
    margin-bottom: 140px;
    text-align: center;
  }
}
@media (max-width: 572px) {
  .statistics-section .title-wrap {
    margin-bottom: 100px;
  }
}
.statistics-section .statistics-list-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  width: 100%;
  margin-top: 6.5rem;
}
.statistics-section .statistics-list-wrap .open-modal {
  width: 330px;
  background-color: #fff;
  border-radius: 1rem;
  border: 1px solid #4daaaa;
  box-shadow: 2px 2px 0 2px #4daaaa;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translate(-5px, -5px);
  padding: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  cursor: pointer;
}
@media (max-width: 992px) {
  .statistics-section .statistics-list-wrap .open-modal {
    width: 220px;
  }
}
@media (max-width: 992px) {
  .statistics-section .statistics-list-wrap .open-modal {
    margin-bottom: 3rem;
  }
}
.statistics-section .statistics-list-wrap .open-modal::before {
  content: "";
  position: absolute;
  opacity: 0;
  top: -118px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0px;
  height: 0px;
  background-color: #c9e0e6;
  border-radius: 150px;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@media (max-width: 992px) {
  .statistics-section .statistics-list-wrap .open-modal::before {
    top: -88px;
  }
}
@media (max-width: 992px) {
  .statistics-section .statistics-list-wrap .open-modal::before {
    top: -68px;
  }
}
.statistics-section .statistics-list-wrap .open-modal:hover, .statistics-section .statistics-list-wrap .open-modal:focus {
  transform: translate(0);
  box-shadow: 0 0 0 0;
  border: 1px solid #4daaaa;
  background-color: #f8f79c;
}
.statistics-section .statistics-list-wrap .open-modal:hover::before, .statistics-section .statistics-list-wrap .open-modal:focus::before {
  width: 120px;
  height: 120px;
  opacity: 1;
}
@media (max-width: 992px) {
  .statistics-section .statistics-list-wrap .open-modal:hover::before, .statistics-section .statistics-list-wrap .open-modal:focus::before {
    width: 80px;
    height: 80px;
  }
}
.statistics-section .statistics-list-wrap .open-modal span {
  font-size: clamp(1rem, 4vw, 1.4rem);
  color: #000000;
  font-weight: bold;
}
.statistics-section .statistics-list-wrap .open-modal .statistics-tag {
  padding: 0.5rem;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  width: 80px;
  text-align: center;
}
.statistics-section .statistics-list-wrap .open-modal .tag-year-color {
  background-color: #fecf31;
  color: #97770e;
}
.statistics-section .statistics-list-wrap .open-modal .tag-now-color {
  background-color: #cacceb;
  color: #3b3f79;
}
.statistics-section .statistics-list-wrap .open-modal img {
  position: absolute;
  width: 50%;
  top: -8rem;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 50rem;
}
@media (max-width: 992px) {
  .statistics-section .statistics-list-wrap .open-modal img {
    top: -5rem;
  }
}
.statistics-section .statistics-list-wrap .open-modal .count-wrap {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.statistics-section .statistics-list-wrap .open-modal .count-wrap span:nth-child(1) {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 700;
  color: #e48e1d;
}

.web-link-section {
  position: relative;
  background-color: #8bd6d6;
  margin-bottom: -250px;
  padding-bottom: 250px;
}
.web-link-section .section-bg-top {
  position: absolute;
  top: 0;
}
.web-link-section .title-wrap {
  padding-top: 4rem;
  text-align: center;
}
.web-link-section .title-wrap .section-title-span {
  color: #fff;
}
.web-link-section .web-link-list-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0 4rem 0;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (max-width: 576px) {
  .web-link-section .web-link-list-wrap {
    gap: 1rem;
  }
}
.web-link-section .web-link-list-wrap li a {
  display: flex;
  width: 200px;
  box-shadow: 2px 2px 0 2px #4daaaa;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translate(-5px, -5px);
  border-radius: 1rem;
  overflow: hidden;
}
@media (max-width: 576px) {
  .web-link-section .web-link-list-wrap li a {
    width: 160px;
  }
}
.web-link-section .web-link-list-wrap li a img {
  width: 100%;
}
.web-link-section .web-link-list-wrap li a:hover, .web-link-section .web-link-list-wrap li a:focus {
  transform: translate(0);
  box-shadow: 0 0 0 0;
  outline: 10px solid #fff;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  justify-content: center;
  align-items: center;
}
.modal-overlay .modal-content {
  background-color: #e4e4e4;
  width: 90%;
  max-width: 1200px;
  height: 80%;
  padding: 2rem 1.2rem 1.2rem 1.2rem;
  border-radius: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 5px 5px 0 4px #4daaaa;
  transform: translate(-5px, -5px);
}
.modal-overlay .modal-content .modal-iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 5px;
  border-radius: 20px;
}
.modal-overlay .modal-content .close-modal {
  position: absolute;
  top: 12px;
  right: 12px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border: 2px solid #4daaaa;
  background-color: #4daaaa;
  border-radius: 50px;
  transition: 0.3s ease;
}
.modal-overlay .modal-content .close-modal::after, .modal-overlay .modal-content .close-modal::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 5px;
  width: 20px;
  border-radius: 50px;
  background-color: #ffffff;
  transition: 0.5s ease;
}
.modal-overlay .modal-content .close-modal::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-overlay .modal-content .close-modal::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal-overlay .modal-content .close-modal:hover {
  background-color: #fff;
}
.modal-overlay .modal-content .close-modal:hover::after, .modal-overlay .modal-content .close-modal:hover::before {
  background-color: #4daaaa;
}
.modal-overlay .modal-content .close-modal:hover::after {
  transform: translate(-50%, -50%) rotate(225deg);
}
.modal-overlay .modal-content .close-modal:hover::before {
  transform: translate(-50%, -50%) rotate(135deg);
}

footer {
  position: relative;
}
footer .footer-bg-top {
  width: 100%;
}
footer .footer-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #1b1716;
  border-bottom: 2px solid #686868;
  padding: 1rem;
  margin-top: -0.1rem;
}
footer .footer-body .footer-logo-wrap {
  width: 7rem;
  height: 7rem;
  background-color: #8bd6d6;
  border-radius: 50rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}
footer .footer-body .footer-logo-wrap img {
  width: 80%;
}
footer .footer-body p {
  color: #fff;
  margin-bottom: 0.4rem;
  font-size: 1.3rem;
}
footer .footer-body .footer-main-title {
  text-align: center;
}
footer .footer-body .social-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
}
footer .footer-body .social-wrap li a {
  background-color: #fff;
  border: 2px solid #1b1716;
  border-radius: 50rem;
  width: 3.5rem;
  height: 3.5rem;
  transition: 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer-body .social-wrap li a img {
  width: 65%;
}
footer .footer-body .social-wrap li a:hover {
  border: 2px solid #fff;
  background-color: #1b1716;
}
footer .footer-body .social-wrap li a:hover img {
  filter: invert(1);
}
footer .footer-body .footer-info-wrap {
  gap: 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 3rem;
}
@media (max-width: 992px) {
  footer .footer-body .footer-info-wrap {
    flex-direction: column;
    gap: 1rem;
  }
}
footer .footer-body .footer-info-wrap .info-wrap {
  text-align: end;
}
@media (max-width: 992px) {
  footer .footer-body .footer-info-wrap .info-wrap {
    text-align: center;
  }
}
footer .footer-body .footer-info-wrap .info-wrap p {
  font-size: 1rem;
  padding: 0.5rem;
  margin-bottom: 0.2rem;
}
footer .footer-body .footer-info-wrap .link-wrap {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
footer .footer-body .footer-info-wrap .link-wrap li {
  width: 10rem;
}
footer .footer-body .footer-info-wrap .link-wrap li a {
  color: #1b1716;
  height: 100%;
  background-color: #fff;
  border: 2px solid #1b1716;
  margin-bottom: 0.2rem;
  border-radius: 0.5rem;
  transition: 0.3s ease;
  padding: 0.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
footer .footer-body .footer-info-wrap .link-wrap li a:hover {
  border: 2px solid #fff;
  background-color: #1b1716;
  color: #fff;
}
footer .footer-bottom {
  padding: 1rem 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  background-color: #1b1716;
  color: #fff;
}
footer .footer-bottom img {
  width: 100px;
}

.sub-page-title-section {
  margin: 8rem 30px 0 30px;
  background-color: #8bd6d6;
  border-radius: 1.2rem;
  max-width: 1200px;
}
@media (min-width: 1270px) {
  .sub-page-title-section {
    margin: 8rem auto 0 auto;
  }
}
@media (max-width: 576px) {
  .sub-page-title-section {
    margin: 8rem 10px 0 10px;
  }
}
.sub-page-title-section .title-wrap {
  padding: 0 30px 40px 30px;
}
.sub-page-title-section .title-wrap .section-title-span {
  color: #fff;
}

.text-content-section {
  margin: 30px;
  max-width: 1200px;
}
@media (min-width: 1270px) {
  .text-content-section {
    margin: 30px auto 30px auto;
  }
}
@media (max-width: 576px) {
  .text-content-section {
    margin: 10px;
  }
}
.text-content-section .text-content-wrap {
  padding: 30px;
}
@media (max-width: 576px) {
  .text-content-section .text-content-wrap {
    padding: 10px;
  }
}
.text-content-section .text-content-wrap .h3-title-wrap {
  border-bottom: 4px solid #8bd6d6;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
@media (max-width: 768px) {
  .text-content-section .text-content-wrap .h3-title-wrap {
    flex-direction: column-reverse;
    align-items: start;
  }
}
.text-content-section .text-content-wrap .h3-title-wrap h3 {
  font-size: 1.8rem;
}
.text-content-section .text-content-wrap .h3-title-wrap span {
  color: #8bd6d6;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 1px;
}
.text-content-section .text-content-wrap .h3-detail-wrap {
  line-height: 1.8;
}
.text-content-section .text-content-wrap .h3-detail-wrap p {
  color: #757575;
  margin-top: 5px;
  margin-bottom: 20px;
}
.text-content-section .text-content-wrap .h3-detail-wrap span {
  background-color: #535353;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  box-shadow: 2px 2px 0 2px #2c2c2c;
  margin-right: 5px;
}

.sitemap-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .sitemap-container {
    flex-direction: column;
    align-items: center;
  }
}
.sitemap-container .sitemap-item {
  flex: 1;
  min-width: 250px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.sitemap-container .sitemap-item h4 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #4e4e4e;
}
.sitemap-container .sitemap-item ul li {
  margin-bottom: 10px;
}
.sitemap-container .sitemap-item ul li a {
  font-size: 18px;
  color: #333;
  transition: color 0.3s ease;
}
.sitemap-container .sitemap-item ul li a:hover {
  color: #007bff;
  font-weight: bold;
}

.breadcrumb {
  font-size: 16px;
  display: flex;
  margin-bottom: 30px;
  border-radius: 1.1rem 1.1rem 0 0;
  background-color: #f5f5f5;
  padding: 10px 15px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.breadcrumb a {
  text-decoration: none;
  color: #4daaaa;
  position: relative;
  padding: 0 8px;
  transition: 0.3s ease;
}
.breadcrumb a:hover {
  color: #0056b3;
}
.breadcrumb a::after {
  content: ">";
  margin-left: 10px;
  color: #555;
}
.breadcrumb span {
  color: #e48e1d;
  font-weight: bold;
}

* {
  font-family: "Roboto", sans-serif;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  white-space: nowrap;
}

a:focus,
button:focus {
  outline: 3px dashed #4daaaa;
}

body {
  background-color: #ffffff;
}

.section-title-span {
  color: #a5a5a5;
  font-size: 2rem;
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}/*# sourceMappingURL=style.css.map */