input[type=text],
input[type=search],
input[type=password],
input[type=tel],
input[type=date] {
  height: 4.2rem;
  padding: 0 1.6rem;
  border: 0.1rem solid #d6d6d6;
  border-radius: 0;
  background-color: #fff;
  vertical-align: middle;
  font-weight: 300;
  font-size: 1.6rem;
  color: #616161;
}
@media all and (min-width: 1024px), print {
  input[type=text],
  input[type=search],
  input[type=password],
  input[type=tel],
  input[type=date] {
    height: 4.6rem;
  }
}

input::-webkit-date-and-time-value {
  text-align: left;
}

input[type=date] {
  position: relative;
  background: #fff url(../images/sub/ico_datepicker.png) no-repeat calc(100% - 1.2rem) 50%/1.4rem;
}

input[type=date]::-webkit-clear-button,
input[type=date]::-webkit-inner-spin-button {
  display: none;
}

input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 0;
  top: 0;
  width: 2.9rem;
  height: calc(100% - 0.4rem);
  background: transparent;
  cursor: pointer;
  color: transparent;
}

input[type=date]::-webkit-clear-button:focus-visible {
  outline-offset: -0.1rem;
}

input:disabled {
  background: #f6f6f6;
}

input:disabled::-moz-placeholder {
  color: #9e9e9e;
}

input:disabled::placeholder {
  color: #9e9e9e;
}

.input-disabled:disabled,
.input-readonly {
  background: #f6f6f6 !important;
}

.inp-w80 {
  width: 6rem;
}
@media all and (min-width: 1024px), print {
  .inp-w80 {
    width: 8rem;
  }
}

.inp-w200 {
  width: 100%;
}
@media all and (min-width: 1024px), print {
  .inp-w200 {
    width: 24rem;
  }
}

.inp-w300 {
  width: 100%;
}
@media all and (min-width: 1024px), print {
  .inp-w300 {
    width: 30rem;
  }
}

.inp-w308 {
  width: 100%;
}
@media all and (min-width: 1024px), print {
  .inp-w308 {
    width: 30.8rem;
  }
}

.inp-w400 {
  width: 100%;
}
@media all and (min-width: 1024px), print {
  .inp-w400 {
    width: 40rem;
  }
}

select {
  height: 4.2rem;
  padding: 0 3.2rem 0 1.6rem;
  background: url(../images/common/ico_select_arrow.png) no-repeat calc(100% - 1.6rem) 50%/0.8rem 0.6rem;
  background-position: calc(100% - 10px) 50%;
  border: 0.1rem solid #d6d6d6;
  background-color: #fff;
  vertical-align: middle;
  font-weight: 300;
  font-size: 1.6rem;
  color: #616161;
}
@media all and (min-width: 1024px), print {
  select {
    height: 4.6rem;
  }
}

textarea {
  height: 15rem;
  padding: 1rem 1.2rem;
}
@media all and (min-width: 1024px), print {
  textarea {
    height: 20rem;
  }
}

input[type=file] {
  max-width: 100%;
  height: 4.2rem;
  border: 0.1rem solid #d6d6d6;
}
@media all and (min-width: 1024px), print {
  input[type=file] {
    height: 4.6rem;
  }
}

input[type=file]::file-selector-button {
  height: 4.2rem;
  background: #616161;
  padding: 0 1.6rem;
  border: 0;
  font-size: 1.6rem;
  cursor: pointer;
  color: #fff;
}
@media all and (min-width: 1024px), print {
  input[type=file]::file-selector-button {
    height: 4.6rem;
  }
}

input[type=radio],
input[type=checkbox],
input[type=radio] + label,
input[type=checkbox] + label {
  cursor: pointer;
}

.search-box {
  padding: 2rem;
  background: #f6f6f6;
}
.search-box.select-col .l {
  display: flex;
  flex-direction: column;
  row-gap: 0.4rem;
}
.search-box .l {
  margin-bottom: 0.4rem;
}
.search-box .l select {
  width: 100%;
}
.search-box .r {
  display: flex;
  gap: 0 0.4rem;
}
.search-box .r input {
  width: 100%;
}
@media all and (min-width: 1024px), print {
  .search-box {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 3.2rem 2rem;
  }
  .search-box.select-col .l {
    display: unset;
    flex: 0 0 auto;
  }
  .search-box .l {
    margin-bottom: 0;
  }
  .search-box .l select {
    width: auto;
    min-width: 16rem;
  }
  .search-box .r {
    display: flex;
    width: 36rem;
    gap: 0 0.4rem;
  }
  .search-box .r input {
    width: 100%;
  }
}
.search-box.det-srh .l {
  display: flex;
  gap: 0 0.4rem;
}

.inp-msg-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.8rem;
}

.w-full {
  width: 100%;
}

.inp-btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.6rem;
}
.inp-btn-wrap.in-td {
  padding: 1.1rem 0;
}

.btn-inp {
  display: inline-flex;
  align-items: center;
  gap: 0 0.8rem;
  vertical-align: middle;
  line-height: 1;
}
.btn-inp input {
  flex: 0 0 auto;
}
.btn-inp.align-t {
  align-items: flex-start;
}
.btn-inp.align-t input {
  margin-top: 0.2rem;
}

.inp-flx-wrap {
  display: flex;
  padding: 1rem 0;
  flex-wrap: wrap;
  gap: 0.5rem 0;
}

.inp-msg {
  font-weight: 300;
  font-size: 1.4rem;
  color: #212121;
}

.inp-date {
  display: flex;
  gap: 0.3rem 0.4rem;
  align-items: center;
  flex-wrap: wrap;
}
.inp-date span {
  flex: 1;
}
.inp-date input {
  width: 100%;
  min-width: 9rem;
  padding: 0 1rem;
}

.inp-address .zip-code {
  display: flex;
  -moz-column-gap: 0.4rem;
       column-gap: 0.4rem;
  width: 100%;
  max-width: 29.2rem;
}
.inp-address .zip-code span {
  flex: 1;
}
.inp-address .zip-code button {
  flex: 0 0 auto;
}

.inp-search {
  display: flex;
  gap: 0 0.4rem;
}
.inp-search span {
  flex: 1;
}
.inp-search input {
  width: 100%;
}
.inp-search .btn {
  flex: 0 0 auto;
}

.inp-tel {
  display: flex;
  align-items: center;
  gap: 0 0.4rem;
  max-width: 30rem;
}
.inp-tel > span {
  flex: 1;
}
.inp-tel select {
  width: 100%;
}
.inp-tel input,
.inp-tel select {
  width: 100%;
  padding: 0 8%;
}
.inp-tel .f {
  flex: 0 0 auto;
}
@media all and (min-width: 1024px), print {
  .inp-tel input,
  .inp-tel select {
    padding: 0 1.6rem;
  }
}

.inp-email {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  max-width: 62.7rem;
}
.inp-email .mail-id {
  flex: 1 1 20rem;
}
.inp-email .mail-dom {
  display: flex;
  flex: 1 1 20rem;
  align-items: center;
  gap: 0 0.4rem;
}
.inp-email .mail-dom-select {
  flex: 1 1 200px;
}
.inp-email input,
.inp-email select {
  width: 100%;
}

.inp-btn-set {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  align-items: center;
}
.inp-btn-set .l {
  display: flex;
  flex: 1 1 60%;
  gap: 0 0.4rem;
}
.inp-btn-set .l input {
  flex: 1;
  padding: 0 0.8rem;
}
.inp-btn-set .l .btn {
  flex: 0 0 auto;
}
@media all and (min-width: 1024px), print {
  .inp-btn-set .l {
    display: flex;
    flex: none;
    gap: 0 0.4rem;
  }
  .inp-btn-set .l input {
    padding: 0 1.6rem;
  }
}

.msg-pass,
.msg-war {
  display: inline-flex;
  align-items: center;
  gap: 0 0.8rem;
  font-size: 1.4rem;
}

.ico-pass,
.ico-war {
  width: 1.8rem;
  height: 1.9rem;
  background-repeat: no-repeat;
  background-size: 1.8rem;
}

.ico-pass {
  background-image: url(../images/sub/ico_pw_ok.png);
}

.ico-war {
  background-image: url(../images/sub/ico_pw_no.png);
}

.btn-file-atta {
  margin-bottom: 0.5rem;
  padding-top: 0.3rem;
}
.btn-file-atta button {
  display: flex;
  padding: 0.8rem 1rem;
  border: 0.1rem solid #d6d6d6;
  align-items: center;
  gap: 0 0.7rem;
}
.btn-file-atta i {
  width: 1.8rem;
  height: 1.8rem;
  background: url(../images/sub/ico_file_atta.png) no-repeat 0 0;
}
@media all and (min-width: 1024px), print {
  .btn-file-atta {
    margin-bottom: 0.6rem;
  }
}

.board-atta-file li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  max-width: 50.7rem;
}
.board-atta-file li:not(:last-child) {
  margin-bottom: 0.8rem;
}
.board-atta-file input[type=file] {
  flex: 1 1 266px;
  width: 100%;
}
.board-atta-file .r {
  flex: 0 0 4.6rem;
}
.board-atta-file .file-hidden {
  display: none;
}
@media all and (min-width: 1024px), print {
  .board-atta-file li:not(:last-child) {
    margin-bottom: 0.4rem;
  }
}

.btn-atta {
  position: relative;
  width: 4.2rem;
  height: 4.2rem;
  border: 0.1rem solid #d6d6d6;
}
.btn-atta > span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1.6rem;
  height: 0.2rem;
  background: #9e9e9e;
}
.btn-atta > span + span {
  transform: translate(-50%, -50%) rotate(90deg);
}
.btn-atta.del {
  background: #d6d6d6;
}
@media all and (min-width: 1024px), print {
  .btn-atta {
    width: 4.6rem;
    height: 4.6rem;
  }
  .btn-atta > span {
    width: 1.6rem;
    height: 0.2rem;
    background: #9e9e9e;
  }
  .btn-atta > span + span {
    transform: translate(-50%, -50%) rotate(90deg);
  }
}

.list-dep1 > li {
  position: relative;
  padding-left: 1rem;
  line-height: 2.4rem;
  color: #616161;
}
.list-dep1 > li:not(:last-child) {
  margin-bottom: 0.7rem;
}
.list-dep1 > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 0.4rem;
  height: 0.4rem;
  background: #687891;
}
.list-dep1 > li > ul {
  margin-top: 0.3rem;
}
@media all and (min-width: 1024px), print {
  .list-dep1 > li {
    padding-left: 1.4rem;
  }
  .list-dep1 > li:not(:last-child) {
    margin-bottom: 0.9rem;
  }
  .list-dep1 > li::before {
    width: 0.6rem;
    height: 0.6rem;
  }
  .list-dep1 .bull-center::before {
    top: 50%;
    transform: translateY(-50%);
  }
}

.list-dep2 > li {
  position: relative;
  padding-left: 1rem;
  line-height: 2.4rem;
}
.list-dep2 > li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.list-dep2 > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 0.6rem;
  height: 0.2rem;
  background: #9e9e9e;
}
@media all and (min-width: 1024px), print {
  .list-dep2 > li {
    padding-left: 1.5rem;
  }
  .list-dep2 > li:not(:last-child) {
    margin-bottom: 0.6rem;
  }
  .list-dep2 > li::before {
    top: 1.1rem;
    width: 0.8rem;
  }
}

.list-num {
  padding-left: 1.7rem;
}
.list-num li {
  list-style: decimal;
  line-height: 2.4rem;
  color: #616161;
}
.list-num li:not(:last-child) {
  margin-bottom: 0.7rem;
}

.inp-btn-list li:not(:last-child) {
  margin-bottom: 0.9rem;
}
.inp-btn-list label {
  line-height: 2.4rem;
}
.inp-btn-list .align-t input {
  margin-top: 0.3rem;
}

#container {
  padding-top: 9rem;
}
@media all and (min-width: 1024px), print {
  #container {
    padding-top: 0;
  }
}

.visual-wrap {
  position: relative;
}
.visual-wrap .control-progress {
  display: flex;
  position: absolute;
  left: 1rem;
  bottom: 2.5rem;
  z-index: 10;
  -moz-column-gap: 1.6rem;
       column-gap: 1.6rem;
  align-items: center;
}
.visual-wrap .btn-pg {
  display: flex;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  color: #fff;
}
.visual-wrap .pg {
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  font-size: 1.5rem;
}
.visual-wrap .pg strong {
  font-weight: 700;
}
.visual-wrap .pg i {
  width: 0.1rem;
  height: 1.25rem;
  background: #abaea5;
}
.visual-wrap .button-prev i,
.visual-wrap .button-next i {
  display: block;
  width: 1rem;
  height: 1.7rem;
}
.visual-wrap .swiper-button-disabled {
  opacity: 0.5;
  cursor: auto;
}
.visual-wrap .button-prev i {
  background: url(../images/main/btn_visual_prev.png) no-repeat 0 0;
}
.visual-wrap .button-next i {
  background: url(../images/main/btn_visual_next.png) no-repeat 0 0;
}
.visual-wrap .autoplay-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
}
.visual-wrap .autoplay-progress svg {
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 3px;
  stroke: #ffde00;
  fill: none;
  stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}
.visual-wrap .autoplay-progress .bg {
  position: absolute;
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 50%;
  border: 0.3rem solid rgba(255, 255, 255, 0.5);
}
.visual-wrap .autoplay-progress .visual-button-play-pause {
  position: absolute;
  z-index: 10;
  width: 3.3rem;
  height: 3.3rem;
  text-align: center;
}
.visual-wrap .autoplay-progress .visual-button-play-pause.active i {
  width: 1rem;
  height: 1.4rem;
  background-image: url(../images/main/btn_visual_play.png);
  background-size: 1rem;
}
.visual-wrap .autoplay-progress .visual-button-play-pause i {
  display: inline-block;
  width: 0.9rem;
  height: 1.2rem;
  background: url(../images/main/btn_visual_stop.png) no-repeat 0 0/0.9rem;
}
.visual-wrap .swiper-pagination {
  display: none;
}
.visual-wrap .swiper-pagination-bullet {
  display: flex !important;
  border-radius: 0;
}
@media all and (min-width: 1024px), print {
  .visual-wrap .control-progress {
    left: calc((100% - 144rem) / 2);
    bottom: 6rem;
    -moz-column-gap: 1.6rem;
         column-gap: 1.6rem;
  }
  .visual-wrap .btn-pg {
    -moz-column-gap: 2.2rem;
         column-gap: 2.2rem;
  }
  .visual-wrap .pg {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    font-size: 2rem;
  }
  .visual-wrap .pg i {
    height: 1.5rem;
  }
  .visual-wrap .autoplay-progress {
    width: 5rem;
    height: 5rem;
  }
  .visual-wrap .autoplay-progress .bg {
    width: 4.6rem;
    height: 4.6rem;
    border-width: 0.4rem;
  }
  .visual-wrap .autoplay-progress .visual-button-play-pause {
    width: 4.6rem;
    height: 4.6rem;
  }
  .visual-wrap .swiper-pagination {
    display: flex;
    width: 100%;
    left: 0;
    bottom: 0;
  }
  .visual-wrap .swiper-pg-list {
    display: flex;
    max-width: 144rem;
    margin: 0 auto;
    -moz-column-gap: 0.2rem;
         column-gap: 0.2rem;
    justify-content: center;
    align-items: flex-end;
  }
  .visual-wrap .swiper-pagination-bullet {
    display: flex;
    flex: 0 1 28.7rem;
    height: 8rem;
    margin: 0 !important;
    padding: 1rem;
    opacity: 1;
    background: rgba(0, 0, 0, 0.4);
    transition: 0.3s ease;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
  }
  .visual-wrap .swiper-pagination-bullet:hover {
    background: #11284c;
  }
  .visual-wrap .swiper-pagination-bullet-active {
    height: 10rem;
    background: #11284c;
    font-weight: 500;
  }
}
@media (1024px <= width <= 1500px), print {
  .visual-wrap .control-progress {
    left: 2rem;
  }
  .visual-wrap .swiper-pagination-bullet {
    font-size: 1.6rem;
  }
  .visual-wrap .main-search {
    right: 2rem;
  }
}

.visual-swiper .swiper-slide > a {
  display: block;
}
.visual-swiper .swiper-slide img {
  width: 100%;
}
.visual-swiper .swiper-button-prev {
  left: calc((100% - 144rem) / 2);
}
.visual-swiper .swiper-button-next {
  right: calc((100% - 144rem) / 2);
}
@media all and (min-width: 1024px), print {
  .visual-swiper .swiper-slide > a:focus-visible::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 99.8%;
    height: 99.4%;
    border: 0.2rem dashed #d71920;
    outline-offset: -0.2rem;
  }
  .visual-swiper .swiper-slide img {
    width: auto;
  }
}
@media (width > 1500px), print {
  .visual-swiper .swiper-slide > a {
    position: relative;
    overflow: hidden;
    height: 64.5rem;
  }
  .visual-swiper .swiper-slide > a img {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    max-width: none;
  }
}
@media (1024px <= width <= 1500px), print {
  .visual-swiper .swiper-slide > a img {
    position: static;
    left: 50%;
    top: 0;
    transform: none;
    max-width: 100%;
    -o-object-fit: fill;
       object-fit: fill;
    height: 53.9rem;
  }
}

.main-search {
  display: none;
}
@media (width > 1024px), print {
  .main-search {
    display: block;
    position: absolute;
    z-index: 10;
    right: calc((100% - 144rem) / 2);
    top: 8rem;
    width: 44.2rem;
    padding: 3rem;
    border-radius: 1rem;
    background: #fff;
  }
  .main-search .search-tit {
    margin-bottom: 1.7rem;
    font-weight: 700;
    font-size: 2.4rem;
    color: #222;
  }
  .main-search .serach-bar {
    position: relative;
  }
  .main-search .btn-search {
    position: absolute;
    right: 0;
    top: 0;
    width: 5.2rem;
    height: 100%;
  }
  .main-search .btn-search i {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background: url(../images/main/ico_search.png);
  }
  .main-search .inp-search {
    width: 100%;
    padding-right: 6rem;
    border: 0.4rem solid #e9e9e9;
    border-radius: 0.7rem;
  }
}
.main-search .btn-que {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.8rem;
       column-gap: 0.8rem;
}
.main-search .btn-que i {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background: url(../images/main/ico_que.png) no-repeat;
}
.main-search .hash-tag {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.main-search .hash-tag li {
  flex: 1 1 50%;
}
.main-search .hash-tag a {
  display: flex;
  height: 3.6rem;
  border-radius: 0.3rem;
  background: #e4e7ec;
  align-items: center;
  justify-content: center;
  color: #11284c;
}

.bg-emerald {
  background: #e0f2f1;
}

.bg-purple {
  background: #ede7f6;
}

.bg-gray {
  background: #f6f6f6;
}

.main-sec {
  overflow: hidden;
  padding: 4.5rem 0;
}
@media all and (min-width: 1024px), print {
  .main-sec {
    padding: 8rem 0;
  }
}

.ico-board-new {
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  background: url(../images/common/ico_board_new.png) no-repeat 0 0/1.6rem;
  vertical-align: -0.2rem;
}

.link-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.8rem;
}

.btn-round {
  display: inline-flex;
  height: 4rem;
  padding: 0 1.75rem;
  border: 0.1rem solid #666;
  border-radius: 2rem;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.9rem;
       column-gap: 0.9rem;
  line-height: 1;
  font-weight: 500;
  font-size: 1.5rem;
  color: #666;
}
.btn-round.bg-blue {
  border: 0;
  color: #fff;
}
@media all and (min-width: 1024px), print {
  .btn-round {
    height: 4.2rem;
    font-size: 1.6rem;
  }
}

.btn-link {
  display: inline-flex;
  height: 4.4rem;
  padding: 0 1.75rem;
  border: 0.1rem solid #666;
  border-radius: 0.7rem;
  align-items: center;
  -moz-column-gap: 0.9rem;
       column-gap: 0.9rem;
  font-weight: 500;
  font-size: 1.5rem;
  color: #222;
}
.btn-link:has(.ico-arrow-white) {
  color: #fff;
}
.btn-link.bg-navy {
  border: 0;
}
@media all and (min-width: 1024px), print {
  .btn-link {
    height: 5rem;
    padding: 0 2.4rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}

.ico-arrow-white {
  display: inline-block;
  width: 0.7rem;
  height: 1.3rem;
  background: url(../images/main/ico_link_arrow_white.png) no-repeat 0 0/0.7rem;
}

.ico-arrow-black {
  display: inline-block;
  width: 0.7rem;
  height: 1.3rem;
  background: url(../images/main/ico_link_arrow_black.png) no-repeat 0 0/0.7rem;
}

.bg-navy {
  background: #11284c;
}

.bg-blue {
  background: #1976d2;
}

.sec-tit {
  margin-bottom: 2.5rem;
  font-weight: 700;
  font-size: 2.4rem;
  color: #222;
}
.sec-tit.single {
  max-width: 144rem;
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 1024px), print {
  .sec-tit {
    margin-bottom: 3.7rem;
    font-size: 3.8rem;
  }
}

.p-l {
  padding-left: 1rem;
}
@media all and (min-width: 1024px), print {
  .p-l {
    padding-left: 0;
  }
}

.p-lr {
  padding: 0 1rem;
}
@media all and (min-width: 1024px), print {
  .p-lr {
    padding: 0;
  }
}

.menu-go {
  background: #e3f2fd;
}
.menu-go .menu-go-wrap {
  position: relative;
  padding: 0 3.4rem;
}
.menu-go .menu-prev,
.menu-go .menu-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.menu-go .menu-prev {
  left: 0;
}
.menu-go .menu-next {
  right: 0;
}
.menu-go .menu-prev i,
.menu-go .menu-next i {
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  background-repeat: no-repeat;
  background-size: 2.6rem;
}
.menu-go .menu-prev i {
  background-image: url(../images/main/btn_circle_prev.png);
}
.menu-go .menu-next i {
  background-image: url(../images/main/btn_circle_next.png);
}
.menu-go .swiper-button-disabled {
  opacity: 0.5;
  cursor: auto;
}
.menu-go .swiper-slide {
  height: auto;
}
.menu-go .swiper-slide a {
  display: block;
  height: 100%;
  padding: 2rem 1rem;
  border: 0.1rem solid #d6d6d6;
  border-radius: 2rem;
  background: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 1.5rem;
  color: #222;
}
.menu-go .swiper-slide a i {
  display: inline-block;
  margin-bottom: 0.7rem;
}
.menu-go .mn-name {
  display: block;
  line-height: 1.5;
}
.menu-go .ico-cur {
  width: 4.6rem;
  height: 4rem;
  background: url(../images/main/ico_curriculum.png) no-repeat 0 0/4.6rem;
}
.menu-go .ico-book {
  width: 5.7rem;
  height: 4rem;
  background: url(../images/main/ico_book.png) no-repeat 0 0/5.7rem;
}
.menu-go .ico-labor {
  width: 3.2rem;
  height: 4rem;
  background: url(../images/main/ico_labor.png) no-repeat 0 0/3.2rem;
}
.menu-go .ico-program {
  width: 4.2rem;
  height: 4rem;
  background: url(../images/main/ico_program.png) no-repeat 0 0/4.2rem;
}
.menu-go .ico-mico {
  width: 3.4rem;
  height: 4rem;
  background: url(../images/main/ico_mico.png) no-repeat 0 0/3.4rem;
}
.menu-go .ico-webtoon {
  width: 4.5rem;
  height: 4rem;
  background: url(../images/main/ico_webtoon.png) no-repeat 0 0/4.5rem;
}
.menu-go .ico-rese {
  width: 4.3rem;
  height: 4rem;
  background: url(../images/main/ico_rese.png) no-repeat 0 0/4.3rem;
}
.menu-go .ico-issue {
  width: 4.4rem;
  height: 4rem;
  background: url(../images/main/ico_issue.png) no-repeat 0 0/4.4rem;
}
.menu-go .ico-column {
  width: 3.6rem;
  height: 4rem;
  background: url(../images/main/ico_column.png) no-repeat 0 0/3.6rem;
}
.menu-go .ico-cardnews {
  width: 4rem;
  height: 4.3rem;
  background: url(../images/main/ico_cardnews.png) no-repeat 0 0/4rem;
}
.menu-go .ico-video {
  width: 3.9rem;
  height: 4.3rem;
  background: url(../images/main/ico_video.png) no-repeat 0 0/3.9rem;
}
.menu-go .ico-brochure {
  width: 4.4rem;
  height: 4.3rem;
  background: url(../images/main/ico_brochure.png) no-repeat 0 0/4.4rem;
}
@media all and (min-width: 1024px), print {
  .menu-go .menu-go-wrap {
    padding: 0 5.6rem;
  }
  .menu-go .menu-go-wrap:has(.swiper-button-lock) {
    padding: 0;
  }
  .menu-go .menu-prev i,
  .menu-go .menu-next i {
    width: 4rem;
    height: 4rem;
    background-size: 4rem;
  }
  .menu-go .swiper-slide a {
    align-items: center;
    padding: 3.8rem 1rem 3rem;
    transition: box-shadow 0.3s ease;
    font-size: 1.8rem;
  }
  .menu-go .swiper-slide a:hover {
    box-shadow: inset 0 0 0 0.1rem #1976d2;
    border-color: #1976d2;
    font-weight: 700;
    color: #1976d2;
  }
  .menu-go .swiper-slide a:hover i {
    animation: gelatine 0.5s linear;
  }
  .menu-go .swiper-slide a i {
    margin-bottom: 1.2rem;
  }
  @keyframes gelatine {
    from, to {
      transform: scale(1, 1);
    }
    25% {
      transform: scale(0.9, 1.1);
    }
    50% {
      transform: scale(1.1, 0.9);
    }
    75% {
      transform: scale(0.95, 1.05);
    }
  }
  .menu-go .ico-cur {
    width: 6.6rem;
    height: 6.2rem;
    background: url(../images/main/ico_pc_curriculum.png) no-repeat 0 0/auto;
  }
  .menu-go .ico-book {
    width: 7.6rem;
    height: 6.2rem;
    background: url(../images/main/ico_pc_book.png) no-repeat 0 0/auto;
  }
  .menu-go .ico-labor {
    width: 5.2rem;
    height: 6.2rem;
    background: url(../images/main/ico_pc_labor.png) no-repeat 0 0/auto;
  }
  .menu-go .ico-program {
    width: 6.2rem;
    height: 6.2rem;
    background: url(../images/main/ico_pc_program.png) no-repeat 0 0/auto;
  }
  .menu-go .ico-mico {
    width: 5.2rem;
    height: 6.2rem;
    background: url(../images/main/ico_pc_mico.png) no-repeat 0 0/auto;
  }
  .menu-go .ico-webtoon {
    width: 6.5rem;
    height: 6.2rem;
    background: url(../images/main/ico_pc_webtoon.png) no-repeat 0 0/auto;
  }
  .menu-go .ico-rese {
    width: 6.5rem;
    height: 6.2rem;
    background: url(../images/main/ico_pc_rese.png) no-repeat 0 0/auto;
  }
  .menu-go .ico-issue {
    width: 6.8rem;
    height: 6.2rem;
    background: url(../images/main/ico_pc_issue.png) no-repeat 0 0/auto;
  }
  .menu-go .ico-column {
    width: 5.6rem;
    height: 6.2rem;
    background: url(../images/main/ico_pc_column.png) no-repeat 0 0/auto;
  }
  .menu-go .ico-cardnews {
    width: 6rem;
    height: 6.4rem;
    background: url(../images/main/ico_pc_cardnews.png) no-repeat 0 0/auto;
  }
  .menu-go .ico-video {
    width: 5.9rem;
    height: 6.2rem;
    background: url(../images/main/ico_pc_video.png) no-repeat 0 0/auto;
  }
  .menu-go .ico-brochure {
    width: 6.4rem;
    height: 6.2rem;
    background: url(../images/main/ico_pc_brochure.png) no-repeat 0 0/auto;
  }
}

.btn-more {
  display: flex;
  order: 1;
  position: relative;
  width: 3.6rem;
  height: 3.6rem;
  align-items: center;
  justify-content: center;
}
.btn-more i {
  position: absolute;
  width: 0.2rem;
  height: 1.8rem;
  background: #222;
}
.btn-more .line2 {
  transform: rotate(90deg);
}

.news-board .sec-top {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 2.5rem;
}
.news-board .sec-top .sec-tit {
  position: absolute;
  margin-bottom: 0;
}
.news-board .sec-top .r {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  row-gap: 1.3rem;
  justify-content: flex-end;
  overflow: hidden;
}
.news-board .tab {
  order: 2;
  width: 100%;
}
.news-board .btn-more {
  order: 1;
}
@media all and (min-width: 1024px), print {
  .news-board .sec-top {
    margin-bottom: 4.5rem;
  }
  .news-board .sec-top .sec-tit {
    position: absolute;
    margin-bottom: 0;
  }
  .news-board .sec-top .r {
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }
  .news-board .tab {
    order: 1;
    width: auto;
  }
  .news-board .btn-more {
    order: 2;
  }
  .news-board .btn-more i {
    position: absolute;
    width: 0.2rem;
    height: 1.8rem;
    background: #222;
  }
}

.news-board-wrap {
  position: relative;
}
.news-board-wrap .menu-prev,
.news-board-wrap .menu-next {
  display: none;
}
@media all and (min-width: 1024px), print {
  .news-board-wrap {
    padding: 0 5.6rem;
  }
  .news-board-wrap:has(.swiper-button-lock) {
    padding: 0;
  }
  .news-board-wrap:has(.swiper-button-lock) .menu-prev,
  .news-board-wrap:has(.swiper-button-lock) .menu-next {
    display: none;
  }
  .news-board-wrap .menu-prev,
  .news-board-wrap .menu-next {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .news-board-wrap .menu-prev {
    left: 0;
  }
  .news-board-wrap .menu-next {
    right: 0;
  }
  .news-board-wrap .menu-prev i,
  .news-board-wrap .menu-next i {
    display: block;
    width: 2.6rem;
    height: 2.6rem;
    background-repeat: no-repeat;
    background-size: 2.6rem;
  }
  .news-board-wrap .menu-prev i,
  .news-board-wrap .menu-next i {
    width: 4rem;
    height: 4rem;
    background-size: 4rem;
    background-repeat: no-repeat;
  }
  .news-board-wrap .menu-prev i {
    background-image: url(../images/main/btn_circle_prev.png);
  }
  .news-board-wrap .menu-next i {
    background-image: url(../images/main/btn_circle_next.png);
  }
  .news-board-wrap .swiper-button-disabled {
    opacity: 0.5;
    cursor: auto;
  }
}

.board-tab {
  padding-right: 1rem;
}
.board-tab .swiper-wrapper {
  padding-top: 1rem;
}
.board-tab a {
  position: relative;
  display: block;
  font-weight: 500;
  color: #222;
}
.board-tab a i {
  position: absolute;
  left: 50%;
  top: -1rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  visibility: hidden;
  transform: translateX(-50%) scale(0);
  background: #1976d2;
  transition: 0.3s ease;
}
.board-tab a:hover, .board-tab a.active {
  font-weight: 700;
  color: #1976d2;
}
.board-tab a:hover i, .board-tab a.active i {
  visibility: visible;
  transform: translateX(-50%) scale(1);
}
.board-tab .swiper-slide {
  width: auto;
}
.board-tab.emer a i {
  background: #00796b;
}
.board-tab.emer a:hover, .board-tab.emer a.active {
  color: #00796b;
}
@media all and (min-width: 1024px), print {
  .board-tab {
    padding-right: 0;
  }
  .board-tab.ver-hor-tab .swiper-wrapper {
    flex-direction: column;
    row-gap: 3rem;
    transform: none !important;
  }
  .board-tab.ver-hor-tab .swiper-slide {
    margin-right: 0 !important;
  }
  .board-tab.ver-hor-tab a {
    display: inline-block;
  }
  .board-tab .swiper-slide:last-child {
    margin-right: 0 !important;
  }
  .board-tab a {
    font-size: 2rem;
  }
  .board-tab a i {
    top: -1rem;
    width: 0.6rem;
    height: 0.6rem;
  }
}

.news-board-swiper {
  padding-right: 1rem;
}
.news-board-swiper .swiper-slide {
  width: 25rem;
}
.news-board-swiper a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 15.5rem;
  padding: 1.8rem;
  border: 0.1rem solid #d6d6d6;
  border-radius: 2rem;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.news-board-swiper a:hover {
  box-shadow: inset 0 0 0 0.2rem #11284c;
  border-color: transparent;
}
.news-board-swiper a:hover .badge {
  animation: bounce 1s ease;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-7px);
  }
  60% {
    transform: translateY(-3px);
  }
}
.news-board-swiper .badge {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  -moz-column-gap: 0.8rem;
       column-gap: 0.8rem;
  line-height: 1;
  font-weight: 600;
  font-size: 1.4rem;
  color: #1976d2;
}
.news-board-swiper .badge::before {
  display: inline-block;
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #1976d2;
}
.news-board-swiper .board-tit {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-top: 1.2rem;
  font-weight: 600;
  color: #222;
}
.news-board-swiper .board-date {
  text-align: right;
  font-size: 1.5rem;
}
@media all and (min-width: 1024px), print {
  .news-board-swiper {
    padding-right: 0;
  }
  .news-board-swiper .swiper-slide {
    width: 34.6rem;
  }
  .news-board-swiper a {
    height: 22.1rem;
    padding: 2.9rem;
  }
  .news-board-swiper .badge {
    font-size: 1.6rem;
  }
  .news-board-swiper .board-tit {
    margin-top: 1.5rem;
    font-size: 2rem;
  }
  .news-board-swiper .board-date {
    font-size: 1.6rem;
  }
}

.no-data {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 2.3rem;
  height: 100%;
  min-height: 30rem;
  border: 0.4rem solid #e0e0e0;
}
.no-data i {
  width: 4.4rem;
  height: 4.4rem;
  background: url(../images/main/no_data.png) no-repeat 0 0/4rem;
}

.swiper-card-wrap .left-menu {
  margin-bottom: 2.5rem;
  padding: 0 1rem;
}
.swiper-card-wrap .card-tab-swiper .swiper-slide {
  width: auto;
}
.swiper-card-wrap .swiper-card-list {
  overflow: hidden;
  padding-left: 1rem;
}
.swiper-card-wrap .swiper-card-list:has(.no-data) {
  width: 100%;
  max-width: 123.1rem;
}
.swiper-card-wrap .swiper-card-list .swiper {
  padding: 0 1rem 9rem 0;
}
.swiper-card-wrap .swiper-card-list .swiper-slide {
  width: 25rem;
  padding: 2rem 1.5rem;
  border: 0.1rem solid #d6d6d6;
  border-radius: 2rem;
}
.swiper-card-wrap .swiper-card-list .swiper-slide:nth-child(even) {
  transform: translateY(4rem);
}
.swiper-card-wrap .swiper-card-list .swiper-slide:has(.link-anc) {
  overflow: hidden;
  padding: 0;
}
.swiper-card-wrap .link-anc {
  display: flex;
  position: relative;
  height: 38rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 1.5rem;
}
.swiper-card-wrap .link-anc:has(.bor-info) {
  display: block;
}
.swiper-card-wrap .link-anc:has(.bor-info) .thum-img {
  border: 0.1rem solid #d7d7d7;
}
.swiper-card-wrap .link-anc .edu-ba-tm {
  margin-bottom: 1.5rem;
}
.swiper-card-wrap .link-anc .thum-img img {
  width: 25.6rem;
  height: 32.8rem;
}
.swiper-card-wrap .link-anc:hover .bor-info {
  transform: translateY(0);
}
@media all and (min-width: 1024px), print {
  .swiper-card-wrap .link-anc {
    height: 44rem;
    padding: 3rem 2.4rem;
  }
  .swiper-card-wrap .link-anc .edu-ba-tm {
    margin-bottom: 2rem;
  }
}
.swiper-card-wrap .bor-tit {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-top: 1.2rem;
  line-height: 1.4;
  font-weight: 600;
  font-size: 1.7rem;
  color: #222;
}
@media all and (min-width: 1024px), print {
  .swiper-card-wrap .bor-tit {
    margin-top: 1.5rem;
    font-size: 2rem;
  }
}
.swiper-card-wrap .column-txt .col-t {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-height: 1.4;
  font-weight: 600;
  font-size: 1.7rem;
  color: #222;
}
.swiper-card-wrap .column-txt .col-c {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  margin-top: 0.5em;
  line-height: 1.4;
  font-size: 1.6rem;
}
.swiper-card-wrap .column-txt img {
  width: 25.8rem !important;
  height: 19.2rem !important;
}
@media all and (min-width: 1024px), print {
  .swiper-card-wrap .column-txt .col-t {
    font-size: 2rem;
  }
  .swiper-card-wrap .column-txt .col-c {
    font-size: 1.8rem;
  }
}
.swiper-card-wrap .bor-info {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(200%);
  transition: transform 0.5s ease;
  width: 100%;
  padding: 1.6rem 1.8rem;
  background: rgba(11, 40, 76, 0.9);
  color: #99a1ac;
}
.swiper-card-wrap .bor-info .bor-tit {
  color: #fff;
}
.swiper-card-wrap .swiper-scrollbar {
  width: calc(100% - 4 * var(--swiper-scrollbar-sides-offset, 1%));
  height: 0.2rem;
  bottom: 2.2rem;
  border-radius: 0;
  background: #ddd;
}
.swiper-card-wrap .swiper-scrollbar:focus-visible {
  outline: 0.1rem dotted #d71920;
}
.swiper-card-wrap .swiper-scrollbar-drag {
  position: relative;
  border-radius: 0;
  background: #222;
  cursor: grab;
}
.swiper-card-wrap .swiper-scrollbar-drag::before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 100vw;
  z-index: 999;
  background: #222;
  left: -99vw;
  top: 0;
}
.swiper-card-wrap .swiper-scrollbar-drag::after {
  content: "";
  position: absolute;
  top: -1.8rem;
  right: -1.5rem;
  width: 7.65rem;
  height: 4.15rem;
  background: url(../images/main/img_scroll_drag.png) no-repeat 0 0/7.65rem;
}
@media all and (min-width: 1024px), print {
  .swiper-card-wrap {
    display: flex;
    width: calc(144rem + (100% - 144rem) / 2);
    margin-left: auto;
  }
  .swiper-card-wrap .left-menu {
    padding-left: 0;
    flex: 0 0 20.9rem;
  }
  .swiper-card-wrap .swiper-card-list {
    overflow: hidden;
    padding-left: 0;
  }
  .swiper-card-wrap .swiper-card-list .swiper {
    padding: 0 3rem 10rem 0;
  }
  .swiper-card-wrap .swiper-card-list .swiper-slide {
    width: 30.8rem;
    padding: 3rem 2.5rem;
    transition: box-shadow 0.3s ease;
  }
  .swiper-card-wrap .swiper-card-list .swiper-slide:hover {
    box-shadow: inset 0 0 0 0.2rem #11284c;
    border-color: transparent;
  }
  .swiper-card-wrap .swiper-card-list .swiper-scrollbar-drag::after {
    top: -2.5rem;
    right: -1.5rem;
    width: 9.3rem;
    height: 5.3rem;
    background-size: auto;
  }
}
@media (1024px <= width <= 1440px), print {
  .swiper-card-wrap {
    width: auto;
    max-width: 144rem;
    margin: 0 auto;
    padding-left: 1.5rem !important;
  }
  .swiper-card-wrap .swiper-scrollbar {
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
}

.edu-list-board > ul > li:not(:last-child) {
  margin-bottom: 1.6rem;
}
.edu-list-board .in-box {
  padding: 2rem;
  border: 0.1rem solid #bdbdbd;
}
.edu-list-board .edu-ba-tm {
  display: flex;
  -moz-column-gap: 1.2rem;
       column-gap: 1.2rem;
  margin: 0 0 1rem;
}
.edu-list-board .edu-badge {
  display: inline-flex;
  height: 3rem;
  padding: 0 1.2rem;
  border-radius: 5rem;
  background: #e0f2f1;
  align-items: center;
  line-height: 1;
  color: #00796b;
}
.edu-list-board .edu-badge.bg-sky {
  background: #e3f2fd;
  color: #1976d2;
}
.edu-list-board .edu-time {
  display: flex;
  align-items: center;
  -moz-column-gap: 1.2rem;
       column-gap: 1.2rem;
}
.edu-list-board .edu-time i {
  width: 0.1rem;
  height: 1.4rem;
  background: #d6d6d6;
}
.edu-list-board .txt-ell {
  display: flex;
}
.edu-list-board .txt-ell .fwm {
  flex: 0 0 auto;
}
.edu-list-board .txt-ell .r {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.edu-list-board .clamped-text {
  display: -webkit-box;
  overflow: hidden;
  height: 5.6rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 2.8rem;
  font-weight: 600;
  font-size: 2rem;
  color: #212121;
}
.edu-list-board .btn-full {
  display: flex;
  gap: 0.4rem 0.8rem;
  flex-wrap: wrap;
}
.edu-list-board .btn-full .btn-round {
  flex: 1;
}
@media all and (min-width: 1024px), print {
  .edu-list-board > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
  }
  .edu-list-board > ul > li {
    position: relative;
    width: calc(33.3333333333% - 2rem);
  }
  .edu-list-board > ul > li:not(:last-child) {
    margin-bottom: 0;
  }
  .edu-list-board .in-box {
    padding: 2.4rem;
  }
  .edu-list-board .edu-ba-tm {
    margin: 0 0 1.1rem;
  }
}

.progress-bar {
  display: flex;
  flex-direction: column;
  margin-top: 1.3rem;
}
.progress-bar progress {
  width: 100%;
}
@media all and (min-width: 1024px), print {
  .progress-bar {
    margin-top: 2.1rem;
  }
}

progress {
  -webkit-appearance: none;
  height: 0.4rem;
  vertical-align: top;
}

::-webkit-progress-bar {
  border-radius: 0.5rem;
  background-color: #e9e9e9;
}

::-webkit-progress-value {
  border-radius: 0.5rem;
  background-color: #512da8;
}

.sec-top-lr {
  display: flex;
  position: relative;
  flex-direction: column;
  margin-bottom: 3rem;
}
.sec-top-lr .sec-tit {
  margin-bottom: 1.2rem;
}
.sec-top-lr .r {
  margin-top: 2rem;
}
.sec-top-lr .right-positoin {
  position: absolute;
  right: 0;
  top: 0;
}
@media all and (min-width: 1024px), print {
  .sec-top-lr {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 5rem;
  }
  .sec-top-lr .sec-tit {
    margin-bottom: 1.8rem;
  }
  .sec-top-lr .txt {
    font-size: 1.8rem;
  }
  .sec-top-lr .right-positoin {
    top: auto;
    bottom: 0;
  }
}

.edu-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 0.1rem solid #d7d7d7;
  border-top-left-radius: 3rem;
  border-bottom-right-radius: 3rem;
}
.edu-info .edu-info-box {
  flex: 0 0 auto;
  border-bottom: 0.1rem solid #d7d7d7;
}
.edu-info .edu-info-box:last-child {
  border-bottom: 0;
}
.edu-info .edu-info-box.active {
  flex: 1;
}
.edu-info .edu-info-box.active .edu-detail-txt {
  display: block;
}
.edu-info .edu-info-box.active .edu-menu {
  display: none;
}
.edu-info .edu-detail-txt {
  display: none;
  padding: 2rem 2rem 12.5rem;
  background-color: #f8f8f8;
  background-repeat: no-repeat;
}
.edu-info .edu-youth .edu-detail-txt {
  overflow: hidden;
  border-top-left-radius: 2rem;
  background-image: url(../images/main/img_edu_m_youth.png);
  background-size: 24rem;
  background-position: 100% 100%;
}
.edu-info .edu-delivery .edu-menu {
  background-image: url(../images/main/img_edu_m_delivery.png);
  background-size: 10.7rem;
  background-position: calc(100% - 1.6rem) calc(100% - 0.4rem);
}
.edu-info .edu-torment .edu-menu {
  background-image: url(../images/main/img_edu_m_torment.png);
  background-size: 18.2rem;
  background-position: 100% 100%;
}
.edu-info .edu-clinic .edu-menu {
  background-image: url(../images/main/img_edu_m_clinic.png);
  background-size: 12.5rem;
  background-position: 100% 100%;
}
.edu-info .edu-menu {
  display: block;
  height: 15.7rem;
  padding: 2rem 0 0 2rem;
  background-color: #fff;
  background-repeat: no-repeat;
}
.edu-info .edu-menu .edu-txt1 {
  font-weight: 600;
  font-size: 1.7rem;
  color: #222;
}
.edu-info .edu-menu .edu-txt2 {
  margin-top: 1rem;
  line-height: 1.4;
  font-size: 1.5rem;
}
.edu-info .t1 {
  line-height: 1.4;
  font-weight: 600;
  font-size: 1.7rem;
  color: #222;
}
.edu-info .t2 {
  margin-top: 1rem;
  line-height: 1.4;
}
@media (width > 1400px), print {
  .edu-info {
    flex-direction: row;
  }
  .edu-info .edu-info-box {
    border-bottom: 0;
    border-right: 0.1rem solid #d7d7d7;
  }
  .edu-info .edu-info-box:last-child {
    border-right: 0;
  }
  .edu-info .edu-detail-txt {
    padding: 3rem 3rem 20.9rem;
  }
  .edu-info .edu-youth .edu-detail-txt {
    background-image: url(../images/main/img_edu_youth.png);
    background-size: 44.7rem;
    background-position: calc(100% - 2.4rem) 100%;
  }
  .edu-info .edu-delivery .edu-menu {
    background-image: url(../images/main/img_edu_delivery.png);
    background-size: 20.9rem;
    background-position: calc(100% - 1.6rem) calc(100% - 0.1rem);
  }
  .edu-info .edu-torment .edu-menu {
    background-image: url(../images/main/img_edu_torment.png);
    background-size: 24.5rem;
    background-position: 0 100%;
  }
  .edu-info .edu-clinic .edu-menu {
    background-image: url(../images/main/img_edu_clinic.png);
    background-size: 22rem;
    background-position: calc(100% - 1.4rem) 100%;
  }
  .edu-info .edu-menu {
    width: 24.9rem;
    height: 100%;
    padding: 3rem 3rem 0;
  }
  .edu-info .edu-menu .edu-txt1 {
    font-size: 2rem;
  }
  .edu-info .edu-menu .edu-txt2 {
    margin-top: 1.3rem;
    font-size: 1.6rem;
  }
  .edu-info .edu-youth {
    background-image: url(../images/main/img_edu_youth.png);
    background-size: auto;
    background-position: calc(100% - 2.4rem) 100%;
  }
  .edu-info .t1 {
    line-height: 1.5;
    font-size: 2rem;
  }
  .edu-info .t2 {
    margin-top: 1.2rem;
    line-height: 1.5;
  }
}
@media (1024px <= width <= 1400px), print {
  .edu-info {
    display: block;
  }
  .edu-info .edu-youth .edu-detail-txt {
    background-image: url(../images/main/img_edu_youth.png);
    background-size: 44.7rem;
    background-position: calc(100% - 2.4rem) 100%;
  }
  .edu-info .edu-delivery .edu-menu {
    background-size: 13rem;
  }
  .edu-info .edu-torment .edu-menu {
    background-size: 20rem;
  }
  .edu-info .edu-clinic .edu-menu {
    background-size: 16rem;
    background-position: calc(100% - 1.4rem) 100%;
  }
  .edu-info .edu-menu {
    height: 20rem;
    padding: 3rem 3rem 0;
  }
  .edu-info .edu-menu .edu-txt1 {
    font-size: 2rem;
  }
  .edu-info .edu-menu .edu-txt2 {
    margin-top: 1.3rem;
    font-size: 1.6rem;
  }
}

.bor-ban .news-board-swiper a {
  background: #fff;
}
@media all and (min-width: 1024px), print {
  .bor-ban {
    display: grid;
    grid-template-columns: 1fr 39.6rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }
  .bor-ban .l {
    overflow: hidden;
  }
}

.rolling-banner {
  margin-top: 2.5rem;
}
.rolling-banner .swiper {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
}
.rolling-banner .banner-controll {
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
  height: 5rem;
  padding: 0 2rem;
  border-radius: 0 0 0 2rem;
  background: rgba(0, 0, 0, 0.5);
  -moz-column-gap: 1.2rem;
       column-gap: 1.2rem;
  align-items: center;
}
.rolling-banner .pg {
  color: #fff;
}
.rolling-banner .current {
  font-weight: 700;
}
.rolling-banner .btn-controll {
  display: flex;
}
.rolling-banner .btn-controll > button {
  display: flex;
  width: 2.8rem;
  align-items: center;
  justify-content: center;
}
.rolling-banner .btn-prev i,
.rolling-banner .btn-next i {
  display: inline-block;
  width: 1.2rem;
  height: 2.2rem;
}
.rolling-banner .btn-play-pause.active i {
  width: 1.3rem;
  height: 2rem;
  background: url(../images/main/ico_rolling_play.png) no-repeat 0/1.3rem;
}
.rolling-banner .btn-play-pause i {
  display: inline-block;
  width: 1.1rem;
  height: 2.2rem;
}
.rolling-banner .swiper-button-disabled {
  opacity: 0.5;
  cursor: auto;
}
.rolling-banner .btn-prev i {
  background: url(../images/main/ico_rolling_prev.png) no-repeat;
}
.rolling-banner .btn-next i {
  background: url(../images/main/ico_rolling_next.png) no-repeat;
}
.rolling-banner .btn-play-pause i {
  background: url(../images/main/ico_rolling_stop.png) no-repeat 0 0/1.1rem;
}
.rolling-banner a {
  display: block;
}
.rolling-banner img {
  width: 100%;
}
@media all and (min-width: 1024px), print {
  .rolling-banner {
    flex: 0 0 39.6rem;
  }
}

.theme-data {
  border: 0.1rem solid #d6d6d6;
  background: #fff;
}
.theme-data .swiper-button-disabled {
  cursor: auto;
}
.theme-data .swiper-button-disabled i {
  opacity: 0.5;
}

.theme-tab-wrap {
  position: relative;
  padding: 0 4rem;
}
.theme-tab-wrap:has(.swiper-button-lock) {
  padding: 0;
}
.theme-tab-wrap .button-prev,
.theme-tab-wrap .button-next {
  position: absolute;
  width: 4.1rem;
  height: 100%;
}
.theme-tab-wrap .button-prev {
  left: 0;
  border-right: 0.1rem solid #d6d6d6;
}
.theme-tab-wrap .button-next {
  right: 0;
  border-left: 0.1rem solid #d6d6d6;
}
.theme-tab-wrap .button-prev i {
  display: inline-block;
  width: 1rem;
  height: 1.6rem;
  background: url(../images/main/ico_tab_prev.png) no-repeat 0 0/1rem;
}
.theme-tab-wrap .button-next i {
  display: inline-block;
  width: 1rem;
  height: 1.6rem;
  background: url(../images/main/ico_tab_next.png) no-repeat 0 0/1rem;
}

.theme-tab-swiper .swiper-slide {
  width: 20rem;
  height: auto;
}
.theme-tab-swiper .swiper-slide:last-child a {
  border-right: 0;
}
.theme-tab-swiper .active {
  background: #00796b;
  color: #fff;
}
.theme-tab-swiper a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1.5rem 1rem;
  border-right: 0.1rem solid #d6d6d6;
  text-align: center;
  font-weight: 600;
  font-size: 1.5rem;
  color: #222;
}
@media all and (min-width: 1024px), print {
  .theme-tab-swiper .swiper-slide {
    width: auto;
  }
  .theme-tab-swiper a {
    padding: 2rem 1.5rem;
    font-size: 1.8rem;
  }
}

.tab-pannel {
  padding: 3rem 2rem;
  border-top: 0.1rem solid #d6d6d6;
}
.tab-pannel .swiper-slide {
  padding: 3rem 2rem;
}
.tab-pannel .swiper-card-list {
  margin-top: 3rem;
}
@media all and (min-width: 1024px), print {
  .tab-pannel {
    padding: 5rem;
  }
}

.theme-card {
  width: auto;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
}
.theme-card .l {
  flex: 0 0 30rem;
}
.theme-card .theme-txt {
  margin-bottom: 1.7rem;
  line-height: 1.4;
}
@media all and (min-width: 1024px), print {
  .theme-card .theme-txt {
    margin-bottom: 4.5rem;
    font-size: 1.8rem;
  }
}

.main-layer-popzone {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
}
.main-layer-popzone.open {
  display: flex;
}
.main-layer-popzone .zone-wrap {
  flex: 0 1 127.2rem;
  overflow: hidden;
}
.main-layer-popzone .popzone-tit {
  width: 25rem;
  height: 3.4rem;
  margin: 0 auto 3rem;
  background: url(../images/main/img_popupzone-tit.png) no-repeat 50% 0/25rem;
}
.main-layer-popzone .swiper-slide a {
  display: block;
}
.main-layer-popzone .swiper-slide img {
  width: 100%;
}
.main-layer-popzone .popzone-control {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1.2rem;
       column-gap: 1.2rem;
  margin-top: 2.5rem;
}
.main-layer-popzone .popzone-pagination {
  width: auto;
  line-height: 1;
}
.main-layer-popzone .swiper-pagination-bullet {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 0.6rem !important;
  border: 0.2rem solid #fff;
  border-radius: 50%;
  background: transparent;
  opacity: 1;
}
.main-layer-popzone .swiper-pagination-bullet-active {
  width: 3rem;
  border-radius: 0.7rem;
}
.main-layer-popzone .popzon-button-play-pause {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: #292b29;
}
.main-layer-popzone .popzon-button-play-pause i {
  display: inline-block;
  width: 0.9rem;
  height: 1.2rem;
  background: url(../images/main/btn_visual_stop.png) no-repeat 0 0/0.9rem;
}
.main-layer-popzone .popzon-button-play-pause.active i {
  width: 1rem;
  height: 1.4rem;
  background: url(../images/main/btn_visual_play.png) no-repeat 0 0/0.9rem;
}
.main-layer-popzone .bot {
  margin-top: 3rem;
}
.main-layer-popzone .bot .l {
  display: flex;
  justify-content: center;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}
.main-layer-popzone .bot .r {
  margin-top: 2.5rem;
  text-align: center;
}
.main-layer-popzone .popzone-check {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 0.6rem;
       column-gap: 0.6rem;
  color: #fff;
}
.main-layer-popzone .popzone-check label {
  cursor: pointer;
}
.main-layer-popzone .btn-pozone-close i {
  display: block;
  width: 6rem;
  height: 6rem;
  background: url(../images/main/btn_popzone_close.png) no-repeat 0 0/6rem;
}
.main-layer-popzone .popzone-button-next,
.main-layer-popzone .popzone-button-prev {
  display: none;
}
@media all and (min-width: 1024px), print {
  .main-layer-popzone .swiper-center {
    justify-content: center;
  }
  .main-layer-popzone .popzone-tit {
    width: 34.4rem;
    height: 4.6rem;
    margin: 0 auto 5.7rem;
    background-size: auto;
  }
  .main-layer-popzone .pop-slide-box {
    position: relative;
    max-width: 127.2rem;
    margin: 0 auto;
    padding: 0 5.6rem;
  }
  .main-layer-popzone .swiper-slide {
    padding-top: 1rem;
  }
  .main-layer-popzone .swiper-slide a {
    transition: transform 0.3s ease;
  }
  .main-layer-popzone .swiper-slide a:hover {
    transform: translateY(-1rem);
  }
  .main-layer-popzone .swiper-slide img {
    width: 36rem;
    height: 36rem;
  }
  .main-layer-popzone .bot {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
    margin-top: 3rem;
  }
  .main-layer-popzone .bot .l {
    display: flex;
    line-height: 1;
  }
  .main-layer-popzone .bot .r {
    margin-top: 0;
  }
  .main-layer-popzone .popzone-button-next,
  .main-layer-popzone .popzone-button-prev {
    display: block;
    position: absolute;
    top: 50%;
    width: 5.6rem;
    height: 5.6rem;
    transform: translateY(-70%);
    cursor: pointer;
  }
  .main-layer-popzone .popzone-button-next:focus-visible,
  .main-layer-popzone .popzone-button-prev:focus-visible {
    outline: 0.2rem dotted red;
    outline-offset: -0.1rem;
  }
  .main-layer-popzone .popzone-button-prev {
    left: 0;
    background: url(../images/main/btn_popzone_prev.png) no-repeat 0 50%;
  }
  .main-layer-popzone .popzone-button-next {
    right: 0;
    background: url(../images/main/btn_popzone_next.png) no-repeat 100% 50%;
  }
  .main-layer-popzone .swiper-button-disabled {
    opacity: 0.5;
    cursor: auto;
  }
  .main-layer-popzone .swiper-pagination-lock + .popzon-button-play-pause,
  .main-layer-popzone .swiper-button-lock {
    display: none;
  }
}