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

body,
h1, h2, h3, h4, h5, h6,
p,
ul, ol,
figure,
blockquote,
dl, dd {
  margin: 0;
}

ul, ol {
  list-style: none;
  padding: 0;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
picture {
  max-width: 100%;
  display: block;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --ad-color-brand: #0082cb;
  --ad-color-brand-strong: #250188;
  --ad-color-surface-tint: #e2ecf2;
  --ad-color-brand-alt: #2c7cd3;
  --ad-color-text: #333;
  --ad-color-muted: #666;
  --ad-color-border: #b2b2b2;
  --ad-color-danger: #d93025;
  --ad-color-success: #218838;
  --ad-font-family-sans: Noto Sans TC, sans-serif;
  --ad-font-family-display: Poppins, sans-serif;
  --ad-space-1: 0.25rem;
  --ad-space-2: 0.5rem;
  --ad-space-3: 0.75rem;
  --ad-space-4: 1rem;
  --ad-space-5: 1.25rem;
  --ad-space-6: 1.5rem;
  --ad-space-8: 2rem;
  --ad-space-10: 2.5rem;
  --ad-space-12: 3rem;
  --ad-radius-control: 4px;
  --ad-radius-panel: 20px;
  --ad-radius-pill: 999px;
  --ad-shadow-panel: 0 12px 32px rgb(37 1 136 / 10%);
  --ad-motion-standard: 0.3s ease;
  --ad-content-wide: 1690px;
  --ad-content-member: 1200px;
  --ad-content-form: 720px;
}

/* ==========================================================================
common
========================================================================== */
body.is-locked {
  overflow: hidden;
  height: 100%;
}

main {
  overflow: hidden;
}

.light-blue {
  background-color: #e2ecf2;
}

.deep-blue {
  background-color: #2c7cd3;
}

body {
  font-family: "Noto Sans TC", sans-serif, "Poppins", sans-serif, Arial, Helvetica, sans-serif;
}

.container {
  max-width: 1690px;
  margin: auto;
  width: 100%;
  padding: 0 45px;
}
@media (max-width: 460px) {
  .container {
    padding: 0 30px;
  }
}

.form-error-msg {
  color: red;
}

.center {
  align-items: center;
  text-align: center;
}

.member-bg {
  background: url(../images/member/member-bg.jpg);
  background-position: top right;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: contain;
}
@media (max-width: 1440px) {
  .member-bg {
    background-size: 90%;
  }
}

.page-container {
  padding: clamp(50px, 4.6875vw, 90px) 0 clamp(100px, 9.8958333333vw, 190px);
}
.page-container.member-bg {
  padding-bottom: clamp(75px, 3.90625vw, 110px);
}

.hero-cta {
  margin-top: 25px;
}

.ui-container {
  width: min(100% - 60px, var(--ad-content-wide));
  margin-inline: auto;
}

.ui-stack {
  display: flex;
  flex-direction: column;
  gap: var(--ad-stack-space, var(--ad-space-6));
}

.ui-cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--ad-cluster-space, var(--ad-space-4));
}

.ui-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--ad-grid-min, 16rem)), 1fr));
  gap: var(--ad-grid-space, var(--ad-space-6));
}

/* ==========================================================================
banner-page
========================================================================== */
.banner-page {
  position: relative;
}
.banner-page img {
  width: 100%;
}
.banner-page-title {
  display: flex;
  flex-direction: column-reverse;
  line-height: 1.2;
  width: 80%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.banner-page-title h1 {
  font-size: clamp(30px, 2.5vw, 48px);
  color: #250188;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.banner-page-title p {
  font-size: clamp(30px, 2.5vw, 48px);
  color: #0082cb;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .banner-page img {
    height: 295px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/* ==========================================================================
animate
========================================================================== */
.s-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.s-animate.is-animate {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

.delay-3 {
  transition-delay: 0.6s;
}

.delay-4 {
  transition-delay: 0.8s;
}

.delay-5 {
  transition-delay: 1s;
}

.delay-6 {
  transition-delay: 1.2s;
}

.delay-7 {
  transition-delay: 1.4s;
}

.delay-8 {
  transition-delay: 1.6s;
}

.delay-9 {
  transition-delay: 1.8s;
}

.delay-10 {
  transition-delay: 2s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn2 {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes slidedownFade {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ==========================================================================
   swiper
   ========================================================================== */
.circle-arrow.swiper-button-next, .circle-arrow.swiper-button-prev {
  width: 85px;
  height: 85px;
}
.circle-arrow.swiper-button-next svg, .circle-arrow.swiper-button-prev svg {
  width: 85px;
  transition: 0.8s;
  fill: #0082cb;
}
.circle-arrow.swiper-button-next::after, .circle-arrow.swiper-button-prev::after {
  display: none;
}
.circle-arrow.swiper-button-prev {
  left: 0px;
  top: 50%;
  transform: scaleX(-1) translateY(-50%);
}
.circle-arrow.swiper-button-prev:hover {
  transform: scale(-0.95, 0.95) translateY(-50%);
}
.circle-arrow.swiper-button-next {
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
}
.circle-arrow.swiper-button-next:hover {
  transform: scale(0.95) translateY(-50%);
}
.circle-arrow:hover {
  transition: 0.8s;
}
.circle-arrow:hover.swiper-button-next svg, .circle-arrow:hover.swiper-button-prev svg {
  fill: #250188;
}
.circle-arrow.white-arrow.swiper-button-next svg, .circle-arrow.white-arrow.swiper-button-prev svg {
  fill: #fff;
}
.circle-arrow.white-arrow:hover.swiper-button-next svg, .circle-arrow.white-arrow:hover.swiper-button-prev svg {
  fill: #250188;
}

.number-pagination.swiper-pagination {
  position: relative;
  margin-top: 25px;
  font-size: 20px;
  letter-spacing: 0.2em;
  font-family: Arial, Helvetica, sans-serif;
  color: #0082cb;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.2 !important;
}

@media (max-width: 1200px) {
  .circle-arrow.swiper-button-prev svg, .circle-arrow.swiper-button-next svg {
    width: 45px !important;
  }
}
/* ==========================================================================
   Header
   ========================================================================== */
header[data-site-header] {
  position: relative;
  padding: 20px 2.6041666667vw 0 7.8125vw;
  height: 140px;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 90;
  transition: 0.6s;
}
header[data-site-header].scrolled {
  position: fixed;
  height: 100px;
  padding: 0px 2.6041666667vw 0px 7.8125vw;
  transition: 0.6s;
}
header[data-site-header].header-shadow {
  box-shadow: 5px 0 25px rgba(144, 144, 144, 0.2);
}

.header-logo {
  max-width: 210px;
  width: 100%;
  display: flex;
}
.header-nav {
  font-size: 26px;
  display: flex;
  gap: 70px;
  align-items: center;
}
.header-mobile {
  display: none;
}
.header-menu {
  display: flex;
  justify-content: space-between;
  gap: 55px;
  letter-spacing: 0.1em;
  position: relative;
}
.header-menu > li {
  padding: 20px 0;
  position: relative;
}
.header-menu-title {
  color: #010101;
  font-weight: 600;
  font-family: "Noto Sans TC", sans-serif;
  position: relative;
}
.header-menu-title::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  transition: 0.6s;
  background-color: #0082cb;
}
.header-menu-drop {
  display: none;
  font-size: 20px;
  padding: 25px 20px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 3px -1px 8px rgba(13, 26, 46, 0.05);
  margin: 0 -20px;
  width: calc(100% + 40px);
}
.header-menu-drop a {
  color: #0082cb;
  font-weight: 400;
  transition: 0.6s;
}
.header-menu-drop a:hover {
  color: #250188;
  transition: 0.6s;
}
.header-menu li {
  display: block;
}
.header-menu li:hover .header-menu-title {
  color: #0082cb;
  transition: 0.2s;
}
.header-menu li:hover .header-menu-title::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
}
.header-menu li:hover > .header-menu-drop {
  position: absolute;
  display: block;
  animation: fadeIn2 0.3s ease-in forwards;
  margin-top: 10px;
  text-align: center;
}
.header-menu li:hover > .header-menu-drop li {
  margin-bottom: 10px;
}
.header-menu li:hover > .header-menu-drop li:last-of-type {
  margin-bottom: 0;
}
.header-tool {
  display: flex;
  gap: 25px;
}
.header-tool a,
.header-tool div {
  display: block;
  cursor: pointer;
}
.header-tool a svg,
.header-tool div svg {
  fill: #250188;
  transition: 0.6s;
}
.header-tool a:hover svg,
.header-tool div:hover svg {
  fill: #0082cb;
  transition: 0.6s;
}
.header-bar {
  display: none;
}

@media (max-width: 1200px) {
  header[data-site-header] {
    height: 75px;
    padding: 10px 25px 0 25px;
  }
  header[data-site-header].scrolled {
    position: fixed;
    height: 75px;
    padding: 10px 25px 0 25px;
  }
  .header-logo {
    max-width: 135px;
  }
  .header-menu {
    gap: 20px;
    font-size: 20px;
    letter-spacing: 0.1em;
  }
  .header-nav {
    gap: 30px;
  }
}
@media (max-width: 1024px) {
  header[data-site-header] {
    height: 75px;
    padding: 10px 95px 0 25px;
  }
  header[data-site-header].scrolled {
    position: fixed;
    height: 75px;
    padding: 10px 95px 0 25px;
  }
  .header-menu {
    display: none;
  }
  .header-mobile {
    background-color: #250188;
    display: block;
    z-index: 20;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    max-width: 480px;
    padding: 40px;
    overflow-y: scroll;
  }
  .header-mobile-logo {
    max-width: 230px;
    display: block;
    filter: brightness(0) invert(1);
    margin-bottom: 60px;
  }
  .header-mobile .close-x {
    font-size: 35px;
    color: #fff;
  }
  .header-mobile .menu-item a {
    color: #fff;
  }
  .header-mobile .menu-item > li {
    position: relative;
    font-size: 24px;
  }
  .header-mobile .menu-item > li a {
    letter-spacing: 0.2em;
    font-weight: 700;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding: 14px 0;
    display: block;
  }
  .header-mobile .menu-item > li a::after {
    position: absolute;
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 13px 5.5px 0 5.5px;
    border-color: #fff transparent transparent transparent;
    transition: 0.6s;
  }
  .header-mobile .menu-item-drop {
    padding: 0px 0 30px 25px;
    letter-spacing: 0.2em;
    font-size: 18px;
    font-weight: 500;
  }
  .header-mobile .menu-item-drop li {
    margin-bottom: 5px;
  }
  .header-mobile .menu-item:last-of-type {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
}
@media (max-width: 479px) {
  header[data-site-header] {
    height: 65px;
    padding: 7px 80px 0 25px;
  }
  header[data-site-header].scrolled {
    position: fixed;
    height: 65px;
    padding: 7px 80px 0 25px;
  }
  .header-tool {
    gap: 15px;
  }
  .header-tool a svg,
  .header-tool div svg {
    height: 25px;
  }
}
/* ==========================================================================
mobile-menu
========================================================================== */
.mobile-bar {
  background-color: #250188;
  width: 75px;
  height: 75px;
  position: fixed;
  right: 0;
  top: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  z-index: 100;
  display: none;
}
.mobile-bar span {
  width: 30px;
  height: 2px;
  display: block;
  background-color: #fff;
  margin: 3px 0;
  transition: all 0.3s ease;
}
.mobile-bar.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mobile-bar.is-open span:nth-child(2) {
  opacity: 0;
}
.mobile-bar.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  background-color: #250188;
  z-index: 99;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 480px;
  padding: 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
}
@media (max-width: 1024px) {
  .mobile-nav.is-open {
    transform: translateX(0);
  }
}
.mobile-nav .nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(250px, 78%);
  background: #fff;
  border-radius: 6px;
  padding: 8px 12px;
  margin-bottom: 60px;
}
.mobile-nav .nav-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.mobile-nav .nav-close {
  font-size: 35px;
  color: #fff;
  cursor: pointer;
}
.mobile-nav .nav-item a {
  color: #fff;
}
.mobile-nav .nav-item > li {
  position: relative;
  font-size: 24px;
}
.mobile-nav .nav-item > li > a {
  letter-spacing: 0.2em;
  font-weight: 700;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding: 14px 0;
  display: block;
}
.mobile-nav .nav-item > li > a::after {
  display: none;
  position: absolute;
  right: 0;
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 13px 5.5px 0 5.5px;
  border-color: #fff transparent transparent transparent;
  transition: 0.6s;
  top: 35px;
}
.mobile-nav .nav-item > li.has-drop > a::after {
  display: block;
}
.mobile-nav .nav-item .nav-drop {
  font-size: 18px;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
  padding-left: 30px;
  letter-spacing: 0.2em;
  font-weight: 600;
}
.mobile-nav .nav-item .nav-drop li {
  margin-bottom: 8px;
}
.mobile-nav .nav-item.is-active > li > a {
  color: #0082cb;
}
.mobile-nav .nav-item.is-active > li > a::after {
  transform: rotate(180deg);
  top: 30px;
  border-color: #33b0f7 transparent transparent transparent;
}
.mobile-nav .nav-item.is-active .nav-drop {
  margin: 0px 0 30px;
}
.mobile-nav .nav-item:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.mobile-nav .mobile-social {
  display: flex;
  gap: 20px;
  margin-top: 65px;
}
.mobile-nav .mobile-social a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 99px;
  border: 1px solid #fff;
}
.mobile-nav .mobile-social a.fb {
  background-color: #1677f1;
}
.mobile-nav .mobile-social a.line {
  background-color: #45b873;
}
.mobile-nav .mobile-social a.ig {
  background: linear-gradient(135deg, #ffe185 0%, #ffbb36 21%, #ff5176 38%, #f63395 52%, #a436d2 74%, #5f4eed 100%);
}
.mobile-nav .mobile-social a.yt {
  background-color: #ff0000;
}
.mobile-nav .mobile-social img {
  height: 20px;
  width: 20px;
  display: block;
}
.mobile-nav-bg {
  position: fixed;
  background: rgba(8, 0, 30, 0.35);
  width: 100%;
  height: 100%;
  z-index: 99;
  display: block;
  top: 0;
  opacity: 0;
  backdrop-filter: blur(5px);
  transition: 0.1s;
  transform: translateX(-100%);
}
@media (max-width: 1024px) {
  .mobile-nav-bg.is-open {
    opacity: 1;
    transition: 0.1s;
    transform: translateX(0);
  }
}

@media (max-width: 1025px) {
  .mobile-bar {
    display: flex;
  }
}
@media (max-width: 479px) {
  .mobile-bar {
    width: 65px;
    height: 65px;
  }
}
/* ==========================================================================
Footer
========================================================================== */
.footer {
  background-color: #103f91;
  padding: 80px 0 30px;
  color: #fff;
  transition: 0.3s;
}
.footer a {
  color: #fff;
}
.footer .container {
  position: relative;
}
.footer .copyright {
  color: rgba(255, 255, 255, 0.4784313725);
  margin-top: 50px;
  font-family: "Noto Sans TC", sans-serif, "Poppins", sans-serif, Arial, Helvetica, sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
}
.footer .copyright a {
  color: rgba(255, 255, 255, 0.4784313725);
}
.footer-top {
  position: relative;
}
.footer-top::after {
  position: absolute;
  content: "";
  display: block;
  background-color: rgba(255, 255, 255, 0.5);
  height: 1px;
  width: calc(100% - 310px);
  right: 0;
  bottom: 0;
}
.footer-top .gotop {
  width: 80px;
  display: block;
  position: absolute;
  right: 0;
  top: -30px;
  transform: scale(1);
  cursor: pointer;
}
.footer-top .gotop:hover {
  transform: scale(0.95);
  transition: 0.6s;
}
.footer-logo {
  display: block;
  width: 305px;
  margin-bottom: 60px;
}
.footer-logo img {
  width: 100%;
  height: 100%;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
}
.footer-info {
  display: flex;
  flex-direction: column;
  margin-top: -15px;
  letter-spacing: 0.1em;
  font-family: "Noto Sans TC", sans-serif;
}
.footer-info .hotline {
  font-size: clamp(38px, 3.125vw, 60px);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}
.footer-info .time {
  font-size: clamp(16px, 1.0416666667vw, 20px);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
.footer-info .other {
  font-size: clamp(16px, 1.0416666667vw, 20px);
  font-weight: 400;
}
.footer-link-box {
  position: relative;
  width: calc(100% - 310px);
  max-width: 1100px;
  margin-top: -58px;
}
.footer-menu {
  display: flex;
  gap: 70px;
  justify-content: space-between;
}
.footer-menu-item a {
  font-weight: 600;
}
.footer-menu-item a:hover {
  color: #0082cb;
  transition: 0.3s;
}
.footer-menu-item > a {
  font-size: 26px;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  display: block;
}
.footer-menu-item > ul {
  font-size: 20px;
  font-weight: 600;
}
.footer-menu-item ul {
  text-align: center;
}
.footer-menu-item ul a {
  font-size: 20px;
  margin-bottom: 5px;
  display: block;
  letter-spacing: 0.15em;
}
.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  margin-top: 75px;
}
.footer-social li {
  max-width: 225px;
  transition: all 0.4s ease;
}
.footer-social li:hover {
  transform: translateY(-3px) scale(0.98);
  box-shadow: 0 10px 20px rgba(5, 107, 220, 0.1);
  transition: all 0.4s ease;
}
.footer-social a {
  display: block;
  padding: 5px 20px;
}
.footer-social a.fb {
  background-color: #1677f1;
}
.footer-social a.line {
  background-color: #45b873;
}
.footer-social a.ig {
  background: linear-gradient(135deg, #ffe185 0%, #ffbb36 21%, #ff5176 38%, #f63395 52%, #a436d2 74%, #5f4eed 100%);
}
.footer-social a.yt {
  background-color: #ff0000;
}
.footer-social li {
  font-family: "Noto Sans TC", sans-serif, "Poppins", sans-serif, Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 24px;
  width: 100%;
}
.footer-social li img {
  height: 20px;
  max-width: 22px;
}
.footer-social li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 99px;
}
@media (max-width: 1600px) {
  .footer-logo {
    max-width: 250px;
  }
  .footer-menu {
    gap: 30px;
  }
  .footer-menu-item a {
    font-size: 20px;
  }
  .footer-menu-item ul a {
    font-size: 18px;
  }
  .footer-social {
    gap: 20px;
  }
  .footer-social li {
    font-size: 18px;
  }
  .footer-social li a {
    padding: 5px 20px;
  }
}
@media (min-width: 1025px) and (max-width: 1440px) {
  .footer-top::after {
    width: calc(100% - 250px);
  }
  .footer-info {
    max-width: calc(100% - 700px);
  }
  .footer-link-box {
    width: calc(100% - 250px);
  }
  .footer-menu {
    gap: 30px;
  }
  .footer-menu-item a {
    font-size: 18px;
  }
  .footer-menu-item ul a {
    font-size: 16px;
  }
  .footer-bottom {
    gap: 30px;
  }
}
@media (max-width: 1024px) {
  .footer-menu {
    gap: 15px 30px;
    flex-wrap: wrap;
    justify-content: end;
  }
  .footer-menu-item ul {
    display: none;
  }
  .footer-link-box {
    margin-top: 0;
  }
  .footer-social li {
    width: 50px;
    aspect-ratio: 1;
  }
  .footer-social li a {
    font-size: 0;
    height: 100%;
    padding: 0;
  }
  .footer-social li a img {
    margin: auto;
  }
}
@media (max-width: 660px) {
  .footer {
    padding-top: 60px;
  }
  .footer-top::after {
    display: none;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .footer-link-box {
    width: 100%;
  }
  .footer-menu {
    display: none;
  }
  .footer-social {
    justify-content: left;
    margin-top: 50px;
  }
}
@media (max-width: 520px) {
  .footer .container {
    padding: 0 30px;
  }
  .footer-top .gotop {
    width: 50px;
    top: 0;
  }
  .footer-logo {
    max-width: 190px;
  }
}

/* ==========================================================================
   fixed-social
   ========================================================================== */
.fixed-social {
  display: flex;
  position: fixed;
  right: 20px;
  top: 0;
  top: 42%;
  flex-direction: column;
  gap: clamp(10px, 0.78125vw, 15px);
  z-index: 81;
}
.fixed-social a {
  width: clamp(40px, 3.90625vw, 75px);
  height: clamp(40px, 3.90625vw, 75px);
  display: block;
  transition: 0.3s;
}
.fixed-social a:hover {
  transform: scale(0.9);
}
@media (max-width: 768px) {
  .fixed-social {
    right: 5px;
    top: inherit;
    bottom: 20px;
  }
}
@media (max-width: 470px) {
  .fixed-social {
    gap: 0;
    right: 5px;
  }
  .fixed-social a {
    padding: 6px;
  }
}

/* ==========================================================================
   add-shopcart
   ========================================================================== */
.cart-overlay {
  border: 0;
  cursor: pointer;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}
.cart-overlay.open {
  opacity: 1;
  visibility: visible;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .cart-overlay,
  .side-cart,
  .side-cart .cart-item {
    transition-duration: 0.01ms;
  }
}
.side-cart {
  position: fixed;
  top: 0;
  right: 0;
  max-width: 380px;
  width: 100%;
  height: 100%;
  background: #0082cb;
  z-index: 1000;
  transform: translateX(110%);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.05);
}
.side-cart-title {
  font-size: 24px;
  color: #97daff;
  font-weight: 600;
  letter-spacing: 1px;
}
.side-cart.open {
  transform: translateX(0);
}
.side-cart .cart-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(238, 238, 238, 0.5);
  align-items: center;
}
.side-cart .cart-header .close-cart {
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
}
.side-cart .cart-body {
  overflow-y: auto;
  height: calc(100vh - 100px);
}
.side-cart .cart-body .cart-items-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.side-cart .cart-body .cart-items-list:not(:empty) ~ .empty-cart-msg {
  display: none;
}
.side-cart .cart-body .cart-items-list:empty ~ .cart-footer {
  display: none;
}
.side-cart .cart-body .cart-item {
  position: relative;
  opacity: 1;
  transform: scale(1) translateY(0px);
  transition: 0.8s;
  display: flex;
  padding: 25px 20px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(238, 238, 238, 0.3);
  background-color: rgba(37, 1, 136, 0.1);
  padding-right: 50px;
}
.side-cart .cart-body .cart-item .cart-item-link {
  display: flex;
  align-items: flex-start;
  width: 100%;
  color: inherit;
  text-decoration: none;
}
.side-cart .cart-body .cart-item .cart-item-link > img {
  flex: 0 0 25%;
  width: 25%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  margin-right: 10px;
}
.side-cart .cart-body .cart-item.is-new {
  opacity: 0;
  transform: scale(0.9) translateY(-20px);
  transition: 0.8s;
}
.side-cart .cart-body .cart-item button {
  position: absolute;
  right: 0px;
  bottom: 20px;
}
.side-cart .cart-body .cart-item button::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../images/shopping/dele.svg);
  background-size: 15px;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0) invert(1);
}
.side-cart .cart-body .item-info {
  flex: 1 1 auto;
  min-width: 0;
}
.side-cart .cart-body .item-info-title {
  color: #fff;
}
.side-cart .cart-body .item-price {
  font-size: 22px;
  font-family: "Poppins", sans-serif;
  color: #fff;
  margin-top: 5px;
}
.side-cart .cart-body .item-price del {
  font-size: 16px;
  color: #93d8fe;
}
.side-cart .cart-body .empty-cart-msg {
  text-align: center;
  color: #fff;
  margin: 60px 0 50px;
}
.side-cart .cart-body .empty-cart-msg img {
  width: 50px;
  margin: 30px auto 20px;
  filter: brightness(0) invert(1);
}
.side-cart .cart-body button {
  color: #fff;
}
.side-cart .cart-footer {
  padding: 20px;
}
.side-cart .btn-checkout {
  display: block;
  background: #003366;
  color: #fff;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  border-radius: 99px;
}

/* ==========================================================================
   product-card
   ========================================================================== */
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em 0.5em;
}
.product-tags[hidden] {
  display: none;
}

.product-tag {
  max-width: 100%;
  overflow-wrap: anywhere;
}
.product-tag::before {
  content: "#";
}

.product-card .product-content {
  padding: 20px 20px 20px;
}
.product-card > a {
  overflow: hidden;
  width: 100%;
  display: block;
  border-radius: 20px;
}
.product-card > a > img {
  border-radius: 20px;
  transition: 0.6s;
  width: 100%;
}
.product-card .category {
  color: #0082cb;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: clamp(16px, 0.9375vw, 18px);
}
.product-card .product-title {
  font-size: clamp(20px, 1.3541666667vw, 26px);
  letter-spacing: 0.2em;
  font-weight: 400;
  min-height: 125px;
}
.product-card .product-title a {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
  line-height: 1.5;
  word-break: break-all;
  transition: 0.6s;
}
.product-card .product-price {
  display: flex;
  justify-content: space-between;
  line-height: 1;
}
.product-card .product-price .price {
  font-size: clamp(28px, 1.875vw, 36px);
  color: #250188;
  font-family: Arial, Helvetica, sans-serif;
}
.product-card .product-price .del {
  font-size: 18px;
  color: #9ecae4;
  text-decoration: line-through;
}
.product-card .product-price .add-shopcart {
  padding: 0;
}
.product-card .product-price .add-shopcart svg {
  fill: #0082cb;
  transition: 0.6s;
  width: clamp(35px, 2.0833333333vw, 40px);
  aspect-ratio: 1;
}
.product-card .product-price .add-shopcart svg:hover {
  fill: #250188;
  transition: 0.6s;
}
.product-card:hover a {
  color: #250188;
  transition: 0.6s;
}
.product-card:hover a > img {
  transform: scale(1.1);
  transition: 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  .product-card,
  .product-card a,
  .product-card img,
  .product-card svg {
    transition-duration: 0.01ms !important;
  }
}
/* ==========================================================================
   class-menu
   ========================================================================== */
.class-menu {
  margin-bottom: clamp(50px, 3.6458333333vw, 70px);
}
.class-menu-title {
  display: none;
  width: 100%;
  border: 0;
  font-family: inherit;
}
.class-menu-title:focus-visible {
  outline: 3px solid rgba(0, 130, 203, 0.35);
  outline-offset: 3px;
}
.class-menu-drop {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.class-menu-drop a {
  font-size: clamp(20px, 1.5625vw, 30px);
  display: block;
  padding: 7px 20px;
  min-width: 225px;
  border: 1px solid #0082cb;
  background-color: #fff;
  color: #0082cb;
  text-align: center;
  transition: 0.6s;
  border-radius: 99px;
}
.class-menu-drop a.is-active, .class-menu-drop a:hover {
  background-color: #0082cb;
  color: #fff;
  transition: 0.6s;
}
.class-menu.member-menu .class-menu-drop a {
  border: 1px solid #250188;
  color: #250188;
}
.class-menu.member-menu .class-menu-drop a.is-active, .class-menu.member-menu .class-menu-drop a:hover {
  background-color: #250188;
  color: #fff;
}
@media (max-width: 1680px) {
  .class-menu-drop {
    gap: 10px;
  }
  .class-menu-drop a {
    min-width: auto;
    padding: 7px 20px;
  }
}
@media (max-width: 768px) {
  .class-menu {
    position: relative;
    z-index: 10;
  }
  .class-menu-title {
    display: block;
    padding: 8px;
    background: #0082cb;
    border-radius: 99px;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    transition: 0.6s;
    color: #fff;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0.075em;
    position: relative;
  }
  .class-menu-title:after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 13px 5.5px 0 5.5px;
    border-color: #fff transparent transparent transparent;
    transition: 0.6s;
  }
  .class-menu-drop {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease-out, opacity 0.2s ease;
    z-index: 10;
    border-radius: 20px;
    text-align: center;
    gap: 0;
  }
  .class-menu-drop li {
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
  }
  .class-menu-drop li:last-child {
    border-bottom: none;
  }
  .class-menu-drop li a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    font-size: 17px;
    border: 0;
    border-radius: 0;
  }
  .class-menu-drop li a:hover {
    background: #fff;
    color: #0082cb;
    transition: 0.6s;
  }
  .class-menu-drop li a.is-active {
    background-color: rgba(0, 130, 203, 0.6);
  }
  .class-menu.is-open .class-menu-title:after {
    transform: translateY(-50%) rotate(180deg);
    transition: 0.6s;
  }
  .class-menu.is-open .class-menu-drop {
    max-height: 900px;
    opacity: 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .class-menu.member-menu .class-menu-title {
    background-color: #250188;
  }
  .class-menu.member-menu .class-menu-drop a {
    border: 0;
    color: #000;
  }
  .class-menu.member-menu .class-menu-drop a.is-active {
    background-color: rgba(37, 1, 136, 0.6);
  }
}

@media (prefers-reduced-motion: reduce) {
  .class-menu-title,
  .class-menu-drop,
  .class-menu-drop a {
    transition-duration: 0.01ms;
  }
}
/* ==========================================================================
   pagination
   ========================================================================== */
.pagination {
  margin: 70px 0 20px;
}
.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.pagination ul li {
  padding: 0 5px;
}
.pagination ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 14px;
  background: transparent;
  border-radius: 50%;
  transition: all 0.6s;
}
.pagination ul li:hover a, .pagination ul li.is-active a {
  color: #fff;
  background-color: #0082cb;
  border-radius: 99px;
  transition: 0.6s;
}
.pagination ul li:hover a::before, .pagination ul li.is-active a::before {
  filter: brightness(0) invert(1);
}
@media (max-width: 840px) {
  .pagination ul li.list {
    display: none;
  }
}
@media (min-width: 841px) {
  .pagination ul li.total {
    display: none;
  }
}
.pagination ul li.disable {
  pointer-events: none;
  opacity: 0.2;
}
.pagination ul .start a,
.pagination ul .end a,
.pagination ul .prev a,
.pagination ul .next a {
  position: relative;
}
.pagination ul .start a::before,
.pagination ul .end a::before,
.pagination ul .prev a::before,
.pagination ul .next a::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M64 468V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v176.4l195.5-181C352.1 22.3 384 36.6 384 64v384c0 27.4-31.9 41.7-52.5 24.6L136 292.7V468c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12z'/%3E%3C/svg%3E");
}
.pagination ul .end a::before {
  transform: scale(-1);
}
.pagination ul .prev a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M199.7 299.8C189.4 312.4 190.2 330.9 201.9 342.6L329.9 470.6C339.1 479.8 352.8 482.5 364.8 477.5C376.8 472.5 384.6 460.9 384.6 447.9L384.6 191.9C384.6 179 376.8 167.3 364.8 162.3C352.8 157.3 339.1 160.1 329.9 169.2L201.9 297.2L199.7 299.6z'/%3E%3C/svg%3E");
}
.pagination ul .next a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M199.7 299.8C189.4 312.4 190.2 330.9 201.9 342.6L329.9 470.6C339.1 479.8 352.8 482.5 364.8 477.5C376.8 472.5 384.6 460.9 384.6 447.9L384.6 191.9C384.6 179 376.8 167.3 364.8 162.3C352.8 157.3 339.1 160.1 329.9 169.2L201.9 297.2L199.7 299.6z'/%3E%3C/svg%3E");
  transform: scale(-1);
}

/* ==========================================================================
   form
   ========================================================================== */
input:not([type=radio]) {
  padding: 8px 12px;
  font-size: 16px;
  outline: none;
  background-color: #fff;
}
input:not([type=radio]):focus {
  border-color: #b2b2b2;
}
input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 10px;
  height: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #444;
  transition: background-color 0.2s ease;
}
input[type=radio]:checked {
  background-color: #444;
  border: none;
}

.form-row {
  display: flex;
  align-items: center;
}
.form-row label {
  width: 80px;
  font-weight: bold;
}
.form-row .form-control {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #b2b2b2;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
  background-color: #fff;
}
.form-row .form-control:focus {
  border-color: #b2b2b2;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 5px;
  max-width: 100%;
  padding: 8px 25px 8px 15px;
  background: #fff url("../images/icon/select_arrow.png") calc(100% - 8px) center no-repeat;
  cursor: pointer;
}

select,
input,
textarea {
  color: #000;
  border: 1px solid #b2b2b2;
  border-radius: 4px;
}

.ui-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 12px 55px;
  border: 0;
  border-radius: var(--ad-radius-pill);
  color: #fff;
  background: var(--ad-color-brand);
  font: inherit;
  letter-spacing: 0.075em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--ad-motion-standard), color var(--ad-motion-standard);
}
.ui-button:hover {
  color: #fff;
  background: var(--ad-color-brand-strong);
}
.ui-button:focus-visible {
  outline: 3px solid rgba(0, 130, 203, 0.35);
  outline-offset: 3px;
}
.ui-button:disabled, .ui-button[aria-disabled=true] {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.ui-button--block {
  width: 100%;
}

.ui-field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--ad-space-2);
  margin-bottom: var(--ad-space-5);
  text-align: left;
}

.ui-field > label {
  width: auto;
  color: var(--ad-color-text);
  font-size: clamp(18px, 1.1458333333vw, 22px);
  font-weight: 500;
}

.ui-field__control {
  position: relative;
  display: flex;
  width: 100%;
  min-width: 0;
}

.ui-field > small {
  margin-top: var(--ad-space-2);
  font-size: 16px;
}

.ui-field :is(input, select, textarea) {
  width: 100%;
  min-height: 50px;
  font-size: clamp(16px, 0.9375vw, 18px);
}

.ui-field :is(input, select, textarea):focus-visible {
  outline: 3px solid rgba(0, 130, 203, 0.35);
  outline-offset: 3px;
}

.ui-field--inline {
  flex-direction: row;
  align-items: center;
  gap: var(--ad-space-3);
  margin-bottom: 0;
}

.ui-field--inline > label {
  width: 80px;
  flex: 0 0 80px;
}

.ui-field--inline .ui-field__control {
  flex: 1;
  width: auto;
}

.ui-panel {
  border: 1px solid var(--ad-color-border);
  border-radius: var(--ad-radius-panel);
  background: #fff;
  box-shadow: var(--ad-shadow-panel);
}

.member-panel {
  width: calc(100% - 90px);
  max-width: var(--ad-content-member);
  margin-inline: auto;
  border: 1px solid var(--ad-color-border);
  border-radius: var(--ad-radius-panel);
  background: #fff;
  font-size: clamp(18px, 1.4583333333vw, 28px);
  overflow: hidden;
}
@media (max-width: 460px) {
  .member-panel {
    width: calc(100% - 60px);
  }
}

.member-page-title {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.3;
}

.member-panel-heading {
  padding: var(--ad-space-4) var(--ad-space-6);
  background: linear-gradient(45deg, #0082cb 0%, #250188 62%);
  color: #fff;
  text-align: center;
}

.member-panel-body {
  padding: var(--ad-space-6) clamp(var(--ad-space-6), 4vw, var(--ad-space-10));
  font-size: 18px;
  line-height: 1.7;
}

.commerce-panel {
  padding: clamp(var(--ad-space-5), 3vw, var(--ad-space-8));
}

.ui-message {
  display: block;
  margin-block: var(--ad-space-3);
}

.ui-message--error {
  color: var(--ad-color-danger);
}

.ui-message--success {
  color: var(--ad-color-success);
}

@media (prefers-reduced-motion: reduce) {
  .ui-button {
    transition-duration: 0.01ms;
  }
}
/* ==========================================================================
   pop-up
   ========================================================================== */
.modal-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(59, 115, 150, 0.45);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}
.modal-mask .ui-button {
  width: 100%;
}
.modal-mask.is-active {
  opacity: 1;
  visibility: visible;
}
.modal-mask.is-active .modal-box {
  transform: scale(1) translateY(0);
}
.modal-mask[aria-hidden=true] {
  display: none;
}

.modal-box {
  background: #fff;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  position: relative;
  transform: scale(0.95) translateY(10px);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.modal-box-content {
  padding: 30px;
  font-size: 18px;
}
.modal-box-content p {
  margin-bottom: 10px;
}
.modal-box .modal-title {
  color: #0082cb;
  padding: 20px 30px 15px;
  font-size: 24px;
  font-weight: 600;
  border-bottom: 1px solid #ccc;
  letter-spacing: 0.05em;
}

.close-x {
  border: 0;
  background: transparent;
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 1.5rem;
  color: #999;
  transition: 0.6s;
}
.close-x:hover {
  color: #250188;
  transition: 0.6s;
}
.close-x:focus-visible {
  outline: 3px solid rgba(0, 130, 203, 0.35);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .modal-mask,
  .modal-box {
    transition-duration: 0.01ms;
  }
}
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e2ecf2;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}
.loading-screen .loader-container {
  width: 300px;
  text-align: center;
}
.loading-screen .loader-container img {
  max-width: 220px;
  display: block;
  margin: 0 auto 35px;
}
.loading-screen .progress-wrapper {
  width: 100%;
  height: 4px;
  background-color: #fff;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 10px;
}
.loading-screen .progress-bar {
  width: 0%;
  height: 100%;
  background-color: #0082cb;
  transition: width 0.3s ease;
}
.loading-screen .progress-text {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #0082cb;
}

.loaded .loading-screen {
  opacity: 0;
  visibility: hidden;
}

.seo-title {
  position: absolute;
  left: -9999px;
}

.White-text {
  color: #fff;
}

.index-title {
  text-align: center;
  font-family: "Noto Sans TC", sans-serif;
  letter-spacing: 0.5em;
  color: #0082cb;
}
.index-title .section-title {
  font-size: clamp(42px, 4.1666666667vw, 80px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 5px;
}
.index-title p {
  font-size: clamp(16px, 1.5625vw, 30px);
  font-weight: 300;
  color: #101010;
}

.index-banner img {
  width: 100%;
}
.index-banner .animate-item {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.index-banner .swiper-slide-active .animate-item {
  opacity: 1;
  transform: translateX(0);
}
.index-banner .swiper-slide-active .animate-item:nth-child(1) {
  transition-delay: 0.2s;
}
.index-banner .swiper-slide-active .animate-item:nth-child(2) {
  transition-delay: 0.4s;
}
.index-banner .swiper-slide-active .animate-item:nth-child(3) {
  transition-delay: 0.6s;
}
.index-banner .swiper-slide-active .animate-item:nth-child(4) {
  transition-delay: 0.8s;
}
.index-banner .swiper-slide-active .animate-item:nth-child(5) {
  transition-delay: 1s;
}
.index-banner .swiper-slide {
  position: relative;
}
.index-banner .swiper-slide img {
  height: calc(100vh - 140px);
  -o-object-fit: cover;
     object-fit: cover;
}
.index-banner .banner-content {
  position: absolute;
  top: 175px;
  left: clamp(70px, 10.4166666667vw, 390px);
}
.index-banner .banner-content .banner-title {
  color: #250188;
  font-family: "Noto Sans TC", sans-serif;
}
.index-banner .banner-content .large-text {
  font-size: clamp(48px, 5vw + 16px, 96px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.2em;
}
.index-banner .banner-content .medium-text {
  font-size: clamp(40px, 4.1666666667vw + 13.33px, 80px);
  font-weight: 600;
  line-height: 1.2;
  margin-top: -5px;
  letter-spacing: 0.025em;
}
.index-banner .banner-content .small-text {
  font-size: clamp(23px, 2.6041666667vw + 5px, 50px);
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-top: -5px;
}
.index-banner .banner-content .depict-text {
  font-size: clamp(16px, 1.3541666667vw + 9.34px, 26px);
  letter-spacing: 0.2em;
  margin-top: 25px;
}
.index-banner .banner-content .hero-cta {
  background-color: #0082cb;
  font-size: clamp(20px, 1.5625vw + 13px, 30px);
  letter-spacing: 0.5em;
  color: #fff;
  padding: 8px 32px;
  font-weight: 100;
  border-radius: 99px;
  margin-top: 5.7291666667vw;
  display: inline-block;
}
@media (min-width: 1920px) {
  .index-banner .banner-content .hero-cta {
    margin-top: 110px;
  }
}
.index-banner .scroll-down {
  position: absolute;
  bottom: 40px;
  right: 70px;
  cursor: pointer;
  z-index: 1;
  animation: scroll-bounce 2s infinite ease-in-out;
}
@keyframes scroll-bounce {
  0% {
    transform: translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(5px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.8;
  }
}
.index-banner .scroll-down p {
  color: #250188;
  font-size: 20px;
  margin-bottom: 5px;
  transition: all 0.3s;
  font-family: "Noto Sans TC", sans-serif, "Poppins", sans-serif;
  writing-mode: vertical-rl;
  font-weight: 100;
  letter-spacing: 2px;
}
@media (max-width: 1200px) {
  .index-banner .scroll-down p {
    font-size: 12px;
  }
}
@media (max-width: 720px) {
  .index-banner .scroll-down p {
    margin-bottom: 10px;
  }
}
.index-banner .scroll-down div {
  position: relative;
  width: 1px;
  height: 70px;
  margin: 0 auto 10px;
  background: #0082cb;
  overflow: hidden;
  transition: all 0.3s;
  right: 7px;
}
@media (max-width: 1024px) {
  .index-banner .scroll-down div {
    height: 60px;
  }
}
.index-banner .scroll-down div::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 40%;
  background: #250188;
  animation: scroll_down02 1.5s linear infinite;
  transform: translateY(-100%);
}
@keyframes scroll_down02 {
  0% {
    top: 0;
    transform: translateY(-100%);
  }
  100% {
    top: 100%;
    transform: translateY(0%);
  }
}
.index-banner .swiper-slide:not(.swiper-slide-active) .animate-item {
  opacity: 0;
  transform: translateX(30px);
  transition: none;
}
.index-banner .swiper-button-next {
  right: 50px;
  color: #250188;
}
.index-banner .swiper-button-prev {
  left: 50px;
  color: #250188;
}
@media (max-width: 1200px) {
  .index-banner .swiper-slide img {
    height: calc(100vh - 75px);
  }
}
@media (max-width: 1024px) {
  .index-banner .banner-content {
    width: 80%;
    top: 100px;
  }
  .index-banner .banner-content .small-text {
    margin-top: 5px;
  }
}
@media (max-width: 768px) {
  .index-banner .banner-content {
    left: 10%;
  }
  .index-banner .banner-content .hero-cta {
    margin-top: 70px;
  }
  .index-banner .swiper-button-prev {
    left: 10px;
  }
  .index-banner .swiper-button-prev::after {
    font-size: 30px;
  }
  .index-banner .swiper-button-next {
    right: 10px;
  }
  .index-banner .swiper-button-next::after {
    font-size: 30px;
  }
  .index-banner .scroll-down {
    display: none;
  }
}

.index_page .exclusive {
  padding-top: clamp(80px, 11.4583333333vw, 220px);
}
.index_page .exclusive .index-title {
  margin-bottom: clamp(35px, 3.3854166667vw, 65px);
}
.index_page .exclusive-content {
  display: flex;
  width: 100%;
}
.index_page .exclusive-content .exclusive-item {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}
.index_page .exclusive-content .exclusive-item img {
  width: 100%;
  transform: scale(1);
  transition: 0.8s;
}
.index_page .exclusive-content .exclusive-item::after, .index_page .exclusive-content .exclusive-item::before {
  content: "";
  display: block;
  opacity: 0.65;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  transition: 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.index_page .exclusive-content .exclusive-item:nth-of-type(1)::after {
  background-color: #0082cb;
}
.index_page .exclusive-content .exclusive-item:nth-of-type(1)::before {
  background: linear-gradient(to bottom, rgba(0, 130, 203, 0), rgba(0, 129, 203, 0.8784313725));
  opacity: 0;
  z-index: 0;
}
.index_page .exclusive-content .exclusive-item:nth-of-type(2)::after {
  background-color: #e5ab2c;
}
.index_page .exclusive-content .exclusive-item:nth-of-type(2)::before {
  background: linear-gradient(to bottom, rgba(0, 130, 203, 0), rgba(229, 170, 44, 0.8980392157));
  opacity: 1;
}
.index_page .exclusive-content .exclusive-item:hover img {
  transition: 0.8s;
  transform: scale(1.05);
}
.index_page .exclusive-content .exclusive-item:hover::after {
  opacity: 0;
  transition: 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.index_page .exclusive-content .exclusive-item:hover::before {
  opacity: 1;
  transition: 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
}
.index_page .exclusive-title {
  position: absolute;
  left: clamp(25px, 5.2083333333vw, 150px);
  bottom: clamp(40px, 5.7291666667vw, 110px);
  letter-spacing: 0.2em;
  color: #fff;
  z-index: 1;
}
.index_page .exclusive-title .block-title {
  font-size: clamp(60px, 6.25vw, 120px);
  font-weight: 200;
}
.index_page .exclusive-title p {
  font-size: clamp(16px, 1.5625vw, 30px);
  font-weight: 200;
}
@media (max-width: 768px) {
  .index_page .exclusive .index-title .section-title {
    margin-bottom: 12px;
  }
  .index_page .exclusive .index-title p {
    letter-spacing: 0.2em;
  }
}
@media (max-width: 600px) {
  .index_page .exclusive-content {
    display: flex;
    flex-direction: column;
  }
}
.index_page .activity {
  padding-top: clamp(80px, 11.4583333333vw, 220px);
}
.index_page .activity .activity-banner {
  position: relative;
  margin: clamp(35px, 2.8645833333vw, 55px) auto 0;
  max-width: 1720px;
  padding: 0 30px;
}
.index_page .activity .activity-banner .swiper {
  max-width: 1260px;
  border-radius: 50px;
  box-shadow: 5px 3px 25px rgba(28, 40, 62, 0.5058823529);
}
@media (max-width: 1200px) {
  .index_page .activity .number-pagination.swiper-pagination {
    margin-top: 50px;
  }
  .index_page .activity .circle-arrow.swiper-button-prev {
    top: inherit;
    bottom: -20px;
    left: 10px;
    transform: scaleX(-1) translateY(0);
  }
  .index_page .activity .circle-arrow.swiper-button-next {
    top: inherit;
    bottom: -20px;
    right: 10px;
    transform: translateY(0);
  }
}
.index_page .marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}
.index_page .marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: marquee-scroll 20s linear infinite;
}
.index_page .marquee-content span {
  display: inline-block;
  font-size: clamp(72px, 9.375vw, 180px);
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 100;
  color: #fff;
}
@media (max-width: 768px) {
  .index_page .marquee {
    padding: 0;
  }
}
.index_page .popular-products {
  padding-top: 110px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.index_page .popular-products-swiper {
  position: relative;
  max-width: calc(100% - 110px);
  width: 70%;
}
.index_page .popular-products .index-title {
  color: #fff;
}
.index_page .popular-products .class-tab {
  border: 1px solid rgba(255, 255, 255, 0.5137254902);
  border-radius: 99px;
  font-size: clamp(20px, 1.9791666667vw, 38px);
  gap: 30px;
  padding: 5px 10px;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  list-style: none;
  scrollbar-width: none;
  max-width: 100%;
  justify-content: flex-start;
}
.index_page .popular-products .class-tab::-webkit-scrollbar {
  display: none;
}
.index_page .popular-products .class-tab-box {
  margin: 25px 0 40px;
  position: relative;
  max-width: 90%;
}
.index_page .popular-products .class-tab-box .toggle-btn {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 52px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(44, 124, 211, 0.91) 65%);
  display: block;
}
.index_page .popular-products .class-tab-box .toggle-btn::after {
  content: "";
  display: block;
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 13px 5.5px 0 5.5px;
  border-color: #fff transparent transparent transparent;
  transition: 0.6s;
}
.index_page .popular-products .class-tab-box .toggle-btn.prev {
  left: 0;
  transform: rotate(90deg);
}
.index_page .popular-products .class-tab-box .toggle-btn.next {
  right: 0;
  transform: rotate(-90deg);
}
.index_page .popular-products .class-tab-box .toggle-btn.is-hidden {
  display: none;
}
.index_page .popular-products .class-tab li {
  padding: 5px 50px;
  cursor: pointer;
  color: #fff;
  transition: 0.6s;
  border-radius: 99px;
  flex: 0 0 auto;
}
.index_page .popular-products .class-tab li.is-active, .index_page .popular-products .class-tab li:hover {
  background-color: #fff;
  color: #0082cb;
  transition: 0.6s;
}
.index_page .popular-products .tab-content {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}
.index_page .popular-products .tab-content.is-active {
  display: block;
  animation: fadeIn 0.5s forwards;
}
.index_page .popular-products .circle-arrow.swiper-button-next {
  right: -95px;
}
.index_page .popular-products .circle-arrow.swiper-button-prev {
  left: -95px;
}
.index_page .popular-products .circle-arrow svg {
  width: 60px;
  aspect-ratio: 1;
}
@media (max-width: 1024px) {
  .index_page .popular-products .class-tab {
    gap: 15px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    padding: 8px 10px;
  }
  .index_page .popular-products .class-tab li {
    padding: 6px 20px;
  }
  .index_page .popular-products .class-tab-box {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 520px) {
  .index_page .popular-products .circle-arrow.swiper-button-next {
    right: -80px;
  }
  .index_page .popular-products .circle-arrow.swiper-button-prev {
    left: -80px;
  }
}
@media (max-width: 400px) {
  .index_page .popular-products .circle-arrow.swiper-button-next {
    right: -70px;
  }
  .index_page .popular-products .circle-arrow.swiper-button-prev {
    left: -70px;
  }
}
.index_page .ranking-products {
  padding-top: clamp(80px, 11.4583333333vw, 220px);
  padding-bottom: 150px;
}
.index_page .ranking-products-swiper {
  position: relative;
  max-width: 1765px;
  margin: auto;
}
.index_page .ranking-products-swiper .product-card {
  background-color: transparent;
}
.index_page .ranking-products .index-title {
  color: #fff;
}
.index_page .ranking-products .swiper {
  padding: 55px 10px;
}
.index_page .ranking-products .swiper-slide {
  padding: 55px 0;
  transition: 0.6s;
  border: 0;
  position: relative;
  top: 0;
}
.index_page .ranking-products .swiper-slide.swiper-slide-next {
  position: relative;
  top: 92px;
  transition: 0.3s;
}
.index_page .ranking-products .swiper-slide:hover {
  transform: scale(1.1);
  transition: 0.6s;
}
.index_page .ranking-products .swiper-slide .rank {
  transition: all 0.4s ease;
  border: 1px solid transparent;
  border-radius: 5px 80px 5px 5px;
  margin: auto;
}
.index_page .ranking-products .swiper-slide .rank-no span {
  position: relative;
  z-index: 1;
  font-size: clamp(26px, 1.4583333333vw, 28px);
  font-weight: bold;
  letter-spacing: 0.2em;
  text-align: center;
  width: 100%;
  display: block;
  top: -26px;
}
.index_page .ranking-products .swiper-slide .rank-no::before {
  content: "";
  position: absolute;
  width: 130%;
  display: block;
  height: 85px;
  z-index: 1;
  left: -15%;
  top: -10px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/index/ribbon4.png);
}
.index_page .ranking-products .swiper-slide .rank > a {
  max-width: 380px;
  margin: auto;
  display: block;
  width: calc(100% - 100px);
  position: relative;
}
.index_page .ranking-products .swiper-slide .rank > a::before {
  content: "";
  display: block;
  position: absolute;
  width: 110px;
  aspect-ratio: 1;
  background-size: contain;
  top: -55px;
  left: -38px;
  z-index: 1;
  background-repeat: no-repeat;
}
.index_page .ranking-products .swiper-slide .rank > a img {
  border-radius: 5px 80px 5px 5px;
}
.index_page .ranking-products .swiper-slide .rank .product-content {
  max-width: 380px;
  padding: 20px 20px 20px;
  position: relative;
  margin: auto;
  width: calc(100% - 100px);
  background-color: #e2ecf2;
}
.index_page .ranking-products .swiper-slide:nth-child(1) .rank > a::before {
  content: "";
  background-image: url(../images/index/no1.png);
  display: block;
}
.index_page .ranking-products .swiper-slide:nth-child(1) .rank .rank-no::before {
  background-image: url(../images/index/ribbon1.png);
}
.index_page .ranking-products .swiper-slide:nth-child(2) .rank > a::before {
  content: "";
  background-image: url(../images/index/no2.png);
  display: block;
}
.index_page .ranking-products .swiper-slide:nth-child(2) .rank .rank-no::before {
  background-image: url(../images/index/ribbon2.png);
}
.index_page .ranking-products .swiper-slide:nth-child(3) .rank > a::before {
  content: "";
  background-image: url(../images/index/no3.png);
  display: block;
}
.index_page .ranking-products .swiper-slide:nth-child(3) .rank .rank-no::before {
  background-image: url(../images/index/ribbon3.png);
}
.index_page .ranking-products .swiper-slide:hover a > img {
  transform: scale(1);
}
.index_page .ranking-products .circle-arrow.swiper-button-next {
  top: 65%;
}
.index_page .ranking-products .circle-arrow.swiper-button-prev {
  top: 65%;
}
.index_page .ranking-products .circle-arrow svg {
  width: 60px;
}
@media (max-width: 1440px) {
  .index_page .ranking-products-swiper {
    width: 92%;
  }
  .index_page .ranking-products .swiper {
    width: 90%;
  }
  .index_page .ranking-products .swiper-slide {
    opacity: 0;
  }
  .index_page .ranking-products .swiper-slide-active, .index_page .ranking-products .swiper-slide-next {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .index_page .ranking-products {
    padding-bottom: 0;
  }
  .index_page .ranking-products-swiper {
    width: 100%;
  }
}
@media (max-width: 479px) {
  .index_page .ranking-products .swiper {
    width: 100%;
  }
  .index_page .ranking-products .swiper-slide .rank-no span {
    font-size: 18px;
    top: -28px;
  }
  .index_page .ranking-products .swiper-slide .rank .category {
    font-size: 16px;
  }
  .index_page .ranking-products .swiper-slide .rank .product-title {
    font-size: 20px;
    min-height: 105px;
  }
  .index_page .ranking-products .swiper-slide .rank .product-price .price {
    font-size: 24px;
  }
  .index_page .ranking-products .swiper-slide .rank .product-price .price span {
    font-size: 16px;
  }
  .index_page .ranking-products .circle-arrow.swiper-button-prev {
    left: -13px;
  }
  .index_page .ranking-products .circle-arrow.swiper-button-next {
    right: -13px;
  }
}
.index_page .faculty {
  padding-top: 110px;
  padding-bottom: clamp(55px, 7.8125vw, 150px);
}
.index_page .faculty .faculty-marquee {
  width: 100%;
  overflow: hidden;
  padding: clamp(40px, 3.125vw, 60px);
}
.index_page .faculty .faculty-marquee:hover .faculty-marquee-inner {
  animation-play-state: paused;
  cursor: pointer;
}
.index_page .faculty .faculty-marquee .marquee-group {
  display: flex;
  gap: 15px;
}
.index_page .faculty-marquee-inner {
  display: flex;
  flex-wrap: wrap;
  width: -moz-max-content;
  width: max-content;
  animation: faculty-marquee-scroll 30s linear infinite;
  will-change: transform;
  gap: 15px;
}
.index_page .faculty .faculty-card {
  flex-shrink: 0;
  display: block;
  text-decoration: none;
  position: relative;
  width: 324px;
  aspect-ratio: 324/559;
  background-color: #103f91;
  border-radius: 20px;
  overflow: hidden;
  transform: scale(1);
  transition: 0.8s;
}
.index_page .faculty .faculty-card img {
  height: auto;
  border-radius: 10px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.8s;
}
.index_page .faculty .faculty-card .faculty-info {
  margin-top: 15px;
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  transform: 0.6s;
}
.index_page .faculty .faculty-card .faculty-info h3 {
  font-size: 43px;
  font-weight: 900;
  margin-bottom: 5px;
}
.index_page .faculty .faculty-card .faculty-info p {
  font-size: 28px;
  font-weight: 600;
  position: relative;
  margin-top: 30px;
  letter-spacing: 0.08em;
}
.index_page .faculty .faculty-card .faculty-info p::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 20px;
  background-color: #0082cb;
  left: 50%;
  top: -18px;
}
.index_page .faculty .faculty-card:hover img {
  transform: scale(1.1);
  transition: 0.8s;
}
.index_page .faculty .faculty-card:hover .faculty-info {
  color: #00a1fc;
  transition: 0.6s;
}
@keyframes faculty-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.3333%);
  }
}
.index_page .six-advantages {
  background-image: url(../images/index/six.jpg);
  background-position: bottom;
  padding: 95px 0 260px;
  background-repeat: no-repeat;
  background-size: cover;
}
.index_page .six-advantages .container {
  display: flex;
  gap: clamp(40px, 4.6875vw, 90px);
}
.index_page .six-advantages .index-title {
  margin-top: 40px;
}
.index_page .six-advantages .flip-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8229166667vw 4.4270833333vw;
  list-style: none;
  padding: 0;
  max-width: 1075px;
  width: 100%;
  margin: 0 auto;
}
.index_page .six-advantages .flip-card {
  background-color: transparent;
  aspect-ratio: 297/328;
  perspective: 1000px;
}
.index_page .six-advantages .flip-card:hover .flip-card-inner, .index_page .six-advantages .flip-card:focus .flip-card-inner {
  transform: rotateY(180deg);
}
.index_page .six-advantages .flip-card-inner {
  will-change: transform;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}
.index_page .six-advantages .flip-card-front, .index_page .six-advantages .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 5px 11px 24px rgba(0, 0, 0, 0.1);
}
.index_page .six-advantages .flip-card-front {
  background-color: #ffffff;
  color: #333;
  text-align: center;
}
.index_page .six-advantages .flip-card-front img {
  width: clamp(115px, 8.3333333333vw, 160px);
  max-height: 130px;
  margin-bottom: 35px;
  aspect-ratio: 1;
  display: block;
}
.index_page .six-advantages .flip-card-front h3 {
  font-size: clamp(29px, 2.1875vw, 42px);
  font-weight: 400;
  color: #2c7cd3;
  letter-spacing: 0.1em;
}
.index_page .six-advantages .flip-card-back {
  background: #0082cb;
  color: white;
  transform: rotateY(180deg);
}
.index_page .six-advantages .flip-card-back p {
  margin: auto;
  font-size: clamp(16px, 2.083vw, 26px);
  line-height: 1.6;
  word-break: break-all;
  letter-spacing: 0.2em;
}
@media (max-width: 1440px) {
  .index_page .six-advantages .container {
    flex-direction: column;
  }
}
@media (max-width: 900px) {
  .index_page .six-advantages .index-title {
    margin-top: 0;
  }
  .index_page .six-advantages .flip-content img {
    max-height: 90px;
    height: 50%;
    margin-bottom: 18px;
  }
}
@media (max-width: 768px) {
  .index_page .six-advantages {
    background-image: url(../images/index/six-mb.jpg);
    background-position: bottom;
    padding-bottom: 350px;
  }
  .index_page .six-advantages .flip-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 25px;
  }
}
@media (max-width: 470px) {
  .index_page .six-advantages .flip-content img {
    max-height: 50px;
  }
  .index_page .six-advantages .flip-card-front h3 {
    font-size: 18px;
    letter-spacing: 1px;
  }
  .index_page .six-advantages .flip-card-back p {
    font-size: 15px;
  }
}
.index_page .index-video {
  padding: clamp(80px, 7.03125vw, 135px) 0 70px;
}
.index_page .index-video .index-video-swiper {
  margin: clamp(30px, 3.125vw, 60px) auto 0;
  max-width: 1260px;
  width: 80%;
  aspect-ratio: 1260/709;
  border-radius: 50px;
  box-shadow: 5px 3px 25px rgba(28, 40, 62, 0.5058823529);
}
.index_page .index-video .circle-arrow.swiper-button-prev {
  left: -70px;
}
.index_page .index-video .circle-arrow.swiper-button-next {
  right: -70px;
}
@media (max-width: 1900px) {
  .index_page .index-video .container {
    max-width: 1260px;
  }
  .index_page .index-video .index-video-swiper {
    width: 100%;
  }
  .index_page .index-video .circle-arrow.swiper-button-prev {
    top: inherit;
    bottom: -20px;
    left: 0;
    transform: scaleX(-1) translateY(0);
  }
  .index_page .index-video .circle-arrow.swiper-button-next {
    top: inherit;
    bottom: -20px;
    right: 0;
    transform: translateY(0);
  }
  .index_page .index-video .number-pagination.swiper-pagination {
    margin-top: 50px;
  }
}
@media (max-width: 500px) {
  .index_page .index-video .container {
    padding: 0 30px;
  }
}
.index_page .index-review {
  padding: clamp(20px, 3.6458333333vw, 70px) 0 80px;
}
.index_page .index-review-swiper {
  max-width: 1730px;
  margin: auto;
}
.index_page .index-review .container {
  max-width: 1520px;
}
.index_page .index-review .swiper-wrapper {
  padding: clamp(40px, 4.1666666667vw, 80px) 0 50px;
}
.index_page .index-review .swiper-slide {
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.15));
  transition: 0.6s;
  top: 0;
}
@media (min-width: 1025px) {
  .index_page .index-review .swiper-slide:hover {
    top: -40px;
    transition: 0.6s;
  }
}
.index_page .index-review .swiper-slide:nth-of-type(odd) .review-card {
  background-color: #b3d6e2;
}
.index_page .index-review .swiper-slide:nth-of-type(odd) .review-card::before {
  background-image: url(../images/index/review-icon01.svg);
}
.index_page .index-review .swiper-slide:nth-of-type(odd) .review-card::after {
  background-color: #b3d6e2;
}
.index_page .index-review .swiper-slide:nth-of-type(even) .review-card {
  background-color: rgb(241, 236, 206);
}
.index_page .index-review .swiper-slide:nth-of-type(even) .review-card::before {
  background-image: url(../images/index/review-icon02.svg);
}
.index_page .index-review .swiper-slide:nth-of-type(even) .review-card::after {
  background-color: rgb(241, 236, 206);
}
.index_page .index-review .review-card {
  display: flex;
  align-items: end;
  width: 320px;
  min-height: 375px;
  height: auto;
  padding: 80px 30px 20px 30px;
  flex-wrap: wrap;
  position: relative;
  top: 0;
  transition: 0.6s;
  background-repeat: no-repeat;
  margin: auto;
  background-size: contain;
  border-radius: 35px;
  background-color: #ccc;
}
.index_page .index-review .review-card::before {
  content: "";
  display: block;
  width: 50px;
  height: 35px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -10px;
  right: 45px;
  background-position: bottom;
}
.index_page .index-review .review-card:after {
  content: "";
  position: absolute;
  left: -4px;
  bottom: 0;
  width: 25px;
  height: 60px;
  clip-path: path("M55 0 L55 60 C35 60 25 60 19.38 54.2 C8.38 62.83 -2.06 60 -2.06 60 C6.7 55 3.12 50.18 3.5 24.73 L3.5 0 Z");
}
.index_page .index-review .review-name {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
  align-items: end;
}
.index_page .index-review .review-name img {
  width: 65px;
  max-height: 95px;
}
.index_page .index-review .review-name p {
  font-size: 26px;
  color: #000;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.index_page .index-review .review-name + p {
  line-height: 26px;
  font-size: 18px;
  letter-spacing: 0.2em;
  text-align: justify;
  width: 100%;
  min-height: 160px;
  word-break: break-all;
}
.index_page .index-review .circle-arrow.swiper-button-prev, .index_page .index-review .circle-arrow.swiper-button-next {
  top: 58%;
}
@media (max-width: 1599px) {
  .index_page .index-review .container {
    max-width: 1200px;
    width: calc(100% - 100px);
  }
}
@media (max-width: 1200px) {
  .index_page .index-review .container {
    max-width: 768px;
  }
}
@media (max-width: 470px) {
  .index_page .index-review .review-card {
    width: 80%;
    min-height: auto;
  }
  .index_page .index-review .review-name {
    margin-bottom: 10px;
  }
  .index_page .index-review .review-name + p {
    font-size: 16px;
  }
  .index_page .index-review .review-name img {
    width: 45px;
  }
  .index_page .index-review .review-name p {
    font-size: 22px;
  }
  .index_page .index-review .container {
    width: calc(100% - 30px);
  }
  .index_page .index-review .circle-arrow.swiper-button-prev {
    left: -15px;
  }
  .index_page .index-review .circle-arrow.swiper-button-next {
    right: -15px;
  }
}
.index_page .index-quick-link {
  background-image: url(../images/index/quick-link-bg.jpg);
  background-size: cover;
  display: flex;
  padding: clamp(80px, 10.9375vw, 210px) 0;
  background-position: right;
  max-height: 715px;
}
.index_page .index-quick-link-contain {
  color: #103f91;
  max-width: 750px;
}
.index_page .index-quick-link-contain p {
  font-size: clamp(36px, 3.125vw, 60px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 0.9;
  margin-bottom: 25px;
}
.index_page .index-quick-link-contain h2 {
  font-size: clamp(24px, 1.5625vw, 30px);
  font-weight: 300;
  letter-spacing: 0.2em;
}
.index_page .index-quick-link-contain .button-box {
  display: flex;
  gap: 50px;
  margin-top: 70px;
}
.index_page .index-quick-link-contain .button-box a {
  letter-spacing: 0.2em;
  color: #fff;
  font-size: 26px;
  padding: 6px 30px;
  border-radius: 25px;
  border: 1px solid #00a1f4;
  background: linear-gradient(120deg, #0ec5f4 20%, #056bdc 80%);
  box-shadow: inset 0 0 32px 5px rgba(255, 255, 255, 0.5);
  display: inline-block;
  text-decoration: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.4s ease;
}
.index_page .index-quick-link-contain .button-box a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #056bdc;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.index_page .index-quick-link-contain .button-box a:hover {
  color: #fff;
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(5, 107, 220, 0.1);
}
.index_page .index-quick-link-contain .button-box a:hover::before {
  opacity: 1;
}
.index_page .index-quick-link .container {
  margin: 0 auto;
}
.index_page .index-quick-link .mobile-only-br {
  display: none;
}
@media (max-width: 1200px) {
  .index_page .index-quick-link {
    background-position: 65%;
  }
}
@media (max-width: 900px) {
  .index_page .index-quick-link {
    background-image: url(../images/index/quick-link-bg-mb.jpg);
    background-position: bottom;
    min-height: 755px;
  }
  .index_page .index-quick-link p {
    line-height: 1.1;
  }
  .index_page .index-quick-link .mobile-only-br {
    display: block;
    content: "";
    height: 0;
  }
}
@media (max-width: 768px) {
  .index_page .index-quick-link-contain .button-box {
    flex-direction: column;
    display: inline-flex;
    gap: 25px;
    margin-top: 60px;
  }
}
.index_page .social {
  opacity: 0;
  transform: translateY(-50%) translateX(100px);
  transition: all 0.5s ease;
}
.index_page .social.is-active {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.about-intro {
  display: flex;
  gap: 4.9479166667vw;
  align-items: end;
}
.about-intro img {
  width: 30.2083333333vw;
}
.about-intro-info {
  max-width: 51.0416666667vw;
  margin: clamp(50px, 6.7708333333vw, 130px) 0 clamp(50px, 5.7291666667vw, 110px);
}
.about-intro-title {
  display: flex;
  gap: 20px;
}
.about-intro-title img {
  width: clamp(130px, 11.4583333333vw, 220px);
}
.about-intro-title .section-title {
  font-size: clamp(28px, 2.9166666667vw, 56px);
  font-weight: 700;
  letter-spacing: 0.075em;
  color: #0082cb;
}
.about-intro-note {
  font-size: clamp(24px, 1.5625vw, 30px);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 35px 0;
}
.about-intro-text {
  font-size: clamp(16px, 1.0416666667vw, 20px);
  line-height: 36px;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media (max-width: 1280px) {
  .about-intro {
    gap: 30px;
  }
  .about-intro-info {
    max-width: 100%;
    padding-right: 80px;
  }
  .about-intro-text {
    line-height: 28px;
  }
}
@media (max-width: 768px) {
  .about-intro {
    align-items: center;
    flex-direction: column-reverse;
    gap: 0;
  }
  .about-intro-info {
    padding: 0 50px;
    margin-bottom: 0;
  }
  .about-intro > img {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .about-intro-title {
    gap: 10px;
    flex-wrap: wrap;
  }
  .about-intro-title .section-title {
    letter-spacing: 0.07em;
    font-size: 26px;
    display: inline-block;
  }
}

.about-fatures {
  background-image: url(../images/about/pic-bg.jpg);
  background-size: cover;
  padding: clamp(70px, 6.7708333333vw, 130px) 0;
  background-position: center;
}
.about-fatures ul {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.about-fatures li {
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  width: 100%;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 15px;
  text-align: center;
}
.about-fatures li span {
  max-width: clamp(100px, 7.8125vw, 150px);
  aspect-ratio: 1;
  width: 70%;
  display: flex;
  align-items: center;
}
.about-fatures li img {
  max-width: 150px;
  max-height: 150px;
  width: 100%;
  height: auto;
  display: block;
}
.about-fatures li h3 {
  font-size: clamp(30px, 2.1875vw, 42px);
  letter-spacing: 0.1em;
  color: #0082cb;
  font-weight: 400;
  margin-top: 20px;
}
.about-fatures li p {
  font-size: clamp(16px, 1.4583333333vw, 28px);
  color: #393939;
}
@media (max-width: 1200px) {
  .about-fatures li img {
    max-height: 90px;
  }
  .about-fatures li h3 {
    margin-top: 10px;
  }
}
@media (max-width: 950px) {
  .about-fatures ul {
    max-width: 550px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px;
  }
}
@media (max-width: 768px) {
  .about-fatures ul {
    max-width: 100%;
    gap: 30px;
  }
  .about-fatures li h3 {
    margin-top: 10px;
  }
}
@media (max-width: 600px) {
  .about-fatures .container {
    padding: 0 25px;
  }
  .about-fatures ul {
    gap: 15px;
  }
  .about-fatures li img {
    max-height: 75px;
    max-width: 70%;
    margin: auto;
  }
  .about-fatures li h3 {
    font-size: 20px;
    margin-top: 5px;
  }
  .about-fatures li p {
    font-size: 14px;
  }
}

.about-core {
  padding-top: clamp(150px, 15.625vw, 300px);
  background-image: url(../images/about/people-bg.jpg);
  background-size: cover;
  position: relative;
}
.about-core ul {
  display: flex;
  justify-content: space-between;
}
.about-core ul li {
  border-radius: 30px;
  box-shadow: 15px 11px 24px rgba(37, 37, 37, 0.1);
  background-color: rgba(255, 255, 255, 0.9);
  max-width: 665px;
  width: calc(50% - 150px);
  padding: 60px 50px;
  letter-spacing: 0.075em;
}
.about-core ul li:first-of-type {
  position: relative;
  top: -80px;
}
.about-core ul h3 {
  font-size: clamp(28px, 2.7083333333vw, 52px);
  color: #0082cb;
  font-weight: 600;
  line-height: clamp(40px, 3.75vw, 72px);
  margin-bottom: 30px;
}
.about-core ul p {
  font-size: clamp(16px, 1.0416666667vw, 20px);
  color: #393939;
  text-align: justify;
}
.about-core .about-people {
  position: relative;
  margin-top: -395px;
  pointer-events: none;
}
.about-core .about-people img {
  margin: auto;
  display: block;
  position: relative;
  z-index: 1;
}
.about-core .about-people:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 200px;
  background-color: #2c7cd3;
  bottom: -30px;
}
@media (max-width: 1200px) {
  .about-core ul li {
    width: 48%;
  }
  .about-core .about-people {
    margin-top: -95px;
  }
  .about-core .about-people img {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .about-core {
    padding-top: 65px;
  }
  .about-core .container {
    padding: 0 30px;
  }
  .about-core ul {
    flex-direction: column;
  }
  .about-core ul li {
    width: 100%;
    padding: 40px 35px;
    line-height: 30px;
  }
  .about-core ul li:first-of-type {
    top: 0;
    margin-bottom: 50px;
  }
  .about-core ul h3 {
    margin-bottom: 20px;
  }
  .about-core .about-people {
    margin-top: 40px;
  }
  .about-core .about-people img {
    width: 100%;
    max-width: 480px;
  }
  .about-core .about-people::after {
    height: 120px;
  }
}

.about-marquee {
  position: absolute;
  bottom: 330px;
}
.about-marquee .marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}
.about-marquee .marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: marquee-scroll 20s linear infinite;
}
.about-marquee .marquee-content span {
  display: inline-block;
  font-size: 180px;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 100;
  color: #fff;
}
@media (max-width: 1024px) {
  .about-marquee {
    bottom: 160px;
  }
}

.about-award {
  padding: 20px 0 90px;
}
.about-award-title {
  color: #fff;
  text-align: center;
  max-width: 1600px;
  letter-spacing: 0.075em;
  margin: 0 auto 100px;
  padding: 0 45px;
}
.about-award-title h2 {
  font-size: clamp(42px, 3.5416666667vw, 68px);
  margin-bottom: 40px;
  letter-spacing: 0.2em;
}
.about-award-title p {
  font-size: clamp(16px, 1.0416666667vw, 20px);
  line-height: 32px;
}
.about-award-swiper .swiper-slide {
  width: auto;
  opacity: 0.5;
  display: flex;
  align-items: center;
  padding: 0 40px;
  transform: translateZ(0) scale(0.9) !important;
  transition: opacity 0.4s ease, transform 0.6s ease;
  flex-direction: column;
}
.about-award-swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
  transform: translateZ(0) scale(1) !important;
  transition: 0.6s;
}
.about-award-swiper .swiper-slide img {
  max-height: 500px;
  width: auto;
  margin: auto;
}
.about-award-swiper h3 {
  font-size: 30px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.075em;
  margin: 40px auto;
  text-align: center;
}
.about-award-swiper .number-pagination {
  margin-top: 70px;
  color: #fff;
}
.about-award-swiper .circle-arrow svg {
  fill: #fff;
}
.about-award-swiper .circle-arrow.swiper-button-prev {
  left: 5.7291666667vw;
}
.about-award-swiper .circle-arrow.swiper-button-next {
  right: 5.7291666667vw;
}
@media (min-width: 1200px) {
  .about-award-swiper:before {
    content: "";
    display: block;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgb(44, 124, 211) 0%, rgba(44, 124, 211, 0) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    pointer-events: none;
  }
  .about-award-swiper::after {
    content: "";
    display: block;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgb(44, 124, 211) 0%, rgba(44, 124, 211, 0) 100%);
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    pointer-events: none;
  }
}
@media (max-width: 1024px) {
  .about-award {
    padding-top: 80px;
  }
  .about-award .swiper-wrapper {
    align-items: center;
  }
  .about-award .swiper-slide {
    padding: 0 60px;
  }
  .about-award .swiper-slide img {
    height: auto;
  }
  .about-award h3 {
    font-size: 24px;
  }
  .about-award .circle-arrow.swiper-button-prev {
    left: -10px;
  }
  .about-award .circle-arrow.swiper-button-next {
    right: -10px;
  }
}

@media (max-width: 768px) {
  .about_page .banner-page img {
    -o-object-position: 24%;
       object-position: 24%;
  }
}
.news-item {
  background-color: #fff;
  border-radius: 30px;
  display: flex;
  padding: 40px clamp(30px, 2.0833333333vw, 40px);
  gap: clamp(30px, 2.6041666667vw, 50px);
  align-items: center;
  transition: 0.6s;
  border: 1px solid transparent;
  margin-bottom: clamp(25px, 2.0833333333vw, 45px);
}
.news-item .news-img {
  border-radius: 20px;
  overflow: hidden;
}
.news-item .news-img img {
  border-radius: 20px;
  transform: scale(1);
  transition: 0.6s;
}
.news-item .news-info {
  max-width: 775px;
}
.news-item .news-top {
  margin-bottom: clamp(15px, 1.5625vw, 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news-item .news-date {
  letter-spacing: 0.075em;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}
.news-item .news-date p:nth-of-type(1) {
  font-size: 38px;
  line-height: 1;
}
.news-item .news-date p:nth-of-type(2) {
  font-size: 13px;
}
.news-item .news-class {
  color: #250188;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #250188;
  padding: 0 0 10px;
}
.news-item .news-bottom {
  letter-spacing: 0.075em;
}
.news-item .news-bottom .block-title {
  font-size: clamp(22px, 1.5625vw, 30px);
  font-weight: 600;
  color: #0082cb;
  margin-bottom: clamp(20px, 1.0416666667vw, 20px);
  line-height: clamp(32px, 2.1875vw, 42px);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-item .news-bottom p {
  font-size: 18px;
  line-height: clamp(28px, 1.8229166667vw, 35px);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-item:hover {
  background-color: #efefef;
  border: 1px solid #250188;
  transition: 0.6s;
}
.news-item:hover .news-img img {
  transform: scale(1.1);
  transition: 0.6s;
}
.news-item:hover .news-bottom h2 {
  color: #250188;
}
@media (max-width: 740px) {
  .news-item {
    flex-direction: column;
    padding: 20px 20px 40px;
  }
}

.news_detail main {
  background-color: #fff;
  border-radius: 20px;
  padding: 50px clamp(40px, 3.125vw, 80px);
  line-height: 1.68;
  letter-spacing: 0.05em;
  font-size: clamp(16px, 0.9375vw, 18px);
  width: 90%;
  margin: auto;
}
.news_detail .page-title {
  font-size: clamp(32px, 1.9791666667vw, 38px);
  color: #0082cb;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  margin: 10px 0;
  line-height: 1.4;
}
.news_detail > .container {
  max-width: 1200px;
  padding: clamp(25px, 2.6041666667vw, 50px) 0;
}
.news_detail .category {
  color: #250188;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-align: center;
}
.news_detail .news-top {
  padding-bottom: 20px;
  margin-bottom: 80px;
  position: relative;
}
.news_detail .news-top::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background-color: #dddddd;
  left: calc(50% - 20px);
  bottom: -20px;
}
.news_detail .news-date {
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #999;
  letter-spacing: 1px;
  font-size: 14px;
}
.news_detail .editor p {
  margin: 20px 0;
}
.news_detail .share-social {
  margin-top: 80px;
}
.news_detail .share-social > p {
  text-align: center;
  color: #999;
  position: relative;
  font-size: 16px;
  letter-spacing: 5px;
}
.news_detail .share-social > p span {
  background-color: #fff;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}
.news_detail .share-social > p::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  display: block;
  background: #ccc;
  top: 50%;
}
.news_detail .share-social ul {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 30px auto;
}
.news_detail .share-social ul a {
  display: flex;
  border-radius: 99px;
  align-items: center;
  width: 40px;
  aspect-ratio: 1;
  justify-content: center;
  opacity: 0.8;
}
.news_detail .share-social ul a.fb {
  background-color: #0064E0;
}
.news_detail .share-social ul a.line {
  background-color: #07b53b;
}
.news_detail .share-social ul a.copy-link {
  background-color: #666;
}
.news_detail .share-social ul a.copy-link img {
  filter: brightness(0) invert(1);
}
.news_detail .share-social ul a:hover {
  transform: scale(0.95);
  transition: 0.6s;
  opacity: 0.8;
}
.news_detail .share-social ul img {
  height: 18px;
}
.news_detail .ui-button {
  padding: clamp(5px, 0.78125vw, 15px) 55px;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  color: white;
  background: #0082cb;
  letter-spacing: 0.075em;
  font-size: 22px;
  transition: 0.6s;
  width: 100%;
  margin: clamp(80px, 6.25vw, 120px) auto 40px;
  display: block;
  text-align: center;
  max-width: 480px;
}
.news_detail .ui-button:hover {
  background-color: #250188;
  color: #fff;
  transition: 0.6s;
}
@media (max-width: 600px) {
  .news_detail.light-blue {
    background-color: #fff;
  }
  .news_detail main {
    padding: 20px;
  }
}

.faq_page .page-container .container {
  max-width: 1400px;
}

.faq-item {
  border: 1px solid #0082cb;
  border-radius: 30px;
  background: #fff;
  margin-bottom: 25px;
  overflow: hidden;
}
.faq-item .faq-title {
  font-size: clamp(20px, 1.5625vw, 30px);
  cursor: pointer;
  color: #0082cb;
  padding: clamp(15px, 0.9375vw, 18px);
  letter-spacing: 0.1em;
  padding-left: clamp(48px, 4.4270833333vw, 85px);
  position: relative;
  font-weight: 500;
}
.faq-item .faq-title::before {
  content: "Q";
  font-family: "Poppins", sans-serif;
  font-size: clamp(30px, 1.9791666667vw, 38px);
  font-weight: 600;
  position: absolute;
  left: clamp(15px, 1.6666666667vw, 32px);
  color: #0082cb;
  top: 50%;
  transform: translateY(-50%);
}
.faq-item .faq-title::after {
  content: "+";
  font-family: "Noto Sans TC", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #0082cb;
  position: absolute;
  right: clamp(15px, 1.3020833333vw, 25px);
  transition: 0.6s;
  top: 50%;
  transform: translateY(-50%);
}
.faq-item .faq-content {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height 0.6s ease, opacity 0.6s ease, padding 0.6s ease;
  margin: 0;
  padding: 0 18px 0 clamp(48px, 4.4270833333vw, 85px);
  position: relative;
  font-size: clamp(20px, 1.25vw, 24px);
  letter-spacing: 0.2em;
}
.faq-item .faq-content::before {
  content: "A";
  font-family: "Poppins", sans-serif;
  font-size: clamp(30px, 1.9791666667vw, 38px);
  font-weight: 600;
  position: absolute;
  left: clamp(15px, 1.6666666667vw, 32px);
  color: #0082cb;
  top: 30px;
  opacity: 0;
  transition: 0.6s;
}
.faq-item.faq-open .faq-title {
  background-color: #0082cb;
  color: #fff;
  transition: 0.6s;
}
.faq-item.faq-open .faq-title::before, .faq-item.faq-open .faq-title::after {
  color: #fff;
}
.faq-item.faq-open .faq-title::after {
  transform: translateY(-50%) rotate(-45deg);
  transition: 0.6s;
}
.faq-item.faq-open .faq-content {
  opacity: 1;
  padding-bottom: 30px;
  box-sizing: content-box;
  height: auto;
  padding-top: clamp(30px, 1.8229166667vw, 35px);
  transition: height 0.6s ease, opacity 0.6s ease, padding 0.6s ease;
}
.faq-item.faq-open .faq-content::before {
  opacity: 1;
  transition: 0.1s;
}
@media (max-width: 768px) {
  .faq-item .faq-title {
    padding-right: 45px;
  }
}

.contact_page .contact-section {
  display: flex;
  padding: clamp(45px, 3.6458333333vw, 70px) clamp(25px, 3.6458333333vw, 70px);
  margin: auto;
  width: 80%;
  max-width: clamp(100% - 400px, 100% - 590px, 100% - 590px);
}
.contact_page .contact-section .section-title {
  font-size: clamp(28px, 1.875vw, 36px);
  color: #0082cb;
  letter-spacing: 0.075em;
  padding: 50px;
}
.contact_page .contact-content {
  border-radius: 20px;
  background-color: #fff;
  margin: 0 auto;
  display: block;
  width: 95%;
  max-width: 1085px;
}
.contact_page .contact-info {
  padding: 0 60px 80px;
  border-top: 1px solid #ccc;
}
.contact_page .contact-info p {
  word-break: break-all;
}
.contact_page .contact-info > ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact_page .contact-info > ul > li {
  letter-spacing: 0.075em;
  margin-top: 110px;
  box-sizing: border-box;
}
.contact_page .contact-info .block-title {
  display: flex;
  gap: 15px;
  font-size: 24px;
  margin-bottom: 10px;
  align-items: center;
}
.contact_page .contact-info .block-title img {
  max-width: 35px;
  max-height: 30px;
}
.contact_page .contact-info .block-title + p {
  font-size: 20px;
  line-height: 36px;
}
.contact_page .contact-info .block-title + p span {
  display: inline-block;
}
.contact_page .contact-info .group-btn {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}
.contact_page .contact-info .group-btn a {
  display: inline-block;
  transform: scale(1);
  transition: 0.6s;
}
.contact_page .contact-info .group-btn a:hover {
  transform: scale(0.9);
  transition: 0.6s;
}
@media (min-width: 1600px) {
  .contact_page .contact-banner {
    min-width: 590px;
  }
}
@media (min-width: 1026px) and (max-width: 1600px) {
  .contact_page .contact-banner {
    width: 30.7291666667vw;
    max-width: clamp(400px, 30.7291666667vw, 590px);
  }
}
@media (min-width: 1025px) {
  .contact_page main {
    display: flex;
  }
  .contact_page .contact-banner {
    position: relative;
    flex: 1;
    display: flex;
  }
  .contact_page .contact-banner-title {
    letter-spacing: 0.1em;
    line-height: 1.2;
    width: 80%;
    position: absolute;
    top: 50vh;
    right: 0;
    max-width: 435px;
    padding-bottom: 35px;
  }
  .contact_page .contact-banner-title .title-top {
    display: flex;
    flex-direction: column-reverse;
    border-bottom: 1px solid #fff;
    padding-bottom: 30px;
  }
  .contact_page .contact-banner-title .title-top p {
    font-size: clamp(30px, 2.5vw, 48px);
    font-family: "Poppins", sans-serif;
    color: #fff;
  }
  .contact_page .contact-banner-title .title-top h1 {
    letter-spacing: 0.1em;
    color: #fff;
    font-size: clamp(30px, 2.5vw, 48px);
  }
  .contact_page .contact-banner-title .title-top + p {
    font-size: 18px;
    color: #fff;
    margin-top: 30px;
  }
  .contact_page .contact-banner img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 1440px) {
  .contact_page .contact-info > ul {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 50px;
  }
  .contact_page .contact-info > ul > li {
    margin: 0 0 30px;
  }
}
@media (max-width: 1280px) {
  .contact_page .contact-info > ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 1024px) {
  .contact_page .contact-banner {
    position: relative;
    overflow: hidden;
  }
  .contact_page .contact-banner img {
    width: 100%;
    -o-object-position: 0 65%;
       object-position: 0 65%;
  }
  .contact_page .contact-banner-title {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    width: 95%;
    position: absolute;
    left: clamp(20px, 5%, 10%);
    top: 32%;
  }
  .contact_page .contact-banner-title .title-top {
    display: flex;
    flex-direction: column-reverse;
    padding-bottom: 25px;
    border-bottom: 1px solid #fff;
    margin-bottom: 25px;
  }
  .contact_page .contact-banner-title .title-top + p {
    font-size: 16px;
  }
  .contact_page .contact-banner-title h1 {
    font-size: clamp(30px, 2.5vw, 48px);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  .contact_page .contact-banner-title p {
    font-size: clamp(30px, 2.5vw, 48px);
    color: #fff;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.05em;
  }
  .contact_page .contact-banner img {
    height: 295px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .contact_page .contact-section {
    width: 100%;
    max-width: 100%;
  }
  .contact_page .contact-content h2 {
    padding: 50px 35px 35px;
  }
  .contact_page .contact-info {
    padding: 10px 35px 80px;
  }
}
@media (max-width: 470px) {
  .contact_page .contact-section .section-title {
    padding: 30px 30px 25px;
  }
  .contact_page .contact-info {
    padding: 0 30px 80px;
  }
  .contact_page .contact-info .block-title img {
    max-width: 25px;
    max-height: 25px;
  }
  .contact_page .contact-info .block-title + p {
    font-size: 16px;
    line-height: 1.6;
  }
  .contact_page .contact-info > ul {
    margin-top: 30px;
  }
  .contact_page .contact-info > ul > li {
    margin-bottom: 20px;
  }
}

.shopping_page .fixed-social {
  display: none;
}

.shopping-container {
  display: flex;
  max-width: 1460px;
  margin: clamp(45px, 3.3854166667vw, 65px) auto;
  letter-spacing: 0.05em;
  gap: clamp(60px, 4.6875vw, 90px);
  padding: 0 30px;
}
.shopping-container main {
  max-width: 920px;
  width: 100%;
}
.shopping-container main .page-title {
  font-size: clamp(30px, 1.875vw, 36px);
  color: #250188;
  letter-spacing: 0.1em;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: clamp(35px, 2.8645833333vw, 55px);
}
.shopping-container main .page-title img {
  height: 36px;
}
.shopping-container main .section-title {
  font-size: 24px;
  color: #999;
  letter-spacing: 0.075em;
  font-weight: 500;
  margin-bottom: 25px;
}
.shopping-container main .block-title {
  font-size: 16px;
  color: #000;
  letter-spacing: 0.075em;
  font-weight: 700;
  margin-bottom: 15px;
}
.shopping-container aside {
  max-width: 375px;
  width: 100%;
}
.shopping-container .cart-list .cart-item {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  gap: 10px;
  margin-bottom: 10px;
}
.shopping-container .cart-list .item-pic {
  max-width: clamp(150px, 7.8125vw, 190px);
  width: 100%;
  transform: scale(1);
  opacity: 1;
}
.shopping-container .cart-list .item-pic img {
  border-radius: 10px;
  width: 100%;
}
.shopping-container .cart-list .item-pic:hover {
  transition: 0.8s;
  opacity: 0.8;
  transform: scale(0.98);
}
.shopping-container .cart-list .item-info {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.shopping-container .cart-list .item-info .item-name {
  font-size: 18px;
  color: #000;
  font-weight: 400;
}
.shopping-container .cart-list .item-info .item-price {
  display: flex;
  padding-right: clamp(60px, 5.7291666667vw, 110px);
  position: relative;
  font-family: "Poppins", sans-serif;
}
.shopping-container .cart-list .item-info .item-price p {
  display: flex;
  font-size: 24px;
  color: #250188;
  flex-direction: column;
  text-align: right;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 400;
  margin-right: 20px;
}
.shopping-container .cart-list .item-info .item-price p del {
  font-size: 16px;
  color: #9ecae4;
}
.shopping-container .cart-list .item-info .item-dele {
  position: absolute;
  width: 40px;
  height: 40px;
  background: url(../images/shopping/dele.svg);
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  background-size: 18px 24px;
  top: calc(50% - 20px);
  right: clamp(0px, 1.3020833333vw, 25px);
  cursor: pointer;
  transform: scale(1);
  transition: 0.5s;
}
.shopping-container .cart-list .item-info .item-dele:hover {
  transform: scale(0.95);
  transition: 0.5s;
  opacity: 0.7;
}
.shopping-container .add-shopping-btn {
  font-size: 16px;
  color: #0082cb;
  display: flex;
  justify-content: center;
  border-radius: 99px;
  background-color: #f7f7f7;
  padding: 12px;
  transition: 0.5s;
  transform: scale(1);
  margin-top: 20px;
}
.shopping-container .add-shopping-btn span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.shopping-container .add-shopping-btn span::before {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  background-image: url(../images/shopping/add.svg);
  background-repeat: center;
  background-repeat: no-repeat;
  filter: brightness(1) invert(0);
  color: #fff;
}
.shopping-container .add-shopping-btn:hover {
  background-color: #0082cb;
  color: #fff;
  transition: 0.5s;
}
.shopping-container .add-shopping-btn:hover span::before {
  filter: brightness(0) invert(1);
}
.shopping-container .shopping-info {
  margin-top: 80px;
}
.shopping-container .shopping-info [hidden] {
  display: none !important;
}
.shopping-container .shopping-info input:not([type=radio]):disabled,
.shopping-container .shopping-info select:disabled,
.shopping-container .shopping-info textarea:disabled {
  border-color: #d2d2d2;
  background-color: #f1f1f1;
  color: #888;
  cursor: not-allowed;
  opacity: 0.8;
}
.shopping-container .shopping-info input[type=radio]:disabled {
  border-color: #bbb;
  background-color: #eee;
  cursor: not-allowed;
  opacity: 0.55;
}
.shopping-container .shopping-info .form-error-summary {
  margin-bottom: 28px;
  padding: 16px 20px;
  border: 1px solid #e6a4a4;
  border-radius: 8px;
  background: #fff5f5;
  color: #8f1d1d;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  outline: none;
}
.shopping-container .shopping-info .form-error-summary:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 130, 203, 0.2);
}
.shopping-container .shopping-info .errorlist {
  margin: 6px 0 12px;
  padding: 0;
  list-style: none;
  color: #b3261e;
  font-size: 14px;
  line-height: 1.5;
}
.shopping-container .shopping-info input:has(+ .errorlist),
.shopping-container .shopping-info select:has(+ .errorlist),
.shopping-container .shopping-info textarea:has(+ .errorlist) {
  border-color: #c62828;
  box-shadow: 0 0 0 2px rgba(198, 40, 40, 0.12);
}
.shopping-container .shopping-info .invoice-section {
  max-width: 100%;
}
.shopping-container .shopping-info .invoice-section .radio-group {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}
.shopping-container .shopping-info .invoice-section .radio-group label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}
.shopping-container .shopping-info .invoice-section .hidden {
  display: none !important;
}
.shopping-container .shopping-info .invoice-section .form-row {
  margin-top: 15px;
}
.shopping-container .shopping-info .invoice-section .form-row label {
  margin-left: 20px;
}
.shopping-container .shopping-info .invoice-section .tabs-container {
  margin-top: 10px;
  letter-spacing: 0.05em;
}
.shopping-container .shopping-info .invoice-section .tabs-container .tab-headers {
  display: flex;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
}
.shopping-container .shopping-info .invoice-section .tabs-container .tab-btn {
  padding: 7px 25px;
  cursor: pointer;
  border: 1px solid transparent;
  border-bottom: none;
  background: transparent;
  font-size: 16px;
  color: #666;
  margin-bottom: -1px;
  letter-spacing: 0.05em;
}
.shopping-container .shopping-info .invoice-section .tabs-container .tab-btn.active {
  border-color: #ccc;
  border-radius: 5px 5px 0 0;
  background: #fff;
  color: #333;
}
.shopping-container .shopping-info .invoice-section .tabs-container .tab-content {
  padding-top: 10px;
}
.shopping-container .bottom-spacing {
  margin-bottom: 80px;
}
.shopping-container .section-title {
  font-weight: bold;
  margin-bottom: 15px;
}
.shopping-container .school-section .school-selector-control,
.shopping-container .school-section .school-manual-control {
  position: relative;
}
.shopping-container .school-section .school-selector-control {
  width: 100%;
}
.shopping-container .school-section .school-selector-control .school-select-cover {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  border: 0;
  border-radius: 5px;
  background: transparent;
  cursor: pointer;
}
.shopping-container .school-section .school-selector-fieldset,
.shopping-container .school-section .other-school-input {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.shopping-container .school-section .school-selector-fieldset {
  width: 100%;
}
.shopping-container .school-section .school-choice-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.shopping-container .school-section .school-mode-options {
  align-items: center;
  flex-wrap: wrap;
}
.shopping-container .school-section .school-mode-options .block-title {
  margin: 0 auto 0 0;
}
.shopping-container .school-section .school-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  white-space: nowrap;
  padding-top: 11px;
}
.shopping-container .school-section .school-select-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 15px;
  width: 100%;
}
.shopping-container .school-section .school-select-row .js-select-school {
  grid-column: 1/-1;
}
.shopping-container .school-section .school-other-radio {
  margin-bottom: 12px;
}
.shopping-container .school-section .other-school-input {
  width: 100%;
  margin-bottom: 26px;
}
.shopping-container .school-section .other-school-input .form-control {
  width: 100%;
}
.shopping-container .school-section .school-manual-control .school-input-cover {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  border: 0;
  border-radius: 5px;
  background: transparent;
  cursor: pointer;
}
.shopping-container .school-section .school-manual-control .school-input-cover:hover {
  background: transparent;
}
.shopping-container .school-section .grade-row {
  border-top: 1px solid #ccc;
  padding-top: 20px;
}
.shopping-container .school-section .grade-row select {
  width: 100%;
}
.shopping-container .lecture-section [data-delivery-city-selector][data-address-state=city-needed] [data-checkout-delivery-zip], .shopping-container .lecture-section [data-delivery-city-selector][data-address-state=area-needed] [data-checkout-delivery-zip] {
  background-color: #f1f1f1;
  color: #888;
  cursor: not-allowed;
}
.shopping-container .lecture-section [data-delivery-city-selector][data-address-state=city-needed] [data-checkout-delivery-area] {
  background-color: #f1f1f1;
  color: #888;
  cursor: not-allowed;
}
.shopping-container .lecture-section [data-delivery-city-selector] {
  gap: 8px;
}
.shopping-container .lecture-section [data-delivery-city-selector] select {
  flex: 1 1 0;
  min-width: 0;
}
.shopping-container .lecture-section [data-delivery-city-selector] [data-checkout-delivery-zip] {
  flex: 0 0 82px;
  width: 82px;
}
.shopping-container .lecture-section .lecture-form {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 15px;
}
.shopping-container .lecture-section .lecture-form input {
  max-height: 42px;
}
.shopping-container .lecture-section .check-input {
  margin: clamp(25px, 1.3020833333vw, 30px) auto clamp(30px, 2.0833333333vw, 40px);
}
.shopping-container .lecture-section .w50 {
  width: calc(50% - 10px);
}
.shopping-container .lecture-section .w100 {
  width: 100%;
}
.shopping-container .lecture-section textarea {
  min-height: 150px;
}
.shopping-container .row-bottom {
  margin-bottom: 20px;
}
.shopping-container .order-summary {
  width: 100%;
  max-width: 400px;
}
.shopping-container .order-summary .summary-sticky {
  margin-top: 70px;
  position: sticky;
  top: 150px;
}
.shopping-container .order-summary .summary-sticky .summary-title {
  font-size: 20px;
  font-weight: bold;
  border-bottom: 1px solid #b2b2b2;
  color: #333;
  padding-bottom: 8px;
}
.shopping-container .order-summary .summary-sticky .summary-section {
  border-bottom: 1px solid #b2b2b2;
  padding: 20px 0 26px;
}
.shopping-container .order-summary .summary-sticky .summary-section #id_coupon_code {
  display: block;
  width: 100%;
  max-width: 100%;
}
.shopping-container .order-summary .summary-sticky .summary-section .coupon-detail {
  margin: 8px 0 14px;
  border-radius: 4px;
  background: #f4f9ff;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  padding: 9px 12px;
}
.shopping-container .order-summary .summary-sticky .summary-section .coupon-detail p {
  margin: 2px 0 0;
}
.shopping-container .order-summary .summary-sticky .summary-section [data-quote-errors]:not(:empty) {
  margin-top: 12px;
  border-radius: 4px;
  background: #fff5f5;
  color: #9b2424;
  font-size: 14px;
  line-height: 1.6;
  padding: 9px 12px;
}
.shopping-container .order-summary .summary-sticky .summary-section .section-label {
  margin-bottom: 5px;
  display: block;
}
.shopping-container .order-summary .summary-sticky .summary-section .text-blue {
  margin-top: 10px;
  color: #0082cb;
}
.shopping-container .order-summary .summary-sticky .summary-section .text-red {
  margin-top: 10px;
  color: #e80606;
}
.shopping-container .order-summary .summary-sticky .coupon-group {
  display: flex;
  justify-content: space-between;
  gap: 5px;
}
.shopping-container .order-summary .summary-sticky .coupon-group button {
  color: #fff;
  border-radius: 5px;
  padding: 0 15px;
}
.shopping-container .order-summary .summary-sticky .coupon-group .btn-use {
  background-color: #250188;
}
.shopping-container .order-summary .summary-sticky .coupon-group .btn-clear {
  background-color: #929292;
}
.shopping-container .order-summary .summary-sticky .existing-coupon-field {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #b2b2b2;
}
.shopping-container .order-summary .summary-sticky .existing-coupon-field label {
  display: block;
  margin-bottom: 6px;
}
.shopping-container .order-summary .summary-sticky .existing-coupon-field select {
  width: 100%;
}
.shopping-container .order-summary .summary-sticky .points-info {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #250188;
  margin: 5px 0 18px;
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
}
.shopping-container .order-summary .summary-sticky .points-info span {
  font-weight: 600;
}
.shopping-container .order-summary .summary-sticky .points-info svg {
  width: 18px;
  fill: #250188;
}
.shopping-container .order-summary .summary-sticky .checkbox-group {
  font-size: 17px;
}
.shopping-container .order-summary .summary-sticky .price-details .price-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid #b2b2b2;
}
.shopping-container .order-summary .summary-sticky .final-row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  color: #e80606;
  padding: 10px 0;
  margin-bottom: clamp(40px, 2.0833333333vw, 50px);
}
.shopping-container .order-summary .summary-sticky .final-row .final-amount {
  font-size: 18px;
  font-weight: 600;
}
.shopping-container .order-summary .summary-sticky .btn-checkout {
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 1200px) {
  .shopping-container .order-summary {
    max-width: 300px;
  }
  .shopping-container .order-summary .input-coupon {
    width: 180px;
  }
  .shopping-container .order-summary .summary-sticky .coupon-group .btn-use,
  .shopping-container .order-summary .summary-sticky .coupon-group .btn-clear {
    padding: 0 10px;
  }
}
@media (max-width: 1024px) {
  .shopping-container .cart-list .cart-item {
    gap: 20px;
    padding: 20px 15px;
  }
  .shopping-container .cart-list .item-info {
    align-items: flex-start;
    flex-direction: column;
  }
  .shopping-container .cart-list .item-info .item-price {
    width: 100%;
  }
  .shopping-container .cart-list .item-info .item-price p {
    flex-direction: row;
    gap: 10px;
    align-items: baseline;
  }
  .shopping-container .cart-list .item-info .item-dele {
    background-position: bottom;
    right: 0;
    top: inherit;
    bottom: 5px;
  }
}
@media (max-width: 768px) {
  .shopping-container {
    flex-direction: column;
  }
  .shopping-container .shopping-info .invoice-section .radio-group {
    justify-content: space-between;
    gap: 5px;
  }
  .shopping-container .order-summary {
    max-width: 100%;
    margin-bottom: 45px;
  }
  .shopping-container .order-summary .summary-sticky {
    margin-top: 0;
    position: relative;
    top: 0;
  }
}
@media (max-width: 500px) {
  .shopping-container .bottom-spacing {
    margin-bottom: 50px;
  }
  .shopping-container .shopping-info .invoice-section .radio-group label {
    width: 33%;
    align-items: flex-start;
  }
  .shopping-container .shopping-info .invoice-section .radio-group label input[type=radio] {
    margin-top: 10px;
  }
  .shopping-container .shopping-info .school-section .school-choice-row {
    align-items: flex-start;
  }
  .shopping-container .shopping-info .school-section .school-select-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .shopping-container .row-bottom {
    margin-bottom: 10px;
  }
  .shopping-container .lecture-section .w50 {
    width: 100%;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 5px;
  }
  .shopping-container .lecture-section .lecture-form select,
  .shopping-container .lecture-section .lecture-form input {
    width: 100%;
  }
  .shopping-container .lecture-section .lecture-form .form-row {
    gap: 8px;
  }
}
@media (max-width: 470px) {
  .shopping-container .shopping-info .invoice-section .form-row label {
    margin-left: 0;
  }
  .shopping-container .shopping-info .invoice-section .form-row input {
    width: calc(100% - 100px);
  }
}
@media (max-width: 420px) {
  .shopping-container .cart-list .cart-item {
    gap: 10px;
  }
  .shopping-container .cart-list .item-pic {
    min-width: 90px;
  }
  .shopping-container .cart-list .item-info {
    width: calc(100% - 90px);
  }
}

.shopping_finish .fixed-social {
  display: none;
}
.shopping_finish .page-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding-bottom: 100px;
}
.shopping_finish p {
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.shopping_finish .status-img {
  width: 120px;
  display: block;
  margin: 0 auto 30px;
}
.shopping_finish .status-title {
  font-size: clamp(30px, 1.875vw, 36px);
  font-weight: 600;
  color: #250188;
  margin-bottom: 30px;
}
.shopping_finish .status-msg {
  font-size: clamp(18px, 1.1458333333vw, 22px);
}
.shopping_finish .status-num {
  font-size: clamp(18px, 1.1458333333vw, 22px);
}
.shopping_finish .status-num span {
  color: #0082cb;
  font-weight: 600;
}
.shopping_finish .shopping-detail {
  border-radius: 20px;
  border: 1px solid #ccc;
  margin: 50px auto;
  width: 90%;
}
.shopping_finish .shopping-detail > p {
  font-size: 20px;
  background-color: #0082cb;
  color: #fff;
  padding: 15px 20px;
  border-radius: 20px 20px 0 0;
}
.shopping_finish .shopping-item {
  display: flex;
  margin: auto;
  gap: 20px;
  padding: 20px;
  border-bottom: 1px solid #ccc;
  text-align: left;
}
.shopping_finish .shopping-item:last-of-type {
  border-bottom: 0;
}
.shopping_finish .shopping-item-pic {
  width: 150px;
}
.shopping_finish .shopping-item-pic img {
  width: 100%;
}
.shopping_finish .shopping-item-info {
  display: flex;
  justify-content: space-between;
  line-height: 1;
}
.shopping_finish .shopping-item-info .price {
  font-size: clamp(28px, 1.875vw, 36px);
  color: #250188;
  font-family: Arial, Helvetica, sans-serif;
}
.shopping_finish .shopping-item-info .del {
  font-size: 18px;
  color: #9ecae4;
  text-decoration: line-through;
}
.shopping_finish .shopping-item-info {
  flex-direction: column;
}
.shopping_finish .shopping-item-info p {
  font-size: clamp(16px, 1.0416666667vw, 20px);
}
.shopping_finish .shopping-item-info .price {
  font-size: 20px;
}
.shopping_finish .shopping-item-info .price del {
  font-size: 16px;
}
.shopping_finish .price-details {
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  text-align: left;
}
.shopping_finish .price-details .price-row {
  color: #666;
}
.shopping_finish .price-details .price-row p {
  margin-top: 5px;
}
.shopping_finish .price-details .total-amount {
  font-size: 24px;
  color: #250188;
  font-weight: 600;
}
.shopping_finish .price-details .total-amount span {
  font-size: 16px;
  margin-right: 10px;
  font-weight: 400;
}
.shopping_finish .member-text {
  font-size: 20px;
}
.shopping_finish .member-text a {
  color: #0082cb;
  text-decoration: underline;
}
@media (max-width: 600px) {
  .shopping_finish .price-details {
    flex-direction: column;
    text-align: right;
  }
}

.payment-take-number-page {
  max-width: 920px;
  margin: auto;
}

.payment-take-number-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.payment-take-number-actions .payment-action {
  width: auto;
  margin: 0;
  padding: 10px 24px;
  border: 0;
  border-radius: 99px;
  background: #0082cb;
  color: #fff;
  cursor: pointer;
  letter-spacing: 0.075em;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  transition: 0.6s;
}
.payment-take-number-actions .payment-action:hover, .payment-take-number-actions .payment-action:focus-visible {
  background: #250188;
  color: #fff;
}

.payment-slip {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  padding: clamp(22px, 4vw, 42px);
}

.payment-slip h1 {
  color: #250188;
  font-size: 30px;
  margin: 0 0 26px;
}

.payment-slip h2 {
  border-bottom: 2px solid #0082cb;
  color: #333;
  font-size: 20px;
  margin: 28px 0 12px;
  padding-bottom: 8px;
}

.slip-lead {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.payment-table {
  border-collapse: collapse;
  margin: 0 0 24px;
  width: 100%;
}

.payment-table th, .payment-table td {
  border: 1px solid #b8b8b8;
  padding: 11px 14px;
  text-align: left;
  vertical-align: middle;
}

.payment-table th {
  background: #f3f6f8;
  width: 28%;
}

.payment-table .danger, .danger {
  color: #d92828;
  font-weight: 700;
}

.slip-notes {
  margin: 12px 0 0;
  padding-left: 22px;
  line-height: 1.8;
}

.payment-qrcode {
  margin: 12px 0;
}

.barcode-slip-head {
  text-align: center;
}

.barcode-slip-head h2 {
  border: 0;
  font-size: 26px;
  margin: 0;
}

.barcode-slip-head p {
  margin: 4px 0;
}

.barcode-summary th, .barcode-summary td {
  text-align: center;
}

.barcode-stack {
  display: grid;
  gap: 10px;
  justify-items: center;
  margin-top: 16px;
}

.barcode-table td {
  text-align: center;
}

.payment-slip-error {
  color: #b3261e;
}

@media print {
  body {
    background: #fff !important;
    visibility: hidden;
  }
  .payment-take-number-page {
    width: 210mm;
    max-width: none;
    min-height: 100%;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute;
    left: 0;
    top: 0;
    visibility: visible;
  }
  .payment-take-number-actions {
    display: none;
  }
  .payment-slip {
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    visibility: visible;
  }
  .payment-slip * {
    visibility: visible;
  }
  *, *::before, *::after {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
.product-list_page [data-catalog-enhanced] [data-catalog-filter-submit] {
  display: none;
}
.product-list_page [data-catalog-root]:not([data-catalog-enhanced]) .class-menu-title,
.product-list_page [data-catalog-root]:not([data-catalog-enhanced]) .class-menu-subtitle {
  display: none;
}
.product-list_page [data-catalog-root]:not([data-catalog-enhanced]) .class-menu-drop,
.product-list_page [data-catalog-root]:not([data-catalog-enhanced]) .dynamic-menu-wrapper .dynamic-menu-level {
  position: static;
  display: flex;
  flex-wrap: wrap;
  max-height: none;
  opacity: 1;
  visibility: visible;
  transform: none;
}
.product-list_page .product-tab-top li > a {
  color: inherit;
  font: inherit;
  text-decoration: none;
}
.product-list_page .section-title {
  font-size: clamp(28px, 1.875vw, 36px);
  color: #0082cb;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.product-list_page .class-menu {
  margin-bottom: clamp(50px, 3.125vw, 60px);
}
.product-list_page .class-menu .dynamic-menu-wrapper .class-menu-subtitle {
  display: none;
}
.product-list_page .class-menu-drop {
  justify-content: left;
  margin: clamp(30px, 1.5625vw, 50px) 0 clamp(20px, 1.5625vw, 60px);
}
.product-list_page .class-menu-drop li {
  cursor: pointer;
}
.product-list_page .class-menu-drop li.active a {
  background-color: #0082cb;
  color: #fff;
}
@media (max-width: 768px) {
  .product-list_page .class-menu {
    margin-bottom: 25px;
  }
  .product-list_page .class-menu-title {
    margin: 25px 0;
  }
  .product-list_page .class-menu-drop {
    margin: 0;
  }
  .product-list_page .class-menu .dynamic-menu-wrapper {
    position: relative;
    z-index: 9;
    margin-top: 10px;
  }
  .product-list_page .class-menu .dynamic-menu-wrapper .class-menu-subtitle {
    display: block;
    width: 100%;
    border: 0;
    font-family: inherit;
    padding: 8px;
    background: #0082cb;
    border-radius: 99px;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    transition: 0.6s;
    color: #fff;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0.075em;
    position: relative;
  }
  .product-list_page .class-menu .dynamic-menu-wrapper .class-menu-subtitle:after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 13px 5.5px 0 5.5px;
    border-color: #fff transparent transparent transparent;
    transition: 0.6s;
  }
  .product-list_page .class-menu .dynamic-menu-wrapper .class-menu-subtitle:focus-visible {
    outline: 3px solid rgba(0, 130, 203, 0.35);
    outline-offset: 3px;
  }
  .product-list_page .class-menu .dynamic-menu-wrapper .dynamic-menu-level {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease-out, opacity 0.2s ease;
    z-index: 10;
    border-radius: 20px;
    text-align: center;
    gap: 0;
  }
  .product-list_page .class-menu .dynamic-menu-wrapper .dynamic-menu-level li {
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
  }
  .product-list_page .class-menu .dynamic-menu-wrapper .dynamic-menu-level li:last-child {
    border-bottom: none;
  }
  .product-list_page .class-menu .dynamic-menu-wrapper .dynamic-menu-level li a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    font-size: 17px;
    border: 0;
    border-radius: 0;
  }
  .product-list_page .class-menu .dynamic-menu-wrapper .dynamic-menu-level li a:hover {
    background: #fff;
    color: #0082cb;
    transition: 0.6s;
  }
  .product-list_page .class-menu .dynamic-menu-wrapper.is-open .class-menu-subtitle:after {
    transform: translateY(-50%) rotate(180deg);
    transition: 0.6s;
  }
  .product-list_page .class-menu .dynamic-menu-wrapper.is-open .dynamic-menu-level {
    max-height: 900px;
    opacity: 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
}
.product-list_page .product-list {
  --ad-grid-space: 25px;
  margin-top: 20px;
  grid-template-columns: repeat(4, 1fr);
}
.product-list_page .product-list.no-product-list {
  grid-template-columns: repeat(1, 1fr);
}
.product-list_page .product-list .product-card {
  display: none;
}
.product-list_page .product-list .product-card.no-product {
  display: block;
  width: 100%;
  text-align: center;
  background: none;
  border: 0;
  box-shadow: none;
  margin: 50px 0;
  letter-spacing: 0.1em;
  color: #6a6a6a;
}
.product-list_page .product-list .product-card.show {
  display: block;
}
@media (max-width: 1600px) {
  .product-list_page .product-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1100px) {
  .product-list_page .product-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .product-list_page .product-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.product-list_page .product-tab {
  margin-bottom: clamp(45px, 4.6875vw, 90px);
}
.product-list_page .product-tab-top {
  margin-bottom: 1px;
  display: flex;
  flex-wrap: wrap;
}
.product-list_page .product-tab-top li {
  position: relative;
  font-size: clamp(18px, 1.5625vw, 30px);
  display: inline-block;
  padding: clamp(10px, 0.8333333333vw, 16px) clamp(20px, 2.0833333333vw, 40px) clamp(10px, 0.5729166667vw, 11px);
  color: #0082cb;
  letter-spacing: 0.1em;
  border-radius: 20px 20px 0 0;
  cursor: pointer;
}
.product-list_page .product-tab-top li:hover, .product-list_page .product-tab-top li.active {
  background-color: #0082cb;
  color: #fff;
  transition: background-color 0.6s;
}
.product-list_page .product-tab-top li:hover::after, .product-list_page .product-tab-top li.active::after {
  display: none;
}
.product-list_page .product-tab-top li:not(.show) + li::after {
  display: none;
}
.product-list_page .product-tab-top li:first-of-type::after {
  display: none;
}
.product-list_page .product-tab-top li:after {
  content: "";
  position: absolute;
  right: -1px;
  height: 40px;
  width: 1px;
  display: block;
  background-color: #ccc;
  top: 55%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .product-list_page .product-tab-top li:last-of-type::after {
    display: none;
  }
}
.product-list_page .product-tab-bottom {
  background-color: #0082cb;
  display: flex;
  padding: clamp(20px, 1.8229166667vw, 35px);
  border-radius: 0 0 20px 20px;
  flex-wrap: wrap;
  gap: 10px 0;
}
.product-list_page .product-tab-bottom li {
  font-size: clamp(18px, 1.25vw, 24px);
  color: #fff;
}
.product-list_page .product-tab-bottom label {
  cursor: pointer;
}
.product-list_page .product-tab-bottom label input[type=radio], .product-list_page .product-tab-bottom label input[type=checkbox] {
  display: none;
}
.product-list_page .product-tab-bottom label input[type=radio]:checked + span::after, .product-list_page .product-tab-bottom label input[type=checkbox]:checked + span::after {
  content: "";
  position: absolute;
  left: 5px;
  top: clamp(6px, 0.5208333333vw, 10px);
  font-size: 14px;
  background-image: url(../images/icon/course-check.svg);
  width: clamp(18px, 1.0416666667vw, 20px);
  aspect-ratio: 1;
  background-repeat: no-repeat;
  background-position: center;
}
.product-list_page .product-tab-bottom label span {
  position: relative;
  padding-right: 30px;
  letter-spacing: 0.05em;
}
.product-list_page .product-tab-bottom label span::before {
  content: "";
  display: inline-block;
  width: clamp(20px, 1.5625vw, 30px);
  aspect-ratio: 1;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .product-list_page .product-tab-top li {
    letter-spacing: 0.05em;
  }
}
@media (max-width: 1024px) {
  .product-list_page .product-tab {
    border: 1px solid #0082cb;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 45px;
  }
  .product-list_page .product-tab-top {
    background-color: #fff;
    border-radius: 20px 20px 0 0;
    flex-wrap: wrap;
    padding: 15px;
    gap: 15px;
  }
  .product-list_page .product-tab-top li {
    padding: 5px 10px;
    letter-spacing: 1px;
    margin: 0px;
  }
  .product-list_page .product-tab-top li.active {
    border-radius: 99px;
  }
  .product-list_page .product-tab-top li:after {
    right: inherit;
    left: -3px;
    height: 30px;
  }
}
.product-list_page .product-card {
  margin-bottom: 50px;
}
.product-list_page .product-card .product-title {
  min-height: 110px;
}
.product-list_page .product-card .product-link {
  display: flex;
  gap: 10px;
}
.product-list_page .product-card .product-link a,
.product-list_page .product-card .product-link button {
  font-size: clamp(18px, 1.0416666667vw, 20px);
  color: #999;
  border-radius: 99px;
  border: 1px solid #ccc;
  width: 100%;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  height: 50px;
  background: transparent;
}
.product-list_page .product-card .product-link a svg,
.product-list_page .product-card .product-link button svg {
  width: 30px;
  fill: #414141;
}
.product-list_page .product-card .product-link a:hover,
.product-list_page .product-card .product-link button:hover {
  background-color: #0082cb;
  color: #fff;
  transition: 0.6s;
  border-color: #0082cb;
}
.product-list_page .product-card .product-link a:hover svg,
.product-list_page .product-card .product-link button:hover svg {
  fill: #fff;
  transition: 0.6s;
}
.product-list_page .product-card .product-price {
  padding: 15px 20px 20px;
  border-top: 1px solid #eee;
}
@media (max-width: 1600px) {
  .product-list_page .product-card {
    margin-bottom: 0px;
  }
}
.product-list_page #l2-menu li,
.product-list_page #l3-menu li {
  display: none;
}
.product-list_page .show {
  display: block !important;
}
.product-list_page .show-flex {
  display: flex !important;
}

.product-detail_page > .container {
  padding: clamp(25px, 2.6041666667vw, 50px) 0;
  display: flex;
  gap: clamp(25px, 2.6041666667vw, 50px);
}
@media (max-width: 1900px) {
  .product-detail_page > .container {
    padding: clamp(25px, 2.6041666667vw, 50px);
  }
}
.product-detail_page main {
  max-width: 1075px;
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  overflow: visible;
}
.product-detail_page .page-title,
.product-detail_page .tab-title {
  font-size: clamp(24px, 1.875vw, 36px);
  color: #0082cb;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-bottom: 20px;
}
.product-detail_page .category {
  color: #0082cb;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 5px;
}
.product-detail_page .product-hero {
  padding: 30px 35px;
}
.product-detail_page .product-highlights {
  display: flex;
  gap: 0 40px;
  font-size: clamp(18px, 1.25vw, 24px);
  letter-spacing: 0.05em;
}
.product-detail_page .product-highlights img {
  height: 25px;
}
.product-detail_page .product-highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-detail_page .product-nav {
  position: sticky;
  top: 100px;
  background-color: #ffffff;
  z-index: 80;
  border-bottom: 1px solid #ccc;
  padding: 0 35px;
  display: flex;
  gap: 35px;
  align-self: flex-start;
}
.product-detail_page .product-nav a {
  font-size: clamp(18px, 1.25vw, 24px);
  position: relative;
  padding: 40px 0 30px;
  display: block;
}
.product-detail_page .product-nav a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 0;
  background-color: #0082cb;
  display: block;
  transition: 0.6s;
}
.product-detail_page .product-nav a:hover, .product-detail_page .product-nav a.active {
  color: #0082cb;
  font-weight: 600;
}
.product-detail_page .product-nav a:hover::after, .product-detail_page .product-nav a.active::after {
  width: 100%;
  transition: 0.6s;
}
.product-detail_page .product-content {
  scroll-margin-top: 250px;
  margin: clamp(45px, 4.6875vw, 90px) 40px 20px;
}
.product-detail_page .product-content .tab-title {
  font-weight: 600;
  margin-bottom: 30px;
}
.product-detail_page .product-content .product-item {
  display: flex;
  gap: clamp(25px, 2.6041666667vw, 50px);
  margin-bottom: 0;
}
.product-detail_page .product-content .product-item.reverse {
  flex-direction: row-reverse;
}
.product-detail_page .product-content .product-image {
  min-width: clamp(200px, 20.8333333333vw, 400px);
}
.product-detail_page .product-content .product-text {
  width: 100%;
  font-size: clamp(16px, 0.9375vw, 18px);
  letter-spacing: 0.075em;
  line-height: 30px;
  color: #010101;
  padding: 25px 0;
}
.product-detail_page .product-content .product-text p {
  margin-bottom: 10px;
}
.product-detail_page .product-content .product-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.product-detail_page .part-item {
  margin: 0 -40px;
  border-bottom: 1px solid #ccc;
  padding: 0 40px;
  background-color: #f9f9f9;
}
.product-detail_page .part-item:first-of-type {
  border-top: 1px solid #ccc;
}
.product-detail_page .part-item .part-title {
  font-size: 20px;
  cursor: pointer;
  padding: 18px 0;
  letter-spacing: 0.1em;
  position: relative;
  font-weight: 400;
  color: #202020;
}
.product-detail_page .part-item .part-title::after {
  content: "+";
  font-family: "Noto Sans TC", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #666;
  position: absolute;
  right: 0;
  transition: 0.6s;
  top: 15px;
}
.product-detail_page .part-item .part-content {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height 0.6s ease, opacity 0.6s ease, padding 0.6s ease;
  margin: 0;
  padding: 0 40;
  position: relative;
  font-size: 18px;
  letter-spacing: 0.2em;
  line-height: 36px;
}
.product-detail_page .part-item:hover {
  background-color: #0082cb;
  color: #fff;
  transition: background-color 0.6s;
}
.product-detail_page .part-item:hover .part-title {
  color: #fff;
}
.product-detail_page .part-item:hover .part-title::after {
  color: #fff;
}
.product-detail_page .part-item.active {
  background-color: #0082cb;
  color: #fff;
  transition: background-color 0.6s;
}
.product-detail_page .part-item.active .part-title {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-weight: 500;
  color: #fff;
}
.product-detail_page .part-item.active .part-title::after {
  color: #fff;
}
.product-detail_page .part-item.active .part-title::after {
  content: "-";
  font-size: 32px;
  top: 8px;
}
.product-detail_page .part-item.active .part-content {
  opacity: 1;
  padding: 20px 0 35px;
  box-sizing: content-box;
  height: auto;
  transition: height 0.6s ease, opacity 0.6s ease, padding 0.6s ease;
}
.product-detail_page .part-item.active .part-content::before {
  opacity: 1;
  transition: 0.1s;
}
.product-detail_page .teacher-item {
  max-width: 870px;
  margin: auto;
  display: flex;
  gap: 0 85px;
  padding: 0 0 90px;
  align-items: center;
  justify-content: center;
}
.product-detail_page .teacher-item p {
  font-size: clamp(16px, 0.9375vw, 18px);
  letter-spacing: 0.075em;
  line-height: 30px;
}
.product-detail_page .teacher-item .teacher-name {
  font-size: clamp(24px, 1.875vw, 36px);
  font-weight: 700;
  margin-bottom: 20px;
}
.product-detail_page .teacher-item .teacher-img {
  width: 100%;
  max-width: 310px;
}
.product-detail_page .teacher-item .teacher-img img {
  border-radius: 50%;
}
.product-detail_page .teacher-item .teacher-text {
  width: 100%;
  max-width: 460px;
}
.product-detail_page .teacher-item .school-name {
  font-size: clamp(18px, 1.0416666667vw, 20px);
  font-weight: 700;
  color: #250188;
  margin-bottom: 15px;
}
.product-detail_page .summary-sticky {
  max-width: 480px;
  width: 100%;
  position: sticky;
  top: clamp(100px, 5.2083333333vw, 120px);
}
.product-detail_page .product-summary {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  letter-spacing: 0.05em;
}
.product-detail_page .product-summary-mb {
  display: none;
}
.product-detail_page .product-summary-info {
  padding: clamp(20px, 1.5625vw, 30px) clamp(20px, 1.5625vw, 30px) 20px;
}
.product-detail_page .product-summary-grey {
  font-size: clamp(18px, 1.25vw, 24px);
  color: #aeaeae;
}
.product-detail_page .product-summary-name {
  font-size: clamp(30px, 1.6666666667vw, 32px);
  font-weight: 600;
  margin-bottom: clamp(15px, 0.78125vw, 25px);
}
.product-detail_page .product-summary-price {
  display: flex;
  justify-content: space-between;
  line-height: 1;
}
.product-detail_page .product-summary-price .price {
  font-size: clamp(28px, 1.875vw, 36px);
  color: #250188;
  font-family: Arial, Helvetica, sans-serif;
}
.product-detail_page .product-summary-price .del {
  font-size: 18px;
  color: #9ecae4;
  text-decoration: line-through;
}
.product-detail_page .product-summary-price {
  margin-bottom: clamp(20px, 1.0416666667vw, 30px);
}
.product-detail_page .product-summary-add {
  border-top: 1px solid #e3e3e3;
  font-size: clamp(20px, 1.3541666667vw, 28px);
  letter-spacing: 0.05em;
  display: flex;
  text-align: center;
}
.product-detail_page .product-summary-add > div,
.product-detail_page .product-summary-add a {
  display: block;
  width: 100%;
  padding: clamp(15px, 0.9375vw, 25px) 0;
  cursor: pointer;
  transition: 0.6s;
}
.product-detail_page .product-summary-add > div {
  color: #0082cb;
}
.product-detail_page .product-summary-add > div:hover {
  background-color: #0082cb;
  color: #fff;
  transition: 0.6s;
}
.product-detail_page .product-summary-add > a {
  color: #250188;
  border-left: 1px solid #e3e3e3;
}
.product-detail_page .product-summary-add > a:hover {
  background-color: #250188;
  color: #fff;
  transition: 0.6s;
}
.product-detail_page .product-summary .free-btn {
  font-size: clamp(18px, 1.25vw, 24px);
  color: #999;
  border-radius: 99px;
  border: 1px solid #ccc;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: clamp(10px, 0.78125vw, 15px) 0;
  transition: 0.6s;
}
.product-detail_page .product-summary .free-btn svg {
  height: 30px;
  width: 30px;
}
.product-detail_page .product-summary .free-btn:hover {
  background-color: #0082cb;
  color: #fff;
  transition: 0.6s;
}
.product-detail_page .product-summary .free-btn:hover svg {
  fill: #fff;
}
.product-detail_page .rec-products {
  margin-top: 35px;
}
.product-detail_page .rec-products-title {
  font-size: 22px;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}
.product-detail_page .rec-products .product-card {
  margin-bottom: 15px;
}
.product-detail_page .rec-products .product-card .product-title {
  font-size: clamp(18px, 1.0416666667vw, 20px);
  min-height: auto;
  margin: 10px 0 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-detail_page .rec-products .product-card .product-link {
  display: flex;
  gap: 5px;
}
.product-detail_page .rec-products .product-card .product-link svg {
  width: 20px;
  height: 20px;
}
.product-detail_page .rec-products .product-card .product-link a,
.product-detail_page .rec-products .product-card .product-link button {
  display: flex;
  color: #999;
  border: 1px solid #ccc;
  border-radius: 99px;
  padding: 8px;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  transition: 0.6s;
}
.product-detail_page .rec-products .product-card .product-link a:hover,
.product-detail_page .rec-products .product-card .product-link button:hover {
  background-color: #0082cb;
  color: #fff;
  transition: 0.6s;
  border-color: #0082cb;
}
.product-detail_page .rec-products .product-card .product-link a:hover svg,
.product-detail_page .rec-products .product-card .product-link button:hover svg {
  fill: #fff;
  transition: 0.6s;
}
.product-detail_page .rec-products .product-card .product-info {
  position: relative;
  padding: 20px clamp(100px, 9.375vw, 180px) 20px 20px;
}
.product-detail_page .rec-products .product-card .product-info img {
  border-radius: 20px;
  position: absolute;
  right: 20px;
  top: 45px;
  width: clamp(60px, 5.2083333333vw, 130px);
}
.product-detail_page .rec-products .product-card .product-price {
  border-top: 1px solid #eee;
  padding: 15px 20px;
}
@media (max-width: 1680px) {
  .product-detail_page .category {
    font-size: clamp(16px, 0.9375vw, 18px);
  }
  .product-detail_page .summary-sticky .rec-products .product-card .product-link {
    flex-wrap: wrap;
  }
}
@media (max-width: 1024px) {
  .product-detail_page aside {
    width: 100%;
  }
  .product-detail_page > .container {
    flex-wrap: wrap;
  }
  .product-detail_page .summary-sticky {
    max-width: 100%;
  }
  .product-detail_page .summary-sticky .rec-products {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
  }
  .product-detail_page .summary-sticky .rec-products-title {
    width: 100%;
  }
  .product-detail_page .summary-sticky .rec-products .product-card {
    width: 49%;
  }
  .product-detail_page .summary-sticky .rec-products .product-card .product-info {
    padding-right: 130px;
  }
  .product-detail_page .summary-sticky .rec-products .product-card .product-info img {
    width: 95px;
  }
  .product-detail_page .summary-sticky .rec-products .product-card .product-link {
    flex-wrap: nowrap;
  }
  .product-detail_page .summary-sticky .rec-products .product-card .product-link a {
    gap: 8px;
  }
  .product-detail_page .teacher-item .teacher-text {
    max-width: 90%;
  }
  .product-detail_page .product-summary {
    display: none;
  }
  .product-detail_page .product-summary-mb {
    position: fixed;
    border-radius: 20px 20px 0 0;
    background-color: #fff;
    bottom: 0;
    left: 0;
    box-shadow: 15px 0px 40px rgba(0, 0, 0, 0.05);
    width: 100%;
    z-index: 90;
    display: block;
  }
  .product-detail_page .product-summary-mb img {
    width: 20%;
    border-radius: 20px;
    -o-object-fit: cover;
       object-fit: cover;
    max-height: 70px;
  }
  .product-detail_page .product-summary-mb-top {
    display: flex;
    align-items: center;
    padding: 16px 18px 8px;
    gap: 10px;
  }
  .product-detail_page .product-summary-mb-info {
    font-size: 18px;
    font-weight: 500;
    width: 100%;
  }
  .product-detail_page .product-summary-mb-name {
    font-size: 18px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .product-detail_page .product-summary-mb-price {
    padding-right: 90px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    margin-top: 5px;
    position: relative;
  }
  .product-detail_page .product-summary-mb-price .price {
    font-size: 24px;
    color: #250188;
    margin-right: 10px;
  }
  .product-detail_page .product-summary-mb-price .del {
    font-size: 16px;
    color: #9ecae4;
  }
  .product-detail_page .product-summary-mb-price .free-btn {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 16px;
    color: #999;
    border-radius: 99px;
    border: 1px solid #ccc;
    display: inline-block;
    padding: 3px;
    text-align: center;
    transition: 0.6s;
    font-weight: 300;
    width: 90px;
    letter-spacing: 0.01em;
  }
  .product-detail_page .product-summary-mb-price .free-btn:hover {
    background-color: #0082cb;
    color: #fff;
    transition: 0.6s;
  }
  .product-detail_page .product-summary-mb-add {
    border-top: 1px solid #e3e3e3;
    font-size: 18px;
    letter-spacing: 0.05em;
    display: flex;
    text-align: center;
  }
  .product-detail_page .product-summary-mb-add > div,
  .product-detail_page .product-summary-mb-add a {
    display: block;
    width: 100%;
    padding: 8px;
    cursor: pointer;
    transition: 0.6s;
  }
  .product-detail_page .product-summary-mb-add > div {
    color: #0082cb;
  }
  .product-detail_page .product-summary-mb-add > div:hover {
    background-color: #0082cb;
    color: #fff;
    transition: 0.6s;
  }
  .product-detail_page .product-summary-mb-add > a {
    color: #250188;
    border-left: 1px solid #e3e3e3;
  }
  .product-detail_page .product-summary-mb-add > a:hover {
    background-color: #250188;
    color: #fff;
    transition: 0.6s;
  }
  .product-detail_page .product-nav {
    top: 75px;
  }
  .product-detail_page .footer {
    padding-bottom: 200px;
  }
}
@media (max-width: 850px) {
  .product-detail_page .summary-sticky .rec-products .product-card {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .product-detail_page .product-hero {
    padding: 25px 20px 10px;
  }
  .product-detail_page .product-nav {
    gap: 25px;
    padding: 0px 18px;
  }
  .product-detail_page .product-nav a {
    padding: 25px 0 20px;
  }
  .product-detail_page .product-content {
    margin: 35px 18px;
    padding-bottom: 35px;
  }
  .product-detail_page .product-content .product-text {
    padding: 0;
  }
  .product-detail_page .product-content .tab-title {
    margin: 20px 0 20px;
  }
  .product-detail_page .product-content .part-item {
    margin: 0 -18px;
    padding: 0 18px;
  }
  .product-detail_page .product-content .part-item .part-title {
    padding: 15px 0;
  }
  .product-detail_page .product-content .product-item,
  .product-detail_page .product-content .product-item.reverse {
    flex-direction: column;
    gap: 20px;
  }
  .product-detail_page .product-highlights {
    gap: 0 15px;
    flex-wrap: wrap;
  }
  .product-detail_page .product-highlights img {
    width: 18px;
  }
  .product-detail_page .product-highlights li {
    gap: 5px;
    margin-bottom: 10px;
  }
  .product-detail_page .teacher-item {
    flex-direction: column-reverse;
    padding: 0;
    gap: 50px;
  }
  .product-detail_page .teacher-item .teacher-img img {
    width: 80%;
    max-width: 250px;
    margin: auto;
  }
  .product-detail_page .fixed-social {
    top: 42%;
  }
}
@media (max-width: 500px) {
  .product-detail_page .product-nav {
    justify-content: space-between;
  }
  .product-detail_page .summary-sticky .rec-products .product-card .product-price {
    padding: 9px 20px 5px;
  }
  .product-detail_page .summary-sticky .rec-products .product-card .product-price .price {
    font-size: 30px;
  }
  .product-detail_page .summary-sticky .rec-products .product-card .product-price .del {
    font-size: 15px;
  }
  .product-detail_page .summary-sticky .rec-products .product-card .product-info {
    padding: 20px 100px 15px 15px;
  }
  .product-detail_page .summary-sticky .rec-products .product-card .product-info img {
    width: 75px;
    right: 15px;
  }
}
@media (max-width: 480px) {
  .product-detail_page .product-nav {
    top: 65px;
  }
  .product-detail_page .product-nav a {
    padding: 15px 0;
  }
}
@media (max-width: 470px) {
  .product-detail_page .product-summary-mb img {
    display: none;
  }
  .product-detail_page .summary-sticky .rec-products .product-card .product-link svg {
    display: none;
  }
}
@media (max-width: 450px) {
  .product-detail_page .product-nav {
    gap: 10px;
  }
  .product-detail_page .product-nav a {
    font-size: 16px;
    padding: 15px 0;
  }
}

.member_page select,
.member_page input,
.member_page textarea {
  min-height: 40px;
}
.member_page .row {
  display: flex;
  border-bottom: 1px solid #ccc;
  min-height: 70px;
}
.member_page .row:last-child {
  border-bottom: none;
}
.member_page .label {
  min-width: 190px;
  background-color: #0082cb;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 22px 0;
  letter-spacing: 0.025em;
}
.member_page .content {
  flex-grow: 1;
  padding: 0px 40px;
  display: flex;
  align-items: center;
}
.member_page .content span + .btn-pill {
  margin-left: 30px;
}
.member_page select,
.member_page input {
  border: 1px solid #b2b2b2;
  border-radius: 4px;
  padding: 5px 12px;
  font-size: clamp(18px, 1.1458333333vw, 22px);
  outline: none;
}
.member_page .btn-pill {
  border: 1px solid #0082cb;
  color: #0082cb;
  background: #fff;
  padding: 6px 40px;
  border-radius: 99px;
  cursor: pointer;
  font-size: clamp(16px, 1.4583333333vw, 28px);
  transition: 0.6s;
}
.member_page .btn-pill:hover {
  background: #0082cb;
  color: #fff;
}
.member_page .address-group {
  display: flex;
  width: 100%;
  margin: clamp(15px, 1.5625vw, 30px) 0;
  font-size: clamp(18px, 1.1458333333vw, 22px);
  letter-spacing: 0.05em;
  height: 60px;
}
.member_page .address-group .zipcode {
  background: #fff;
  color: #333;
  width: clamp(114px, 7.8125vw, 150px);
}
.member_page .address-group .detail-addr {
  flex-grow: 1;
}
.member_page .social-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-right: 45px;
  color: #aaa;
}
.member_page .social-item img {
  height: clamp(20px, 1.8229166667vw, 35px);
}
.member_page .social-item.status {
  color: #000;
}
.member_page .btn-box {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 60px;
}
.member_page .btn-box .ui-button {
  font-size: clamp(20px, 1.5625vw, 30px);
}
.member_page .ui-button {
  padding: clamp(7px, 0.78125vw, 15px) 55px;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  color: white;
  background: #0082cb;
  letter-spacing: 0.075em;
  font-size: 22px;
  transition: 0.6s;
}
.member_page .ui-button:hover {
  background-color: #250188;
  color: #fff;
  transition: 0.6s;
  border: 1px solid #250188;
}
.member_page .btn-logout {
  background: #fff;
  color: #0082cb;
  border: 1px solid #0082cb;
}
.member_page .btn-submit {
  border: 1px solid #0082cb;
}
.member_page .input-item {
  margin-bottom: 25px;
}
.member_page .input-item label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 18px;
}
.member_page .input-item input {
  padding: 10px;
  width: 100%;
  font-size: 18px;
}
.member_page .input-item.gray-font {
  color: #666;
}
.member_page .input-item .resend {
  color: #0082cb;
  cursor: pointer;
  font-weight: 600;
  border-bottom: 1px solid #0082cb;
  padding-bottom: 1px;
  transition: 0.6s;
}
.member_page .input-item .resend:hover {
  color: #250188;
  transition: 0.6s;
  border-bottom: 1px solid #250188;
}
@media (min-width: 1800px) {
  .member_page .address-group .county {
    width: 150px;
  }
  .member_page .address-group .district {
    width: 150px;
  }
}
@media (max-width: 940px) {
  .member_page .content {
    padding: 15px 25px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .member_page .content input[type=date] {
    width: auto;
    padding-right: 25px;
  }
  .member_page .row {
    flex-direction: column;
  }
  .member_page .label {
    width: 100%;
    padding: 10px;
    padding-left: 20px;
  }
  .member_page .address-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    height: auto;
    margin: 0;
  }
  .member_page .address-group .county,
  .member_page .address-group .district,
  .member_page .address-group .zipcode {
    width: calc(33% - 6.6666666667px);
  }
  .member_page .address-group .detail-addr {
    width: 100%;
    margin-bottom: 25px;
  }
  .member_page .social-item {
    margin-right: 20px;
  }
}
@media (max-width: 480px) {
  .member_page .address-group .county,
  .member_page .address-group .district,
  .member_page .address-group .zipcode {
    width: 100%;
  }
  .member_page .social-item {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }
  .member_page .btn-box {
    flex-direction: column-reverse;
    max-width: 250px;
    margin: 35px auto;
    gap: 50px;
  }
  .member_page .ui-button {
    text-align: center;
  }
}
@media (max-width: 460px) {
  .member_page .content span + .btn-pill {
    margin: 10px 10px 0;
  }
  .member_page .content input[type=date] {
    width: 100%;
  }
}

.member_home .member-bg,
.member_wishlist .member-bg {
  min-height: 55vh;
}

.member_home .member-home-main {
  min-height: 60vh;
  background: #fff;
}
.member_home .member-home-shell {
  width: min(100% - 60px, 960px);
  margin-inline: auto;
  padding-block: clamp(30px, 4vw, 50px);
}
.member_home .member-home-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ad-space-3);
  margin-bottom: var(--ad-space-6);
}
.member_home .member-home-heading h1 {
  font-size: clamp(26px, 2.4vw, 32px);
  font-weight: 700;
  letter-spacing: 0.03em;
}
.member_home .member-home-name {
  max-width: min(48vw, 420px);
  padding: 6px 12px;
  border-radius: var(--ad-radius-control);
  color: var(--ad-color-text);
  background: #f8f9fa;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.member_home .member-home-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.member_home .member-home-card {
  display: flex;
  min-height: 126px;
  padding: 20px 14px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  color: var(--ad-color-text);
  background: #fff;
  text-decoration: none;
  transition: color var(--ad-motion-standard), border-color var(--ad-motion-standard), box-shadow var(--ad-motion-standard);
}
.member_home .member-home-card:hover, .member_home .member-home-card:focus-visible {
  border-color: var(--ad-color-brand);
  color: var(--ad-color-brand);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.member_home .member-home-card:focus-visible {
  outline: 3px solid rgba(0, 130, 203, 0.35);
  outline-offset: 3px;
}
.member_home .member-home-icon {
  display: block;
  min-height: 48px;
  font-size: 40px;
  line-height: 1.2;
}
.member_home .member-home-label {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.member_home .bi-upad {
  background-image: url(../images/icon/upad_logo_30.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.member_home .bi-upad::before {
  content: "　";
}
@media (max-width: 1199px) {
  .member_home .member-home-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .member_home .member-home-card {
    min-height: 116px;
    padding: 16px 8px;
  }
  .member_home .member-home-icon {
    min-height: 42px;
    font-size: 35px;
  }
  .member_home .member-home-label {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .member_home .member-home-card {
    transition-duration: 0.01ms;
  }
}
.member_wishlist .wishlist-container {
  padding: clamp(var(--ad-space-6), 4vw, var(--ad-space-10));
}
.member_wishlist .section-title {
  margin: 0 0 clamp(var(--ad-space-6), 4vw, var(--ad-space-8));
  color: #250188;
}
.member_wishlist .wishlist-messages,
.member_wishlist .wishlist-grid,
.member_wishlist .wishlist-empty {
  width: 100%;
}
.member_wishlist .wishlist-messages {
  margin-bottom: var(--ad-space-6);
}
.member_wishlist .wishlist-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-inline: var(--ad-space-4);
}
.member_wishlist .wishlist-card {
  position: relative;
  display: flex;
  padding: var(--ad-space-5);
  flex-direction: column;
}
.member_wishlist .wishlist-card > a {
  aspect-ratio: 16/10;
}
.member_wishlist .wishlist-card > a img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.member_wishlist .wishlist-card .product-content {
  flex-grow: 1;
  padding: var(--ad-space-5) 0;
}
.member_wishlist .wishlist-card .product-title {
  min-height: 72px;
}
.member_wishlist .wishlist-card .product-link {
  display: flex;
  gap: var(--ad-space-3);
}
.member_wishlist .wishlist-card .product-link a {
  flex: 1;
  padding: var(--ad-space-2) var(--ad-space-3);
  border: 1px solid var(--ad-color-border);
  border-radius: var(--ad-radius-pill);
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: normal;
}
.member_wishlist .wishlist-card .product-price {
  padding: 0;
}
.member_wishlist .wishlist-remove-form {
  position: absolute;
  z-index: 2;
  top: -13px;
  right: -13px;
}
.member_wishlist .wishlist-remove {
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--ad-color-brand-strong);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.member_wishlist .wishlist-remove:hover, .member_wishlist .wishlist-remove:focus-visible {
  background: var(--ad-color-brand);
}
.member_wishlist .wishlist-teacher {
  margin-bottom: var(--ad-space-4);
  color: var(--ad-color-muted);
}
.member_wishlist .wishlist-empty {
  margin: 0;
  padding: var(--ad-space-10);
  text-align: center;
  color: var(--ad-color-muted);
}
@media (max-width: 1024px) {
  .member_wishlist .wishlist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .member_wishlist .wishlist-container {
    padding: var(--ad-space-6);
  }
  .member_wishlist .wishlist-grid {
    grid-template-columns: 1fr;
  }
}

.member_order .order-detail-page {
  padding: clamp(28px, 2.8645833333vw, 55px);
}
.member_order .order-detail-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}
.member_order .order-detail-page-header h1 {
  margin: 0;
  color: #250188;
}
.member_order .order-detail-page-header .order-detail-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  margin: 0;
  border: none;
  border-radius: 99px;
  padding: 10px 24px;
  background: #0082cb;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.member_order .order-detail-page-header .order-detail-back-link:hover, .member_order .order-detail-page-header .order-detail-back-link:focus-visible {
  background: #250188;
  color: #fff;
}
.member_order .order-detail-page .order-detail-content {
  margin: 28px 0 0;
  border: 1px solid #d8d8d8;
  border-radius: 12px;
  background: #fff;
  padding: clamp(22px, 2.0833333333vw, 40px);
  color: #333;
}
.member_order .order-detail-page .order-detail-content .order-detail-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #eee;
  padding-bottom: 24px;
}
.member_order .order-detail-page .order-detail-content .order-detail-date {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
}
.member_order .order-detail-page .order-detail-content .item-name {
  margin: 0 0 8px;
  color: #250188;
  font-size: 20px;
  font-weight: 700;
}
.member_order .order-detail-page .order-detail-content .item-name small {
  margin-left: 8px;
  color: #777;
  font-size: 14px;
  font-weight: 400;
}
.member_order .order-detail-page .order-detail-content .info-row {
  display: flex;
  gap: 12px;
  margin: 0;
  color: #666;
  font-size: 15px;
}
.member_order .order-detail-page .order-detail-content .info-row span:first-child {
  color: #333;
  font-weight: 700;
}
.member_order .order-detail-page .order-detail-content .order-detail-sum {
  margin-top: 24px;
  border-top: 1px solid #eee;
  padding-top: 18px;
}
.member_order .order-detail-page .order-detail-content .sum-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 8px 0;
  color: #666;
}
.member_order .order-detail-page .order-detail-content .sum-item span:last-child {
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
}
.member_order .order-detail-page .order-detail-content .amount-total {
  margin-top: 18px;
  border-top: 2px solid #0082cb;
  padding-top: 16px;
  color: #250188;
  font-size: 20px;
  font-weight: 700;
}
.member_order .order-detail-page .order-detail-content .amount-total span:last-child {
  color: #250188;
}
.member_order .order-detail-page .order-detail-state {
  align-self: flex-start;
  min-width: 96px;
  border-radius: 99px;
  background: rgba(0, 130, 203, 0.1);
  color: #0082cb;
  font-size: 18px;
  font-weight: 700;
  padding: 8px 14px;
  text-align: center;
}
.member_order .order-detail-page .order-detail-state.is-paid {
  background: rgba(37, 1, 136, 0.1);
  color: #250188;
}
.member_order .order-detail-page .order-detail-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
  margin-top: 25px;
  border-top: 1px solid #eee;
  padding-top: 25px;
}
.member_order .order-detail-page .order-detail-meta .detail-meta-section {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
}
.member_order .order-detail-page .order-detail-meta .detail-meta-section h2 {
  color: #250188;
  font-size: 20px;
  margin: 0 0 15px;
}
.member_order .order-detail-page .order-detail-meta .detail-meta-section p {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 8px 0;
  color: #666;
}
.member_order .order-detail-page .order-detail-meta .detail-meta-section strong {
  color: #333;
  text-align: right;
}
.member_order .order-detail-page .order-detail-meta .detail-meta-section .invoice-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 18px;
  border-top: 1px solid #eee;
  padding-top: 16px;
  color: #666;
}
.member_order .order-detail-page .order-detail-meta .detail-meta-section .invoice-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  margin: 0;
  padding: 10px 24px;
  border: none;
  border-radius: 99px;
  background: #0082cb;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.member_order .order-detail-page .order-detail-meta .detail-meta-section .invoice-search-btn:hover, .member_order .order-detail-page .order-detail-meta .detail-meta-section .invoice-search-btn:focus-visible {
  background: #250188;
  color: #fff;
}
.member_order .order-detail-page .order-detail-alert {
  margin-top: 25px;
  padding: 14px;
  border: 1px solid #e6c76a;
  border-radius: 8px;
  background: #fff4d6;
  color: #765500;
  text-align: center;
}
.member_order .order-detail-page .order-detail-actions {
  margin-top: 30px;
  text-align: center;
}
.member_order .order-detail-page .order-detail-actions p {
  color: #666;
}
.member_order .order-detail-page .order-detail-actions .ui-button {
  display: inline-block;
  width: auto;
  margin: 0;
  padding: 12px 30px;
  border-radius: 99px;
  background: #0082cb;
  color: #fff;
  text-decoration: none;
}
.member_order .order-detail-page .order-detail-actions .ui-button:hover {
  background: #250188;
  color: #fff;
}
.member_order .order-detail-page .order-detail-actions .ui-button, .member_order .order-detail-page .order-cancel-form button {
  padding: 12px 28px;
}
.member_order .order-detail-page .order-cancel-form {
  margin-top: 18px;
  text-align: center;
}
.member_order .order-detail-page .order-cancel-form button {
  border: 1px solid #666;
  border-radius: 99px;
  background: transparent;
  color: #555;
  cursor: pointer;
  font-size: 15px;
  letter-spacing: 0.05em;
  padding: 8px 24px;
  transition: 0.4s;
}
.member_order .order-detail-page .order-cancel-form button:hover,
.member_order .order-detail-page .order-cancel-form button:focus-visible {
  border-color: #b3261e;
  background: #b3261e;
  color: #fff;
}
.member_order .modal-box {
  max-width: 800px;
}
.member_order .order {
  width: 100%;
  background-color: #fff;
  color: #333;
}
.member_order .order-tab {
  display: flex;
  position: relative;
  border-radius: 20px 20px 0 0;
  background-color: #efefef;
}
.member_order .order-tab li {
  width: 50%;
  font-size: clamp(24px, 1.4583333333vw, 28px);
  font-weight: 400;
  text-align: center;
  color: #8c8c8c;
  letter-spacing: 0.05em;
  padding: clamp(15px, 1.3020833333vw, 25px) 0;
  border-bottom: 1px solid #ccc;
  position: relative;
  z-index: 1;
  transition: background-color 0.1s;
}
.member_order .order-tab li:nth-of-type(1).is-active, .member_order .order-tab li:nth-of-type(2).is-active {
  border-radius: 20px 20px 0 0;
}
.member_order .order-tab li:nth-of-type(1).is-active, .member_order .order-tab li:nth-of-type(1):hover, .member_order .order-tab li:nth-of-type(2).is-active, .member_order .order-tab li:nth-of-type(2):hover {
  background-color: #fff;
  color: #0082cb;
  font-weight: 600;
  position: relative;
  top: -1px;
  border-top: 1px solid #ccc;
  cursor: pointer;
}
.member_order .order-tab li:nth-of-type(1).is-active::after, .member_order .order-tab li:nth-of-type(1):hover::after, .member_order .order-tab li:nth-of-type(2).is-active::after, .member_order .order-tab li:nth-of-type(2):hover::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  display: block;
  position: absolute;
  bottom: -2px;
}
.member_order .order-tab li:nth-of-type(1).is-active {
  border-right: 1px solid #ccc;
  z-index: 2;
}
.member_order .order-tab li:nth-of-type(1).is-active:hover::before {
  display: none;
}
.member_order .order-tab li:nth-of-type(1):hover::before {
  content: "";
  display: block;
  width: 20px;
  height: 100%;
  position: absolute;
  background-color: #fff;
  right: -20px;
  top: 0;
  z-index: 0;
}
.member_order .order-tab li:nth-of-type(2).is-active {
  border-left: 1px solid #ccc;
}
.member_order .order-tab li:nth-of-type(2).is-active:hover::before {
  display: none;
}
.member_order .order-tab li:nth-of-type(2):hover::before {
  content: "";
  display: block;
  width: 20px;
  height: 100%;
  position: absolute;
  background-color: #fff;
  left: -20px;
  top: 0;
  z-index: 0;
}
.member_order .order-content {
  margin: clamp(20px, 2.6041666667vw, 50px);
  display: none;
}
.member_order .order-content.is-active {
  display: block;
  animation: fadeIn 0.4s ease;
}
.member_order .order-header .order-col, .member_order .order-body .order-col {
  text-align: center;
  padding: 20px 15px;
  font-size: clamp(16px, 1.0416666667vw, 20px);
  letter-spacing: 0.05em;
}
@media (min-width: 921px) {
  .member_order .order-header .order-col:nth-child(1), .member_order .order-body .order-col:nth-child(1) {
    width: calc(100% - 450px);
    text-align: left;
  }
  .member_order .order-header .order-col:nth-child(2), .member_order .order-body .order-col:nth-child(2) {
    width: 150px;
  }
  .member_order .order-header .order-col:nth-child(3), .member_order .order-body .order-col:nth-child(3) {
    width: 150px;
  }
  .member_order .order-header .order-col:nth-child(4), .member_order .order-body .order-col:nth-child(4) {
    width: 150px;
  }
}
.member_order .order-header {
  display: flex;
  border: 1px solid #333;
  border-left: 0;
  border-right: 0;
  font-weight: 600;
}
.member_order .order-header .order-col {
  font-size: 20px;
}
.member_order .order-body .order-row {
  display: flex;
  font-size: 18px;
  border-bottom: 1px solid #d9d9d9;
  transition: 0.8s;
}
.member_order .order-body .order-row:hover {
  cursor: pointer;
  background-color: rgba(0, 130, 203, 0.05);
  transition: 0.8s;
}
.member_order .order-body .order-row .order-col {
  padding: 10px;
  padding: 45px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.member_order .order-body .order-row .order-col:nth-child(1) {
  justify-content: flex-start;
  text-align: left;
}
.member_order .order-body .order-row .order-col:nth-child(2), .member_order .order-body .order-row .order-col:nth-child(3) {
  font-size: 16px;
}
.member_order .order-body .order-row .order-col:nth-child(4) {
  font-weight: 600;
  font-size: clamp(20px, 1.25vw, 24px);
  color: #0082cb;
}
.member_order .order-body .order-row .order-col:nth-child(4).is-paid {
  color: #250188;
}
.member_order .order-detail {
  letter-spacing: 0.05em;
}
.member_order .order-detail-content {
  padding: 30px clamp(25px, 2.0833333333vw, 40px) 20px;
}
.member_order .order-detail-info {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.member_order .order-detail-state {
  font-weight: 600;
  font-size: 20px;
  color: #0082cb;
  min-width: 80px;
  text-align: right;
}
.member_order .order-detail-state.is-paid {
  color: #250188;
}
.member_order .order-detail-date {
  display: flex;
  gap: 5px;
  flex-direction: column;
}
.member_order .order-detail .item-name {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
}
.member_order .order-detail .info-row {
  font-size: 16px;
  color: #666;
  display: flex;
  gap: 5px;
}
.member_order .order-detail .info-row span {
  display: inline-block;
}
.member_order .order-detail-sum {
  margin-top: 20px;
  font-size: 16px;
}
.member_order .order-detail .sum-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}
.member_order .order-detail .sum-item span:last-of-type {
  font-family: Arial, Helvetica, sans-serif;
}
.member_order .order-detail .sum-item.amount-total {
  font-size: 20px;
  font-weight: 600;
  color: #666;
  border-top: 1px solid #eee;
  padding: 20px 0 5px;
  margin-top: 20px;
}
@media (max-width: 920px) {
  .member_order .order-detail-page {
    padding: 24px;
  }
  .member_order .order-detail-page .order-detail-page-header {
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 16px;
  }
  .member_order .order-detail-page .order-detail-page-header .order-detail-back-link {
    width: 100%;
  }
  .member_order .order-detail-page .order-detail-content .order-detail-info {
    flex-direction: column;
  }
  .member_order .order-detail-page .order-detail-content .order-detail-state {
    align-self: flex-start;
  }
  .member_order .order-detail-page .order-detail-meta {
    grid-template-columns: 1fr;
  }
  .member_order .order-detail-page .order-detail-meta .invoice-action-row {
    align-items: stretch;
    flex-direction: column;
  }
  .member_order .order-detail-page .order-detail-meta .invoice-search-btn {
    width: 100%;
  }
  .member_order .order-header {
    display: none;
  }
  .member_order .order-tab li {
    font-size: clamp(20px, 1.4583333333vw, 28px);
  }
  .member_order .order-body {
    position: relative;
  }
  .member_order .order-body .order-row {
    flex-direction: column;
    position: relative;
    padding: 35px 150px 35px 20px;
  }
  .member_order .order-body .order-row:last-child {
    border-bottom: 0px;
  }
  .member_order .order-body .order-row .order-col {
    padding: 3px 0;
    justify-content: flex-start;
  }
  .member_order .order-body .order-row .order-col::before {
    content: attr(data-title);
    white-space: nowrap;
  }
  .member_order .order-body .order-row .order-col:nth-child(1) {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .member_order .order-body .order-row .order-col:nth-child(2), .member_order .order-body .order-row .order-col:nth-child(3) {
    color: #999;
  }
  .member_order .order-body .order-row .order-col:nth-child(4) {
    position: absolute;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
  }
  .member_order .order-content {
    margin: 0;
  }
}
@media (max-width: 500px) {
  .member_order .order-detail-info {
    flex-wrap: wrap;
  }
  .member_order .order-detail-state {
    width: 100%;
  }
  .member_order .order-body .order-row {
    padding-right: 20px;
  }
  .member_order .order-body .order-row .order-col:nth-child(4) {
    position: relative;
    right: inherit;
    top: 0px;
    transform: translateX(0);
    margin-top: 10px;
    justify-content: flex-end;
  }
}

.member_gold .member-container {
  background-color: transparent;
  border: 0;
}
.member_gold .gold-overview {
  display: flex;
  gap: 30px;
}
.member_gold .gold-overview li {
  border-radius: 20px;
  display: flex;
  font-size: clamp(18px, 1.4583333333vw, 28px);
  color: #fff;
  overflow: hidden;
  width: 50%;
  letter-spacing: 0.05em;
  background-color: #fff;
}
.member_gold .gold-overview li span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: clamp(10px, 1.1458333333vw, 22px) 0;
  width: 50%;
  justify-content: center;
}
.member_gold .gold-overview li span:nth-of-type(2) {
  font-family: "Poppins", sans-serif;
  color: #000;
}
.member_gold .gold-overview li img {
  height: clamp(20px, 1.0416666667vw, 30px);
}
.member_gold .gold-class {
  border: 1px solid #0082cb;
}
.member_gold .gold-class span:nth-of-type(1) {
  background-color: #1995e0;
}
.member_gold .gold-expire {
  border: 1px solid #250188;
}
.member_gold .gold-expire span:nth-of-type(1) {
  background-color: #4326b9;
}
.member_gold .gold-content {
  border-radius: 20px;
  border: 1px solid #ccc;
  overflow: hidden;
  font-size: clamp(18px, 1.4583333333vw, 28px);
  text-align: center;
  background-color: #fff;
  margin-top: clamp(35px, 3.6458333333vw, 70px);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.member_gold .gold-content li {
  width: 50%;
}
.member_gold .gold-content li:nth-of-type(1) {
  border-right: 1px solid #ccc;
}
.member_gold .gold-content-title {
  display: flex;
  color: #fff;
  background: linear-gradient(45deg, #0082cb 0%, #250188 62%);
}
.member_gold .gold-content-title li {
  padding: clamp(10px, 1.0416666667vw, 20px) 0;
}
.member_gold .gold-content-list {
  display: flex;
  color: #000;
  border-bottom: 1px solid #ccc;
}
.member_gold .gold-content-list:last-of-type {
  border-bottom: 0;
}
.member_gold .gold-content-list li {
  padding: clamp(22px, 1.6666666667vw, 32px) 0;
}
@media (max-width: 760px) {
  .member_gold .gold-overview {
    flex-wrap: wrap;
    margin-top: 0;
    gap: 15px;
  }
  .member_gold .gold-overview li {
    width: 100%;
  }
  .member_gold .gold-content-title li {
    width: 100%;
  }
  .member_gold .gold-content-title li:last-of-type {
    display: none;
    width: 0%;
  }
  .member_gold .gold-content-list {
    flex-wrap: wrap;
    padding: 20px 10px;
  }
  .member_gold .gold-content-list li {
    width: 100%;
    padding: 3px 10px;
    text-align: left;
  }
  .member_gold .gold-content-list li:nth-of-type(1) {
    border-right: 0;
  }
  .member_gold .gold-content-list li:last-of-type {
    color: #4326b9;
  }
  .member_gold .gold-content-list li:last-of-type::before {
    content: attr(data-title);
    white-space: nowrap;
    margin-right: 10px;
  }
}

.member_course .course-content {
  overflow: hidden;
  background-color: #fff;
}
.member_course .course-content .class-main,
.member_course .course-content .class-sub {
  display: flex;
  list-style: none;
  padding: 0 40px;
  border-bottom: 1px solid #eee;
}
.member_course .course-content .class-main li,
.member_course .course-content .class-sub li {
  cursor: pointer;
  transition: all 0.3s ease;
}
.member_course .course-content .class-main li button,
.member_course .course-content .class-sub li button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
}
.member_course .course-content .class-main li button:focus-visible,
.member_course .course-content .class-sub li button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}
.member_course .course-content .class-main {
  background: linear-gradient(45deg, #0082cb 0%, #250188 62%);
  gap: 0 clamp(10px, 2.0833333333vw, 40px);
  padding-top: 15px;
}
.member_course .course-content .class-main li {
  font-size: clamp(18px, 1.6666666667vw, 32px);
  padding: clamp(10px, 1.0416666667vw, 35px) 0 clamp(10px, 1.25vw, 24px);
  font-weight: 500;
  color: #fff;
  position: relative;
}
.member_course .course-content .class-main li::after {
  content: "";
  display: block;
  height: 5px;
  width: 0;
  background-color: #cdecff;
  transition: 0.6s;
  bottom: 0;
  position: absolute;
}
.member_course .course-content .class-main li:hover, .member_course .course-content .class-main li.is-active {
  color: #cdecff;
}
.member_course .course-content .class-main li:hover::after, .member_course .course-content .class-main li.is-active::after {
  width: 100%;
  transition: 0.6s;
}
.member_course .course-content .class-sub {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  display: flex;
  gap: 0 40px;
  padding: clamp(0px, 2.0833333333vw, 40px) clamp(25px, 2.0833333333vw, 40px);
  flex-wrap: wrap;
}
.member_course .course-content .class-sub li {
  padding: 10px 0;
  font-size: clamp(16px, 1.4583333333vw, 28px);
  display: none;
  position: relative;
}
.member_course .course-content .class-sub li::before {
  content: "";
  display: block;
  position: absolute;
  left: -20px;
  width: 2px;
  height: clamp(16px, 1.4583333333vw, 28px);
  background-color: #ccc;
  top: 30%;
}
.member_course .course-content .class-sub li.first-item::before {
  display: none;
}
.member_course .course-content .class-sub li.is-active {
  color: #0066cc;
}
.member_course .course-content .class-sub li.is-show {
  display: block;
}
.member_course .course-content .class-info-content {
  padding: clamp(25px, 3.125vw, 60px) clamp(15px, 2.6041666667vw, 50px);
}
.member_course .course-content .class-info-item {
  display: none;
}
.member_course .course-content .class-info-item.is-active {
  display: block;
  animation: fadeIn 0.4s ease;
}
.member_course .course-content .class-info-title {
  display: flex;
  gap: 15px;
  font-size: clamp(24px, 1.5625vw, 30px);
  font-weight: 500;
  margin-bottom: 30px;
}
.member_course .course-content .class-info-title img {
  height: clamp(35px, 2.34375vw, 45px);
}
.member_course .course-content .course-card {
  display: block;
  border-radius: 10px;
  border: 1px solid #a5d6f6;
  position: relative;
  overflow: hidden;
  padding: 35px 130px 35px 20px;
  margin-bottom: 20px;
}
.member_course .course-content .course-card-title {
  font-size: clamp(18px, 1.0416666667vw, 20px);
  color: #000;
  position: relative;
  z-index: 1;
  font-weight: 400;
  margin-bottom: 10px;
}
.member_course .course-content .course-card-date {
  font-size: 16px;
  color: #333;
  position: relative;
  z-index: 1;
}
.member_course .course-content .course-card-date span {
  display: inline-block;
}
.member_course .course-content .course-card-fill {
  position: absolute;
  width: 0;
  height: 100%;
  background-color: #e3f4ff;
  top: 0;
  left: 0;
  transition: width 1s ease;
}
.member_course .course-content .course-card-avg {
  position: absolute;
  z-index: 1;
  font-size: 36px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  color: #999;
}
.member_course .course-content .course-card-avg.is-complete {
  background: linear-gradient(45deg, #0082cb 0%, #250188 62%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.member_course .course-content .course-empty {
  color: #555;
  font-size: 18px;
  text-align: center;
}
@media (max-width: 1280px) {
  .member_course .course-content .class-main {
    padding: 10px clamp(15px, 2.0833333333vw, 40px);
  }
  .member_course .course-content .class-main li {
    padding: 5px 10px;
  }
  .member_course .course-content .class-main li.is-active {
    background-color: #fff;
    border-radius: 99px;
    color: #250188;
  }
  .member_course .course-content .class-main li::after {
    display: none;
  }
  .member_course .course-content .class-sub {
    padding: 10px clamp(15px, 2.0833333333vw, 40px);
    gap: 0 22px;
  }
  .member_course .course-content .class-sub li::before {
    left: -13px;
    top: 35%;
  }
}
@media (max-width: 768px) {
  .member_course .course-content .course-card {
    padding: 25px 100px 25px 20px;
  }
  .member_course .course-content .course-card-avg {
    font-size: clamp(24px, 1.4583333333vw, 28px);
  }
  .member_course .course-content .class-info-title {
    font-size: clamp(18px, 1.25vw, 24px);
    margin-bottom: 18px;
    gap: 8px;
  }
  .member_course .course-content .class-info-title img {
    height: clamp(25px, 1.8229166667vw, 35px);
  }
}
@media (max-width: 420px) {
  .member_course .course-content .course-card {
    padding-right: 80px;
  }
  .member_course .course-content .course-card-avg {
    font-size: 20px;
  }
  .member_course .course-content .course-card-date {
    font-size: 14px;
  }
}

.course_progress .member-container {
  background-color: transparent;
  border: 0;
}
.course_progress .course-progress-content {
  border: 1px solid #ccc;
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
}
.course_progress .course-progress-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(80px, 7.8125vw, 150px);
  background: linear-gradient(45deg, #0082cb 0%, #250188 62%);
  color: #fff;
  font-size: clamp(18px, 1.4583333333vw, 28px);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.course_progress .course-progress-heading span {
  padding: clamp(10px, 1.0416666667vw, 20px) clamp(16px, 1.6666666667vw, 32px);
  text-align: center;
}
.course_progress .course-progress-date {
  margin: 0;
  padding: clamp(12px, 0.9375vw, 18px) clamp(16px, 1.6666666667vw, 32px) 0;
  color: #250188;
  font-family: "Poppins", sans-serif;
  font-size: clamp(14px, 0.9375vw, 18px);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.course_progress .course-progress-item {
  border-bottom: 1px solid #d9d9d9;
}
.course_progress .course-progress-item:last-child {
  border-bottom: 0;
}
.course_progress .course-progress-item[open] {
  background-color: #f7fbff;
}
.course_progress .course-progress-item[open] summary {
  color: #0082cb;
}
.course_progress .course-progress-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(80px, 7.8125vw, 150px);
  align-items: center;
  gap: 20px;
  position: relative;
  padding: clamp(18px, 1.4583333333vw, 28px) clamp(16px, 1.6666666667vw, 32px);
  cursor: pointer;
  color: #222;
  font-size: clamp(16px, 1.1979166667vw, 23px);
  font-weight: 500;
  letter-spacing: 0.05em;
  list-style: none;
}
.course_progress .course-progress-item summary::-webkit-details-marker {
  display: none;
}
.course_progress .course-progress-item summary > span:last-child {
  color: #250188;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-align: center;
}
.course_progress .course-progress-item summary::after {
  content: "+";
  position: absolute;
  right: clamp(16px, 1.6666666667vw, 32px);
  color: #0082cb;
  font-family: "Poppins", sans-serif;
  font-size: 1.2em;
  font-weight: 400;
}
.course_progress .course-progress-item[open] summary::after {
  content: "-";
}
.course_progress .course-progress-course {
  display: grid;
  gap: 10px;
  min-width: 0;
}
.course_progress .course-progress-course > span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.course_progress .course-progress-bar {
  display: block;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background-color: #dceaf5;
}
.course_progress .course-progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0082cb, #250188);
}
.course_progress .course-progress-videos {
  padding: clamp(12px, 1.0416666667vw, 20px) clamp(16px, 1.6666666667vw, 32px) clamp(18px, 1.4583333333vw, 28px);
}
.course_progress .course-progress-videos li {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
  color: #4c4c4c;
  font-size: clamp(14px, 0.9375vw, 18px);
  letter-spacing: 0.03em;
}
.course_progress .course-progress-videos li:last-child {
  border-bottom: 0;
}
.course_progress .course-progress-video-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.course_progress .course-progress-video-header > span:last-child {
  flex-shrink: 0;
  color: #250188;
  font-family: "Poppins", sans-serif;
}
.course_progress .course-progress-video-bar {
  display: block;
  height: 4px;
  margin-top: 8px;
  border-radius: 999px;
  overflow: hidden;
  background-color: #dceaf5;
}
.course_progress .course-progress-video-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background-color: #0082cb;
}
.course_progress .course-progress-empty {
  padding: clamp(35px, 3.6458333333vw, 70px) 30px;
  color: #777;
  font-size: clamp(17px, 1.25vw, 24px);
  text-align: center;
}
.course_progress .pagination {
  margin-top: clamp(35px, 3.125vw, 60px);
}
@media (max-width: 760px) {
  .course_progress .course-progress-heading {
    grid-template-columns: 1fr;
  }
  .course_progress .course-progress-heading span:last-child {
    display: none;
  }
  .course_progress .course-progress-item summary {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding-right: 48px;
  }
  .course_progress .course-progress-video-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

.member_course_detail .member-container {
  padding: clamp(40px, 2.8645833333vw, 55px) clamp(20px, 2.6041666667vw, 50px);
  letter-spacing: 0.05em;
}
.member_course_detail .class-course {
  background-color: #250188;
  font-size: 16px;
  border-radius: 99px;
  padding: 5px 15px;
  margin-bottom: 25px;
  color: #fff;
  display: inline-block;
}
.member_course_detail .class-title {
  color: #250188;
  font-weight: 500;
}
.member_course_detail .class-title-sub {
  font-size: 24px;
  font-weight: 500;
  margin: 50px 0 20px;
}
.member_course_detail .class-desc {
  font-size: 18px;
  color: #666;
  margin: 25px 0 30px;
}
.member_course_detail .supplement-link {
  border: 1px solid #250188;
  color: #250188;
  display: inline-block;
  font-size: 16px;
  margin-bottom: 20px;
  padding: 8px 16px;
}
.member_course_detail .supplement-link:hover {
  background-color: #e3f4ff;
}
.member_course_detail .course-supplement-content {
  line-height: 1.8;
  overflow-x: auto;
}
.member_course_detail .course-supplement-content table {
  border-collapse: collapse;
  width: 100%;
}
.member_course_detail .course-supplement-content th,
.member_course_detail .course-supplement-content td {
  border: 1px solid #ccc;
  padding: 8px;
}
.member_course_detail .down-item {
  position: relative;
  border: 1px solid #ccc;
  width: 100%;
  padding: 20px 60px 20px 75px;
  display: block;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 500;
  transition: 0.6s;
}
.member_course_detail .down-item::before {
  content: "";
  position: absolute;
  background-image: url(../images/icon/note.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  left: 23px;
  top: 50%;
  transform: translateY(-50%);
}
.member_course_detail .down-item::after {
  content: "";
  position: absolute;
  background-image: url(../images/icon/down.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 35px;
  height: 35px;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.member_course_detail .down-item:hover {
  background-color: #e3f4ff;
  transition: 0.6s;
}
.member_course_detail .video-row {
  border-radius: 10px;
  border: 1px solid #ccc;
  display: flex;
  padding: 20px clamp(20px, 2.0833333333vw, 40px);
  gap: 0 clamp(20px, 2.0833333333vw, 40px);
  align-items: center;
  margin-bottom: 20px;
}
.member_course_detail .video-time {
  padding-top: 5px;
  min-width: 76px;
  text-align: center;
  cursor: pointer;
}
.member_course_detail .video-time:hover {
  opacity: 0.8;
}
.member_course_detail .video-time small {
  display: block;
  font-size: 12px;
  margin-top: 4px;
}
.member_course_detail .video-time-total {
  font-size: clamp(14px, 0.78125vw, 15px);
  color: #250188;
  margin-top: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.member_course_detail .video-time span {
  position: relative;
  background-image: url(../images/icon/video.svg);
  background-position: center;
  width: clamp(30px, 2.34375vw, 45px);
  aspect-ratio: 1;
  display: block;
  margin: auto;
}
.member_course_detail .video-info {
  width: 100%;
}
.member_course_detail .video-bar {
  display: block;
  width: 100%;
  height: 5px;
  background-color: #cfdff2;
  position: relative;
}
.member_course_detail .video-bar-fill {
  width: 0;
  height: 100%;
  display: block;
  background-color: #250188;
  position: absolute;
}
.member_course_detail .video-title {
  font-size: clamp(16px, 1.0416666667vw, 20px);
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
.member_course_detail .video-title a {
  min-width: 25px;
  width: 25px;
  aspect-ratio: 1;
}
.member_course_detail .video-title a img {
  min-height: 25px;
  opacity: 0.8;
}
.member_course_detail .video-title a:hover {
  opacity: 0.8;
  transform: scale(0.95);
  transition: 0.8s;
}
.member_course_detail .video-progress-text {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  margin-top: 8px;
  text-align: right;
}
.member_course_detail .video-group-title {
  font-size: 20px;
  font-weight: 500;
  margin: 30px 0 15px;
}
@media (max-width: 600px) {
  .member_course_detail .video-row {
    align-items: flex-start;
  }
  .member_course_detail .video-title {
    flex-direction: column;
  }
}
.member_course_detail .play-dialog {
  border: none;
  border-radius: 20px;
  padding: 30px;
  max-width: 420px;
  width: 90%;
}
.member_course_detail .play-dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}
.member_course_detail .play-dialog-header {
  text-align: right;
}
.member_course_detail .play-dialog-close {
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: #666;
}
.member_course_detail .play-dialog-close:hover {
  color: #250188;
}
.member_course_detail .play-dialog-body {
  text-align: center;
}
.member_course_detail .play-dialog-body h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.member_course_detail .play-dialog-body form {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.member_course_detail .play-dialog .btn-play-device {
  padding: 10px 30px;
  border-radius: 99px;
  border: 1px solid #250188;
  cursor: pointer;
  color: #250188;
  background: #fff;
  font-size: 16px;
  transition: 0.6s;
}
.member_course_detail .play-dialog .btn-play-device:hover {
  background: #250188;
  color: #fff;
  transition: 0.6s;
}
.member_course_detail .play-dialog-note {
  color: #250188;
  font-size: 14px;
}
.member_course_detail .play-dialog-device-info {
  font-size: 12px;
  color: #999;
  margin-top: 15px;
}
.member_course_detail .d-none {
  display: none !important;
}

.member_course_play {
  background-color: #000;
}
.member_course_play #starplayer-root {
  max-width: 1024px;
  margin: 0 auto;
}
.member_course_play #starplayer-root video {
  width: 100%;
  display: block;
}
.member_course_play .bookmark-panel {
  max-width: 1024px;
  margin: 20px auto;
  padding: 20px clamp(20px, 2.0833333333vw, 40px);
  background-color: #fff;
  border-radius: 10px;
}
.member_course_play .bookmark-panel h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #250188;
}
.member_course_play .bookmark-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.member_course_play .bookmark-row input {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.member_course_play .bookmark-row button {
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid #250188;
  background: #fff;
  color: #250188;
  cursor: pointer;
  transition: 0.6s;
}
.member_course_play .bookmark-row button:hover {
  background: #250188;
  color: #fff;
}

.member_exchange .exchange-form {
  --ad-stack-space: var(--ad-space-6);
}
.member_exchange .exchange-field {
  display: grid;
  gap: var(--ad-space-3);
}
.member_exchange .exchange-field.ui-field {
  margin-bottom: 0;
}
.member_exchange .exchange-label,
.member_exchange .exchange-field > label {
  font-size: 18px;
  font-weight: 700;
  color: #333;
}
.member_exchange .exchange-product {
  font-size: 18px;
  color: #0082cb;
}
.member_exchange input {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid #b2b2b2;
  border-radius: 4px;
  font: inherit;
  font-size: 18px;
}
.member_exchange input:focus-visible {
  outline: 3px solid rgba(0, 130, 203, 0.25);
  outline-offset: 2px;
  border-color: #0082cb;
}
.member_exchange .form-error-msg {
  margin: 0;
  font-size: 16px;
}
.member_exchange .exchange-actions {
  display: flex;
  justify-content: flex-end;
}
.member_exchange .exchange-actions .ui-button {
  font-size: 18px;
}
@media (max-width: 480px) {
  .member_exchange .exchange-actions .ui-button {
    width: 100%;
  }
}

.member_upad .upad-section {
  overflow: hidden;
  box-shadow: none;
  padding-bottom: var(--ad-space-5);
}
.member_upad .upad-section > :not(.upad-section-heading) {
  margin-inline: var(--ad-space-5);
}
.member_upad .upad-section-heading {
  justify-content: space-between;
  padding: var(--ad-space-4) var(--ad-space-5);
  border-bottom: 1px solid var(--ad-color-border);
  background: var(--ad-color-surface-tint);
}
.member_upad .member-panel-body h2,
.member_upad .member-panel-body h3 {
  margin: 0;
  color: var(--ad-color-brand-strong);
  font-size: 20px;
  font-weight: 500;
}
.member_upad .member-panel-body p,
.member_upad .member-panel-body dl,
.member_upad .member-panel-body dd {
  margin: 0;
}
.member_upad .upad-credential-list dt {
  color: var(--ad-color-muted);
}
.member_upad .upad-credential-list dd {
  overflow-wrap: anywhere;
  color: var(--ad-color-brand);
}
.member_upad .upad-course-list,
.member_upad .upad-subject-group ul {
  margin: 0;
  padding-left: var(--ad-space-6);
}
.member_upad .upad-help-dialog .modal-box {
  max-width: 880px;
  max-height: 80vh;
  overflow-y: auto;
}
@media (max-width: 480px) {
  .member_upad .member-panel-body .ui-button {
    width: 100%;
  }
}

.member_solve_info .solve-content {
  color: #3e4856;
}
.member_solve_info .solve-title {
  margin: 0;
  padding: clamp(18px, 1.5625vw, 30px);
  background: linear-gradient(45deg, #0082cb 0%, #250188 62%);
  color: #fff;
  text-align: center;
}
.member_solve_info .solve-table-wrap {
  margin: clamp(25px, 2.34375vw, 45px) clamp(20px, 2.6041666667vw, 50px) 0;
  overflow-x: auto;
}
.member_solve_info .solve-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: clamp(15px, 1.0416666667vw, 20px);
}
.member_solve_info .solve-table th,
.member_solve_info .solve-table td {
  padding: clamp(14px, 1.1458333333vw, 22px) 18px;
  border-bottom: 1px solid #d9d9d9;
  text-align: center;
  white-space: nowrap;
}
.member_solve_info .solve-table th {
  font-weight: 600;
}
.member_solve_info .solve-table td {
  color: #333;
}
.member_solve_info .solve-table tbody tr:last-child td {
  border-bottom: 0;
}
.member_solve_info .solve-empty {
  margin: clamp(25px, 2.34375vw, 45px) clamp(20px, 2.6041666667vw, 50px) 0;
  padding: clamp(25px, 2.0833333333vw, 40px);
  border: 1px solid #a5d6f6;
  border-radius: 12px;
  background: #f7fbff;
  color: #555;
  text-align: center;
}
.member_solve_info .solve-empty p {
  margin: 0;
  line-height: 1.8;
}
.member_solve_info .solve-empty .solve-empty-title {
  margin-bottom: 4px;
  color: #250188;
  font-size: clamp(20px, 1.3541666667vw, 26px);
  font-weight: 600;
}
.member_solve_info .solve-service-link {
  margin: clamp(25px, 2.0833333333vw, 40px) clamp(20px, 2.6041666667vw, 50px) 20px;
  color: #687181;
  font-size: clamp(15px, 0.9895833333vw, 19px);
}
.member_solve_info .solve-service-link a {
  color: #0082cb;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.member_solve_info .solve-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0 clamp(20px, 2.6041666667vw, 50px) clamp(30px, 2.6041666667vw, 50px);
}
.member_solve_info .solve-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 12px 26px;
  border: 1px solid #0082cb;
  border-radius: 99px;
  color: #0082cb;
  font-size: clamp(16px, 1.0416666667vw, 20px);
  font-weight: 600;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.member_solve_info .solve-action:hover {
  background: #0082cb;
  color: #fff;
  transform: translateY(-2px);
}
.member_solve_info .solve-hours-title {
  margin: 0 clamp(20px, 2.6041666667vw, 50px) 12px;
  color: #250188;
  font-size: clamp(20px, 1.25vw, 24px);
  font-weight: 600;
}
.member_solve_info .solve-hours {
  margin: 0 clamp(20px, 2.6041666667vw, 50px) clamp(30px, 2.6041666667vw, 50px);
  padding-left: 22px;
  color: #687181;
  font-size: clamp(15px, 0.9895833333vw, 19px);
  line-height: 1.8;
}
@media (max-width: 600px) {
  .member_solve_info .solve-table {
    font-size: 15px;
  }
  .member_solve_info .solve-table th,
  .member_solve_info .solve-table td {
    padding: 13px 12px;
  }
  .member_solve_info .solve-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .member_solve_info .solve-action {
    width: 100%;
  }
}

:is(.login_page, .card-page) .ui-button {
  margin-top: 40px;
  font-size: 22px;
}

.login_page .login-container {
  width: calc(100% - 90px);
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 20px;
  overflow: hidden;
  max-width: 1200px;
  font-size: clamp(18px, 1.4583333333vw, 28px);
  margin: auto;
}
@media (max-width: 460px) {
  .login_page .login-container {
    width: calc(100% - 60px);
  }
}
.login_page .login-container {
  padding: 50px clamp(30px, 2.6041666667vw, 50px);
  max-width: 720px;
  text-align: center;
}
.login_page .g-recaptcha div {
  margin: auto;
}
.login_page .page-title {
  text-align: center;
  font-size: clamp(28px, 1.875vw, 36px);
  color: #0082cb;
  margin-bottom: 30px;
  font-weight: 500;
  padding-bottom: 20px;
  border-bottom: 2px solid #250188;
  position: relative;
}
.login_page .page-title::before {
  content: "";
  width: 50%;
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  background-color: #0082cb;
}
.login_page .page-title span {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}
.login_page select,
.login_page input,
.login_page textarea {
  min-height: 50px;
  width: 100%;
}
.login_page .form-pass {
  position: relative;
}
.login_page .text-btn {
  font-size: 18px;
  text-align: center;
  display: inline-block;
  margin: auto;
  letter-spacing: 0.1em;
  color: #0082cb;
  padding-bottom: 5px;
  border-bottom: 1px solid transparent;
  cursor: pointer;
}
.login_page .text-btn:hover {
  color: #250188;
  border-bottom: 1px solid #250188;
  transition: 0.6s;
}
.login_page .eye-btn {
  background-image: url(../images/icon/eye-no.svg);
  width: 40px;
  aspect-ratio: 1;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 5px;
  bottom: 5px;
}
.login_page .eye-btn.is-visible {
  background-image: url(../images/icon/eye.svg);
}
.login_page .input-item {
  margin-bottom: 25px;
}
.login_page .input-item label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 18px;
}
.login_page .input-item input {
  padding: 10px;
  width: 100%;
  font-size: 18px;
}
.login_page .input-item.gray-font {
  color: #666;
}
.login_page .input-item .resend {
  color: #0082cb;
  cursor: pointer;
  font-weight: 600;
  border-bottom: 1px solid #0082cb;
  padding-bottom: 1px;
  transition: 0.6s;
}
.login_page .input-item .resend:hover {
  color: #250188;
  transition: 0.6s;
  border-bottom: 1px solid #250188;
}
.login_page .register-info {
  display: flex;
  font-size: 18px;
  color: #666;
  justify-content: center;
  letter-spacing: 0.05em;
  margin-top: 60px;
  flex-wrap: wrap;
}
.login_page .register-info .text-btn {
  margin: 0 10px;
}
.login_page .modal-box-content {
  font-size: 16px;
  text-align: center;
}
.login_page .modal-box-content .info-title {
  text-align: center;
  color: #250188;
  font-size: 20px;
  font-weight: 500;
}
.login_page .modal-box-content .ui-button {
  margin-top: 20px;
}
.login_page .modal-box-content .input-item {
  margin: 25px 0 10px;
}
.login_page .social-container {
  display: flex;
  justify-content: center;
  font-size: 16px;
  gap: 10px;
  margin: 40px auto 80px;
}
.login_page .social-container-title {
  font-size: 18px;
  color: #666;
  text-align: center;
  margin-top: 80px;
  position: relative;
}
.login_page .social-container-title span {
  background-color: #fff;
  position: relative;
  z-index: 1;
  padding: 0px 20px;
}
.login_page .social-container-title::before {
  content: "";
  border-top: 1px solid #d3d3d3;
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  width: 100%;
}
.login_page .social-container img {
  height: 30px;
  margin-right: 10px;
}
.login_page .social-container li {
  border-radius: 99px;
  width: 100%;
  border: 1px solid #ccc;
  text-align: center;
  transition: 0.6s;
}
.login_page .social-container li a {
  display: flex;
  justify-content: center;
  padding: 15px 10px;
  letter-spacing: 0.05em;
  font-family: "Poppins", sans-serif;
  align-items: center;
}
.login_page .social-container li:hover {
  background-color: rgba(0, 130, 203, 0.1);
  transition: 0.6s;
  border: 1px solid transparent;
}
@media (max-width: 680px) {
  .login_page .social-container {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .login_page .btn-box {
    flex-direction: column-reverse;
    max-width: 250px;
    margin: 35px auto;
    gap: 50px;
  }
  .login_page .ui-button {
    text-align: center;
  }
}

.terms_page .terms-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  color: #333;
  line-height: 1.68;
  font-size: clamp(16px, 0.9375vw, 18px);
}
.terms_page .terms-container p {
  margin-bottom: 10px;
}
.terms_page .terms-container a {
  color: #250188;
  text-decoration: underline;
}
.terms_page .terms-container .red-font {
  color: #e91e63;
}
.terms_page .terms-title {
  font-size: clamp(28px, 1.6666666667vw, 32px);
  color: #0082cb;
  font-weight: bold;
  border-bottom: 1px solid #0082cb;
  padding-bottom: 20px;
  margin-bottom: 50px;
}
.terms_page .terms-intro {
  margin-bottom: 30px;
  color: #555;
}
.terms_page .highlight-text {
  font-weight: bold;
  color: #250188;
}
.terms_page .terms-item {
  margin-bottom: 40px;
}
.terms_page .terms-subtitle {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #000;
}
.terms_page .terms-list {
  padding-left: 20px;
  list-style-type: disc;
}
.terms_page .terms-list ul {
  list-style: circle;
  padding-left: 20px;
  margin: 10px 0 20px;
  color: #666;
}
.terms_page .terms-list li {
  margin-bottom: 8px;
}
.terms_page .terms-action-box {
  background: #f9f9f9;
  padding: 15px;
  border-left: 4px solid #333;
  margin-top: 10px;
}
.terms_page .terms-link {
  color: #0082cb;
  text-decoration: underline;
}
.terms_page .security-info strong {
  display: block;
  margin-top: 10px;
}

.ui-catalog {
  padding-block: var(--ad-space-12);
  color: var(--ad-color-text);
}
.ui-catalog__intro, .ui-catalog__section {
  margin-bottom: var(--ad-space-10);
}
.ui-catalog__section {
  padding: var(--ad-space-6);
}
.ui-catalog__example {
  padding: var(--ad-space-5);
  border: 1px dashed var(--ad-color-border);
  border-radius: var(--ad-radius-control);
}
.ui-catalog__narrow {
  max-width: 390px;
}
.ui-catalog__long-copy {
  max-width: 65ch;
}
.ui-catalog__product-list {
  --ad-grid-min: 15rem;
  max-width: 32rem;
  padding: 0;
  list-style: none;
}
.ui-catalog__product-image {
  display: grid;
  min-height: 12rem;
  border-radius: var(--ad-radius-panel) var(--ad-radius-panel) 0 0;
  color: #fff;
  background: linear-gradient(135deg, var(--ad-color-brand), var(--ad-color-brand-strong));
  font-size: 4rem;
  font-weight: 700;
  place-items: center;
  text-decoration: none;
}
.ui-catalog .ui-button.is-hover-reference {
  color: #fff;
  background: var(--ad-color-brand-strong);
}
.ui-catalog .ui-button.is-focus-reference {
  outline: 3px solid rgba(0, 130, 203, 0.35);
  outline-offset: 3px;
}
.ui-catalog [data-catalog-state=empty]::after {
  content: "Empty live region";
  opacity: 0.6;
  font-style: italic;
}

header[data-site-header] {
  gap: clamp(24px, 3vw, 56px);
}

.header-nav {
  gap: clamp(22px, 3vw, 48px);
}

.header-menu {
  gap: clamp(24px, 3vw, 42px);
}

.header-menu a,
.header-menu-title {
  white-space: nowrap;
}

@media (min-width: 1025px) and (max-width: 1380px) {
  .header-logo {
    max-width: 180px;
  }
  .header-nav,
  .header-menu {
    font-size: 21px;
    gap: 24px;
  }
  .header-tool {
    gap: 16px;
  }
}
.banner-page img {
  height: clamp(230px, 24vw, 380px);
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 769px) {
  .banner-page img {
    height: clamp(190px, 14.4vw, 230px);
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 640px) {
  .banner-page img {
    height: 220px;
  }
}
.footer-logo {
  background: #fff;
  border-radius: 6px;
  padding: 8px 12px;
}

.footer-info .hotline {
  line-height: 1.35;
  margin-bottom: 8px;
}

.footer-info .hotline span {
  display: block;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.footer-info .hotline.sub {
  font-size: 30px;
}

.footer-phone {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.fixed-social {
  gap: 8px;
}

.fixed-social .fixed-phone {
  width: auto;
  min-width: 56px;
  border-radius: 999px;
  padding-right: 12px;
  background: #2c7cd3;
  color: #fff;
  gap: 6px;
}

.fixed-social .fixed-phone span {
  display: none;
  white-space: nowrap;
  font-size: 13px;
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.fixed-social .fixed-phone:hover span {
  display: block;
}

@media (max-width: 640px) {
  .fixed-social .fixed-phone span {
    display: none !important;
  }
}
.index_page main {
  display: flex;
  flex-direction: column;
}

.index_page .index-banner {
  order: 0;
}

.index_page .activity {
  order: 1;
}

.index_page .exclusive {
  order: 2;
}

.index_page .marquee {
  order: 3;
}

.index_page .popular-products {
  order: 4;
}

.index_page .faculty {
  order: 5;
}

.index_page .six-advantages {
  order: 6;
}

.index_page .index-video {
  order: 7;
}

.index_page .index-review {
  order: 8;
}

.index_page .education-articles {
  order: 9;
}

.index_page .index-faq {
  order: 10;
}

.index_page .index-quick-link {
  order: 11;
}

.index-banner .swiper-button-next,
.index-banner .swiper-button-prev {
  display: none;
}

.exclusive-action {
  text-align: center;
  margin-top: 32px;
}

.exclusive-action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 12px 32px;
  border-radius: 999px;
  background: #2c7cd3;
  color: #fff;
  font-size: 22px;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.popular-products {
  padding: clamp(72px, 7vw, 130px) 0;
}

.popular-products .index-title,
.popular-products .index-title p {
  color: #fff;
}

.product-zone {
  display: grid;
  gap: clamp(34px, 4vw, 70px);
  margin-top: clamp(34px, 4vw, 64px);
}

.product-group {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
}

.product-group-heading {
  color: #fff;
  position: sticky;
  top: 130px;
}

.product-group-heading span {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.78;
  margin-bottom: 10px;
}

.product-group-heading h3 {
  font-size: clamp(28px, 2.5vw, 42px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.25;
}

.product-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-tile {
  position: relative;
  min-height: 168px;
  border-radius: 8px;
  color: #fff;
  padding: 22px 64px 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(8, 34, 70, 0.18);
}

.product-tile::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.product-tile .tag {
  font-size: 15px;
  letter-spacing: 0.08em;
}

.product-tile strong {
  font-size: clamp(20px, 1.5vw, 26px);
  line-height: 1.35;
  letter-spacing: 0.04em;
  margin: 14px 0;
}

.product-tile em {
  font-style: normal;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #17345b;
  font-weight: 700;
}

.product-tile .add-shopcart {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}

.product-tile .add-shopcart svg {
  fill: #2c7cd3;
}

.tile-blue {
  background: linear-gradient(135deg, #1677c7, #4aa5e4);
}

.tile-pink {
  background: linear-gradient(135deg, #df5f88, #f3a5bf);
}

.tile-gold {
  background: linear-gradient(135deg, #c99743, #e3bd73);
}

.tile-purple {
  background: linear-gradient(135deg, #6d68c9, #a49bea);
}

.tile-green {
  background: linear-gradient(135deg, #4a9b8e, #93c9bf);
}

.tile-slate {
  background: linear-gradient(135deg, #64748b, #a5b4c6);
}

.faculty-marquee {
  overflow-x: auto;
}

.faculty-marquee-inner {
  animation: none !important;
  width: -moz-max-content;
  width: max-content;
}

.faculty-marquee-inner .marquee-group:nth-child(n+2) {
  display: none;
}

.faculty-info span {
  display: inline-block;
  margin-bottom: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff;
  color: #2c7cd3;
  font-size: 15px;
  font-weight: 700;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: clamp(36px, 4vw, 70px);
}

.testimonial-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(29, 72, 114, 0.12);
}

.testimonial-card img {
  width: 100%;
  aspect-ratio: 1/0.82;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonial-card div {
  padding: 24px;
}

.testimonial-card span,
.article-list span {
  color: #2c7cd3;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.testimonial-card h3,
.article-list h3 {
  color: #17345b;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  margin: 10px 0;
}

.testimonial-card p,
.article-list p,
.faq-preview p {
  color: #333;
  font-size: 17px;
  line-height: 1.75;
}

.education-articles,
.index-faq {
  padding: clamp(72px, 7vw, 130px) 0;
}

.index_page .index-faq {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 12% 5%, rgba(0, 130, 203, 0.14), transparent 28%), radial-gradient(circle at 88% 12%, rgba(37, 1, 136, 0.1), transparent 24%), #f4f9fd;
}

.index_page .index-faq::before {
  content: "FAQ";
  position: absolute;
  top: 28px;
  right: -20px;
  color: rgba(0, 130, 203, 0.055);
  font-family: "Poppins", sans-serif;
  font-size: clamp(110px, 16vw, 280px);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.index_page .index-faq .faq-anchor-nav,
.index_page .index-faq .faq-directory-content {
  position: relative;
  z-index: 1;
}

.article-list {
  display: grid;
  gap: 18px;
  margin-top: clamp(34px, 4vw, 64px);
}

.article-list a {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 26px;
  align-items: center;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(24, 61, 100, 0.1);
}

.article-list img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}

.faq-preview {
  margin-top: clamp(34px, 4vw, 64px);
}

.faq-preview details {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 0 24px;
  box-shadow: 0 10px 24px rgba(24, 61, 100, 0.08);
}

.faq-preview summary {
  cursor: pointer;
  color: #17345b;
  font-size: 22px;
  font-weight: 700;
  padding: 22px 0;
}

.faq-preview p {
  padding: 0 0 22px;
}

@media (max-width: 1024px) {
  .index-banner .swiper-slide img {
    -o-object-position: 64% center;
       object-position: 64% center;
  }
  .index-banner .banner-content {
    top: 112px;
    left: 24px;
    max-width: 62%;
  }
  .index-banner .banner-content .large-text {
    font-size: 42px;
  }
  .index-banner .banner-content .medium-text {
    font-size: 34px;
  }
  .index-banner .banner-content .small-text {
    font-size: 22px;
    letter-spacing: 0.12em;
  }
  .index-banner .banner-content .depict-text {
    font-size: 15px;
    letter-spacing: 0.08em;
  }
  .product-group {
    grid-template-columns: 1fr;
  }
  .product-group-heading {
    position: static;
  }
  .product-tile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .article-list a {
    grid-template-columns: 180px 1fr;
  }
}
@media (max-width: 640px) {
  .index-banner .banner-content {
    top: 96px;
    max-width: 58%;
  }
  .index-banner .banner-content .hero-cta {
    margin-top: 18px;
    font-size: 17px;
    padding: 7px 18px;
    letter-spacing: 0.22em;
  }
  .product-tile {
    min-height: 150px;
    padding: 18px 54px 18px 18px;
  }
  .testimonial-grid,
  .article-list {
    grid-template-columns: 1fr;
  }
  .article-list a {
    grid-template-columns: 1fr;
  }
}
/* Home-page product showcase and supporting sections. */
.popular-products {
  padding: clamp(72px, 7vw, 120px) 0 clamp(90px, 8vw, 145px);
}

.popular-products .index-title {
  margin-bottom: clamp(34px, 4vw, 64px);
}

.popular-products .product-zone {
  gap: clamp(70px, 7vw, 120px);
  margin-top: 0;
}

.popular-products .product-group {
  display: block;
}

.popular-products .product-group-heading {
  position: static;
  text-align: center;
  margin-bottom: clamp(34px, 4vw, 64px);
}

.popular-products .product-group-heading span {
  margin-bottom: 8px;
}

.popular-products .product-group-heading h3 {
  font-size: clamp(42px, 4.1666666667vw, 80px);
  line-height: 1.3;
  letter-spacing: 0.16em;
}

.popular-products .product-tile-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 1.8vw, 28px);
}

.popular-products .product-tile {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  color: #250188;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(8, 34, 70, 0.18);
}

.popular-products .product-tile::after {
  display: none;
}

.popular-products .product-tile-cover {
  position: relative;
  min-height: clamp(156px, 15vw, 230px);
  padding: clamp(18px, 1.8vw, 28px);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.popular-products .product-tile-cover::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -42px;
  width: clamp(120px, 12vw, 190px);
  height: clamp(120px, 12vw, 190px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.popular-products .product-tile-cover .tag {
  position: relative;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.popular-products .product-tile-cover strong {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(28px, 2.3vw, 44px);
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-shadow: 0 3px 10px rgba(20, 35, 70, 0.25);
}

.popular-products .product-tile-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(18px, 1.8vw, 28px);
  background: #fff;
}

.popular-products .product-tile-body h3 {
  color: #250188;
  font-size: clamp(18px, 1.18vw, 22px);
  line-height: 1.55;
  font-weight: 800;
  min-height: 3.1em;
}

.popular-products .product-tile-body p {
  font-size: 18px;
  line-height: 1.5;
}

.popular-products .product-tile-body .origin {
  margin-top: 14px;
  color: #555;
}

.popular-products .product-tile-body .sale {
  color: #f6a21a;
  font-size: clamp(23px, 1.6vw, 30px);
  font-weight: 800;
}

.popular-products .product-actions {
  display: grid;
  grid-template-columns: 1fr 46px;
  gap: 12px;
  align-items: center;
  margin-top: auto;
  padding-top: 22px;
}

.popular-products .product-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  background: #f8aa28;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.popular-products .product-tile .add-shopcart {
  position: static;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #f2f7ff;
  cursor: pointer;
}

.popular-products .product-tile .add-shopcart svg {
  fill: #2c7cd3;
}

.popular-products .tile-blue .product-tile-cover {
  background: linear-gradient(135deg, #1e238d, #138fd3);
}

.popular-products .tile-pink .product-tile-cover {
  background: linear-gradient(135deg, #ca3f75, #ee85a5);
}

.popular-products .tile-gold .product-tile-cover {
  background: linear-gradient(135deg, #bd945b, #dbbd8c);
}

.popular-products .tile-purple .product-tile-cover {
  background: linear-gradient(135deg, #6e5bd7, #927ee6);
}

.popular-products .tile-green .product-tile-cover {
  background: linear-gradient(135deg, #79a6a0, #a9cac4);
}

.popular-products .tile-slate .product-tile-cover {
  background: linear-gradient(135deg, #92a0b4, #c1c9d5);
}

.popular-products .tile-light-green .product-tile-cover {
  background: linear-gradient(135deg, #a6bf68, #d1e2a2);
}

.popular-products .tile-orange .product-tile-cover {
  background: linear-gradient(135deg, #f0a072, #f6c0a0);
}

.faculty .faculty-marquee {
  overflow: hidden;
}

.faculty-marquee-inner {
  flex-wrap: nowrap !important;
  animation: faculty-marquee-scroll 45s linear infinite !important;
}

.faculty-marquee-inner .marquee-group {
  display: flex;
  flex: 0 0 auto;
  gap: 15px;
}

.faculty-marquee-inner .marquee-group:nth-child(n+2) {
  display: flex;
}

@media (max-width: 1024px) {
  .popular-products .product-tile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .popular-products .product-tile-grid {
    grid-template-columns: 1fr;
  }
  .popular-products .product-group-heading h3 {
    letter-spacing: 0.08em;
  }
}
.index_page .exclusive-action {
  display: none;
}

.index_page .exclusive .exclusive-item {
  color: #fff;
}

.index_page .exclusive .exclusive-title {
  bottom: clamp(44px, 5.2vw, 100px);
}

.index_page .exclusive .exclusive-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(150px, 12vw, 220px);
  min-height: clamp(48px, 4vw, 66px);
  margin-top: clamp(22px, 3vw, 54px);
  padding: 8px 28px;
  border-radius: 999px;
  background: #2c7cd3;
  color: #fff;
  font-size: clamp(20px, 1.7vw, 30px);
  font-weight: 800;
  letter-spacing: 0.12em;
  box-shadow: 0 10px 26px rgba(12, 64, 132, 0.24);
}

.index_page .exclusive .exclusive-item:nth-of-type(2) .exclusive-cta {
  background: #d89b23;
  box-shadow: 0 10px 26px rgba(142, 94, 10, 0.24);
}

.index_page .exclusive .exclusive-item:hover .exclusive-cta {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .index_page .exclusive .exclusive-title {
    bottom: clamp(34px, 10vw, 60px);
  }
  .index_page .exclusive .exclusive-cta {
    min-width: 150px;
    min-height: 48px;
    margin-top: 20px;
    font-size: 20px;
  }
}
/* Shared FAQ directory component. */
.faq-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding-top: clamp(28px, 3.5vw, 52px);
}

.faq-anchor-nav a {
  min-width: 126px;
  padding: 12px 22px;
  border: 1px solid rgba(0, 130, 203, 0.35);
  border-radius: 999px;
  color: #0b376c;
  background: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  box-shadow: 0 7px 18px rgba(37, 1, 136, 0.08);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.faq-anchor-nav a:hover,
.faq-anchor-nav a:focus-visible {
  color: #fff;
  background: linear-gradient(45deg, #0082cb 0%, #250188 62%);
  box-shadow: 0 10px 24px rgba(37, 1, 136, 0.2);
  transform: translateY(-2px);
}

.faq-directory {
  padding: 0 0 clamp(72px, 7vw, 128px);
}

.faq-directory .faq-directory-content,
.index_page .faq-directory-content {
  margin-top: 24px;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.faq-section {
  scroll-margin-top: 100px;
  margin-top: clamp(44px, 5vw, 76px);
}

.faq-section:first-child {
  margin-top: 0;
}

.faq-section > h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  color: #250188;
  font-size: clamp(26px, 2.1vw, 34px);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.faq-section > h2::before {
  content: "";
  width: 7px;
  height: 1.15em;
  border-radius: 999px;
  background: linear-gradient(45deg, #0082cb 0%, #250188 62%);
}

.faq-directory-content .faq-category {
  margin: 0 0 18px;
  border: 1px solid rgba(0, 130, 203, 0.25);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 35px rgba(24, 61, 100, 0.1);
}

.faq-directory-content .faq-category > summary {
  position: relative;
  padding: 21px 64px 21px 28px;
  list-style: none;
  background: linear-gradient(105deg, #fff 0%, #eff8ff 100%);
  color: #0b376c;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.faq-directory-content summary::-webkit-details-marker {
  display: none;
}

.faq-directory-content summary::marker {
  content: "";
}

.faq-directory-content .faq-category > summary::after,
.faq-directory-content .faq-question > summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  width: auto;
  height: auto;
  border: 0;
  color: #0082cb;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-directory-content details[open] > summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-directory-content .faq-category[open] > summary {
  color: #fff;
  background: linear-gradient(45deg, #0082cb 0%, #250188 62%);
}

.faq-directory-content .faq-category[open] > summary::after {
  color: #fff;
}

.faq-directory-content .faq-category-body {
  padding: 18px 22px 22px;
  border: 0;
}

.faq-directory-content .faq-question {
  margin: 0 0 10px;
  border: 1px solid #d7e6f2;
  border-radius: 14px;
  overflow: hidden;
  background: #f9fcff;
}

.faq-directory-content .faq-question:last-child {
  margin-bottom: 0;
}

.faq-directory-content .faq-question > summary {
  position: relative;
  padding: 18px 58px 18px 22px;
  list-style: none;
  color: #123c72;
  font-size: 19px;
  font-weight: 600;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.faq-directory-content .faq-question > summary:hover {
  color: #0082cb;
  background: #f1f8fe;
}

.faq-directory-content .faq-question[open] > summary {
  color: #250188;
  background: #eef6fc;
}

.faq-directory-content .faq-answer {
  padding: 20px 22px 24px;
  border-top: 1px solid #d7e6f2;
  color: #1d1d1d;
  font-size: 17px;
  line-height: 1.85;
  letter-spacing: 0;
}

.faq-directory-content .faq-answer p {
  margin: 0 0 14px;
  padding: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.faq-directory-content .faq-answer h3,
.faq-directory-content .faq-answer h4 {
  margin: 22px 0 6px;
  color: #0b376c;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}

.faq-directory-content .faq-answer ul,
.faq-directory-content .faq-answer ol {
  margin: 10px 0 16px;
  padding-left: 1.5em;
}

.faq-directory-content .faq-answer li + li {
  margin-top: 5px;
}

.faq-directory-content .faq-answer hr {
  margin: 24px 0;
  border: 0;
  border-top: 1px solid #d7e1ec;
}

.faq-directory-content .faq-answer table {
  width: auto;
  max-width: 100%;
  margin: 14px 0 20px;
  border-collapse: collapse;
  background: #fff;
}

.faq-directory-content .faq-answer caption {
  padding-bottom: 6px;
  color: #0b376c;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}

.faq-directory-content .faq-answer th,
.faq-directory-content .faq-answer td {
  padding: 9px 12px;
  border: 1px solid #c8dcef;
  vertical-align: top;
}

.faq-directory-content .faq-answer th {
  color: #0b376c;
  background: #eaf3fd;
  font-weight: 700;
}

.faq-directory-content .faq-answer dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 6px 14px;
  margin: 12px 0 18px;
}

.faq-directory-content .faq-answer dt {
  color: #0b376c;
  font-weight: 700;
}

.faq-directory-content .faq-answer dd {
  margin: 0;
}

@media (max-width: 768px) {
  .faq-anchor-nav {
    justify-content: flex-start;
    gap: 8px;
    padding-top: 24px;
  }
  .faq-anchor-nav a {
    min-width: 0;
    flex: 1 1 calc(50% - 8px);
    padding: 10px 12px;
    font-size: 16px;
  }
  .faq-directory-content .faq-category-body {
    padding: 12px;
  }
  .faq-directory-content .faq-category > summary {
    padding: 18px 50px 18px 20px;
    font-size: 20px;
  }
  .faq-directory-content .faq-question > summary {
    padding: 16px 46px 16px 16px;
    font-size: 17px;
  }
  .faq-directory-content .faq-answer {
    padding: 16px;
    font-size: 16px;
  }
  .faq-directory-content .faq-answer table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .faq-directory-content .faq-answer dl {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .faq-directory-content .faq-answer dd {
    margin: 0 0 10px;
  }
}
.faq-nested {
  border: 1px solid #d4e3f4;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.faq-nested details {
  margin: 0;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.faq-nested summary {
  list-style: none;
}

.faq-nested summary::-webkit-details-marker {
  display: none;
}

.faq-nested .faq-category > summary {
  position: relative;
  padding: 20px 56px 20px 22px;
  background: #cfe2fa;
  color: #0b376c;
  font-size: 22px;
  font-weight: 500;
}

.faq-nested .faq-category > summary::after,
.faq-nested .faq-question > summary::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.25s ease;
}

.faq-nested .faq-category[open] > summary::after,
.faq-nested .faq-question[open] > summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.faq-nested .faq-category-body {
  padding: 16px 20px;
  background: #fff;
  border-bottom: 1px solid #d7e1ec;
}

.faq-nested .faq-question {
  border: 1px solid #d7e1ec;
  border-bottom: 0;
}

.faq-nested .faq-question:last-child {
  border-bottom: 1px solid #d7e1ec;
}

.faq-nested .faq-question > summary {
  position: relative;
  padding: 18px 54px 18px 20px;
  color: #123c72;
  background: #fff;
  font-size: 19px;
  font-weight: 500;
}

.faq-nested .faq-question[open] > summary {
  background: #d6e8ff;
}

.faq-nested .faq-question p {
  padding: 18px 20px 22px;
  color: #1d1d1d;
  font-size: 17px;
  line-height: 1.85;
}

@media (max-width: 640px) {
  .faq-nested .faq-category > summary {
    font-size: 20px;
  }
  .faq-nested .faq-question > summary {
    font-size: 18px;
  }
}
.card-page .form-container {
  width: calc(100% - 90px);
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 20px;
  overflow: hidden;
  max-width: 1200px;
  font-size: clamp(18px, 1.4583333333vw, 28px);
  margin: auto;
}
@media (max-width: 460px) {
  .card-page .form-container {
    width: calc(100% - 60px);
  }
}
.card-page .form-container {
  padding: 50px clamp(30px, 2.6041666667vw, 50px);
  max-width: 720px;
  text-align: center;
}
.card-page #id_captcha div {
  margin: auto;
}
.card-page .page-title {
  text-align: center;
  font-size: clamp(28px, 1.875vw, 36px);
  color: #0082cb;
  margin-bottom: 30px;
  font-weight: 500;
  padding-bottom: 20px;
  border-bottom: 2px solid #250188;
  position: relative;
}
.card-page .page-title::before {
  content: "";
  width: 50%;
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  background-color: #0082cb;
}
.card-page .page-title span {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}
.card-page select,
.card-page input,
.card-page textarea {
  min-height: 50px;
  width: 100%;
}
.card-page .form-pass {
  position: relative;
}
.card-page .text-btn {
  font-size: 18px;
  text-align: center;
  display: inline-block;
  margin: auto;
  letter-spacing: 0.1em;
  color: #0082cb;
  padding-bottom: 5px;
  border-bottom: 1px solid transparent;
  cursor: pointer;
}
.card-page .text-btn:hover {
  color: #250188;
  border-bottom: 1px solid #250188;
  transition: 0.6s;
}
.card-page .eye-btn {
  background-image: url(../images/icon/eye-no.svg);
  width: 40px;
  aspect-ratio: 1;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 5px;
  bottom: 5px;
}
.card-page .eye-btn.is-visible {
  background-image: url(../images/icon/eye.svg);
}
.card-page .input-item {
  margin-bottom: 25px;
}
.card-page .input-item label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 18px;
}
.card-page .input-item input {
  padding: 10px;
  width: 100%;
  font-size: 18px;
}
.card-page .input-item.gray-font {
  color: #666;
}
.card-page .input-item .resend {
  color: #0082cb;
  cursor: pointer;
  font-weight: 600;
  border-bottom: 1px solid #0082cb;
  padding-bottom: 1px;
  transition: 0.6s;
}
.card-page .input-item .resend:hover {
  color: #250188;
  transition: 0.6s;
  border-bottom: 1px solid #250188;
}
.card-page .modal-box-content {
  font-size: 16px;
  text-align: center;
}
.card-page .modal-box-content .info-title {
  text-align: center;
  color: #250188;
  font-size: 20px;
  font-weight: 500;
}
.card-page .modal-box-content .ui-button {
  margin-top: 20px;
}
.card-page .modal-box-content .input-item {
  margin: 25px 0 10px;
}/*# sourceMappingURL=main.css.map */