  @charset "UTF-8";
/*  ===== 斷點變數 ===== */
/*  ===== 往上適應 ===== */
/*  ===== 往下適應 ===== */
/*  ===== 範圍內適應 ===== */
/*  ===== 基本漸層背景設定 ===== */
/*  ===== 以 em 計算font-size, letter-spacing(RWD時方便使用) ===== */
/*  ===== 文字置中時的 letter spacing 偏移修正 ===== */
/*  ===== letter spacing 偏移重設 ===== */
/*  ===== firefox font weight bold 統一設定為 normal (firefox在小字為粗體的時候會過粗) ===== */
/*  ===== a連結清除預設值 ===== */
/*  ===== 字體設定（全域/英文/中文) ===== */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
/*  ===== 排版相關 ===== */
/*  ===== 超過文字省略為...(可設定行數) ===== */
/*  ===== 捲軸樣式設定 ===== */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
/**
 * * Allows you to use retina images at various pixel densities.
 * * Examples:
 * *
 * *   +retina(/images/mypic.jpg, 2);
 * *   +retina(/images/mypic.jpg, 3, 100px 100px, left top no-repeat transparent);
 * *
 * * @param  {Value}  $path               The path to the file name minus extension.
 * * @param  {Number} $cap:    2          The highest pixel density level images exist for.
 * * @param  {Value}  $size:   auto auto  The intended width of the rendered image.
 * * @param  {Value}  $extras: null       Any other `background` values to be added.
 * */
.loader-wrap {
  background-color: #fff;
  transition: 0.8s 0.5s ease, opacity 0.5s 0.3s ease;
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100000;
}

.loading-bar {
  transition: 0.8s ease;
  height: 2px;
  position: fixed;
  top: 60vh;
  left: 0;
  right: 0;
}

.loading-progress {
  min-width: 0%;
  height: 100%;
  transition: min-width 0.8s ease, opacity 0.5s 1s ease;
  background-color: rgba(139, 54, 43, 0.7);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  bottom: 0;
}

.loading-progress-number {
  font-family: "Montserrat", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  font-size: 60px;
  color: rgba(139, 54, 43, 0.7);
  transition: 0.8s ease;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
}

.loaded .loader-wrap {
  opacity: 0;
  z-index: -100;
}

.header-wrap {
  position: fixed;
  top: 0;
  z-index: 500;
  transition: all 1s ease;
  width: 100%;
}

.header {
  width: 100%;
  height: 76px;
  background: transparent;
}
.header .header-z-index {
  position: relative;
  z-index: 300;
}
.header .container, .header .row, .header .col {
  height: 100%;
}
.header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo-imgbox {
  display: flex;
  align-items: center;
}
.header .logo-imgbox .header-logo-01 {
  width: 217px;
}
@media (max-width: 575px) {
  .header .logo-imgbox .header-logo-01 {
    width: 108px;
  }
}
.header .logo-imgbox .header-logo-01 .img-cover {
  padding-top: 23.8%;
}
.header .logo-imgbox .header-logo-02 {
  width: 131px;
}
@media (max-width: 575px) {
  .header .logo-imgbox .header-logo-02 {
    width: 65px;
  }
}
.header .logo-imgbox .header-logo-02 .img-cover {
  padding-top: 30.5%;
}
.header .logo-imgbox .vertical-line {
  width: 1px;
  height: 44px;
  background: #FFFFFF;
  margin: 0 24px;
}
@media (max-width: 575px) {
  .header .logo-imgbox .vertical-line {
    height: 26px;
    margin: 0 16px;
  }
}

.header.transparent-animate {
  background: #8B362B;
  transition: 0.5s ease;
}

.header.transparent {
  background: transparent;
}

.pc-header-nav {
  height: 100%;
}
@media (max-width: 1439px) {
  .pc-header-nav {
    display: none;
  }
}
.pc-header-nav .nav-ul {
  display: flex;
  margin-bottom: 0;
  height: 100%;
  grid-gap: 28px;
}
.pc-header-nav .nav-li {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.pc-header-nav .nav-li::before {
  content: "";
  width: 100%;
  height: 4px;
  background: #FAF4F4;
  position: absolute;
  bottom: 0;
  opacity: 0;
  transition: 0.3s ease;
}
.pc-header-nav .nav-li:hover::before {
  opacity: 1;
}
.pc-header-nav .nav-link {
  font-weight: 700;
  font-size: 18px;
  line-height: 214.51%;
  text-align: right;
  letter-spacing: 0.005em;
  color: #FAF4F4;
  white-space: nowrap;
}
.pc-header-nav .nav-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}
.pc-header-nav .nav-li.program:hover .cover {
  display: block;
}
.pc-header-nav .cover {
  display: none;
  position: absolute;
  top: 76px;
  left: 0;
  z-index: 10;
  padding-top: 8px;
}
.pc-header-nav .program-open-group {
  background: #FAF4F4;
  border-radius: 10px;
  padding: 16px 17px 16px 0;
}
.pc-header-nav .program-open-group .program-ul {
  padding: 0;
}
.pc-header-nav .program-open-group .program-li {
  position: relative;
  padding: 5px 20px;
  z-index: 0;
}
.pc-header-nav .program-open-group .program-li::before {
  content: "";
  background: #8B362B;
  border-radius: 41px;
  width: calc(100% + 17px);
  height: 50px;
  position: absolute;
  z-index: -1;
  top: -2px;
  left: 0;
  opacity: 0;
  transition: 0.3s ease;
}
.pc-header-nav .program-open-group .program-li:hover::before {
  opacity: 1;
}
.pc-header-nav .program-open-group .program-link {
  white-space: nowrap;
  font-weight: 700;
  font-size: 18px;
  line-height: 214.51%;
  letter-spacing: 0.005em;
  color: #252525;
  transition: 0.3s ease;
}
.pc-header-nav .program-open-group .program-li:hover .program-link {
  color: #FAF4F4;
}
.pc-header-nav .program-open-group .program-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.mobile-nav-btn {
  display: none;
}
@media (max-width: 1439px) {
  .mobile-nav-btn {
    display: block;
  }
}
.mobile-nav-btn .bar {
  width: 30px;
  height: 3px;
  background: #F1F1F1;
  margin: 5px 0;
}

.mobile-header-nav-cover {
  display: none;
  width: 60%;
  min-width: 250px;
  background: #8B362B;
  position: fixed;
  height: 100vh;
  overflow: auto;
  top: 0;
  right: 0;
  padding: 76px 30px 0 30px;
}
@media (min-width: 576px) {
  .mobile-header-nav-cover {
    width: 40%;
  }
}
@media (min-width: 1550px) {
  .mobile-header-nav-cover {
    display: none;
  }
}
.mobile-header-nav-cover .mobile-header-nav {
  padding-top: 20px;
}
.mobile-header-nav-cover .mobile-header-nav .nav-ul {
  padding: 0;
}
.mobile-header-nav-cover .mobile-header-nav .nav-li {
  margin: 10px 0;
}
.mobile-header-nav-cover .mobile-header-nav .nav-a {
  font-weight: 700;
  font-size: 18px;
  line-height: 214.51%;
  text-align: right;
  letter-spacing: 0.005em;
  color: #FAF4F4;
  white-space: nowrap;
}
.mobile-header-nav-cover .mobile-header-nav .program-ul {
  padding-left: 20px;
  padding-bottom: 10px;
}
.mobile-header-nav-cover .mobile-header-nav .program-a {
  font-weight: 700;
  font-size: 16px;
  line-height: 214.51%;
  text-align: right;
  letter-spacing: 0.005em;
  color: #FAF4F4;
  white-space: nowrap;
}

.mobile-header-nav-cover.mobile {
  display: block;
}

.header-wrap {
  transition: 0.3s ease;
}

.header-wrap.-fixed {
  position: fixed;
  z-index: 100;
  width: 100%;
  top: 0;
}

body, html {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  color: #252525;
  font-family: "Roboto", "Montserrat", "Noto Sans TC", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  image-rendering: auto;
  touch-action: manipulation;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1rem;
}
body.loading-out {
  opacity: 0;
}

.u-border {
  border: 0.5px solid orange;
}

.u-border * {
  border: 0.5px solid orange;
}

h1 {
  font-size: 4.8125rem;
  letter-spacing: -0.0001298701emrem;
  line-height: 1.4025974026;
  font-weight: 700;
}
@media (max-width: 991px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-size: 1.75rem;
  letter-spacing: 0.0001785714emrem;
  line-height: 1.1071428571;
}
@media (max-width: 575px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 1.125rem;
  letter-spacing: 0.0002777778emrem;
  line-height: 1.5555555556;
}
@media (max-width: 575px) {
  h3 {
    font-size: 1rem;
  }
}

h4 {
  font-size: 0.75rem;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

span {
  font-size: 100%;
}

p, a, li, span {
  font-size: inherit;
}

b, strong {
  font-weight: bold;
}

.top-btn {
  width: 36px;
  height: 36px;
  background: #8B362B;
  border-radius: 50%;
  position: fixed;
  bottom: 28px;
  right: 4%;
  z-index: 200;
}
@media (max-width: 1699px) {
  .top-btn {
    right: 2%;
  }
}
.top-btn .icon-top-button-arrow {
  font-size: 14px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #8B362B;
  position: relative;
  transition: 0.3s ease;
}
@media (max-width: 575px) {
  .arrow-circle {
    width: 36px;
    height: 36px;
  }
}

.arrow-circle::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #8B362B;
  opacity: 0;
  transition: 0.3s ease;
}

.icon-button-arrow-right, .icon-button-arrow-left {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
}

.icon-button-arrow-right:before, .icon-button-arrow-left:before {
  font-size: 17px;
  display: block;
  transition: 0.3s ease;
}
@media (max-width: 575px) {
  .icon-button-arrow-right:before, .icon-button-arrow-left:before {
    font-size: 14px;
  }
}

.icon-button-cross {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.swiper-button-prev, .swiper-button-next {
  width: auto;
}

.swiper-button-prev {
  left: calc(-36px - 3vw);
}

.swiper-button-next {
  right: calc(-36px - 3vw);
}

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

.arrow-circle.swiper-btn {
  width: 36px;
  height: 36px;
  position: relative;
}
@media (max-width: 575px) {
  .arrow-circle.swiper-btn {
    width: 30px;
    height: 30px;
  }
}

.icon-swiper-arrow-right, .icon-swiper-arrow-left {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
  font-size: 14px;
}

.icon-swiper-arrow-right:before, .icon-swiper-arrow-left:before {
  transition: 0.3s ease;
}

.swiper-button-next:hover .arrow-circle::before, .swiper-button-prev:hover .arrow-circle::before {
  width: 36px;
  height: 36px;
  opacity: 1;
}
@media (max-width: 575px) {
  .swiper-button-next:hover .arrow-circle::before, .swiper-button-prev:hover .arrow-circle::before {
    width: 30px;
    height: 30px;
  }
}

.swiper-button-next:hover .icon-swiper-arrow-right:before, .swiper-button-prev:hover .icon-swiper-arrow-left:before {
  color: #F1F1F1;
}

.index-swiper-button-next, .index-swiper-button-prev {
  top: calc(50% - 55px);
}
@media (max-width: 575px) {
  .index-swiper-button-next, .index-swiper-button-prev {
    top: calc(50% - 45px);
  }
}

.learn-more-btn {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
}
.learn-more-btn .text {
  font-weight: 400;
  color: #252525;
  margin-right: 12px;
  transition: 0.3s ease;
}

.learn-more-btn:hover .text {
  color: #8B362B;
}
.learn-more-btn:hover .arrow-circle::before {
  width: 46px;
  height: 46px;
  opacity: 1;
}
@media (max-width: 575px) {
  .learn-more-btn:hover .arrow-circle::before {
    width: 36px;
    height: 36px;
  }
}
.learn-more-btn:hover .icon-button-arrow-right:before {
  color: #F1F1F1;
}

.apply-now-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.apply-now-btn .apply-now-text {
  font-weight: 700;
  color: #8B362B;
  transition: 0.3s ease;
  max-width: calc(100% - 46px);
}

.apply-now-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #FAF4F4;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -20;
}

.apply-now-btn::after {
  content: "";
  width: 0;
  height: 0;
  background: #8B362B;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -10;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  opacity: 0;
  transition: 0.3s ease;
}

.apply-now-btn:hover::after {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.apply-now-btn:hover .apply-now-text {
  color: #F1F1F1;
}
.apply-now-btn:hover .arrow-circle {
  border: 1px solid #F1F1F1;
}
.apply-now-btn:hover .icon-button-arrow-right:before {
  color: #F1F1F1;
}

.datepicker-btn {
  position: relative;
  cursor: pointer;
}

.datepicker-btn .arrow-circle {
  width: 44px;
  height: 44px;
  background: transparent;
}
@media (max-width: 575px) {
  .datepicker-btn .arrow-circle {
    width: 36px;
    height: 36px;
  }
}

.datepicker-btn:hover .arrow-circle::before {
  width: 44px;
  height: 44px;
  opacity: 1;
}
@media (max-width: 575px) {
  .datepicker-btn:hover .arrow-circle::before {
    width: 36px;
    height: 36px;
  }
}

.datepicker-btn-img, .datepicker-btn-img-hover {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s ease;
}
@media (max-width: 575px) {
  .datepicker-btn-img, .datepicker-btn-img-hover {
    width: 36px;
    height: 36px;
  }
}

.datepicker-btn-img-hover {
  opacity: 0;
}

.datepicker-btn:hover .datepicker-btn-img {
  opacity: 0;
}

.datepicker-btn:hover .datepicker-btn-img-hover {
  opacity: 1;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}
a:active, a:hover, a:visited, a:focus {
  text-decoration: none;
  outline: 0;
}

@media (min-width: 576px) {
  .custom-container {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .custom-container {
    max-width: 1110px;
  }
}
@media (min-width: 1440px) {
  .custom-container {
    max-width: 1342px;
  }
}
@media (min-width: 1550px) {
  .custom-container {
    max-width: 1442px;
  }
}
@media (min-width: 1700px) {
  .custom-container {
    max-width: 1542px;
  }
}

.img-cover {
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
}
.img-cover img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-cover {
  position: relative;
}

.section-title {
  color: #252525;
}
.section-title span {
  color: #8B362B;
}

.bg-circle-border {
  border: 1px solid #8B362B;
  border-radius: 50%;
  transition: 1.5s ease;
}

.bg-circle-fill {
  background: #FAF4F4;
  border-radius: 50%;
  transition: 1.5s ease;
}

.small-title-left {
  width: -moz-fit-content;
  width: fit-content;
  position: fixed;
  left: 4%;
  bottom: 28px;
  z-index: 50;
}
.small-title-left .text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin: auto;
  color: #8B362B;
  transition: 0.3s ease;
}
@media (max-width: 1699px) {
  .small-title-left {
    left: 2%;
  }
}
@media (max-width: 1199px) {
  .small-title-left {
    display: none;
  }
}

.small-title-left.white .text {
  color: #FFFFFF;
}

.three-dot-group {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.dot-large, .dot-middle, .dot-small {
  background: #8B362B;
  border-radius: 50%;
  margin: auto;
  transition: 0.3s ease;
}

.dot-large {
  width: 12px;
  height: 12px;
  margin-top: 11px;
}

.dot-middle {
  width: 8px;
  height: 8px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.dot-small {
  width: 6px;
  height: 6px;
}

.small-title-left.white .dot-large, .small-title-left.white .dot-middle, .small-title-left.white .dot-small {
  background: #FFFFFF;
}

.page-top-banner {
  position: relative;
  background-position: center center;
  background-size: cover;
  padding: calc(16% + 76px) 0 6% 0;
}
.page-top-banner .img-cover {
  padding-top: 30.2%;
  position: absolute;
  z-index: -100;
}
.page-top-banner .page-title-group {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .page-top-banner .page-title-group {
    margin-bottom: 10px;
  }
}
.page-top-banner .page-title {
  font-weight: 700;
  color: #FFFFFF;
  display: inline;
  position: relative;
}
.page-top-banner .page-title-circle {
  width: 220px;
  height: 220px;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: -79px;
  transform: translate(0, -50%);
  transition: 0.3s ease;
}
@media (max-width: 1439px) {
  .page-top-banner .page-title-circle {
    width: 160px;
    height: 160px;
  }
}
@media (max-width: 991px) {
  .page-top-banner .page-title-circle {
    width: 120px;
    height: 120px;
    right: -40px;
  }
}
@media (max-width: 575px) {
  .page-top-banner .page-title-circle {
    width: 80px;
    height: 80px;
  }
}
.page-top-banner .page-subtitle {
  color: #FFFFFF;
}
.page-top-banner .page-subtitle ul {
  display: flex;
  padding: 0;
  flex-wrap: wrap;
}
.page-top-banner .page-subtitle li:not(:last-of-type)::after {
  content: "/";
  padding: 0 10px 0 8px;
}
.page-top-banner .page-subtitle .breadcrumb-link {
  color: #FFFFFF;
}

.index__banner {
  position: relative;
}
.index__banner .banner-pic .img-cover {
  height: 100vh;
}
.index__title {
  position: absolute;
  top: calc(76px + 23.1%);
  left: 50%;
  transform: translate(-50%);
  transition: 1.5s ease;
}
@media (max-width: 991px) {
  .index__title {
    width: 80%;
  }
}
.index__title img {
  width: 100%;
}
.index__scroll-down-group {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  color: #FAF4F4;
}
.index__scroll-down-group .scroll-down-text {
  font-weight: 700;
}
.index__scroll-down-group .dot-large, .index__scroll-down-group .dot-middle, .index__scroll-down-group .dot-small {
  background: #FAF4F4;
}
.index .section-title-group {
  margin-top: 127px;
  margin-bottom: 110px;
  position: relative;
}
@media (max-width: 1199px) {
  .index .section-title-group {
    margin-top: 79px;
    margin-bottom: 34px;
    margin-left: calc(36px + 3vw);
  }
}
.index .section-title-group .bg-circle-border {
  width: 238px;
  height: 238px;
  position: absolute;
  top: 50%;
  left: -46px;
  transform: translate(0, -50%);
  z-index: -10;
}
@media (max-width: 991px) {
  .index .section-title-group .bg-circle-border {
    width: 148px;
    height: 148px;
  }
}
@media (max-width: 1699px) {
  .index .swiper-cover {
    margin: 0 calc(36px + 3vw);
  }
}
.index .index-swiper {
  padding: 19px;
  width: calc(100% + 38px);
  margin-left: -19px;
}
.index .index-swiper .index-card {
  position: relative;
}
.index .index-swiper .index-card .img-cover {
  padding-top: 59.2%;
  border-radius: 20px;
  transition: 0.3s ease;
}
.index .index-swiper .index-card .index-card-title {
  font-weight: 700;
  margin: 20px 0 15px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-align: left;
}
.index .index-swiper .index-card .index-card-title a {
  color: #252525;
}
.index .index-swiper .index-card .index-card-title a::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
}
.index .index-swiper .index-card:hover .img-cover {
  transform: scale(1.07);
}
.index .video-group {
  margin-top: 84px;
  position: relative;
}
@media (max-width: 767px) {
  .index .video-group {
    margin-top: 40px;
  }
}
.index .video-group .video-cover {
  filter: drop-shadow(13.2527px 13.2527px 66.2637px rgba(0, 0, 0, 0.25));
}
.index .video-group .index-video-full-background {
  width: 100vw;
  height: 50%;
  background: #8B362B;
  position: absolute;
  bottom: 0;
  z-index: -100;
}
.index .index-full-background {
  width: 100%;
  height: 340px;
  background: #8B362B;
}
@media (max-width: 575px) {
  .index .index-full-background {
    height: calc(22vw + 82px);
    height: calc(23.6vw + 50px);
  }
}

.course-list .body__container {
  margin-bottom: 212px;
}
@media (max-width: 575px) {
  .course-list .body__container {
    margin-bottom: calc(23.6vw + 50px);
  }
}
.course-list .page-top-banner {
  background-image: url(/short-term-programs/assets/front/images/course-list-top-pic.png);
}
.course-list__date-picker-bg {
  background: #FAF4F4;
  padding: 50px 0 27px 0;
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .course-list__date-picker-bg {
    padding: 20px 0 17px 0;
  }
}
.course-list__date-picker-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  grid-gap: 42px;
}
@media (max-width: 767px) {
  .course-list__date-picker-group {
    flex-direction: column;
    grid-gap: 30px;
  }
}
.course-list__date-picker-group .from-text {
  font-weight: 700;
  margin-right: 4px;
}
.course-list__date-picker-group .choose-date-group {
  display: flex;
  align-items: center;
  grid-gap: 20px;
}
@media (max-width: 575px) {
  .course-list__date-picker-group .choose-date-group {
    grid-gap: 10px;
  }
}
.course-list__date-picker-group .datepicker-block {
  position: relative;
}
.course-list__date-picker-group .choose-date {
  position: absolute;
  top: -20px;
  left: 0px;
  color: #8B362B;
}
.course-list__date-picker-group .datepicker-here {
  border: 1px solid #8B362B;
  border-radius: 10px;
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
  letter-spacing: 0.005em;
  color: #8B362B;
  padding: 10px 0 10px 12px;
  width: 153px;
  background: #FAF4F4;
}
@media (max-width: 575px) {
  .course-list__date-picker-group .datepicker-here {
    font-size: 16px;
    padding: 6px 0 6px 8px;
    width: 130px;
  }
}
.course-list__date-picker-group .icon-date-picker {
  font-size: 24px;
  position: absolute;
  top: 50%;
  right: 11px;
  transform: translate(0, -50%);
  pointer-events: none;
}
@media (max-width: 575px) {
  .course-list__date-picker-group .icon-date-picker {
    right: 8px;
  }
}
@media (max-width: 1699px) {
  .course-list__xxxl-margin {
    margin: 0 50px;
  }
}
@media (max-width: 575px) {
  .course-list__xxxl-margin {
    margin: 0;
  }
}
.course-list__section-title-group {
  position: relative;
  margin: 96px 0 63px 0;
  width: -moz-fit-content;
  width: fit-content;
}
.course-list__section-title-group .bg-circle-border.left-circle {
  width: 239px;
  height: 239px;
  position: absolute;
  top: 35%;
  left: 0;
  z-index: -10;
  transform: translate(0, -50%);
}
@media (max-width: 991px) {
  .course-list__section-title-group .bg-circle-border.left-circle {
    width: 148.18px;
    height: 148.18px;
  }
}
.course-list__section-title-group .bg-circle-fill.right-circle {
  width: 143px;
  height: 143px;
  position: absolute;
  top: 35%;
  right: -85px;
  z-index: -10;
  transform: translate(0, -50%);
}
@media (max-width: 991px) {
  .course-list__section-title-group .bg-circle-fill.right-circle {
    width: 88.66px;
    height: 88.66px;
    right: -52.7px;
  }
}
.course-list__section-title-group .bg-circle-fill.middle-circle {
  width: 190px;
  height: 190px;
  position: absolute;
  top: 35%;
  left: 37%;
  z-index: -10;
  transform: translate(0, -50%);
}
@media (max-width: 991px) {
  .course-list__section-title-group .bg-circle-fill.middle-circle {
    width: 117.8px;
    height: 117.8px;
  }
}
.course-list__section-title-group .bg-circle-border.right-circle {
  width: 130px;
  height: 130px;
  position: absolute;
  top: 40%;
  right: -62px;
  z-index: -10;
  transform: translate(0, -50%);
}
@media (max-width: 991px) {
  .course-list__section-title-group .bg-circle-border.right-circle {
    width: 80.6px;
    height: 80.6px;
    right: -38.44px;
  }
}
.course-list__card-group {
  gap: 40px 0;
  padding-left: 5px;
  padding-right: 5px;
}
@media (max-width: 1199px) {
  .course-list__card-group {
    max-width: 83.333333%;
    margin: auto;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .course-list__card-group {
    max-width: 100%;
  }
}
.course-list__card {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 1199px) {
  .course-list__card {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}
.course-list__card .img-cover {
  padding-top: 100%;
  border-radius: 20px;
}
.course-list__card .img-cover::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #252525;
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0;
  transition: 0.3s ease;
}
.course-list__card .img-cover:hover::before {
  opacity: 60%;
}
.course-list__card .hover-text-group {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 20;
  transform: translate(-50%, -50%);
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0;
  transition: 0.3s ease;
}
.course-list__card .img-cover:hover .hover-text-group {
  opacity: 1;
}
.course-list__card .hover-text-group-second {
  position: relative;
}
.course-list__card .hover-text-group-second .arrow-circle {
  position: absolute;
  right: 0;
  bottom: -4px;
  width: 46px;
  height: 46px;
  border: 1px solid #F1F1F1;
}
.course-list__card .hover-text-group-second .icon-button-arrow-right:before {
  color: #F1F1F1;
}
.course-list__card .hover-text {
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  text-align: justify;
  letter-spacing: 0.005em;
  color: #FAF4F4;
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 1199px) {
  .course-list__card .hover-text {
    font-size: 36px;
    line-height: 120%;
  }
}
.course-list__card .season-tag-group {
  display: flex;
  flex-wrap: wrap;
  margin: 11px 0;
  min-height: 38.4px;
  grid-gap: 3px 7px;
}
.course-list__card .season-tag {
  padding: 8px 21px;
  border-radius: 27px;
  color: #8B362B;
  border: 1px solid #8B362B;
  margin: 3px 0;
  cursor: pointer;
}
.course-list__card .season-tag.active {
  color: #FFFFFF;
  background: #8B362B;
}
.course-list__card .card-title {
  font-weight: 700;
  line-height: 215%;
  margin-bottom: 0;
}
.course-list__card .time-tag-group {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 37px;
}
@media (max-width: 1199px) {
  .course-list__card .time-tag-group {
    margin-bottom: 18px;
  }
}
.course-list__card .time-tag {
  color: #8B362B;
  padding: 8px 16px;
  border: 1px solid #8B362B;
  border-radius: 10px;
  margin: 3px 16px 3px 0;
}
.course-list__card .for-flex {
  flex: 1;
}
.course-list__card.closed .img-cover::before {
  opacity: 0.4;
}
.course-list__card.closed .apply-now-btn {
  border: 1px solid #8B362B;
  background: #FFFFFF;
}
.course-list__card.closed .apply-now-btn:hover .apply-now-text {
  color: #8B362B;
}
.course-list__card.closed .apply-now-btn:hover .arrow-circle {
  border: 1px solid #8B362B;
}
.course-list__card.closed .apply-now-btn:hover .icon-button-arrow-right:before {
  color: #8B362B;
}

.course-content .nsdi-article-system-group {
  margin-top: -7px;
}
.course-content .nsdi-article-system-group .container.nsdi-article-system {
  max-width: 100%;
}
.course-content .nsdi-article-system-group h2 {
  font-weight: 700;
  font-size: 77px;
  line-height: 151.86%;
  color: #252525;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .course-content .nsdi-article-system-group h2 {
    font-size: 48px;
  }
}
.course-content .nsdi-article-system-group h3 {
  font-weight: 700;
  font-size: 28px;
  line-height: 151.86%;
  letter-spacing: 0.005em;
  color: #8B362B;
  margin-bottom: 4px;
}
@media (max-width: 991px) {
  .course-content .nsdi-article-system-group h3 {
    font-size: 24px;
  }
}
.course-content .nsdi-article-system-group h3 span {
  color: #252525;
}
.course-content .nsdi-article-system-group h4 {
  font-weight: 700;
  font-size: 18px;
  line-height: 214.51%;
  letter-spacing: 0.005em;
  color: #8B362B;
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  .course-content .nsdi-article-system-group h4 {
    font-size: 16px;
  }
}
.course-content .nsdi-article-system-group h5 {
  font-weight: 700;
  font-size: 18px;
  line-height: 214.51%;
  letter-spacing: 0.005em;
  color: #252525;
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  .course-content .nsdi-article-system-group h5 {
    font-size: 16px;
  }
}
.course-content .nsdi-article-system-group p {
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
  letter-spacing: 0.005em;
  color: #252525;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .course-content .nsdi-article-system-group p {
    font-size: 16px;
  }
}
.course-content .nsdi-article-system-group ul {
  list-style-type: disc;
  padding-left: 30px;
}
.course-content .nsdi-article-system-group ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
  letter-spacing: 0.005em;
  color: #252525;
}
@media (max-width: 991px) {
  .course-content .nsdi-article-system-group ul li {
    font-size: 16px;
  }
}
.course-content .nsdi-article-system-group ol {
  padding-left: 20px;
}
.course-content .nsdi-article-system-group ol li {
  font-weight: 700;
  font-size: 18px;
  line-height: 215%;
  letter-spacing: 0.005em;
}
@media (max-width: 991px) {
  .course-content .nsdi-article-system-group ol li {
    font-size: 16px;
  }
}
.course-content .nsdi-article-system-group .section-about h4, .course-content .nsdi-article-system-group .section-about p {
  text-align: center;
}
.course-content .nsdi-article-system-group .red-underline {
  color: #8B362B;
  font-weight: 700;
  text-decoration: underline;
}
.course-content .nsdi-article-system-group .font-weight-regular {
  font-weight: 400;
  margin-left: -20px;
  display: block;
}
.course-content .nsdi-article-system-group .font-red {
  color: #8B362B;
}
.course-content .nas-article-wrapper {
  justify-content: start;
}
.course-content .nas-article {
  padding: 10px 0;
  width: 100%;
}
.course-content .nas-image-wrapper {
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .course-content .nas-image-wrapper {
    margin-bottom: 15px;
  }
}
.course-content .nas-image-wrapper img {
  width: 100%;
  border-radius: 18px;
}
.course-content .back-btn-cover {
  position: relative;
}
.course-content .back-btn {
  position: absolute;
  z-index: 10;
  padding-left: 9.9vw;
  top: 62px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
}
@media (max-width: 1699px) {
  .course-content .back-btn {
    padding-left: 3vw;
  }
}
@media (max-width: 575px) {
  .course-content .back-btn {
    top: 32px;
  }
}
.course-content .back-btn .text {
  font-weight: 400;
  color: #252525;
  margin-left: 12px;
  transition: 0.3s ease;
}
.course-content .back-btn:hover .icon-button-arrow-left:before {
  color: #F1F1F1;
}
.course-content .back-btn:hover .arrow-circle::before {
  width: 46px;
  height: 46px;
  opacity: 1;
}
@media (max-width: 575px) {
  .course-content .back-btn:hover .arrow-circle::before {
    width: 36px;
    height: 36px;
  }
}
.course-content .aside-group {
  position: sticky;
  top: 0;
  padding-left: 9.9vw;
  z-index: 100;
}
@media (max-width: 1699px) {
  .course-content .aside-group {
    padding-left: 3vw;
  }
}
@media (max-width: 767px) {
  .course-content .aside-group {
    position: fixed;
    top: auto;
    bottom: 160px;
    white-space: nowrap;
    padding-left: auto;
    left: 50%;
  }
}
.course-content .aside-group .sticky {
  position: absolute;
  top: 132px;
}
@media (max-width: 767px) {
  .course-content .aside-group .sticky {
    transform: translate(-50%);
  }
}
.course-content .aside-group .apply-now-full-btn {
  border: 1px solid #8B362B;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 27px;
  border-radius: 26px;
  background: #8B362B;
  overflow: hidden;
  position: relative;
}
.course-content .aside-group .apply-now-full-btn .text {
  font-weight: 700;
  color: #FFFFFF;
}
.course-content .aside-group .aside-list-group {
  margin-top: 16px;
  padding-left: 26px;
}
@media (max-width: 767px) {
  .course-content .aside-group .aside-list-group {
    display: none;
  }
}
.course-content .aside-group .aside-list-group .aside-list-btn {
  font-weight: 700;
  color: #252525;
  line-height: 214.51%;
  position: relative;
  transition: 0.3s ease;
}
.course-content .aside-group .aside-list-group .aside-list-btn::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background: #8B362B;
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translate(0, -50%);
  border-radius: 50%;
  transition: 0.3s ease;
}
.course-content .aside-group .aside-list-group .aside-list-btn-cover:hover .aside-list-btn, .course-content .aside-group .aside-list-group .aside-list-btn-cover.active .aside-list-btn {
  color: #8B362B;
}
.course-content .aside-group .aside-list-group .aside-list-btn-cover:hover .aside-list-btn::before, .course-content .aside-group .aside-list-group .aside-list-btn-cover.active .aside-list-btn::before {
  width: 35px;
  height: 35px;
  border: 1px solid #8B362B;
  background: transparent;
  left: -26px;
}
.course-content .target-cover {
  position: relative;
}
.course-content .target {
  position: absolute;
  top: -100px;
  left: 0;
}
.course-content__section-title {
  font-weight: 700;
  font-size: 77px;
  line-height: 140.29%;
  letter-spacing: -0.01em;
  color: #252525;
  text-align: center;
}
.course-content .section-title-group {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .course-content .section-title-group {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .course-content .section-title-group {
    margin-top: 0;
  }
}
.course-content .body__container {
  margin-bottom: 205px;
  position: relative;
}
@media (max-width: 575px) {
  .course-content .body__container {
    margin-bottom: calc(23.6vw + 10px);
  }
}
.course-content .page-top-banner {
  background-image: url(/short-term-programs/assets/front/images/course-content-top-pic.png);
}
.course-content .nsdi-article-system-group.aside-right {
  padding-top: 73px;
  position: relative;
}
@media (max-width: 1199px) {
  .course-content .nsdi-article-system-group.aside-right {
    padding-top: 53px;
  }
}
@media (max-width: 767px) {
  .course-content .nsdi-article-system-group.aside-right {
    padding-top: 103px;
  }
}
@media (max-width: 575px) {
  .course-content .nsdi-article-system-group.aside-right {
    padding-top: 83px;
  }
}
.course-content .nsdi-article-system-group.aside-right .nsdi-article-system {
  position: static;
}
.course-content .section-about {
  min-height: 650px;
}
@media (max-width: 1549px) {
  .course-content .section-about {
    min-height: 550px;
  }
}
@media (max-width: 1439px) {
  .course-content .section-about {
    min-height: 400px;
  }
}
@media (max-width: 991px) {
  .course-content .section-about {
    min-height: 350px;
  }
}
@media (max-width: 575px) {
  .course-content .section-about {
    min-height: 270px;
  }
}
.course-content .section-about .about-bg-cover {
  position: absolute;
  top: -176px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -50;
  transition: 1.5s ease;
  margin: 0 10.3%;
}
@media (max-width: 575px) {
  .course-content .section-about .about-bg-cover {
    top: -106px;
  }
}
.course-content .section-about .about-bg-cover .img-cover {
  padding-top: 100%;
}
.course-content .section-about .about-bg-cover .about-bg-circle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.course-content .section-about .paragraph-cover {
  margin: 0 24%;
}
@media (max-width: 767px) {
  .course-content .section-about .paragraph-cover {
    margin: 0 12%;
  }
}
@media (max-width: 575px) {
  .course-content .section-about .paragraph-cover {
    margin: 0 6%;
  }
}
.course-content .section-about .video-subtitle-group {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 174px auto 26px auto;
}
@media (max-width: 991px) {
  .course-content .section-about .video-subtitle-group {
    margin-top: 100px;
  }
}
@media (max-width: 767px) {
  .course-content .section-about .video-subtitle-group {
    margin-top: 66px;
  }
}
.course-content .section-about .video-subtitle-group .bg-circle-border.video-circle {
  width: 220px;
  height: 220px;
  position: absolute;
  top: -110px;
  left: -137px;
  z-index: -10;
}
@media (max-width: 991px) {
  .course-content .section-about .video-subtitle-group .bg-circle-border.video-circle {
    width: 180px;
    height: 180px;
    top: -90px;
    left: -110px;
  }
}
.course-content .section-about .video-cover {
  filter: drop-shadow(10.038px 10.038px 50.1901px rgba(0, 0, 0, 0.25));
  margin: auto;
  width: 79.6%;
  margin-bottom: 117px;
}
.course-content .section-about .video-bg {
  width: calc(100% - 30px);
  height: 308px;
  background: #8B362B;
  border-radius: 20px;
  margin-top: -308px;
  position: absolute;
  z-index: -50;
}
@media (max-width: 1199px) {
  .course-content .section-about .video-bg {
    height: 238px;
    margin-top: -258px;
  }
}
@media (max-width: 767px) {
  .course-content .section-about .video-bg {
    width: 100%;
    margin-left: -15px;
    height: 168px;
    margin-top: -208px;
  }
}
@media (max-width: 575px) {
  .course-content .section-about .video-bg {
    height: 128px;
    margin-top: -188px;
  }
}
.course-content .bg-circle-fill.course-circle {
  width: 143px;
  height: 143px;
  position: absolute;
  top: -32px;
  right: -59px;
  z-index: -10;
}
@media (max-width: 991px) {
  .course-content .bg-circle-fill.course-circle {
    width: 103px;
    height: 103px;
    top: -27px;
    right: -55px;
  }
}
.course-content .bg-circle-fill.course-content-circle {
  width: 143px;
  height: 143px;
  position: absolute;
  top: 150px;
  left: 25px;
  z-index: -10;
}
@media (max-width: 991px) {
  .course-content .bg-circle-fill.course-content-circle {
    width: 103px;
    height: 103px;
    top: 90px;
  }
}
@media (max-width: 767px) {
  .course-content .bg-circle-fill.course-content-circle {
    top: 70px;
  }
}
.course-content .bg-circle-border.fees-circle {
  width: 300px;
  height: 300px;
  position: absolute;
  top: -117px;
  left: -119px;
  z-index: -10;
}
@media (max-width: 991px) {
  .course-content .bg-circle-border.fees-circle {
    width: 200px;
    height: 200px;
    top: -77px;
    left: -79px;
  }
}
.course-content .bg-circle-fill.fees-content-circle {
  width: 740px;
  height: 740px;
  position: absolute;
  bottom: -92px;
  left: 0;
  transform: translate(-43%);
  z-index: -10;
}
@media (max-width: 991px) {
  .course-content .bg-circle-fill.fees-content-circle {
    width: 540px;
    height: 540px;
    bottom: -32px;
  }
}
@media (max-width: 1199px) {
  .course-content .fees-images {
    margin-bottom: 15px;
  }
}
.course-content .bg-circle-border.how-to-apply-circle {
  width: 199px;
  height: 199px;
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translate(-50%);
  z-index: -10;
}
@media (max-width: 991px) {
  .course-content .bg-circle-border.how-to-apply-circle {
    width: 140px;
    height: 140px;
    top: -50px;
  }
}
.course-content .section-how-to-apply .num-title-group {
  position: relative;
}
.course-content .section-how-to-apply .num-title {
  font-weight: 700;
  font-size: 77px;
  line-height: 140.29%;
  letter-spacing: -0.01em;
  color: #FAF4F4;
  position: absolute;
  z-index: -10;
  bottom: -17px;
  left: 0;
  transform: translate(-50%);
}
@media (max-width: 991px) {
  .course-content .section-how-to-apply .num-title {
    font-size: 68px;
  }
}
.course-content .section-how-to-apply h5 {
  margin-bottom: 32px;
}
.course-content .nsdi-article-system {
  overflow: visible;
}
.course-content .contact-us-group {
  margin-top: 15px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .course-content .contact-us-group {
    flex-direction: column;
    grid-gap: 15px;
  }
}
.course-content .contact-us-group .img-block {
  width: 54%;
}
@media (max-width: 991px) {
  .course-content .contact-us-group .img-block {
    width: 48.8%;
  }
}
@media (max-width: 767px) {
  .course-content .contact-us-group .img-block {
    width: 100%;
  }
}
.course-content .contact-us-group .img-cover {
  padding-top: 97.1%;
  border-radius: 18.16px;
}
.course-content .contact-us-group .text-block {
  width: 44.6%;
  background: #8B362B;
  border-radius: 18.16px;
  padding: 15px 5.6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 991px) {
  .course-content .contact-us-group .text-block {
    width: 48.8%;
  }
}
@media (max-width: 767px) {
  .course-content .contact-us-group .text-block {
    width: 100%;
  }
}
.course-content .contact-us-group .text-block h2, .course-content .contact-us-group .text-block h4, .course-content .contact-us-group .text-block p {
  color: #FAF4F4;
  text-align: left;
}
.course-content .contact-us-group .text-block h2 {
  white-space: nowrap;
}
@media (max-width: 1439px) {
  .course-content .contact-us-group .text-block h2 {
    font-size: 48px;
  }
}
.course-content .contact-us-group .section-title-group {
  margin: 0;
}
.course-content .contact-us-group .bg-circle-border.contact-us-circle {
  width: 100px;
  height: 100px;
  border: 1px solid #FAF4F4;
  position: absolute;
  top: 0;
  right: -35px;
}
@media (max-width: 1439px) {
  .course-content .contact-us-group .bg-circle-border.contact-us-circle {
    width: 70px;
    height: 70px;
  }
}

.about .body__container {
  margin-bottom: 212px;
}
@media (max-width: 575px) {
  .about .body__container {
    margin-bottom: calc(23.6vw + 50px);
  }
}
@media (min-width: 1920px) {
  .about .custom-container {
    max-width: calc(100vw - 380px);
  }
}
.about .page-top-banner {
  background-image: url(/short-term-programs/assets/front/images/course-content-top-pic.png);
}
.about .about-page-section-title {
  margin-bottom: 24px;
}
.about__section01 {
  position: relative;
}
.about__section01 .img-block {
  width: calc(1285px + (100% - 1542px) / 2);
  position: absolute;
  z-index: -50;
  margin-top: -20.5%;
}
@media (max-width: 1699px) {
  .about__section01 .img-block {
    width: calc(1201.6666666667px + (100% - 1442px) / 2);
  }
}
@media (max-width: 1549px) {
  .about__section01 .img-block {
    width: calc(1118.3333333333px + (100% - 1342px) / 2);
  }
}
@media (max-width: 1439px) {
  .about__section01 .img-block {
    width: calc(925px + (100% - 1110px) / 2);
  }
}
@media (max-width: 1199px) {
  .about__section01 .img-block {
    width: 76.5%;
    margin-top: -40%;
  }
}
@media (max-width: 575px) {
  .about__section01 .img-block {
    margin-top: -52%;
    width: 100%;
  }
}
.about__section01 .img-cover {
  padding-top: 49.1%;
  border-radius: 0 20px 20px 0;
  transition: 1.5s ease;
}
.about__section01 .word-card {
  background: #8B362B;
  padding: 3.6% 8.6% 5.3% 4.4%;
  color: #FFFFFF;
  border-radius: 20px 0 0 20px;
  margin-left: auto;
  margin-top: 23.1%;
  width: calc(771px + (100% - 1542px) / 2);
}
@media (max-width: 1699px) {
  .about__section01 .word-card {
    width: calc(721px + (100% - 1442px) / 2);
  }
}
@media (max-width: 1549px) {
  .about__section01 .word-card {
    width: calc(671px + (100% - 1342px) / 2);
  }
}
@media (max-width: 1439px) {
  .about__section01 .word-card {
    width: calc(555px + (100% - 1110px) / 2);
  }
  .about__section01 .word-card h1 {
    font-size: 48px;
  }
}
@media (max-width: 1199px) {
  .about__section01 .word-card {
    width: 83.3333333333%;
    margin-top: 43%;
  }
}
@media (max-width: 991px) {
  .about__section01 .word-card {
    padding: 5.6% 8.6% 7.3% 4.4%;
  }
}
@media (max-width: 575px) {
  .about__section01 .word-card {
    width: 100%;
    margin-top: 55%;
    padding-right: 4.4%;
  }
}
.about__section01 .word-card h3 {
  line-height: 170%;
  letter-spacing: 0.005em;
}
.about__section01 .pink-bg {
  position: absolute;
  background: #FAF4F4;
  width: calc(100% - (100% - 1510px) / 2);
  height: calc(100% + 23.1vw);
  z-index: -200;
  top: -23.1vw;
  right: 0;
}
@media (max-width: 1699px) {
  .about__section01 .pink-bg {
    width: calc(100vw - (100vw - 1412px + 15px) / 2);
  }
}
@media (max-width: 1549px) {
  .about__section01 .pink-bg {
    width: calc(100vw - (100vw - 1312px + 15px) / 2);
  }
}
@media (max-width: 1439px) {
  .about__section01 .pink-bg {
    width: calc(100vw - (100vw - 1080px + 15px) / 2);
  }
}
@media (max-width: 1199px) {
  .about__section01 .pink-bg {
    width: 88.9vw;
  }
}
.about .font-red {
  color: #8B362B;
}
.about__section02 {
  margin-top: 83px;
  position: relative;
}
.about__section02 .img-cover {
  padding-top: 64%;
  transition: 1.5s ease;
}
@media (min-width: 1200px) {
  .about__section02 .img-cover {
    padding-top: 0;
    height: 100%;
    border-radius: 20px;
  }
}
@media (min-width: 1200px) {
  .about__section02 .img-cover img {
    position: static;
  }
}
.about__section02 .text-group {
  margin-left: 7.8vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-bottom: 34px;
}
@media (max-width: 1439px) {
  .about__section02 .text-group h1 {
    font-size: 48px;
  }
}
@media (max-width: 1199px) {
  .about__section02 .text-group {
    margin-left: 11vw;
    padding-top: 1.5vw;
  }
}
@media (max-width: 575px) {
  .about__section02 .text-group {
    padding-right: calc(4.4% - 15px);
  }
}
.about__section02 .text-group h3 {
  line-height: 170%;
  letter-spacing: 0.005em;
}
.about__section02 .pink-bg {
  position: absolute;
  background: #FAF4F4;
  width: calc(100% - (100% - 1510px) / 2);
  height: calc(100% + 83px);
  z-index: -200;
  top: -83px;
  right: 0;
  border-radius: 0 0 0 20px;
}
@media (max-width: 1699px) {
  .about__section02 .pink-bg {
    width: calc(100vw - (100vw - 1412px + 15px) / 2);
  }
}
@media (max-width: 1549px) {
  .about__section02 .pink-bg {
    width: calc(100vw - (100vw - 1312px + 15px) / 2);
  }
}
@media (max-width: 1439px) {
  .about__section02 .pink-bg {
    width: calc(100vw - (100vw - 1080px + 15px) / 2);
  }
}
@media (max-width: 1199px) {
  .about__section02 .pink-bg {
    width: 88.9vw;
  }
}
.about__section03 {
  position: relative;
  min-height: 35.3vw;
  width: 100%;
  margin-top: 84px;
  display: flex;
  align-items: end;
}
@media (max-width: 1199px) {
  .about__section03 {
    height: 100%;
    display: block;
  }
}
.about__section03 .container.custom-container {
  height: 100%;
}
.about__section03 .row {
  height: 100%;
}
.about__section03 .text-group {
  color: #FFFFFF;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-bottom: 4.6vw;
  margin-right: 7vw;
}
@media (max-width: 1439px) {
  .about__section03 .text-group h1 {
    font-size: 48px;
  }
}
@media (max-width: 1199px) {
  .about__section03 .text-group {
    margin-right: 0;
  }
}
@media (max-width: 575px) {
  .about__section03 .text-group {
    padding-left: calc(4.4% - 15px);
    padding-right: calc(4.4% - 15px);
  }
}
.about__section03 .text-group h3 {
  line-height: 170%;
  letter-spacing: 0.005em;
}
.about__section03 .img-block {
  position: absolute;
  width: calc(1028px + (100% - 1542px) / 2);
  bottom: 0;
  right: 0;
}
@media (max-width: 1699px) {
  .about__section03 .img-block {
    width: calc(961.3333333333px + (100% - 1442px) / 2);
  }
}
@media (max-width: 1549px) {
  .about__section03 .img-block {
    width: calc(894.6666666667px + (100% - 1342px) / 2);
  }
}
@media (max-width: 1439px) {
  .about__section03 .img-block {
    width: calc(740px + (100% - 1110px) / 2);
  }
}
@media (max-width: 1199px) {
  .about__section03 .img-block {
    position: static;
    margin-left: auto;
    width: 80%;
  }
}
@media (max-width: 575px) {
  .about__section03 .img-block {
    width: 100%;
  }
}
.about__section03 .img-cover {
  padding-top: 56.1%;
  border-radius: 150px 0 0 0;
  transition: 1.5s ease;
}
@media (max-width: 1199px) {
  .about__section03 .img-cover {
    border-radius: 100px 0 0 0;
  }
}
@media (max-width: 575px) {
  .about__section03 .img-cover {
    border-radius: 50px 0 0 0;
  }
}
.about__section03 .red-bg {
  position: absolute;
  background: #8B362B;
  width: 100%;
  height: calc(100% + 194px);
  z-index: -300;
  bottom: 0;
  right: 0;
  border-radius: 150px 0 0 0;
}
.about__section04 {
  position: relative;
  min-height: calc(34vw + 65px);
  margin-top: 65px;
}
@media (max-width: 1199px) {
  .about__section04 {
    height: 100%;
  }
}
.about__section04 .img-block {
  width: calc(1028px + (100% - 1542px) / 2);
  position: absolute;
  top: 65px;
  left: 0;
}
@media (max-width: 1699px) {
  .about__section04 .img-block {
    width: calc(961.3333333333px + (100% - 1442px) / 2);
  }
}
@media (max-width: 1549px) {
  .about__section04 .img-block {
    width: calc(894.6666666667px + (100% - 1342px) / 2);
  }
}
@media (max-width: 1439px) {
  .about__section04 .img-block {
    width: calc(740px + (100% - 1110px) / 2);
  }
}
@media (max-width: 1199px) {
  .about__section04 .img-block {
    position: static;
    width: 80%;
  }
}
@media (max-width: 575px) {
  .about__section04 .img-block {
    width: 100%;
  }
}
.about__section04 .img-cover {
  padding-top: 51.4%;
  border-radius: 0 26px 26px 0;
  transition: 1.5s ease;
}
.about__section04 .container.custom-container {
  background: #FAF4F4;
  padding-bottom: 48px;
  border-radius: 0 0 20px 0;
  padding-top: 65px;
  margin-top: -65px;
  position: relative;
  z-index: -100;
}
.about__section04 .container.custom-container::before {
  content: "";
  display: block;
  background: #FAF4F4;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: calc((100vw - 1542px) / 2 * -1);
}
@media (max-width: 1699px) {
  .about__section04 .container.custom-container::before {
    left: calc((100vw - 1442px) / 2 * -1);
  }
}
@media (max-width: 1549px) {
  .about__section04 .container.custom-container::before {
    left: calc((100vw - 1342px) / 2 * -1);
  }
}
@media (max-width: 1439px) {
  .about__section04 .container.custom-container::before {
    left: calc((100vw - 1110px) / 2 * -1);
  }
}
.about__section04 .text-group {
  margin-top: 1.5vw;
  padding: 0 3.6vw;
}
@media (max-width: 1439px) {
  .about__section04 .text-group h1 {
    font-size: 48px;
  }
}
@media (max-width: 575px) {
  .about__section04 .text-group {
    padding: 0 calc(4.4% - 15px);
  }
}
.about__section04 .text-group h3 {
  line-height: 170%;
  letter-spacing: 0.005em;
}
.about__section04 .pink-bg {
  position: absolute;
  background: #FAF4F4;
  width: 50%;
  z-index: -400;
  top: 0;
  left: 0;
}
@media (max-width: 1199px) {
  .about__section04 .pink-bg {
    width: 100%;
    height: 100%;
    top: -65px;
  }
}
.about .nsdi-article-system-group img {
  border-radius: 20px;
}

.highlight .body__container {
  margin-bottom: 212px;
}
@media (max-width: 575px) {
  .highlight .body__container {
    margin-bottom: calc(23.6vw + 50px);
  }
}
.highlight .page-top-banner {
  background-image: url(/short-term-programs/assets/front/images/course-content-top-pic.png);
}
.highlight__section01 {
  margin-top: 97px;
}
.highlight .section-title-group {
  margin-bottom: 63px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
@media (max-width: 1199px) {
  .highlight .section-title-group {
    margin-bottom: 42px;
    margin-left: calc(36px + 3vw);
  }
}
.highlight .section-title-group .bg-circle-fill {
  width: 220px;
  height: 220px;
  position: absolute;
  z-index: -10;
  top: -73px;
  left: -64px;
}
@media (max-width: 991px) {
  .highlight .section-title-group .bg-circle-fill {
    width: 170px;
    height: 170px;
    top: -63px;
  }
}
.highlight .section-title-group .bg-circle-border {
  width: 266px;
  height: 266px;
  position: absolute;
  z-index: -10;
  top: 0;
  right: -13px;
  transform: translate(0, -30%);
}
@media (max-width: 991px) {
  .highlight .section-title-group .bg-circle-border {
    width: 206px;
    height: 206px;
    transform: translate(0, -35%);
  }
}
.highlight .swiper-cover01 {
  margin-left: 10%;
}
@media (max-width: 1199px) {
  .highlight .swiper-cover01 {
    margin-left: calc(36px + 3vw + 15px);
  }
}
.highlight .swiper-cover01 .swiper-scrollbar {
  width: 46.3%;
  margin-top: 50px;
  height: 1px;
}
.highlight .swiper-cover01 .swiper-scrollbar-drag {
  height: 4px;
  background: #8B362B;
  top: -1px;
}
.highlight .highlight-swiper01 {
  cursor: url("/short-term-programs/assets/front/images/swiper-cursor.svg"), auto;
}
.highlight .highlight-swiper01 a {
  cursor: url("/short-term-programs/assets/front/images/swiper-cursor.svg"), auto;
}
.highlight .highlight-swiper01 .img-cover {
  padding-top: 157%;
  border-radius: 20px;
}
.highlight__section02 {
  margin-top: 109px;
}
.highlight .swiper-cover02 {
  position: relative;
}
@media (max-width: 1699px) {
  .highlight .swiper-cover02 {
    margin: 0 calc(36px + 3vw);
  }
}
.highlight .highlight-swiper02 .img-cover {
  padding-top: 59.6%;
  border-radius: 20px;
}
.highlight .nsdi-article-system-group {
  margin-top: 100px;
}
.highlight .nsdi-article-system-group .nas-article {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991px) {
  .highlight .nsdi-article-system-group .nas-article {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.highlight .nsdi-article-system-group .nas-image-wrapper {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  .highlight .nsdi-article-system-group .nas-image-wrapper {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.highlight .nsdi-article-system-group .nas-image-wrapper img {
  border-radius: 20px;
}
.highlight .nsdi-article-system-group h2 {
  font-weight: 700;
  font-size: 28px;
  line-height: 151.86%;
  color: #252525;
  letter-spacing: 0.005em;
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  .highlight .nsdi-article-system-group h2 {
    font-size: 24px;
  }
}
.highlight .nsdi-article-system-group h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 151.86%;
  letter-spacing: 0.005em;
  color: #252525;
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  .highlight .nsdi-article-system-group h3 {
    font-size: 22px;
  }
}
.highlight .nsdi-article-system-group h4 {
  font-weight: 700;
  font-size: 22px;
  line-height: 214.51%;
  letter-spacing: 0.005em;
  color: #252525;
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  .highlight .nsdi-article-system-group h4 {
    font-size: 20px;
  }
}
.highlight .nsdi-article-system-group h5 {
  font-weight: 700;
  font-size: 20px;
  line-height: 214.51%;
  letter-spacing: 0.005em;
  color: #252525;
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  .highlight .nsdi-article-system-group h5 {
    font-size: 18px;
  }
}
.highlight .nsdi-article-system-group h6 {
  font-weight: 700;
  line-height: 214.51%;
  letter-spacing: 0.005em;
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  .highlight .nsdi-article-system-group h6 {
    font-size: 16px;
  }
}
.highlight .nsdi-article-system-group p {
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
  letter-spacing: 0.005em;
  color: #252525;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .highlight .nsdi-article-system-group p {
    font-size: 16px;
  }
}
.highlight .nsdi-article-system-group ul {
  list-style-type: disc;
  padding-left: 30px;
}
.highlight .nsdi-article-system-group ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
  letter-spacing: 0.005em;
  color: #252525;
}
@media (max-width: 991px) {
  .highlight .nsdi-article-system-group ul li {
    font-size: 16px;
  }
}
.highlight .nsdi-article-system-group ol {
  padding-left: 20px;
}
.highlight .nsdi-article-system-group ol li {
  font-weight: 700;
  font-size: 18px;
  line-height: 215%;
  letter-spacing: 0.005em;
}
@media (max-width: 991px) {
  .highlight .nsdi-article-system-group ol li {
    font-size: 16px;
  }
}

.dont-show {
  opacity: 0 !important;
}

footer {
  background: #FAF4F4;
  position: relative;
}
footer .footer-animals-logo {
  position: absolute;
  top: -178px;
  left: 50%;
  transform: translate(-50%);
}
@media (max-width: 575px) {
  footer .footer-animals-logo {
    width: 50%;
    top: -22vw;
  }
}
footer .logo-imgbox {
  padding: 0 15px;
}
footer .top-block {
  padding: 22px 0;
}
footer .top-block .footer-logo-1 {
  width: 300px;
}
@media (max-width: 575px) {
  footer .top-block .footer-logo-1 {
    width: 70%;
    margin: auto;
  }
}
footer .top-block .img-cover {
  padding-top: 26.3%;
}
footer .middle-block {
  border-top: 1px solid #F1F1F1;
  border-bottom: 1px solid #F1F1F1;
  padding: 32px 0;
}
footer .middle-block .content {
  gap: 23px 0;
}
footer .middle-block .footer-title {
  font-weight: 700;
  color: #8B362B;
  margin-bottom: 28px;
}
footer .middle-block .a-text {
  text-decoration-line: underline;
  color: #252525;
}
footer .middle-block .a-text:hover {
  opacity: 0.7;
}
footer .middle-block .mb {
  margin-bottom: 16px;
}
footer .middle-block .footer-icon-group {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  gap: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .middle-block .footer-icon-group img {
  transition: 0.3s ease;
}
footer .middle-block .footer-icon-group img:hover {
  opacity: 0.5;
}
footer .middle-block .icon-facebook .path1, footer .middle-block .icon-youtube .path1, footer .middle-block .icon-instagram, footer .middle-block .icon-twitter .path1, footer .middle-block .icon-facebook .path2, footer .middle-block .icon-youtube .path2, footer .middle-block .icon-twitter .path2 {
  font-size: 30px;
}
footer .middle-block .icon-facebook, footer .middle-block .icon-youtube, footer .middle-block .icon-twitter {
  position: relative;
}
footer .middle-block .path2::before {
  padding-left: 30px;
}
footer .middle-block .icon-facebook .path2, footer .middle-block .icon-youtube .path2, footer .middle-block .icon-twitter .path2 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
footer .middle-block .icon-facebook:hover .path1, footer .middle-block .icon-youtube:hover .path1, footer .middle-block .icon-instagram:hover, footer .middle-block .icon-twitter:hover .path1 {
  opacity: 0.5;
}
footer .bottom-block {
  display: flex;
  align-items: center;
  padding: 33px 0;
}
@media (max-width: 767px) {
  footer .bottom-block {
    display: block;
  }
}
@media (max-width: 767px) {
  footer .bottom-block .text {
    text-align: center;
    margin-top: 20px;
  }
}
footer .bottom-block .footer-logo-2 {
  width: 293px;
  margin-right: 48px;
}
@media (max-width: 767px) {
  footer .bottom-block .footer-logo-2 {
    margin: auto;
  }
}
@media (max-width: 575px) {
  footer .bottom-block .footer-logo-2 {
    width: 70%;
  }
}
footer .bottom-block .img-cover {
  padding-top: 18.4%;
}

.test-box {
  width: 100px;
  height: 100px;
}
@media (min-width: 1200px) {
  .test-box {
    background-color: #8B362B;
  }
}
@media (min-width: 576px) and (max-width: 1199px) {
  .test-box {
    background-color: #252525;
  }
}
.test-img {
  width: 480px;
  height: 200px;
  background: url("/short-term-programs/assets/front/images/img_test.jpg");
  background-size: cover;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .test-img {
    background: url("/short-term-programs/assets/front/images/img_test@2x.jpg");
    background-size: cover;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .test-img {
    background: url("/short-term-programs/assets/front/images/img_test@2x.jpg");
    background-size: cover;
  }
}/*# sourceMappingURL=style.css.map */