@charset "utf-8";

/*========================================================================================================================================= */
/*================================================================ common ================================================================= */
/*========================================================================================================================================= */

.stick ul.flex li h6 {
  background: #2c4a68;
  color: #fff;
  padding: 10px;
  font-family: "NanumSquare", san-serif;
  font-weight: 700;
  transform: skew(-0.1deg);
}
.stick ul.flex li:nth-child(2n) h6 {
  background: #006a65;
}

/* 숫자 스타일 */
.num::before {
  content: attr(data-num);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(to right, #5b7f9d, #152e4c);
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}
.num.num-posa::before {
  position: absolute;
  margin: 0;
}

/* 미들 타이틀 (작은 타이틀) */
.middle-title {
  font-family: "NanumSquare", san-serif;
  text-align: center;
  margin-bottom: 40px;
}
.middle-title p {
  font-weight: 400;
  white-space: pre-line;
  margin-top: 20px;
}
.middle-title h3,
.middle-title h4 {
  line-height: 1.4;
  font-weight: 900;
  white-space: pre-line;
}
.middle-title h5,
.middle-title h6 {
  font-weight: 700;
  white-space: pre-line;
}
.middle-title > span.num::before {
  font-family: "NanumSquare", san-serif;
  font-weight: 400;
  margin: 0 auto 20px;
}

/* 테이블 스타일 */
.table-wrap {
  text-align: center;
}
.table-wrap .middle-title h4 {
  display: inline-block;
  padding: 12px 20px 8px;
  background-color: #2c4a68;
  color: #fff;
}
.table-wrap table {
  width: 100%;
  white-space: pre-line;
}
.table-wrap table tr,
.table-wrap table th,
.table-wrap table td {
  font-size: 18px;
  padding: 15px 10px;
  border: 1px solid #eee;
  vertical-align: middle;
}
.table-wrap table thead tr,
.table-wrap table tbody tr th {
  background: #f5f5f5;
  font-weight: 600;
}
.table-wrap .imp-icon img {
  max-width: 50px;
  margin-bottom: 10px;
}

/* 사진 들어간 테이블 */
.photo-table table {
  text-align: center;
  width: 100%;
}
.photo-table table tr,
.photo-table table tr td {
  padding: 15px 10px;
  border: 1px solid #ccc;
  vertical-align: middle;
}
.photo-table table td {
  white-space: pre-line;
}
.photo-table table thead tr:first-of-type td,
.photo-table table thead tr {
  border: none;
}
.photo-table table thead tr:first-of-type td {
  padding: 0;
}
.photo-table table thead tr:last-of-type td {
  background: #2c4a68;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
}
.photo-table table thead tr:first-of-type td:not(:first-child) {
  border: 1px solid #ccc;
  border-bottom: none;
}

/* 숫자 리스트 */
.num-list .num {
  position: relative;
  margin-bottom: 30px;
  padding-left: 50px;
  text-align: left; /* display: flex; align-items: center; */
}
.num-list .num:last-child {
  margin-bottom: 0;
}
.num-list .num::before {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0px;
  width: 35px;
  height: 35px;
  font-size: 20px;
}
.num-list .num:nth-child(2n)::before {
  background-color: #00635e;
}
.num-list.middle .num::before {
  top: 50%;
  transform: translateY(-50%);
}

/* 이미지 테두리 리스트 */
.line-list img {
  border: 1px solid #ccc;
}

/* 원형 이미지 테두리 리스트 */
.circle-list img {
  border-radius: 50%;
  border: 1px solid #ccc;
}

/* 파란 선 들어간 네모 박스 */
.line-box li > div {
  position: relative;
  padding: 30px 20px 30px 30px;
  border: 1px solid #eee;
}
.line-box li > div::after {
  content: "";
  display: block;
  width: 10px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #2c4a68;
}
.line-box h5 {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  font-weight: 500;
}
.line-box p {
  white-space: pre-line;
}

/* 사진+텍스트 들어간 기본 스타일 */
.basic-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 40px;
}
.basic-box:first-of-type {
  margin-top: 0;
}
.basic-box li:first-child {
  flex: 1;
}
.basic-box li:last-child {
  margin-left: 40px;
  flex: 1;
}
.basic-box li h4,
.basic-box li h5 {
  margin: 0 0 15px;
  font-weight: 800;
  white-space: pre-line;
  font-family: "NanumSquare", san-serif;
  line-height: 1.4;
}
.basic-box li.num h4,
.basic-box li.num h5 {
  margin: 20px 0 15px;
}
.basic-box li p {
  white-space: pre-line;
}
.basic-box.line li h4,
.basic-box.line li h5 {
  position: relative;
  padding-bottom: 10px;
}
.basic-box.line li h4::before,
.basic-box.line li h5::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, #1f9e9c, #8ab142);
}

/* 원 안에 아이콘 없는 박스 */
.circle-box > div > div {
  border-radius: 50%;
  background-color: #f5f5f5;
}
.circle-box:nth-child(2n-1) > div > div {
  background-color: #ebf4f2;
}
.circle-box > div > div::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.circle-box p {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 50%;
  transform: translate(0, 50%);
  text-align: center;
  white-space: pre-line;
}
.circle-box h5 {
  position: absolute;
  white-space: pre-line;
  text-align: center;
  bottom: 50%;
  transform: translateY(50%);
  display: inline-block;
  width: 100%;
}
/* .circle-box span{font-size: 24px; font-weight: bold;} */

/* 원 안에 아이콘 들어간 리스트 */
.circle-icon > li > div > div {
  border-radius: 50%;
  border: 2px solid #f5f5f5;
  width: 100%;
  height: 100%;
}
.circle-icon > li:nth-child(2n-1) > div > div {
  border: 2px solid #d9dfee;
}
.circle-icon > li > div > div::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.circle-icon > li > div > div > div {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  height: 50%;
  width: 100%;
}
.circle-icon p {
  margin-top: 15px;
  line-height: 1.4;
}

/* 배경색 타이틀 */
.bg-tit {
  display: inline-block;
  padding: 6px 32px;
  margin: 0 auto 40px;
  border-radius: 40px;
  background: #00a99e;
  color: #fff;
  font-family: "NanumSquare", san-serif;
  font-weight: 700;
}

/* 둥근 모서리를 가진 배경색 타이틀 */
.radius-tit {
  display: inline-block;
  padding: 8px 42px;
  margin: 0 auto;
  border-radius: 40px;
  background: linear-gradient(to right, #1f3d74, #4067aa);
  color: #fff;
}

/* 자세히 보기 버튼 */
.detail-btn a {
  position: relative;
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  border: 1px solid #333;
  font-size: 15px;
  font-weight: 700;
  transition: 0.4s ease-in-out;
}
.detail-btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #327cbd;
  transition: 0.4s ease-in-out;
  z-index: -1;
}
.detail-btn a:hover::before {
  width: 100%;
}
.detail-btn a:hover {
  color: #fff;
  border: 1px solid #327cbd;
}

/*================================================================ 1500px 이하 ================================================================= */
@media screen and (max-width: 1500px) {
}

/*================================================================ 1200px 이하 ================================================================= */
@media screen and (max-width: 1200px) {
  /* #wrapper {margin-top: 69px;} */
}

/*================================================================ 1025px 이하 ================================================================= */
@media screen and (max-width: 1025px) {
}

/*================================================================ 900px 이하 ================================================================= */
@media screen and (max-width: 900px) {
  /* 테이블 스타일 */
  .table-wrap .table-scroll {
    overflow-x: scroll;
    overflow-y: hidden;
    max-width: 100%;
  }
  .table-scroll::-webkit-scrollbar {
    width: 12px;
  }
  .table-scroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    background-color: rgba(220, 220, 220, 0.3);
  }
  .table-scroll::-webkit-scrollbar-thumb {
    background-clip: padding-box;
    border-radius: 5px;
    background-color: #516371;
    border: 2px solid transparent;
  }
  .table-wrap table {
    min-width: 900px;
  }
  .table-wrap table tr,
  .table-wrap table th,
  .table-wrap table td {
    font-size: 15px;
  }
}

/*================================================================ 769px 이하 ================================================================= */
@media screen and (max-width: 769px) {
  section:last-of-type {
    padding-bottom: 80px;
  }

  .res-bg {
    padding: 80px 0 !important;
  }

  /* 숫자 스타일 */
  .num::before {
    margin: 10px auto 0;
  }
  .num-list .num::before {
    margin: 0 10px 0 0;
  }

  /* 사진 들어간 테이블 */
  .photo-table table td {
    font-size: 15px;
  }
  .photo-table table thead tr:last-of-type td {
    font-size: 18px;
  }

  /* 사진+텍스트 들어간 기본 스타일 */
  .basic-box {
    display: block;
    text-align: center;
  }
  .basic-box:not(:first-of-type) {
    margin-top: 40px;
  }
  .basic-box li:last-child {
    margin-left: 0;
    margin-top: 20px;
  }
  .basic-box li h4,
  .basic-box li h5 {
    margin: 20px 0 10px;
  }
  .basic-box li.num h4,
  .basic-box li.num h5 {
    margin: 10px 0 15px;
  }
  .basic-box li img {
    max-width: 500px;
    width: 100%;
  }
  .basic-box.line li h4::before,
  .basic-box.line li h5::before {
    left: 50%;
    transform: translateX(-50%);
  }

  /* 파란 선 들어간 네모 박스 */
  .line-box li::after {
    width: 8px;
  }
  .line-box li > div {
    height: auto !important;
  }
}

/*================================================================ 600px 이하 ================================================================= */
@media screen and (max-width: 600px) {
}

/*================================================================ 425px 이하 ================================================================= */
@media screen and (max-width: 480px) {
  section:last-of-type {
    padding-bottom: 60px;
  }

  .link {
    top: -60px;
  }
  .res-bg {
    padding: 50px 0 !important;
  }
  .stick .flex > li > div.m10 {
    margin: 5px;
  }
  .title-num {
    font-size: 20px;
    width: 45px;
    height: 45px;
  }

  /* 숫자 스타일 */
  .num::before {
    width: 40px;
    height: 40px;
    font-size: 17px;
    margin: 0 auto;
  }
  .num-list .num {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    padding-left: 40px;
  }
  .num-list .num:not(:first-child) {
    margin-top: 20px;
  }
  .num-list .num::before {
    width: 30px;
    height: 30px;
    margin: 0 auto;
    font-size: 16px;
  }

  /* 미들 타이틀 (작은 타이틀) */
  .middle-title {
    margin-bottom: 20px;
  }
  .middle-title p {
    margin-top: 10px;
  }
  .middle-title > span.num::before {
    margin: 0 auto 10px;
  }

  /* 사진+텍스트 들어간 기본 스타일 */
  .basic-box li:last-child {
    margin-top: 15px;
  }
  .basic-box li img {
    max-width: 70%;
  }
  .basic-box li h4,
  .basic-box li h5 {
    margin: 15px 0 10px;
    line-height: 1.4;
  }
  .basic-box li.num h4,
  .basic-box li.num h5 {
    margin: 10px 0;
  }

  /* 원 안에 아이콘 없는 박스 */
  .circle-box > div {
    margin: 5px !important;
  }
  .circle-box h5 {
    font-size: 15px;
  }

  /* 파란 선 들어간 네모 박스 */
  .line-box li::after {
    width: 5px;
  }
  .line-box li > div {
    padding: 25px 20px 30px 25px;
  }
  .line-box li h5 {
    padding-bottom: 5px;
    margin-bottom: 10px;
  }

  /* 테이블 스타일 */
  .table-wrap table {
    min-width: 700px;
  }
  .table-wrap table tr,
  .table-wrap table th,
  .table-wrap table td {
    font-size: 12px;
  }
  .table-wrap .imp-icon img {
    max-width: 30px;
    margin-bottom: 5px;
  }

  /* 사진 들어간 테이블 */
  .photo-table table td {
    font-size: 12px;
  }
  .photo-table table tr,
  .photo-table table tr td {
    padding: 10px 5px;
  }
  .photo-table table thead tr:last-of-type td {
    font-size: 15px;
  }

  /* 배경색 타이틀 */
  .bg-tit {
    padding: 3px 24px;
    margin: 0 auto 20px;
  }

  /* 둥근 모서리를 가진 배경색 타이틀 */
  .radius-tit {
    padding: 6px 32px;
  }
}

/*========================================================================================================================================= */
/*================================================================ common ================================================================= */
/*========================================================================================================================================= */

/* =================================================================================================================================== */
/* =========================================================== main-common =========================================================== */
/* =================================================================================================================================== */

main {
  overflow: hidden;
  margin-top: 178px;
}
section {
  position: relative;
}
.swiper-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.swiper-button-prev,
.swiper-button-next {
  margin: 0;
}
.link {
  position: absolute;
  left: 0;
  top: -120px;
}

.case-comparison {
  position: relative;
}
.case-comparison .case {
  position: relative;
}
.case-comparison .case-num {
  position: absolute;
  display: flex;
  align-items: center;
  top: 10px;
  left: 10px;
  width: 80px;
  height: 80px;
  border: 1px solid #fff;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
}
.case-comparison .case-num p {
  width: 100%;
  color: #fff;
  text-align: center;
  white-space: pre-line;
  font-weight: 900;
}
.case-comparison .case-img {
  text-align: center;
  border: 1px solid #727272;
}
.case-comparison .case-img img {
  width: 100%;
}
.case-comparison .case-exp {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.case-comparison .case-exp p {
  color: #fff;
  font-weight: 700;
}
.case-comparison .case-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  opacity: 0;
}
.case-comparison .case-after {
  -webkit-animation: fadeIn50 1s 0.3s forwards;
  animation: fadeIn50 1s 0.3s forwards;
}
.case-comparison .case-after.move {
  -webkit-animation: none;
  animation: none;
}

@-webkit-keyframes fadeIn50 {
  0% {
    opacity: 0;
  }
  to {
    opacity: 0.5;
  }
}
@keyframes fadeIn50 {
  0% {
    opacity: 0;
  }
  to {
    opacity: 0.5;
  }
}

.case-slider {
  padding: 20px 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.case-slider .txt {
  font-size: 18px;
  font-family: "NanumSquare", san-serif;
  font-weight: 700;
  transform: skew(-0.1deg);
}
.case-slider .prog-bar {
  width: 75%;
  display: flex;
  justify-content: center;
  position: relative;
}
.case-slider .prog-bar:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background: #ededed;
  z-index: -1;
}

.case-slider input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
}
.case-slider input[type="range" i] {
  appearance: auto;
  cursor: default;
  color: -internal-light-dark(rgb(16, 16, 16), rgb(255, 255, 255));
  padding: initial;
  border: initial;
  margin: 2px;
}
.case-slider input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
}
.case-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: #fff;
  width: 44px;
  height: 44px;
  background: url("../img/main/range_arrow.png") center/cover no-repeat;
}
.case-slider input[type="range"]::-moz-range-thumb {
  background: #fff;
  width: 44px;
  height: 44px;
  background: url("../img/main/range_arrow.png") center/cover no-repeat;
}
.case-slider input[type="range"]:focus {
  outline: none;
}
.case-slider input[type="range"]::-ms-track {
  width: 100%;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

.case-caution ul {
  display: flex;
}
.case-caution ul > li:first-child {
  margin-right: 5px;
}
.case-caution ul > li:last-child {
  flex: 1;
}

#gallery .swiper-container {
  width: 100%;
  margin: 0 auto;
}
#gallery .swiper-slide-container {
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
#gallery .swiper-button-prev,
#gallery .swiper-button-next {
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
}
.gallery-top {
  height: 80%;
  width: 100%;
}
.gallery-thumbs {
  height: 20%;
  padding: 10px 0;
}
.gallery-thumbs .swiper-slide {
  width: 20%;
  height: 100%;
  opacity: 0.4;
}
.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.case-slide-wrap {
  position: relative;
}
.case-button-next,
.case-button-prev {
  top: 50%;
  transform: translateY(-50%);
  color: #727272;
  margin-top: 0;
}
.case-button-next {
  right: -50px;
}
.case-button-prev {
  left: -50px;
}
.case-pagination {
  bottom: -40px !important;
}
.case-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 0.8;
  transition: all 0.5s ease-in-out;
  border: 1px solid #eee;
}
.case-pagination .swiper-pagination-bullet-active {
  width: 25px;
  border-radius: 5px;
  background: #00a99e;
}

.main-tit {
  text-align: center;
  margin-bottom: 40px;
}
.main-tit.white > * {
  color: #fff;
}
.main-tit p.sub {
  margin-bottom: 20px;
  letter-spacing: 0.5em;
  color: #d8d8d8;
  font-weight: 900;
}
.main-tit p.txt {
  margin-top: 20px;
  white-space: pre-line;
}
.main-tit p.txt span {
  font-size: 1.1em;
}
.main-tit h6 {
  font-family: "NanumSquare", san-serif;
  font-weight: bold;
}
.main-tit h5 {
  display: inline-block;
  margin: 10px 0 0;
  padding: 3px 10px;
  font-family: "NanumSquare", san-serif;
  font-weight: 900;
}
.main-tit h4 {
  font-family: "NanumSquare", san-serif;
  font-weight: 900;
}
.main-tit h3 {
  color: #32b6a0;
  white-space: pre-line;
  line-height: 1.4;
  font-family: "NanumSquare", san-serif;
  font-weight: 900;
}
.main-tit .num::before {
  margin: 0 auto 15px;
  width: 60px;
  height: 60px;
  font-size: 30px;
  font-weight: bold;
  background: linear-gradient(45deg, #1486a2, #32b6a0);
}

.main-bg {
  padding: 60px 0;
}
.main-bg .zoom {
  background: url(../img/custom/main_bg.jpg) center/cover no-repeat;
}
.main-bg .main-tit h5 {
  font-weight: 500;
  margin-top: 0;
}
.main-bg .main-tit h2 {
  line-height: 1.3;
}

/* ===================== Mobile size : 1500px ======================= */

@media screen and (max-width: 1500px) {
}

/* ===================== Mobile size : 1200px ======================= */

@media screen and (max-width: 1200px) {
  main {
    margin-top: 0;
  }
  #content {
    padding-top: 68px;
  }

  .case-slide-wrap {
    margin: 120px auto 0;
    padding-bottom: 50px;
  }
  .case-pagination {
    bottom: 0 !important;
  }

  .case-button-next,
  .case-button-prev {
    top: -75px;
    transform: none;
    transition: all 0.3s ease-in-out;
  }
  .case-button-next {
    right: 20px;
  }
  .case-button-prev {
    left: auto;
    right: 90px;
  }
  .case-button-next::after,
  .case-button-prev::after {
    font-size: 35px;
  }
  .case-button-next::before,
  .case-button-prev::before {
    position: absolute;
    content: "";
    width: 55px;
    height: 55px;
    border: 1px solid;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

/* ===================== Mobile size : 1024px ======================= */

@media screen and (max-width: 1024px) {
}

/* ===================== Mobile size : 900px ======================= */

@media screen and (max-width: 900px) {
  .case-comparison .case-num {
    width: 60px;
    height: 60px;
  }
  .case-comparison .case-num p {
    font-size: 14px;
    line-height: 1.3;
  }
}

/* ===================== Mobile size : 769px ======================= */

@media screen and (max-width: 769px) {
  .case-comparison > li:last-child {
    margin-top: 40px;
  }

  .case-button-next {
    right: 15px;
  }
  .case-button-prev {
    right: 80px;
  }
  .case-button-next::after,
  .case-button-prev::after {
    font-size: 30px;
  }
  .case-button-next::before,
  .case-button-prev::before {
    width: 50px;
    height: 50px;
  }

  .main-tit .num::before {
    width: 50px;
    height: 50px;
    font-size: 26px;
  }
}

/* ===================== Mobile size : 600px ======================= */

@media screen and (max-width: 600px) {
  #gallery .swiper-button-prev:after,
  #gallery .swiper-button-next:after {
    font-size: 30px;
  }

  .dentist .tab-content .disc-list {
    padding-left: 20px;
  }

  .main-tit {
    margin-bottom: 30px;
  }
  .main-tit p.sub {
    letter-spacing: 0.3em;
  }
}

/* ===================== Mobile size : 425px ======================= */

@media screen and (max-width: 480px) {
  #content {
    padding-top: 68px;
  }

  .case-slider {
    padding: 0 10px;
  }
  .case-slider .txt {
    font-size: 14px;
  }
  .case-slider .prog-bar {
    width: 70%;
  }
  .case-comparison > li:last-child {
    margin-top: 20px;
  }

  .case-slide-wrap {
    margin: 80px auto 0;
  }
  .case-button-next,
  .case-button-prev {
    top: -65px;
  }
  .case-button-next {
    right: 10px;
  }
  .case-button-prev {
    right: 60px;
  }
  .case-button-next::after,
  .case-button-prev::after {
    font-size: 20px;
  }
  .case-button-next::before,
  .case-button-prev::before {
    width: 40px;
    height: 40px;
  }

  .main-tit {
    margin-bottom: 20px;
  }
  .main-tit p.sub {
    margin-bottom: 10px;
  }
  .main-tit p.txt {
    margin-top: 10px;
  }
  .main-tit h5 {
    margin: 5px 0 0;
  }
  .main-tit .num::before {
    font-size: 22px;
  }
}

/* ===================== Mobile size : 380px ======================= */

@media screen and (max-width: 380px) {
  .main-tit p.sub {
    letter-spacing: 0.1em;
  }
}

/* =================================================================================================================================== */
/* =========================================================== main-common =========================================================== */
/* =================================================================================================================================== */

/* ==================================================================================================================================== */
/* =========================================================== 메인 슬라이드 영역 =========================================================== */
/* ==================================================================================================================================== */

.main-slide .swiper-pagination-bullet {
  margin: 0 4px;
  width: 14px;
  height: 14px;
  background: #fff;
  border: 1px solid #32b6a0;
  opacity: 0.7;
  transition: all 0.4s ease-in-out;
}
.main-slide .swiper-pagination-bullet-active {
  background: #32b6a0;
  opacity: 1;
}

/* ==================================================================================================================================== */
/* =========================================================== 메인 슬라이드 영역 =========================================================== */
/* ==================================================================================================================================== */

/* ==================================================================================================================================== */
/* ============================================================ area1 스타일 ============================================================ */
/* ==================================================================================================================================== */

.about .inner {
  max-width: 1300px;
}
.about article {
  margin: 100px auto 80px;
}
.about ul.flex {
  gap: 20px;
}
.about ul.flex > li {
  width: calc(50% - 10px);
}
.about ul.flex > li > div {
  display: flex;
  gap: 40px;
}
.about ul.flex > li:nth-child(n + 3):nth-child(-n + 6) > div {
  margin-top: 80px;
}
.about ul.flex .img {
  width: 100px;
  text-align: center;
}
.about ul.flex .txt {
  flex: 1;
}
.about ul.flex .txt h4 {
  font-family: "NanumSquare", san-serif;
  font-weight: 500;
}
.about ul.flex .txt h4 b {
  color: #32b6a0;
}
.about ul.flex .txt p {
  white-space: pre-line;
  margin-top: 10px;
}

/* ===================== Mobile size : 1500px ======================= */

@media screen and (max-width: 1500px) {
}

/* ===================== Mobile size : 1200px ======================= */

@media screen and (max-width: 1200px) {
}

/* ===================== Mobile size : 1024px ======================= */

@media screen and (max-width: 1024px) {
}

/* ===================== Mobile size : 900px ======================= */

@media screen and (max-width: 900px) {
}

/* ===================== Mobile size : 769px ======================= */

@media screen and (max-width: 769px) {
}

/* ===================== Mobile size : 600px ======================= */

@media screen and (max-width: 600px) {
  .about article {
    margin: 70px auto 0;
  }
  .about ul.flex {
    flex-direction: column;
    gap: 60px;
  }
  .about ul.flex > li {
    width: 100%;
  }
  .about ul.flex > li:nth-child(n + 3):nth-child(-n + 6) > div {
    margin: 0;
  }
}

/* ===================== Mobile size : 480px ======================= */

@media screen and (max-width: 480px) {
  .about article {
    margin: 40px auto 0;
  }
  .about ul.flex {
    gap: 20px;
  }
  .about ul.flex > li > div {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    border: 1px solid #ccc;
    padding: 25px 10px;
    border-radius: 20px;
    background: rgba(244, 244, 244, 0.2);
  }
  .about ul.flex .img {
    width: 100%;
  }
}

/* ===================== Mobile size : 380px ======================= */

@media screen and (max-width: 380px) {
}

/* ==================================================================================================================================== */
/* ============================================================ area1 스타일 ============================================================ */
/* ==================================================================================================================================== */

/* ==================================================================================================================================== */
/* ============================================================ area2 스타일 ============================================================ */
/* ==================================================================================================================================== */

.dentist .tab-content:not(:first-child) {
  margin-top: 180px;
}
.dentist .tab-content > ul > li:first-child {
  display: flex;
  align-items: flex-end;
}
.dentist .tab-content > ul > li:last-child > div {
  margin-left: 50px;
}
.dentist .tab-content .tab-name {
  border-bottom: 2px dotted #ddd;
  margin-bottom: 20px; /* padding-bottom: 20px; */
}
.dentist .tab-content .tab-name > div {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.dentist .tab-content .tab-name > div h3 {
  font-weight: 900;
  font-size: 44px;
}
.dentist .tab-content .tab-name > div span {
  padding: 0 5px;
  font-size: 0.65em;
  font-weight: 500;
  background: #32b6a0;
  color: #fff;
}
.dentist .tab-content .tab-name article {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.dentist .tab-content .tab-name article img {
  margin-right: 10px;
}
.dentist .tab-content .tab-name article p {
  font-weight: 700;
}
.dentist .tab-content .tab-name p.txt {
  margin-top: 20px;
  padding-top: 20px;
  font-weight: 400;
  white-space: pre-line;
  border-top: 2px dotted #ddd;
}
.dentist .tab-content .disc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dentist .tab-content .disc-list li {
  position: relative;
  padding-left: 15px;
}
.dentist .tab-content .disc-list li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #32b6a0;
}
.dentist .tab-content .disc-list li p {
  font-size: 16px;
  line-height: 1.8;
}
.dentist .tab-content .disc-list li.tit {
  padding-left: 0;
  margin-bottom: 5px;
}
.dentist .tab-content .disc-list li.tit::before {
  display: none;
}
.dentist .tab-content .disc-list li.tit p {
  font-weight: 900;
  color: #32b6a0;
  font-size: 24px;
}

/* ===================== Mobile size : ~1201px ======================= */

@media screen and (min-width: 1201px) {
  .dentist .tab-content .disc-list li p {
    font-size: 18px;
  }
}

/* ===================== Mobile size : 1200px ======================= */

@media screen and (max-width: 1500px) {
}

/* ===================== Mobile size : 1200px ======================= */

@media screen and (max-width: 1200px) {
}

/* ===================== Mobile size : 1024px ======================= */

@media screen and (max-width: 1024px) {
  .dentist .tab-content:not(:first-child) {
    margin-top: 80px;
  }
  .dentist .tab-content > ul {
    display: block;
    background: none;
    max-width: 500px;
    margin: 0 auto;
  }
  .dentist .tab-content > ul > li {
    width: 100%;
    text-align: center;
  }
  .dentist .tab-content > ul > li:first-child {
    display: block;
  }
  .dentist .tab-content > ul > li:last-child > div {
    margin: 15px 0 0 0 !important;
  }
  .dentist .tab-content .img {
    padding: 20px 0 0;
    border: 1px solid #ccc;
    background: #ddd3cf;
  }
  .dentist .tab-content .img img {
    max-width: 300px;
  }
  .dentist .tab-content .tab-name > div {
    display: block;
  }
  .dentist .tab-content .tab-name > div h3 {
    font-size: 38px;
  }
  .dentist .tab-content .tab-name article {
    justify-content: center;
  }
  .dentist .tab-content .disc-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .dentist .tab-content .disc-list li::before {
    top: 11px;
  }
}

/* ===================== Mobile size : 900px ======================= */

@media screen and (max-width: 900px) {
}

/* ===================== Mobile size : 769px ======================= */

@media screen and (max-width: 769px) {
}

/* ===================== Mobile size : 600px ======================= */

@media screen and (max-width: 600px) {
}

/* ===================== Mobile size : 480px ======================= */

@media screen and (max-width: 480px) {
  .dentist .tab-content:not(:first-child) {
    margin-top: 60px;
  }
  .dentist .tab-content .tab-name article img {
    margin-right: 5px;
    width: 20px;
  }
  .dentist .tab-content .tab-name > div h3 {
    font-size: 32px;
  }
  .dentist .tab-content .tab-name p {
    font-size: 14px;
  }
  .dentist .tab-content .disc-list {
    padding-left: 10px;
    gap: 3px;
  }
  .dentist .tab-content .disc-list li::before {
    top: 9px;
  }
  .dentist .tab-content .disc-list li p {
    font-size: 14px;
  }
}

/* ===================== Mobile size : 380px ======================= */

@media screen and (max-width: 380px) {
}

/* ==================================================================================================================================== */
/* ============================================================ area2 스타일 ============================================================ */
/* ==================================================================================================================================== */

/* ==================================================================================================================================== */
/* ============================================================ area3 스타일 ============================================================ */
/* ==================================================================================================================================== */

.special-area1.bg-gray {
  padding-bottom: 0;
}
.special-area1 .zoom {
  background: url(../img/custom/special_bg1.jpg) center/cover no-repeat;
}
.special-area1 .tac img {
  filter: drop-shadow(4px 5px 6px #727272);
}

.special-area3.bg-gray {
  padding-bottom: 0;
}
.special-area3 .zoom {
  background: url(../img/custom/special_bg2.jpg) center/cover no-repeat;
}

.special-area4.bg-gray {
  background: #f0f9ff;
}
.special-area4 ul {
  display: flex;
  gap: 20px;
}
.special-area4 ul > li {
  width: 25%;
}
.special-area4 article {
  position: relative;
  padding: 50px 15px 30px;
  margin-top: 60px;
  border-radius: 10px;
  background: #fff;
  text-align: center;
}
.special-area4 article h6 {
  position: absolute;
  left: 50%;
  top: -24px;
  transform: translateX(-50%);
  max-width: 250px;
  width: 100%;
  padding: 5px 10px;
  border-radius: 40px;
  background: #32b6a0;
  color: #fff;
}

.special-area8.bg-gray {
  padding: 0;
  margin-top: 240px;
  color: #fff;
  background: url(../img/custom/special_bg3.jpg) center/cover no-repeat;
}
.special-area8 ul {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1050px;
  margin: 0 auto;
}
.special-area8 ul .img {
  position: relative;
  top: -110px;
  height: 260px;
}
.special-area8 ul .img img {
  max-width: 300px;
}
.special-area8 ul .txt {
  margin-left: 60px;
}

/* ===================== Mobile size : 1500px ======================= */

@media screen and (max-width: 1500px) {
}

/* ===================== Mobile size : 1200px ======================= */

@media screen and (max-width: 1200px) {
}

/* ===================== Mobile size : 1024px ======================= */

@media screen and (max-width: 1024px) {
  .special .main-bg {
    margin-top: 80px !important;
  }
}

/* ===================== Mobile size : 900px ======================= */

@media screen and (max-width: 900px) {
}

/* ===================== Mobile size : 769px ======================= */

@media screen and (max-width: 769px) {
  .special-area8.bg-gray {
    padding: 40px 0 40px;
    margin-top: 160px;
  }
  .special-area8 ul {
    flex-direction: column;
  }
  .special-area8 ul .img {
    top: -130px;
    height: 210px;
  }
  .special-area8 ul .img img {
    max-width: 260px;
  }
  .special-area8 ul .txt {
    margin-left: 0;
    text-align: center;
  }
}

/* ===================== Mobile size : 600px ======================= */

@media screen and (max-width: 600px) {
  .special-area4 ul {
    flex-wrap: wrap;
  }
  .special-area4 ul > li {
    width: calc(50% - 10px);
  }
}

/* ===================== Mobile size : 480px ======================= */

@media screen and (max-width: 480px) {
  .special .main-bg {
    margin-top: 60px !important;
  }

  .special-area4 article {
    padding: 40px 15px 25px;
  }
  .special-area4 article h6 {
    top: -19px;
  }
}

/* ===================== Mobile size : 380px ======================= */

@media screen and (max-width: 380px) {
}

/* ============================ step4-list 스타일 ============================== */

.step4-list .img img {
  width: 100%;
}
.step4-list .txt .top,
.step4-list .txt .btm {
  color: #fff;
  font-family: "NanumSquare", san-serif;
}
.step4-list .txt .top {
  padding: 5px 10px;
  font-weight: 800;
  background: #32b6a0;
}
.step4-list .txt .mid {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 10px;
  background: #ededed;
}
.step4-list .txt .btm {
  padding: 10px;
  font-weight: 600;
  background: #7fbdfd;
  white-space: pre-line;
}

.nature-area5 .step4-list .txt .mid {
  height: 175px;
}
.nature-area5 .step4-list .txt .btm {
  padding: 10px 10px 15px;
}

.nature-area8 .step4-list .img img {
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.nature-area8 .step4-list .txt {
  margin-top: 10px;
}
.nature-area8 .step4-list .txt .mid {
  height: 145px;
}

/* ===================== Mobile size : 1500px ======================= */

@media screen and (max-width: 1500px) {
}

/* ===================== Mobile size : 1200px ======================= */

@media screen and (max-width: 1200px) {
}

/* ===================== Mobile size : 1024px ======================= */

@media screen and (max-width: 1024px) {
}

/* ===================== Mobile size : 900px ======================= */

@media screen and (max-width: 900px) {
  .step4-list {
    max-width: 600px;
    margin: 0 auto;
  }
  .step4-list > li {
    width: 50%;
  }

  .nature-area5 .step4-list .txt .mid {
    height: 160px;
  }
  .nature-area8 .step4-list .txt .mid {
    height: 130px;
  }
}

/* ===================== Mobile size : 769px ======================= */

@media screen and (max-width: 769px) {
}

/* ===================== Mobile size : 600px ======================= */

@media screen and (max-width: 600px) {
}

/* ===================== Mobile size : 425px ======================= */

@media screen and (max-width: 425px) {
  .step4-list .txt .mid {
    padding: 20px 10px;
  }

  .nature-area5 .step4-list .txt .mid {
    height: 150px;
  }
}

/* ==================================================================================================================================== */
/* ============================================================ area3 스타일 ============================================================ */
/* ==================================================================================================================================== */

/* ==================================================================================================================================== */
/* ============================================================ area4 스타일 ============================================================ */
/* ==================================================================================================================================== */

.sleep-area1 .zoom {
  background: url(../img/custom/sleep_bg1.jpg) center/cover no-repeat;
}

.sleep-area2 {
  background: #f0f9ff;
}
.sleep-area2 table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.sleep-area2 table td {
  padding: 20px 10px;
  border: 1px solid #ccc;
  background: #fff;
  text-align: center;
  vertical-align: middle;
}
.sleep-area2 table thead td {
  padding: 15px 10px;
}
.sleep-area2 table thead td:first-child {
  background: #00a6b2;
  color: #fff;
}
.sleep-area2 table thead td:last-child {
  background: #7c7c7c;
  color: #fff;
}
.sleep-area2 table td:first-child p {
  font-weight: 900;
}
.sleep-area2 table td:nth-child(2) {
  background: #f4f4f4;
}

.sleep-area3 article {
  max-width: 1000px;
  margin: 60px auto 0;
}
.sleep-area3 ul {
  position: relative;
  display: flex;
  gap: 20px;
}
.sleep-area3 ul::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  width: calc(100% - 80px);
  height: 25px;
  border: 1px solid #ccc;
  z-index: -1;
  border-radius: 40px;
}
.sleep-area3 ul > li {
  width: 25%;
  text-align: center;
}
.sleep-area3 .img {
  margin-top: 30px;
}
.sleep-area3 .txt h6 {
  margin: 15px 0 10px;
  font-family: "NanumSquare", san-serif;
  font-weight: 900;
}
.sleep-area3 .txt p {
  white-space: pre-line;
}

/* ===================== Mobile size : 1500px ======================= */

@media screen and (max-width: 1500px) {
}

/* ===================== Mobile size : 1200px ======================= */

@media screen and (max-width: 1200px) {
}

/* ===================== Mobile size : 1024px ======================= */

@media screen and (max-width: 1024px) {
}

/* ===================== Mobile size : 900px ======================= */

@media screen and (max-width: 900px) {
}

/* ===================== Mobile size : 769px ======================= */

@media screen and (max-width: 769px) {
}

/* ===================== Mobile size : 600px ======================= */

@media screen and (max-width: 600px) {
  .sleep-area3 ul {
    flex-wrap: wrap;
  }
  .sleep-area3 ul::before {
    display: none;
  }
  .sleep-area3 ul > li {
    width: calc(50% - 10px);
  }
  .sleep-area3 ul > li:nth-child(n + 3):nth-child(-n + 4) {
    margin-top: 40px;
  }
  .sleep-area3 .step img {
    max-width: 50px;
  }
  .sleep-area3 .img {
    margin-top: 20px;
  }
  .sleep-area3 .txt h6 {
    margin: 10px 0 5px;
  }
}

/* ===================== Mobile size : 480px ======================= */

@media screen and (max-width: 480px) {
  .sleep-area2 colgroup col {
    width: 37.5%;
  }
  .sleep-area2 colgroup col:nth-child(2) {
    width: 25%;
  }

  .sleep-area3 article {
    margin: 40px auto 0;
  }
  .sleep-area3 ul > li:nth-child(n + 3):nth-child(-n + 4) {
    margin-top: 20px;
  }
}

/* ===================== Mobile size : 380px ======================= */

@media screen and (max-width: 380px) {
}

/* ==================================================================================================================================== */
/* ============================================================ area4 스타일 ============================================================ */
/* ==================================================================================================================================== */

/* ==================================================================================================================================== */
/* ============================================================ area5 스타일 ============================================================ */
/* ==================================================================================================================================== */

.imp-area2 ul.flex {
  max-width: 780px;
  margin: 0 auto;
}
.imp-area2 ul.flex > li {
  width: 50%;
}
.imp-area2 ul.flex > li > div {
  margin: 10px;
  text-align: center;
}
.imp-area2 ul.flex .txt {
  padding: 8px 5px;
  background: #a7a7a7;
}
.imp-area2 ul.flex .txt p {
  color: #fff;
  font-weight: bold;
}
.imp-area2 ul.flex > li:last-child .txt {
  background: #32b6a0;
}

.imp-area3 ul.flex p {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  font-weight: 800;
  line-height: 1.5;
  color: #fff;
  background: #32b6a0;
}
.imp-area3 ul.flex img {
  border: 1px solid #ccc;
  border-bottom: 0;
  width: 100%;
}

.imp-area4.bg-gray {
  padding: 60px 0;
}
.imp-area4 .zoom {
  background: url(../img/custom/imp_bg1.jpg) center/cover no-repeat;
}
.imp-area4 ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.imp-area4 ul .img {
  margin-right: 80px;
  filter: drop-shadow(2px 2px 12px #fff);
}
.imp-area4 ul .txt {
  color: #fff;
}
.imp-area4 ul .txt p {
  margin-top: 20px;
  white-space: pre-line;
}

.imp-area5 article > ul {
  display: flex;
  align-items: center;
  gap: 40px;
}
.imp-area5 article > ul > li:last-child {
  flex: 1;
}
.imp-area5 article .txt .tit {
  display: inline-block;
  padding: 2px 8px;
  font-weight: 900;
  color: #fff;
  background: #296608;
}
.imp-area5 article .txt .sub {
  margin: 30px 0;
  white-space: pre-line;
}
.imp-area5 article .txt ul {
  display: flex;
  gap: 10px;
  width: 100%;
}
.imp-area5 article .txt ul > li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25%;
  height: 110px;
  border-radius: 15px;
  border: 2px solid #32b6a0;
  background: #f9f9f9;
}
.imp-area5 article .txt ul p {
  white-space: pre-line;
  color: #32b6a0;
  text-align: center;
  font-weight: 900;
  line-height: 1.5;
}
.imp-area5 article:nth-child(2) .txt .tit {
  background: #eb6100;
}
.imp-area5 article:nth-child(3) .txt .tit {
  background: #21a6de;
}

.imp-area6 {
  background: #f0f9ff;
}

.denture-area1 ul.flex .txt {
  background: #32b6a0;
}
.denture-area2 ul.flex {
  gap: 15px;
}
.denture-area2 ul.flex > li {
  width: calc(20% - 12px);
}
.denture-area2 .circle-box > div > div {
  background: #184c54;
}
.denture-area2 .circle-box:nth-child(2n-1) > div > div {
  background: #32b6a0;
}
.denture-area2 .circle-box p {
  color: #fff;
}

/* ===================== Mobile size : 1500px ======================= */

@media screen and (max-width: 1500px) {
}

/* ===================== Mobile size : 1200px ======================= */

@media screen and (max-width: 1200px) {
}

/* ===================== Mobile size : 1024px ======================= */

@media screen and (max-width: 1024px) {
}

/* ===================== Mobile size : 900px ======================= */

@media screen and (max-width: 900px) {
  .imp-area5 article > ul {
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
  }
  .imp-area5 article > ul > li:last-child {
    width: 100%;
  }
  .imp-area5 article .txt {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* ===================== Mobile size : 769px ======================= */

@media screen and (max-width: 769px) {
  .imp-area4 ul {
    flex-direction: column;
  }
  .imp-area4 ul .img {
    margin: 0 0 40px 0;
  }

  .denture-area2 ul.flex > li {
    width: calc(33.33% - 12px);
  }
}

/* ===================== Mobile size : 600px ======================= */

@media screen and (max-width: 600px) {
}

/* ===================== Mobile size : 480px ======================= */

@media screen and (max-width: 480px) {
  .imp-area2 ul.flex > li > div {
    margin: 5px;
  }

  .imp-area3 ul.flex p {
    height: 65px;
  }

  .imp-area4 ul .img {
    margin: 0 0 20px 0;
  }

  .imp-area5 article .txt ul {
    flex-wrap: wrap;
  }
  .imp-area5 article .txt ul > li {
    width: calc(50% - 5px);
    height: 90px;
  }

  .denture-area1 ul.flex {
    max-width: 300px;
    margin: 0 auto;
    gap: 20px;
  }
  .denture-area1 ul.flex > li {
    width: 100%;
  }

  .denture-area2 ul.flex > li {
    width: calc(50% - 12px);
  }
}

/* ===================== Mobile size : 380px ======================= */

@media screen and (max-width: 380px) {
}

/* ==================================================================================================================================== */
/* ============================================================ area5 스타일 ============================================================ */
/* ==================================================================================================================================== */

/* ==================================================================================================================================== */
/* ============================================================ area6 스타일 ============================================================ */
/* ==================================================================================================================================== */

.wisdom-area2 ul {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.wisdom-area2 ul > li {
  width: 33.33%;
}
.wisdom-area2 ul > li > div {
  text-align: center;
}
.wisdom-area2 .txt {
  margin-top: 15px;
  padding: 8px;
  border: 1px solid #ccc;
}
.wisdom-area2 .bar {
  margin-top: 40px;
  padding: 10px;
  border-radius: 40px;
  text-align: center;
  color: #fff;
  background: #646464;
}

.wisdom-area3 {
  background: #eff8ff;
}
.wisdom-area3 ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}
.wisdom-area3 ul > li {
  display: flex;
}
.wisdom-area3 ul .step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  background: #32b6a0;
}
.wisdom-area3 ul .txt {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  background: #fff;
}
.wisdom-area3 ul .txt h6 {
  font-family: "NanumSquare", san-serif;
  font-weight: bold;
}
.wisdom-area3 ul > li:nth-child(even) .step {
  background: #184c54;
}

.wisdom-area4.bg-gray {
  padding: 60px 0;
}
.wisdom-area4 .zoom {
  background: url(../img/custom/basic_bg1.jpg) center/cover no-repeat;
}
.wisdom-area4 ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wisdom-area4 ul .img {
  margin-left: 40px;
}
.wisdom-area4 ul .main-tit {
  margin-bottom: 20px;
}

.wisdom-area5.bg-gray {
  padding: 40px 0;
  background: #eff8ff;
}
.wisdom-area5 ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
.wisdom-area5 ul .txt {
  text-align: left;
}
.wisdom-area5 ul .main-tit h3 {
  color: #333;
}

.basic .step {
  max-width: 150px;
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
  color: #fff;
  background: #32b6a0;
}
.basic .step span {
  display: inline-block;
  font-size: 28px;
  font-family: "NanumSquare", san-serif;
  font-weight: 900;
}

/* ===================== Mobile size : 1500px ======================= */

@media screen and (max-width: 1500px) {
}

/* ===================== Mobile size : 1200px ======================= */

@media screen and (max-width: 1200px) {
}

/* ===================== Mobile size : 1024px ======================= */

@media screen and (max-width: 1024px) {
  .basic .step span {
    font-size: 24px;
  }
}

/* ===================== Mobile size : 900px ======================= */

@media screen and (max-width: 900px) {
}

/* ===================== Mobile size : 769px ======================= */

@media screen and (max-width: 769px) {
  .wisdom-area4 ul {
    flex-direction: column-reverse;
  }
  .wisdom-area4 ul .main-tit {
    text-align: center !important;
  }
  .wisdom-area4 ul .img {
    margin: 0 0 30px 0;
  }

  .basic .step {
    width: 120px;
  }
  .basic .step span {
    font-size: 21px;
  }
}

/* ===================== Mobile size : 600px ======================= */

@media screen and (max-width: 600px) {
  .wisdom-area2 ul {
    flex-wrap: wrap;
    max-width: 300px;
    margin: 0 auto;
    gap: 40px;
  }
  .wisdom-area2 ul > li {
    width: 100%;
  }
  .wisdom-area2 .bar {
    margin-top: 20px;
    border-radius: 10px;
  }

  .wisdom-area5 ul {
    flex-direction: column-reverse;
    gap: 40px;
  }
}

/* ===================== Mobile size : 480px ======================= */

@media screen and (max-width: 480px) {
  .wisdom-area3 ul .step {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .basic .step {
    margin-bottom: 15px;
  }
}

/* ===================== Mobile size : 380px ======================= */

@media screen and (max-width: 380px) {
}

/* ==================================================================================================================================== */
/* ============================================================ area6 스타일 ============================================================ */
/* ==================================================================================================================================== */

/* ==================================================================================================================================== */
/* ============================================================ area7 스타일 ============================================================ */
/* ==================================================================================================================================== */

.basic-area2 .step,
.basic-area3 .step {
  margin: 0 auto 20px;
}
.basic-area2 ul.flex > li {
  width: 25%;
}
.basic-area2 ul.flex > li > div {
  margin: 10px;
  text-align: center;
}
.basic-area2 ul.flex .txt {
  margin-top: 25px;
}
.basic-area2 ul.flex .txt h6 {
  padding: 4px 10px;
  width: 150px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  background: #32b6a0;
  font-family: "NanumSquare", san-serif;
  font-weight: 900;
}
.basic-area2 ul.flex .txt p {
  margin-top: 10px;
  font-weight: bold;
}

.basic-area3 ul.flex > li {
  width: 33.33%;
}
.basic-area3 ul.flex > li > div {
  margin: 10px;
  text-align: center;
}
.basic-area3 ul.flex > li:nth-child(n + 4):nth-child(-n + 5) > div {
  margin-top: 40px;
}
.basic-area3 ul.flex .txt h5 {
  margin: 20px 0 15px;
  line-height: 1.3;
  white-space: pre-line;
  font-weight: bold;
}

.basic-area4 ul.flex > li {
  width: 20%;
}
.basic-area4 .circle-box > div > div {
  background: #32b6a0;
}
.basic-area4 .circle-box:nth-child(2n-1) > div > div {
  background: #184c54;
}
.basic-area4 .circle-box p {
  bottom: 44%;
  color: #fff;
}
.basic-area4 .circle-box p::before {
  position: absolute;
  content: "";
  left: 50%;
  top: -40px;
  transform: translateX(-50%);
  width: 43px;
  height: 33px;
  background: url(../img/custom/basic_14.png) center/cover no-repeat;
}

/* ===================== Mobile size : 1500px ======================= */

@media screen and (max-width: 1500px) {
}

/* ===================== Mobile size : 1200px ======================= */

@media screen and (max-width: 1200px) {
}

/* ===================== Mobile size : 1024px ======================= */

@media screen and (max-width: 1024px) {
}

/* ===================== Mobile size : 900px ======================= */

@media screen and (max-width: 900px) {
}

/* ===================== Mobile size : 769px ======================= */

@media screen and (max-width: 769px) {
  .basic-area1 .step {
    margin: 0 auto 20px;
  }
  .basic-area2 ul.flex > li {
    width: 50%;
  }
  .basic-area2 ul.flex > li:nth-child(n + 3):nth-child(-n + 4) {
    margin-top: 30px;
  }
  .basic-area4 ul.flex > li {
    width: 33.33%;
  }
}

/* ===================== Mobile size : 600px ======================= */

@media screen and (max-width: 600px) {
  .basic-area3 ul.flex > li {
    width: 50%;
  }
  .basic-area3 ul.flex > li:nth-child(n + 3):nth-child(-n + 5) > div {
    margin-top: 20px;
  }
}

/* ===================== Mobile size : 480px ======================= */

@media screen and (max-width: 480px) {
  .basic-area1 .step,
  .basic-area2 .step,
  .basic-area3 .step {
    margin: 0 auto 15px;
  }
  .basic-area4 .circle-box p::before {
    top: -25px;
    width: 25px;
    height: 19px;
  }
}

/* ===================== Mobile size : 380px ======================= */

@media screen and (max-width: 380px) {
}

/* ==================================================================================================================================== */
/* ============================================================ area7 스타일 ============================================================ */
/* ==================================================================================================================================== */

/* ==================================================================================================================================== */
/* ============================================================ area8 스타일 ============================================================ */
/* ==================================================================================================================================== */

.area8 .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1500px;
}
.area8 .main-tit {
  text-align: left;
}
.area8 .equipment {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.area8 .equipment .swiper-arrow {
  position: absolute;
  top: auto;
  bottom: -50px;
  transition: 0.4s;
  width: 91px;
  height: 12px;
}
.area8 .equipment .swiper-arrow::after {
  display: none;
}
.area8 .equipment .swiper-arrow:hover {
  opacity: 0.7;
}
.area8 .equipment .swiper-button-prev {
  left: 0;
  background: url(../img/custom/arrow_l.png) center/cover no-repeat;
}
.area8 .equipment .swiper-button-next {
  right: 0;
  background: url(../img/custom/arrow_r.png) center/cover no-repeat;
}
.area8 .equipment .swiper-scrollbar {
  left: 0;
  bottom: -20px;
  width: 100%;
}
.area8 .equipment .swiper-scrollbar .swiper-scrollbar-drag {
  background: linear-gradient(45deg, #1486a2, #32b6a0);
}
.area8 .equipment .img {
  position: relative;
}
.area8 .equipment .txt {
  position: absolute;
  left: 0;
  bottom: -100%;
  padding: 20px 0;
  width: 100%;
  background: linear-gradient(45deg, #1486a2, #32b6a0);
  color: #fff;
  text-align: center;
  transition: bottom 1s;
}
.area8 .equipment .txt h5 {
  font-family: "NanumSquare", san-serif;
  font-weight: 900;
  margin-bottom: 5px;
}
.area8 .equipment .txt p {
  white-space: pre-line;
  line-height: 1.5;
}
.area8 .equipment .img:hover .txt {
  bottom: 0;
  transition: bottom 0.5s;
}

/* ===================== Mobile size : 1500px ======================= */

@media screen and (max-width: 1500px) {
  .area8.bg-gray {
    padding: 100px 0 150px;
  }
  .area8 .inner {
    display: block;
  }
  .area8 .main-tit {
    text-align: center;
  }
}

/* ===================== Mobile size : 1200px ======================= */

@media screen and (max-width: 1200px) {
}

/* ===================== Mobile size : 1024px ======================= */

@media screen and (max-width: 1024px) {
}

/* ===================== Mobile size : 900px ======================= */

@media screen and (max-width: 900px) {
}

/* ===================== Mobile size : 769px ======================= */

@media screen and (max-width: 769px) {
  .area8.bg-gray {
    padding: 60px 0 120px;
  }
  .area8 .equipment .txt h5 {
    margin: 0;
  }
}

/* ===================== Mobile size : 600px ======================= */

@media screen and (max-width: 600px) {
}

/* ===================== Mobile size : 480px ======================= */

@media screen and (max-width: 480px) {
  .area8 .equipment .txt {
    padding: 10px 0;
  }
  .area8 .equipment .swiper-slide-active .txt {
    bottom: 0 !important;
  }
  .area8 .equipment .img:hover .txt {
    bottom: -100%;
  }
}

/* ===================== Mobile size : 380px ======================= */

@media screen and (max-width: 380px) {
}

/* ==================================================================================================================================== */
/* ============================================================ area8 스타일 ============================================================ */
/* ==================================================================================================================================== */

/* ==================================================================================================================================== */
/* ============================================================ area9 스타일 ============================================================ */
/* ==================================================================================================================================== */

/* ===================== Mobile size : 1500px ======================= */

@media screen and (max-width: 1500px) {
}

/* ===================== Mobile size : 1200px ======================= */

@media screen and (max-width: 1200px) {
}

/* ===================== Mobile size : 1024px ======================= */

@media screen and (max-width: 1024px) {
}

/* ===================== Mobile size : 900px ======================= */

@media screen and (max-width: 900px) {
}

/* ===================== Mobile size : 769px ======================= */

@media screen and (max-width: 769px) {
}

/* ===================== Mobile size : 600px ======================= */

@media screen and (max-width: 600px) {
}

/* ===================== Mobile size : 480px ======================= */

@media screen and (max-width: 480px) {
}

/* ===================== Mobile size : 380px ======================= */

@media screen and (max-width: 380px) {
}

/* ==================================================================================================================================== */
/* ============================================================ area9 스타일 ============================================================ */
/* ==================================================================================================================================== */

/* ==================================================================================================================================== */
/* ============================================================ area10 스타일 ============================================================ */
/* ==================================================================================================================================== */

.info-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background: #f9f9f9;
}
.info-wrap > li {
  width: 50%;
  height: 100%;
}
.info-wrap .time-wrap {
  display: flex;
  justify-content: center;
}
.time-wrap .time {
  display: flex;
  flex-direction: column;
}
.time-wrap .time > ul {
  display: flex;
  flex-direction: column;
}
.time-wrap .time > ul > li {
  padding: 0 10px;
}
.time-wrap .time > ul > li:not(:first-child) {
  margin-top: 10px;
}
.time-wrap .time > ul > li:nth-child(1) {
  position: relative;
  background: linear-gradient(45deg, #32b6a0, #32b6a0);
  color: #fff;
  border-radius: 20px 0 20px 0;
}
.time-wrap .time > ul > li:nth-child(1)::before {
  position: absolute;
  content: "";
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: url(../img/custom/night_icon.png) center/cover no-repeat;
}
.time-wrap .time > ul ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.time-wrap .time > ul ul > li:first-child {
  max-width: 260px;
  text-align-last: justify;
  margin-right: 30px;
}
.time-wrap .time > ul ul h4 {
  display: flex;
  gap: 10px;
  align-items: end;
}
.time-wrap .time > ul ul > li:first-child h4 {
  font-weight: bold;
}
.time-wrap .time > ul ul > li:last-child h4 {
  font-weight: 300;
}
.time-wrap .time .notice {
  margin-top: 20px;
}
.time-wrap .time .notice p {
  white-space: pre-line;
  font-size: 22px;
  line-height: 1.5;
}
.time-wrap .time .notice p b {
  color: #32b6a0;
}
.map-wrap .root_daum_roughmap {
  width: 100%;
}
.map-wrap .wrap_map {
  width: 100%;
  height: 500px !important;
}
.map-wrap .root_daum_roughmap .wrap_controllers {
  display: none;
}

.map-pic-wrap {
  margin-right: 80px;
}

.area10 .btm {
  padding: 40px 20px;
  background: linear-gradient(45deg, #1486a2, #32b6a0);
  color: #fff;
}
.area10 .btm > ul {
  display: flex;
  align-items: center;
}
.area10 .btm > ul > li {
  width: 50%;
}
.area10 .btm .tit {
  display: inline-block;
  width: 110px;
  text-align: center;
  padding: 2px 20px;
  border-radius: 20px;
  font-weight: 900;
  background: #fff;
  color: #333;
}
.area10 .btm .left {
  text-align: center;
}
.area10 .btm .right ul > li {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.area10 .btm .right ul > li p.sub {
  margin-left: 15px;
}

/* ===================== Mobile size : 1500px ======================= */

@media screen and (max-width: 1500px) {
}

/* ===================== Mobile size : 1200px ======================= */

@media screen and (max-width: 1200px) {
  .info-wrap > li {
    width: 100%;
  }
  .time-wrap > div {
    padding: 40px 0;
  }
  .map-wrap .wrap_map {
    height: 350px !important;
  }

  .area10 .btm .right ul > li {
    display: block;
  }
  .area10 .btm .right ul > li p.sub {
    margin: 5px 0 0 0;
  }
}

/* ===================== Mobile size : 1024px ======================= */

@media screen and (max-width: 1024px) {
}

/* ===================== Mobile size : 900px ======================= */

@media screen and (max-width: 900px) {
}

/* ===================== Mobile size : 769px ======================= */

@media screen and (max-width: 769px) {
  .time-wrap .time > ul ul > li:first-child {
    /*width: 120px;*/
    max-width: 100%;
    margin-right: 20px;
  }
  .time-wrap .time .notice p {
    font-size: 18px;
  }
  .map-wrap .wrap_map {
    height: 300px !important;
  }
}

/* ===================== Mobile size : 600px ======================= */

@media screen and (max-width: 600px) {
  .area10 .btm > ul {
    flex-wrap: wrap;
  }
  .area10 .btm > ul > li {
    width: 100%;
  }
  .area10 .btm .right ul {
    margin-top: 40px;
    text-align: center;
  }
}

/* ===================== Mobile size : 480px ======================= */

@media screen and (max-width: 480px) {
  .time-wrap .time > ul > li:nth-child(1) {
    border-radius: 10px 0 10px 0;
  }
  .time-wrap .time > ul > li:nth-child(1)::before {
    width: 30px;
    height: 30px;
    left: -35px;
  }

  .time-wrap .time .notice p {
    font-size: 15px;
  }

  .area10 .btm .right ul {
    margin-top: 20px;
  }
}

/* ===================== Mobile size : 380px ======================= */

@media screen and (max-width: 380px) {
  .time-wrap .time > ul ul > li:first-child {
    width: auto;
  }
  .time-wrap .time h4 {
    font-size: 16px;
  }
}

/* ==================================================================================================================================== */
/* ============================================================ area10 스타일 ============================================================ */
/* ==================================================================================================================================== */

/* 커스텀 */

/* 시간 섹션 */
@media (max-width: 1200px) {
  .map-pic-wrap {
    margin-right: 0px;
  }
  .info_itme {
    margin: auto 10px;
    align-items: center;
  }
}
