@charset "utf-8";
@import "reset.css";

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* common */
html,
body {
  font-family: "pretendard";
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.5px;
}

/* .wrap { overflow-x: hidden; } */
.inner {
  margin: 0 auto;
  max-width: 1400px;
  width: 100%;
  padding: 0 15px;
}

.divider {
  margin: 30px 0;
  width: 60px;
  height: 6px;
  background: #1c8be0;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.75rem;
}

h5 {
  font-size: 1.5rem;
}

p {
  font-size: 1rem;
}

.text-main {
  color: #002b67;
}

.badge-outline {
  margin-right: 8px;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid #002b67;
  color: #002b67;
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
}

.info_box {
  padding: 30px;
  background: #f9f6f3;
  border-radius: 2px;
  color: #555;
}

/* bootstrap style */
.btn {
  border-radius: 2px;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #beaa9e;
  --bs-btn-border-color: #beaa9e;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #a78874;
  --bs-btn-hover-border-color: #a78874;
  --bs-btn-focus-shadow-rgb: 130, 138, 145;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #a78874;
  --bs-btn-active-border-color: #a78874;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #dbd5d2;
  --bs-btn-disabled-border-color: #dbd5d2;
}

.btn-outline-primary {
  --bs-btn-color: #beaa9e;
  --bs-btn-border-color: #beaa9e;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #beaa9e;
  --bs-btn-hover-border-color: #beaa9e;
  --bs-btn-focus-shadow-rgb: 108, 117, 125;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #a78874;
  --bs-btn-active-border-color: #a78874;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-bg: dbd5d2;
  --bs-btn-disabled-border-color: #dbd5d2;
  --bs-gradient: none;
}

/* form */
.form-select:focus,
.form-control:focus {
  border-color: #dac6ba;
  box-shadow: 0 0 0 0.25rem #f9f6f3;
}

/* table */
.table {
  --bs-table-hover-bg: rgba(249, 246, 243, 0.075);
}

.table thead th {
}

/* paging */
.page-link {
  color: #8a715d;
}

.page-link:focus {
  color: #8a715d;
  background-color: var(--bs-pagination-focus-bg);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgb(249, 246, 243);
}

.page-link:hover {
  color: #8a715d;
  background-color: var(--bs-pagination-hover-bg);
  border-color: var(--bs-pagination-hover-border-color);
}

.active > .page-link,
.page-link.active,
.active:hover > .page-link,
.page-link.active:hover {
  color: #fff;
  background-color: #d7c6bc;
  border-color: #d7c6bc;
}

/* badge */
.bg-primary {
  background-color: #8a715d !important;
}

/* 퀵메뉴 스타일 */
#quick-menu {
    position: fixed;
    bottom: 9%;
    right: 40px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
  }
  
  #quick-menu a img {
    width: 48px;
    height: 48px;
    transition: transform 0.2s ease;
  }

/* Top 버튼 스타일 */
#top-button {
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  

/********************************* quick_menu *********************************/
.quick_menu {
  position: fixed;
  z-index: 99;
  right: 16px;
  bottom: 16px;
}

.quick_list {
  display: flex;
  z-index: 90;
  flex-direction: column-reverse;
  justify-content: start;
  align-items: center;
  gap: 8px;
}

.quick_list > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 100px;
  font-size: 18px;
  line-height: 18px;
  cursor: pointer;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.quick_toggle {
  position: relative;
  background: #8a715d;
  color: #fff;
}

.go_top {
  z-index: 99;
  background: #beaa9e;
  color: #fff;
}

/* depth2 */
.quick_list > li > .quick_depth2 {
  position: absolute;
  bottom: 114px;
  display: none;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 8px;
  opacity: 0;
}

.quick_list > li > .quick_depth2.on {
  opacity: 1;
  display: flex;
}

.quick_list > li > .quick_depth2 > li > a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: #fff;
  color: #8a715d;
  border: 1px solid #eee;
  border-radius: 100px;
  font-size: 18px;
  line-height: 18px;
  cursor: pointer;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.quick_list > li > .quick_depth2 > li > a .quick_tooltip {
  position: absolute;
  z-index: 99;
  left: -10px;
  top: 50%;
  transform: translate(-100%, -50%);
  padding: 4px 8px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: #555;
  white-space: nowrap;
  font-size: 14px;
}

.quick_list > li > .quick_depth2 > li > a .quick_tooltip:before {
  content: "";
  position: absolute;
  right: 1px;
  top: 50%;
  transform: translate(100%, -50%);
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #fff;
}

.pc_none {
  display: none;
}
/********************************* header *********************************/
#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  z-index: 999999;
}

#header .inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

#header .logo {
  display: flex;
  align-items: center;
}

#header .logo a {
  display: block;
  /* max-width: 140px; */
  width: 100%;
}

#header .logo .icon_box {
  font-size: 7px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

#header .logo .icon_box .icon_case {
  display: flex;
  align-items: center;
  gap: 5px;
}

#header .logo .img_header_icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

@media (max-width: 768px) {
  #header .logo .icon_box {
    font-size: 6px;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  #header .logo .icon_box .icon_case {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  #header .logo .img_header_icon {
    width: 15px;
    height: 15px;
    object-fit: contain;
  }
}

#header .logo a img {
  display: block;
  width: 87%;
}

#header nav {
  width: calc(100% - 180px);
}

#header nav .gnb {
  display: flex;
  justify-content: right;
  align-items: center;
  width: 100%;
}

#header nav .gnb > li {
  position: relative;
  /* width: calc(100%/7); */
}

#header nav .gnb > li > a {
  display: block;
  width: 100%;
  padding: 35px 30px;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  transition: all 0.3s;
  line-height: 1.5;
}

#header nav .gnb > li:hover > a {
  color: #004185;
}

#header nav .gnb > li > a:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: #0b64b5;
  transition: width 0.3s;
}

#header nav .gnb > li:hover > a:after {
  width: 180px;
}

#header nav .gnb > li > .depth2 {
  display: none;
  position: absolute;
  z-index: 999;
  left: 50%;
  top: 100px;
  transform: translateX(-50%);
  padding: 5px 0;
  /* width: 100%; */
  width: 210px;
  background: #fff;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

#header nav .gnb > li > .depth2 > li > a {
  display: block;
  padding: 5px 10px;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  transition: color 0.3s, background 0.3s;
}

#header nav .gnb > li > .depth2 > li:hover > a {
  color: #004185;
}

#header .btn_icon {
  display: none;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  color: #000;
  font-size: 20px;
}

/********************************* footer *********************************/
#footer {
  padding: 50px 0;
  color: #fff;
  background: #333333;
  font-size: 1rem;
  word-break: keep-all;
}

#footer .footer_logo img {
  display: block;
  width: 110px;
}

#footer .footer_address {
  opacity: 0.5;
}

#footer .footer_address > span {
  margin-right: 0.25rem;
}

/********************************* main/sub common *********************************/
#content {
  padding-top: 100px;
}

/* header 높이 만큼 padding-top주기 */
.main_page > section {
  padding: 150px 0 130px;
}

.sub_page {
  padding: 60px 0 130px 0px;
}
.info_intro_wrap.sub_page_b {
  padding-bottom: 0;
}
.sub_page_b {
  padding: 30px 0 130px 0px;
}

.sub_page > section {
  margin-bottom: 100px;
}

.sub_page > section:last-of-type {
  margin-bottom: 0px;
}

.section__title {
  padding-bottom: 50px;
  text-align: center;
}

.section__title h2 {
  padding-top: 15px;
  color: #333;
  font-size: 2.5rem;
  font-weight: 600;
}

.section__title p {
  color: #002b67;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}

.caption {
  color: #333;
  font-size: 0.875rem;
}

.bg-primary-subtle {
  background-color: #eff4fb !important;
  color: #222 !important;
  padding: 1.5rem 1rem !important;
  border: 1px solid #a7a7a7;
}
.bg-white {
  border: 1px solid #a7a7a7;
  padding: 1.5rem 1rem !important;
}

ul.style-dot > li {
  position: relative;
  padding-left: 10px;
  font-size: 1rem;
}

ul.style-dot > li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50px;
  background: #333;
}

/********************************* main page *********************************/
/* main_page main_visual */
.main_visual {
  width: 100%;
  height: 819px;
  overflow: hidden;
}

/* mvSwiper */
.mvSwiper {
  width: 100%;
  height: 100%;
  --swiper-navigation-color: #fff;
  --swiper-pagination-color: #fff;
}

.mvSwiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.mvSwiper .swiper-slide {
  position: relative;
  z-index: 1;
}

/* .mvSwiper .swiper-slide::after {
    content: "";
    position: absolute;
    inset: 0 0 0 0;
    background: rgba(0, 0, 0, 0.3);
} */

.mvSwiper .swiper-slide .comment {
  position: absolute;
  /* left: 50%;
  bottom: 20%;
  transform: translate(-50%, -50%); */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  width: 100%;
  z-index: 999;
  text-shadow: 0 0 3px #000;
  pointer-events: auto;
}

.mvSwiper .swiper-slide .comment h2 {
  font-size: 4rem;
  margin: 10px 0 6px 0;
  font-weight: 300;
  opacity: 0;
  letter-spacing: -3px;
}
.mvSwiper .swiper-slide .comment h2 b {
  font-weight: 700;
}

.mvSwiper .swiper-slide.on .comment h2 {
  opacity: 1;
  transition: 0.5s 0.5s;
  letter-spacing: -1px;
}

.mvSwiper .swiper-slide .comment p {
  margin-bottom: 60px;
  font-size: 1.25rem;

  opacity: 0;
}

.mvSwiper .swiper-slide.on .comment p {
  opacity: 1;
  transition: 0.5s 1s;
}



.mvSwiper .swiper-slide .more_btn {
  background: rgba(255, 255, 255, 0.2);
  width: 172px;
  height: 50px;
  border-radius: 50px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 0 20px 0 10px;
  text-shadow: none;

  opacity: 0;
}

.mvSwiper .swiper-slide.on .more_btn {
  opacity: 1;
  transition: 0.5s 1s;
}
.mvSwiper .swiper-slide iframe{width: 1920px; height: 1300px;}

.mvSwiper .swiper-slide .more_btn .plus {
  background: #369ac6;
  border-radius: 50%;
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mvSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mvSwiper .swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.mvSwiper .swiper-button-next {
  right: 3%;
  left: auto;
}

.mvSwiper .swiper-button-prev {
  left: 3%;
  right: auto;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 6px;

  margin-bottom: 50px;
}

.mvSwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 30px;
  background: #000;
  opacity: 0.2;
}

.mvSwiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #fff;
}

/* section specwhyal */
#content .why {
  display: flex;
  padding: 130px 0 130px;
}

.why .inner {
  display: flex;
  justify-content: space-between;
}

.why .section__title {
  padding-bottom: 0;
}
.why .section__title p {
  text-align: left;
}
.why .section__title h2 {
  font-weight: 400;
  text-align: left;
}
.why .section__title h2 b {
  font-weight: 700;
}

.why .icon_wrap {
  display: flex;
}
.why .icon_wrap li {
  text-align: center;
  padding-left: 40px;
}
.why .icon_wrap li p {
  margin-top: 15px;
}
.why .icon_wrap li .icon_b {
  padding: 40px;
  border-radius: 100px;
  background-color: #f5f5f5;
}

@media (max-width: 1200px) {
  .why .inner {
    flex-direction: column;
  }
  .why .icon_wrap {
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .why .icon_wrap li {
    padding: 0;
    margin-bottom: 13px;
  }
  .why .icon_wrap li .icon_b {
    padding: 20px;
    width: 100px;
    height: 100px;
  }
  .why .icon_wrap li p {
    font-size: 12px;
  }
  .why .icon_wrap li p {
    margin-top: 7px;
  }
}

/* section special */
.special {
  background: #f7f7f7;
}

.special .item_list_wrap {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 50px;
}

.special .item_list {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  width: calc((100% - 100px) / 3);
}

.special .item_list .img_wrap {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 300px;
}

.special .item_list .img_wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.special .item_list .img_wrap:after {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(
    200deg,
    rgba(0, 0, 0, 0.1),
    rgba(167, 136, 116, 0)
  );
}

.special .item_list .img_wrap .medal {
  position: absolute;
  z-index: 2;
  right: -30px;
  top: -36px;
  width: 150px;
  height: 150px;
}

.special .item_list .img_wrap .medal img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.special .item_list .text_wrap {
  z-index: 1;
  margin-top: 30px;
}
.special .item_list .text_wrap .line {
  width: 50px;
  height: 2px;
  background-color: #002b67;
  margin: 25px 0;
}
.special .item_list .text_wrap .title {
  display: flex;
  justify-content: start;
  align-items: baseline;
  color: #a78874;
}

.special .item_list .text_wrap .title .num {
  width: 80px;
  font-weight: 800;
  font-size: 6rem;
  font-style: italic;
}

.special .item_list .text_wrap .title h3 {
  color: #222;
  font-weight: 400;
  line-height: 1.2;
}
.special .item_list .text_wrap .title h3 b {
  font-weight: 600;
}

.special .item_list .text_wrap .comment {
  font-size: 1.125rem;
  line-height: 1.2;
  color: #999;
}

/* section service */
.main_page .service .item_list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: start;
  align-items: top;
}

.main_page .service .item_list li {
  display: block;
  width: 25%;
  height: 500px;
  overflow: hidden;
}

.main_page .service .item_list li a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.main_page .service .item_list li a:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
  opacity: 1;
  transition: opacity 0.3s;
}

.main_page .service .item_list li a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s;
}

.main_page .service .item_list li a p {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  text-wrap: nowrap;
}

.main_page .service .item_list li:hover a img {
  transform: scale(1.1);
}

.main_page .service .item_list li:hover a:before {
  opacity: 0;
}

/* main_section team */
.main_page .team {
  position: relative;
  background-image: url("/theme/enm/img/doc_bg.png");
  background-size: cover;
  font-size: 1.125rem;
}

.main_page .team:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("/theme/enm/img/doc_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.main_page .team .item_card {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  background: #fff;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

.main_page .team .item_card .img_wrap {
  display: block;
  width: 100%;
  height: 400px;
}

.main_page .team .item_card .img_wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.main_page .team .item_card .text_wrap {
  padding: 24px;
  width: 100%;
  justify-content: center;
}

.main_page .team .item_card .text_wrap .title {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-direction: column;
}

.main_page .team .item_card .text_wrap .name h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.main_page .team .item_card .text_wrap .name p {
  margin-bottom: 15px;
  color: #0b64b5;
  font-size: 1.25rem;
}

.main_page .team .item_card .text_wrap .history {
  margin-bottom: 15px;
  color: #333;
  font-size: 0.875rem;
  text-align: left;
}
.main_page .team .item_card .text_wrap .history ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.main_page .team .item_card .text_wrap .history ul li {
  font-size: 16px;
  list-style: disc;
}

.main_page .team .item_card .text_wrap .more {
  background: rgba(255, 255, 255, 0.2);
  padding: 25px 15px;
  width: 163px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-shadow: none;
  border: 3px solid #c9e2f5;
}

.main_page .team .item_card .text_wrap .more a {
  font-size: 16px;
}

.main_page .team .item_card .text_wrap .more .plus {
  color: #fff;
  background: #369ac6;
  border-radius: 50%;
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* main_section facility */
.facility {
  padding: 150px 0 100px !important;
}

.facilitySwiper {
  width: 100%;
  height: 500px;
  --swiper-navigation-color: #fff;
  --swiper-pagination-color: #fff;
}

.facilitySwiper .swiper-wrapper {
  align-items: center;
}

.facilitySwiper .swiper-slide {
  transition: height 0.3s;
}

.facilitySwiper .swiper-slide-prev,
.facilitySwiper .swiper-slide-next {
  height: 90%;
}

.facilitySwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facilitySwiper .swiper-button-next {
  right: 28%;
  left: auto;
}

.facilitySwiper .swiper-button-prev {
  left: 28%;
  right: auto;
}

/* main_section banner */
.banner {
}
.banner {
  width: 100%;
  height: 496px;
  background-image: url("/theme/enm/img/main_banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.banner .txt_wrap {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 65%;
  left: 52%;
  width: 34%;
  transform: translate(-50%, -50%);
}

.banner .txt_wrap h2 {
  color: #fff;
  font-weight: 200;
  font-size: 35px;
}
.banner .txt_wrap h2 b {
  font-weight: 700;
}
.banner .txt_wrap .more {
  padding: 25px 15px;
  width: 172px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  text-shadow: none;
  border: 3px solid #fff;
}
.banner .txt_wrap .more a {
  color: #fff;
}

.banner .txt_wrap .more .plus {
  color: #fff;
}
.main_page .info_banner{padding-top: 100px;    display: flex
    ;
        justify-content: space-between;}
.main_page .info_banner img{width: 49%;}
/* main_section location */
.main_page .location {
  font-size: 1.125rem;
}


.main_page .location .section__content {
  background: #fff;
}

.main_page .location .info {
  padding: 40px;
  border: 1px solid #dcdcdc;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.main_page .location .info::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 13%;
  height: 32%;
  background-image: url("/theme/enm/img/logo_gray.png");
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.1;
}

.main_page .location .title {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 8px;
}

.main_page .location .title .icon_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  color: #002b67;
  font-size: 1.25rem;
}
.main_page .location .title p {
  font-size: 1.5rem;
}

.main_page .location .comment {
  margin-left: 34px;
  color: #555;
}
.main_page .location .comment p {
  font-size: 1.1rem;
}

.main_page .location .comment dl {
  display: flex;
  justify-content: start;
  align-items: start;
}

.main_page .location .comment dl dt {
  width: 80px;
  font-weight: 600;
}

.main_page .location .comment .caption {
  color: #999;
  font-size: 14px;
  line-height: 16px;
}

.tel_number {
  display: inline-block;
  color: #002b67;
  font-size: 1.25rem;
  font-weight: 600;
}
.main_page .location .comment i {
  margin-right: 5px;
}

.main_page .location .map {
  overflow: hidden;
}

.map .root_daum_roughmap .cont {
  display: none !important;
}
/********************************* sub page *********************************/
/* sub_page main_visual */
.main_visual.sub_mv {
  position: relative;
  width: 100%;
  height: 480px;
}

.main_visual.sub_mv .img_wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.main_visual.sub_mv .img_wrap:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(20 35 54 / 50%);
  backdrop-filter: blur(5px);
}

.main_visual.sub_mv .img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.main_visual.sub_mv .img_wrap .comment {
  position: absolute;
  z-index: 9;
  left: 50%;
  top: calc((100% - 82px) / 2);
  transform: translate(-50%, -50%);
  width: 100%;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.main_visual.sub_mv .img_wrap .comment h2 {
  font-size: 3rem;
}

.main_visual.sub_mv .img_wrap .comment p {
  margin-top: 10px;
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* lnb */
.main_visual.sub_mv > nav {
  position: absolute;
  left: 0;
  bottom: 30px;
}

.main_visual.sub_mv > nav > .lnb {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: 1400px;
  background: #fff;
  border: 1px solid #f9f6f3;
}

.main_visual.sub_mv > nav > .lnb > li {
  position: relative;
  display: block;
}

.main_visual.sub_mv > nav > .lnb > li:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 10px;
  background: #999;
}

.main_visual.sub_mv > nav > .lnb > li:last-child:before {
  display: none;
}

.main_visual.sub_mv > nav > .lnb > li > a {
  display: block;
  padding: 16px 20px;
  color: #999;
  font-size: 1.25rem;
  text-wrap: nowrap;
  transition: color 0.3s;
}

.main_visual.sub_mv > nav > .lnb > li:hover > a,
.main_visual.sub_mv > nav > .lnb > li.on > a {
  color: #333;
  font-weight: 600;
}

#content .p-4 {
  padding: 2.5rem !important;
}
/********************************* sub page - info *********************************/
/* info_intro */

.info_intro .title_1 {
  text-align: center;
  padding: 100px 0;
}

.info_intro .title_1 .bar {
  width: 3px;
  height: 30px;
  background: #8a715d;
  margin: 25px auto;
}

@media (max-width: 768px) {
  .info_intro .title_1 .bar {
    width: 3px;
    height: 30px;
    background: #8a715d;
    margin: 10px auto;
  }
}

.info_intro .title_1 h3 {
  color: #043b84;
  margin: 0 auto;
  font-size: 36px;
  font-weight: 700;
}

.info_intro .title_1 h4 {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 30px;
}

@media (max-width: 768px) {
  .info_intro .title_1 h4 {
    font-weight: 500;
    font-size: 12px;
    line-height: 1.5;

    text-align: center;
    word-break: break-all;
  }

  .info_intro .title_1 h4 br {

  }
}

.info_intro .sub_txt {
  font-size: 28px;
  text-align: center;
  border: 6px solid #e1e1e1;
  padding: 15px 0;
  width: 70%;
  margin: 50px auto 0;
  letter-spacing: -1px;
}

.bg_gray {
  background-color: #f4f4f4;
  position: relative;
}
.bg_gray::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 280px;
  height: 33vh;
  background-image: url(/theme/enm/img/logo_gray.png);
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.1;
  right: 4%;
  top: 1%;
}

.info_intro .info_list li {
  text-align: center;
  margin-bottom: 70px;
}
.info_intro .info_list li:last-child {
  margin-bottom: 0;
}
.info_intro .info_list h2 {
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: #0b64b5;
}
.info_intro .info_img {
  width: 100%;
}

.info_intro .info_list img {
  position: relative;
  z-index: 10;
  width: 100%;
}
.info_intro .info_list p {
  line-height: 30px;
  margin: 25px 0;
  font-size: 1.5rem;
}

/* info_team */
.info_team .section__content > div {
  display: flex;

  align-items: start;
  margin-bottom: 100px;
  font-size: 1.125rem;
  justify-content: space-between;
}
.info_team .section__content > div:last-child {
  margin-bottom: 0px;
}

.info_team .img_wrap {
  width: 41%;
}

.info_team .img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border: 1px solid #cdcdcd;
  background: #fff;
  box-shadow: -20px 20px 0 #e3ebf3;
}

.info_team .text_wrap {
  position: relative;
  width: 53%;
}

.info_team .text_wrap .text_wrap__box {
  /*padding: 0 70px;
  width: 135%;
  height: auto;
  background: #fff;*/
}

.info_team .text_wrap .text_wrap__box .name {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 12px;
  margin-bottom: 30px;
  flex-direction: column;
  border-bottom: 1px solid #d1d1d1;
  padding-bottom: 20px;
}

.info_team .text_wrap .text_wrap__box .name h3 {
  color: #111;
  font-size: 1.5rem;
  font-weight: 400;
}

.info_team .text_wrap .text_wrap__box .name h3 b {
  font-weight: 700;
  font-size: 2rem;
  margin-right: 10px;
}

.info_team .text_wrap .text_wrap__box .name p {
  color: #012155;
  font-size: 1.25rem;
}

.info_team .text_wrap .text_wrap__box .history {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #333;
  border-top: 1px solid #d1d1d1;
  padding-top: 30px;
}
.info_team .text_wrap .text_wrap__box .history .mb-2 {
  color: #003f78;
}

.info_team .schedule .mb-3 {
  color: #003f78;
}

.info_team .schedule .mb-2 {
  color: #003f78;
}

.info_team .schedule .table-sm > :not(caption) > * > * {
  border: none;
  padding: 0.5rem 0.5rem;
}
.info_team .schedule .bg_b th {
  background-color: #003f78;
  color: #fff;
}
.info_team .schedule .bg_b_y th {
  background-color: #f1f6fb;
}

.info_team .schedule .table {
  border: 1px solid #e7e7e7;
}

.table-bordered > :not(caption) > * {
  border: none;
}

.info_team .text_wrap .text_wrap__box .history ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.info_team .text_wrap .text_wrap__box .history ul li {
  width: 48%;
  font-size: 17px;
}

.info_team .text_wrap .text_wrap__box .history ul:nth-of-type(3) {
  color: #777;
  font-size: 1rem;
}

.info_team .schedule {
  font-size: 0.875rem;
  margin-bottom: 30px;
}
.info_team .schedule .text-primary {
  display: inline-block;
  background: #007ec2;
  padding: 5px;
  border-radius: 30px;
}

.info_schedule .schedule {
  font-size: 1rem;
}

/* info_facility */
.info_facility .section__content {
  width: 100%;
  height: 800px;
}

.info_facility .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.info_facility .swiper-slide {
  width: 100%;
  height: 100%;
}

.info_facility .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.previewSwiper {
  height: 80%;
  --swiper-navigation-color: #fff;
  --swiper-pagination-color: #fff;
}

.previewSwiper .swiper-button-next {
  right: 5%;
  left: auto;
}

.previewSwiper .swiper-button-prev {
  left: 5%;
  right: auto;
}

.previewSwiper .swiper-slide .comment {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
}

.previewSwiper .swiper-slide .comment h4 {
  width: 100%;
  padding: 20px;
  color: #002f67;
  text-align: center;
}

.navSwiper {
  height: cacl(20% - 50px);
  margin-top: 20px;
}

.navSwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.navSwiper .swiper-slide-thumb-active {
  opacity: 1;
}

/* info_equipment */
.info_equipment .item_card_wrap {
  max-width: 1200px;
  margin: 50px auto;
}

.info_equipment .item_card {
  padding: 80px;
  margin: 0 auto;
  width: 100%;
  background-color: #f9f9f9;
}

.info_equipment .section__content > .item_card {
  max-width: 1400px;
  margin-bottom: 20px;
  background-color: #f6f6f6;
  background-size: 27%;
  background-position: 94% 100%;
  background-repeat: no-repeat;
}

.info_equipment .section__content > .item_card:nth-of-type(1) {
  background-image: url("/theme/enm/img/img_equipment1.png");
}

.info_equipment .section__content > .item_card:nth-of-type(2) {
  background-image: url("/theme/enm/img/img_equipment2.png");
}

.info_equipment .section__content > .item_card:nth-of-type(3) {
  background-image: url("/theme/enm/img/img_equipment3.png");
  
}

.info_equipment .section__content > .item_card:nth-of-type(4) {
    background-image: url("/theme/enm/img/img_equipment4.png");

  }


  .info_equipment .section__content > .item_card:nth-of-type(5) {
    background-image: url("/theme/enm/img/img_equipment5.png");
    margin-bottom: 0;
  }


.info_equipment .item_card .title h3 {
  margin-bottom: 10px;
  color: #111;
  font-size: 2rem;
  font-weight: 800;
}

.info_equipment .item_card .title h3 span {
  color: #11448a;
}

.info_equipment .item_card .title p {
  margin-bottom: 50px;
  font-size: 1.3rem;
  line-height: 30px;
}

.info_equipment .item_card .content {
  color: #555;
  font-size: 1.25rem;
}

.info_equipment .item_card .content dl {
  margin-bottom: 20px;
}

.info_equipment .item_card .content dl dt {
  color: #11448a;
  font-size: 1.5rem;
}

.info_equipment .item_card .content dl dd {
  padding-left: 28px;
  word-break: auto-phrase;
}

/* info_painless */
.info_painless .item_card {
  padding: 50px;
  margin: 0 auto;
  width: 100%;
  background-color: #f9f9f9;
}

.info_painless .section__content > .item_card {
  max-width: 1400px;
  background-size: 35%;
  background-position: left 40px bottom 25px;
  background-repeat: no-repeat;
}

.info_painless .section__content > .item_card:nth-of-type(1) {
  background-image: url("/theme/enm/img/painless01.png");
}

.info_painless .item_card .title {
  width: 55%;
  float: right;
}

.info_painless .item_card .title h3 {
  margin-bottom: 10px;
  color: #111;
  font-size: 2rem;
  font-weight: 800;
}

.info_painless .item_card .title h3 span {
  color: #002b67;
}

.info_painless .item_card .title p {
  margin-bottom: 50px;
  font-size: 1.2rem;
  text-align: justify;
}

.info_painless .item_card .content {
  color: #555;
  font-size: 1.25rem;
  width: 55%;
  float: right;
  clear: both;
}

.info_painless .item_card .content dl {
  margin-bottom: 20px;
}

.info_painless .item_card .content dl dt {
  color: #002b67;
  font-size: 1.5rem;
}

.info_painless .item_card .content dl dd {
  padding-left: 28px;
}

.checkup_caution {
}
.checkup_caution .card_item {
  background-color: #fff;
}
.checkup_caution .inner {
}

.info_painless .checkup_caution h3 {
  font-size: 30px;
  color: #000;
  letter-spacing: -1px;
}

.info_painless .txt_sec h4 {
  position: relative;
  font-size: 30px;
  color: #000;
  padding-left: 38px;
  letter-spacing: -1px;
}

.info_painless .txt_sec h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 24px;
  height: 2px;
  background-color: #3bbdf7;
}

.info_painless .txt_sec p {
}
.info_painless .txt_sec .txt_bg {
  display: inline-block;
  background-color: #d9eff8;
}

.info_painless .gastroscopy_box ul {
  padding: 0;
  letter-spacing: -4px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.info_painless .gastroscopy_box h5 {
  font-size: 30px;
  color: #000;
  letter-spacing: -1px;
  text-align: center;
}

.info_painless .gastroscopy_box ul li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0 28px;
  text-align: center;
}

.info_painless .gastroscopy_box ul li i {
  z-index: 10;
  position: absolute;
  right: 0;
  top: 0;
  width: 42px;
  height: 42px;
  background-color: #27b0f4;
  border-radius: 50%;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  line-height: 40px;
  font-style: normal;
  letter-spacing: 1px;
}

.info_painless .gastroscopy_box ul li span {
  display: block;
  padding: 20px 0 0px 0;
  letter-spacing: -0.05em;
  font-size: 20px;
}
/*
.info_painless .gastroscopy_box ul li p:after {
  content: "";
  z-index: -1;
  position: absolute;
  left: 50%;
  top: 39%;
  transform: translate(-50%, -50%);
  width: 297%;
  height: 2px;
  background-color: #d6e5ea;
}*/

.info_painless .gastroscopy_box ul li p img {
  width: 200px;
  height: 200px;
}

/* info_stomach */
.info_stomach .section__content > .item_card {
  max-width: 1400px;
  background-color: #f7f7f7;
  background-size: 40%;
  background-position: 60px;
  background-repeat: no-repeat;
}

.info_stomach .section__content > .item_card:nth-of-type(1) {
  background-image: url("/theme/enm/img/stomach01.png");
}

/* info_largeInst */
.info_largeInst .section__content > .item_card {
  max-width: 1400px;
  background-size: 40%;
  background-position: left 60px top;
  background-repeat: no-repeat;
}

.info_largeInst .section__content > .item_card:nth-of-type(1) {
  background-image: url("/theme/enm/img/stomach01.png");
}

/* info_polypectomy */
.info_polypectomy .section__content > .item_card {
  max-width: 1200px;
  background-color: #f9f6f3;
  background-size: 40%;
  background-position: left 40px bottom 80px;
  background-repeat: no-repeat;
}

.info_polypectomy .section__content > .item_card:nth-of-type(1) {
  background-image: url("/theme/enm/img/polypectomy01.png");
}

/* info_location */
.info_location .title {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 15px;
}
.info_location .title p {
  font-size: 1.6rem;
  letter-spacing: -1px;
}

.info_location .title .icon_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  color: #002b67;
  font-size: 24px;
}

.info_location .comment {
  color: #555;
}

.info_location .comment dl {
  display: flex;
  justify-content: start;
  align-items: start;
}

.info_location .comment dl dt {
  width: 80px;
  font-weight: 600;
  font-size: 1.25rem;
  color: #222;
}

.info_location .comment dl dd {
  font-size: 1.25rem;
}

.info_location .map {
  overflow: hidden;
}
.info_location .info {
  width: 100%;
  display: flex;
  justify-content: space-around;
}
.mt-50{margin-top: 50px;}
.mt-60 {
  margin-top: 100px;
}
/********************************* sub page - checkup *********************************/
.checkup .tab__title {
  margin-bottom: 30px;
}
.checkup .tab__title h3 {
  letter-spacing: -1px;
  margin: 0 0 20px 0;
  background: url(/theme/enm/img/txt_img.png) no-repeat center left;
  padding: 0px 0 0 43px;
}

.checkup dl {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: stretch;
}

.checkup dl > dt > p {
  width: 100%;
  padding: 10px;
  background: #002b67;
  color: #fff;
  border-radius: 4px;
  font-size: 1.125rem;
  text-align: center;
}

.checkup dl > dd {
  margin-top: 8px;
  padding: 16px;
  border-radius: 4px;
  background: #f7f7f7;
}

.checkup .bg-light i img {
  padding: 10px 0;
}

.checkup .caution .title h3 {
  font-size: 30px;
  color: #000;
  letter-spacing: -1px;
  text-align: center;
  margin-bottom: 30px;
}
.checkup .caution {
  padding: 2.5rem;
  background-color: #f9f9f9;
  border: 1px solid #c9c9c9;
}
.checkup .caution .title ul {
}

.xray_wrap .checkup .caution .title ul li {
  text-align: center;
  font-size: 1.2rem;
}
.inspection_wrap .checkup .caution .title ul li {
  text-align: center;
  font-size: 1.2rem;
}
.bone_wrap .checkup .caution .title ul {
  display: flex;
}
.bone_wrap .checkup .caution .title ul li {
  text-align: center;
  font-size: 1.2rem;
  font-size: 1.2rem;
  padding: 0 20px;
  width: 33%;
}

.bone_wrap .checkup .caution .title ul li h5 {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 1.3rem;
  color: #fff;
  background-color: #002b67;
}

.checkup_caution .section__content > h3 {
  letter-spacing: -1px;
  margin: 0 0 20px 0;
  background: url(/theme/enm/img/txt_img.png) no-repeat center left;
  padding: 0px 0 0 39px;
}

.checkup .section__content .checkup_step {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
}

.checkup .section__content .checkup_step > li {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  width: 100%;
  height: 120px;
  background: #002b67;
  color: #fff;
  text-align: center;
  font-weight: 500;
}

.checkup .section__content > li:before {
  content: "";
  position: absolute;
  right: -36px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="%23999" d="M285.5 273L91.1 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.7-22.7c-9.4-9.4-9.4-24.5 0-33.9L188.5 256 34.5 101.3c-9.3-9.4-9.3-24.5 0-33.9l22.7-22.7c9.4-9.4 24.6-9.4 33.9 0L285.5 239c9.4 9.4 9.4 24.6 0 33.9z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

.checkup .section__content > li:last-child:before {
  display: none;
}

.checkup .section__content > li > p {
  font-size: 1.5rem;
}

.checkup .section__content > li > .comment {
  margin-top: 8px;
  opacity: 0.65;
  font-size: 1rem;
  line-height: 1.2;
}

.checkup .section__content .p_txt {
  color: #002b67;
}

.checkup_school .section__content h3 {
  letter-spacing: -1px;
  margin: 0 0 20px 0;
  background: url(/theme/enm/img/txt_img.png) no-repeat center left;
  padding: 0px 0 0 37px;
}

.checkup_customize h3 {
  letter-spacing: -1px;
  margin: 0 0 20px 0;
  background: url(/theme/enm/img/txt_img.png) no-repeat center left;
  padding: 0px 0 0 37px;
}

.xray_wrap .checkup_customize h3 {
  background: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.xray_wrap .checkup_customize .checklist_wrap .checklist p {
  font-size: 1.2rem;
}

.bone_wrap .checkup_customize h3 {
  background: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.bone_wrap .checkup_customize .checklist_wrap .checklist p {
  font-size: 1.2rem;
}

.inspection_wrap .checkup_customize h3 {
  background: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.inspection_wrap .checkup_customize .checklist_wrap .checklist p {
  font-size: 1.2rem;
}

.checkup_customize .card_item .card__icon img {
  width: 80px;
  height: 80px;
}

.checkup_customize .card_item .divider {
  background: #002b67;
}

.checkup_customize .card_item p {
  text-align: center;
  font-size: 1.2rem;
  line-height: 34px;
}

.checkup_customize .checklist_wrap .checklist {
  border-radius: 15px;
  background-color: #eff4fb;
  padding: 40px 50px;
}
.checkup_customize .checklist_wrap .checklist h5 {
  font-size: 21px;
}

.mt-6 {
  margin-top: 5rem;
}

.internal_disease .tab__title h3 {
  letter-spacing: -1px;
  margin: 0 0 20px 0;
  background: url(/theme/enm/img/txt_img.png) no-repeat center left;
  padding: 0px 0 0 43px;
}

/* checktitle_card */
.checktitle_card_wrap .card_item {
  height: 100%;
  background: #f7f7f7;
  border-radius: 2px;
  padding: 2.5rem !important;
}

.checktitle_card_wrap .card__title {
  color: #002b67;
}
.checktitle_card_wrap .w-100{width: 100%;}
/* img_card */
.img_card_wrap .card_item {
  width: 100%;
  height: 100%;
  border: 1px solid #eee;
  border-radius: 2px;
}

.img_card_wrap .card_item .card__img_wrap {
  display: block;
  width: 100%;
  height: 160px;
  background: #eee;
}

.img_card_wrap .card_item .card__img_wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.img_card_wrap .card_item .card__text_wrap {
  font-size: 1rem;
}

.img_card_wrap .card_item .card__text_wrap > dl {
  display: block;
}

.img_card_wrap .card_item .card__text_wrap > dl:first-child {
  margin-bottom: 10px;
}

.img_card_wrap .card_item .card__text_wrap > dl > dd {
  padding: 0;
  margin: 0;
  background: none;
}

/* icon_card */
.icon_card_wrap .card_item {
  height: 100%;
  border: 1px solid #c9c9c9;
}

.card__icon img {
  display: block;
  margin: 0 auto 16px;
  width: 36px;
  height: 36px;
}

.icon_card_wrap .card_item .card__text_wrap {
  color: #555;
  font-size: 1rem;
}

.icon_card_wrap .card_item .card__text_wrap h3,
.icon_card_wrap .card_item .card__text_wrap h5 {
  color: #333;
  text-align: center;
  line-height: 1.5;
}

.icon_card_wrap .card_item .card__text_wrap ul > li {
  margin: 10px 0;
  color: #333;
}
.icon_card_wrap .card_item .card__text_wrap ul > li p {
  color: #ec1111;
}

.icon_card_wrap .card_item .card__text_wrap ul .pl-15{
    padding-left: 15px;
}
.icon_card_wrap .pl-15{padding-left: 15px;}

.icon_card_wrap .divider {
  margin: 10px auto 50px;
}

.section__content .nav {
  border: 1px solid #d3d3d3;
}

.section__content .nav > .nav-item {
  width: calc(100% / 3);
}

.checkup_select .section__content .nav > .nav-item {
  width: calc(100% / 4) !important;
}

.checkup_select .section__content .m_t100 {
  margin-top: 100px;
}

.section__content .nav > .nav-item > .nav-link {
  width: 100%;
  height: 100%;
  background: #fff;
  border-right: 1px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
  color: #222;
  font-size: 1.25rem;
  transition: background 0.3s;
}

.section__content .nav > .nav-item:hover > .nav-link {
  background: rgba(221, 221, 221, 0.2);
}

.section__content .nav > .nav-item > .nav-link.active {
  background: #002b67;
  color: #fff;
  font-weight: 600;
}

.section__content .nav > .nav-item:hover > .nav-link.active {
  background: #002b67;
}

.section__content .nav > .nav-item:last-child > .nav-link {
  border-right: 0;
}

.section__content .tab-content {
  padding: 50px;
  border: 1px solid #dac6ba;
  border-top: 0;
}

.checkup_how {
  padding: 100px 0;
  position: relative;
  background: #f7f7f7;
  margin: 0 auto;
}

.checkup_how::before {
  position: absolute;
  content: "";
  width: 289px;
  height: 33vh;
  background-image: url(/theme/enm/img/logo_gray.png);
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.06;
  right: 6%;
  top: 3%;
}

.checkup_how .checkup_step {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 48px;
}

.checkup_how .checkup_step > li {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  width: 200px;
  height: 200px;
  background: #8a715d;
  color: #fff;
  text-align: center;
}

.checkup_how .checkup_step > li:before {
  content: "";
  position: absolute;
  right: -36px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="%23999" d="M285.5 273L91.1 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.7-22.7c-9.4-9.4-9.4-24.5 0-33.9L188.5 256 34.5 101.3c-9.3-9.4-9.3-24.5 0-33.9l22.7-22.7c9.4-9.4 24.6-9.4 33.9 0L285.5 239c9.4 9.4 9.4 24.6 0 33.9z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

.checkup_how .checkup_step > li:last-child:before {
  display: none;
}

.checkup_how .checkup_step > li > p {
  font-size: 1.5rem;
}

.checkup_how .checkup_step > li > .comment {
  margin-top: 8px;
  opacity: 0.65;
  font-size: 1rem;
  line-height: 1.2;
}

.checkup_how .section__content.unexamined {
  margin: 0 auto;
  margin-top: 100px;
  padding: 50px;
  max-width: 1400px;
  background: #fff;
  border: 1px solid #c9c9c9;
  border-radius: 8px;
}

.checkup_how .section__content.unexamined h5 {
  color: #002b67;
}
.stepflow {
  display: flex;
  justify-content: space-between;
}
.stepflow .item {
  color: #fff;
  background-color: #002b67;
  display: block;
  position: relative;
  padding: 1.9em 0.8em;
  z-index: 0;
  text-align: center;
  border: 1px solid #cdcfe0;
  border-radius: 0 15px 15px 15px;
}
.stepflow .item .num {
  display: block;
  position: absolute;
  top: -1.25em;
  left: -1px;
  font-size: 0.8889em;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  text-align: center;
  color: #fff;
  background: #1c8be0;
  border-radius: 50% 50% 50% 0;
}
.stepflow .item .con {
  font-size: 1.125rem;
}

.stepflow li {
  width: 24%;
}
.stepflow li p {
  font-size: 14px;
  color: #adbcd3;
}
.stepflow > li {
  display: block;
  position: relative;
  padding: 1.11em 1.25em 1em;
  box-sizing: border-box;
  float: left;
}
.stepflow li:before {
  content: "";
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="%23999" d="M285.5 273L91.1 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.7-22.7c-9.4-9.4-9.4-24.5 0-33.9L188.5 256 34.5 101.3c-9.3-9.4-9.3-24.5 0-33.9l22.7-22.7c9.4-9.4 24.6-9.4 33.9 0L285.5 239c9.4 9.4 9.4 24.6 0 33.9z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

.stepflow li:last-child:before {
  display: none;
}

.checkup_nationa .icon_table .bg-light {
  display: flex;
  flex-direction: column;
}

.checkup_select .title_1 {
  text-align: center;
}
.checkup_select .title_1 h3 {
  color: #fff;
  margin: 0 auto;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
}
.checkup_select .title_1 .bar {
  width: 3px;
  height: 30px;
  background: #fff;
  margin: 25px auto;
}

.checkup_select .title_1 h4 {
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 27px;
  color: #fff;
}

@media (max-width: 768px) {
  .checkup_select .title_1 h4 {
    font-weight: 500;
    font-size: 12px;
    line-height: 1.5;

    text-align: center;
    word-break: auto-phrase;
  }

  .checkup_select .title_1 h4 br {
    display: inline-block;
    content: "";
    padding: 0 2px;
  }
}

.checkup_select .select_list {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  background: url(/theme/enm/img/select_img01.jpg) no-repeat center center/cover;
}

.checkup_select .lis02 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  background: url(/theme/enm/img/select_img02.jpg) no-repeat center center/cover;
}
.checkup_select .lis03 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  background: url(/theme/enm/img/select_img03.jpg) no-repeat center center/cover;
}

.checkup_select .lis04 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  background: url(/theme/enm/img/select_img04.jpg) no-repeat center center/cover;
}

.checkup_select .lis05 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  background: url(/theme/enm/img/select_img05.jpg) no-repeat center center/cover;
}

.checkup_select .lis06 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  background: url(/theme/enm/img/select_img06.jpg) no-repeat center center/cover;
}

.checkup_select .lis07 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  background: url(/theme/enm/img/select_img07.jpg) no-repeat center center/cover;
}

.checkup_select .lis08 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  background: url(/theme/enm/img/select_img08.jpg) no-repeat center center/cover;
}

.inspection_wrap .case_list .card_item {
  background-color: none;
}

.inspection_content .checkup_select .case_list .card_item {
  background-color: none;
}

.checkup_select .case_list .card_item h5 {
  font-size: 30px;
  color: #000;
  letter-spacing: -1px;
}
.checkup_select .case_list ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
}
.checkup_select .case_list > ul li {
  margin: 10px 0;
  font-size: 1rem;
}
.checkup_select .case_list ul li i {
  background-color: #002b67;
  color: #fff;
  padding: 8px;
  border-radius: 200px;
  margin-right: 14px;
}

.need_list .wrap {
  display: flex;
  gap: 5%;
}
.need_list .txt {
  width: 45%;
}
.need_list .txt .tt {
  padding-bottom: 25px;
}
.need_list .txt h3 b {
  font-size: 30px;
  color: #000;
  letter-spacing: -1px;
  padding-left: 5px;
}
.need_list .txt ol {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.need_list .txt ol li {
  width: 47%;
  margin-right: 2%;
  font-size: 1rem;
  position: relative;
  padding: 20px 0 20px 42px;
  border-bottom: 1px solid #dfdfdf;
}
.need_list .txt ol li em {
  position: absolute;
  top: 22px;
  left: 0;
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #1b459a;
  font-family: "Montserrat";
  padding-left: 10px;
}
.need_list .pic {
  width: 50%;
}
.need_list .pic img {
  width: 100%;
}

/********************************* sub page - internal *********************************/
.internal_disease .card_item {
  border: 0;
  border-radius: 4px;
  background: #f7f7f7;
}

.internal_disease .card_item .card__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;
  width: 80px;
  height: 80px;
  border-radius: 100px;
  background: #fff;
}

.internal_disease .card_item .card__icon img {
  margin: 0;
  width: 50px;
  height: 50px;
}

/********************************* sub page - inspection *********************************/
.inspection_content {
  position: relative;
  display: flex;
  gap: 50px;
  justify-content: start;
  align-items: stretch;
  padding: 50px;
  background-color: #f1f5f9;
}

.inspection_content .text_wrap {
  width: 50%;
  margin-left: auto;
}

.inspection_content .img_wrap {
  width: calc(50% - 100px);
  position: absolute;
  left: 50px;
  top: 50px;
  height: calc(100% - 100px);
}

.inspection_content .img_wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.inspection_content .text_wrap .num {
  width: 40px;
  font-size: 3rem;
  color: #002b67;
  font-style: italic;
}

.inspection_content .text_wrap dl {
  margin-top: 50px;
  display: flex;
  justify-content: start;
  align-items: baseline;
}

.inspection_content .text_wrap dl:first-child {
  margin-top: 0;
}

.inspection_content .text_wrap dd {
  width: calc(100% - 40px);
  line-height: 1.6;
  color: #555;
}

.inspection_content .text_wrap dd h3 {
  color: #002b67;
}

.inspection_content .text_wrap dd > ul > li {
  font-size: 1.125rem;
}

.icon_list_wrap {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  margin-left: -40px;
}

.icon_list_wrap .card_item {
  display: flex;
  gap: 16px;
  justify-content: start;
  align-items: center;
  text-align: center;
}

.icon_list_wrap .card__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 100px;
}

.icon_list_wrap .card__icon img {
  display: block;
  width: 50px;
  height: 50px;
  margin: 0;
}

.icon_list_wrap .card_item h5 {
  color: #333;
}

.icon_list_wrap .card__text_wrap {
  width: calc(100% - 96px);
  color: #555;
  text-align: start;
}

.icon_list_wrap.ultrasonic {
  gap: 15px;
}

.icon_list_wrap.ultrasonic h4 {
  padding: 10px;
  border-radius: 10px;
  font-size: 1.3rem;
  border: 1px solid #002b67;
  color: #002b67;
}

.icon_list_wrap.xray {
  gap: 24px;
  flex-direction: row;
  flex-wrap: wrap;
}

.icon_list_wrap.xray .card_item {
  width: 30%;
  flex-direction: column;
}

.icon_list_wrap.xray .card__text_wrap {
  width: 100%;
  text-align: center;
}

/********************************* sub page - health *********************************/
.health_content {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: stretch;
  padding: 50px;
  background-color: #f1f5f9;
}

.health_content .text_wrap {
  width: 50%;
}

.health_content .img_wrap {
  position: absolute;
  right: 50px;
  top: 50px;
  width: 40%;
  height: calc(100% - 100px);
}

.health_content .img_wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.health_content .text_wrap .num {
  font-size: 2rem;
  color: #002b67;
  font-style: italic;
}

.health_content .text_wrap dl {
  margin-top: 36px;
  display: flex;
  justify-content: start;
  align-items: baseline;
  gap: 16px;
}

.health_content .text_wrap dl:first-child {
  margin-top: 0;
}

.health_content .text_wrap dd {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #555;
}

.injection_txt h3 {
  font-size: 30px;
  text-align: center;
  letter-spacing: -0.5px;
}

.injection_txt p {
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 27px;
  text-align: center;
}

.stepArrowUl {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  width: 100%;
}

.stepArrowUl > li:not(:last-child) {
  position: relative;
}
.stepArrowUl > li {
  width: calc(31%);
}

.stepArrowUl > li .cen {
  position: relative;
  width: 100%;
  padding: 3.125rem 10px;
  background-color: #002b67;
  border-radius: 150px;
  text-align: center;
  color: #ffffff;
}
.stepArrowUl > li .text1 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -1px;
}

.stepArrowUl > li .text2 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-top: 0.9375rem;
  letter-spacing: -1px;
}

.stepArrowUl > li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 87%;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 124px;
  height: 81px;
  background: url(/theme/enm/img/health_arrows1.png) no-repeat center left;
}

.stepArrowUl > li:nth-child(1) .cen {
  z-index: 10;
}
.stepArrowUl > li:nth-child(2) .cen {
  z-index: 8;
}
.stepArrowUl > li:nth-child(3) .cen {
  z-index: 6;
}

.stepArrowUl > li:nth-child(1)::after {
  z-index: 9;
}
.stepArrowUl > li:nth-child(2)::after {
  z-index: 7;
}

/********************************* sub page - notice *********************************/
/* board */
.notice_line th,
.notice_line td {
  background: rgba(218, 198, 186, 0.3);
}

.notice_board .board_area table thead {
  white-space: nowrap;
}

.notice_board .board_area .board_title > a {
  overflow: hidden;
  width: 100%;
  max-height: 48px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.board_view img {
  display: block;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

.board_view .view_txt {
  word-break: keep-all;
}

.board_view .file ul li:hover a {
  text-decoration: underline;
}

/* notice custom */
#bo_v_title .bo_v_tit {
  font-size: 0.7em;
}

.cmt_btn span.total {
  color: #8a715d;
}

.cmt_btn span.total:after {
  background: #004e96;
}

#bo_v_share .btn {
  display: none;
}

.btn_submit {
  background: #004e96;
}

#bo_list tbody tr:hover {
  border-left: 2px solid #004e96;
}

.table > :not(caption) > * > * {
  border: 1px solid #a7a7a7;
}

.bg-light {
  border-bottom: 1px solid #a7a7a7;
}
/* 우수내시경 main_visual */
.main_visual.sub_mv .super_wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.main_visual.sub_mv .super_wrap:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.main_visual.sub_mv .super_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.main_visual.sub_mv .super_wrap .super_comment {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.main_visual.sub_mv .super_wrap .super_comment h2 {
  font-size: 3rem;
  padding-bottom: 20px;
  width: 500px;
  margin: 0 auto;
}

.main_visual.sub_mv .super_wrap .super_comment p {
  margin-top: 20px;
  font-size: 1.5rem;
}

.main_visual.sub_mv .super_wrap .super_comment span {
  color: #ffd2ae;
}

/* 우수내시경 contents */

.info_superior .item_card {
  padding: 100px 0;
}

.info_superior .ic01 {
  padding-top: 100px;
  padding-bottom: 40px;
  border-bottom: 1px solid #8a715d;
}

.info_superior .ic02 {
  padding-top: 60px;
  padding-bottom: 100px;
}

.table_ys td {
  border: 1px solid #dddddd;
  color: #ffffff;
  background-color: #fff;
  font-size: 13pt;
  font-weight: bold;
  color: #444;
  vertical-align: middle;
  padding: 20px;
  text-align: center;
  font-weight: normal;
  line-height: 150%;
}

.table_ys th {
  border: 1px solid #dddddd;
  color: #000000;
  background-color: #f5f5f5;
  text-align: center;
  font-size: 14pt;
  font-weight: bold;
  vertical-align: middle;
  padding: 30px 0px;
}

.table_ys .orange {
  background-color: #f5eadd;
  color: #000;
}

@media (max-width: 768px) {
  .info_superior .item_card {
    padding: 40px 0;
  }

  .info_superior .ic01 {
    padding-top: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #8a715d;
  }

  .info_superior .ic02 {
    padding-top: 30px;
    padding-bottom: 0;
  }
}

.info_superior .item_card .title {
  text-align: center;
}

.info_superior .item_card .title h3 {
  margin-bottom: 40px;
  color: #111;
  font-size: 2.5rem;
  font-weight: 600;
}

.info_superior .item_card .title strong {
  color: #1b459a;
  font-weight: 600;
  font-size: 20px;
}

.info_superior .item_card .title p {
  margin: 20px 0;
  font-size: 1.2rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .info_superior .item_card .title h3 {
    margin-bottom: 0;
    color: #111;
    font-size: 2.5rem;
    font-weight: 600;
  }

  .info_superior .item_card .title p {
    margin: 0 0;
    padding: 7px 0 0 0;
    font-size: 1.2rem;
    font-weight: 500;

    text-align: justify;
    word-break: break-all;
  }

  .info_superior .item_card p br {

  }
}

.info_superior .section__content__2 {
  background-color: #eff4fb;
}

.info_superior .section__content__2 .bar {
  width: 3px;
  height: 30px;
  background: #002b67;
  margin: 25px auto;
}

.info_superior .section__content__2-1 {
  padding: 45px 0 75px;
}
.info_superior .section__content__2-1 .title {
  text-align: center;
}
.info_superior .section__content__2-1 .title h3 {
  letter-spacing: -1px;
  color: #333;
  font-size: 2.5rem;
  font-weight: 600;
}
.info_superior .section__content__2-1 .title p {
  font-size: 1.2rem;
}
.info_superior .section__content__2-1 .point_list {
  display: flex;
  justify-content: center;
  text-align: center;
}
.info_superior .section__content__2-1 .point_list li {
  position: relative;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 500px;
  height: 300px;
  border-radius: 300px;
}
.info_superior .section__content__2-1 .point_list li:nth-child(1) {
  background: #94afe6;
  transform: translateX(50px);
}
.info_superior .section__content__2-1 .point_list li:nth-child(2) {
  background: #5185ee;
}
.info_superior .section__content__2-1 .point_list li:nth-child(3) {
  background: #1b459a;
  transform: translateX(-50px);
}
.info_superior .section__content__2-1 .icon img {
  display: block;
  width: 80px;
  margin: 0 auto;
}

.info_superior .section__content__2-1 div dl {
  padding-top: 20px;
}
.info_superior .section__content__2-1 div dl * {
  color: #fff;
}
.info_superior .section__content__2-1 div dt {
  font-size: 1.5em;
  font-weight: 700;
}
.info_superior .section__content__2-1 div dd {
  padding-top: 14px;
  line-height: 150%;
}

.info_superior .item_card .title_1 h3 {
  background: #002b67;
  border-radius: 50px;
  color: #fff;
  width: 650px;
  margin: 0 auto;
  font-size: 34px;
  padding: 10px 0;
  font-weight: 600;
}

.info_superior .item_card .title_1 h4 {
  font-weight: 700;
  font-size: 32px;
  color: #002b67;
}

.info_superior .item_card .title_1 p {
  color: #222;
}

.info_superior > .section__content__3 {
  background-image: url("/theme/enm/img/super_bg02.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.info_special > .section__content__3 {
  background-color: #eff4fb;
}

.info_superior .item_card .title_2 h3 {
  color: #fff;
  width: 600px;
  margin: 0 auto 40px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .info_superior .item_card .title_2 h3 {
    color: #fff;
    width: 600px;
    margin: 0 auto 0;
    font-weight: 600;
  }
}

.info_superior .item_card .title_2 span {
  color: #0082ff;
}

.info_superior .item_card .item_img {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.info_superior .item_card .item_img img {
  width: 100%;
}

.info_superior .section__content__4 .item_banner img {
  width: 100%;
}

.info_superior .section__content__5 {
  background-color: #eff4fb;
}

.info_superior .section__content__5 .txt_list {
  background: #fff;
  padding: 50px 70px;
}

.info_superior .section__content__5 .txt_list li {
  padding-top: 30px;
  padding-bottom: 10px;
  font-size: 20px;
  border-bottom: 1px solid #d8cbc0;
  color: #222;
}

.info_superior .section__content__5 .txt_list li:first-child {
  padding-top: 0px;
}

.mb-60 {
  margin-bottom: 100px;
}

/* 특별한 내시경 검사 */
.info_special .item_card {
  padding: 100px 0;
}

.special_gastroscopy .item_card .title_2 h3 {
  font-size: 30px !important;
}

.special_gastroscopy .section__content__5 .con5_txt h3 {
  font-size: 30px !important;
}
.special_gastroscopy .section__content__5 .con5_box .con5_title {
  font-size: 20px !important;
}

.info_special .item_card .title {
  text-align: center;
}

.info_special .item_card .title h3 {
  margin-bottom: 40px;
  color: #111;
  font-size: 40px;
  font-weight: 600;
}

.info_special .item_card .title strong {
  color: #1b459a;
  font-weight: 600;
  font-size: 20px;
}

.info_special .item_card .title p {
  margin: 20px 0;
  font-size: 1.2rem;
  font-weight: 500;
}

.info_special .item_card .title p b {
  border: 1px solid #002b67;
  padding: 5px 15px;
  border-radius: 10px;
  color: #002b67;
  display: inline-block;
  margin-bottom: 15px;
}

.info_special .item_card .title img {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .info_special .item_card {
    padding: 40px 0;
  }

  .info_special .item_card .title h3 {
    margin-bottom: 15px;
    color: #111;
    font-size: 2rem;
    font-weight: 600;
  }
}

.info_special .section__content {
  background-image: url("/theme/enm/img/super_bg01.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.info_special .section__content .bar {
  width: 3px;
  height: 30px;
  background: #8a715d;
  margin: 25px auto;
}

@media (max-width: 768px) {
  .info_special .item_card .title p {
    margin: 0 0;
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: 500;

    text-align: justify;
    word-break: break-all;
  }

  .info_special .item_card .title p br {
 
  }

  .info_special .section__content .bar {
    width: 3px;
    height: 30px;
    background: #8a715d;
    margin: 10px auto;
  }
}

.info_special .item_card .title_1 h3 {
  color: #8a715d;
  margin: 0 auto;
  font-size: 36px;
  font-weight: 600;
}

.info_special .item_card .title_1 h4 {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 34px;
}

@media (max-width: 768px) {
  .info_special .item_card .title_1 h4 {
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.5;

    text-align: justify;
    word-break: break-all;
  }

  .info_special .item_card .title_1 h4 br {
    display: inline-block;
    content: "";
    padding: 0 2px;
  }
}

.info_special .item_card .title_1 p {
  color: #222;
}

.info_special .section__content__2 {
  background-color: #fff;
}

.info_special .section__content__2 .item_card {
  display: flex;
  justify-content: space-between;
}

.info_special .section__content__2 .con2_txt {
  width: 45%;
}

.info_special .section__content__2 .con2_txt h3 {
  color: #002b67;
  font-size: 40px;
  font-weight: 600;
}

.info_special .section__content__2 .con2_txt p {
  font-size: 1.2rem;
  text-align: justify;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .info_special .section__content__2 .con2_txt p {
    font-size: 1.2rem;
    text-align: justify;
    margin-top: 15px;
  }
}

.info_special .section__content__2 .con2_img {
  width: 50%;
}

.info_special .item_card .title_2 h3 {
  background: #002b67;
  border-radius: 50px;
  color: #fff;
  width: 650px;
  margin: 0 auto;
  font-size: 34px;
  padding: 10px 0;
  font-weight: 600;
}

.info_special .item_card .title_2 h4 {
  margin-top: 50px;
}

.info_special .item_card .title_2 span {
  color: #ffd2ae;
}

.info_special .section__content__3 .inner_box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  gap: 20px;
}

.info_special .section__content__3 .inner_box li {
  text-align: center;
}

@media (max-width: 768px) {
  .info_special .item_card .title_2 h4 {
    margin-top: 20px;
    margin-bottom: 12px;
    font-size: 15px;
  }

  .info_special .section__content__3 .inner_box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
  }

  .info_special .section__content__3 .inner_box li p {
    margin: 15px 0;
    font-size: 1.2rem;
    font-weight: 500;
  }
}

.info_special .section__content__3 .inner_box li p {
  margin: 20px 0;
  font-size: 1.2rem;
  font-weight: 500;
}

.info_special .section__content__3 .con_img {
  border: 3px solid #e2e2e2;
}

.info_special .section__content__3 .con_img img {
  width: 100%;
}

.info_special .section__content__3_1 .inner_box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  gap: 80px;
}

.info_special .section__content__3_1 .inner_box li {
  text-align: left;
}

.info_special .section__content__3_1 .inner_box li p {
  margin: 20px 0;
  font-size: 1.2rem;
  font-weight: 500;
}

.info_special .section__content__3_1 .con_img {
  border: 3px solid #e2d6ce;
}

.info_special .section__content__3_1 .con_img img {
  width: 100%;
}

@media (max-width: 768px) {
  .info_special .section__content__3_1 .inner_box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 80px;
  }

  .info_special .section__content__3_1 .inner_box li p {
    margin: 0 0;
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: 500;
  }
}

.info_special .section__content__4 {
  background-color: #fff4ed;
}

.info_special .section__content__4 .con4 {
  display: flex;
  margin-top: 90px;
}

.info_special .section__content__4 .con4_txt {
  width: 50%;
  padding-left: 70px;
}

.info_special .section__content__4 .con4_txt h3 {
  color: #8a715d;
  font-size: 44px;
  font-weight: 700;
}

.info_special .section__content__4 .con4_txt p {
  font-size: 1.2rem;
  text-align: justify;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .info_special .section__content__4 .con4 {
    display: flex;
    margin-top: 30px;
  }

  .info_special .section__content__4 .con4_txt p {
    font-size: 1.2rem;
    text-align: justify;
    margin-top: 15px;
  }
}

.info_special .section__content__4 .con4_img {
  width: 40%;
}

.info_special .section__content__4 .con4_img img {
  width: 100%;
}

.info_special .section__content__5 {
  text-align: center;
}

.info_special .section__content__5 .con5_txt {
  margin-bottom: 40px;
}

.info_special .section__content__5 .con5_txt h3 {
  font-size: 40px;
  font-weight: 600;
}

.info_special .section__content__5 .con5_box {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.info_special .section__content__5 .con5_box li {
  width: 50%;
}

.info_special .section__content__5 .con5_box .con5_title {
  background: #002b67;
  color: #fff;
  border-radius: 50px;
  margin: 0 auto 20px;
  padding: 15px;
  font-size: 20px;
  font-weight: 500;
}

.info_special .section__content__5 .con5_box p {
  padding: 30px;
  font-size: 1.2rem;
  font-weight: 500;
  background-color: #fff;
}
.info_special .section__content__5 .con5_box p img {
  margin-bottom: 20px;
  width: 100%;
}

@media (max-width: 768px) {
  .info_special .section__content__5 .con5_txt {
    margin-bottom: 20px;
  }

  .info_special .section__content__5 .con5_box p {
    padding: 0;
    padding-top: 15px;
    font-size: 1.2rem;
    font-weight: 500;
  }
}

.info_special .section__content__6 {
}

.info_special .section__content__6 .txt_list {
  background-color: #f4f4f4;
  font-size: 20px;
  padding: 30px 50px;
  font-weight: 500;
}

.info_special .section__content__6 .txt_list li {
  padding: 10px 0;
}

.info_special .section__content__6 strong {
  font-weight: 600;
}

.info_special .section__content__7 {
  background-image: url("/theme/enm/img/special_bg01.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .info_special .section__content__6 .txt_list li {
    padding: 5px 0;
  }

  .info_special .section__content__6 strong {
    font-weight: 800;
  }
}

.qna_inner {
  padding: 50px 70px;
  background-color: #f7f7f7;
}

.qna_inner .bg {
  width: 100%;
  background-color: #fff;
  text-align: center;
  padding: 10px;
}

.qna_inner .item .border {
  position: relative;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.qna_inner .item .border:after {
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  background-color: #ccc;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.qna_inner .item .text {
  width: calc(100% - 45px);
}

.qna_container .qna_item {
  width: 100%;
}

.qna_container .q_box {
  font-size: 1.35rem;
  font-weight: 500;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  font-size: 1.6rem;
}

.qna_container .q_box .mont {
  font-size: 1.4rem;
}

.qna_container .a_box {
  font-size: 16px;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  padding: 15px 30px 15px;
  background-color: #fff;
  margin-top: 13px;
}
.qna_container .q_box .sentence {
  font-size: 20px;
}
.qna_container .sentence {
  text-align: left;
  margin-left: 10px;
}


.how_to {}
.how_to h5, .how_to2 h5{    font-size: 30px;
    color: #000;
    letter-spacing: -1px;
    text-align: center;
}
.f_tb1{padding: 2.5rem;     background: #f7f7f7;}
.f_tb1 dt{font-size:1.5rem;font-weight:700;width:100%;color:#002b67; }
.f_tb1 dd{    font-size: 1.2rem;}
.f_tb1 dd img{width: 100%;}


.how_to2{    text-indent: -10px;}
    .how_to2 p{margin-top: 5px;}
.how_to2 img{    width: 77%;
    margin: 0 auto;}
    .how_to2 .point_txt{color: #002b67;}
    

.section-right {
  justify-content: space-between;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.section-right .imgbox {
  width: 45%;
}
.section-right .imgbox img {
  width: 100%;
}

.section-right .txt_wrap {
  width: 47%;
}
.section-right .txt_wrap h2 {
  font-size: 36px;
  color: #000;
  letter-spacing: -1px;

  margin: 0 0 20px 0;
  background: url(/theme/enm/img/txt_img.png) no-repeat center left;
  padding: 0px 0 0 45px;
}

.section-right .txt_wrap p {
  font-size: 1.2rem;
}
