/* ================================ */
/*            �⺻ ��Ÿ��           */
/* ================================ */


* {
  margin: 0;
  padding: 0;
  border: none;
  border-collapse: collapse;
  font-family: "NanumSquareAc", sans-serif;
  font-style: normal;
  word-break: break-all;
  box-sizing: border-box;
  list-style: none;
}


html {
  font-size: 62.5%;
}


a {
  text-decoration: none;
  color:#000;
}

a:hover,
a:focus,
a:active,
a:active {
  text-decoration: none;
  outline: none;
}

button {
  border: none;
  cursor: pointer;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input:focus,
textarea:focus,
button:focus {
  outline: none;
}

img {
  max-width: 100%;
  vertical-align: top;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.inter {
  font-family: "Inter", sans-serif;
}

/* ================================ */
/*            Header ��Ÿ��         */
/* ================================ */
.header {
  position: fixed;
  width: 100%;
  height: 8rem;
  z-index: 5;
}

.header.header_on {
  background-color: #fff;
  
}

.header.header_on .header__logo {
  background: url(../img/logo_on.png) no-repeat center / cover; background-size:100% auto;
}

.header.header_on .header__open {
  background: url(../img/open_on.png) no-repeat center / cover;
  background-size:31px;
}

.header__head {
  width: 95%;
  max-width: 182rem;
  height: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  
}

.header__logo {
  width: 13.7rem;
  height: 2.8rem;
  background: url(../img/logo_on.png) no-repeat center / cover;
  background-size:100% auto;
  font-size: 0;
  text-indent: -999999rem;
}

.header__logo a {
  display: block;
  height: 100%;
}

.header__open {
  font-size: 0;
  text-indent: -999999rem;
  width: 3.1rem;
  height: 3.1rem;
  background: url(../img/open_on.png) no-repeat center / cover;
  /*background-size:31px;*/
}

.header__menu {
  background-color:#fff;
  position: absolute;
  top: -100vh;
  left: 0;
  width: 100%;
  height: 100vh;
  transition: top 0.5s;
  
}

.header__menu.activeMenu {
  top: 0;
}

.header__menu span.section_line { display:inline-block; width:100%; border-bottom:1px solid #000; position:absolute; top:0%; left:0%; margin:10rem 0 0 0;}

.header__menuHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__close {
  background: none;
}

.header__cell > a {
  color: #000;
  font-size: var(--fs-35);
  font-weight: 700;
}

.header__sub {
  font-size: var(--fs-20);
  color: #94b7cd;
  display: flex;
  flex-direction: column;
  row-gap:1.5rem;
}

.header__bottom {
  padding-top: var(--gap-70);
  border-top: 0.1rem solid #000;
}

.header__bottomCenter {
  display: flex;
  row-gap: 2rem;
}

.header__info {
  color: #000;
  font-size: 1.2rem;
  row-gap: 1.7rem;
}

.header__sns {
  display: flex;
  gap: 2rem;
}

.header__sns li {
  width: 4rem;
}

.header__text {
  display: flex;
}

/* ===========  Media Query (max-width: 1200px)  =========== */
@media screen and (max-width: 1200px) {
.header__menu span.section_line { display:inline-block; width:100%; border-bottom:1px solid #000; position:absolute; top:0%; left:0%; margin:8rem 0 0 0;}
  .header__menuLogo {
    width: 13.7rem;
  }
	
	.header__open {
  font-size: 0;
  text-indent: -999999rem;
  width: 3.1rem;
  height: 3.1rem;
  background: url(../img/open_on.png) no-repeat center / cover;
  background-size:31px;
}


  .header__close {
    width:31px; height:2.4rem; padding:0px;
  }
  .header__close img {width:31px !important; height:31px; }

  .header__menuHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--gap-70);
  }

  .header__menu {
    overflow-y: scroll;
    padding-block: 2.5rem 5rem;
  }

  .header__cell > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 0.1rem solid #fff;
    padding: 3.5rem 1.5rem 1.5rem 1.5rem;
  }

  .header__cell > a:after {
    content: "";
    display: block;
    width: 2.7rem;
    height: 2.7rem;
    background: url(../img/opened.png) no-repeat center;
  }
 

  .header__cell.active > a {
    border-width: 0.3rem;
  }

  .header__cell.active > a:after {
    width: 2.7rem;
    height: 0.3rem;
    background: url(../img/closed.png) no-repeat center;
  }

  .header__cell.active .header__sub {
    max-height: 80rem;
    padding-block: 3rem;
    overflow: visible;
    border-bottom: 0.1rem solid #ddd;
  }

  .header__sub {
    
    
    padding-inline: 1.5rem;
    transition: all 0.5s;
  }

  .header__info {
    flex-direction: column;
  }

  .header__text {
    flex-direction: column;
  }

  .header__bottom {
    margin-top: var(--gap-70);
  }

  .header__bottomCenter {
    flex-direction: column;
	padding:0 15px; line-height:20px;
  }
}

/* ===========  Media Query (min-width: 1200px)  =========== */
@media screen and (min-width: 1200px) {
  .header {
    height: 10rem;
  }

  .header__logo {
    width: 22rem;
    height: 5.5rem;
  }
  
  .header.header_on .header__open {
  background: url(../img/open_on.png) no-repeat center / cover;
 
}

  .header__open {
    width: 6.2rem;
    height: 6.2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); z-index:50;
  }

  .header__open:hover {
    background: url(../img/open_hover.png) no-repeat center / cover !important;
  }

  .header__menu { position:fixed;
    padding-block: 3rem var(--gap-80);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
	z-index:500;
  }

  .header__cell > a {
    display: block;
  }

  .header__cell > a::after {
    content: "";
    display: block;
    width: 16rem;
    height: 0.2rem;
    background-color: #000;
    margin-block: 3rem var(--gap-70);
  }
  
  .cell_c1 > a:after { border-bottom: 0.4rem solid #f34067 !important;}
  .cell_c2 > a:after { border-bottom: 0.4rem solid #1665a8 !important;}
  .cell_c3 > a:after { border-bottom: 0.4rem solid #d4be2a !important;}
  .cell_c4 > a:after { border-bottom: 0.4rem solid #b4b4b4 !important;}

  .header__nav {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .header__subCell:hover {
    color: #fff;
  }

  .header__bottomCenter {
    justify-content: space-between;
  }
}

@media screen and (max-width: 700px) {
  .header {
    background-color: #fff;
    height: 5rem;
    z-index: 1000;
  }
}

/* ================================ */
/*            Footer ��Ÿ��         */
/* ================================ */
.footer {
  border-top: 0.1rem solid #ddd;
  padding-block: var(--gap-45);
}

.footer__center {
  position: relative;
  width: 95%;
  max-width: 182rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.footer__logo {
  width: 13.6rem;
}

.footer__text {
  display: flex;
  flex-direction: column;
}

.footer__buttons {
  display: flex;
  gap: 1rem;
}

.footer__buttons li {
  width: 4rem;
  flex-shrink: 0;
}

.footer__goTop {
  display: flex;
  align-items: center;
}

.footer__goTop::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.1rem;
  border-bottom: 0.1rem dashed #ddd;
}

.footer__goTop .goTop {
  width: 6rem;
  height: 6rem;
  background-color: #45a942;
  flex-shrink: 0;
}

.footer__goTop .goTop img {
  width: 1.4rem;
  vertical-align: middle;
}

@media screen and (min-width: 960px) {
 
  .footer__goTop {
    display: none;
  }
  .footer__center {
    flex-direction: row;
  }
  .footer__logo {
    width: auto;
  }
  .footer__info {
    margin-left: 9rem;
  }
  .footer__text {
    flex-direction: row;
    gap: 3rem;
  }
  .footer__buttons {
    margin-left: auto;
  }
}
