@charset "UTF-8";
/*
Theme Name: precost
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: 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: 1600px;
  margin: 0 auto;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .container {
    width: 100%;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.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;
}

.scroll-disable {
  height: 100vh;
  overflow: hidden;
}

.header {
  background-color: #fff;
  width: clamp(100%, 100rem, 100rem);
  height: 6.25rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .header {
    top: 0;
    width: 100%;
    height: 5rem;
  }
}
@media only screen and (max-width: 767px) {
  .header {
    width: 100%;
    height: 3.75rem;
  }
}

.nav {
  width: 100rem;
  height: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .nav {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .nav {
    width: 100%;
  }
}
.nav__logo {
  color: #0036F4;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 2.625rem;
}
@media only screen and (max-width: 767px) {
  .nav__logo {
    font-size: 1.375rem;
    line-height: 2rem;
  }
}
.nav__logo a {
  padding: 0.5rem;
}
.nav__submenu {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}

.submenu {
  color: #111;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 2rem;
  display: flex;
  flex-flow: row nowrap;
}
@media only screen and (max-width: 767px) {
  .submenu {
    font-size: 0.875rem;
    line-height: 1.375rem;
  }
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .submenu {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .submenu {
    display: none;
  }
}
.submenu__item {
  margin-right: 5rem;
}
.submenu__link {
  padding: 0.5rem 0;
}

.submenu-btn {
  width: 1.375rem;
  height: 1.375rem;
  display: flex;
  flex-flow: row wrap;
  gap: 0.3125rem;
}
@media only screen and (max-width: 767px) {
  .submenu-btn {
    width: 1.5rem;
    height: 1.5rem;
    gap: 0.25rem;
  }
}
.submenu-btn__item {
  display: inline-block;
  width: 0.25rem;
  height: 0.25rem;
  background-color: #0036F4;
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  .submenu-btn__item {
    width: 0.25rem;
    height: 0.25rem;
  }
}

.submenu-active {
  display: none;
}

.nav.active .submenu {
  display: none;
}

.submenu-active {
  position: fixed;
  top: 0;
  left: 0;
  width: clamp(100%, 100vw, 100vw);
  height: 100vh;
  background-color: #071227;
  color: #FFF;
  z-index: 10000;
}
.submenu-active__nav {
  width: 100rem;
  height: 6.25rem;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .submenu-active__nav {
    width: 100%;
    height: 5rem;
  }
}
@media only screen and (max-width: 767px) {
  .submenu-active__nav {
    width: 100%;
    height: 3.75rem;
  }
  .submenu-active__nav > span {
    display: none;
  }
}
.submenu-active__logo {
  color: #FFF;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 2.625rem;
}
@media only screen and (max-width: 767px) {
  .submenu-active__logo {
    font-size: 1.375rem;
    line-height: 2rem;
  }
}
.submenu-active__logo a {
  padding: 0.5rem;
}
.submenu-active__btn {
  display: block;
  width: 2.25rem;
  height: 2.25rem;
  background: url(./assets/images/i_close.svg) no-repeat center/cover;
}
.submenu-active__wrap {
  position: absolute;
  top: 60%;
  right: 40%;
  transform: translate(50%, -50%);
  font-size: 3rem;
  line-height: 3.875rem;
  font-weight: 700;
  color: #767676;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .submenu-active__wrap {
    top: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .submenu-active__wrap {
    top: 40%;
    right: 50%;
    font-size: 1.5rem;
    line-height: 2.125rem;
  }
}
.submenu-active__list {
  margin-bottom: 6.25rem;
}
@media only screen and (max-width: 767px) {
  .submenu-active__list {
    margin-bottom: 3.125rem;
  }
}
.submenu-active__list:hover {
  color: #FFF;
}
.submenu-active__address {
  position: absolute;
  width: 100rem;
  top: 50%;
  left: 50%;
  pointer-events: none;
  transform: translate(-50%, 50%);
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .submenu-active__address {
    top: 60%;
  }
}
@media only screen and (max-width: 767px) {
  .submenu-active__address {
    display: none;
  }
}

.submenu-address .meaningless {
  display: inline-block;
  margin: 0 0.625rem;
  text-align: center;
  background-color: #FFF;
  height: 0.75rem;
}
.submenu-address__title {
  display: block;
  margin-top: 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.875rem;
}
.submenu-address__wrap {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.submenu-address__em {
  font-weight: 500;
}
.submenu-address__text {
  font-weight: 400;
}

.footer {
  background-color: #F6F7F9;
  width: clamp(100%, 100rem, 100rem);
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .footer {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .footer {
    width: 100%;
  }
}

.meaningless {
  display: inline-block;
  width: 1px;
  height: 0.75rem;
  background-color: #767676;
  vertical-align: baseline;
}

.footer_top, .footer_infomation {
  width: 100rem;
  margin: 0 auto;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .footer_top, .footer_infomation {
    width: calc(100% - 5rem);
  }
}
@media only screen and (max-width: 767px) {
  .footer_top, .footer_infomation {
    width: calc(100% - 2.5rem);
  }
}

.footer_top {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 3.125rem;
  padding-bottom: 1.875rem;
  border-bottom: 1px solid #CDD2DD;
}
@media only screen and (max-width: 767px) {
  .footer_top {
    flex-flow: column nowrap;
    align-items: flex-start;
    gap: 0.625rem;
  }
}
.footer_top > h2 {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 2.25rem;
  color: #0036F4;
}
.footer_top > ul {
  display: flex;
  align-items: baseline;
  color: #767676;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.375rem;
}
@media only screen and (max-width: 767px) {
  .footer_top > ul {
    font-size: 0.75rem;
    line-height: 1.25rem;
  }
}
.footer_top > ul li:nth-child(1) {
  color: #111;
  font-weight: 500;
}
.footer_top > ul > .meaningless {
  margin-right: 1.25rem;
  margin-left: 1.25rem;
  background-color: #767676;
}
dt, dd {
  display: inline-block;
  margin-inline-end: 0;
  margin-inline-start: 0;
}

address {
  display: flex;
  padding-top: 1.875rem;
  padding-bottom: 1.25rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  address {
    flex-flow: row wrap;
    gap: unset;
  }
}
@media only screen and (max-width: 767px) {
  address {
    flex-flow: column nowrap;
    padding: 1.25rem 0;
  }
}
address dl {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  margin-right: 3.125rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  address dl {
    margin-right: 1.875rem;
  }
}
@media only screen and (max-width: 767px) {
  address dl {
    margin: 0.625rem 0;
  }
}
address dt {
  color: #111;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.375rem;
}
@media only screen and (max-width: 767px) {
  address dt {
    font-size: 0.75rem;
    line-height: 1.25rem;
  }
}
address dd {
  color: #767676;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.375rem;
}
@media only screen and (max-width: 767px) {
  address dd {
    font-size: 0.75rem;
    line-height: 1.25rem;
  }
}
address .meaningless {
  margin-left: 0.9375rem;
  margin-right: 0.625rem;
}
@media only screen and (max-width: 767px) {
  address .meaningless {
    margin: 0 0.625rem;
  }
}

.footer_infomation {
  padding-bottom: 7.125rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .footer_infomation {
    padding-bottom: 3.125rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer_infomation {
    padding-bottom: 1.875rem;
  }
}
.footer_infomation > span {
  color: #767676;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.375rem;
}
@media only screen and (max-width: 767px) {
  .footer_infomation > span {
    font-size: 0.75rem;
    line-height: 1.25rem;
  }
}/*# sourceMappingURL=style.css.map */