@charset "UTF-8";
a {
  cursor: pointer;
}

p {
  line-height: 1.6;
}

em {
  text-decoration: underline;
}

/* 인풋 정의 */
.select {
  background: url(../img/arrow_down_thick_gray.svg) no-repeat right center;
}

.input[type=checkbox],
.input[type=radio] {
  width: 22.5px;
  min-width: 22.5px;
  height: 22.5px;
  background: url(../img/chk_default.svg) no-repeat center/contain;
}
.input[type=checkbox]:checked,
.input[type=radio]:checked {
  background-image: url(../img/chk_checked.svg);
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #fff inset;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.input[type=file]::-webkit-file-upload-button,
.input[type=file]::file-selector-button {
  width: 0;
  visibility: hidden;
}

.input[type=text] {
  min-width: 230px;
  padding: 0.5em 0;
  text-indent: 10px;
}
.input[type=text]:read-only {
  cursor: default;
}

.input[type=number] {
  -moz-appearance: textfield;
}

.input[type=number]::-webkit-outer-spin-button,
.input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form--verify {
  width: clamp(20.43rem, 20.83vw, 35.71rem);
  margin: 0 auto;
}
.form--verify .input {
  width: 100%;
  letter-spacing: -0.05em;
}

/* 버튼 정의 */
.btn-go {
  display: inline-flex;
  height: 2.5em;
  padding: 0 0.625em;
  border-radius: 8px;
}

.btn-basic {
  min-width: 100px;
  height: 46px;
  padding: 0.6em 1.11em;
  border: 1px solid transparent;
  border-radius: 8px;
}
.btn-basic.large {
  min-width: 200px;
  height: 59px;
}
.btn-basic.list {
  min-width: 200px;
  height: 50px;
  margin: 5px 10px;
}
.btn-basic.bor {
  border-color: var(--color-accent2);
}
.btn-basic:disabled {
  background-color: #dedede;
  color: #a9a9a9;
}

/* 박스, 보더 등 */
.box--line {
  padding: var(--px100) 2em;
  border: 1px solid #d8d8d8;
}
.box--line.accent {
  border-color: var(--color-accent);
}
.box--line.accent2 {
  border-color: var(--color-accent2);
}
.box--line.shorter {
  padding: var(--px60);
}
.box--line.round {
  border-radius: 30px;
}
.box--line.p30 {
  padding: 30px;
}

.bar--hor {
  display: inline-block;
  width: 7.85rem;
  height: 2px;
}

.bar--full {
  width: 100%;
  height: 1px;
  background-color: #000;
}
.bar--full.bgcolg2 {
  background-color: #d8d8d8;
}

.link--more {
  width: max-content;
  padding-bottom: 10px;
  color: #a9a9a9;
}

.bor-accent {
  border: 1px solid var(--color-accent);
}

.bor-accent2 {
  border: 1px solid var(--color-accent2);
}

.bb-a9 {
  border-bottom: 1px solid #a9a9a9;
}

.bb-de {
  border-bottom: 2px solid #dedede;
}
.bb-de > .input, .bb-de > .select {
  padding: 0.5em 0;
}
.bb-de::after {
  content: "";
}

.bb-de2 {
  position: relative;
  border-bottom: 2px solid transparent;
}
.bb-de2 > .input, .bb-de2 > .select {
  padding: 0.5em 0;
}
.bb-de2::after {
  content: "";
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #dedede;
}

/* 테이블 */
.table-wrapper {
  overflow-x: auto;
}
.table-wrapper table {
  width: 100%;
  min-width: 992px;
}

/* 인덱스 */
.index__visual {
  height: 100vh;
  overflow: hidden;
}

.visual__left {
  width: 12.5vw;
  height: 100%;
  flex-direction: column;
}
.visual__left h1 {
  height: clamp(14rem, 12.5vw, 18rem);
  padding: 15px;
  border-bottom: 1px solid #d9d9d9;
  aspect-ratio: 1/1;
}

.visual__left__txts {
  left: 50%;
  bottom: -25px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: left;
  transform-origin: left;
}

.visual__scroll {
  width: max-content;
  padding: 0.7rem 1.4286rem;
  margin-right: 7rem;
  border-bottom: 1px solid #d8d8d8;
  color: #6f6f6f;
}
.visual__scroll img {
  margin-right: 1.5rem;
  -webkit-animation: fadeRight 1s alternate infinite;
  animation: fadeRight 1s alternate infinite;
}

.visual__content {
  top: 45%;
  left: 10rem;
  z-index: 2;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.visual__content .visual__tit {
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
  line-height: 1.5;
}
.visual__content .visual__link {
  position: relative;
  padding: 10px 0 20px 10px;
  border-bottom: 1px solid #fff;
}
.visual__content .visual__link:first-of-type {
  margin-right: 2.857rem;
}
.visual__content .visual__link span {
  padding-left: 2.857rem;
  padding-right: 1.7143rem;
}
.visual__content .visual__link img:last-of-type {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.visual__content .visual__link:hover img:last-of-type {
  -webkit-animation: fadeRight 0.5s linear;
  animation: fadeRight 0.5s linear;
}

.visual__right {
  width: 87.5vw;
}
.visual__right .visual__tit {
  margin-bottom: 120px;
}
.visual__right .visual__bg img {
  object-fit: cover;
}

.visual__pagination {
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
}
.visual__pagination span {
  position: relative;
  display: inline-flex;
  width: 46px;
  height: 46px;
  margin: 0 !important;
  background: none;
  -webkit-filter: drop-shadow(0 6px 4px rgba(0, 0, 0, 0.15));
  filter: drop-shadow(0 6px 4px rgba(0, 0, 0, 0.15));
}
.visual__pagination span.swiper-pagination-bullet-active svg {
  visibility: visible;
}
.visual__pagination svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: var(--color-accent);
  fill: none;
  stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  visibility: hidden;
}
.visual__pagination svg.back {
  z-index: -1;
  stroke-dashoffset: 125.6;
  stroke-dasharray: none;
  stroke: #fff;
  opacity: 0.3;
}

.index__overview {
  padding: var(--px180) 0;
}
.index__overview div.fz35 span {
  margin-top: 1.2857rem;
}
.index__overview .flx ~ p {
  max-width: 43.8rem;
}

.swiper--facil-wrapper {
  height: 500px;
}
.swiper--facil-wrapper .facil__tit {
  top: 0;
  left: calc(51.5% + var(--px80));
  z-index: 2;
}

.swiper--facil .swiper-slide {
  width: 100% !important;
}

.facil__progress {
  left: calc(51.5% + 1px);
  bottom: 0;
  width: fit-content;
  padding: 22px 20px 22px 30px;
  background-color: #fff;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  z-index: 2;
}
.facil__progress .progress__bar {
  width: 182px;
  height: 4.5px;
  background-color: #d8d8d8;
}
.facil__progress .progress__bar .progress__fill {
  height: 100%;
  background-color: var(--color-accent);
}

.facil__img {
  width: 51.5%;
}
.facil__img img {
  object-fit: cover;
}

.facil__txt {
  width: 48%;
  padding-left: clamp(40px, 4.16vw, 90px);
  background-color: #fff;
}

.swiper--facil-mini {
  right: 0;
  bottom: 0;
  width: calc(48% - clamp(40px, 4.16vw, 90px));
  height: 142px;
}
.swiper--facil-mini .swiper-slide {
  max-width: 187px;
}
.swiper--facil-mini .swiper-slide .facil-mini__overlay {
  inset: 0;
  background: url(../img/ic_plus.svg) no-repeat center bottom rgba(27, 210, 166, 0.8);
  z-index: 2;
  opacity: 0;
}
.swiper--facil-mini .swiper-slide .facil-mini__overlay:hover {
  opacity: 1;
}
.swiper--facil-mini .swiper-slide.swiper-slide-thumb-active .facil-mini__overlay {
  opacity: 1;
}

.index__board,
.index__mapngall {
  padding: var(--px120) 0;
}

.index__board {
  background-image: linear-gradient(to right, var(--color-accent2) 34.5%, #fff 34.5%);
}

.index__mapngall {
  background-color: #f8f8f8;
}

.index__map,
.index__gall {
  width: calc(50% - var(--px40));
}

.map-wrapper {
  height: 26.43rem;
  background: url(../img/img_map_static.png) no-repeat center/cover;
}
.map-wrapper .map__more {
  bottom: 0;
  right: 0;
  padding: 17px 40px;
  background-color: #fff;
}

.floating-wrapper {
  position: fixed;
  right: 0;
  bottom: 11.2rem;
  z-index: 9;
  border-radius: 1.4286rem;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
}
.floating-wrapper a.por {
  display: block;
  padding: 2.143rem 2.143rem 10px;
  border-top-left-radius: inherit;
  line-height: 1.5;
  background-color: #fff;
}
.floating-wrapper a.por strong {
  display: block;
}
.floating-wrapper a.por::before {
  content: "";
  position: absolute;
  top: -1.8rem;
  left: 50%;
  display: inline-block;
  width: 4.3214rem;
  height: 3.601rem;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: url(../img/ic_certi.svg);
}
.floating-wrapper div.colwhite {
  padding: 10px 1rem;
  border-bottom-left-radius: inherit;
  background-color: var(--color-accent);
}
.floating-wrapper button {
  width: 100%;
}

/* about 페이지 */
.welcome__tit {
  padding-bottom: 40px;
  background: url(../img/bg_welcome.svg) no-repeat right top/contain;
  line-height: 1.6;
}
.welcome__tit ~ p img.mr30 {
  max-width: 140px;
}

.facility-wrapper {
  width: calc(33.33333% - var(--px40));
}
.facility-wrapper .facil__img {
  width: 100%;
  height: 310px;
}
.facility-wrapper .swiper-button-next,
.facility-wrapper .swiper-button-prev {
  width: 64px;
  height: 53px;
  inset: unset;
  right: 0;
  bottom: 0;
  margin-top: 0;
}
.facility-wrapper .swiper-button-next::after,
.facility-wrapper .swiper-button-prev::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}
.facility-wrapper .swiper-button-next.swiper-button-disabled,
.facility-wrapper .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
}
.facility-wrapper .swiper-button-next::after {
  background: url(../img/ic_view_blue.svg) no-repeat center #fff;
}
.facility-wrapper .swiper-button-prev {
  right: 64px;
  transform: rotateY(180deg);
}
.facility-wrapper .swiper-button-prev::after {
  background: url(../img/ic_view_wh.svg) no-repeat center #a9a9a9;
}

.org__chart {
  display: block;
  max-width: 1120px;
  margin: 0 auto;
}

.map-lg-wrapper {
  height: 34.28rem;
}
.map-lg-wrapper ~ .bar--full {
  background-color: #d8d8d8;
  margin: var(--px80) 0;
}

.about__href {
  padding: 20px 0;
  border-bottom: 2px solid #1bd2a6;
}
.about__href:last-child {
  border-color: #54abfb;
}
.about__href img.mr20 {
  width: 30px;
}

.about__contacts ~ p {
  max-width: 67rem;
}

.about__transport strong.colg3 {
  display: inline-block;
  width: 200px;
  min-width: 200px;
  padding-top: 4px;
}
.about__transport li.flx {
  margin-bottom: 30px;
}
.about__transport li.flx:last-of-type {
  margin-bottom: 0;
}
.about__transport div.flx span.mr10 {
  padding-top: 3px;
}

/* how 페이지 */
.eligible__q {
  padding: 1em 1.5em;
  background-color: #f8f8f8;
  border-left: 3px solid var(--color-accent2);
}

.eligible__a {
  padding: 2.22em 0;
  align-items: flex-start;
  line-height: 1.6;
}
.eligible__a.with-btn > img {
  margin-top: 5px;
}

.center__intro {
  padding-bottom: var(--px60);
  margin-bottom: var(--px60);
  border-bottom: 1px dotted #d8d8d8;
}
.center__intro img {
  width: 30%;
  max-width: 12.5rem;
  margin-right: var(--px60);
}

.center__figure {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.center__figure img {
  width: 22%;
}

.tit--green {
  padding-left: 20px;
  border-left: 4px solid var(--color-accent);
}

.center__boxes .box--line {
  padding: var(--px50);
}
.center__boxes .box--line.accent2 {
  width: calc(50% - 25px);
  margin-bottom: var(--px50);
}
.center__boxes .box--line.accent {
  width: calc(33.33333% - 33.333333px);
}

.process__step {
  padding: 30px;
  border-radius: 500px;
  border: 1px solid #d8d8d8;
}
.process__step ~ .tx-cent {
  margin: var(--px50) 0;
}
.process__step .step__txts span.colg2 {
  margin: 0 1em;
}

.step__name {
  max-width: 30rem;
  padding: 10px 20px 10px 10px;
  margin-right: var(--px80);
  border-radius: 500px;
  white-space: nowrap;
}
.step__name span.ff-tmoney {
  width: 59px;
  min-width: 59px;
  height: 59px;
  margin-right: 18px;
  background-image: url(../img/bg_number_green.svg);
  background-size: contain;
}
.step__name span.ff-tmoney.accent2 {
  background-image: url(../img/bg_number_blue.svg);
}

.step__txts {
  line-height: 1.8;
}

.table--program thead th {
  padding: 1.11em 1em;
  border: 1px solid #fff;
  border-bottom: none;
}
.table--program tbody td {
  padding: 1.11em 1em;
  border: 1px solid #d8d8d8;
}

.program__item {
  width: calc(25% - 30px);
  padding: 1.944em 1.666em 1.944em 1.944em;
  margin-bottom: 40px;
}

/* program 페이지 */
.apply__notice {
  padding: 30px;
  border-radius: 20px;
  align-items: flex-start;
}
.apply__notice.middle {
  align-items: center;
}

.applicant__info {
  padding: var(--px50) 20px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #d8d8d8;
}

.flxbox:has(.apply__step) {
  min-width: 320px;
  row-gap: 30px;
}

.apply__step {
  width: 16rem;
  height: 16rem;
  padding: 38px;
  background-color: #f9f9f9;
  border-radius: 50%;
  flex-direction: column;
  aspect-ratio: 1/1;
}
.apply__step .ff-jamsil {
  padding: 0.25em 0.75em;
  border-radius: 20px;
}
.apply__step strong {
  padding: 15px 0;
}
.apply__step ~ span {
  margin: 20px;
}

.fieldset__tit {
  padding-bottom: var(--px40);
  border-bottom: 2px solid #000;
}

fieldset.col3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: var(--px60);
}
fieldset.col3 label.flx strong {
  min-width: 100px;
}

.mw130 {
  min-width: 130px;
}

fieldset.flx div.flxbox {
  row-gap: 30px;
}

select[name=student_gender] {
  min-width: 230px;
  text-indent: 10px;
}

.apply__term {
  padding: 30px;
  border-radius: 20px;
}

.apply-wrapper,
.schedule-wrapper {
  gap: var(--px60) var(--px40);
}

.apply__item,
.schedule__item {
  width: 100%;
  max-width: 440px;
  height: 265px;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #d8d8d8;
  background-color: #fff;
}
.apply__item th a.flxbt,
.schedule__item th a.flxbt {
  padding-bottom: 15px;
  border-bottom: 1px solid #d8d8d8;
}
.apply__item tbody td,
.schedule__item tbody td {
  padding: 10px 0;
}
.apply__item tbody tr:first-of-type td,
.schedule__item tbody tr:first-of-type td {
  padding-top: 20px;
}

.schedule__item {
  max-width: 330px;
  height: 382px;
  padding: 0;
}
.schedule__item thead th {
  padding: 15px 20px;
  border-bottom: 1px solid #d8d8d8;
}
.schedule__item thead span.flxcent {
  display: inline-flex;
  width: max-content;
  height: 35px;
  padding: 0 1rem;
  border-radius: 5px;
}
.schedule__item tbody td {
  padding: 10px 20px;
}
.schedule__item .btn-basic {
  bottom: 20px;
  width: calc(100% - 44px);
}

.schdule__status {
  height: 35px;
  padding: 0.6em 0.85em;
  border: 1px solid var(--color-accent2);
  border-radius: 5px;
  cursor: default;
}
.schdule__status.green {
  border-color: var(--color-accent);
}

.schedule__history {
  max-height: 170px;
  overflow-y: auto;
}
.schedule__history li {
  margin-bottom: 12px;
}
.schedule__history li:first-of-type {
  font-weight: 700;
}
.schedule__history li:last-of-type {
  margin-bottom: 0;
}
.schedule__history li span.mr10 {
  padding-top: 3px;
}

.fc-bootstrap .table-bordered td,
.fc-bootstrap .table-bordered th {
  border-color: #d8d8d8;
}
.fc-bootstrap .fc-toolbar.fc-header-toolbar {
  margin-bottom: 40px;
}
.fc-bootstrap .fc-head {
  display: none;
}
.fc-bootstrap .fc-center {
  display: flex;
}
.fc-bootstrap .fc-center .fc-prev-button span.fa::before,
.fc-bootstrap .fc-center .fc-next-button span.fa::before {
  content: "";
  display: inline-flex;
  width: 35px;
  height: 35px;
  background: url(../img/arrow_left_thin_gray.svg) no-repeat center;
}
.fc-bootstrap .fc-center .fc-next-button span.fa::before {
  background-image: url(../img/arrow_right_thin_gray.svg);
}
.fc-bootstrap .fc-day-grid-event {
  border-radius: 0;
}
.fc-bootstrap .fc-event,
.fc-bootstrap .fc-event-dot {
  background-color: var(--color-accent2);
  border: 0;
}
.fc-bootstrap .fc-sun .fc-day-number {
  color: var(--color-red);
}
.fc-bootstrap .fc-title,
.fc-bootstrap .fc-today {
  font-weight: 700;
}
.fc-bootstrap .fc-today {
  background-color: #f1f8ff;
  color: var(--color-accent2);
}

.test__intro {
  padding-bottom: var(--px70);
  margin-bottom: var(--px70);
}

.test-types .test__item:first-of-type,
.test-types .test__item:nth-last-of-type(2) {
  border-right: 1px solid #d9d9d9;
}

.test__item {
  width: 50%;
  padding: var(--px50);
}

.test__divider {
  width: calc(50% - 25px);
  height: 1px;
  margin: 30px 0;
  background-color: #d9d9d9;
}

/* 모달 */
.blocker {
  z-index: 91;
}

.modal {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.modal a.close-modal {
  position: static;
  display: flex;
  width: 100%;
  height: 59px;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 0;
  background: var(--color-accent2);
  text-indent: 0;
  color: #fff;
}
.modal a.close-modal::before {
  content: "닫기";
  font-size: 1.4286rem;
}
.modal .half-btns a.close-modal,
.modal .half-btns .btn-basic {
  width: 50%;
}
.modal .half-btns a.close-modal {
  background: #6f6f6f;
}
.modal .half-btns .btn-basic {
  border-radius: 0;
}

#modalVerify,
#modalVerify_tail {
  padding: var(--px50) var(--px40);
}
#modalVerify button[type=submit].btn-basic,
#modalVerify_tail button[type=submit].btn-basic {
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0;
}

#modalVerify input.input {
  border-bottom:1px solid #ccc !important;
}
#modalVerify .form--verify,
#modalVerify_tail .form--verify {
  width: unset;
}

#modalEmpty .tx-cent {
  padding: var(--px60) 1em;
}

#modalEmail .tx-cent,
#modalApplied .tx-cent,
#modalCreate .tx-cent,
#modalDelete .tx-cent,
#modalCreateLimitError .tx-cent,
#modalCreateDateError .tx-cent {
  padding: var(--px50) var(--px40);
}

@keyframes fadeUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0.1;
  }
  50% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0.1;
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
/* 특정 구간에만 적용 */
@media screen and (min-width: 993px) {
  .program__item {
    height: 100%;
    min-height: 360px;
  }
  .program__item:nth-of-type(2), .program__item:nth-of-type(4), .program__item:nth-of-type(5), .program__item:nth-of-type(7) {
    background-color: #f1f8ff;
  }
}
@media screen and (max-width: 992px) and (min-width: 577px) {
  .program__item:nth-of-type(2), .program__item:nth-of-type(3), .program__item:nth-of-type(6), .program__item:nth-of-type(7) {
    background-color: #f1f8ff;
  }
}
/* 반응형 */
@media screen and (max-height: 860px) {
  .visual__left__txts p.nowrap {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .floating-wrapper {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .visual__left {
    display: none;
  }
  .visual__right {
    width: 100%;
  }
  .visual__content {
    left: 50%;
    width: calc(100% - 60px);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .about__contacts {
    margin-bottom: 30px;
  }
  .about__href {
    padding: 10px 0;
  }
  fieldset.col3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .center__boxes .box--line.accent2 {
    width: calc(50% - 16px);
    margin-bottom: 32px;
  }
  .center__boxes .box--line.accent {
    width: calc(33.33333% - 24px);
  }
  .center__boxes h5 {
    text-align: center;
  }
  .center__boxes h5 img {
    max-height: 40px;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .program__item {
    width: calc(50% - 20px);
  }
  .process__step {
    padding: 0;
    border: 0;
  }
  .step__name {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .step__four__line1::before,
  .step__four__line2::before {
    margin-right: 0.5em;
    color: var(--color-accent2);
    font-weight: 700;
  }
  .step__four__line1::before {
    content: "통원";
  }
  .step__four__line2::before {
    content: "입원";
  }
  .step__txts {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .index__visual {
    height: 70vh;
    padding-top: var(--header-height);
  }
  .visual__content {
    width: calc(100% - 60px);
  }
  .visual__content .visual__link {
    width: 160px;
  }
  .visual__content .visual__link:first-of-type {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .visual__content .visual__link img {
    width: 27px;
    height: 27px;
  }
  .visual__content .visual__link span {
    padding-left: 1rem;
    padding-right: 10px;
  }
  .index__overview .flxbt .fz35 {
    margin-bottom: 30px;
  }
  .index__overview .flxbt .fz35 span {
    margin-top: 0;
    margin-bottom: 20px;
  }
  .swiper--facil-wrapper {
    height: unset;
  }
  .swiper--facil-wrapper .swiper--facil {
    margin-bottom: 30px;
  }
  .facil__progress {
    top: 230px;
    left: 100%;
    height: fit-content;
    padding: 10px 20px;
    -webkit-transform: translate(-100%, -100%);
    transform: translate(-100%, -100%);
  }
  .facil__progress .mr20 {
    margin-right: 10px;
  }
  .facil__img,
  .facil__txt {
    width: 100%;
  }
  .facil__img {
    height: 230px;
    margin-bottom: 30px;
  }
  .facil__txt {
    padding-left: 0;
  }
  .swiper--facil-mini {
    position: static;
    width: 100%;
    height: 110px;
  }
  .swiper--facil-mini .swiper-slide {
    max-width: 33.33333%;
  }
  .facility-wrapper {
    width: calc(50% - var(--px40));
  }
  .facility-wrapper .swiper-button-next,
  .facility-wrapper .swiper-button-prev {
    width: 44px;
    height: 34px;
  }
  .facility-wrapper .swiper-button-next::after,
  .facility-wrapper .swiper-button-prev::after {
    background-size: 20px;
  }
  .facility-wrapper .swiper-button-prev {
    right: 44px;
  }
  .flxbox:has(.apply__step) {
    justify-content: center;
  }
  .apply__step ~ span {
    margin: 10px;
  }
  fieldset.col3 {
    grid-template-columns: none;
  }
  fieldset.col3 label.flx .bb-de,
  fieldset.col3 label.flx .bb-de2 {
    width: 100%;
  }
  fieldset.col3 select[name=student_gender] {
    width: 100%;
  }
  .schedule-wrapper {
    justify-content: space-between;
  }
  .center__figure {
    flex-wrap: wrap;
  }
  .center__figure img {
    width: 48%;
  }
  .center__figure img:nth-of-type(1), .center__figure img:nth-of-type(2) {
    margin-bottom: 2rem;
  }
  .center__boxes .box--line.accent {
    width: 100%;
    margin-bottom: 32px;
  }
  .index__board {
    position: relative;
    background-image: linear-gradient(to right, var(--color-accent2) 48%, #fff 48%);
  }
  .index__board .link--more {
    color: #fff;
    border-color: #fff;
  }
  .index__board .link--more img {
    -webkit-filter: brightness(2);
    filter: brightness(2);
  }
  .index__board::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #fff;
  }
  .index__map,
  .index__gall {
    width: 100%;
  }
  .index__map {
    margin-bottom: 50px;
  }
  .apply__item,
  .schedule__item {
    max-width: unset;
  }
  .apply__term ~ .flxbt p {
    margin-bottom: 10px;
  }
  .center__boxes .box--line.accent2 {
    width: 100%;
  }
  .test__item img.mr20 {
    max-width: 40px;
  }
}
@media screen and (max-width: 576px) {
  .map-wrapper {
    height: 15rem;
  }
  .input[type=text] {
    min-width: unset;
  }
  .btn-basic {
    min-width: 80px;
    height: 36px;
  }
  .btn-basic.list {
    height: 42px;
  }
  .btn-basic.large {
    height: 46px;
    min-width: unset;
  }
  .visual__content {
    top: 50%;
  }
  .visual__right .visual__tit {
    margin-bottom: 50px;
  }
  h3.mb30.fz35 > img {
    width: 60px;
    margin-right: 1rem;
  }
  .step__name span.ff-tmoney {
    width: 38px;
    min-width: 38px;
    height: 38px;
    margin-right: 8px;
  }
  .facility-wrapper {
    width: 100%;
  }
  .facility-wrapper .facil__img {
    height: 260px;
  }
  .about__contacts span.colg3 {
    display: block;
    visibility: hidden;
  }
  .about__transport li.flx strong.colg3 {
    padding-top: 0;
    margin-bottom: 10px;
  }
  .about__href.mr20,
  .about__href .mr20 {
    margin-right: 10px;
  }
  .center__intro img {
    margin-right: 0;
    margin-bottom: 1em;
  }
  .eligible__a.with-btn > img {
    margin-top: 0;
  }
  .eligible__a .btn-go {
    display: flex;
    margin-top: 0.5rem;
    margin-left: 0;
  }
  .apply__notice {
    padding: 20px;
  }
  .apply__notice img.mr30 {
    max-width: 40px;
    margin-bottom: 15px;
  }
  .apply__step {
    width: 11rem;
    height: 11rem;
    padding: 1rem;
  }
  .apply__step > img {
    width: 40px;
  }
  .apply__step ~ span {
    margin: 5px;
  }
  .box--line .btn-basic.colaccent2 {
    margin: 1rem;
  }
  .box--line a[href="#modalVerify"] {
    min-width: 175px;
  }
  .apply__item {
    height: unset;
  }
  section.mb100 .fd-column--576 label {
    margin-bottom: 10px;
  }
  fieldset .mw130 {
    min-width: 75px !important;
  }
  fieldset a:link {
    margin-bottom: 1rem;
  }
  fieldset .mb30:has(a:link) {
    margin-bottom: 15px;
  }
  fieldset .mb30:has(a:link) a:link {
    font-size: 1.1rem;
  }
  fieldset.flx div.flxbox {
    row-gap: 15px;
  }
  fieldset.flxbox label.mr40 {
    margin-bottom: 15px;
  }
  fieldset input[type=file] {
    width: 120px;
  }
  .fc-day-grid-event .fc-content {
    white-space: normal !important;
  }
  .box--line.accent2 {
    padding: 20px;
  }
  .board__search .input {
    width: 150px;
    min-width: unset;
  }
  .board__search .input::placeholder {
    visibility: hidden;
  }
  .schdule__status {
    height: 30px;
  }
  .schedule__item {
    height: 320px;
  }
  .schedule__item thead th {
    padding: 10px 15px;
  }
  .schedule__item tbody td {
    padding: 7px 15px;
  }
  .schedule__item .btn-basic {
    position: static;
    margin: 20px auto;
    -webkit-transform: none;
    transform: none;
  }
  .applicant__info {
    padding-left: 15px;
  }
  .applicant__info > img {
    max-width: 40px;
  }
  .applicant__info p.fz30 {
    margin-bottom: 5px;
  }
  .program__item {
    width: 100%;
  }
  .program__item:nth-of-type(2n) {
    background-color: #f1f8ff;
  }
  .test-types .test__item:first-of-type,
  .test-types .test__item:nth-last-of-type(2) {
    border-right: 0;
  }
  .test__item {
    width: 100%;
  }
  .test__divider {
    display: none;
  }
}
@media screen and (max-width: 414px) {
  .breadcrumbs {
    column-gap: 0.5rem;
    font-size: 1.1rem;
    white-space: nowrap;
  }
  .step__name {
    letter-spacing: -0.6px;
  }
  .step__name span.fz18 {
    font-size: 1rem;
  }
  .apply__step .ff-jamsil {
    font-size: 1.2rem;
  }
  .apply__step ~ span {
    max-width: 20px;
  }
  h3.mb30.fz35 > img {
    width: 50px;
  }
  input[name=mg_cellphone]::placeholder {
    visibility: hidden;
  }
}


/*# sourceMappingURL=style.css.map */
@media (max-width:370px) {  
  fieldset .mw130 {
      width: 75px !important;
  }
  .mobile-col2 label.flx .bb-de2  {
      width: calc(100% - 75px) !important;
  }
  .mobile-col2 select[name=student_gender] {
      min-width: calc(100% - 75px) !important;
  }
  .mobile-col3 {
      flex-direction: column;
  }
  .mobile-col3 > strong {
      margin-bottom:20px;
  }
  .mobile-col-file {
      flex-wrap:wrap;
  }
  .mobile-col-file .bb-de2 {
      margin-right:0;
      min-width: calc(100% - 75px) !important;
  }
  .mobile-col-file .btn-basic {
      margin-top:30px;
      width:100%;
  }
}