/* COMMON */
body {
  color: #333;
  /* color: white; */
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  font-family: 'Nanum Gothic', sans-serif;
  /* height: 6000px;  제거해도 됨 */
}
img {
  display: block; /* img는 기본적으로 inline 문자 속성으로 baseline 아래에 여백이 있음. block으로 바꾸면 여백 없어짐 */
}
/* a {
  text-decoration: none;
} */
.inner {
  /* width: 1100px; */
  /* width: 980px; */
  /* width: 680px; */
  /* width: 100%; */
  margin: 0 auto;
  position: relative;
}
.btn {
  width: 140px;
  padding: 10px;
  border: 2px solid #333;
  border-radius: 4px;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  display: block;
  transition: .4s;
}
.btn:hover {
  background-color: #333;
  color: #fff;
}
.btn.btn--reverse {
  background-color: #333;
  color: #fff;
}
.btn.btn--reverse:hover {
  background-color: transparent;
  color: #333;
}
.btn.btn--brown {
  color: #592B18;
  border-color: #592B18;
}
.btn.btn--brown:hover {
  color: #fff;
  background-color: #592B18;
}
.btn.btn--gold {
  color: #D9AA8A;
  border-color: #D9AA8A;
}
.btn.btn--gold:hover {
  color: #fff;
  background-color: #D9AA8A;
}
.btn.btn--white {
  color: #FFF;
  border-color: #FFF;
}
.btn.btn--white:hover {
  color: #333;
  background-color: #FFF;
}
.back-to-position {
  opacity: 0; /* 완전히 투명하게 */
  transition: 1s;
}
.btn-undeco {
  text-decoration: none;
  margin: 0 20px 0;
  /* background-color: rgb(192, 188, 188); */
  background-color: #e7640c;
}
.back-to-position.to-right {
  transform: translateX(-150px);
}
.back-to-position.to-left {
  transform: translateX(150px);
}
.show .back-to-position {
  opacity: 1; /* 불투명 */
  transform: translateX(0);
}
.show .back-to-position.delay-0 {
  transition-delay: 0s;
}
.show .back-to-position.delay-1 {
  transition-delay: .3s;
}
.show .back-to-position.delay-2 {
  transition-delay: .6s;
}
.show .back-to-position.delay-3 {
  transition-delay: .9s;
}

/* HEADER */
header {
  width: 100%;
  /* position: relative; */
  /* background-color: royalblue; */
  background-color: #f6f5f0;
  /* background-color: rgb(175, 176, 248); */
  border-bottom: 1px solid #c8c8c8;
  position: fixed;
  top: 0;
  z-index: 9;
  padding-top: 10px;
}
header > .inner {
  /* width: 1100px; */
  /* height: 120px; */
  /* 최종 */
  /* height: 95px; */
  /* margin: 0 auto; */
  /* background-color: orange; */
  position: relative;
}
header .logo {
  /* width: 75px; */
  /* height: 75px; */
  /* position: absolute; */
  /* width: 100%; */
  top: 10px;
  /* bottom: 0; */
  /* left: 0; */
  /* right: 0; */
  /* margin: auto; /* auto auto 의 줄임 */
  display: flex;
  justify-content: center;
  text-align: center;
}
header .logotext {
  color: #999;
  font-size: 12px;
  /* margin-bottom: 0; */
}
header .langsel {
  /* position: absolute; */
  /* top: 10px;
  right: 0; */
  /* width: 200px; */
  /* height: 30px; */
  padding-left: 40px;
  padding-top: 6px;
  /* background-color: red; */
  /* border-radius: 10px;
  border: 1px solid #9B51E0; */
  font-size: 12px;
  font-family: Arial;
}
/* header .highlight{background-color: lightyellow}
header .strong{font-weight: bold} */
.langdrop-down {
  width: 130px;
  height: 32px;
  /* background: url('../images/national_flag/us.png') 5px center no-repeat; */
  background-size: 40px;
  padding: 5px 5px 5px 50px;
  border-radius: 4px;
  outline: 0 none;
}

header .sub-menu {
  position: absolute;
  top: 10px;
  right: 0;
  /* display: flex; */
  display: none;
}
header .sub-menu ul.menu {
  /* font-family: Arial, sans-serif; */
  display: flex;
}
header .sub-menu ul.menu li {
  position: relative;
}
header .sub-menu ul.menu li::before {
  content: "";
  /* display: block; */
  /* absolute와 fixed는 기본적으로 block 요소 */
  width: 1px;
  height: 12px;
  background-color: #a09797;  /* black; */
  position: absolute; /* absolute와 fixed는 기본적으로 block 요소 */
  top: 0;
  bottom: 0;
  margin: auto; /* auto 0: 0는 생략? */
}
/* :: 가상선택자, ::before 는 앞에 */
header .sub-menu ul.menu li:first-child::before {
  display: none;
}
header .sub-menu ul.menu li a {
  /* background-color: red; */
  font-size: 12px;
  padding: 11px 16px;
  display: block;
  color: #656565;
  /* text-decoration: none; */
}
header .sub-menu ul.menu li a:hover {
  color: #000;
}

header .main-menu {
  /* position: relative; */
  /* bottom: 0; */
  /* right: 0; */
  /* z-index: 1; */
  /* display: none; */
  display: flex;
  justify-content: center;
  /* align-items: center; */
  /* width: 100%; */
}
/* header .main-menu .item {
  display: flex;
  justify-content: center;
} */
header .main-menu .item {
  padding-top: 5px;
}
header .main-menu .item .item__name {
  /* padding: 10px 20px 34px 20px; */
  padding: 5px 20px 10px 20px;
  /* font-family: Arial, sans-serif; */
  font-size: 14px;
  font-weight: bold; /* 추가함 */
}
header .main-menu .item:hover .item__name {
  background-color: #2c2a29;  /* 어두운 회색 */
  color: #669900;
  border-radius: 6px 6px 0 0;
  /* transition: .9s; */
}
header .main-menu .item .item__contents {
  width: 100%;
  position: fixed;
  left: 0;
  /* left: 0;
  right: 0; */
  display: none;
}
header .main-menu .item:hover .item__contents {
  display: block;
  /* transition: .9s; */
}
header .main-menu .item .item__contents .contents__menu {
  background-color: #2c2a29;
  /* height: 200px; */
  /* transition: .9s; */
}
header .main-menu .item .item__contents .contents__menu > ul {
  display: flex;
  /* padding: 20px 0; */
  justify-content: center;
  /* justify-content: space-between; */
  /* align-items: center; */
}
header .main-menu .item .item__contents .contents__menu > ul > li {
  /* width: 220px; */
  width: 130px;
}
header .main-menu .item .item__contents .contents__menu > ul > li h4 {
  padding: 3px 0 7px 0;
  font-size: 14px;
  color: #fff;  /* 흰색 */
}
header .main-menu .item .item__contents .contents__menu > ul > li ul h5 {
  padding: 5px 0 0 0;
  font-size: 13px;
  color: yellow;
  /* cursor: pointer; */
}
header .main-menu .item .item__contents .contents__menu > ul > li ul li {
  padding: 5px 0;
  font-size: 13px;
  color: #999;
  /* cursor: pointer; */
}
header .main-menu .item .item__contents .contents__menu > ul > li ul li > a {
    color: #999;
    text-decoration: none;
}
header .main-menu .item .item__contents .contents__menu > ul > li ul li:hover,
header .main-menu .item .item__contents .contents__menu > ul > li ul li > a:hover {
  color: #669900;
}
header .main-menu .item .item__contents .contents__menu .inner,
header .main-menu .item .item__contents .contents__texture .inner{
  width: 100%;
  padding: 20px 0 10px 0;
  /* text-align: center; */
}
header .main-menu .item .item__contents .contents__texture {
  /* background-color: orange; */
  /* height: 100px; */
  text-align: center;
  /* padding: 26px 0 26px 0; */
  font-size: 12px;
  background-image: url("../images/main_menu_pattern.jpg");
}
header .main-menu .item .item__contents .contents__texture h4 {
  color: #999;
  font-weight: 700;
}
header .main-menu .item .item__contents .contents__texture p {
  color: #669900;
  margin: 4px 0 14px;
}
header .badges {
  position: absolute;
  top: 132px;
  right: 12px;
}
header .badges .badge{
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: 4px 4px 10px rgba(0,0,0,.15); /* 검정색, 투명도 */
  cursor: pointer;
}
.advocate {
  position: fixed;
  left: 0;
  right: 0;
  /* width: 100%; */
  bottom: 2px;
  /* right: 12px; */
  /* margin: auto; */
  z-index: 8;
  display: flex;
  justify-content: center;
  align-items: center;
}
.advocate > a {
  /* border-radius: 10px; */
  overflow: hidden;
  /* margin-bottom: 12px; */
  /* box-shadow: 4px 4px 10px rgba(0,0,0,.15); /* 검정색, 투명도 */
  /* cursor: pointer; */
  width: 152px;
  height: 30px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: bold;
  color:#FFFFFF;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  /* box-shadow: 0px 4px 16px rgba(232, 52, 78, 0.6); */
  margin: 0 5px 0 5px;
  opacity: .8;
}
.ask_contact {
  /* background-color: #FF773C; */
  background-color: #e8344e;
}
.ask_online {

  background-color: #f50000;
}
/* VISUAL */
.visual {
  margin-top: 90px;
  /* background-image: url(../images/visual_bg.jpg); */
  /* background-image: url(../images/visual_bg_HanAll.png); */
  /* background-image: url("../images/image_bg.jpg"); */
  /* background-color: grey; */
  /* background-position: center; */
  color: black;
  font-size: 24px;
  font-weight: bold; /* 추가함 */
  text-align: center;
  /* background-repeat: no-repeat; */
}
.big5,
.best-hospital{
  /* height: 150px; */
  /* width: 100%; */
  padding-top: 7px;
  padding-bottom: 7px;
  display: block;
  /* margin: auto; */
  /* text-align: center; */
  background-color: #0d6efd;
  color: white;
  /* background-position: center; */
}
.best-hospital1,
.best-concierge1 {
  width: 80%;
  /* text-align: center; */
  margin: auto;
}
.html_size {
  display: none;
}
.visual .info_hospital {
  /* margin-top: 20px;/* auto 0;  /* top=30, left와 right는 auto, bottom=0 */
  display: flex;
  /* bottom: 0; */
  justify-content: center;  /* 수평 정열 */
  align-items: center;    /* 수직 정열 */
  /* align-items: flex-end; */
  padding: 20px 0 0 0;
}
.visual .front_hospital{
  /* display: block; */
  /* width: 342px; */
  box-sizing: border-box;
  /* margin: 20px; */
  padding: 20px 20px 10px 20px;
}
/* .visual */
.title {
  color: black;
  font-size: 24px;
  padding: 0 0 10px 0;
  text-align: center;
  /* margin: 0 auto;
  width: 680px; */
}
/* .title > a{
  padding-top: 10px;
} */
.moreinfo {
  font-size: 14px;
}
.orangecolor {
  color: rgb(204, 42, 77);
}
.visual .infoimage {
  /* padding: 0 0 10px 0; */
  padding: 10px;
  /* text-align: center; */
  display: block;
  margin: auto;
}
.visual .infotext {
  color: black;
  font-size: 12px;
  padding: 0 10px 0;
  text-align: left;
}


/*.visual .inner { */
  /* height: 740px;  /* abstract_HanAll.jpg height 604 + top 88 * 2 ? 잘 안맞음 */
  /* background-color: orange; */
  /* width: 100%; */
/* } */

.visual .a_link_left{
  text-align: left;
}
.img_center {
  display: block;
  margin: auto;
  /* width: 100%; */
}
.visual .img_center.imgpad {
  margin-bottom: 10px;
}
/* .concierge .img_center.boxing,
.visual  */
.img_center.boxing {
  border: 2px solid green;
  box-sizing: border-box;
}
.brief-notice {
  padding-top: 10px;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
}
.brief-notice-smallpad {
  padding-top: 5px;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
}
.brief-notice11 {
  font-size: 10px;
  font-weight: 400;
  /* text-align: center; */
}
.brief-notice14 {
  font-size: 14px;
  font-weight: 400;
  /* text-align: center; */
}
.online-request {
  margin-top: 16px;
  /* background-color: red; */
  padding: 20px;
  border : 1px solid green;
}
.brief-notice24 {
  font-size: 24px;
  /* font-weight: 400; */
  font-weight: bold;
  /* text-align: center; */
  /* margin-bottom: 0; */
  /* padding-bottom: 0; */
}
.text-padleft10 {
  padding-left: 10px;
}
.text-padleft20 {
  padding-left: 40px;
}
.text-padtop10 {  /* connected online-request .text-left > li  +1*/
  padding-top: 10px;
}
.text-padtop11 {  /* connected online-request .text-left > li  +1*/
  padding-top: 11px;
}
.text-padtop12 {  /* connected online-request .text-left > li  +1*/
  padding-top: 12px;
}
.text-padtop14 {  /* connected online-request .text-left > li  +1*/
  padding-top: 14px;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-underline {
  text-decoration: underline;
}
.text-bold {
  font-weight: bold;
}
.text-light {
  font-weight: 200;
}
.text-black {
  color: rgb(31, 2, 2);
}
.text-red {
  color: red;
}
.text-lightred {
  color: rgb(179, 7, 16);
}
.text-orange {
  color: orange;
}
/* moved to  class="text-padtop12"
 .online-request .text-left > li {
  padding-top: 11px;
} */
.online-request .text-right > li {
  padding-top: 12px;
}
/* form {
    border : 1px solid black;
} */
.online-request > table{
  /* border : 1px solid green; */
  /* padding: 20px; */
  margin: auto;
}
/* .input_none {
  display: none;
} */

.visual .title .btn {
  position: absolute;
  top: 259px;
  left: 173px;
}

/* ETC */
.map_base {
  position: relative;
}
#map_mongol {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: red;
  left: 50%;
  top:50%;
  /* display: none; */
}
#map_mongol_contents {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: red;
  left: 53%;
  top:50%;
  display: none;
}
#map_mongol:hover #map_mongol_contents {
  display: block;
}
.color_green {
  color: green;
}
/* YOUTUBE VIDEO */
.youtube {
  position: relative;
  height: 500px;
  /* background-color: royalblue; */
  /* background-color: #333; */
  overflow: hidden; /* youtube 영상의 가운데 부분만 보여짐*/
}
.youtube .youtube__area {
  /* width: 1920px; */
  /* width: 900px; */
  width: 680px;
  background-color: orange;
  position: absolute;
  /* position: center; */
  left: 50%;
  /* margin-left: calc(1920px / -2); */
  margin-left: calc(680px / -2);
  top: 50%; /* youtube영역의 가운데 맞추기 위함. 다음 줄과 함께*/
  /* margin-top: calc(1920px * 9 / 16 / -2); */
  margin-top: calc(680px * 9 / 16 / -2);
}
.youtube .youtube__area::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.youtube .youtube__cover {
  background-image: url("../images/video_cover_pattern.png");
  background-color: rgba(0,0,0,.3);/* 검정식, 30% 투명도, 제어하는 유튜브가 아니라 배경을 깔려있는 영상이라는 것을 알려줌 */
  position: absolute;
  /* top: 0;
  left: 0; */
  /* left: 50%; */
  /* margin-left: calc(1920px / -2); */
  /* margin-left: calc(680px / -2); */
  width: 100%;
  /* width: 680px; */
  height: 100%;
  /* height: 500px; */
}
#player {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.youtube .inner {
  height: 700px;
  /* background-color: royalblue; */
}
.youtube .floating1 {
  position: absolute;
  top: 50px;
  left: 0;
}
.youtube .floating2 {
  position: absolute;
  top: 350px;
  left: 150px;
}
/* .youtube .floating3 {
  position: absolute;
  bottom: -200px;
  right: 0;
} */

.demo_total {
  /* display: block; */
  padding: 30px 0;
  background-image: url("../images/video_cover_pattern.png");
  /* text-align:center; */
  /* width: 680px; */
  margin: auto;
  border: 2px dashed;
  /* border: 2px solid; */
  /* background-repeat: no-repeat; */
  /* background-size: 300px 100px; */
}
/* .demo_total1 {
  border: 5px dashed;
  width: 650px;
} */

/* .video_center {
  padding: 20px;
} */
.concierge {
  color: black;
  font-size: 24px;
  font-weight: bold; /* 추가함 */
  text-align: center;
}
.flexarr_t {
  display: flex;
  justify-content: center;  /* 수평 가운데 */
  /* align-items: center;  /* 수직 가운데 */
  align-items: flex-start;
  /* background-color: red; */
  /* margin: auto; */
  padding-top: 10px;
}
.flexarr_t > p,
.flexarr_e > p {
  text-align: left;
}
.flexarr_e {
  display: flex;
  justify-content: center;  /* 수평 가운데 */
  align-items: center;  /* 수직 가운데 */
  /* align-items: flex-end; */
  /* background-color: red; */
  /* margin: auto; */
}
.flexarr_c {
  display: flex;
  justify-content: center;  /* 수평 가운데 */
  /* align-items: flex-end;  수직 가운데 */
  align-items: center;
  /* background-color: red; */
  /* margin-bottom: 0; */
  /* margin: auto; */
}
.flexarrleft {
  display: flex;
  justify-content: left;  /* 수평 가운데 */
  align-items: center;  /* 수직 가운데 */
  /* align-items: flex-top; */
  /* background-color: red; */
  margin: auto;
}
.flexcol {
  display: flex;
  flex-direction: column;
  justify-content: center;  /* 수평 가운데 */
  align-items: flex-start;  /* 수직 가운데 */
  padding: 0 5px 0;
  /* align-items: flex-top; */
  /* background-color: red; */
  /* margin: auto; */
}
.flexcol_right {
  display: flex;
  flex-direction: column;
  justify-content: center;  /* 수평 가운데 */
  align-items: flex-end;  /* 수직 가운데 */
  padding: 0 5px 0;
  /* align-items: flex-top; */
  /* background-color: red; */
  /* margin: auto; */
}
/* do at .js
.divsize680 {

} */
.aligncenter {
  margin: 0 auto;
}

/* AWARDS */
.awards {
  background-color: #272727;
  margin-top: 40px;
}
.awards .inner {
  width: 100%;
  padding: 20px 0;
}
.awards .swiper-container {
  /* width: 100%; */
  /* height: 80px; */
  padding: 0 0 0 40px;
}
.awards .swiper-prev,
.awards .swiper-next {
  width: 30px;
  height: 30px;
  border: 2px solid #fff;
  border-radius: 50%;
  outline: none;
  color: #fff;
  opacity: .5;
  cursor: pointer;
  display: flex;
  justify-content: center;  /* 수평 가운데 */
  align-items: center;  /* 수직 가운데 */
  position: absolute;
  /* top: 0; /* 수직 정열이라 height가 얼마인지 정의되어 있어야 함 */
  bottom: 10px;
  /* margin: auto; /* 수직 정열이라 height가 얼마인지 정의되어 있어야 함 */
}
.awards .swiper-prev {
  /* left: -100px; */
  left: 25%;
}
.awards .swiper-next {
  right: 25%;
  /* right: 100px; */
}
.awards .swiper-prev:hover,
.awards .swiper-next:hover {
  background-color: #fff;
  color: #333;
}

/* FOOTER */
footer {
  background-color: #272727;
  border-top: 1px solid rgb(78, 77, 77);
}
footer .inner {
  /* padding: 20px 0 60px 0; */
  padding: 20px 0 0 0;
}
.flexarr_c .menu,
footer .menu {
  display: flex;
  justify-content: center;
}
/* .online-request .menu .btn-group, */
footer .menu .btn-group {
  padding: 0 20px 0;
}
footer .menu li {
  position: relative;
}
footer .menu li::before {
  content: "";
  width: 3px;
  height: 3px;
  background-color: #555;
  position: absolute; /* absolute와 fixed는 display속성이 block으로 됨 */
  top: 0;
  bottom: 0;
  right: -1px;  /* 오른쪽에 점을 두기 위함. 없으면 왼쪽으로 점이 옮겨짐 */
  margin: auto;
}
footer .menu li:last-child::before {
  display: none;
}

footer .menu li a {
  color: #ccc;
  font-size: 12px;
  font-weight: 700;
  padding: 15px;
  display: block; /* padding은 inline요소인 <a>에 안 먹으므로 block으로 바꾸어 줌 */
}
footer .menu li a.green {
  color: #669900;
}
footer .btn-group {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  /* margin-bottom: 30px; */
}
footer .btn-group .btn {
  font-size: 12px;
  margin-right: 10px;
}
footer .btn-group .btn:last-child {
  margin-right: 0;
}
footer .btn-group > a {
  text-decoration: none; 
}
footer .btn-group > a:hover {
  text-decoration: underline; 
}
footer .wrap_map_area {
  margin: 30px 0 20px;
}
footer .map_area {
  /* width: 680px;
  height: 510px; */
  display: none;
  margin: auto;
}
footer .map_area iframe{
  width: 100%;
  height: 100%;
  border: 0;
  /* border: 2px solid #333; */
}

footer .info {
  /* margin-top: 30px; */
  text-align: center; /* 문자 가운데 정열 */
}
footer .info span {
  /* margin-right: 20px; */
  margin-right: 10px;
  color: #999;
  font-size: 12px;
}
footer .info span:last-child {
  margin-right: 0;
}
footer .copyright {
  color: #999;
  font-size: 12px;
  text-align: center;
  margin-top: 12px;
}
footer .logofoot {
  margin-top: 20px;/* auto 0;  /* top=30, left와 right는 auto, bottom=0 */
  padding-bottom: 60px;
  display: flex;
  bottom: 0;
  justify-content: center;  /* 수평 정열 */
  /* align-items: center;  수직 정열 */
  align-items: flex-end;
}
/* footer .logo { */
  /* margin-top: 30px;/* auto 0;  top=30, left와 right는 auto, bottom=0 */
/* } */

footer .logotext {
  color: #999;
  font-size: 12px;
  margin-bottom: 0;
}
/* .tthis-year,
.this-year {
  color: red;
  text-align: center;
} */

#to-top {
  width: 42px;
  height: 42px;
  background-color: #333;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;  /* 화살표를 수평 가운데 */
  align-items: center;  /* 화살표를 수직 가운데 */
  position: fixed;  /* viewport 기준으로 */
  bottom: 50px;
  right: 20px;
  z-index: 9;
  /* display: none;  /* display: flex; at do_onload() */
}
@media all and (min-width: 680px) {
  .insert_br {
    display: none;
  }
  .img_contact {
    width: 40%;
  }
  .brief-notice11 {
    width: 60%;
    font-size: 14px;
  }
}
@media all and (max-width: 679px) {
  header .main-menu .item .item__name {
    padding: 5px 15px 10px 15px;
  }
}