/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Global Colors */
:root {
  --background-color: #ffffff;
  --default-color: #4b4b4b;
  --heading-color: #4b4b4b;
  --accent-color: #ff3366;
  --brand-color: #ff3366;
  --accent-background: #ffdae3;
  --bg-gray: #f9f7f4;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}
/* Nav Menu Colors */
:root {
  --nav-color: #4b4b4b;
  --nav-hover-color: #ff3366;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #4b4b4b;
  --nav-dropdown-hover-color: #ff3366;
}
.accent {
  color: var(--accent-color);
}
.accent-background {
  background-color: var(--accent-background);
}
i.icon-pg {
  background-image: url("../images/icon-pg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
}
i.icon-al {
  background-image: url("../images/icon-al.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
}
/* Smooth scroll */ :root {
  scroll-behavior: smooth;
}
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
html,
body {
  height: 100%;
  margin: 0;
}
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
/* a
-------------------------------------------------- */
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}
a:focus,
a:active {
  color: var(--accent-color);
}
/* h1 h2 h3 h4 h5 h6
-------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
}
h1 {
  font-size: 2rem;
  font-weight: 800;
}
h2 {
  color: var(--accent-color);
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
h3 {
  color: var(--accent-color);
  font-size: 1.725rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
h4 {
  font-size: 1.275rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  padding-bottom: 0.25rem;
  border-bottom: 2px dotted var(--accent-color);
}
h5 {
  color: var(--accent-color);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
h6 {
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  color: var(--default-color);
  font-size: 0.675em;
  font-weight: 500;
}
h2 small {
  font-size: 0.875rem;
  display: block;
}
h2 small i.icon-pg {
  display: inline-block;
  width: 40px;
  height: 34px;
  margin-right: 0.375rem;
}
h2 small i.icon-al {
  display: inline-block;
  width: 22px;
  height: 27px;
  margin-right: 0.375rem;
}
@media screen and (max-width: 767.98px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.675rem;
  }
  h2 small {
    font-size: 0.675rem;
  }
  h2 small i.icon-pg {
    width: 30px;
    height: 25px;
    margin-right: 0.375rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  h4 {
    font-size: 1.125rem;
  }
  h5 {
    font-size: 1rem;
  }
  h6 {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 479.98px) {
  h3 {
    font-size: 1.125rem;
  }
  h4 {
    font-size: 1rem;
  }
}
/* p
-------------------------------------------------- */
p, li, dt, dd, dd p, .btn {
  font-size: 1rem;
}
@media screen and (max-width: 767.98px) {
  p, li, dt, dd, dd p, .btn {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 479.98px) {
  p, li, dt, dd, dd p, .btn {
    font-size: 0.825rem;
  }
}
p.section-subtitle {
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
p.lead {
  font-size: 1.25rem;
  font-weight: 600;
}
@media screen and (max-width: 767.98px) {
  p.lead {
    font-size: 1rem;
  }
}
@media screen and (max-width: 479.98px) {
  p.lead {
    font-size: 0.875rem;
  }
}

/*--------------------------------------------------------------
# btn
--------------------------------------------------------------*/
.btn {
  font-size: 1rem;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}
.btn.btn-accent {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
}
.btn.btn-accent:hover {
  color: var(--accent-color);
  background-color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}
.btn.btn-outline {
  color: var(--accent-color);
  background-color: transparent;
  border: 2px solid var(--accent-color);
}
.btn.btn-outline:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}
.btn.btn-line {
  color: var(--contrast-color);
  background-color: #06c755;
  border: 2px solid #06c755;
}
.btn.btn-line:hover,
.btn.btn-line:focus,
.btn.btn-line:active {
  color: #06c755;
  background-color: var(--contrast-color);
  border: 2px solid #06c755;
}
.btn-ll {
  color: var(--accent-color);
  background-color: transparent;
  border: 2px solid var(--accent-color);
  padding-top: 0.25em;
  padding-bottom: 0.25em;
}
.btn-ll:hover {
  color: var(--accent-color);
  background-color: var(--accent-background);
  border: 2px solid var(--accent-color);
}
.btn-al {
  color: var(--contrast-color);
  background-color: #3366cc;
  border: 2px solid #3366cc;
}
.btn-al:hover {
  color: #3366cc;
  background-color: var(--contrast-color);
  border: 2px solid #3366cc;
}
.btn-al:hover img {
  filter: invert(39%) sepia(13%) saturate(5689%) hue-rotate(193deg) brightness(90%) contrast(90%);
}
.btn-service {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 5px;
}
.btn-service i {
  margin-left: 8px;
  transition: all 0.3s ease;
}
.btn-service:hover {
  color: var(--accent-color);
  text-decoration: none;
}
.btn-service:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
}

.header .main-header .logo {
  line-height: 1.25;
}

.header .main-header .logo img.navbar-brand {
  max-height: 96px;
  margin-right: 8px;
}

.header .main-header .logo h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-top: 1rem;
}
.header .main-header .logo h1 small {
  font-size: 0.725rem;
  font-weight: 500;
  display: block;
}
.header .main-header .logo h1 small span {
  display: block;
}
.header .main-header .logo h1 img {
  margin-top: 0.5rem;
}

@media (min-width: 801px) {
  .header .main-header .logo h1 img {
    min-width: 460px;
  }
}

@media (max-width: 824px) {
  .header .main-header .logo h1 img {
    min-width: 450px;
  }
}

@media (max-width: 768px) {
  .header .main-header .logo img.navbar-brand {
    max-height: 80px;
  }
  .header .main-header .logo h1 {
    font-size: 1.5remx;
  }
  .header .main-header .logo h1 small {
    font-size: 0.625rem;
  }
  .header .main-header .logo h1 small span:nth-child(2) {
    display: none;
  }
  .header .main-header .logo h1 img {
    min-width: 380px;
  }
}

@media (max-width: 698px) {
  .header .main-header .logo h1 img {
    min-width: 320px;
  }
}

@media (max-width: 576px) {
  .header .main-header .logo img.navbar-brand {
    max-height: 64px;
  }
  .header .main-header .logo h1 img {
    min-width: 180px;
    max-height: 64px;
    margin-top: 0;
  }
  .header .main-header .logo h1 small span {
    margin-top: -6px;
    margin-bottom: 4px;
  }
  .header .main-header .logo h1 small span:first-child {
    display: none;
  }
}

@media (max-width: 428px) {
  .header .main-header .logo img.navbar-brand {
    max-height: 48px;
  }
  .header .main-header .logo h1 img {
    min-width: 160px;
  }
}

.header .main-header .header-actions {
  gap: 0.5rem;
}

.header .main-header .header-actions .btn {
    padding: 0.75rem 1rem;
}

@media (min-width: 1200px) {
  .header .header-nav {
    border-bottom: 1px solid #eee;
  }
  .header .main-header .header-actions .btn.btn-tel {
    padding: 0.575rem 1rem;
  }
}

@media (max-width: 1200px) {
  .header .main-header .header-actions {
    margin-left: 0.5rem;
    gap: 0.275rem;
  }
  .header .main-header .header-actions .btn {
    padding: 0.5rem;
  }
}

@media (max-width: 576px) {
  .header .main-header .header-actions .btn {
    font-size: 0.75rem;
    padding: 0.25rem;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    display: flex;
    align-items: center;
  }

  .navmenu ul {
    list-style: none;
  }

  .navmenu > ul {
    margin: 0 2rem 0 0;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu > ul li a,
  .navmenu > ul li a:focus {
    color: var(--nav-color);
    padding: 0.5rem;
    font-family: var(--nav-font);
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu li a small {
    display: block;
    font-size: 0.725rem;
    font-weight: 400;
  }

  .navmenu li a i,
  .navmenu li a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul li a {
    color: var(--nav-dropdown-color);
    font-size: 0.875rem;
    display: block;
    text-align: start;
    text-transform: none;
    padding: 10px 20px;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 2rem;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu li a small {
    display: block;
    font-size: 0.725rem;
    font-weight: 400;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    font-family: var(--nav-font);
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu > ul > li > a {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 0.75rem;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu ul li a .btn i {
    font-size: 1rem;
    margin: 0;
    padding-right: 1.25rem;
    width: 0;
    height: 0;
    display: inline-block;
    background-color: none;
    color: var(--contrast-color);
  }

  .navmenu ul li a .btn-outline i {
    color: var(--accent-color);
  }

  .navmenu ul li a:hover .btn-outline i {
    color: var(--contrast-color);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul li {
    padding: 5px 10px;
  }
  .navmenu .dropdown ul a {
    font-size: 0.875rem;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 33, 33, 0.75);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
	margin-top: auto;
}
.bottom-footer {
  color: var(--contrast-color);
  background-color: var(--brand-color);
	font-size: 0.9em;
	padding: 2.25rem 0 1rem;
	overflow: hidden;
}
.bottom-footer a,
.bottom-footer small {
  color: var(--contrast-color);
  transition: all 0.3s;
}
.bottom-footer .footer_logo {
	float: left;
}
.bottom-footer h5 {
  color: var(--contrast-color);
}
.bottom-footer p {
  line-height: 1.2;
}
.bottom-footer .privacy,
.bottom-footer .copyright {
  font-size: 0.875rem;
}
.bottom-footer a:link,
.bottom-footer a:visited {
  color: var(--contrast-color);
}
.bottom-footer a:hover {
  color: var(--contrast-color);
	text-decoration: underline;
}
@media only screen and (min-width: 768px) {
  .bottom-footer .copyright{
    text-align: right;
    margin-top: 3.25rem;
  }
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}
.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Global Page Titles
--------------------------------------------------------------*/
.page-title {
  background-color: var(--bg-gray);
}
.page-title h2 {
  color: var(--default-color);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs ul li {
  color: var(--accent-color);
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
}
.breadcrumbs ul li a {
  color: var(--default-color);
}
.breadcrumbs ul li a:hover,
.breadcrumbs ul li a:focus {
  color: var(--accent-color);
  text-decoration: underline;
}
.breadcrumbs ul li+li {
  padding-left: 0.5rem;
}
.breadcrumbs ul li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 0.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
@media screen and (max-width: 479.98px) {
  .breadcrumbs ul li {
    font-size: 0.75rem;
  }
}
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section, .section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 3rem 0 2rem;
  overflow: clip;
}
@media (max-width: 1199px) {
  section, .section {
    padding: 2.5rem 0 1.25rem;
  }
}
/*--------------------------------------------------------------
# Featured Program Section
--------------------------------------------------------------*/
.featured-program .department-card {
  background: var(--surface-color);
  border-radius: 1rem;
  overflow: hidden;
  /* box-shadow: 0 5px 10px color-mix(in srgb, var(--default-color), transparent 85%);*/
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}
.featured-program .department-card:hover {
  /* transform: translateY(-5px);
  box-shadow: 0 10px 15px color-mix(in srgb, var(--default-color), transparent 75%);*/
}
.featured-program .department-image {
  border-radius: 1rem;
  max-height: 200px;
  overflow: hidden;
}
.featured-program .department-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.featured-program .department-card:hover .department-image img {
  transform: scale(1.05);
}
.featured-program h3 {
  font-size: 1.35rem;
  line-height: 1.275rem;
  margin: 1rem 0 0.5rem;
}
.featured-program h3 small {
  color: var(--default-color);
  padding: 0;
}
@media screen and (max-width: 767.98px) {
  .featured-program h3 {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 479.98px) {
  .featured-program h3 {
    font-size: 1.125rem;
  }
}
/*--------------------------------------------------------------
# News Section
--------------------------------------------------------------*/
.home-news {
  background-color: var(--accent-background);
}
.news-wrapper {
  background-color: #fff;
  border-radius: 1rem;
  margin-bottom: 1rem;
  padding: 2rem;
  min-height: calc(100% - 1rem);
}
@media screen and (max-width: 767.98px) {
  .home-news {
    padding: 1.5rem 0.5rem;
  }
  .news-wrapper {
    padding: 1.5rem 1rem;
  }
}
dl.news {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}
dl.news dt, dl.news dd {
  padding: 1.25rem 0.25rem;
  border-bottom: 1px dotted #999;
  box-sizing: border-box;
}
dl.news dt {
  color: var(--accent-color);
  width: 16%;
  font-variant-numeric: tabular-nums;
}
dl.news dd {
  margin: 0;
  width: 84%;
}
dl.news dd p {
  font-size: inherit !important;
  line-height: inherit !important;
}
dl.news dd p:last-of-type {
  margin-bottom: 0 !important;
}
dl.history dt:last-of-type {
  border-bottom: none;
}
dl.news dd a {
  color: var(--default-color);
}
dl.news dd a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}
@media screen and (max-width: 1199.98px) {
  dl.news dt {
    width: 20%;
  }
  dl.news dd {
    width: 80%;
  }
}
@media screen and (max-width: 991.98px) {
  .news-wrapper {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  dl.news dt {
    width: 100%;
    padding: 0.75rem 0.25rem 0;
    border-bottom: none;
  }
  dl.news dd {
    width: 100%;
    padding: 0.25rem 0.25rem 0.75rem;
  }
}
/*--------------------------------------------------------------
# class infomation
--------------------------------------------------------------*/
dl.class-info {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}
dl.class-info dt, dl.class-info dd {
  padding: 1.25rem 0.25rem;
  border-bottom: 1px dotted #999;
  box-sizing: border-box;
}
dl.class-info dt {
  color: var(--accent-color);
  width: 12%;
  font-variant-numeric: tabular-nums;
}
dl.class-info dd {
  margin: 0;
  width: 88%;
}
dl.class-info dd a {
  color: var(--default-color);
}
dl.class-info dd a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}
@media screen and (max-width: 1199.98px) {
  dl.class-info dt {
    width: 16%;
  }
  dl.class-info dd {
    width: 84%;
  }
}
@media screen and (max-width: 991.98px) {
  dl.class-info dt {
    width: 100%;
    padding: 0.75rem 0.25rem 0;
    border-bottom: none;
  }
  dl.class-info dd {
    width: 100%;
    padding: 0.25rem 0.25rem 0.75rem;
  }
}
.availability-info .info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.availability-info .info-item i {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.availability-info .info-item div {
  display: flex;
  flex-direction: column;
}
.availability-info .info-item div strong {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.availability-info .info-item div span {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.9rem;
}

/*--------------------------------------------------------------
# Staff Section
--------------------------------------------------------------*/
.staff-card {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  height: 100%;
}

.staff-card .staff-image {
  position: relative;
  overflow: hidden;
}

.staff-card .staff-image img {
  width: auto;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.staff-card .staff-content {
  padding: 30px 25px;
}

.staff-card .staff-content .staff-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
}

.staff-card .staff-content .staff-specialty {
  color: var(--accent-color);
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

.staff-card .staff-content .staff-bio {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 20px;
}

.staff-card .staff-content .staff-experience {
  margin-bottom: 25px;
}

.staff-card .staff-content .staff-experience .experience-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .staff-card .staff-content {
    padding: 25px 20px;
  }

  .staff-card .staff-content .staff-name {
    font-size: 20px;
  }

  .staff-card .staff-content .staff-specialty {
    font-size: 15px;
  }
}


/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-item {
  border-bottom: 1px dotted #999;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq .faq-item:last-child {
  margin-bottom: 0;
}
.faq .faq-item .faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  position: relative;
}
.faq .faq-item .faq-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
  flex: 1;
  padding-right: 20px;
  transition: color 0.3s ease;
}
.faq .faq-item .faq-header .faq-toggle {
  font-size: 20px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}
.faq .faq-item .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
}
.faq .faq-item .faq-content p {
  padding: 0 25px 20px;
  margin: 0;
  line-height: 1.6;
  color: var(--default-color);
  font-size: 15px;
}
.faq .faq-item.faq-active .faq-header h3 {
  color: var(--accent-color);
}
.faq .faq-item.faq-active .faq-header .faq-toggle {
  transform: rotate(180deg);
}
.faq .faq-item.faq-active .faq-content {
  max-height: 300px;
  overflow: auto;
}
.faq .faq-contact-card {
  height: 100%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  border-radius: 10px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  color: var(--contrast-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.faq .faq-contact-card .card-icon {
  margin-bottom: 20px;
}
.faq .faq-contact-card .card-icon i {
  font-size: 48px;
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
}
.faq .faq-contact-card .card-content h3 {
  color: var(--contrast-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}
.faq .faq-contact-card .card-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
}
.faq .faq-contact-card .contact-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: auto;
}
.faq .faq-contact-card .contact-options .contact-option {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 15px 20px;
  border-radius: 8px;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}
.faq .faq-contact-card .contact-options .contact-option:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateX(5px);
}
.faq .faq-contact-card .contact-options .contact-option i {
  font-size: 20px;
  margin-right: 12px;
}
.faq .faq-contact-card .contact-options .contact-option span {
  font-weight: 500;
  font-size: 16px;
}
@media (max-width: 991px) {
  .faq .row {
    flex-direction: column-reverse;
  }
  .faq .faq-contact-card {
    margin-top: 30px;
  }
}
@media (max-width: 766.98px) {
  .faq .faq-item .faq-header {
    padding: 15px 20px;
  }
  .faq .faq-item .faq-header h3 {
    font-size: 16px;
  }
  .faq .faq-item .faq-content p {
    padding: 0 20px 15px;
    font-size: 14px;
  }
  .faq .faq-contact-card {
    padding: 30px 20px;
  }
  .faq .faq-contact-card .card-icon i {
    font-size: 40px;
  }
  .faq .faq-contact-card .card-content h3 {
    font-size: 24px;
  }
  .faq .faq-contact-card .card-content p {
    font-size: 15px;
  }
  .faq .faq-contact-card .contact-options .contact-option {
    padding: 12px 15px;
  }
  .faq .faq-contact-card .contact-options .contact-option i {
    font-size: 18px;
  }
  .faq .faq-contact-card .contact-options .contact-option span {
    font-size: 15px;
  }
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-form-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact .form-container {
  /*background-color: var(--surface-color);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);*/
}
.contact .form-container h3 {
  color: var(--accent-color);
}
.contact .form-container h5 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}
.contact .form-container h5::before {
  content: "\f0da";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  margin-right: 8px;
  color: var(--accent-color);
}
.contact .form-container p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 25px;
}
.contact .form-container .btn-submit {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact .form-container .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 75%);
  background-color: var(--contrast-color);
  color: var(--accent-color);
}
.contact .form-container .btn-submit i {
  transition: transform 0.3s ease;
}
.contact .form-container .btn-submit:hover i {
  transform: translateX(5px);
}
@media (max-width: 767.98px) {
  .contact .contact-info-panel {
    padding: 30px 25px;
  }
  .contact .form-container {
    padding: 30px 25px;
  }
}
.form-container label {
  font-weight: 500;
  position: relative;
}
.form-container .form-control, .form-container .form-select, .form-container .form-check-input {
  border-color: #ccc;
}
.form-container .form-control:focus, .form-container .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}
.form-container input::placeholder, .form-container select::placeholder, .form-container textarea::placeholder {
  color: #ccc !important;
}
/*--------------------------------------------------------------
# process-steps
--------------------------------------------------------------*/
.process-steps {
  margin-top: 1rem;
}
.process-steps .step-item {
  position: relative;
  margin-bottom: 16px;
  padding: 48px 1rem 1rem;
  text-align: center;
  background-color: var(--accent-background);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}
.process-steps .step-item .step-number {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  z-index: 2;
}
.process-steps .step-item .step-icon {
  margin: 1.5rem 0 1rem 0;
}
.process-steps .step-item .step-icon i {
  font-size: 3rem;
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}
.process-steps .step-item h5 {
  color: var(--heading-color);
  font-weight: 600;
  display: block;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}
.process-steps .step-item p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .process-steps {
    margin-top: 3rem;
  }
  .process-steps .step-item {
    padding: 48px 1.5rem 1rem;
  }
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-section {
  background-color: var(--bg-gray);
}
.contact-item {
  text-align: center;
  background-color: var(--contrast-color);
  border-radius: 1rem;
  padding: 1.5rem;
  min-height: 100%;
}
/*--------------------------------------------------------------
# Access Section
--------------------------------------------------------------*/
.map-container {
  width: 100%;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy-header {
  margin-bottom: 60px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}
.privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}
.privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}
.privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}
.privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}
.privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}
.privacy-content .content-section {
  margin-bottom: 50px;
}
.privacy-content .content-section:last-child {
  margin-bottom: 0;
}
.privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}
.privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}
.privacy-content .content-section p {
  margin-bottom: 20px;
}
.privacy-content .content-section p:last-child {
  margin-bottom: 0;
}
.privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}
.privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}
.privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}
.privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}
.privacy-contact p {
  margin-bottom: 20px;
}
.privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}
.privacy-contact .contact-details p {
  margin-bottom: 10px;
}
.privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}
.privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}
@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }
  .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }
  .privacy h1 {
    font-size: 24pt;
  }
  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }
  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }
  .privacy p, .privacy ul {
    page-break-inside: avoid;
  }
  .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}
@media (max-width: 766.98px) {
  .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }
  .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }
  .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }
  .privacy-content .content-section {
    margin-bottom: 40px;
  }
  .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }
  .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}
/*--------------------------------------------------------------
bg-white-round
--------------------------------------------------------------*/
.bg-white-round {
  background-color: #ffffff;
  margin-bottom: 1em;
  padding: 1.5em;
  border-radius: 1em;
  border: 1px solid #cccccc;
  overflow: hidden;
}
/*--------------------------------------------------------------
list-vertical
--------------------------------------------------------------*/
ul.vertical {
	clear:both;
	overflow:hidden;
	list-style:none;
  position: relative;
  margin-bottom: 0;
  padding-left: 1.5rem;
}
ul.vertical li {
	margin-bottom: 0.275rem;
}
ul.vertical li::before {
  color: var(--accent-color);
	font-family: "Font Awesome 7 Free";
  font-weight: 900;
  content: "\f152";
  position: absolute;
  left: 0;
}
ul.vertical.star li::before {
  content: "\f005";
}
/*--------------------------------------------------------------
list-number
--------------------------------------------------------------*/
ol.number {
	clear:both;
	overflow:hidden;
	list-style:none;
  position: relative;
  padding-left: 1.5rem;
}
ol.number li {
	margin-bottom: 0.275rem;
}
ol.number li::before {
  color: var(--accent-color);
	font-family: bootstrap-icons;
  content: "";
  position: absolute;
  left: 0;
}
ol.number li.number01::before {	
  content: "\F796";
}
ol.number li.number02::before {	
  content: "\F79C";
}
ol.number li.number03::before {	
  content: "\F7A2";
}
ol.number li.number04::before {	
  content: "\F7A8";
}
ol.number li.number05::before {	
  content: "\F7AE";
}
ol.number li.number06::before {	
  content: "\F7B4";
}
ol.number li.number07::before {	
  content: "\F7BA";
}
ol.number li.number08::before {	
  content: "\F7C0";
}
ol.number li.number09::before {	
  content: "\F7C6";
}
/*--------------------------------------------------------------
curriculum
--------------------------------------------------------------*/
div.curriculum div {
	padding: 10px;
	border-radius: 1rem;
	float:left;
  min-height: 100%;
}
div.curriculum div h3, 
div.curriculum div li {
	color: #ffffff;
}
div.curriculum div ul {
	margin: 0 0.5rem 0.5rem 0;
	list-style: disc;
}
/*--------------------------------------------------------------
# Afterschool-learning
--------------------------------------------------------------*/
#afterschool-learning {
  h2,
  h3,
  h4,
  h5,
  p.section-subtitle,
  ol.number li::before,
  a,
  a:hover,
  dl.class-info dt,
  .afterschool-learning {
    color: #3366cc;
  }
  h4 {
    border-color: #3366cc;
  }
}