@charset "utf-8";

#container {
  position: relative;
}

.ta-center {
	text-align:center;
}

.sub-top {
  position: relative;
}

.sub-top .visual {
  height: 24rem;
  display: flex;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.sub-top.sub1 .visual {
  background-image: url("../images/sub/visual_sub1.jpg");
}
.sub-top.sub2 .visual {
  background-image: url("../images/sub/visual_sub2.jpg");
}
.sub-top.sub3 .visual {
  background-image: url("../images/sub/visual_sub3.jpg");
}

.sub-top .visual h2 {
  width: 100%;
  margin-bottom: 3rem;
  font-size: 4.4rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.sub-top .breadcrumb {
  max-width: 144rem;
  margin: -3.5rem auto 0;
  display: flex;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 0.4rem 2rem 0 rgba(0, 0, 0, 0.08);
}

.sub-top .breadcrumb .home {
  width: 7rem;
  height: 7rem;
  flex-shrink: 0;
  display: block;
  background: url("/pub/images/ico/ico_home.svg") no-repeat center
    var(--color-primaryDark);
  background-size: 1.8rem;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

.sub-top .breadcrumb .loca {
  flex-basis: 30rem;
  position: relative;
}

.sub-top .breadcrumb .loca button {
  width: 100%;
  height: 7rem;
  padding: 0 3.6rem 0 2rem;
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: left;
}

.sub-top .breadcrumb .loca button::before {
  content: "";
  width: 1.2rem;
  height: 0.8rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  background: url("/pub/images/ico/ico_triangle_gray.svg") no-repeat left top;
  background-size: 100%;
  transition: all 0.2s ease-out;
}

.sub-top .breadcrumb .loca button.on::before {
  transform-origin: 50% 30%;
  transform: translateY(-50%) rotate(180deg);
}

.sub-top .breadcrumb .loca button::after {
  content: "";
  width: 1px;
  height: 2rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--border);
}

.sub-top .breadcrumb .loca ul {
  display: none;
  position: absolute;
  width: 100%;
  max-height: 35rem;
  overflow-y: auto;
  padding: 1rem 2rem;
  background: #fff;
  z-index: 97;
  border-bottom-left-radius: 1.6rem;
  border-bottom-right-radius: 1.6rem;
  box-shadow: 0 1rem 1.4rem 0 rgba(0, 0, 0, 0.08);
}

.sub-top .breadcrumb .loca ul::-webkit-scrollbar {
  width: 0.4rem;
}

.sub-top .breadcrumb .loca ul::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 10px;
}

.sub-top .breadcrumb .loca ul::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: var(--color-primary);
}

.sub-top .breadcrumb .loca ul li a {
  padding: 0.9rem 0;
  display: block;
  font-weight: 500;
}

.sub-top .breadcrumb .loca ul li a:hover,
.sub-top .breadcrumb .loca ul li a:focus {
  color: var(--color-primaryDark);
}

.contents {
  margin-top: 8rem;
  margin-bottom: 12rem;
}

.contents.bottom {
  margin-bottom: 0;
}

.btm-padding {
  padding-bottom: 15rem !important;
}

/* common */
.tit-box {
  margin-bottom: 3rem;
}

.section .inner .tit-box2 {
  padding-bottom: 15rem !important;
}

.section {
  margin-top: 8rem;
}

[class*="flex-"] {
  display: flex;
}
[class*="flex-"] > * {
  flex-grow: 1;
  flex-shrink: 0;
}

.flex-2.gap-24 > * {
  flex-basis: calc(50% - 1.2rem);
}
.flex-3.gap-24 > * {
  flex-basis: calc((100% - 4.8rem) / 3);
}
.flex-4.gap-16 > * {
  flex-basis: calc((100% - 4.8rem) / 4);
}

.grow-0 > * {
  flex-grow: 0;
}

.gap-16 {
  gap: 1.6rem;
}
.gap-20 {
  gap: 2rem;
}
.gap-24 {
  gap: 2.4rem;
}

[class*="bg-"] {
  position: relative;
}

[class*="bg-"].section {
  padding: 8rem 0;
}

.bg-light {
  background: var(--bg-light);
}
.bg-dark {
  background: var(--color-dark);
}
.bg-primary {
  background: var(--color-primary);
}
.bg-pdark {
  background: var(--color-primaryDark);
}

.bd-ddd {
  border: 1px solid var(--border);
  background: #fff;
}

.rad-15 {
  border-radius: 1.5rem;
}

.flex-content {
  gap: 4rem;
}

.flex-content .tit-box {
  flex-basis: 37%;
  min-width: 30rem;
}
.flex-content .cont-wrap {
  flex-basis: calc(63% - 4rem);
}

[class*="check-"] {
  position: relative;
  padding-left: 3.6rem;
}

[class*="check-"]::before {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  left: 0;
  top: 0.6rem;
  background: url("/pub/images/ico/ico_check_white.svg") no-repeat left top;
  background-size: 100%;
  border-radius: 50%;
}

.check-primary::before {
  background-color: var(--color-primary);
}

ul[class*="bullet-"] > li + li {
  margin-top: 0.7rem;
}

/* 프로그램 */
.program-order {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.program-order::before {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 1px dashed var(--border);
  z-index: -1;
}

.program-order li {
  position: relative;
  max-width: 33rem;
  flex-basis: 23.1%;
  padding: 2.1rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: 1.2rem;
  background: #fff;
  box-shadow: 0.4rem 0.4rem 1rem 0 #00000014;
  text-align: center;
}

.program-order li:not(:first-child):before {
  content: "";
  position: absolute;
  left: -2.2rem;
  top: 50%;
  transform: translateY(-50%);
  border-top: 0.4rem solid transparent;
  border-bottom: 0.4rem solid transparent;
  border-left: 0.7rem solid #666;
}

.program-order li .num {
  width: 3.7rem;
  line-height: 3.7rem;
  display: inline-block;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  background: var(--color-primary);
  border-radius: 0.4rem;
}

.program-order li:nth-child(2) .num {
  background: #497c1d;
}
.program-order li:nth-child(3) .num {
  background: var(--color-primaryDark);
}
.program-order li:nth-child(4) .num {
  background: var(--color-secondary);
}

.program-order li p {
  display: inline-block;
  vertical-align: middle;
  margin-left: 1rem;
  font-size: 2.2rem;
  font-weight: 600;
}

.program-step .tit-step {
  margin-bottom: 1.6rem;
}

.program-step .tit-step.d-flex {
  align-items: center;
  gap: 1rem;
}

.program-step .tit-step .sub-bullet {
  margin-bottom: 0;
}

.program-step .tit-step .sub-bullet .body1 {
  position: relative;
  padding-left: 3rem;
  font-weight: 400;
}

.program-step .tit-step .sub-bullet .body1::before {
  content: "";
  width: 1px;
  height: 1.6rem;
  position: absolute;
  left: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--border);
}

.pg-radio {
  display: inline-block;
}

.pg-radio input {
  display: none;
}

.pg-radio input + label {
  position: relative;
  display: block;
  min-width: 24.3rem;
  padding: 1rem 0;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 0.8rem;
}

.pg-radio input:checked + label {
  border-color: var(--color-secondary);
}

.pg-radio input + label::before {
  content: "";
  width: 2.2rem;
  height: 2.2rem;
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: url("../images/ico/ico_radio.svg") no-repeat left top;
  background-size: 100%;
}

.pg-radio input:checked + label::before {
  background-image: url("../images/ico/ico_radio_on.svg");
}

.pg-radio input + label span[class*="male"] {
  display: inline-block;
  vertical-align: middle;
  font-weight: 600;
}

.pg-radio input + label span[class*="male"]::before {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  display: inline-block;
  vertical-align: middle;
  margin-top: -1px;
  margin-right: 0.8rem;
  background: url("../images/ico/ico_male.svg") no-repeat left top;
  background-size: 100%;
  filter: grayscale(1);
}
.pg-radio input + label span.female::before {
  background-image: url("../images/ico/ico_female.svg");
}

.pg-radio input:checked + label span[class*="male"]::before {
  filter: none;
}

.pg-radio input + label .price {
  padding-left: 1.6rem;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  font-size: 1.6rem;
}

.pg-radio input + label .price::before {
  content: "";
  width: 1px;
  height: 1.6rem;
  position: absolute;
  left: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--border-light);
}

.pg-radio input + label .price i {
  display: inline-block;
  margin-right: 0.3rem;
  font-weight: 600;
  color: #888;
  font-size: 2.4rem;
}

.pg-radio input:checked + label .price i {
  color: var(--color-secondary);
}

.program-step + .program-step {
  margin-top: 6rem;
}

.program-step .table {
  text-align: center;
  border-top: 1px solid var(--border);
}

.program-step .table dl {
  display: flex;
  border-bottom: 1px solid var(--border);
}

.program-step .table dt {
  flex-basis: 25%;
  max-width: 28rem;
  flex-shrink: 0;
  padding: 1.8rem 0.8rem;
}

.program-step .table dd {
  flex-grow: 1;
  padding: 1.8rem;
  border-left: 1px solid var(--border);
}

.program-step .table .head dt,
.program-step .table .head dd {
  font-weight: 600;
  background: var(--bg-light);
}

.chk-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.4rem;
}

.checkbox {
  display: inline-block;
}

.checkbox input {
  display: none;
}

.checkbox input + label {
  display: inline-block;
  padding-left: 3rem;
  position: relative;
  width:358px;
}

.checkbox input + label::before {
  content: "";
  width: 2rem;
  height: 2rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url("../images/ico/ico_checkbox.svg") no-repeat left top;
  background-size: 100%;
}

.checkbox input:checked + label::before {
  background-image: url("../images/ico/ico_checkbox_on.svg");
}

.pg-total {
  display: flex;
  overflow: hidden;
  border: 2px solid var(--color-primary);
  border-radius: 1rem;
}

.pg-total .default {
  position: relative;
  padding: 3rem 1rem;
  flex-basis: 24%;
  text-align: center;
}

.pg-total .default:nth-child(2) {
  border-left: 1px solid var(--border);
}

.pg-total .default::before {
  content: "";
  width: 2.6rem;
  height: 2.6rem;
  position: absolute;
  right: -1.3rem;
  top: 50%;
  transform: translateY(-50%);
  background: url("../images/ico/ico_plus.svg") no-repeat left top;
  background-size: 100%;
  z-index: 2;
}

.pg-total .default:nth-child(2)::before {
  background-image: url("../images/ico/ico_equal.svg");
}

.pg-total .default .sub {
  margin-bottom: 0.3rem;
  font-size: 1.6rem;
  font-weight: 600;
}

.pg-total .price {
  font-size: 2.8rem;
  font-weight: 700;
}

.pg-total .total {
  flex-grow: 1;
  justify-content: center;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4rem;
  background: #f1f9ea;
}

.pg-total .total .tit {
  font-size: 2.6rem;
  font-weight: 700;
}

/* 이용안내 */
.howto-book li + li {
  margin-top: 4rem;
}

.howto-book li > .stitle2 {
  position: relative;
  margin-bottom: 2.4rem;
  padding-left: 3.8rem;
}

.howto-book li > .stitle2 .num {
  position: absolute;
  width: 3rem;
  left: 0;
  top: 0.4rem;
  line-height: 3rem;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  font-weight: 600;
  background: var(--color-primary);
  border-radius: 50%;
}

.howto-book li > .stitle2 .bullet {
  display: inline-block;
  position: relative;
  padding-left: 2rem;
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.howto-book li > .stitle2 .bullet::before {
  content: "ㆍ";
  position: absolute;
  left: 0;
}

.howto-book li .flex-4 .bd-ddd {
  padding: 3rem 1rem;
  text-align: center;
}

.howto-book li .flex-4 .bd-ddd .stitle2::before {
  content: "";
  width: 10rem;
  height: 10rem;
  display: block;
  margin: 0 auto 1.2rem;
  background-size: 100%;
  background-position: left top;
  background-repeat: no-repeat;
}

.howto-book li .flex-4 .bd-ddd .stitle2.ico1::before {
  background-image: url("/pub/images/ico/ico_info1_top2.svg");
}
.howto-book li .flex-4 .bd-ddd .stitle2.ico2::before {
  background-image: url("/pub/images/ico/ico_info1_top1.svg");
}
.howto-book li .flex-4 .bd-ddd .stitle2.ico3::before {
  background-image: url("/pub/images/ico/ico_info1_top3.svg");
}

.howto-book li .flex-4 .bd-ddd .text {
  margin-top: 2.8rem;
}

.howto-book li .flex-4 .bd-ddd .text .btn-rg {
  margin-top: 1rem;
}

.howto-book li .flex-2 .bd-ddd {
  padding: 2rem 3.2rem;
}

.howto-book li .flex-2 .bd-ddd .stitle3::before {
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  display: inline-block;
  vertical-align: middle;
  margin: -2px 1rem 0 0;
  background: url("/pub/images/ico/ico_call_sec.svg") no-repeat left top;
  background-size: 100%;
}

.howto-book li .flex-2 .bd-ddd .stitle3.ico2::before {
  width: 3rem;
  background-image: url("../images/ico/ico_sms.svg");
}

.medi-order .bd-ddd {
  position: relative;
  padding: 3rem 2rem 3rem 14rem;
  background: #fff;
}

.medi-order .bd-ddd:not(:last-child)::before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -3.6rem;
  background: url("/pub/images/ico/ico_arr_pri_2.svg") no-repeat left top;
  background-size: 100%;
}

.medi-order .bd-ddd + .bd-ddd {
  margin-top: 5.6rem;
}

.medi-order .bd-ddd > span {
  position: absolute;
  width: 8rem;
  height: 8rem;
  top: 3rem;
  left: 3.2rem;
  background-size: 100%;
  background-position: left top;
  background-repeat: no-repeat;
}

.medi-order .bd-ddd .ico1 {
  background-image: url("/pub/images/sub/ico_info1_order1.svg");
}
.medi-order .bd-ddd .ico2 {
  background-image: url("../images/sub/ico_info1_order6.svg");
}
.medi-order .bd-ddd .ico3 {
  background-image: url("/pub/images/sub/ico_info1_order2.svg");
}
.medi-order .bd-ddd .ico4 {
  background-image: url("../images/sub/ico_info1_order7.svg");
}
.medi-order .bd-ddd .ico5 {
  background-image: url("/pub/images/sub/ico_info1_order5.svg");
}
.medi-order .bd-ddd .ico6 {
  background-image: url("../images/sub/ico_info1_order8.svg");
}

.medi-order .bd-ddd .num {
  display: inline-block;
  vertical-align: middle;
  margin: -2px 0.6rem 0 0;
  width: 2.8rem;
  line-height: 2.8rem;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  background: var(--color-primary);
  border-radius: 50%;
}

.medi-order .bd-ddd ul {
  margin-top: 1.6rem;
  color: var(--text-secondary);
}

.medi-order .bd-ddd ul li + li {
  margin-top: 0.3rem;
}

.warn-wrap {
  margin-top: 2.4rem;
}

.warn-wrap .bd-ddd {
  position: relative;
  min-height: 21rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.8rem 2rem 2.8rem 16.4rem;
}

.warn-wrap .bd-ddd + .bd-ddd {
  margin-top: 2.4rem;
}

.warn-wrap .bd-ddd .ico {
  position: absolute;
  width: 10rem;
  height: 10rem;
  left: 3.2rem;
  top: 2.8rem;
  background-size: 100%;
  background-position: left top;
  background-repeat: no-repeat;
}

.warn-wrap .bd-ddd .ico.ico1 {
  background-image: url("../images/ico/ico_warn1.svg");
}
.warn-wrap .bd-ddd .ico.ico2 {
  background-image: url("../images/ico/ico_warn2.svg");
}
.warn-wrap .bd-ddd .ico.ico3 {
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/ico/ico_warn3.svg");
}
.warn-wrap .bd-ddd .ico.ico4 {
  background-image: url("../images/ico/ico_warn4.svg");
}
.warn-wrap .bd-ddd .ico.ico5 {
  background-image: url("../images/ico/ico_warn5.svg");
}
.warn-wrap .bd-ddd .ico.ico6 {
  background-image: url("../images/ico/ico_warn6.svg");
}

.warn-wrap .bd-ddd .ico.ico7 {
  background-image: url("/pub/images/sub/ico_info1_order2.svg")
}

.warn-wrap .bd-ddd .stitle3 {
  margin-bottom: 1.6rem;
}

.warn-thumb {
  margin-top: 2.4rem;
}

.warn-thumb > div {
  display: flex;
  align-items: center;
}

.warn-thumb > div + div {
  margin-top: 4rem;
}

.warn-thumb .img {
  flex-basis: 27%;
  min-width: 30rem;
}

.warn-thumb .img img {
  display: block;
  width: 100%;
  border-radius: 1.5rem;
}

.warn-thumb .text {
  flex-grow: 1;
  padding-left: 3.4%;
}

.result-btm {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
}

.result-btm > div {
  position: relative;
  padding: 3.2rem 2rem;
  display: flex;
  gap: 1.6rem;
  align-items: center;
  justify-content: center;
  flex-basis: calc(25% - 1.2rem);
  color: #fff;
  border-radius: 1.5rem;
}

.result-btm .bg-dark {
  flex-grow: 1;
}

.result-btm .ico {
  width: 6.2rem;
  height: 6.2rem;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 100%;
}
.result-btm .ico.ico1 {
  background-image: url("../images/ico/ico_result1.svg");
}
.result-btm .ico.ico2 {
  background-image: url("../images/ico/ico_result2.svg");
}
.result-btm .ico.ico3 {
  background-image: url("../images/ico/ico_result3.svg");
}

.result-btm .stitle2 {
  margin-top: 0.4rem;
  font-weight: 600;
}

.result-btm .stitle2 span {
  display: inline-block;
  padding-right: 1.6rem;
  position: relative;
}

.result-btm .stitle2 span::after {
  content: "";
  width: 1px;
  height: 1.6rem;
  position: absolute;
  top: 1rem;
  right: 0.5rem;
  background: #ffffff10;
}

.brd-sch {
  margin-left: auto;
  max-width: 55rem;
  overflow: hidden;
  display: flex;
  padding-right: 1rem;
  border: 1px solid var(--border);
  border-radius: 5rem;
}

.brd-sch input {
  height: 5.8rem;
  flex-grow: 1;
  padding: 0 0 0 3rem;
  border: 0;
}

.brd-sch button {
  width: 5.8rem;
  height: 5.8rem;
  background: url("/pub/images/ico/ico_search_gray.svg") no-repeat center;
  background-size: 1.8rem;
}

.pagination {
  margin-top: 4rem;
  text-align: center;
  font-size: 0;
}

.pagination a {
  display: inline-block;
  width: 4rem;
  height: 4rem;
  margin: 0 0.3rem;
  font-family: "Roboto";
  text-align: center;
  border-radius: 50%;
}

.pagination a.num {
  font-size: 1.8rem;
  line-height: 4rem;
}

.pagination a.num.current {
  color: #fff;
  background: var(--text-primary);
}

.pagination a.num:hover {
  font-weight: 600;
}

.pagination a.arrow.prev,
.pagination a.arrow.next {
  background: url("/pub/images/sub/pagination_prev.svg") no-repeat center center;
  background-size: 100%;
}
.pagination a.arrow.first,
.pagination a.arrow.last {
  background: url("/pub/images/sub/pagination_first.svg") no-repeat center
    center;
  background-size: 100%;
}

.pagination a.arrow.disabled {
  opacity: 0.38;
}

.pagination a.arrow.next {
  transform: rotate(180deg);
}

.pagination a.arrow.last {
  transform: rotate(180deg);
}

.faq-wrap {
  margin-top: 2.4rem;
  border-top: 2px solid #222;
}

.faq-wrap .faq button {
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  width: 100%;
  padding: 3rem 6rem 3rem 10.7rem;
  text-align: left;
  font-size: 2rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.faq-wrap .faq.open button {
  text-overflow: inherit;
  white-space: inherit;
  font-weight: 600;
  color: var(--color-primaryDark);
}

.faq-wrap .faq.open button::after {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  right: 4rem;
  background: url("/pub/images/ico/ico_arr_black.svg") no-repeat left top;
  background-size: 100%;
}

.faq-wrap .faq button::before,
.faq-wrap .faq .ans::before {
  content: "Q";
  width: 4rem;
  line-height: 4rem;
  position: absolute;
  top: 2.5rem;
  left: 4rem;
  font-weight: 600;
  text-align: center;
  color: #fff;
  background: var(--color-primaryDark);
  border-radius: 50%;
}

.faq-wrap .faq .ans {
  display: none;
  position: relative;
  padding: 3rem 2rem 5rem 10rem;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
}

.faq-wrap .faq .ans::before {
  content: "A";
  background: var(--color-secondary);
}

/* 센터소개 */
.greeting {
  position: relative;
  margin-top: 13rem;
  background: linear-gradient(90deg, #effce3 50%, #feeede);
}

.greeting::before {
  content: "";
  max-width: 92rem;
  width: 65%;
  height: 100%;
  position: absolute;
  left: -36rem;
  top: 0;
  background: url("/pub/images/sub/bg_logo_gray.svg") no-repeat center 40%;
  background-size: 100%;
}

.greeting .inner {
  position: relative;
  min-height: 35rem;
  padding-top: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.greeting .title {
  position: relative;
}

.greeting .title::before,
.greeting .title .tit::after {
  content: "";
  width: 2.7rem;
  height: 2rem;
  display: block;
  background: url("../images/ico/ico_quot.svg") no-repeat left top;
  background-size: 100%;
}

.greeting .title .eng {
  margin-top: 2.4rem;
  color: #22222250;
}

.greeting .title .eng span {
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
  margin-right: 0.8rem;
}

.greeting .title .eng span img {
  max-width: 100%;
  display: block;
}

.greeting .title .tit {
  display: inline-block;
  position: relative;
  font-size: 4.8rem;
  font-weight: 700;
}

.greeting .title::before{
  position: absolute;
  top: 2.5rem;
  left: 33rem;
}

.greeting .title .tit::after {
  position: absolute;
  top: 1.5rem;
  right: -15rem;
  transform: rotate(180deg);
}

.greeting .img-wrap {
  position: relative;
  text-align: right;
  padding-right: 50rem;
  padding-bottom: 2rem;
}

.greeting .img-wrap .name strong {
  padding-left: 1rem;
}

.greeting .img-wrap .img {
  position: absolute;
  right: -4rem;
  bottom: 0;
}

.greeting-text p + p {
  margin-top: 4rem;
  line-height: 1.7;
}

.staff-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 4.8rem 2rem;
  /*justify-content: space-between;*/
  justify-content: flex-start;
}

.staff-wrap .staff {
  flex-basis: calc(25% - 2.2rem);
}

.staff-wrap .staff .img {
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 1.5rem;
  border:1px solid #ddd;
}

.staff-wrap .staff .img img {
  width: 100%;
}

.staff-wrap .staff .tag {
  padding: 0.1rem 1.2rem 0;
  display: inline-block;
  font-weight: 500;
  color: #fff;
  border-radius: 5rem;
  background: var(--color-primary);
}

.staff-wrap .staff .name {
  margin-top: 1rem;
  font-size: 3rem;
}

.map-wrap {
  overflow: hidden;
  display: flex;
  border-radius: 1.5rem;
}

.map-wrap .map-container {
  flex-grow: 1;
  height: 40rem;
  background: #e7e7e7;
}

.map-wrap .in_img{
  max-width: 1000px;
}

.map-wrap .in_img img {
  width: 100%;
}

.map-wrap .info {
  flex-basis: 30.6%;
  min-width: 30rem;
  padding: 2.8%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background: var(--color-primaryDark);
}

.map-wrap .info::before {
  content: "";
  width: 28rem;
  height: 28rem;
  position: absolute;
  top: -7rem;
  right: -6rem;
  background: url("/pub/images/common/logo.svg") no-repeat left top;
  background-size: 122rem;
  opacity: 0.1;
}

.map-wrap .info ul {
  margin-top: 2.4rem;
}

.map-wrap .info ul li {
  position: relative;
  padding-left: 4.8rem;
}

.map-wrap .info ul li + li {
  margin-top: 1.8rem;
}

.map-wrap .info ul li::before {
  content: "";
  width: 3.2rem;
  height: 3.2rem;
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fff;
  background-size: 2rem;
  border-radius: 50%;
}

.map-wrap .info ul li.home::before {
  background-image: url("/pub/images/ico/ico_home_pdark.svg");
}
.map-wrap .info ul li.call::before {
  background-size: 1.5rem;
  background-image: url("/pub/images/ico/ico_call_pdark.svg");
}
.map-wrap .info ul li.build::before {
  background-image: url("/pub/images/ico/ico_build_pdark.svg");
}

.route {
  padding: 3.2rem 0;
  display: flex;
  align-items: center;
}

.route .trans {
  flex-basis: 15%;
  flex-shrink: 0;
  min-width: 15rem;
  position: relative;
  text-align: center;
  margin-right: 3%;
}

.route .trans::after {
  content: "";
  width: 1px;
  max-height: 12rem;
  height: 100%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  background: var(--border);
}

.route .trans .stitle3::before {
  content: "";
  width: 8rem;
  height: 8rem;
  display: block;
  margin: 0 auto 0.8rem;
  background: url("/pub/images/ico/ico_metro.svg") no-repeat left top;
  background-size: 100%;
}

.route .trans.bus .stitle3::before {
  background-image: url("/pub/images/ico/ico_bus.svg");
}

.route .detail > p {
  margin-bottom: 1.2rem;
}

.route .detail ul li {
  position: relative;
  padding-left: 7rem;
  line-height: 1.9;
}

.route .detail.metro ul li + li {
  margin-top: 1.4rem;
}

.route .detail ul li .chip {
  width: 6rem;
  position: absolute;
  left: 0;
  top: 0.1rem;
  text-align: center;
  line-height: 2.8rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  background: #3a9cfc;
  border-radius: 5rem;
}

.route .detail ul li .chip.line1 {
  background: #ed7d24;
}
.route .detail ul li .chip.line2 {
  background: #38a351;
}

.route .detail.metro ul li p:not(:last-child)::after {
  content: "-";
}

.route .detail ul li p,
.route .detail ul li p b,
.route .detail ul li p .t-secondary {
  display: inline-block;
  margin-right: 0.7rem;
}

.route .detail .flex-3 {
  row-gap: 1.2rem;
}

@media screen and (max-width: 1200px) {
  .program-order li:not(:first-child):before {
    left: -6.5%;
  }

  .greeting .img-wrap {
    padding-right: 40rem;
  }

  .greeting .img-wrap .img {
    right: -12rem;
  }
}

/* tablet */
@media screen and (max-width: 1024px) {
  .flex-content {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
  }

  .program-order li .num {
    width: 3.2rem;
    line-height: 3.2rem;
    display: block;
    margin: 0 auto 0.5rem;
  }

  .program-order li p {
    margin-left: 0;
    font-size: 1.8rem;
  }

  .howto-book li .flex-4 {
    flex-wrap: wrap;
  }

  .howto-book li .flex-4 .bd-ddd {
    flex-basis: calc((100% - 1.6rem) / 2);
  }

  .result-btm > div {
    padding: 3.2rem 3rem;
    flex-basis: calc(50% - 1.2rem);
    justify-content: flex-start;
  }

  .greeting .title .eng span {
    display: block;
    margin-bottom: 0.4rem;
  }

  .greeting .title .tit {
    font-size: 4rem;
  }

  .greeting .img-wrap {
    padding-right: 45%;
  }

  .greeting .img-wrap .img {
    width: 74%;
  }

  .greeting .img-wrap .img img {
    width: 100%;
  }

  .staff-wrap {
    gap: 3rem 0;
  }

  .staff-wrap .staff {
    flex-basis: calc((100% / 3) - 1.5rem);
  }

  .staff-wrap .staff .name {
    font-size: 2.6rem;
  }

  .map-wrap {
    flex-direction: column;
  }

  .map-wrap .map-container {
    height: 32rem;
  }

  .map-wrap .info {
    padding: 3.2rem 3rem;
  }

  .map-wrap .info ul {
    margin-top: 1.6rem;
  }

  .route .detail ul li {
    flex-basis: calc(50% - 2.4rem);
  }
}

/* mobile */
@media screen and (max-width: 768px) {
  .sub-top .visual {
    height: 16rem;
  }

  .sub-top .visual h2 {
    margin-bottom: 0;
    font-size: 3.2rem;
  }

  .sub-top .breadcrumb {
    margin: 0;
    border-radius: 0;
    box-shadow: 0 0.3rem 1.5rem 0 rgba(0, 0, 0, 0.08);
  }

  .sub-top .breadcrumb .home {
    width: 5rem;
/*     height: 5rem; */
    background-size: 1.4rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .sub-top .breadcrumb .loca {
    flex-grow: 1;
  }

  .sub-top .breadcrumb .loca button {
/*     height: 5rem; */
    padding: 0 4.2rem 0 1.4rem;
    font-size: 1.5rem;
  }

  .sub-top .breadcrumb .loca.sec button::after {
    display: none;
  }

  .sub-top .breadcrumb .loca ul {
    max-height: 25rem;
    padding: 0.8rem 1.4rem;
    border-bottom-left-radius: 0.8rem;
    border-bottom-right-radius: 0.8rem;
    box-shadow: 0 0.9rem 1.4rem 0 rgba(0, 0, 0, 0.08);
  }

  .sub-top .breadcrumb .loca ul li a {
    padding: 0.6rem 0;
  }

  .contents {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .btm-padding {
    padding-bottom: 8rem !important;
  }

  /* common */
  .tit-box {
    margin-bottom: 2rem;
  }

  .section {
    margin-top: 6rem;
  }

  [class*="bg-"].section {
    padding: 4rem 0;
  }

  [class*="flex-"] {
    flex-direction: column;
  }

  .gap-16 {
    gap: 1rem;
  }
  .gap-20 {
    gap: 1.2rem;
  }
  .gap-24 {
    gap: 1.6rem;
  }

  .rad-15 {
    border-radius: 1.2rem;
  }

  [class*="check-"] {
    padding-left: 3rem;
  }

  [class*="check-"]::before {
    width: 2rem;
    height: 2rem;
    top: 0.5rem;
  }

  ul[class*="bullet-"] > li + li {
    margin-top: 0.6rem;
  }

  /* 프로그램 */
  .program-order {
    flex-wrap: wrap;
    gap: 1.8rem 0.8rem;
  }

  .program-order::before {
    display: none;
  }

  .program-order li {
    max-width: 100%;
    flex-basis: calc(50% - 0.9rem);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2rem;
  }

  .program-order li:not(:first-child):before {
    left: -1rem;
    border-top: 0.4rem solid transparent;
    border-bottom: 0.4rem solid transparent;
    border-left: 0.5rem solid #666;
  }

  .program-order li:nth-child(3)::before {
    display: none;
  }

  .program-order li .num {
    width: 2.8rem;
    line-height: 2.8rem;
    margin: 0;
    font-size: 1.3rem;
  }

  .program-order li p {
    margin-left: 0.5rem;
    font-size: 1.5rem;
  }

  .program-step .tit-step {
    margin-bottom: 1.2rem;
  }

  .program-step .tit-step.d-flex {
    align-items: baseline;
    gap: 0.6rem;
  }

  .program-step .tit-step .sub-bullet .body1 {
    padding-left: 2rem;
  }

  .program-step .tit-step .sub-bullet .body1::before {
    left: 0.9rem;
  }

  .pg-radio input + label {
    padding: 1rem 0;
  }

  .pg-radio input + label::before {
    width: 2rem;
    height: 2rem;
    left: 1.4rem;
  }

  .pg-radio input + label .price i {
    font-size: 2rem;
  }

  .program-step + .program-step {
    margin-top: 4rem;
  }

  .program-step .table dt {
    padding: 1.2rem 0.8rem;
  }

  .program-step .table dd {
    padding: 1.2rem;
  }

  .chk-wrap {
    gap: 1rem 2rem;
  }

  .checkbox input + label {
    padding-left: 2.6rem;
	
  }

  .checkbox input + label::before {
    width: 1.8rem;
    height: 1.8rem;
  }

  .pg-total {
    flex-wrap: wrap;
  }

  .pg-total .default {
    padding: 1.6rem 1rem;
    flex-basis: 50%;
  }

  .pg-total .default::before {
    width: 2rem;
    height: 2rem;
    right: -1rem;
  }

  .pg-total .default:nth-child(2)::before {
    display: none;
  }

  .pg-total .default .sub {
    font-size: 1.3rem;
  }

  .pg-total .price {
    font-size: 2rem;
  }

  .pg-total .total {
    gap: 2rem;
    padding: 1.6rem 1rem;
  }

  .pg-total .total .tit {
    font-size: 1.8rem;
  }

  /* 이용안내 */
  .howto-book li + li {
    margin-top: 4rem;
  }

  .howto-book li > .stitle2 {
    padding-left: 3.4rem;
    margin-bottom: 1.6rem;
  }

  .howto-book li > .stitle2 .num {
    width: 2.8rem;
    line-height: 2.8rem;
    top: 0;
    font-size: 1.3rem;
  }

  .howto-book li > .stitle2 .bullet {
    padding-left: 1.3rem;
    margin-top: 0.4rem;
    font-size: 1.5rem;
  }

  .howto-book li .flex-4 .bd-ddd {
    padding: 2.4rem 1rem;
  }

  .howto-book li .flex-4 .bd-ddd .stitle2::before {
    width: 7rem;
    height: 7rem;
    margin: 0 auto 0.8rem;
  }

  .howto-book li .flex-4 .bd-ddd .text {
    margin-top: 1rem;
  }

  .howto-book li .flex-4 .bd-ddd .text .btn-rg {
    margin-top: 0.6rem;
  }

  .howto-book li .flex-2 .bd-ddd {
    padding: 1.6rem 2.2rem;
  }

  .howto-book li .flex-2 .bd-ddd .stitle3::before {
    width: 2rem;
    height: 2rem;
    margin: -2px 0.8rem 0 0;
  }

  .howto-book li .flex-2 .bd-ddd .stitle3.ico2::before {
    width: 2.2rem;
    height: 1.6rem;
  }

  .medi-order .bd-ddd {
    padding: 2rem 1.6rem 2rem 8.4rem;
  }

  .medi-order .bd-ddd:not(:last-child)::before {
    width: 1.2rem;
    height: 1.2rem;
    bottom: -2.4rem;
  }

  .medi-order .bd-ddd + .bd-ddd {
    margin-top: 3rem;
  }

  .medi-order .bd-ddd > span {
    width: 5.5rem;
    height: 5.5rem;
    top: 1.8rem;
    left: 1.4rem;
  }

  .medi-order .bd-ddd .num {
    margin: -2px 0.4rem 0 0;
    width: 2.4rem;
    line-height: 2.4rem;
    font-size: 1.3rem;
  }

  .medi-order .bd-ddd ul {
    margin-top: 1rem;
  }

  .medi-order .bd-ddd ul li + li {
    margin-top: 0.5rem;
  }

  .warn-wrap,
  .warn-thumb {
    margin-top: 1.8rem;
  }

  .warn-wrap .bd-ddd {
    min-height: 0;
    padding: 10rem 2rem 2rem 2rem;
  }

  .warn-wrap .bd-ddd + .bd-ddd {
    margin-top: 1.6rem;
  }

  .warn-wrap .bd-ddd .ico {
    width: 7rem;
    height: 7rem;
    left: 2rem;
    top: 1.8rem;
  }

  .warn-wrap .bd-ddd .ico.ico3 {
    top: 1.8rem;
    transform: translateY(0);
  }

  .warn-wrap .bd-ddd .stitle3 {
    margin-bottom: 0.8rem;
  }

  .warn-thumb > div {
    flex-direction: column;
    gap: 1.6rem;
  }

  .warn-thumb > div + div {
    margin-top: 2.8rem;
  }

  .warn-thumb .img {
    min-width: 0;
  }

  .warn-thumb .img img {
    border-radius: 1.2rem;
  }

  .warn-thumb .text {
    padding-left: 0;
  }

  .result-btm {
    gap: 1.6rem;
  }

  .result-btm > div {
    flex-basis: 100%;
    padding: 2.2rem 1.8rem;
  }

  .result-btm .ico {
    flex-shrink: 0;
    width: 4.5rem;
    height: 4.5rem;
  }

  .result-btm .stitle2 span {
    padding-right: 0;
  }

  .result-btm .stitle2 span::after {
    display: none;
  }

  .brd-sch {
    padding-right: 0.8rem;
  }

  .brd-sch input {
    height: 4.4rem;
    padding: 0 0 0 2.2rem;
  }

  .brd-sch button {
    width: 4.4rem;
    height: 4.4rem;
    background-size: 1.6rem;
  }

  .pagination {
    margin-top: 2.4rem;
  }

  .pagination a {
    width: 2.7rem;
    height: 2.7rem;
    margin: 0 0.1rem;
  }

  .pagination a.num {
    font-size: 1.3rem;
    line-height: 2.7rem;
  }

  .faq-wrap .faq button {
    padding: 2rem 2rem 2rem 5.4rem;
    font-size: 1.5rem;
  }

  .faq-wrap .faq.open button {
    padding-right: 3.6rem;
  }

  .faq-wrap .faq.open button::after {
    width: 1.6rem;
    height: 1.6rem;
    right: 1rem;
  }

  .faq-wrap .faq button::before,
  .faq-wrap .faq .ans::before {
    width: 3rem;
    line-height: 3rem;
    top: 1.6rem;
    left: 1.4rem;
  }

  .faq-wrap .faq .ans {
    padding: 2rem 2rem 2.4rem 5.4rem;
  }

  /* 센터소개 */
  .greeting {
    margin-top: 0;
  }

  .greeting::before {
    display: none;
  }

  .greeting .inner {
    min-height: 35rem;
    padding-top: 3rem;
  }

  .greeting .title::before,
  .greeting .title .tit::after {
    width: 2rem;
    height: 1.5rem;
  }

  .greeting .title .eng {
    margin-top: 1.2rem;
  }

  .greeting .title .eng span {
    width: 91%;
    max-width: 29rem;
    display: block;
    margin-top: 0;
    margin-right: 0;
  }

  .greeting .title .tit {
    display: inline-block;
    margin-top: 0.5rem;
    line-height: 1.3;
    font-size: 3.2rem;
  }

  .greeting .title .tit::after {
    top: auto;
    bottom: 2rem;
    right: -1rem;
  }

  .greeting .img-wrap {
    padding-right: 51%;
    padding-bottom: 2rem;
  }

  .greeting .img-wrap .name strong {
    padding-left: 1rem;
    font-size: 1.8rem;
  }

  .greeting .img-wrap .img {
    width: 84%;
    max-width: 40rem;
    right: -6rem;
  }

  .greeting-text p + p {
    margin-top: 2rem;
  }

  .staff-wrap {
    gap: 2.4rem 0;
    justify-content: space-between;
  }

  .staff-wrap .staff {
    flex-basis: calc(50% - 0.5rem);
  }

  .staff-wrap .staff .img {
    margin-bottom: 1.2rem;
  }

  .staff-wrap .staff .name {
    margin-top: 0.6rem;
    font-size: 1.8rem;
  }

  .map-wrap .map-container {
    height: 20rem;
  }

  .map-wrap .info {
    padding: 1.6rem 2.4rem;
  }

  .map-wrap .info::before {
    width: 14rem;
    height: 14rem;
    top: 10rem;
    right: -4rem;
    background-size: 61rem;
  }

  .map-wrap .info ul li {
    padding-left: 2.6rem;
  }

  .map-wrap .info ul li + li {
    margin-top: 1.2rem;
  }

  .map-wrap .info ul li::before {
    width: 1.8rem;
    height: 1.8rem;
    top: 0;
    background-size: 1.4rem;
  }

  .map-wrap .info ul li.call::before {
    background-size: 1rem;
  }

  .route {
    padding: 1.6rem 1.6rem 2.4rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .route .trans {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-right: 0;
  }

  .route .trans .stitle3::before {
    width: 4.8rem;
    height: 4.8rem;
    display: inline-block;
    vertical-align: middle;
    margin: -3px 0.8rem 0 0;
  }

  .route .trans::after {
    display: none;
  }

  .route .detail {
    width: 100%;
    padding-top: 2.2rem;
    border-top: 1px solid var(--border);
  }

  .route .detail > p {
    margin-bottom: 1.6rem;
  }

  .route .detail ul li {
    padding-left: 6rem;
  }

  .route .detail.metro ul li {
    padding-left: 0;
  }

  .route .detail.metro p {
    display: block;
  }

  .route .detail.metro p::after {
    display: none;
  }

  .route .detail.metro p.start {
    margin-bottom: 0.7rem;
  }

  .route .detail.metro p:not(.start) {
    position: relative;
    padding-left: 1rem;
  }

  .route .detail.metro p:not(.start)::before {
    content: "-";
    position: absolute;
    left: 0;
  }

  .route .detail ul li .chip {
    width: 4.8rem;
    display: inline-block;
    line-height: 2.1rem;
    font-size: 1.3rem;
  }

  .route .detail.metro ul li .chip {
    position: relative;
    margin-right: 0.4rem;
    margin-top: -3px;
    vertical-align: middle;
  }

  .route .detail:not(.metro) ul li p .t-secondary {
    display: inline;
  }

  .route .detail .flex-3 {
    row-gap: 1.7rem;
  }
}
