@charset "UTF-8";
@import url("font.css");
:root {
  --color-primary: #45A76A;
}

/* reset */
html, body, div, ul, ol, li, dl, dt, dd, p, strong, span, em, a, table, th, td, caption, input, button, textarea, label, form, legend, fieldset, select, hr, h1, h2, h3, h4, h5, h6, img {
  padding: 0;
  margin: 0;
  border: 0;
  color: inherit;
  background: none;
  line-height: inherit;
  font-size: inherit;
  font-family: inherit;
}

html, body {
  height: 100%;
  min-height: 100%;
  font-weight: 400;
  color: #222;
  line-height: 1.6;
  font-family: "LINE Seed Sans KR", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Open Sans", HelveticaNeue-Light, AppleSDGothicNeo-Light, sans-serif !important;
  letter-spacing: -0.01em;
  word-break: keep-all;
}

html {
  font-size: 10px;
}

h1, h2, h3, h4, h5, h6, strong {
  font-weight: 700;
}

*, :after, :before {
  box-sizing: border-box;
  vertical-align: top;
}

header, footer, nav {
  display: block;
}

table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}

th, td {
  vertical-align: middle;
}

select, button {
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

i, em {
  font-style: normal;
}

textarea {
  resize: vertical;
}

textarea ul,
textarea ol {
  list-style: disc;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  outline: none;
}

select::-ms-expand {
  display: none;
}

input, textarea, button, select {
  border-radius: 0;
  box-shadow: none;
  outline: none;
}

::-moz-placeholder {
  color: #bbb;
}

::placeholder {
  color: #bbb;
}

/*** common ***/
.hide {
  display: none;
}

.blind, .sound_only, legend {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0.1;
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
}

.w100 {
  width: 100% !important;
}

.w50 {
  width: 50% !important;
}

.tac {
  text-align: center !important;
}

.tal {
  text-align: left !important;
}

.tar {
  text-align: right !important;
}

.fwb {
  font-weight: bold;
}

.block {
  display: block;
}

.ib {
  display: inline-block;
}

.ellip {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.ellip2 {
  overflow: hidden;
  text-overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ellip3 {
  overflow: hidden;
  text-overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.point {
  color: var(--color-primary);
}

/* layout */
body.overflow_hidden {
  overflow: hidden;
}

body > div,
#wrap {
  font-size: 1.8rem;
  overflow: hidden;
}

.wfix {
  max-width: 1640px;
  margin: 0 auto;
	padding:0 3rem;
}

@media screen and (max-width: 1640px) {
  html {
    font-size: 0.6097vw;
  }
  .wfix {
    padding: 0 1.21vw;
  }
}
@media screen and (max-width: 1400px) {
  .wfix {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 6.7px;
  }
  html, body {
    word-break: normal;
  }
}
.arrow_comm {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  background: #fff;
  transition: 0.2s;
}
.arrow_comm:after {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 16rem;
  background: url(../img/arrow_comm.svg) no-repeat center/1.6rem;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  z-index: 9;
  transition: 0.3s;
  text-align: center;
  color: #fff;
  overflow:hidden;
}
#header.up {
  transform: translateY(-100%);
  overflow: hidden;
}
#header .wfix {
  position: relative;
  display: flex;
  justify-content: space-between;
  z-index: 9;
}
#header #h1 .logo {
  display: block;
  width: 21.3rem;
  height: 10rem;
  background: url(../img/logo_white.svg) no-repeat center/contain;
  font-size: 0;
  transition: 0.3s;
}
#header #gnb .list_menu {
  display: flex;
  gap: 2rem;
  transition: 0.3s;
}
#header #gnb a {
  display: block;
}
#header #gnb .d1 > a {
  position: relative;
  margin: 2rem 0;
  padding: 0 2rem;
  font-weight: bold;
  line-height: 6rem;
}
#header #gnb .d1 > a:before {
  position: absolute;
  top: 1.2rem;
  left: 50%;
  width: 0.4rem;
  height: 0.4rem;
  transform: translateX(-50%);
  border-radius: 100%;
  background: var(--color-primary);
  opacity: 0;
  transition: 0.3s;
  content: "";
}
#header #gnb .wrap_sub {
  transition: 0.3s;
  overflow: hidden;
}
#header #gnb .wrap_sub:before {
  position: absolute;
  top: 10rem;
  left: 0;
  width: 68.5rem;
  height: 24rem;
  border-radius: 3rem;
  overflow: hidden;
  background: no-repeat center/cover;
  opacity: 0;
  transition: 0.3s;
  content: "";
}
#header #gnb .wrap_sub .list_sub li + li {
  margin-top: 1.2rem;
}
#header #gnb .wrap_sub .list_sub a span {
  display: inline-block;
  position: relative;
  line-height: 3.6rem;
}
#header #gnb .wrap_sub .list_sub a span:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: 0.3s;
  content: "";
}
#header #gnb .d1:nth-child(1) .wrap_sub:before {
  background-image: url(../img/nav_img01.jpg);
}
#header #gnb .d1:nth-child(2) .wrap_sub:before {
  background-image: url(../img/nav_img02.jpg);
}
#header #gnb .d1:nth-child(3) .wrap_sub:before {
  background-image: url(../img/nav_img03.jpg);
}
#header #gnb .d1:nth-child(4) .wrap_sub:before {
  background-image: url(../img/nav_img04.jpg);
}
@keyframes menuTopOpen {
  0% {
    margin-top: -2px;
    transform: rotate(0);
  }
  50% {
    margin-top: 0;
    transform: rotate(0);
  }
  100% {
    margin-top: 0;
    transform: rotate(45deg);
  }
}
@keyframes menuTopClose {
  0% {
    margin-top: 0;
    transform: rotate(45deg);
  }
  50% {
    margin-top: 0;
    transform: rotate(0);
  }
  100% {
    margin-top: -2px;
    transform: rotate(0);
  }
}
@keyframes menuBottomOpen {
  0% {
    margin-top: 4px;
    transform: rotate(0);
  }
  50% {
    margin-top: 0;
    transform: rotate(0);
  }
  100% {
    margin-top: 0;
    transform: rotate(-45deg);
  }
}
@keyframes menuBottomClose {
  0% {
    margin-top: 0;
    transform: rotate(-45deg);
  }
  50% {
    margin-top: 0;
    transform: rotate(0);
  }
  100% {
    margin-top: 4px;
    transform: rotate(0);
  }
}
#header .btn_menu {
  display: none;
}
#header.down {
  background: #fff;
  color: #222;
}
#header.down #h1 .logo {
  background-image: url(../img/logo.svg);
}
@media screen and (min-width: 1024px) {
  #header #gnb {
    height: 10rem;
  }
  #header #gnb .wrap_sub {
    height: 0; opacity:0;
  }
  #header #gnb .d1.on .wrap_sub {
    height: 28rem;
  }
  #header.on {
    color: #222;
    background-color: #fff;
  }
  #header.on #h1 .logo {
    background-image: url(../img/logo.svg);
  }
  #header.on #gnb {
    height: 38rem; opacity:1;
  }
  #header.on #gnb .list_menu {
    height: 38rem;
    gap: 5rem;
  }
  #header.on #gnb .wrap_sub {
    min-width: 12.8rem;
    height: 28rem;
    opacity:1;
  }
  #header.on #gnb .d1.on .wrap_sub:before {
    opacity: 1;
  }
  #header.on #gnb .d1:hover > a:before {
    opacity: 1;
  }
  #header.on #gnb .list_sub a:hover span:after {
    width: 100%;
  }
}
@media screen and (max-width: 1640px) {
  #header #gnb .list_menu {
    gap: 2rem;
    padding: 0 6rem;
  }
}
@media screen and (max-width: 1024px) {
  #header {
    height: 60px;
  }
  #header #h1 .logo {
    width: 134px;
    height: 60px;
  }
  #header #gnb {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
  }
  #header .btn_menu {
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    margin-right: -15px;
    font-size: 0;
  }
  #header .btn_menu:before, #header .btn_menu:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    margin-left: -10px;
    background: #fff;
    transition: 0.2s;
    content: "";
  }
  #header .btn_menu:before {
    margin-top: -2px;
  }
  #header .btn_menu:after {
    margin-top: 4px;
  }
  #header.active {
    height: 100vh;
    background: #fff;
    color: #222;
  }
  #header.active #h1 .logo {
    background-image: url(../img/logo.svg);
  }
  #header.active .btn_menu:before, #header.active .btn_menu:after {
    background-color: var(--color-primary);
  }
  #header.active .btn_menu:before {
    animation: menuTopOpen 0.45s forwards;
  }
  #header.active .btn_menu:after {
    animation: menuBottomOpen 0.45s forwards;
  }
  #header.active #gnb {
    display: block;
    height: calc(100vh - 60px);
    border-top: 1px solid #ddd;
  }
  #header.active #gnb .wrap_sub {
    background-color: #f9f9f9;
  }
  #header.active #gnb .wrap_sub:before {
    display: none;
  }
  #header.active #gnb .list_menu {
    display: block;
    height: auto;
    padding: 0;
    text-align: left;
  }
  #header.active #gnb .d1 {
    border-bottom: 1px solid #ddd;
  }
  #header.active #gnb .d1 > a {
    margin: 0;
    line-height: 62px;
    font-size: 16px;
  }
  #header.active #gnb .d1 > a:before {
    display: none;
  }
  #header.active #gnb .d1 > a:after {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    background: url(../img/arrow_comm.svg) no-repeat center/10px;
    transform: rotate(90deg);
    transition: 0.2s;
    content: "";
  }
  #header.active #gnb .d1.on > a {
    color: var(--color-primary);
  }
  #header.active #gnb .d1.on > a:after {
    background-image: url(../img/arrow_comm_on.svg);
    transform: rotate(0);
  }
  #header.active #gnb .list_sub {
    display: none;
    padding: 8px 0;
    border-top: 1px solid var(--color-primary);
  }
  #header.active #gnb .list_sub li + li {
    margin-top: 0;
  }
  #header.active #gnb .list_sub a {
    display: flex;
    align-items: center;
    height: 44px;
    padding: 0 20px;
    font-size: 12px;
  }
  #header:not(.active) .btn_menu:before {
    animation: menuTopClose 0.45s forwards;
  }
  #header:not(.active) .btn_menu:after {
    animation: menuBottomClose 0.45s forwards;
  }
  #header.down:not(.active) .btn_menu:before, #header.down:not(.active) .btn_menu:after {
    background: #222;
  }
}

#footer {
  padding: 6rem 0;
  background: #222;
  color: #fff;
}
#footer .wfix {
  position: relative;
}
#footer .ft_logo img {
  width: 10rem;
}
#footer .ft_logo .txt {
  display: block;
  margin-top: 2rem;
  font-size: 2.4rem;
  font-weight: bold;
}
#footer .ft_menu {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.6rem;
}
#footer .ft_menu .list_menu {
  display: flex;
  gap: 4rem;
}
#footer .ft_menu a {
  display: block;
}
#footer .ft_menu .d1 > a {
  font-weight: bold;
}
#footer .ft_menu .wrap_sub {
  margin-top: 2rem;
}
#footer .ft_menu .list_sub li + li {
  margin-top: 1.2rem;
}
#footer .ft_menu .list_sub a {
  opacity: 0.5;
  transition: 0.3s;
}
@media screen and (min-width: 1400px) {
  #footer .ft_menu .list_sub a:hover {
    opacity: 1;
  }
}
#footer .ft_info {
  margin-top: 1.2rem;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.8);
}
#footer .ft_info .info {
  display: inline-flex;
  margin: 0.2rem 0;
}
#footer .ft_info .info + .info:before {
  display: inline-block;
  padding: 0 8px 0 4px;
  content: "|";
}
#footer .copyright {
  margin-top: 40px;
  font-size: 1.6rem;
  opacity: 0.5;
}
@media screen and (max-width: 1640px) {
  #footer .ft_menu {
    right: 20px;
  }
}
@media screen and (max-width: 1024px) {
  #footer {
    padding: 30px 0 40px;
  }
  #footer .ft_logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  #footer .ft_logo img {
    width: 50px;
  }
  #footer .ft_logo .txt {
    margin-top: 0;
    font-size: 12px;
  }
  #footer .ft_menu {
    position: relative;
    right: auto;
    margin-top: 15px;
  }
  #footer .ft_menu .list_menu {
    gap: 20px;
  }
  #footer .ft_menu .d1 > a {
    font-size: 10px;
  }
  #footer .ft_menu .wrap_sub {
    display: none;
  }
  #footer .ft_info {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
  #footer .ft_info .info {
    display: block;
    font-size: 10px;
    margin: 0;
  }
  #footer .ft_info .info + .info:before {
    display: none;
  }
  #footer .copyright {
    margin-top: 15px;
    font-size: 10px;
  }
}