@charset "UTF-8";
/*
Theme Name: 나사렛대학교 RISE사업단 홈페이지 테마
Author: WEB Agency DEP by GUPSA
Author URI: https://teamdep.com/
Description: 겁쟁이사자들의 웹 에이전시 팀 디이피에서 제작하였습니다.
Requires at least: 5.3
Tested up to: 6.2
Requires PHP: 7.4
Version: 1.0.0
*/
:root {
  /** 컬러 설정 */
  --main:#218FD4;
  --main-rgb: 33, 143, 212;
  --sub:#218FD4;
}

@media only screen and (max-width: 1599px) and (min-width: 1280px) {
  html {
    font-size: 1.1vw;
  }
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  html {
    font-size: 2.083vw;
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 4.444vw;
  }
}

body {
  font-family: "Pretendard";
  font-weight: 400;
}

.container {
  width: 100rem;
  margin: 0 auto;
}
@media only screen and (max-width: 1599px) and (min-width: 1280px) {
  .container {
    width: 100%;
    padding-inline: 2.5rem;
  }
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .container {
    width: 100%;
    padding-inline: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding-inline: 1.25rem;
  }
}

.main-btn,
#main-btn {
  display: inline-block;
  padding: 0.625rem 2.5rem;
  border-radius: 1.875rem;
  color: #fff;
  font-size: var(--f7);
  line-height: var(--l7);
  background: var(--main) !important;
  cursor: pointer;
}

.sub-btn,
#sub-btn {
  display: inline-block;
  padding: 0.625rem 2.5rem;
  border-radius: 1.875rem;
  color: var(--main);
  font-size: var(--f7);
  line-height: var(--l7);
  border: 0.0625rem solid var(--main) !important;
  cursor: pointer;
}

#loginform {
  width: 25rem;
  margin: 0 auto;
}
#loginform p.login-username, #loginform p.login-password {
  display: flex;
  align-items: center;
  height: 3.75rem;
}
#loginform p.login-username label, #loginform p.login-password label {
  display: block;
  width: 6rem;
  font-size: var(--f7);
  line-height: var(--l7);
}
#loginform p.login-username input, #loginform p.login-password input {
  width: 19rem;
  height: 100%;
  border: none;
  border-bottom: 0.0625rem solid var(--line2);
}
#loginform p.login-username input:focus, #loginform p.login-password input:focus {
  outline: none;
}
#loginform p.login-remember {
  font-size: var(--f8);
  line-height: var(--l8);
  color: var(--font2);
  text-align: right;
}
#loginform p.login-remember input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  vertical-align: middle;
  width: var(--l8);
  height: var(--l8);
  background: url(./assets/images/login-unchecked.svg) no-repeat center center/cover;
}
#loginform p.login-remember input[type=checkbox]:checked {
  background-image: url(./assets/images/login-checked.svg);
}
#loginform p.login-submit {
  margin-top: 2.5rem;
}
#loginform p.login-submit input[type=submit] {
  width: 100%;
}
#loginform p + p {
  margin-top: 1.25rem;
}

.top-bar {
  position: sticky;
  top: 0;
  left: 0;
  width: clamp(100rem, 100%, 100%);
  z-index: 101;
  background: var(--g10);
}
@media only screen and (max-width: 1599px) and (min-width: 1280px) {
  .top-bar {
    width: 100%;
  }
}
@media only screen and (max-width: 1279px) {
  .top-bar {
    width: 100%;
  }
}
.top-bar.is-menu-open {
  position: fixed;
}
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.625rem;
  height: 3.5rem;
}
@media only screen and (max-width: 767px) {
  .top-bar__inner {
    height: 2.75rem;
  }
}
.top-bar__link {
  padding: 0.375rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: var(--g80);
  transition: color 0.2s;
}
.top-bar__link:hover {
  color: var(--primary);
}
.top-bar__login {
  padding: 0.0625rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5rem;
  color: #fff;
  background: var(--primary);
  transition: opacity 0.2s;
}
.top-bar__login:hover {
  opacity: 0.9;
}

/** Header */
.header {
  position: sticky;
  top: 3.5rem;
  left: 0;
  width: clamp(100rem, 100%, 100%);
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(0.125rem);
          backdrop-filter: blur(0.125rem);
  border-bottom: 0.0625rem solid var(--l-2);
}
@media only screen and (max-width: 1599px) and (min-width: 1280px) {
  .header {
    width: 100%;
  }
}
@media only screen and (max-width: 1279px) {
  .header {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .header {
    top: 2.75rem;
  }
}
.header.is-menu-open {
  position: fixed;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
@media only screen and (max-width: 767px) {
  .header__inner {
    height: 3.75rem;
  }
}
.header__logo a {
  display: block;
}
.header__logo img {
  height: 2.875rem;
}
@media only screen and (max-width: 767px) {
  .header__logo img {
    height: 2rem;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.gnb {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1279px) {
  .gnb {
    display: none;
  }
}
.gnb li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9.375rem;
  height: 5rem;
  font-size: var(--f5);
  color: var(--g80);
  transition: color 0.2s;
}
.gnb li a:hover, .gnb li a.is-active {
  color: var(--primary);
}

.btn-sitemap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  border: none;
  cursor: pointer;
}
.btn-sitemap span {
  display: block;
  width: 1.625rem;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}
@media only screen and (max-width: 1279px) {
  .btn-sitemap--pc {
    display: none;
  }
}
.btn-sitemap--mobile {
  display: none;
}
@media only screen and (max-width: 1279px) {
  .btn-sitemap--mobile {
    display: flex;
  }
}
.btn-sitemap--mobile.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.btn-sitemap--mobile.is-active span:nth-child(2) {
  opacity: 0;
}
.btn-sitemap--mobile.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/** 모바일 풀스크린 메뉴 */
.mobile-menu {
  display: none;
  position: fixed;
  padding-top: 6.5rem;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 99;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
@media only screen and (max-width: 1279px) {
  .mobile-menu {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .mobile-menu {
    padding-top: 6.5rem;
    height: 100vh;
  }
}
.mobile-menu.is-active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu__inner {
  padding: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .mobile-menu__inner {
    padding: 1.25rem;
  }
}
.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mobile-menu__col {
  border-bottom: 1px solid var(--l-2);
  padding-bottom: 1.5rem;
}
.mobile-menu__header {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}
.mobile-menu__submenu {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 0.5rem;
}
.mobile-menu__submenu li a {
  font-size: 1rem;
  color: var(--g70);
  transition: color 0.2s;
}
.mobile-menu__submenu li a:hover {
  color: var(--primary);
}

/** Footer */
.footer {
  background: #031925;
  padding: 1.25rem 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0 10rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .footer__inner {
    padding: 0 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer__inner {
    padding: 0 1.25rem;
  }
}
.footer__links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.footer__link {
  font-size: 1rem;
  line-height: 1.5;
  color: #dbebf7;
  padding: 0.5rem 0;
}
.footer__link--privacy {
  color: #ff9c9c;
  border-bottom: 1px solid #ff9c9c;
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer__address {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #dbebf7;
}
@media only screen and (max-width: 767px) {
  .footer__address {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer__divider {
    display: none;
  }
}
.footer__copyright {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #c4c4c4;
}