@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

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

a {
  text-decoration: none;
}

ul,
li {
  list-style-type: none;
}

html,
body {
  height: auto;
  font-family: "Pretendard", sans-serif;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

::-webkit-scrollbar {
  display: none;
}

.roboto {
  font-family: "Roboto", sans-serif;
}

/* header 소스 */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
}

.header {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 0;
}

.header-logo img {
  filter: invert(1);
}

.right-menu {
  display: flex;
  gap: 60px;
  align-items: center;
}

.right-menu a {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.right-menu a:hover {
  color: #e1fc76;
}

#wrap {
  position: relative;
  width: 100%;
  height: 100%;
  color: #000;
}

.page_title {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 250px;
}

main {
  max-width: 1440px;
  margin: 0 auto 120px;
  text-align: center;
}

/* footer */
footer {
  background-color: #000;
  color: #fff;
  padding: 120px 0;
}

.footer {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-left {
  flex: 1;
}

.footer-sub {
  font-size: 42px;
  line-height: 56px;
  font-weight: 600;
  margin-top: 5px;
}

.footer-link {
  display: flex;
  gap: 60px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  flex: 1;
}

.footer-right a {
  color: #fff;
  font-size: 20px;
  line-height: 28px;
  transition: opacity 0.3s;
  font-weight: 300;
}

.footer-right a:hover {
  opacity: 0.7;
}

.footer-right .copyright {
  font-size: 20px;
  line-height: 28px;
  font-weight: 300;
}

.display-pc {
  display: block;
}

.display-m {
  display: none;
}

@media (max-width: 1440px) {
  .header {
    padding: 35px;
  }

  footer {
    padding: 80px 20px;
  }

  .footer-link {
    gap: 10px;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 10px;
  }

  main {
    padding: 0 25px;
  }
}

@media (max-width: 1024px) {
  .footer {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .display-pc {
    display: none;
  }

  .display-m {
    display: block;
  }

  .header {
    padding: 20px;
  }

  .hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999;
    cursor: pointer;
  }

  .hamburger .mo_menu {
    filter: invert(1);
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1000;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
  }

  .mobile-menu.active {
    right: 0;
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }

  .mobile-menu-header .cc_sport_logo {
    filter: invert(1);
  }

  .close-btn {
    background: none;
    border: none;
    cursor: pointer;
  }

  .mobile-menu-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    margin-top: 25px;
  }

  .mobile-menu-inner .menu-btn {
    display: block;
    padding: 18px 10px;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid rgb(0, 0, 0, 0.2);
  }

  .mobile-menu-inner .menu-btn:hover {
    background-color: #f6fed9;
  }

  .mobile-menu-footer {
    font-size: 12px;
    padding: 20px;
    color: #000;
  }

  .footer_logo {
    max-width: 350px;
  }

  .footer-sub {
    font-size: 26px;
    line-height: 34px;
  }

  .footer-right a {
    font-size: 14px;
  }

  .footer-right .copyright {
    font-size: 16px;
    text-align: right;
  }

  .page_title {
    margin-top: 120px;
  }

  main {
    margin: 0 auto 80px;
  }
}

@media (max-width: 425px) {
  .cc_sport_logo,
  .mobile-menu-header .cc_sport_logo {
    max-width: 150px;
  }

  .footer_logo {
    max-width: 300px;
    width: 100%;
  }
}
