@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@200;300;400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: 0px solid silver;
}

img {
  width: 100px;
}

body {
  font-family: 'Noto Serif KR', serif;
  font-size: 0.9rem;
  line-height: 1rem;
  color: #252525;
  letter-spacing: 0.1px;
}

h1 {
  font-size: 2rem;
  line-height: 2rem;
  color: #222;
  font-weight: 600;
}

h2 {
  font-size: 3rem;
  line-height: 3.6rem;
  font-weight: 700;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.2rem;
}

h4 {
  font-size: 1.6rem;
  line-height: 1.6rem;
}

h5 {
  font-size: 0.7rem;
  line-height: 0.7rem;
}

a:link {
  color: #252525;
  text-decoration: none;
}

a:visited {
  color: #252525;
}

a:hover {
}

a:active {
}

strong {
  display: block;
  font-size: 1.5rem;
  line-height: 2.4rem;
  font-weight: 300;
}

button {
  height: 50px;
  font-family: 'Noto Sans Kr', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-bottom: 1px solid #aaa;
  background: transparent;
  transition: 0.3s;
  outline: none;
}

button span img {
  width: 20px;
}

button:hover {
  cursor: pointer;
}

ul {
  list-style-type: none;
}

.scrolls {
  height: 1200px;
  background: #666;
}


/* start */


.nav-bar {
  width: 100%;
  border-bottom: 1px solid #eee;
  position: fixed;
  top:0;
  left:0;
  z-index: 101;
  background: #fff;
}

.nav-bar> div {
  width: 90%;
  height: 60px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-bar> div> :nth-child(1),
.nav-bar> div> :nth-child(3) {
  width: 140px;
}

.nav-bar> div> :nth-child(1) img {
  width: 120px;
  opacity: 0.8;
}

.nav-bar> div> :nth-child(2) {
}

.nav-bar> div> :nth-child(3) {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 60px;
  text-align: right;
}

.nav-bar> div> :nth-child(3)> :nth-child(1) {
  width: 24px;
  height: 24px;
  margin-right: 16px;
}

.nav-bar> div> :nth-child(3)> :nth-child(1) img {
  width: 24px;
}

.nav-bar> div> :nth-child(3)> :nth-child(2) {
  display: block;
  width: 24px;
  height: 22px;
}

.srch-box {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: 320px;
  padding-bottom: 60px;
  border-bottom: 1px solid #eee;
  z-index: 102;
  background: #fff;
  text-align: center;
  box-shadow: 0 5px 5px rgba(0,0,0,0.05);
  display: none;
}

.srch-box> :nth-child(1) {
  margin-top: 60px;
  margin-bottom: 40px;
  text-align: center;
}

.srch-box> :nth-child(1)>div {
  display: inline-block;
  width: 80%;
  max-width: 480px;
  height: 50px;
  position: relative;
}

.srch-box> :nth-child(1)> div input {
  width: 100%;
  height: 60px;
  padding-right: 50px;
  border-bottom: 2px solid #444;
  font-size: 1.4rem;
    font-family: 'Noto Serif KR', serif;
  font-weight: 400;
  outline: none;
}

.srch-box> :nth-child(1)> div input::placeholder {
  color: #aaa;
}

.gosrch {
  position: absolute;
  top: 0;
  right: 6px;
  border-bottom: none;
}

.srch-box> :nth-child(2) {
  display: inline-block;
  width: 80%;
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}

.srch-box> :nth-child(2)> div span {
  display: inline-block;
  padding: 5px 10px;
  margin-right: 2px;
  margin-bottom: 10px;
  border-radius: 30px;
  background: #444;
  color: #fff;
  font-family: 'Noto Sans Kr', sans-serif;
  font-size: 0.8rem;
  transition: .2s;
}

.srch-box> :nth-child(2)> div span:hover {
  background: #e6002d;
  cursor: pointer;
}

.closesrch {
  position: absolute;
  width: 60px;
  height: 60px;
  background: #ccc;
  border-radius: 30px;
  border: 1px solid #fff;
  top: 230px;
  left: 50%;
  transform: translate(-50%,0);
}

.closesrch:hover {
  background: #222;
}

.nav-bar> div> :nth-child(3)> :nth-child(2) span {
  display: block;
  width: 24px;
  height: 2px;
  margin-bottom: 7px;
  background: #666;
  transition: 0.2s;
}

.nav-btn-active span:nth-of-type(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-btn-active span:nth-of-type(2) {
  opacity: 0;
}

.nav-btn-active span:nth-of-type(3) {
  transform: translateY(-9px)rotate(-45deg);
}

.nav-bar> div> :nth-child(3) :last-child {
  margin: 0;
}

.gnb {
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  position: fixed;
  display: none;
  padding-top: 60px;
  top: 0;
  left: 0;
  z-index: 100;
  background: #fff;
}

.gnb-my {
  background-color: #f6f6f6;
}

.gnb-my section {
  display: block;
  height: 240px;
  padding: 50px 5%;
  background: url('../images/main/2-gnb-04-bg.jpg') no-repeat;
  background-size: cover;
  background-position: center center;
  }

.gnb-my p {
  font-size: 2rem;
  line-height: 3.2rem;
  font-weight: 200;
  letter-spacing: -2px;
}

.gnb-my section p::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 16px;
  background: #e6002d;
}

.gnb-bot {
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.gnb-bot a {
  display: block;
  width: 33.33%;
  height: 60px;
  font-family: 'Noto Sans Kr', sans-serif;
  position: relative;
}

.gnb-bot a::after {
  content: '';
  position: absolute;
  display: inline-block;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 1px;
  height: 50px;
  background: #ddd;
}

.gnb-bot> :last-child::after {
  display: none;
}

.gnb-bot a img {
  width: 30px;
  margin-bottom: 4px;
  opacity: .4;
  transition: .3s;
}

.gnb-bot a span {
  color: #aaa;
  transition: .3s;
}

.gnb-bot a:hover img {
  opacity: 1;
  transform: scale(1.2);
}

.gnb-bot a:hover span {
  color: #111;
  transition: .3s;
}

.gnb-menu {
  padding-top: 40px;
}

.gnb-menu> ul> li> a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 0 5%;
  border-bottom: 1px solid #eee;
  font-size: 1.4rem;
  line-height: 3.2rem;
  font-weight: 700;
  position: relative;
}

.gnb-menu> ul> li> a:hover::after {
  width: 100%;
}

.gnb-menu> ul> li> a::after {
  content: '';
  width: 0;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #e6002d;
  transition: .4s;
}

.gnb-menu> ul> li> a span {
  display: block;
  width: 24px;
  height: 24px;
  background: url('../images/main/2-gnb-05-catebtn-right.png') no-repeat;
  background-size: cover;
}

.gnb-menu> ul> li> ul {
  width: 100%;
  height: calc(100vh - 420px);
  background: #fff;
  position: fixed;
  top: 420px;
  right: -100%;
  z-index: 101;
  overflow-y: auto;
  transition: .3s;
  padding-bottom: 80px;
}

.gnb-menu> ul> li> ul li a {
  display: block;
  height: 60px;
  padding: 0 5%;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 1rem;
  line-height: 3.6rem;
  border-bottom: 1px solid #eee;
  position: relative;
}

.gnb-menu> ul> li> ul li a:hover::after {
  width: 100%;
}

.gnb-menu> ul> li> ul li a::after {
  content: '';
  width: 0;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #aaa;
  transition: .4s;
}

.gnb-menu> ul> li> ul> :nth-child(1) a::after {
  display: none;
}

.gnb-menu> ul> li> ul> :nth-child(1) {
  width: 100%;
  height: 60px;
  background: #eee;
}

.gnb-menu> ul> li> ul> :nth-child(1):hover {
  cursor: pointer;
}

.gnb-menu> ul> li> ul> :nth-child(1) a {
  display: inline;
  color: #888;
  font-size: 1.4rem;
  line-height: 3.4rem;
  font-weight: 700;
  align-items: center;
  font-family: 'Noto Serif KR', serif;
}

.gnb-menu> ul> li> ul> :nth-child(1) a::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url('../images/main/2-gnb-06-catebtn-back.png') no-repeat;
  background-size: cover;
  margin-right: 10px;
  line-height: 3.4rem;
  transform: translateY(4px);
  opacity: 0.8;
}


main {
  margin-top: 60px;
  position: relative;
}

.mousey {
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: (-50%,0);
  z-index: 20;
  width: 2px;
  height: 240px;
  border-radius: 25px;
  opacity: 0.75;
  box-sizing: content-box;
}

.scroller {
  width: 2px;
  height: 60px;
  background-color: #e6002d;
  animation-name: scroll;
  animation-duration: 1.6s;
  opacity: 0;
  animation-timing-function: cubic-bezier(.15,.41,.69,.94);
  animation-iteration-count: infinite;
}

@keyframes scroll {
  0% { opacity: 0; }
  70% { opacity: 1; }
  100% { transform: translateY(60px); opacity: 0;}
}

.mn-sl .swiper-slide-active> img {
  /*transform: scale(1.08);*/
}

/*
.mn-sl .swiper-slide-active img {
    animation-name: zoomin;
    animation-duration: 1s;
    animation-delay: .2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes zoomin {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}
*/

.mn-sl .swiper-slide-active small {
    animation-name: popup;
    animation-duration: .7s;
    animation-delay: .4s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.mn-sl .swiper-slide-active h2 {
    animation-name: popup;
    animation-duration: .7s;
    animation-delay: .5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.mn-sl .swiper-slide-active p {
    animation-name: popup;
    animation-duration: .7s;
    animation-delay: .6s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}


.mn-sl .swiper-slide-active button {
    animation-name: popup;
    animation-duration: .7s;
    animation-delay: .6s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes popup {
  0% { transform: translateX(-60px);opacity: 0; }
  100% { transform: translateX(0px); opacity: 1;}
}

@keyframes fadeinsmall {
  0% { opacity: 0; }
  100% { opacity: 1;}
}

.mn-sl {
  height: 800px;
  position: relative;
}

.mn-sl-fr-1 {
  font-family: 'Noto Sans KR', sans-serif;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  position: absolute;
  top: 190px;
  left: 5%;
  z-index: 11;
}

.mn-sl-fr-2 {
  font-family: 'Noto Sans KR', sans-serif;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  position: absolute;
  top: 190px;
  left: calc(5% + 94px);
  z-index: 11;
}

.mn-num-cv .fill-bg {
  font-family: 'Noto Sans KR', sans-serif;
  color: #fff;
  position: absolute;
  top: 198px;
  left: calc(5% + 24px);
  z-index: 11;
  width: 60px;
  height: 2px;
  background: rgba(256,256,256,0.5);
}

.mn-num-cv .fill-bg .fill {
  width: 20px;
  height: 100%;
  background: #e6002d;
  animation-name: fillit;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

@keyframes fillit {
  0% { opacity: 0; }
  50% { transform: translateX(0); opacity: 1; }
  100% { transform: translateX(40px); opacity: 0;}
}

.mn-sl .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 800px;
  position: relative;
}

.mn-sl .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(120%) contrast(95%);
  transition: 6s;
}

.mn-sl .swiper-wrapper .swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(105%) contrast(95%);
}

.mn-sl .swiper-wrapper .swiper-slide div {
  position: absolute;
  left: 5%;
  top: 250px;
  text-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.mn-sl .swiper-wrapper .swiper-slide div small {
  font-family: 'Noto Sans KR', sans-serif;
  display: inline-block;
  color: #fff;
  margin-bottom: 8px;
  font-size: 0.8rem;
  opacity: 0;
}

.mn-sl .swiper-wrapper .swiper-slide div h2 {
  margin-bottom: 24px;
  color: #fff;
  opacity: 0;
}

.mn-sl .swiper-wrapper .swiper-slide div p {
  margin-bottom: 42px;
  font-family: 'Noto Sans Kr', sans-serif;
  font-size: 1rem;
  line-height: 1.6rem;
  color: #fff;
  opacity: 0;
}

.mn-sl .swiper-wrapper .swiper-slide button {
  height: 50px;
  padding: 0 20px;
  color: #fff;
  font-family: 'Noto Sans Kr', sans-serif;
  letter-spacing: 2px;
  font-weight: 600;
  border: 1px solid #fff;
  border-radius: 40px;
  font-size: 0.8rem;
  opacity: 0;
  position: relative;
  text-transform: uppercase;
}

.mn-sl .swiper-wrapper .swiper-slide button:hover {
  background: #e6002d;
}


.mn-sl .swiper-wrapper .swiper-slide button img {
  margin-left: 10px;
  width: 20px;
  height: auto;
  vertical-align: middle;
}

.mn-sl .swiper-wrapper .swiper-slide button:hover::after {
  width: 100%;
}


/*
.mn-sl .swiper-wrapper .swiper-slide button::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 2px;
  background: #e6002d;
  transition: .3s;
}

.mn-sl .swiper-wrapper .swiper-slide button::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 50%;
  height: 2px;
  background: #e6002d;
  transition: .3s;
}
*/

/*
.mn-sl .swiper-button-prev,
.mn-sl .swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 60px;
  background: rgba(256,256,256,0.5);
  position: absolute;
  top: 640px;
  transition: .3s;
  outline: none;
}
*/

.mn-sl .swiper-button-prev,
.mn-sl .swiper-button-next {
  border-bottom: 1px solid #fff;
  position: absolute;
  top: 88%;
  transition: .3s;
  outline: none;
  color: #fff;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

/*
.mn-sl .swiper-button-prev:hover,
.mn-sl .swiper-button-next:hover {
  background: rgba(256,256,256,0.9);
}
*/

.mn-sl .swiper-button-prev:hover::after,
.mn-sl .swiper-button-next:hover::after {
}

/*
.mn-sl .swiper-button-prev {
  left: 5%;
}
.mn-sl .swiper-button-next {
  right: auto;
  left: calc(5% + 60px);
}
*/

.mn-sl .swiper-button-prev {
  left: -20px;
  padding: 20px 20px 10px 80px;
}

.mn-sl .swiper-button-prev:hover {
  transform: translateX(20px);
}

.mn-sl .swiper-button-next {
  right: -20px;
  padding: 20px 80px 10px 20px;
}

.mn-sl .swiper-button-next:hover {
  transform: translateX(-20px);
}

.mn-sl .swiper-button-prev::after,
.mn-sl .swiper-button-next::after {
  font-size: 1rem;
  color: #fff;
  opacity: .8;
  transition: .3s;
  display: none;
}

.mn-sl .swiper-button-next::after {
}

.mn-sl .swiper-button-next::after {
}

.mn-sl-pg-sl-cv2 {
  position: absolute;
  top: 248px;
  left: calc(5% + 24px);
  z-index: 15;
}

.mn-sl-pg-sl {
  width: 60px;
}

.mn-sl-pg-sl .swiper-slide {
  font-size: 0rem;
}

.mn-sl .swiper-pagination {
  height: 36px;
  position: absolute;
  top: 89%;
  left: 0;
  display: none;
}

.mn-sl .swiper-slide-duplicate div {
  /*display: none;*/
}

.mn-sl .swiper-pagination-bullet {
  width: 200px;
  height: 30px;
  border-radius: 0;
  color: white;
  background: transparent;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  top: auto;
  z-index: 9;
  border-bottom: 2px solid white;
  outline: none;
}

.ab {
  padding-top: 12rem;
  padding-bottom: 12rem;
  text-align: center;
}

.ab h1 {
  margin-bottom: 20px;
  text-align: center;
  color: #222;
}

.ab> strong {
  text-align: center;
  margin-bottom: 20px;
}

.ab-sl-cv {
  width: 90%;
  margin: 0 auto;
  position: relative;
}

.ab-sl {
  margin-bottom: 36px;
  text-align: left;
}

.ab-sl .swiper-slide {
  width: 100%;
  height: 520px;
}

.ab-sl .swiper-slide> :nth-child(1) {
  width: 100%;
  height: 300px;
  margin-bottom: 2rem;
  position: relative;
}

.ab-sl .swiper-slide> :nth-child(1)> img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(105%) contrast(90%);
}

.ab-sl .swiper-slide> :nth-child(1) div {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 0 0 10px rgba(0,0,0,0.12);
}

.ab-sl .swiper-slide> :nth-child(1) p {
  font-size: 8rem;
  line-height: 8rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
}

.ab-sl .swiper-slide> :nth-child(1) small {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.ab-sl .swiper-slide> :nth-child(2) {
  padding-bottom: 2rem;
}

.ab-sl .swiper-slide> :nth-child(2) small {
  display: block;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ccc;
  margin-bottom: 10px;
}

.ab-sl .swiper-slide> :nth-child(2) p {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  line-height: 1.8rem;
  font-weight: 700;
}

.ab-sl .swiper-slide> :nth-child(2) span {
  color: #666;
  font-family: 'Noto Sans KR', sans-serif;
  line-height: 1.4rem;
}

.ab-sl .swiper-pagination-bullet-active {
  background: #666;
}

.ab-sl-cv .swiper-button-prev,
.ab-sl-cv .swiper-button-next {
  position: absolute;
  top: 160px;
  outline: none;
}

.ab-sl-cv .swiper-button-prev::after,
.ab-sl-cv .swiper-button-next::after {
  color: #fff;
  font-size: 2rem;
}

.ab-sl-cv .swiper-button-prev {
  left: 2%;
}
.ab-sl-cv .swiper-button-next {
  right: 2%;
}

.ab> button {
  border-bottom: 1px solid #aaa;
  position: relative;
}

.ab> button:hover::after {
  width: 100%;
}

.ab> button::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: #e6002d;
  transition: .3s;
}

.gb {
  height: 600px;
  position: relative;
  overflow: hidden;
}

.gb:hover> img {
  transform: scale(1.1);
}

.gb> img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(90%) contrast(80%);
  transition: .6s;
}

.gb> video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(80%) contrast(100%) grayscale(.5);
  transition: .6s;
}

.gb div {
  position: absolute;
  top: 100px;
  left: 5%;
}

.gb div h1 {
  color: #fff;
  margin-bottom: 20px;
}

.gb div strong {
  margin-bottom: 40px;
  color: #fff;
}

.gb div p {
  font-family: 'Noto Sans KR', sans-serif;
  color: #fff;
  font-size: 1rem;
  line-height: 1.4rem;
  font-weight: 200;
  margin-bottom: 6rem;
}

.gb div button {
  color: #fff;
  border-bottom: 1px solid #fff;
  position: relative;
}

.gb div button:hover::after {
  width: 100%;
}

.gb div button::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: #e6002d;
  transition: .3s;
}

.gb div button img {
}

.br {
  padding-top: 12rem;
  text-align: center;
  position: relative;
  margin-bottom: 12rem;
}

.br-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 360px;
   background: linear-gradient(#ddd,#fff);
}

.br h1 {
  margin-bottom: 1rem;
}

.br strong {
  display: block;
  margin-bottom: 110px;
  position: relative;
}

.br strong::after {
  content: '';
  position: absolute;
  bottom: -4rem;
  left: 50%;
  background: #ccc;
  width: 1px;
  height: 40px;
  display: block;
}

.br-sl-cv {
  text-align: center;
  position: relative;
}

.br-sl {
  height: 440px;
}

.br-sl .swiper-slide> div img {
  width: 200px;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 5px rgba(0,0,0,0.3));
  transition: .3s;
}

.br-sl .swiper-slide> div img:hover {
  transform: translateY(8px);
  cursor: pointer;
}

.br-sl .swiper-slide h3 {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6rem;
  margin-bottom: 1rem;
}

.br-sl .swiper-slide p {

    font-family: 'Noto Sans KR', sans-serif;
    font-size: 1rem;
    color: #444;
    font-weight: 200;
    margin-bottom: 1rem;
}

.br-sl .swiper-slide button {
  position: relative;
}

.br-sl .swiper-slide button:hover::after {
  width: 100%;
}

.br-sl .swiper-slide button::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: #e6002d;
  transition: .3s;
}

.br-sl-cv .swiper-button-prev,
.br-sl-cv .swiper-button-next {
  position: absolute;
  top: 50%;
  outline: none;
}

.br-sl-cv .swiper-button-prev {
  left: 5%;
}

.br-sl-cv .swiper-button-next {
  right: 5%;
}

.br-sl-cv .swiper-button-prev::after,
.br-sl-cv .swiper-button-next::after {
  color: #666;
  font-size: 2rem;
}

.br-sl .swiper-pagination-bullet-active {
  background: #666;
}


.ino {
  padding-top: 12rem;
  background: #f1f1f1;
  padding-bottom: 12rem;
}

.ino> div {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.ino> div section {
  position: relative;
}

.ino> div section:hover {
  cursor: pointer;
}

.ino> div> :nth-child(1) {
  text-align: center;
  position: relative;
}

.ino> div> :nth-child(1) h1 {
  margin-bottom: 1rem;
}

.ino> div> :nth-child(1) strong {
  margin-bottom: 3rem;
}

.ino> div> :nth-child(2) {
  background: #f9f9f9;
}

.ino> div> :nth-child(2)> :nth-child(1)> :nth-child(1) {
  width: 50%;
  height: 200px;
  overflow: hidden;
}

.ino> div> :nth-child(2)> :nth-child(1) {
  display: flex;
  align-items: center;
}

.ino> div> :nth-child(2)> :nth-child(1)> :nth-child(1) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s;
  filter: brightness(160%) grayscale(80%) contrast(100%);
}

.ino> div> :nth-child(2)> :nth-child(1):hover > :nth-child(1) img {
  filter: brightness(170%) grayscale(50%) contrast(105%);
  transform: scale(1.1);
}

.ino> div> :nth-child(2)> :nth-child(1)> :nth-child(2) {
  width: 50%;
  text-align: center;
}

.ino> div> :nth-child(2)> :nth-child(1)> :nth-child(2) h3 {
  font-size: 1.1rem;
  font-family: 'Noto Sans KR', sans-serif;
  margin-bottom: 1rem;
  color: #e6002d;
}

.ino> div> :nth-child(2)> :nth-child(1)> :nth-child(2) p {
  color: #666;
  font-family: 'Noto Sans KR', sans-serif;
  line-height: 1.4rem;
}


.ino> div> :nth-child(2)> :nth-child(2) {
  display: flex;
  align-items: center;
}

.ino> div> :nth-child(2)> :nth-child(2)> :nth-child(2) {
  width: 50%;
  height: 200px;
  overflow: hidden;
}

.ino> div> :nth-child(2)> :nth-child(2)> :nth-child(2) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s;
  filter: brightness(80%) contrast(110%);
}

.ino> div> :nth-child(2)> :nth-child(2):hover > :nth-child(2) img {
  filter: brightness(110%) contrast(110%);
  transform: scale(1.1);
}

.ino> div> :nth-child(2)> :nth-child(2)> :nth-child(1) {
  width: 50%;
  text-align: center;
}

.ino> div> :nth-child(2)> :nth-child(2)> :nth-child(1) h3 {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #e6002d;
}

.ino> div> :nth-child(2)> :nth-child(2)> :nth-child(1) p {
  color: #666;
  font-family: 'Noto Sans KR', sans-serif;
  line-height: 1.4rem;
}

.ino button {
  position: relative;
}

.ino button:hover::after {
  width: 100%;
}

.ino button::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: #e6002d;
  transition: .3s;
}

.sus {
  height: 580px;
}

.sus {
  position: relative;
  text-align: center;
  color: #fff;
}
/*
.sus> img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(85%);
}
*/
.sus {
  background: url('../images/main/sus-01-bg-2.jpg')no-repeat;
  background-size: cover; /* 요소를 비율에 맞게 커버 */
  background-position: center; /* 이미지를 요소의 정가운데로 처리 */
  background-attachment: fixed;
}

.sus> :nth-child(2) {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%,-50%);
  text-shadow: 0 0 10px rgba(0,0,0,0.25);
}

.sus> :nth-child(2) h1 {
  color: #fff;
  margin-bottom: 1rem;
}

.sus> :nth-child(2) strong {
  margin-bottom: 4rem;
}

.sus> :nth-child(2) button {
  color: #fff;
  border-bottom: 1px solid #fff;
  position: relative;
}

.sus> :nth-child(2) button:hover::after {
  width: 100%;
}

.sus> :nth-child(2) button::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: #e6002d;
  transition: .3s;
}

.sus> :nth-child(3) {
  width: 1px;
  height: 80px;
  position: absolute;
  top: 0px;
  left: 50%;
  z-index: 10;
  transform: translate(-50%,0);
}

.sus> :nth-child(3) .scroller {
  width: 2px;
  height: 60px;
  background-color: #fff;
  animation-name: scroll2;
  animation-duration: 1.6s;
  animation-timing-function: cubic-bezier(.15,.41,.69,.94);
  animation-iteration-count: infinite;
}

@keyframes scroll2 {
  0% { opacity: 0; }
  10% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(60px); opacity: 0;}
}

.barbtn {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  transform: translate(0,-50%);
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  border: 2px solid #e6002d;
  background: #fff;
}

.bardown {
  position: absolute;
  top: 100%;
  left: 5px;
  transform: translate(0,-50%);
  display: inline-block;
  width: 1px;
  height: 166px;
  background: #eee;
}

.hs {
  margin-bottom: 12rem;
}

.hs> :nth-child(1) {
  text-align: center;
  margin-bottom: 2rem;
}

.hs> :nth-child(1) h1 {
  margin-bottom: 20px;
}

.hs> :nth-child(2) {
  width: 90%;
  max-width: 370px;
  margin: 0 auto;
}

.hs> :nth-child(2) section {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.hs> :nth-child(2) section> :nth-child(1) {
  width: 10%;
  height: 150px;
  position: relative;
}

.hs> :nth-child(2) section> :nth-child(2) {
  width: 45%;
  text-align: center;
}

.hs> :nth-child(2) section> :nth-child(2) img {
  width: auto;
  height: 120px;
}

.hs> :nth-child(2) section> :nth-child(3) {
  width: 45%;
}

.hs> :nth-child(2) section> :nth-child(3) h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.hs> :nth-child(2) section> :nth-child(3) p {
  font-family: 'Noto Sans Kr', sans-serif;
  color: #666;
  line-height: 1.4rem;
}

.kf {
  background: #333;
}

.kf>div {
  display: flex;
  flex-flow: wrap-reverse;
}

.kf>div>div {
  width: 100%;
}

.kf>div>:nth-child(1) {
  display: block;
}

.kf>div>:nth-child(1) section {
  height: 240px;
  width: 100%;
  position: relative;
}

.kf>div>:nth-child(1) section:hover {
  cursor: pointer;
}

.kf>div>:nth-child(1) section> a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.kf>div>:nth-child(1) section> a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: brightness(80%) contrast(90%);
  transition: .3s;
  transform: scale(1);
}

.kf>div>:nth-child(1) section:hover a img {
  filter: brightness(100%) contrast(95%);
  transform: scale(1.05);
}

.kf>div>:nth-child(1) section:hover > :nth-child(3) img {
  opacity: .7;
  display: block;
}

.kf>div>:nth-child(1) section:hover> :nth-child(2) {
  display: block;
}

.kf>div>:nth-child(1) section> :nth-child(2) {
  width: 80%;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 20%;
  transform: translate(-50%,-50%);
  display: none;
}

.kf>div>:nth-child(1) section> :nth-child(2) p {
  text-shadow: 0 0 10px rgba(0,0,0,0.4);
  font-size: 1rem;
  line-height: 1.4rem;
  font-weight: 400;
  color: #fff;
  font-family: 'Noto Sans Kr', sans-serif;
  position: relative;
}

.kf>div>:nth-child(1) section> :nth-child(2) p::after {
  content: '';
  left: 50%;
  bottom: -20px;
  transform: translate(-50%,0);
  position: absolute;
  width: 30px;
  height: 3px;
  background: #e6002d;
}

.kf>div>:nth-child(1) section> :nth-child(3) {
  width: 40px;
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%,-50%);
  transition: .3s;
}

.kf>div>:nth-child(1) section> :nth-child(3) img {
  width: 40px;
  display: none;
  transition: .3s;
}

.kf>div>:nth-child(1) section> p {
  display: none;
}

.kf>div>:nth-child(2) {
  text-align: center;
  height: 480px;
  position: relative;
}

.kf>div>:nth-child(2) div {
  margin-top: 140px;
  color: #fff;
}

.kf>div>:nth-child(2) div h1 {
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 300;
}

.kf>div>:nth-child(2) div strong {
  margin-bottom: 2rem;
  font-weight: 200;
}

.kf>div>:nth-child(2) div p {
  font-family: 'Noto Sans Kr', sans-serif;
  margin-bottom: 2rem;
  line-height: 1.4rem;
  font-weight: 200;
  color: #eee;
}

.kf>div>:nth-child(2) div button {
  color: #fff;
  margin-bottom: 2rem;
  position: relative;
}

.kf>div>:nth-child(2) div button:hover::after {
  width: 100%;
}

.kf>div>:nth-child(2) div button::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: #e6002d;
  transition: .3s;
}


.kf>div>:nth-child(2) div button {
  margin-bottom: 2rem;
}




.tr {
  padding-top: 12rem;
  padding-bottom: 10rem;
  position: relative;
}

.tr-bg {
  width: 100%;
  height: 560px;
  background: url('../images/main/tr-02.jpg')no-repeat;
  background-size: cover;
  background-position: center center;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  filter: brightness(50%) contrast(80%);
}

.tr> :nth-child(2) {
  text-align: center;
  margin-bottom: 4rem;
}

.tr> :nth-child(2) h1 {
  margin-bottom: 1rem;
}

.tr> :nth-child(4) {
  width: 90%;
  max-width: 420px;
  margin: 0 auto;
  position: relative;
}


.tr> :nth-child(4) input {
  width: 100%;
  padding-right: 30px;
  height: 60px;
  border: 1px solid #ccc;
  padding-left: 1rem;
  outline: none;
  font-size: 1rem;
  font-family: 'Noto Sans KR', sans-serif;
  transition: .3s;
}

.tr> :nth-child(4) input::placeholder {
  font-size: 1rem;
  color: #aaa;
  font-family: 'Noto Sans KR', sans-serif;
}

.tr> :nth-child(4) input:focus {
  box-shadow: 0 0 16px rgba(0,0,0,0.5);
}

.tr> :nth-child(4) button {
  width: 60px;
  height: 60px;
  border-bottom: none;
  position: absolute;
  top: 0;
  right: 0;
  background: white;
  border: 1px solid #ccc;
}

.tr> :nth-child(4) button:hover {
  background: #eee;
}

.tr> :nth-child(4) button img {
  width: 24px;
}

.tr> :nth-child(3) {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 6rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.tr> :nth-child(3) iframe {
  width: 100%;
  height: 360px;
}

.notice {
  background: #222;
  text-align: center;
}

.notice> div {
  display: flex;
}

.notice> div section {
  width: 25%;
  height: 160px;
  padding-top: 30px;
  transition: .3s;
  position: relative;
}

.notice> div section::after {
  content: '';
  display: block;
  position: absolute;
  width: 1px;
  height: 100px;
  top: 50%;
  right: 0;
  transform: translate(0,-50%);
  background: #333;
}

.notice> div section:nth-of-type(4)::after {
  display: none;
}

.notice> div section:hover {
  cursor: pointer;
}

.notice> div section:hover div {
  animation-name: pop-notice;
  animation-duration: 0.3s;
  animation-timing-function: cubic-bezier(.15,.41,.69,.94);
  animation-iteration-count: 1;
}

@keyframes pop-notice {
  0% {}
  50% { transform: translateY(-8px);}
  100% { transform: translateY(0px);}
}

.notice> div img {
  width: 60px;
  opacity: .7;
}

.notice> div p {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #aaa;
}

.notice> div span {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 200;
}

footer {
  font-family: 'Noto Sans KR', sans-serif;
  background: #222;
  padding-bottom: 120px;
}

.cp {
  text-align: center;
  padding: 20px 5% 0;
  margin-bottom: 40px;
}

.cp img {
  width: 200px;
  height: auto;
  opacity: 0.3;
  margin-bottom: 20px;
}

.cp> :nth-child(2) select {
  width: 80%;
  max-width: 300px;
  height: 50px;
  background: #333;
  color: #999;
  padding-left: 10px;
}

.sns {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
}

.sns>:nth-child(1) {
  margin-bottom: 40px;
}

.sns>:nth-child(1) a {
  margin: 0 10px;
}

.sns>:nth-child(1) a img {
  width: 36px;
  opacity: .4;
  transition: .3s;
}

.sns>:nth-child(1) a img:hover {
  opacity: .8;
}

.pol {
  margin-bottom: 40px;
}

.pol>:nth-child(1){
  width: 90%;
  margin: 0 auto;
  margin-bottom: 20px;
}

.pol>:nth-child(1) {
  display: flex;
  justify-content: space-around;
}

.pol>:nth-child(1) li a {
  color: #999;
}

.pol>:nth-child(1) li a:hover {
  color: #ccc;
}


.pol>:nth-child(2){
  width: 90%;
  margin: 0 auto;
}

.pol>:nth-child(2) {
  text-align: center;
}

.pol>:nth-child(2) li {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 20px;
  position: relative;
}

.pol>:nth-child(2) li::after {
  content: '';
  display: block;
  width: 1px;
  height: 10px;
  background: #333;
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translate(0,-50%);
}

.pol>:nth-child(2)> :last-child::after {
  width: 0;
}

.pol>:nth-child(2) li a {
  color: #666;
  font-size: 0.8rem;
}

.pol>:nth-child(2) li a:hover {
  color: #aaa;
}

address {
  text-align: center;
  width: 90%;
  margin: 0 auto;
  font-style: normal;
  margin-bottom: 80px;
}

address p {
  color: #666;
  font-size: 0.8rem;
  line-height: 1.8rem;
}

.infor {
  width: 100%;
  border-top: 1px solid #333;
}

.infor p {
  padding: 5%;
  margin-top: 40px;
  color: #999;
  font-size: 0.8rem;
  line-height: 1.4rem;
}

.as-right {
  position: fixed;
  bottom: 40px;
  right: 0px;
  opacity: 0;
  z-index: 10;
  transition: .3s;
}

.as-right:hover {
  animation-name: pop-aside;
  animation-duration: .8s;
  animation-iteration-count: infinite;
}

@keyframes pop-aside {
  0% { transform: scale(1);}
  30% { transform: scale(1.1);}
  100% { transform: scale(1);}
}

.as-right-on {
  right: 5%;
  opacity: 1;
}

.as-right button {
  width: 40px;
  height: 40px;
  border: none;
  box-shadow: 0 0 5px rgba(0,0,0,0.4);
  border-radius: 50px;
  background: #222;
  font-size: 0.7rem;
  color: #ccc;
  font-weight: 700;
}

.as-right button img {
  width: 20px;
  opacity: .8;
}

/*pc start*/


@media only screen and (min-width: 1366px) {

  h2 {
    font-size: 4rem;
    line-height: 4rem;
  }

  strong {
    font-size: 1.6rem;
    line-height: 2.6rem;
  }

  .nav-bar> div {
    width: 1000px;
    margin
  }

  .gnb {
    /*width: 1000px;*/
    margin: 0 auto;
    left: auto;
    right: 0;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-left: 1px solid #eee;
  }

  .gnb p {
    width: 1000px;
    margin: 0 auto;
  }

  .gnb-bot{
    width: 1000px;
    margin: 0 auto;
  }

  .gnb-menu {
    width: 1000px;
    margin: 0 auto;
  }

  .gnb-menu> ul> li> a {
    padding: 0;
  }

  .gnb-menu> ul> li> ul li {
    width: 1000px;
    margin: 0 auto;
  }

  .mn-sl {
    height: 720px;
  }

  .mn-sl .swiper-wrapper .swiper-slide div {
  padding-top: 300px;
  width: 1000px;
  height: 720px;
  position: absolute;
  left: 50%;
  top: 38%;
  transform: translate(-50%,-50%);
  }

  .mn-sl .swiper-button-prev,
  .mn-sl .swiper-button-next {
  font-size: 0;
  border-bottom: 0;
    top: 50%;
  }

  /*
  .mn-sl .swiper-button-prev {
    left: 5%;
  }
  .mn-sl .swiper-button-next {
    right: auto;
    left: calc(5% + 60px);
  }
  */

  .mn-sl .swiper-button-prev {
    left: 120px;
    padding: 0;
  }

  .mn-sl .swiper-button-prev:hover {
    transform: translateX(0px);
  }

  .mn-sl .swiper-button-next {
    right: 120px;
    padding: 0;
  }

  .mn-sl .swiper-button-next:hover {
    transform: translateX(0px);
  }

  .mn-sl .swiper-button-prev::after,
  .mn-sl .swiper-button-next::after {
    font-size: 2.6rem;
    color: #fff;
    opacity: .8;
    transition: .3s;
    display: block;
  }

  .mn-sl .swiper-pagination {
    display: block;
  }

  .mn-sl-pg-sl-cv2 {
    width: 1000px;
    position: absolute;
    top: 248px;
    left: 50%;
    transform: translate(-50%,0);
    z-index: 15;
    padding-right: 888px;
  }

  .mn-num-cv {
    width: 1000px;
    height: 100px;
    position: absolute;
    top: 180px;
    left: 50%;
    transform: translate(-50%,0);
    z-index: 15;
    background: transparent;
  }

  .mn-num-cv .mn-sl-fr-1 {
    position: absolute;
    top: 0;
    left: 0;
  }

  .mn-num-cv .fill-bg {
    top: 8px;
    left: 26px;
  }

  .mn-num-cv .mn-sl-fr-2 {
    top: 0px;
    left: 100px;
  }

  .ab-sl-cv {
    width: 1000px;
    margin: 0 auto;
  }

  .gb div {
    width: 1000px;
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translate(-50%,0);
  }

  .br-sl-cv {
    width: 1000px;
    margin: 0 auto;
  }

  .br-sl-cv .swiper-button-prev {
    left: -30px;
  }

  .br-sl-cv .swiper-button-next {
    right: -30px;
  }

  .hs {
    margin-bottom: 16rem;
  }

  .kf {
  }

  .kf>div {
    display: flex;
    width: 1000px;
    height: 400px;
    margin: 0 auto;
  }

  .kf>div>:nth-child(1) {
    width: 60%;
  }

  .kf>div>:nth-child(2) {
    width: 40%;
    text-align: left;
    padding-left: 80px;
  }

  .kf>div>:nth-child(1) {
    display: flex;
    justify-content: space-between;

  }

  .kf>div>:nth-child(1) section {
    height: 400px;
    width: 32%;
    position: relative;
  }

  .kf>div>:nth-child(1) section> p {
    /*display: block;*/
    font-size: 52px;
    line-height: 60px;
    letter-spacing: 2px;
    font-weight: 500;
    color: #222;
    position: absolute;
    right: 0;
    /*transform: translate(-50%,0);*/
    top: -36px;
    z-index: 1;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(0deg,#fff 40%,#272727 0);
    -webkit-background-clip: text;
  }

  .kf>div>:nth-child(1) section:nth-of-type(2)> p {
    font-size: 52px;
    line-height: 72px;
    color: #222;
    position: absolute;
    right: 0;
    /*transform: translate(-50%,0);*/
    top: auto;
    bottom: -32px;
    z-index: 1;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(0deg,#272727 48%,#fff 0);
    -webkit-background-clip: text;
  }

  .kf>div>:nth-child(1) section:nth-of-type(1) {
    margin-bottom: 60px;
  }

  .kf>div>:nth-child(1) section:nth-of-type(2) {
    margin-top: 60px;
  }

  .kf>div>:nth-child(1) section:nth-of-type(3) {
    margin-bottom: 60px;
  }

  .kf>div>:nth-child(1) section> :nth-child(2) {
    width: 80%;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translate(-50%,-50%);
  }

  .kf>div>:nth-child(1) section> :nth-child(3) {
    bottom: 10%;
  }

  .kf>div>:nth-child(2) {
    height: auto;
    position: static;
  }

  .kf>div>:nth-child(2) {
    height: auto;
  }

  .kf>div>:nth-child(2) div {
    margin-top: 160px;
  }

  .ino {
    padding-bottom: 16rem;
  }

  .ino> div {
  }

  .ino> div> :nth-child(2)> :nth-child(1)> :nth-child(1),
  .ino> div> :nth-child(2)> :nth-child(2)> :nth-child(2) {
    height: 300px;
  }

  .notice> div {
    width: 1000px;
    margin: 0 auto;
  }

  .cp {
    text-align: left;
    padding: 40px 0 40px;
    width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .cp> :nth-child(2) {
    width: 200px;
  }

  .cp> :nth-child(2) select {
    width: 200px;
  }

  .cp img {
    margin-bottom: 0px;
  }

  .sns {
    width: 1000px;
    text-align: left;
    margin-bottom: 0px;
  }

  .sns>:nth-child(1) a {
    margin: 0 16px 0 0;
  }

  .pol>:nth-child(1){
    width: 1000px;
    margin-bottom: 20px;
  }

  .pol>:nth-child(1) {
    display: flex;
    justify-content: flex-start;
  }

  .pol>:nth-child(1) li {
    margin-right: 16px;
  }

  .pol>:nth-child(2){
    width: 1000px;
  }

  .pol>:nth-child(2) {
    text-align: left;
  }

  .pol>:nth-child(2) li {
    margin-right: 16px;
    margin-bottom: 0px;
  }

  address {
    text-align: left;
    width: 1000px;
  }

  address p {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.8rem;
  }

  .infor {
    width: 1000px;
    margin: 0 auto;
  }

  .infor p {
    padding: 0;
  }

  .as-right {
    bottom: 60px;
    right: 0px;
  }

  .as-right-on {
    bottom: 60px;
    right: 30px;
  }

}
