/*default-color*/
/*border-color*/
/*font*/
/*main-btn*/
@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);
*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: "Noto Sans TC", serif;
}

body {
  margin: 0 auto;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 14px;
  background: white;
  text-align: center;
  overflow-x: hidden;
  font-weight: normal;
}

header {
  display: flex;
  justify-content: space-around;
  min-height: 160px;
  position: relative;
}
header h1 {
  color: #2A5E8C;
  align-content: center;
}
header h1 a {
  color: #2A5E8C;
  text-decoration: none;
}
header h1 a:hover {
  opacity: 0.7;
}

nav {
  transition: all 0.3s ease;
  display: block;
  align-content: center;
}
nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  font-size: 24px;
  color: #000;
  display: block;
  float: left;
  position: relative;
  text-decoration: none;
  transition-duration: 0.5s;
  padding-inline: 1rem;
  padding-block: 1rem;
}
nav ul li a {
  color: #000;
  text-decoration: none;
}
nav ul li a span {
  margin-inline-start: 10px;
}
nav ul li a:hover {
  color: #2A5E8C;
  cursor: pointer;
  font-weight: 500;
}
nav ul li a:focus-within {
  color: #2A5E8C;
  font-weight: 500;
  cursor: pointer;
}
nav ul li a:focus-within a {
  outline: none;
}
nav ul li ul {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  transition: all 0.5s ease;
  left: 0;
  display: none;
}
nav ul li ul li {
  clear: both;
  width: 100%;
}
@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  nav.active {
    max-height: max-content;
    padding: 1rem 0;
  }
  nav ul {
    flex-direction: column;
    padding: 0 1rem;
  }
  nav ul li {
    margin: 1rem 0;
    text-align: center;
  }
}

ul li:hover > ul,
ul li:focus-within > ul,
ul li ul:hover,
ul li ul:focus {
  color: #2A5E8C;
  visibility: visible;
  opacity: 1;
  display: block;
  background: #fff;
  border-radius: 30px;
  white-space: nowrap;
  padding-inline: 1rem;
  padding-block: 1rem;
  position: absolute;
  z-index: 99;
}
@media (max-width: 768px) {
  ul li:hover > ul,
  ul li:focus-within > ul,
  ul li ul:hover,
  ul li ul:focus {
    visibility: visible;
    opacity: 1;
    position: relative;
    display: block;
  }
}

.hamburger {
  display: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1000;
  align-content: center;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
}

.btn-goto {
  background: #2A5E8C;
  border-radius: 30px;
  padding-inline: 2rem;
  padding-block: 0.8rem;
  color: #fff;
  border: 2px solid #2A5E8C;
}
.btn-goto:hover {
  color: #000;
  background: none;
  border: 2px solid #2A5E8C;
}

.main-image {
  margin: 0 auto;
  border-radius: 64px;
  width: 100%;
  height: 650px;
  overflow: hidden;
  position: relative;
  top: 0;
  z-index: -1;
  background: url("../images/index-image.webp") center center no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  .main-image {
    height: 420px;
  }
}
.main-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.open-info-board {
  background: #fff;
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-top: -100px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .open-info-board {
    flex-direction: column;
    align-items: center;
  }
}

.open-info-weeks {
  margin: 1rem;
}
.open-info-weeks table {
  font-size: 20px;
}
@media (max-width: 768px) {
  .open-info-weeks table {
    width: 100%;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
.open-info-weeks table tr td {
  text-align: left;
  padding: 0.8em;
}
@media (max-width: 768px) {
  .open-info-weeks table tr td {
    padding: 4px;
  }
}
.open-info-weeks table tr td img {
  vertical-align: middle;
  padding-inline: 0.5em;
}
@media (max-width: 768px) {
  .open-info-weeks table tr td img {
    padding-inline: 2px;
  }
}
@media (max-width: 768px) {
  .open-info-weeks {
    width: 90%;
  }
}

.space-line {
  width: 1px;
  height: auto;
  background: #A2A3A3;
  padding-block: 1rem;
  margin-block: 1rem;
  margin-inline: 2rem;
}
@media (max-width: 768px) {
  .space-line {
    width: 80%;
    padding-block: 0.5px;
    margin-block: 1px;
    margin-inline: 2px;
  }
}

article {
  padding-block: 48px;
}

.main-container {
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .main-container {
    width: 96%;
  }
}
.main-container .paragraph-cont span {
  font-size: 20px;
  color: #96C7F2;
  margin: 0;
}
.main-container .paragraph-cont h1 {
  font-size: 36px;
  color: #000;
  margin: 0;
}
.main-container .paragraph-cont p {
  margin: 0;
  font-size: 20px;
}
@media (max-width: 768px) {
  .main-container .paragraph-cont {
    display: flex !important;
    flex-direction: column !important;
  }
}

.flex-paragraph-cont {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8%;
}
.flex-paragraph-cont .paragraph-box {
  width: auto;
  flex: 1;
  text-align: center;
}
@media (max-width: 768px) {
  .flex-paragraph-cont .paragraph-box {
    flex: 100% !important;
  }
}

.index-ic {
  background: #EAF4FC;
  width: 200px;
  height: 200px;
  display: block;
  align-content: center;
  text-align: center;
  margin: 0 auto;
}
.index-ic p {
  padding: 0;
  margin: 0;
  font-size: 20px;
  color: #2A5E8C;
  font-weight: bold;
}
.index-ic img {
  width: 120px;
  height: 120px;
}

.article-theme-blue {
  background: #EAF4FC;
}

.article-theme-white {
  background: #fff;
}

.article-theme-main-blue {
  background: #2A5E8C;
}

.the-arrow {
  width: 16px;
  transition: all 0.2s;
}
.the-arrow.-left {
  position: absolute;
  top: 50%;
  left: 6px;
}
.the-arrow.-left > .shaft {
  width: 0;
  background-color: #000;
}
.the-arrow.-left > .shaft:before, .the-arrow.-left > .shaft:after {
  width: 0;
  background-color: #000;
}
.the-arrow.-left > .shaft:before {
  transform: rotate(0);
}
.the-arrow.-left > .shaft:after {
  transform: rotate(0);
}
.the-arrow.-right > .shaft {
  width: 16px;
  transition-delay: 0.2s;
}
.the-arrow.-right > .shaft:before, .the-arrow.-right > .shaft:after {
  width: 8px;
  transition-delay: 0.3s;
  transition: all 0.5s;
}
.the-arrow.-right > .shaft:before {
  transform: rotate(40deg);
}
.the-arrow.-right > .shaft:after {
  transform: rotate(-40deg);
}
.the-arrow > .shaft {
  background-color: #000;
  display: block;
  height: 1px;
  position: relative;
  transition: all 0.2s;
  transition-delay: 0;
  will-change: transform;
}
.the-arrow > .shaft:before, .the-arrow > .shaft:after {
  background-color: #000;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.2s;
  transition-delay: 0;
}
.the-arrow > .shaft:before {
  transform-origin: top right;
}
.the-arrow > .shaft:after {
  transform-origin: bottom right;
}

.animated-arrow {
  display: block;
  width: 100%;
  max-width: 280px;
  white-space: nowrap;
  color: #96C7F2;
  font-size: 20px;
  position: relative;
  transition: all 0.2s;
  background: #96C7F2;
  text-decoration: none;
  border: 1px solid #96C7F2;
  box-shadow: 0px 1px 2px rgba(105, 81, 255, 0.05);
  padding: 16px;
  overflow: hidden;
}
.animated-arrow:hover {
  color: #000;
  background: none;
  border: 1px solid #96C7F2;
}
.animated-arrow:hover > .the-arrow.-left > .shaft {
  width: 16px;
  transition-delay: 0.1s;
  background-color: #000;
}
.animated-arrow:hover > .the-arrow.-left > .shaft:before, .animated-arrow:hover > .the-arrow.-left > .shaft:after {
  width: 8px;
  transition-delay: 0.1s;
  background-color: #000;
}
.animated-arrow:hover > .the-arrow.-left > .shaft:before {
  transform: rotate(40deg);
}
.animated-arrow:hover > .the-arrow.-left > .shaft:after {
  transform: rotate(-40deg);
}
.animated-arrow:hover > .main-text-cont {
  transform: translateX(28px);
}
.animated-arrow:hover > .main-text-cont > .the-arrow.-right > .shaft {
  width: 0;
  transform: translateX(200%);
  transition-delay: 0;
}
.animated-arrow:hover > .main-text-cont > .the-arrow.-right > .shaft:before, .animated-arrow:hover > .main-text-cont > .the-arrow.-right > .shaft:after {
  width: 0;
  transition: all 0.1s;
  transition-delay: 0;
}
.animated-arrow:hover > .main-text-cont > .the-arrow.-right > .shaft:before {
  transform: rotate(0);
}
.animated-arrow:hover > .main-text-cont > .the-arrow.-right > .shaft:after {
  transform: rotate(0);
}
.animated-arrow > .main-text-cont {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s;
}
.animated-arrow > .main-text-cont > .main-text-cont-span {
  color: #000;
  margin: 0 12px 0 0;
  line-height: 1;
}
.animated-arrow > .main-text-cont > .the-arrow {
  position: relative;
}

.main-btn-to-booking {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.case-image {
  padding-top: 5%;
  position: relative;
  z-index: 1;
}

.case-container {
  width: 684px;
  height: fit-content;
  background: #fff;
  border-radius: 50px;
  padding-block: 84px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 0;
}
@media (max-width: 768px) {
  .case-container {
    width: 100%;
  }
}
.case-container .case-tag {
  display: block;
  position: absolute;
  margin: 0 auto;
  background: #96C7F2;
  min-height: 60px;
  width: 60%;
  top: -12px;
}
.case-container .case-cont {
  text-align: left;
  display: inline-block;
  width: 60%;
  position: relative;
}
.case-container .case-cont .case-cont-top {
  display: flex;
}
.case-container .case-cont .case-cont-top .case-cont-title span {
  color: #96C7F2;
  font-size: 20px;
}
.case-container .case-cont .case-cont-top .case-cont-title h2 {
  font-size: 32px;
  margin: 0;
}
.case-container .case-cont .case-cont-top .case-ic {
  align-content: flex-end;
}
.case-container .case-cont p {
  font-size: 20px;
  border-bottom: 1px solid #C3C3C3;
  line-height: 32px;
  padding-bottom: 12px;
  position: relative;
  left: 48px;
}
.case-container .case-cont p::before {
  width: 32px;
  height: 32px;
  background: url("../images/ic-check.svg") no-repeat 0 0;
  content: "";
  display: inline-block;
  position: absolute;
  left: -48px;
}

.director-container {
  display: flex;
  background: #EAF4FC;
  padding: 2.2rem;
  gap: 2rem;
}
.director-container .director-container-cont {
  text-align: left;
}
.director-container .director-container-cont .director-container-title {
  display: flex;
}
.director-container .director-container-cont .director-container-title h1 {
  font-size: 36px;
}
.director-container .director-container-cont p {
  font-size: 20px;
}
@media (max-width: 768px) {
  .director-container {
    display: flex;
    flex-direction: column;
  }
}

footer {
  color: #fff;
}

/*extend*/
.set-center, .flex-paragraph-cont .paragraph-box, .index-ic {
  justify-content: center;
  align-items: center;
}

.text-left {
  text-align: left;
}

.box-corner, .index-ic {
  border-radius: 12px;
}

.box-corner-large, .animated-arrow, .director-container {
  border-radius: 30px;
}

.mt-0 {
  margin-top: 0;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-48 {
  margin-top: 48px;
}

.border-radius-64, .open-info-board, .article-theme-blue, .article-theme-white, .article-theme-main-blue {
  border-top-left-radius: 64px;
  border-top-right-radius: 64px;
}

.border-radius-30, .case-container .case-tag {
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.bg-blue {
  background: #EAF4FC;
}

.display-inline {
  display: inline-block;
}

.hide-cont {
  display: none;
}

.flex-container-center {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .flex-container-center {
    flex-direction: column;
    align-items: center;
  }
}

.flex-container-end {
  display: flex;
  justify-content: flex-end;
}

.relative-container {
  position: relative;
}

.right-cont {
  position: relative;
  right: 2%;
}
@media (max-width: 768px) {
  .right-cont {
    /*left: auto;
    height: 30vh;
    overflow: hidden;*/
    display: none;
  }
}

.left-cont {
  position: relative;
  left: 5%;
}
@media (max-width: 768px) {
  .left-cont {
    /*left: auto;
    height: 30vh;
    overflow: hidden;*/
    display: none;
  }
}
.left-cont img {
  object-fit: contain;
}
@media (max-width: 768px) {
  .left-cont img {
    object-fit: cover;
  }
}

.dash-line {
  margin-block: 0.8rem;
  display: block;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #000 0%, #000 20%, transparent 20%);
  background-size: 16px 1px;
  background-repeat: repeat-x;
}

.trans-container {
  display: flex;
  gap: 24px;
  margin-block: 46px;
}
@media (max-width: 768px) {
  .trans-container {
    flex-direction: column;
  }
}

.address-container, .parking-container, .mrt-container {
  display: flex;
  padding: 48px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  border-radius: 50px;
  border: 0.5px solid #96C7F2;
  background: #FFF;
}
.address-container h3, .parking-container h3, .mrt-container h3 {
  margin: 0;
}
.address-container p, .parking-container p, .mrt-container p {
  font-size: 20px;
  text-align: left;
  margin: 0;
}

.address-cont-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.address-cont-title h2 {
  font-size: 36px;
  margin: 0;
}
.address-cont-title .address-ic {
  width: 64px;
  height: 64px;
}

.trans-container-slider {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-tab-container {
  display: flex;
  flex-direction: column;
  justify-items: center;
  justify-content: space-between;
}
.faq-tab-container ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
}
.faq-tab-container ul li {
  cursor: pointer;
  display: flex;
  flex: 0 0 22%;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 12px;
  border-radius: 30px;
  border: 1px solid #ABD2F5;
}
.faq-tab-container ul li.active {
  border: 1px solid #EAF4FC;
  background: #96C7F2;
}
@media (max-width: 768px) {
  .faq-tab-container ul li {
    flex: 0 0 40%;
  }
}

.qa-container-label {
  display: none;
}
.qa-container-label.active {
  display: block;
}

.qa-container {
  display: flex;
  padding: 48px 64px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  border-radius: 60px;
  background: #EAF4FC;
  margin-block: 24px;
}
.qa-container .qa-title {
  font-size: 24px;
}
.qa-container .qa-anwser {
  display: flex;
  padding: 31px 22px;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  border-radius: 20px;
  background: #FFF;
}

.about-container {
  display: flex;
  margin-block: 48px;
}
@media (max-width: 768px) {
  .about-container {
    flex-direction: column-reverse;
  }
}
.about-container .about-container-l {
  margin-right: 60px;
  text-align: left;
}
.about-container .about-container-l h4 {
  color: #2A5E8C;
  font-size: 20px;
  margin-block: 20px;
}
.about-container .about-container-l p {
  font-size: 20px;
}
.about-container .about-container-l .signin-image {
  text-align: right;
}

.about-container-section {
  display: flex;
  padding: 50px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  border-radius: 60px;
  background: #FFF;
  margin-block: 48px;
}

.about-container-section-container {
  display: flex;
  text-align: left;
  gap: 36px;
  width: 100%;
}

.about-container-article {
  width: 50%;
}
.about-container-article.w100 {
  width: 100%;
}
.about-container-article h5 {
  font-size: 20px;
  margin-block: 6px;
}
.about-container-article p {
  margin-block: 6px;
  font-size: 20px;
}

.about-container-section-cont {
  text-align: left;
}
.about-container-section-cont p {
  margin-block: 6px;
  font-size: 24px;
}

.contact-container {
  display: flex;
}
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

.sub-title {
  font-size: 20px;
  margin-block-start: 14px;
}

.contact-box {
  display: flex;
  padding: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  border-radius: 30px;
  border: 1px solid #ABD2F5;
  background: #FFF;
  margin: 54px;
}
.contact-box h2 {
  margin-block: 6px;
  font-size: 32px;
}
.contact-box p {
  margin-block: 6px;
  font-size: 20px;
}
.contact-box p a {
  font-size: 20px;
  text-decoration: none;
  color: #000;
}
.contact-box p a:hover {
  opacity: 0.7;
}

.footer-container-top {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer-container-top {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.footer-container-title {
  font-size: 32px;
  font-weight: bold;
  margin-inline-start: 10%;
}
@media (max-width: 768px) {
  .footer-container-title {
    margin-inline-start: 0%;
  }
}

.footer-container-des {
  text-align: left;
  margin-inline-start: 10%;
}
@media (max-width: 768px) {
  .footer-container-des {
    margin-inline-start: 0%;
  }
}
.footer-container-des p {
  font-size: 20px;
  margin-block: 6px;
}
@media (max-width: 768px) {
  .footer-container-des {
    text-align: center;
  }
}

.footer-container-icon {
  display: flex;
  gap: 8px;
  margin-inline-end: 10%;
}
@media (max-width: 768px) {
  .footer-container-icon {
    margin-inline-end: 0%;
  }
}
.footer-container-icon .footer-container-icon-image img {
  width: 48px;
  height: 48px;
}

.white-btn {
  background: #fff;
}
.white-btn:hover {
  background: #fff;
}

.caselist-container {
  display: flex;
  margin-block: 48px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.caselist-container .caselist-box {
  width: 363px;
  height: 382px;
  flex-shrink: 0;
  border-radius: 38px;
  background: #FFF;
  text-align: left;
}
.caselist-container .caselist-box .caselist-box-image {
  width: 363px;
  height: 50%;
  overflow: hidden;
  border-top-left-radius: 38px;
  border-top-right-radius: 38px;
  display: flex;
  align-items: center;
}
.caselist-container .caselist-box .caselist-box-image img {
  width: 100%;
}
.caselist-container .caselist-box .caselist-box-des {
  margin-block-start: 30px;
  margin-inline: 18px;
  font-size: 24px;
}
.caselist-container .caselist-box .caselist-box-des a {
  color: #000;
  text-decoration: none;
}
.caselist-container .caselist-box .caselist-box-des a:hover {
  opacity: 0.7;
}
.caselist-container .caselist-box .caselist-box-date {
  margin-block-end: 30px;
  margin-inline: 18px;
  font-size: 20px;
  color: #737476;
}

.case-detail-image {
  margin: 0 auto;
  border-radius: 64px;
  width: 100%;
  overflow: hidden;
  position: relative;
  top: 0;
}
.case-detail-image .slider {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
}
.case-detail-image .slider .slide-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.case-detail-image .slider .slide-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}
.case-detail-image .slider .slide-track .slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}
.case-detail-image .slider .slide-track .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-detail-image .slider .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  cursor: pointer;
  z-index: 100;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  outline: none;
}
.case-detail-image .slider .slider-btn:hover {
  background: rgba(255, 255, 255, 0.9);
}
.case-detail-image .slider .slider-btn.prev-btn {
  left: 20px;
}
.case-detail-image .slider .slider-btn.next-btn {
  right: 20px;
}
.case-detail-image img {
  display: block;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .case-detail-image {
    height: 30vh;
  }
}

.case-detail-title {
  margin-block-start: 30px;
  margin-inline: 70px;
  display: flex;
  text-align: left;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .case-detail-title {
    flex-direction: column;
    margin-block-start: 10px;
    margin-inline: 10px;
    align-items: flex-start;
  }
}
.case-detail-title .case-detail-title-cont {
  font-size: 32px;
}
.case-detail-title .case-detail-title-date {
  font-size: 20px;
  color: #737476;
}

.case-detail-hashtag {
  margin-inline: 70px;
  text-align: left;
  font-size: 20px;
  color: #2A5E8C;
}
@media (max-width: 768px) {
  .case-detail-hashtag {
    margin-inline: 10px;
  }
}

.case-detail-cont {
  margin-inline: 70px;
  text-align: left;
  font-size: 20px;
  margin-block: 24px;
}
.case-detail-cont p {
  font-size: 20px;
  margin-block: 12px;
}
@media (max-width: 768px) {
  .case-detail-cont {
    margin-inline: 10px;
  }
}

.googlemap-container {
  width: 100%;
  min-height: 368px;
}
.googlemap-container iframe {
  width: 100%;
  min-height: 368px;
}
@media (max-width: 768px) {
  .googlemap-container iframe {
    width: 100%;
    min-height: 240px;
  }
}
@media (max-width: 768px) {
  .googlemap-container {
    min-height: 240px;
  }
}

.zoomD {
  width: 300px;
  height: auto;
  /* ease | ease-in | ease-out | linear */
  transition: all ease-in-out 0.4s;
  cursor: zoom-in;
}

/* LIGHTBOX BACKGROUND */
#lb-back {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: all ease-in-out 0.4s;
  /* ease | ease-in | ease-out | linear
  transition: transform ease-in-out 0.5s; */
}

#lb-back.show {
  visibility: visible;
  opacity: 1;
}

/* LIGHTBOX IMAGE */
#lb-img {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}

#lb-img img {
  /* FULL WIDTH IMAGE
  width: 100%;
  height: auto;
  cursor: zoom-out; 
  */
  /* MAX WIDTH 1200px IMAGE */
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  cursor: zoom-out;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
  gap: 20px;
}

.pagination .prev-page,
.pagination .next-page {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.pagination .prev-page:hover,
.pagination .next-page:hover {
  background-color: #f5f5f5;
}

.pagination .prev-page.disabled,
.pagination .next-page.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.pagination .page-numbers {
  display: flex;
  gap: 8px;
}

.pagination .page-numbers a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pagination .page-numbers a:hover {
  background-color: #f5f5f5;
}

.pagination .page-numbers a.active {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
}

.user-share-cont {
  display: flex;
  width: 80%;
  margin: 80px auto;
}
.user-share-cont .user-share-cont-talk-left {
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(150, 199, 242, 0.25);
  display: flex;
  align-items: center;
  padding: 30px;
  font-size: 20px;
  position: relative;
  margin-right: 48px;
  text-align: left;
}
.user-share-cont .user-share-cont-talk-left::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 32px;
  background: url("../images/talk-ic01.png") center center no-repeat;
  right: -24px;
}
.user-share-cont .user-share-cont-talk-right {
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(150, 199, 242, 0.25);
  display: flex;
  align-items: center;
  padding: 30px;
  font-size: 20px;
  position: relative;
  margin-left: 48px;
  text-align: left;
}
.user-share-cont .user-share-cont-talk-right::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 32px;
  background: url("../images/talk-ic01.png") center center no-repeat;
  background-size: contain;
  left: -24px;
  transform: scaleX(-1);
}
.user-share-cont .user-share-cont-img {
  width: 142px;
  height: 142px;
}

.info-page-cont {
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(150, 199, 242, 0.25);
  padding-inline: 50px;
  position: relative;
  padding-block: 70px;
}
.info-page-cont::before {
  position: absolute;
  content: "";
  background: url("../images/info-page-ic02.svg") center center no-repeat;
  height: 38px;
  width: 100%;
  left: 0;
  top: -15px;
}
.info-page-cont h2 {
  font-size: 32px;
  margin: 70px auto 48px auto;
}
.info-page-cont h2 span {
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-decoration-skip-ink: none;
  text-decoration-color: #4CB3FA;
  text-decoration-thickness: 11%;
  text-underline-offset: 25%;
  text-underline-position: from-font;
  position: relative;
}
.info-page-cont h2 span::after {
  position: absolute;
  content: "";
  background: url("../images/info-page-ic08.svg") center center no-repeat;
  width: 20px;
  height: 20px;
  top: -12px;
  right: -12px;
}
.info-page-cont p {
  font-size: 20px;
}

.info-page-chk-cont p {
  position: relative;
  text-align: left;
  padding-left: 52px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-color: #C3C3C3;
  text-decoration-thickness: 3.5%; /* 0.7px */
  text-underline-offset: 20%; /* 10px */
  text-underline-position: from-font;
}
.info-page-chk-cont p span {
  color: #4CB3FA;
}
.info-page-chk-cont p::before {
  content: "";
  position: absolute;
  left: 0;
  width: 32px;
  height: 36px;
  background: url("../images/info-page-ic03.svg") center center no-repeat;
}

.info-page-des-ic-list {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.info-page-des-ic-list .info-page-des-ic p {
  margin: 0 auto;
}
.info-page-des-ic-list .info-page-des-ic p span {
  color: #4CB3FA;
}
.info-page-des-ic-list .info-page-des-ic-img {
  width: 82px;
  height: 82px;
  background: #EAF4FC;
  display: flex;
  padding: 20px;
  border-radius: 16px;
  margin: 12px auto;
}

hr {
  border: none;
  border-top: 2px dashed #4CB3FA;
  margin: 50px auto 20px auto;
}

.info-page-cont-des p {
  text-align: left;
  font-size: 20px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-color: #C3C3C3;
  text-decoration-thickness: 3.5%; /* 0.7px */
  text-underline-offset: 20%; /* 10px */
  text-underline-position: from-font;
}
.info-page-cont-des p span {
  color: #4CB3FA;
}

.highlight-xl {
  font-size: 32px !important;
}

.info-page-cont-article {
  display: flex;
  margin: 0 auto;
  align-items: normal;
  text-align: left;
  align-content: center;
  justify-content: space-between;
  position: relative;
  width: 80%;
  margin-block: 36px;
}
.info-page-cont-article .info-page-cont-article-img {
  position: relative;
}
.info-page-cont-article .info-page-cont-article-img::after {
  position: absolute;
  content: "";
  background: url("../images/info-page-ic08.svg") center center no-repeat;
  width: 20px;
  height: 20px;
  top: -12px;
  right: -12px;
}
.info-page-cont-article .info-page-cont-article-des h3 {
  font-size: 32px;
  margin: 0;
}
.info-page-cont-article .info-page-cont-article-des p {
  font-size: 20px;
  margin: 0 0 16px 0;
}
.info-page-cont-article .info-page-cont-article-des ul {
  list-style: none;
  padding: 0;
  counter-reset: list-counter;
}
.info-page-cont-article .info-page-cont-article-des ul li {
  position: relative;
  padding-left: 50px;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.5;
  counter-increment: list-counter;
  padding-block: 6px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-color: #C3C3C3;
  text-decoration-thickness: 3.5%;
  text-underline-offset: 20%;
  text-underline-position: from-font;
}
.info-page-cont-article .info-page-cont-article-des ul li::before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: #4CB3FA;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
}

.info-page-cont-despic {
  position: relative;
  background: url("../images/info-page-ic09.svg") center center no-repeat;
  height: 320px;
  width: 600px;
  margin: 0 auto;
}
.info-page-cont-despic .despic-text {
  font-size: 20px;
}
.info-page-cont-despic .despic-text span {
  color: #4CB3FA;
}
.info-page-cont-despic .despic-text.top-text {
  position: absolute;
  transform: translateX(-50%);
  top: 0;
  left: 50%;
}
.info-page-cont-despic .despic-text.bottom-text {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
}
.info-page-cont-despic .despic-text.tl-text {
  position: absolute;
  left: 0;
  top: 25%;
}
.info-page-cont-despic .despic-text.tr-text {
  position: absolute;
  right: 0;
  top: 25%;
}
.info-page-cont-despic .despic-text.bl-text {
  position: absolute;
  left: 0;
  bottom: 25%;
}
.info-page-cont-despic .despic-text.br-text {
  position: absolute;
  right: 0;
  bottom: 25%;
}

.info-page-cont-des-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.info-page-cont-des-list .info-page-cont-des-list-wrapper {
  flex: 1 1 calc(25% - 20px);
  box-sizing: border-box;
  text-align: center;
  padding: 10px;
}
@media (max-width: 768px) {
  .info-page-cont-des-list .info-page-cont-des-list-wrapper {
    flex: 1 1 100%;
  }
}
.info-page-cont-des-list .info-page-cont-des-list-wrapper h4 {
  font-size: 20px;
}
.info-page-cont-des-list .info-page-cont-des-list-wrapper .info-page-des-list-img {
  min-height: 300px;
}

.setflex {
  display: flex;
}

.set-align-start {
  align-items: flex-start;
}

.w100 {
  width: 100%;
  position: relative;
}

.set-p-br p {
  margin-block: 18px;
}