* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Noto Sans KR', sans-serif;
  word-break: keep-all;
  scroll-behavior: smooth;
}

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

ul {
  list-style: none;
}

@font-face {
  font-family: 'Cafe24Ssurround';
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2105_2@1.0/Cafe24Ssurround.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Cafe24SsurroundAir';
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2105_2@1.0/Cafe24SsurroundAir.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cafe24Ssurround';
}

.row-nowrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}

.row-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.center-box {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.header-box {
  width: 100%;
  height: 80px;
  border-bottom: 1px solid #ddd;
  padding: 16px 20px;
  position: fixed;
  background-color: #fff;
  z-index: 99;
}

.header-box .center-box {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-box .center-box .logo-box img {
  width: 60px;
}

.header-box .center-box .menu-box {
  display: none;
}

.header-box .center-box .mobile-menu-box .mobile-menu-btn-box {
  padding-bottom: 6px;
  cursor: pointer;
}

.header-box .center-box .mobile-menu-box .mobile-menu-btn-box span {
  width: 24px;
  height: 2px;
  background-color: #666;
  border-radius: 2px;
  display: block;
}

.header-box .center-box .mobile-menu-box .mobile-menu-btn-box span:nth-child(2) {
  margin: 6px 0;
}

.header-box .center-box .mobile-menu-box .mobile-menu-contents-box {
  width: 0;
  height: 100%;
  background-color: #fff;
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  overflow-x: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
}

.header-box .center-box .mobile-menu-box .mobile-menu-contents-box .close-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}

.header-box .center-box .mobile-menu-box .mobile-menu-contents-box .mobile-menu-logo {
  width: 68px;
  margin: 36px 0 16px;
}

.header-box .center-box .mobile-menu-box .mobile-menu-contents-box ul {
  padding: 0 20px;
  text-align: left;
}

.header-box .center-box .mobile-menu-box .mobile-menu-contents-box ul li {
  display: block;
  border-bottom: 1px solid #eee;
  font-size: 20px;
  font-weight: 600;
  padding: 16px 0;
}

.header-box .center-box .mobile-menu-box .mobile-menu-contents-box ul li a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #E61E51;
  display: block;
}

.header-box .center-box .mobile-menu-box .mobile-menu-contents-box ul li:first-child {
  border-top: 1px solid #eee;
}

.footer-box {
  width: 100%;
  padding: 32px 0;
  font-size: 14px;
  color: #fff;
  background-color: #aaa;
}

.footer-box .center-box {
  text-align: center;
}

.footer-box .center-box .footer-info-text {
  padding: 8px 0 16px;
}

.footer-box .center-box .footer-policy-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 8px;
}

.footer-box .center-box .footer-policy-box li a {
  color: #fff;
}

.footer-box .center-box .footer-policy-box li span {
  padding: 0 8px;
}

@media all and (min-width: 768px) {
  .footer-box .center-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 20px;
    max-width: 1220px;
  }
  .footer-box .center-box .footer-logo-info-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 16px 0;
  }
  .footer-box .center-box .footer-logo-info-box img {
    margin-right: 20px;
  }
  .footer-box .center-box .footer-logo-info-box .footer-info-text {
    text-align: left;
    width: 450px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  .footer-box .center-box .footer-logo-info-box .footer-info-text li:nth-child(2n-1) {
    margin-right: 16px;
  }
  .footer-box .center-box .footer-logo-info-box .footer-info-text li:nth-child(2) {
    margin-bottom: 8px;
  }
  .footer-box .center-box .footer-instagram-policy-box {
    text-align: right;
    padding: 16px 0;
  }
}

@media all and (min-width: 1024px) {
  .header-box .center-box .menu-box {
    display: block;
    padding-bottom: 4px;
  }
  .header-box .center-box .menu-box ul li {
    margin-left: 48px;
    font-size: 18px;
    font-weight: 700;
  }
  .header-box .center-box .menu-box ul li a:hover {
    color: #E61E51;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .header-box .center-box .mobile-menu-box {
    display: none;
  }
}
