:root {
  --gray1: #f2f2f2;
  --gray2: #e6e6e6;
  --gray3: #dadada;
  --gray4: #7e7e7e;
  --gray5: #454545;

  --black1: #424242;
  --black2: #343434;
  --black3: #222222;
  --black4: #171717;

  /* logo Blue Color */
  --blue1: #daeffa;
  --blue2: #00cfd6;
  --blue3: #008cd5;
  /* Main Color */
  --blue4: #0048d6;
  --blue5: #3abbff;

  /* Point Color */
  --green1: #00d695;
  --red1: #e93a0f;
}

html,
body {
  max-width: 100%;
  /* overflow-x: hidden; */
  /* overflow-y: auto; */
}

body,
div,
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
form,
button,
p {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Lexend', "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Noto Serif KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif, serif;
  font-size: 18px;
  color: #424242;
  line-height: 1.4;
  font-weight: 400;
  background-color: #fff;
  word-break: keep-all;
  word-wrap: break-word;
}

body.hidden-scrolling {
  overflow-y: hidden;
}

img,
fieldset,
iframe {
  border: 0 none;
  padding: 0;
}

img {
  vertical-align: middle;
}

input,
select,
button {
  font-family: -apple-system, BlinkMacSystemFont, 'Lexend', "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif, serif;
  vertical-align: middle;
}

input {
  padding: 0.4375rem;
}

address {
  font-style: normal;
}

label,
button {
  cursor: pointer;
  vertical-align: middle;
}

button {
  border: none;
  background: none;
}

table {
  /* width: 100%; */
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1rem;
}

a {
  text-decoration: none;
  color: #424242;
}

a:hover {
  text-decoration: none;
}

th {
  text-align: center;
}

ul,
li {
  list-style: none;
}

* {
  box-sizing: border-box;
}

.wrapper {
  position: relative;
}

.logo,
.logo_1 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  width: 18.125rem;
  transition: all 0.3s ease-in;
}

.logo_1 {
  display: none;
}

.navbar_container {
  width: 100%;
  background: rgba(0, 0, 0, .3);
  height: 80px;
  /* padding: 0 20px; */
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  position: fixed;
  top: 0;
  z-index: 100;
  transition: all .3s;
}

.navbar {
  width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .3s;
  height: 80px;
  /* border: 1px solid red; */
}

.menu {
  display: flex;
  gap: 20px;
}

.menu>li {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 30px;
  cursor: pointer;
}

.menu>li.no-padding {
  padding-right: 0;
}

.menu-item-has-children a {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  transition: all .3s ease;
}

.menu li a:hover,
.menu li a.nover {
  color: var(--blue5);
}

.menu li:hover .sub-menu {
  transform: translateY(0);
  opacity: .9;
  visibility: visible;
}

.menu>li.menu-item-has-children.active::after {
  transform: rotate(180deg);
}

.sub-menu {
  width: 170px;
  background: white;
  position: absolute;
  top: 70px;
  text-align: center;
  padding: 10px 20px;
  border-top: 3px solid var(--blue5);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: all .2s ease;
}

.sub-menu a {
  text-transform: capitalize;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #424242;
  display: block;
}

.sub-menu li {
  border-bottom: 1px solid #ccc;
  padding: 8px 0;
  width: 100%;
}

.sub-menu li:last-child {
  margin-bottom: 10px;
}

/* 토글 버튼 */
.toggle_btn {
  width: 25px;
  height: 40px;
  position: relative;
  cursor: pointer;
  display: none;
}

.toggle_btn span {
  display: block;
  content: '';
  background: #fff;
  width: 18px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.toggle_btn span::before,
.toggle_btn span::after {
  content: '';
  background: #fff;
  position: absolute;
  width: 25px;
  height: 2px;
}

.toggle_btn span::before {
  top: -8px;
}

.toggle_btn span::after {
  top: 8px;
}

.toggle_close {
  width: 35px;
  height: 35px;
  background-color: #ffffff;
  margin: 0 0 15px 15px;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: red;
  cursor: pointer;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease;
}

.menu-overlay.active {
  visibility: visible;
  opacity: 1;
}

.language {
  display: none;
}




/* Visual */
#visual {
  /* height: 910px; */
  position: relative;
  /* padding: 30px; */
  margin-bottom: 50px;
}

.visual_01 {
  width: 100%;
  height: 910px;
  padding: 50px;
  background: url('/images/visual01.jpg') center/cover no-repeat;
  transition: all .2s ease-in;
}

.visual_02 {
  width: 100%;
  height: 910px;
  padding: 50px;
  background: url('/images/visual02.jpg') center/cover no-repeat;
  transition: all .2s ease-in;
}

.visual_03 {
  width: 100%;
  height: 910px;
  padding: 50px;
  background: url('/images/visual03.jpg') center/cover no-repeat;
  transition: all .2s ease-in;
}

.visual_01 .visual-text {
  display: inline-block;
  position: relative;
  top: 48%;
  left: 35%;
  transform: translate(-50%, -50%);
  width: 50%;
  /* transform: translateY(calc(-50% + 35px)); */
  /* transform: translateY(-50%); */
}

.visual_02 .visual-text {
  display: inline-block;
  position: relative;
  text-align: center;
  top: 48%;
  left: 50%;
  width: 65%;
  transform: translate(-50%, -50%);
}

.visual_03 .visual-text {
  display: inline-block;
  position: relative;
  text-align: center;
  top: 48%;
  left: 50%;
  width: 65%;
  transform: translate(-50%, -50%);
}


.visual-text h1 {
  font-size: 3.5rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.9px;
  /* margin-bottom: 10px; */
}

.visual-text h2 {
  font-size: 3rem;
  color: var(--blue2);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.9px;
}

.visual-text p {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.9px;
}

/* Swiper */

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
  color: #969696;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
  color: #969696;
}


/* 비즈니스 */

#business {
  margin-bottom: 50px;
}

.business-title {
  margin: auto;
  text-align: center;
  margin-bottom: 1.875rem;
}

.business-title h1 {
  font-size: 3.125rem;
  font-weight: 700;
  color: var(--black4);
}

.business-title p {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--gray4);
}

.business-container {
  width: 1280px;
  margin: auto;
  display: flex;
  gap: 1.5625rem;
  /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: minmax(460px, auto); */
}

.business {
  width: 410px;
  height: 620px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.business .business-img {
  width: 410px;
  height: 620px;
  object-fit: cover;
  cursor: pointer;
  transition: all 0.3s;
}

.business:hover .business-img {
  transform: scale(1.05);
}

.business .business-text {
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 100px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
}

.business-text h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
}

.business-text h2 span {
  color: var(--blue3);
}


/* 중간 영역 */
#middle {
  width: 100%;
  height: 18.75rem;
  background: url(/images/main-middle-bg.jpg) no-repeat center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 3.125rem;
  color: #fff;
  text-align: center;
  padding: 20px;
}

#middle h1 {
  font-size: 2.625rem;
  font-weight: 500;
}

#middle p {
  font-size: 1.125rem;
  font-weight: 300;
}



/* 공지사항 */
#board {
  width: 1280px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto 50px;
  /* margin: 170px auto 50px; */
}

.board-notice {
  width: 640px;
  border: 1px solid var(--gray3);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.board-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.board-title h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--black3);
}

.board-more {
  width: 30px;
  height: 30px;
  border: 1px solid var(--gray3);
  text-align: center;
  line-height: 24px;
  font-size: 1.5rem;
  font-weight: 300;
  cursor: pointer;
}

.board-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notice {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.notice p {
  font-size: 1rem;
  color: var(--black2);
  font-weight: 400;
  width: 480px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
}

.notice span {
  width: 90px;
  font-size: 0.875rem;
  color: var(--gray4);
  font-weight: 300;
}

.notice .noti {
  width: 50px;
  height: 25px;
  border: 1px solid var(--blue3);
  display: inline-block;
  text-align: center;
  border-radius: 25px;
  font-size: 0.875rem;
  line-height: 25px;
  color: var(--blue3);
  font-style: normal;
  font-weight: 500;
  margin-right: 10px;
}


.board-banner {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.banner {
  width: 18.75rem;
  height: 8.125rem;
  border: 1px solid var(--gray3);
  display: flex;
  align-items: center;
  /* justify-content: center; */
  padding: 40px 30px;
  gap: 1.25rem;
  cursor: pointer;
  background: url(/images/logo-ico.png) no-repeat right 0.625rem bottom 0.625rem;
  background-size: 6.25rem;
}

.banner i {
  font-size: 2.875rem;
  color: var(--blue3);
  transition: all .2s;
}

.banner:hover i {
  transform: scale(1.1);
}


.banner span {
  font-size: 1.25rem;
  color: var(--black4);
  font-weight: 600;
  transition: all .2s ease-in;
}

.banner:hover span {
  color: var(--blue3);
}

.banner span strong {
  color: var(--red2);
}

.banner-text {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}

.banner-text p {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--gray4);
}

/* 포토갤러리 */

#photo {
  width: 1280px;
  margin: 0 auto 50px;
}

.photo-title h1 {
  font-size: 3.125rem;
  font-weight: 700;
  color: var(--black4);
  margin-bottom: 10px;
  text-align: center;
}

.photo-title p {
  font-size: 1.125rem;
  color: var(--gray4);
  font-weight: 300;
  margin-bottom: 50px;
  text-align: center;
  margin-bottom: 30px;
}

.photo-container {
  width: 1280px;
  /* height: 310px; */
  padding: 30px;
  border: 1px solid var(--gray3);
  border-radius: 10px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-auto-rows: minmax(250px, auto);
}

.photo-img {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  margin-bottom: 0.625rem;
}

.photo-img img {
  width: 100%;
  /* min-height: 220px; */
  border-radius: 5px;
  object-fit: cover;
  transition: all .3s;
}

.photo-img:hover img {
  transform: scale(1.1);
}

.photo-text {
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  /* width: 290px; */
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/* 배너 */
#banner {
  width: 1280px;
  margin: 0 auto 70px;
}

.banner-container {
  width: 100%;
  display: flex;
  align-items: center;
  /* gap: 8px; */
}

.banner-logo {
  height: 40px;
  overflow: hidden;
  border: 1px solid #cccccc;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  text-align: center;
}

/* .banner-logo .swiper-slide {
  width: 176px !important;
} */

.banner-logo img {
  max-width: 100%;
  /* width: 176px; */
  height: 40px;
  object-fit: contain;
}


/* 푸터 */
#footer {
  width: 100%;
  background-color: var(--gray5);
  padding: 40px 0;
}

.footer-container {
  width: 1280px;
  margin: auto;
  display: flex;
  gap: 40px;
}

.footer-logo img {
  width: 18.125rem;
  transition: all 1.5s ease-in;
}

.footer address {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--gray3);
}


.footer .footer-copy {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--gray4);
}

.footer-text {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-sns {
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-sns li i {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  color: #fff;
  line-height: 31px !important;
  text-align: center;
  font-size: 1.125rem;
}

.xi-facebook {
  background-color: #3a5ca9;
}

.xi-youtube-play {
  background-color: #de1b1b;
}

.xi-instagram {
  background: linear-gradient(180deg, #7444cb, #f34c57, #ffca54);
  font-size: 1.25rem !important;
}

.xi-kakaotalk {
  background-color: #f9e000;
  color: #3b1c1c !important;
  font-size: 1.5rem !important;
}





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

  .navbar {
    width: 100%;
  }

  .navbar_container {
    height: 50px;
  }

  .navbar {
    padding: 0 20px;
    height: 50px;
  }


  .logo img {
    width: 13.75rem;
  }

  .menu {
    position: fixed;
    right: -280px;
    top: 0;
    width: 280px;
    height: 100%;
    overflow-y: auto;
    background-color: #222;
    display: block;
    z-index: 1000;
    padding: 15px 0;
    transition: all .5s ease;
    /* visibility: hidden; */
  }

  .menu.open {
    visibility: visible;
    right: 0px;
  }

  .menu>li {
    padding: 12px 20px;
    border-bottom: 1px solid #313131;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
  }

  .menu>li:hover::after {
    color: #6683c6;
  }

  .menu>li::after {
    content: '\e943';
    color: #f4f4f4;
    font-family: 'xeicon';
    transition: .4s;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    pointer-events: none;
  }

  .menu a {
    font-size: 1.125rem;
    color: #fff;
    width: 100%;
  }

  .menu>li:last-child:after {
    /* display: none; */
  }


  .toggle_btn {
    display: block;
  }

  .toggle_close {
    display: flex;
  }

  .sub-menu {
    position: relative;
    opacity: 1;
    visibility: visible;
    border: none;
    width: 100%;
    top: 0px;
    text-align: left;
    box-shadow: none;
    transform: translateY(0px);
    background: transparent;
    padding: 0;
    transition: none;
    max-height: 0;
    margin-top: 10px;
    overflow: hidden;
    transition: all .5s ease;
  }

  .sub-menu>li>a {
    color: #d3d3d3;
    font-size: 15px;
    font-weight: 300;
    display: block;
  }

  .sub-menu li {
    border-bottom: 1px solid #313131;
  }

  .language .active {
    display: block;
  }

  .xi-devices {
    font-size: 100px;
    right: -10px;
  }

  #visual {
    height: 500px;
    /* position: relative; */
    /* padding-top: 50px; */
  }

  .visual_01,
  .visual_02,
  .visual_03 {
    height: 500px;
  }

  .visual_01 .visual_text,
  .visual_02 .visual_text,
  .visual_03 .visual_text {
    top: calc(50% + 52px);
    left: 50%;
    right: 50%;
    text-align: center;
    transform: translate(-50%, calc(-50% - 35px));
  }

  .business-container {
    width: 100%;
    padding: 10px;
  }

  .business {
    height: 460px;
  }

  .business .business-img {
    width: 100%;
    object-fit: cover;
  }

  #board {
    width: 100%;
    margin: 0 auto 40px;
    padding: 10px;
  }

  .board-notice {
    flex: 1;
  }

  .notice span {
    display: none;
  }


  #banner {
    width: 100%;
    padding: 10px;
  }

  .banner {
    flex: 1;
  }



  #photo {
    width: 100%;
    padding: 10px;
  }

  .photo-container {
    width: 100%;
    padding: 20px;
  }

  .photo-img {
    width: 100%;
  }

  .photo-img img {
    width: 100%;
  }

  .photono {
    display: none;
  }

  .footer-container {
    width: 100%;
    padding: 10px;
  }

  #right-menu {
    top: 430px;
    right: 5px;
  }

}

@media screen and (max-width: 1080px) {
  #board {
    flex-direction: column;
  }

  .notice span {
    display: block;
  }

  .board-notice {
    width: 100%;
  }

  .notice p {
    width: 100%;
  }

  .banner {
    min-width: 230px;
  }
}

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

  #footer {
    padding: 20px 0;
  }

  .footer-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .footer-text {
    text-align: center;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
  }
}

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

  html,
  body {
    font-size: 14px;
  }

  #visual {
    margin-bottom: 20px;
  }

  #visual .visual-text {
    width: 100%;
    top: 50%;
    left: 50%;
    padding: 20px;
    text-align: center;
  }

  .visual-text p {
    display: none;
  }

  .business-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .business {
    width: 100%;
  }

  #board {
    width: 100%;
  }

  .notice span {
    display: none;
  }

  .photo-container {
    padding: 10px;
  }

}

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

  html,
  body {
    font-size: 14px;
    word-break: break-all;
  }




  .banner {
    min-width: 180px;
    min-width: 160px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 0.625rem;
    background: none;
  }

  .banner i {
    font-size: 2.5rem;
  }


}

[data-scroll] {
  opacity: 0;
  will-change: transform, scale, opacity;
  transform: translateY(5rem) scale(0.93);
  transition: all .7s ease-out;
}

[data-scroll='in'] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

[data-scroll='out'] {
  opacity: 0;
}