



.chat_window.hide {
    display: none;
}
.chat_window .txt{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* 뷰포트의 높이를 100%로 설정하여 전체 화면 높이를 채웁니다. */
}

/* 챗봇이 표시된 상태의 스타일 */
.chat_window {
    z-index: 1000;
}

.chat_window {
    position: fixed;            /* 고정 위치로 설정 */
    width: 400px;               /* 원하는 너비로 설정 */
    height: 600px;
    border-radius: 30px;
    bottom: 70px;               /* 아래쪽으로부터의 거리 */
    right: 100px;                /* 오른쪽으로부터의 거리 */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background-color: rgba(248, 248, 248, 0.5);
    overflow: hidden;
    /* display: none; */
}

.top_menu {
    background-color: #fff;
    width: 100%;
    padding: 20px 0 15px;
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
}

.top_menu .buttons {
    margin: 3px 0 0 20px;
    position: absolute;
}

.top_menu .buttons .button {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    position: relative;
}

.top_menu .buttons .button.close_button {
    background-color: #f5886e;
}

.top_menu .buttons .button.minimize {
    background-color: #fdbf68;
}

.top_menu .buttons .button.maximize {
    background-color: #a3d063;
}

.top_menu .title {
    text-align: center;
    color: #bcbdc0;
    font-size: 20px;
}

.messages {
    position: relative;
    list-style: none;
    padding: 20px 10px 0 10px;
    margin: 10px;
    height: 450px;
    overflow: scroll;
}

.messages .message {
    clear: both;
    overflow: hidden;
    margin-bottom: 5px;
    transition: all 0.5s linear;
    opacity: 0;
    text-align: left;
}

.messages .message.left .avatar {
    background-color: #f5886e;
    float: left;

}

.messages .message.left .text_wrapper {
    /* background-color: #ffe6cb; */
    background-color:white;
    /* margin-left: 20px; */
    /* border-radius: 5em; */
    border : 1px solid black;

}

.messages .message.left .text_wrapper::after, .messages .message.left .text_wrapper::before {
    right: 100%;
    border-right-color: #ffe6cb;

}

.messages .message.left .text {
    color: #c48843;


}

.messages .message.right .avatar {
    visibility: collapse;
    background-color: #fdbf68;
    float: right;
}
.messages .message.left .avatar {

    background-image: url(../src/img/ci_small.jpg);
    background-size: 1.9cm;
    background-position: center;
   /* background-color: #f5886e;
    */float: left;
    margin: 1em;
}

.messages .message.right .text_wrapper {
    background-color: #c7eafc;
    margin-right: 5px;
    float: right;
    border : 1px solid black;

}

.messages .message.right .text_wrapper::after, .messages .message.right .text_wrapper::before {
    left: 100%;
    border-left-color: #c7eafc;
}

.messages .message.right .text {
    color: #45829b;
}

.messages .message.appeared {
    opacity: 1;
}

.messages .message .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-block;
}

.messages .message .text_wrapper {
    display: inline-block;
    padding: 10px;
    border-radius: 6px;
    width: calc(100% - 10px);
    min-width: 100px;
    position: relative;
}

.messages .message .text_wrapper::after, .messages .message .text_wrapper:before {
    top: 18px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.messages .message .text_wrapper::after {
    border-width: 13px;
    margin-top: 0px;
}

.messages .message .text_wrapper::before {
    border-width: 15px;
    margin-top: -2px;
}

.messages .message .text_wrapper .text {
    font-size: 18px;
    font-weight: 300;
}

.bottom_wrapper {
    position: relative;
    width: 100%;
    background-color: #fff;
    padding: 10px 20px;
    position: absolute;
    bottom: 0;
}

.bottom_wrapper .message_input_wrapper {
    display: inline-block;
    height: 50px;
    border-radius: 25px;
    border: 1px solid #bcbdc0;
    /* width: calc(100% - 160px); */
    width: 300px;
    position: relative;
    padding: 0 20px;
}

.bottom_wrapper .message_input_wrapper .message_input {
    border: none;
    height: 100%;
    box-sizing: border-box;
    width: calc(100% - 40px);
    position: absolute;
    outline-width: 0;
    color: gray;
}

.bottom_wrapper .send_message {
    width: 50px;
    height: 50px;
    display: inline-block;
    border-radius: 50px;
    background-color: #a3d063;
    border: 2px solid #a3d063;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s linear;
    text-align: center;
    float: right;
}

.bottom_wrapper .send_message:hover {
    color: #a3d063;
    background-color: #fff;
}

.bottom_wrapper .send_message .text {
    font-size: 18px;
    font-weight: 300;
    display: inline-block;
    line-height: 48px;
}

.message_template {
    display: none;
}

.dynamic-button {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 25px; /* 이 부분이 버튼의 둥근 모양을 만들어줍니다. */
    background-color: white;
    border: 3px solid #87CEFA; /* 하늘색 테두리 */
    color: #87CEFA; /* 글씨 색도 하늘색으로 설정 */
    text-decoration: none; /* 링크의 밑줄 제거 */
    margin: 5px; /* 버튼 간의 간격 설정 */
    transition: 0.3s; /* 호버 효과 시간 */
}

.dynamic-button:hover {
    background-color: #87CEFA; /* 버튼 위에 마우스를 올렸을 때의 배경색 */
    color: white; /* 버튼 위에 마우스를 올렸을 때의 글씨 색 */
}

/*챗봇
*/

.gnb_wrap {
  border-bottom: 1px solid #000000;
}

.main-wrap {
  overflow: hidden;
  position: relative;
  z-index:1;
  padding-top: 40px;
}

@media (max-width: 760px) {
  .main-wrap {
    padding-top: 80px;
  }
}
.main-wrap .main-container {
  position: relative;
  z-index: 10;
  max-width: 1440px;
  margin: 0 auto;
}

@media (max-width: 1440px) {
  .main-wrap .main-container {
    padding: 0 20px;
  }
}
@media (max-width: 760px) {
  .main-wrap .main-container {
    padding: 0 15px;
  }
}
.main-wrap .main-wrap_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.main-wrap .main-wrap_bg span {
  position: absolute;
  transition: all 1s;
}

.main-wrap .main-wrap_bg span:nth-child(1) { /* transform: translateY(-60px) rotate(-50deg); */
  width: 420px;
  height: 445px;
  background: url("../images/common/hedaer_bg1.png");
  left: 50px;
  top: 20px;
}

.main-wrap .main-wrap_bg span:nth-child(2) { /* transform: translateY(-100px) rotate(20deg); */
  width: 1312px;
  height: 1040px;
  background: url("../images/common/header_bg3.png");
  right: -400px;
  top: -550px;
}

.main-search-word {
  margin-bottom: 48px;
}

@media (max-width: 760px) {
  .main-search-word {
    margin-bottom: 25px;
  }
}
.main-search-word a {
  color: #616161;
  font-weight: 400;
}

.main-search-word a:hover {
  color: #111;
}

.main-search-word dl {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 760px) {
  .main-search-word dl {
    justify-content: flex-start;
  }
}
.main-search-word dl dt {
  margin-right: 20px;
  font-size: 18px;
  color: #2da34f;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .main-search-word dl dt {
    font-size: 14px;
    font-weight: 700;
    margin-right: 0;
  }
}
.main-search-word dl dd {
  color: #616161;
  font-size: 14px;
  margin-left: 35px;
}

.main-search-word dl dd:before {
  display: inline-block;
  content: "#";
}

@media (max-width: 760px) {
  .main-search-word dl dd {
    display: none;
    margin-left: 15px;
  }
  .main-search-word dl dd:nth-of-type(1) {
    display: block;
  }
  .main-search-word dl dd:nth-of-type(2) {
    display: block;
  }
  .main-search-word dl dd:nth-of-type(3) {
    display: block;
  }
}
.main-sl-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

@media (max-width: 1000px) {
  .main-sl-row {
    display: block;
    gap: initial;
    margin-bottom: 40px;
  }
}
.main-sl-row .main-sl-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: calc(50% - 12px);
}

@media (max-width: 1000px) {
  .main-sl-row .main-sl-col {
    width: 100%;
    gap: 60px;
    margin-bottom: 40px;
  }
}
.main-sl-row .main-sl-col .ms1 {
  position: relative;
  height: 384px;
  background: #135784 url("../images/main/ms1_bg.png") center bottom/100% auto no-repeat;
  border-radius: 24px;
  padding: 35px;
}

.main-sl-row .main-sl-col .ms1-head {
  margin-bottom: 35px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.main-sl-row .main-sl-col .ms1-info {
  font-size: 24px;
  color: #fff;
}

.main-sl-row .main-sl-col .ms1-info span {
  display: block;
  color: #45c9dd;
  font-size: 16px;
}

.main-sl-row .main-sl-col .ms1 .swiper-pagination {
  display: none;
}

.main-sl-row .main-sl-col .ms1-item01 i {
  background-image: url("../images/main/icon_m_s1.png");
}

.main-sl-row .main-sl-col .ms1-item02 i {
  background-image: url("../images/main/icon_m_s2.png");
}

.main-sl-row .main-sl-col .ms1-item03 i {
  background-image: url("../images/main/icon_m_s3.png");
}

.main-sl-row .main-sl-col .ms1-item04 i {
  background-image: url("../images/main/icon_m_s4.png");
}

.main-sl-row .main-sl-col .ms1 .ms-item-ti {
  display: block;
  font-size: 18px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 12px;
  line-height: 1.2em;
  transition: all ease 0.3s;
}

.main-sl-row .main-sl-col .ms1 i {
  display: block;
  width: 80px;
  height: 80px;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto 20px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all ease 0.3s;
}

.main-sl-row .main-sl-col .ms1 .ms-item-ti-mobile {
  display: none;
}

.main-sl-row .main-sl-col .ms1 .ms1-btn-wrap button {
  color: #fff;
  background: #45a1dd;
  width: 100px;
  height: 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 760px) {
  .main-sl-row .main-sl-col .ms1 .ms1-btn-wrap button {
    font-size: 12px;
  }
}
.main-sl-row .main-sl-col .ms1 .ms1-btn-wrap button + button {
  background: #2da34f;
  margin-top: 8px;
}

.main-sl-row .main-sl-col .ms1 .swiper-slide {
  height: 220px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.main-sl-row .main-sl-col .ms1 .swiper-slide:first-child {
  border: none;
}

.main-sl-row .main-sl-col .ms1 .swiper-slide:hover .ms1-item01 i {
  background-image: url("../images/main/m_ico_service_on01.png");
}

.main-sl-row .main-sl-col .ms1 .swiper-slide:hover .ms1-item02 i {
  background-image: url("../images/main/m_ico_service_on02.png");
}

.main-sl-row .main-sl-col .ms1 .swiper-slide:hover .ms1-item03 i {
  background-image: url("../images/main/m_ico_service_on03.png");
}

.main-sl-row .main-sl-col .ms1 .swiper-slide:hover .ms1-item04 i {
  background-image: url("../images/main/m_ico_service_on04.png");
}

.main-sl-row .main-sl-col .ms1 .swiper-slide:hover .ms-item-ti {
  color: #fff;
  font-weight: bold;
}

.main-sl-row .main-sl-col .ms1 .swiper-slide:hover i {
  background-color: #fff;
  border: 2px solid #2e9f55;
}

@media (max-width: 1440px) {
  .main-sl-row .main-sl-col .ms1-info {
    font-size: 20px;
  }
  .main-sl-row .main-sl-col .ms1-info span {
    font-size: 14px;
  }
  .main-sl-row .main-sl-col .ms1 .ms-item-ti {
    font-size: 16px;
  }
}
@media (max-width: 1000px) {
  .main-sl-row .main-sl-col .ms1 {
    background: transparent;
    height: auto;
    padding: 0;
  }
  .main-sl-row .main-sl-col .ms1-head {
    display: none;
  }
  .main-sl-row .main-sl-col .ms1 .swiper-wrapper {
    height: 365px;
  }
  .main-sl-row .main-sl-col .ms1 .swiper-slide {
    height: calc((100% - 12px) / 2) !important;
    background: #135784 url("../images/main/ms1_bg.png") center bottom/1000px auto no-repeat;
    border-radius: 16px;
    border-left: none;
    padding: 0 20px;
  }
  .main-sl-row .main-sl-col .ms1 .swiper-pagination {
    display: block;
    bottom: -24px;
  }
  .main-sl-row .main-sl-col .ms1 .swiper-pagination-bullet {
    background: #135784;
  }
  .main-sl-row .main-sl-col .ms1 .ms-item-ti {
    display: none;
  }
  .main-sl-row .main-sl-col .ms1 i {
    display: block;
    width: 70px;
    height: 70px;
    margin: 17px auto 9px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
  }
  .main-sl-row .main-sl-col .ms1 .ms-item-ti-mobile {
    display: block;
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
  }
  .main-sl-row .main-sl-col .ms1 .ms1-btn-wrap {
    display: flex;
    gap: 6px;
    align-items: center;
  }
  .main-sl-row .main-sl-col .ms1 .ms1-btn-wrap button {
    width: 50%;
  }
  .main-sl-row .main-sl-col .ms1 .ms1-btn-wrap button + button {
    margin-top: 0px;
  }
}
.main-sl-row .main-sl-col .ms2 .slide-Customized02 .swiper-slide > a {
  display: block;
  padding-top: 30px;
  height: 140px;
  border: 1px solid #c0e3ca;
  text-align: center;
  background: #f5faf7;
  border-radius: 24px;
}

.main-sl-row .main-sl-col .ms2 .slide-Customized02 .swiper-slide > a i {
  display: block;
  width: 48px;
  height: 48px;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto 15px;
  background-color: #d5ecdc;
  border-radius: 16px;
}

.main-sl-row .main-sl-col .ms2 .slide-Customized02 .swiper-slide > a span {
  font-size: 16px;
  color: #616161;
  transition: all ease 0.3s;
}

.main-sl-row .main-sl-col .ms2 .slide-Customized02 .swiper-slide:hover i {
  border: 2px solid #2da34f;
}

.main-sl-row .main-sl-col .ms2 .slide-Customized02 .swiper-slide:hover span {
  color: #2da34f;
}

.main-sl-row .main-sl-col .ms2 .slide-Customized02 .swiper-slide.disabled {
  filter: grayscale(1);
  opacity: 0.7;
}

.main-sl-row .main-sl-col .ms2 .slide-Customized02 .swiper-slide.disabled a {
  cursor: default;
}

.main-sl-row .main-sl-col .ms2-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.main-sl-row .main-sl-col .ms2-head h2 {
  font-size: 24px;
  line-height: 1;
}

.main-sl-row .main-sl-col .ms2-item01 i {
  background-image: url("../images/main/m_ico_service02_01.png");
}

.main-sl-row .main-sl-col .ms2-item02 i {
  background-image: url("../images/main/m_ico_service02_02.png");
}

.main-sl-row .main-sl-col .ms2-item03 i {
  background-image: url("../images/main/m_ico_service02_03.png");
}

.main-sl-row .main-sl-col .ms2-item04 i {
  background-image: url("../images/main/m_ico_service02_04.png");
}

@media (max-width: 1000px) {
  .main-sl-row .main-sl-col .ms2 .slide-Customized02 .swiper-wrapper {
    height: 292px;
  }
  .main-sl-row .main-sl-col .ms2 .slide-Customized02 .swiper-slide {
    height: calc((100% - 12px) / 2) !important;
  }
  .main-sl-row .main-sl-col .ms2 .slide-Customized02 .swiper-slide > a {
    padding-top: 15px;
  }
  .main-sl-row .main-sl-col .ms2 .slide-Customized02 .swiper-slide > a i {
    display: block;
    width: 70px;
    height: 70px;
    margin: 0 auto 10px;
  }
  .main-sl-row .main-sl-col .ms2-head {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 20px;
  }
  .main-sl-row .main-sl-col .ms2-head h2 {
    font-size: 22.5px;
    line-height: 1;
  }
  .main-sl-row .main-sl-col .ms2-head .slide--control {
    display: block;
  }
  .main-sl-row .main-sl-col .ms2-head .slide--control .btn-slide-prev {
    position: absolute;
    left: 0;
    top: 0;
  }
  .main-sl-row .main-sl-col .ms2-head .slide--control .btn-slide-autoplay {
    display: none !important;
  }
  .main-sl-row .main-sl-col .ms2-head .slide--control .btn-slide-next {
    position: absolute;
    right: 0;
    top: 0;
  }
}
.main-sl-row .main-sl-col .ms3 {
  background: #fafafa;
  border: 1px solid #e5e5e5;
  height: 282px;
  border-radius: 24px;
  padding: 35px;
}

.main-sl-row .main-sl-col .ms3-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 16px;
  padding-bottom: 35px;
  border-bottom: 1px solid #e5e5e5;
}

.main-sl-row .main-sl-col .ms3-head p {
  font-size: 24px;
}

.main-sl-row .main-sl-col .ms3-head p strong {
  color: #135784;
}

.main-sl-row .main-sl-col .ms3-head button {
  padding: 8px 40px 8px 13px;
  background-color: #fff;
  background-image: url("../images/main/ico_logout.png");
  background-position: right 12px center;
  background-repeat: no-repeat;
  color: #616161;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
}

.main-sl-row .main-sl-col .ms3-head.ms3-head-login button {
  background-image: url("../images/main/ico_login.png");
}

.main-sl-row .main-sl-col .ms3-list ul {
  display: flex;
}

.main-sl-row .main-sl-col .ms3-list ul li {
  width: 25%;
  text-align: center;
}

.main-sl-row .main-sl-col .ms3-list ul li a {
  display: block;
}

.main-sl-row .main-sl-col .ms3-list ul li a:hover span {
  font-weight: bold;
}

.main-sl-row .main-sl-col .ms3-list ul li a i {
  display: block;
  width: 90px;
  height: 90px;
  background-repeat: no-repeat;
  background-position: center;
  margin: auto;
}

.main-sl-row .main-sl-col .ms3-list ul li.disabled {
  filter: grayscale(1);
  opacity: 0.4;
  cursor: default;
}

.main-sl-row .main-sl-col .ms3-item01 i {
  background-image: url("../images/main/m_ico_service03_01.png");
}

.main-sl-row .main-sl-col .ms3-item02 i {
  background-image: url("../images/main/m_ico_service03_02.png");
}

.main-sl-row .main-sl-col .ms3-item03 i {
  background-image: url("../images/main/icon_apply-list.png");
}

.main-sl-row .main-sl-col .ms3-item04 i {
  background-image: url("../images/main/m_ico_service03_04.png");
}

@media (max-width: 1000px) {
  .main-sl-row .main-sl-col .ms3 {
    display: none;
  }
}
.main-sl-row .main-sl-col .ms4 {
  position: relative;
  height: 282px;
}

@media (max-width: 760px) {
  .main-sl-row .main-sl-col .ms4 {
    height: auto;
  }
}
.main-sl-row .main-sl-col .ms4 .slide-Customized03 {
  border-radius: 24px;
}

.main-sl-row .main-sl-col .ms4 .slide--control2 {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  z-index: 10;
  width: 318px;
  height: 44px;
  background: rgba(64, 78, 87, 0.9);
  border-radius: 0 24px 0 24px;
  padding: 0 30px;
  color: #fff;
  font-weight: normal;
  font-size: 16px;
}

.main-sl-row .main-sl-col .ms4 .slide--control2 p {
  margin-right: 45px;
}

.main-sl-row .main-sl-col .ms4 .slide--control2 .swiper-pagination2 {
  width: auto;
  margin-left: 15px;
}

.main-sl-row .main-sl-col .ms4 .slide--control2 .swiper-pagination2 .swiper-pagination-current {
  color: #ed691b;
}

.main-sl-row .main-sl-col .ms4 .slide--control2 button {
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 0;
}

.main-sl-row .main-sl-col .ms4 .slide--control2 .btn-slide-prev2 {
  background-image: url("../images/main/ico_arrow_left2.png");
}

.main-sl-row .main-sl-col .ms4 .slide--control2 .btn-button-autplay2 {
  background-image: url("../images/main/ico_arrow_stop2.png");
  margin: 0 15px;
}

.main-sl-row .main-sl-col .ms4 .slide--control2 .btn-slide-next2 {
  background-image: url("../images/main/ico_arrow_right2.png");
}

.main-sl-row .main-sl-col .ms4 .swiper .swiper-slide > div, .main-sl-row .main-sl-col .ms4 .swiper .swiper-slide .slide-item {
  display: block;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  font-size: 0;
  height: 282px;
}

@media (max-width: 760px) {
  .main-sl-row .main-sl-col .ms4 .swiper .swiper-slide > div, .main-sl-row .main-sl-col .ms4 .swiper .swiper-slide .slide-item {
    height: auto;
    padding-bottom: 39.8305084746%;
  }
}
@media (max-width: 1000px) {
  .main-sl-row .main-sl-col .ms4 .slide--control2 {
    justify-content: center;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    width: 73px;
    height: 22px;
    border-radius: 11px;
    padding: 0;
  }
  .main-sl-row .main-sl-col .ms4 .slide--control2 p {
    display: none;
  }
  .main-sl-row .main-sl-col .ms4 .slide--control2 .swiper-pagination2 {
    width: auto;
    font-size: 10px;
    margin-left: 7px;
  }
  .main-sl-row .main-sl-col .ms4 .slide--control2 .swiper-pagination2 .swiper-pagination-current {
    color: #ed691b;
  }
  .main-sl-row .main-sl-col .ms4 .slide--control2 button {
    width: 9px;
    height: 14px;
    background-repeat: no-repeat;
    background-position: center;
    font-size: 0;
  }
  .main-sl-row .main-sl-col .ms4 .slide--control2 button.btn-slide-prev2 {
    display: none;
  }
  .main-sl-row .main-sl-col .ms4 .slide--control2 button.btn-button-autplay2 {
    margin: 0 7px;
  }
  .main-sl-row .main-sl-col .ms4 .slide--control2 button.btn-slide-next2 {
    display: none;
  }
}
.row-slide .ms5 {
  margin-bottom: 24px;
}

.row-slide .ms5-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.row-slide .ms5-head h2 {
  font-size: 24px;
}

.row-slide .ms5-head .slide--control button {
  height: 37px;
  width: 37px;
}

.row-slide .ms5-head .slide--control .more-btn {
  height: 37px;
  padding: 0 15px 0 40px;
  border: 1px solid #e4e4e5;
  border-radius: 18px;
  line-height: 37px;
  font-size: 16px;
  color: #616161;
  background-image: url("../images/main/ico_more.png");
  background-repeat: no-repeat;
  background-position: 17px center;
}

.row-slide .ms5 .swiper .swiper-slide a {
  position: relative;
  height: 220px;
  display: block;
  padding: 35px;
  background: #fafafa;
  border: 1px solid #b8ccda;
  border-radius: 24px;
}

.row-slide .ms5 .swiper .swiper-slide a .ms-s-data {
  font-size: 14px;
  color: #9e9e9e;
  margin-bottom: 12px;
}

.row-slide .ms5 .swiper .swiper-slide a .ms-s-ti {
  font-size: 18px;
  color: #222222;
  margin-bottom: 14px;
  font-weight: normal;
  line-height: 1.25em;
  height: 2.5em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  height: 2.5em;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}

.row-slide .ms5 .swiper .swiper-slide a .ms-s-txt {
  font-size: 16px;
  line-height: 1.35em;
  color: #616161;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  height: 4.05em;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  overflow: hidden;
}

.row-slide .ms5 .swiper .swiper-slide a .ms-s-new {
  position: absolute;
  right: -1px;
  top: -1px;
  width: 104px;
  height: 28px;
  line-height: 28px;
  font-size: 16px;
  text-align: center;
  background: #ed691b;
  color: #fff;
  border-radius: 0 24px 0 24px;
}

@media (max-width: 1000px) {
  .row-slide .ms5 {
    margin-bottom: 41px;
  }
  .row-slide .ms5-head {
    justify-content: center;
  }
  .row-slide .ms5-head h2 {
    font-size: 22.5px;
  }
  .row-slide .ms5-head .slide--control {
    display: none;
  }
  .row-slide .ms5 .swiper {
    width: 80%;
    margin-left: 0;
    overflow: visible;
  }
  .row-slide .ms5 .swiper .swiper-slide a {
    position: relative;
    height: 220px;
    display: block;
    padding: 35px;
    background: #fafafa;
    border: 1px solid #b8ccda;
    border-radius: 24px;
  }
  .row-slide .ms5 .swiper .swiper-slide a .ms-s-data {
    font-size: 14px;
    color: #9e9e9e;
    margin-bottom: 12px;
  }
  .row-slide .ms5 .swiper .swiper-slide a .ms-s-ti {
    font-size: 18px;
    color: #222222;
    margin-bottom: 14px;
    font-weight: normal;
  }
  .row-slide .ms5 .swiper .swiper-slide a .ms-s-txt {
    font-size: 16px;
    color: #616161;
  }
  .row-slide .ms5 .swiper .swiper-slide a .ms-s-new {
    position: absolute;
    right: -1px;
    top: -1px;
    width: 104px;
    height: 28px;
    line-height: 28px;
    font-size: 16px;
    text-align: center;
    background: #ed691b;
    color: #fff;
    border-radius: 0 24px 0 24px;
  }
}
.ms_wrap {
  position: relative;
  z-index: 10;
  background: #d0dde6;
}

.ms_wrap .row-slide {
  max-width: 1440px;
  margin: auto;
}

.ms_wrap .ms6 {
  padding: 24px 0 34px;
}

.ms_wrap .ms6-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.ms_wrap .ms6-head h2 {
  font-size: 24px;
}

.ms_wrap .ms6-head .slide--control button {
  height: 37px;
  width: 37px;
}

.ms_wrap .ms6-head .slide--control .more-btn {
  height: 37px;
  padding: 0 15px 0 40px;
  border: 1px solid #e4e4e5;
  background-color: #fff;
  border-radius: 18px;
  line-height: 37px;
  font-size: 16px;
  color: #616161;
  background-image: url("../images/main/ico_more.png");
  background-repeat: no-repeat;
  background-position: 17px center;
}

@media (max-width: 760px) {
  .ms_wrap .ms6 .swiper {
    width: 70%;
    overflow: visible;
  }
}
.ms_wrap .ms6 .swiper .swiper-wrapper {
  align-items: stretch !important;
}

.ms_wrap .ms6 .swiper .swiper-slide {
  height: auto;
}

.ms_wrap .ms6 .swiper a {
  display: block;
  background: #fff;
  border-radius: 24px;
  height: 100%;
}

.ms_wrap .ms6 .swiper a .ms-s-img {
  height: 192px;
  background-position: center;
  background-size: 100% 100%;
  font-size: 0;
  border-radius: 24px;
}

@media (max-width: 1000px) {
  .ms_wrap .ms6 .swiper a .ms-s-img {
    height: auto;
    padding-bottom: 56.1403508772%;
  }
}
.ms_wrap .ms6 .swiper a .ms-s-td {
  padding: 24px 30px;
}

.ms_wrap .ms6 .swiper a .ms-s-ti {
  font-size: 18px;
  color: #222222;
  font-weight: normal;
  margin-bottom: 24px;
  line-height: 1.25em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  height: 2.5em;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}

.ms_wrap .ms6 .swiper a .ms-s-data {
  font-size: 14px;
  color: #135784;
  line-height: 1;
}

@media (max-width: 1000px) {
  .ms_wrap .ms6 {
    padding: 24px 12px;
    padding-bottom: 100px;
  }
  .ms_wrap .ms6 .ms6-head {
    justify-content: center;
  }
  .ms_wrap .ms6 .slide--control {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .ms_wrap .ms6 .slide--control .btn-slide-prev,
  .ms_wrap .ms6 .slide--control .btn-slide-next {
    display: none;
  }
  .ms_wrap .ms6 .slide--control .more-btn {
    width: 40%;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    background: none;
    border: 1px solid #000000;
    border-radius: 0px;
    height: 40px;
    font-size: 13px;
    line-height: 38px;
    border-radius: 20px;
  }
  .ms_wrap .swiper .swiper-slide-active:last-child {
    width: 100%;
  }
}
.slide--control {
  display: flex;
  gap: 4px;
}

.slide--control > button {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 0;
  background-color: #fff;
  border: 1px solid #e4e4e5;
}

.slide--control .btn-slide-prev {
  background-image: url("../images/main/ico_arrow_left.png");
}

.slide--control .btn-slide-autoplay {
  background-image: url("../images/main/ico_arrow_stop.png");
}

.slide--control .btn-slide-next {
  background-image: url("../images/main/ico_arrow_right.png");
}

.com-search {
  height: 64px;
}

.noticemodal-wrap {
  position: absolute;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
}

@media (max-width: 760px) {
  .noticemodal-wrap {
    position: fixed;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
  }
}
.noticemodal {
  display: flex;
  flex-direction: column;
  position: absolute;
  box-shadow: 0px 5px 11px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  border-radius: 16px;
  display: none;
}

.noticemodal.noticemodal-active {
  display: flex;
}

.noticemodal.noticemodal-emergency {
  border: 5px solid #fc5454;
  border-radius: 25px;
}

@media (max-width: 760px) {
  .noticemodal.noticemodal-emergency {
    border-radius: 12px;
    min-width: auto !important;
  }
}
.noticemodal.noticemodal-emergency .notciemodal-header {
  color: #d22c2c;
  font-weight: 600;
}

@media (max-width: 760px) {
  .noticemodal {
    border-radius: 12px;
    left: 10px !important;
    right: 10px !important;
    top: 10px !important;
    bottom: auto !important;
    height: auto !important;
    margin: auto !important;
    max-width: 350px !important;
    max-height: calc(100vh - 40px) !important;
  }
}
.noticemodal .noticemodal_container {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.noticemodal .noticemodal-image,
.noticemodal .noticemodal-text {
  background: #fff;
  border-radius: 16px;
  position: relative;
  overflow-y: auto;
  z-index: 10;
  height: 100%;
  flex: 1;
  order: 1;
}

.noticemodal .noticemodal-image .noticemodal-text_btns,
.noticemodal .noticemodal-text .noticemodal-text_btns {
  bottom: 0;
  margin-top: 20px;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.noticemodal .noticemodal-image .noticemodal-text_btns > *,
.noticemodal .noticemodal-text .noticemodal-text_btns > * {
  width: 50%;
  max-width: 200px;
  flex: 1;
}

.noticemodal .noticemodal-image .noticemodal-text_btns.op_sticky,
.noticemodal .noticemodal-text .noticemodal-text_btns.op_sticky {
  position: sticky;
  bottom: -10px;
}

@media (max-width: 760px) {
  .noticemodal .noticemodal-image,
  .noticemodal .noticemodal-text {
    border-radius: 8px;
  }
}
.noticemodal .notciemodal-header {
  background: #fff;
  border: 1px solid #DBDBDB;
  border-bottom: 0;
  padding: 15px 24px;
  border-radius: 16px 16px 0 0;
  font-weight: normal;
  line-height: 1.2em;
}

@media (max-width: 760px) {
  .noticemodal .notciemodal-header {
    padding: 12px;
    border-radius: 8px 8px 0 0;
  }
}
.noticemodal .notciemodal-header + .noticemodal-image,
.noticemodal .notciemodal-header + .noticemodal-text {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.noticemodal .noticemodal-image a {
  display: block;
}

.noticemodal .noticemodal-image img {
  max-width: none;
  width: 100%;
}

.noticemodal .noticemodal-text {
  padding: 24px;
  font-size: 14px;
  border: 1px solid #DBDBDB;
}

@media (max-width: 760px) {
  .noticemodal .noticemodal-text {
    padding: 12px;
  }
}
.noticemodal .noticemodal_footer {
  order: 5;
  z-index: 1;
  display: flex;
  height: 56px;
  flex: 0 0 56px;
  padding: 0 24px;
  padding-top: 16px;
  margin-top: -16px;
  border-radius: 0 0 16px 16px;
  background: #F3F3F3;
}

@media (max-width: 760px) {
  .noticemodal .noticemodal_footer {
    height: 38px;
    flex: 0 0 38px;
    padding: 0 12px;
    padding-top: 8px;
    margin-top: -8px;
    border-radius: 0 0 8px 8px;
  }
}
.noticemodal .noticemodal_btn-onday {
  order: 1;
}

.noticemodal .noticemodal_btn-close {
  margin-left: auto;
  margin-right: 0;
  order: 2;
}

.noticemodal-ani-close {
  animation: aniClose 0.25s;
}

@keyframes aniClose {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateY(40px);
    opacity: 0;
  }
}
.swiper-button-disabled {
  opacity: 0.5;
  background-color: #f7f7f7 !important;
  cursor: default;
}

/* 24.06.21 */
.ms3{
  position: relative;
}

.ms3 .links{
  position: absolute;
  right: -10px;
  transform: translateX(100%);
  top: 0;
  z-index: 2;
}
.ms3 .links a{
  display: block;
  width: 80px;
  height: 80px;
  background: url("../images/main/links-lbl.png");
  font-size: 0;
  transition: background 500ms;
}
.ms3 .links a:hover,
.ms3 .links a:focus{
  background: url("../images/main/links-lbl-hover.png");
}

@media (max-width: 1000px) {
  .ms3 .links{
    display: none;
  }
}

