@charset "UTF-8";
:root {
  --header-height: 8.8rem;
  --primary-color: #3073CA;
}
@media (max-width: 1680px) {
  :root {
    --header-height: 7.2rem;
  }
}
@media (max-width: 1024px) {
  :root {
    --header-height: 6.4rem;
  }
}
@font-face {
  font-family: "Pretendard Variable";
  font-weight: 45 920;
  font-style: normal;
  src: url("../../../../layouts/mosound_com/assets/fonts/pretendard-variable.woff2") format("woff2-variations");
}
*, *:before, *:after {
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Pretendard Variable", sans-serif !important;
  font-size: 62.5%;
  font-weight: 450;
  letter-spacing: -0.025rem;
  -webkit-font-smoothing: antialiased;
}
body {
  overflow: hidden;
}
.xe_content {
  font-family: "Pretendard Variable", sans-serif !important;
}
.xe_content hr {
  border: 0 none;
  border-top: 0.1rem solid #DDD;
}
.xe_content p {
  font-weight: 450;
  line-height: 2.5 !important;
}
@media (max-width: 768px) {
  .xe_content p {
    font-size: 1.5rem;
    line-height: 2 !important;
  }
  .xe_content p [style*="36px"] {
    font-size: 2.8rem !important;
  }
  .xe_content p [style*="28px"] {
    font-size: 2.4rem !important;
  }
  .xe_content p [style*="20px"] {
    font-size: 1.6rem !important;
  }
  .xe_content p [style*="18px"] {
    font-size: 1.5rem !important;
  }
  .xe_content p [style*="16px"] {
    font-size: 1.5rem !important;
  }
}
.xe_content iframe[src*="youtube.com"] {
  width: 100%;
  aspect-ratio: 1.7777777778;
  height: auto;
}
.box-flex > div > div {
  display: flex;
  flex-direction: row;
}
@media (max-width: 1024px) {
  .box-flex > div > div {
    flex-direction: column;
  }
  .box-flex > div > div .flex-remain {
    flex: 1;
    width: auto !important;
  }
}
@media (max-width: 1024px) {
  .box-flex--reverse > div > div {
    flex-direction: column-reverse;
  }
}
.box-flex .flex-1 {
  flex: 1;
}
.container {
  width: 100%;
  max-width: 168rem;
  margin: 0 auto;
  padding: 0 2.4rem;
}
@media (max-width: 1680px) {
  .container {
    padding: 0 3.2rem;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background-color: transparent;
  border-bottom: 0.1rem solid transparent;
  transition-property: background-color, border-bottom-color, box-shadow;
  transition-duration: 0.25s;
}
.header--active {
  background-color: #FFF;
  border-bottom-color: #DDD;
  box-shadow: 0 0 3.6rem rgba(0, 0, 0, 0.05);
}
.header__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}
.header__brand {
  position: relative;
  z-index: 5500;
  height: 2rem;
}
.header__brand img {
  height: 100%;
  aspect-ratio: 6.8301886792;
  filter: invert(100%);
  transition: filter 0.25s;
}
.header__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 2.8rem;
}
.header__nav input {
  display: none;
}
.header__nav-item {
  position: relative;
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 550;
  opacity: 0.85;
  cursor: pointer;
  transition: color 0.25s, opacity 0.25s, font-weight 0.25s;
}
.header__nav-item--active, .header__nav-item:hover {
  font-weight: 750;
  opacity: 1;
}
.header__nav-item--active .header__nav-item-sub, .header__nav-item:hover .header__nav-item-sub {
  pointer-events: all;
  opacity: 1;
}
.header__nav-item--active .header__nav-item-sub {
  display: none !important;
}
.header__nav-item-sub {
  position: absolute;
  top: 3.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0.8rem 0;
  list-style: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background-color: #FFF;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.header__nav-item-sub:before {
  content: "";
  position: absolute;
  top: -1.2rem;
  left: 0;
  display: block;
  width: 100%;
  height: 1.2rem;
}
@media (max-width: 1024px) {
  .header__nav-item-sub {
    display: none !important;
  }
}
.header__nav-item-sub-item {
  padding: 0.8rem 2rem;
}
.header__nav-item-sub-item a {
  display: block;
  color: #333;
  font-size: 1.5rem;
  font-weight: 450;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.8rem;
    width: 100vw;
    height: 100vh;
    padding: calc(15vh + var(--header-height)) 0 15vh;
    overflow: hidden;
    background-color: #FFF;
  }
  .header__nav-item {
    color: #111;
    font-size: 2.1rem;
    font-weight: 600;
  }
  .header__nav input {
    position: fixed;
    top: 1.2rem;
    right: 2rem;
    z-index: 10;
    display: block;
    width: 4.4rem;
    height: 4.4rem;
    margin: 0;
    padding: 0;
    opacity: 0;
  }
  .header__nav:before, .header__nav:after {
    content: "";
    position: absolute;
    top: 3.2rem;
    right: 3.2rem;
    z-index: 10;
    display: block;
    width: 2rem;
    height: 0.4rem;
    background-color: #111;
    pointer-events: none;
    transition: transform 0.25s;
  }
  .header__nav:before {
    transform: rotate(-45deg);
  }
  .header__nav:after {
    transform: rotate(45deg);
  }
  .header__nav:not(.header__nav:has(input:checked)) {
    position: relative;
    width: 2rem;
    height: 0.4rem;
    padding: 0;
    overflow: visible;
  }
  .header__nav:not(.header__nav:has(input:checked)):before, .header__nav:not(.header__nav:has(input:checked)):after {
    left: 0;
    right: unset;
    transform: unset;
    background-color: #FFF;
  }
  .header__nav:not(.header__nav:has(input:checked)):before {
    top: -0.8rem;
  }
  .header__nav:not(.header__nav:has(input:checked)):after {
    top: 0.8rem;
  }
  .header__nav:not(.header__nav:has(input:checked)) .header__nav-item {
    display: none;
  }
}
.header--active .header__brand img {
  filter: none;
}
.header--active .header__nav-item {
  color: #111;
}
@media (max-width: 1024px) {
  .header:has(input:checked) .header__brand img {
    filter: none;
  }
  .header--active .header__nav:not(.header--active .header__nav:has(input:checked)) {
    background-color: #111;
  }
  .header--active .header__nav:not(.header--active .header__nav:has(input:checked)):before, .header--active .header__nav:not(.header--active .header__nav:has(input:checked)):after {
    background-color: #111;
  }
}
.footer {
  padding: 2rem 0;
  background-color: #111;
  color: #FFF;
  font-size: 1.4rem;
  text-align: center;
  line-height: 2 !important;
}
@media (max-width: 768px) {
  .footer {
    text-align: left;
    font-size: 1.25rem;
  }
  .footer .container {
    padding: 0 2rem;
  }
}
.index-jumbotron {
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
@media (max-width: 768px) {
  .index-jumbotron {
    height: 75vh;
  }
}
.index-jumbotron .swiper {
  width: 100vw;
  height: 100vh;
}
@media (max-width: 768px) {
  .index-jumbotron .swiper {
    height: 75vh;
  }
}
.index-jumbotron .swiper-slide {
  position: relative;
  width: 100vw;
  height: 100vh;
  padding-top: calc(var(--header-height) / 2);
  overflow: hidden;
  background-color: #000;
}
@media (max-width: 768px) {
  .index-jumbotron .swiper-slide {
    height: 75vh;
    padding-top: var(--header-height);
  }
}
.index-jumbotron .swiper-slide img {
  position: absolute;
  top: -5%;
  left: -5%;
  z-index: 0;
  width: 110%;
  height: 110%;
  object-fit: cover;
  filter: blur(0.2rem);
  opacity: 0.425;
  pointer-events: none;
}
.index-jumbotron .swiper-slide .container {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4.8rem;
  height: 100%;
}
.index-jumbotron .swiper-slide .container h1, .index-jumbotron .swiper-slide .container p {
  margin: 0;
  color: #FFF;
}
.index-jumbotron .swiper-slide .container h1 {
  font-size: 8rem;
  font-weight: 300;
  line-height: 1;
}
.index-jumbotron .swiper-slide .container h1 b {
  font-weight: 750;
}
.index-jumbotron .swiper-slide .container p {
  font-size: 3.6rem;
  font-weight: 450;
  line-height: 1.25;
}
.index-jumbotron .swiper-slide .container .index-jumbotron__help {
  margin-bottom: -2.8rem;
  color: #FFFA;
  font-size: 2rem;
  font-weight: 500;
}
.index-jumbotron .swiper-slide .container .index-jumbotron__help br {
  display: none;
}
.index-jumbotron .swiper-slide .container .index-jumbotron__campus {
  display: flex;
  align-items: center;
  gap: 2.8rem;
  margin-bottom: 7.2rem;
}
.index-jumbotron .swiper-slide .container .index-jumbotron__campus a {
  color: #FFF;
  font-size: 2.8rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-width: 0.3rem;
  text-underline-offset: 0.6rem;
  opacity: 0.75;
}
.index-jumbotron .swiper-slide .container .index-jumbotron__campus a.active {
  font-weight: 880;
  text-decoration-color: #FFF;
  opacity: 1;
}
@media (max-width: 1024px) {
  .index-jumbotron .swiper-slide .container h1 {
    font-size: 6.4rem;
  }
  .index-jumbotron .swiper-slide .container p {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .index-jumbotron .swiper-slide .container {
    gap: 2.4rem;
    text-align: center;
  }
  .index-jumbotron .swiper-slide .container h1 {
    text-wrap: pretty;
    font-size: 3.2rem;
  }
  .index-jumbotron .swiper-slide .container p {
    font-size: 1.8rem;
  }
  .index-jumbotron .swiper-slide .container br {
    display: none;
  }
  .index-jumbotron .swiper-slide .container .index-jumbotron__help {
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
  }
  .index-jumbotron .swiper-slide .container .index-jumbotron__help br {
    display: block !important;
  }
  .index-jumbotron .swiper-slide .container .index-jumbotron__campus {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem 2rem;
    margin-top: -1.2rem;
    margin-bottom: 2.4rem;
  }
  .index-jumbotron .swiper-slide .container .index-jumbotron__campus a {
    font-size: 1.6rem;
  }
}
.index-video {
  position: relative;
  padding: 12rem 0;
  text-align: center;
}
.index-video h1 {
  margin: 0;
  color: var(--primary-color);
  font-size: 3.6rem;
  font-weight: 850;
  line-height: 1;
}
.index-video p {
  margin: 1.6rem 0 0;
  color: #555;
  font-size: 1.8rem;
  font-weight: 450;
  line-height: 1.375;
}
@media (max-width: 1024px) {
  .index-video {
    padding: 8rem 0;
  }
  .index-video h1 {
    font-size: 3.2rem;
  }
  .index-video p {
    font-size: 1.6rem;
  }
}
.index-video__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  aspect-ratio: calc((640*5) / (360*3));
  margin: 4.8rem auto 0;
}
@media (max-width: 1024px) {
  .index-video__list {
    aspect-ratio: calc((640*2) / (360*4));
  }
}
.index-video__list-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  width: calc(100% / 5);
  height: auto !important;
  aspect-ratio: 1.7777777778;
  margin: 0 !important;
  padding: 0 !important;
  background-color: #000 !important;
}
.index-video__list-item img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.25s;
}
.index-video__list-item svg {
  position: relative;
  z-index: 5;
  color: #FFF;
  width: 4rem;
  height: 4rem;
  opacity: 0;
  transition: opacity 0.25s;
}
.index-video__list-item b {
  position: relative;
  z-index: 5;
  display: block;
  width: 100%;
  padding: 0 1.6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 750;
  opacity: 0;
  transition: opacity 0.25s;
}
.index-video__list-item:hover img {
  opacity: 0.375;
}
.index-video__list-item:hover svg, .index-video__list-item:hover b {
  opacity: 1;
}
@media (max-width: 1024px) {
  .index-video__list-item {
    width: calc(100% / 2);
  }
  .index-video__list-item svg {
    width: 2.8rem;
    height: 2.8rem;
  }
  .index-video__list-item b {
    font-size: 1.6rem;
  }
}
.index-video a {
  margin-top: 4.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 5.6rem;
  padding: 0 5.6rem;
  background-color: var(--primary-color);
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}
.index-candidate {
  position: relative;
  padding: 20rem 0 16rem;
  background-color: #F7F6F4;
}
.index-candidate h1 {
  margin: 0;
  color: var(--primary-color);
  font-size: 3.6rem;
  font-weight: 850;
  line-height: 1;
}
.index-candidate p {
  margin: 1.6rem 0 0;
  color: #555;
  font-size: 1.8rem;
  font-weight: 450;
  line-height: 1.375;
}
@media (max-width: 1024px) {
  .index-candidate {
    padding: 8rem 0;
    text-align: center;
  }
  .index-candidate h1 {
    font-size: 3.2rem;
  }
  .index-candidate p {
    font-size: 1.6rem;
  }
}
.index-candidate a {
  margin-top: 7.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 4.8rem;
  padding: 0 5.6rem;
  background-color: var(--primary-color);
  color: #FFF;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
}
.index-candidate:before {
  content: "MODE MUSIC ACADEMY";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  color: #000;
  font-size: calc(100vw / 11.5);
  font-weight: 950;
  letter-spacing: -0.05em;
  text-align: center;
  opacity: 0.025;
}
.index-candidate .container {
  position: relative;
}
.index-candidate__marquee {
  position: absolute;
  top: -12rem;
  right: 0;
  width: calc(100% - 64rem);
  height: 44rem;
  overflow: hidden;
}
.index-candidate__marquee img {
  width: 100%;
}
@media (max-width: 1024px) {
  .index-candidate__marquee {
    position: static;
    top: unset;
    right: unset;
    width: 100%;
    height: 56rem;
    margin: 4.8rem auto 0;
  }
}
.index-teacher {
  padding: 12rem 0;
}
.index-teacher h1 {
  margin: 0;
  color: var(--primary-color);
  font-size: 3.6rem;
  font-weight: 850;
  line-height: 1;
}
.index-teacher p {
  margin: 1.6rem 0 0;
  color: #555;
  font-size: 1.8rem;
  font-weight: 450;
  line-height: 1.375;
}
@media (max-width: 1024px) {
  .index-teacher {
    padding: 8rem 0;
  }
  .index-teacher h1 {
    font-size: 3.2rem;
  }
  .index-teacher p {
    font-size: 1.6rem;
  }
}
.index-teacher__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 3.6rem;
  margin-top: 4.8rem;
}
@media (max-width: 1024px) {
  .index-teacher__list {
    gap: 2.4rem;
  }
}
.index-teacher__list-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 1.2rem;
  width: calc((100% - (3.6rem * 3)) / 4);
  aspect-ratio: 0.6666666667;
  overflow: hidden;
  background-color: #000;
}
.index-teacher__list-item img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.5);
  opacity: 0.5;
  transition-property: filter, opacity, transform;
  transition-duration: 0.25s;
}
.index-teacher__list-item div {
  position: relative;
  z-index: 10;
  padding: 2.2rem;
  background-color: transparent;
  transition: background-color 0.25s;
}
.index-teacher__list-item h3 {
  margin: 0;
  color: #FFF;
  font-size: 2.4rem;
  font-weight: 750;
  line-height: 1;
}
.index-teacher__list-item p {
  margin: 0.8rem 0 0;
  color: #FFF;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}
.index-teacher__list-item:hover img {
  transform: scale(1.1);
  filter: unset;
  opacity: 1;
}
.index-teacher__list-item:hover div {
  background-color: #0005;
}
@media (max-width: 1024px) {
  .index-teacher__list-item {
    width: calc((100% - 2.4rem) / 2);
    aspect-ratio: 1.6666666667;
  }
  .index-teacher__list-item div {
    padding: 1.8rem;
  }
  .index-teacher__list-item h3 {
    font-size: 1.8rem;
  }
  .index-teacher__list-item p {
    font-size: 1.5rem;
    font-weight: 550;
  }
}
@media (max-width: 768px) {
  .index-teacher__list-item {
    width: 100%;
    aspect-ratio: 2.3333333333;
  }
}
.index-area {
  position: relative;
  padding: 20rem 0;
  background-color: #FDFCFA;
  text-align: center;
}
.index-area h1 {
  margin: 0;
  color: var(--primary-color);
  font-size: 3.6rem;
  font-weight: 850;
  line-height: 1;
}
.index-area p {
  margin: 1.6rem 0 0;
  color: #555;
  font-size: 1.8rem;
  font-weight: 450;
  line-height: 1.375;
}
.index-area:before {
  content: "MODE MUSIC ACADEMY";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  color: #000;
  font-size: calc(100vw / 11.5);
  font-weight: 950;
  letter-spacing: -0.05em;
  text-align: center;
  opacity: 0.025;
}
@media (max-width: 1024px) {
  .index-area {
    padding: 8rem 0;
  }
  .index-area h1 {
    font-size: 3.2rem;
  }
  .index-area p {
    font-size: 1.6rem;
  }
}
.index-area .swiper {
  width: 100%;
  height: 32rem;
  margin-top: 4.8rem;
}
.index-area .swiper-slide {
  padding: 0 1.2rem;
}
.index-area .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-area a {
  margin-top: 4.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 5.6rem;
  padding: 0 5.6rem;
  background-color: var(--primary-color);
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 1024px) {
  .index-area > .container {
    max-width: 100%;
    padding: 0 !important;
  }
  .index-area > .container h1, .index-area > .container p {
    padding: 0 3.2rem;
  }
}
.sub-jumbotron {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 36rem;
  padding-top: calc(var(--header-height) / 3 * 2);
}
@media (max-width: 768px) {
  .sub-jumbotron {
    height: 28rem;
    padding-top: calc(var(--header-height) / 4 * 3);
  }
}
.sub-jumbotron > img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub-jumbotron:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  background-color: #000A;
}
.sub-jumbotron__nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 7.2rem;
  background-color: var(--primary-color);
  text-align: center;
}
.sub-jumbotron__nav-item {
  display: inline-flex;
  margin: 0 2rem;
  color: #FFF;
  font-size: 1.6rem;
  font-weight: 650;
  opacity: 0.75;
  transition: opacity 0.25s;
}
.sub-jumbotron__nav-item--active, .sub-jumbotron__nav-item:hover {
  opacity: 1;
}
.sub-jumbotron__nav-item--active {
  font-weight: 800;
}
@media (max-width: 768px) {
  .sub-jumbotron__nav-item {
    margin: 0.4rem 1.2rem;
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .sub-jumbotron__nav {
    height: auto;
    min-height: 6rem;
    padding: 1.2rem 0;
  }
  .sub-jumbotron__nav .container {
    padding: 0 1.2rem !important;
  }
}
.sub-jumbotron__current {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
  color: #FFF;
  font-size: 4rem;
  font-weight: 900;
  text-align: center;
}
@media (max-width: 768px) {
  .sub-jumbotron__current {
    font-size: 3.2rem;
  }
}
.sub-main {
  padding: 5.6rem 0;
}
.sub-main__header {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.6rem;
  padding: 1.6rem 0;
  border-bottom: 0.1rem solid #DDD;
}
.sub-main__header b {
  color: #111;
  font-size: 4rem;
  font-weight: 850;
}
.sub-main__header img {
  height: 2.4rem;
  opacity: 0.375;
  pointer-events: none;
}
@media (max-width: 768px) {
  .sub-main__header {
    padding: 1.2rem 0;
  }
  .sub-main__header b {
    font-size: 3.2rem;
  }
  .sub-main__header img {
    height: 2rem;
    margin-top: -0.2rem;
  }
}
.sub-main__help {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
  width: 100%;
  margin-top: -1.2rem;
  margin-bottom: 2.4rem;
  padding: 1.4rem 2.4rem;
  background-color: #EEE;
}
.sub-main__help svg {
  width: 3.2rem;
  height: 3.2rem;
  color: #111;
}
.sub-main__help-tel {
  color: #333;
  font-size: 3.6rem;
  font-weight: 700;
}
.sub-main__help-open {
  color: #888;
  font-size: 1.4rem;
}
.sub-main__help-kakao {
  display: flex;
  align-items: center;
  color: #888;
  font-size: 1.4rem;
  text-decoration: none;
}
.sub-main__help-kakao:before {
  content: "또는";
  margin: 0 4rem;
}
.sub-main__help-text {
  color: #555;
  font-size: 1.4rem;
}
@media (max-width: 1680px) {
  .sub-main__help-kakao:before {
    margin: 0 2rem;
  }
}
@media (max-width: 768px) {
  .sub-main__help-kakao::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .sub-main {
    padding: 3.2rem 0;
  }
}
.index-main:after, .sub-main:after {
  content: "";
  display: block;
  clear: both;
}
.box-teacher > div {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 6rem;
}
@media (max-width: 1024px) {
  .box-teacher > div {
    flex-direction: column;
  }
}
.box-teacher > div .teacher-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4rem;
  width: 36rem;
  padding-right: 6rem;
  border-right: 0.1rem solid #DDD;
}
.box-teacher > div .teacher-list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  width: calc((36rem - 4rem - 6rem - 0.1rem) / 2);
  padding: 0;
  background-color: transparent;
  border: 0 none;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.box-teacher > div .teacher-list__item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 100vw;
}
.box-teacher > div .teacher-list__item span {
  color: #333;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 1024px) {
  .box-teacher > div .teacher-list {
    align-items: center;
    justify-content: center;
    gap: 2.4rem;
    width: 100%;
    padding-right: 0;
    padding-bottom: 2.4rem;
    border-right: 0 none;
    border-bottom: 0.1rem solid #DDD;
  }
  .box-teacher > div .teacher-list__item {
    width: 8rem;
  }
  .box-teacher > div .teacher-list__item span {
    font-size: 1.4rem;
  }
}
.box-teacher > div div:has(.xe_content) {
  flex: 1;
}
.box-teacher > div div:has(.xe_content) img {
  width: 24rem;
  max-width: 80vw;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.8rem;
}
@media (max-width: 1024px) {
  .box-teacher > div div:has(.xe_content) {
    text-align: center;
  }
}
.box-gallery > div {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2.4rem;
}
.box-gallery > div p {
  display: contents;
}
.box-gallery > div img {
  width: calc((100% - 2.4rem * 2) / 3);
  aspect-ratio: 1.4545454545;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .box-gallery > div img {
    width: calc((100% - 2.4rem) / 2);
  }
}
@media (max-width: 768px) {
  .box-gallery > div img {
    width: 100%;
  }
}
.box-candidate table {
  margin-top: 0.8rem;
  border-collapse: collapse;
}
.box-candidate th, .box-candidate td {
  padding: 1.2rem 1.6rem;
  border: 0.1rem solid #DDD;
  text-align: left;
  vertical-align: top;
}
.box-candidate th {
  background-color: #FAFAFA;
  line-height: 1;
}
@media (max-width: 1024px) {
  .box-candidate th {
    font-size: 1.6rem !important;
  }
  .box-candidate th * {
    font-size: 1.6rem !important;
  }
}
.box-candidate td {
  line-height: 1.75;
}
@media (max-width: 1024px) {
  .box-candidate td {
    font-size: 1.3rem !important;
  }
  .box-candidate td * {
    font-size: 1.3rem !important;
  }
}
#xet-simple-board .simple-board__gallery.style-b .item {
  box-shadow: unset !important;
  border-radius: 0.4rem !important;
}
/*# sourceMappingURL=a35bc3aa4494437d1c3cd97322ef62ddbaadabb5.app.scss.map */
