@charset "UTF-8";
/* 전역 변수 */
:root {
  --color-main: #ee9336;
  --color-sub: #ffefd8;
  --color-error: #FF0000;
  --color-gray: #515151;
  --color-base: #222;
  --color-border: #e2e8f0;
}

.blind {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
}

.point {
  color: var(--color-error) !important;
}

.dim {
  color: var(--color-gray) !important;
}

.mb-1 {
  margin-bottom: 1rem;
}

/* ELLIPSIS */
/*
 * 파일명 : common.scss
 * 역할   : 공통 레이아웃
 */
.header {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .header {
    border-bottom: 1px solid #ebebeb;
    padding: 0 1rem;
  }
}
@media screen and (max-width: 767px) {
  .header {
    height: 70px;
  }
}
.header__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo img {
  width: 300px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .header__logo img {
    width: 200px;
  }
}
.header__call {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: normal;
}
@media screen and (max-width: 1200px) {
  .header__call {
    display: none;
  }
}
.header__call .txt span {
  font-size: 0.9rem;
}
.header__call .txt p {
  font-weight: 600;
}
.header .nav__btn {
  display: none;
  width: 28px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .header .nav__btn {
    display: flex;
  }
}
.header .nav__btn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #222;
  border-radius: 2px;
}

.nav {
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .nav {
    height: 0;
    border: none;
  }
}
.nav__inner {
  width: 100%;
  max-width: 1200px;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .nav__inner {
    display: none;
  }
}
.nav__inner > ul {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__inner > ul > li {
  font-weight: 600;
}
.nav__inner > ul > li:hover {
  color: var(--color-main);
}
.nav__drop {
  width: 100%;
  height: auto;
  display: none;
  justify-content: center;
  background-color: #fff;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  padding: 2rem;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 90;
}
.nav__drop.is-active {
  display: flex;
}
.nav__drop .inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 1rem;
}
@media screen and (max-width: 767px) {
  .nav__drop .inner {
    gap: 1rem;
  }
}
.nav__drop .inner > ul {
  width: calc(20% - 13px);
  height: auto;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1200px) {
  .nav__drop .inner > ul {
    width: calc(33.33% - 11px);
  }
}
@media screen and (max-width: 767px) {
  .nav__drop .inner > ul {
    width: 100%;
  }
}
.nav__drop .inner > ul > li h2 {
  font-size: 1rem;
  color: var(--color-base);
  margin-bottom: 5px;
}
.nav__drop .inner > ul > li a {
  font-weight: 400;
  color: var(--color-base);
}
.nav__drop .inner > ul > li a:hover {
  color: var(--color-main);
}

.agreement {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.agreement.is-active {
  display: flex;
}
.agreement__inner {
  position: relative;
  width: 100%;
  max-width: 600px;
  max-height: 80vh;
  background-color: #fff;
  border-radius: 1rem;
  padding: 5rem 2rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}
.agreement__close {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
}
.agreement__close img {
  width: 100%;
  height: auto;
}
.agreement__txt {
  overflow-y: auto;
  padding-right: 10px;
}
.agreement__txt::-webkit-scrollbar {
  width: 6px;
}
.agreement__txt::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 10px;
}
.agreement__txt .box {
  margin-bottom: 25px;
}
.agreement__txt .box:last-child {
  margin-bottom: 0;
}
.agreement__txt .box h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  word-break: keep-all;
}
.agreement__txt .box h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.agreement__txt .box p {
  font-size: 0.95rem;
  color: #555;
  word-break: keep-all;
}
.agreement__txt .box ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.agreement__txt .box ul li {
  font-size: 0.9rem;
  color: #666;
}

.essential {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.essential.is-active {
  display: flex;
}
.essential__inner {
  position: relative;
  width: 100%;
  max-width: 600px;
  max-height: 80vh;
  background-color: #fff;
  border-radius: 1rem;
  padding: 5rem 2rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}
.essential__close {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
}
.essential__close img {
  width: 100%;
  height: auto;
}
.essential__txt {
  overflow-y: auto;
  padding-right: 10px;
}
.essential__txt::-webkit-scrollbar {
  width: 6px;
}
.essential__txt::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 10px;
}
.essential__txt .box {
  margin-bottom: 25px;
}
.essential__txt .box:last-child {
  margin-bottom: 0;
}
.essential__txt .box h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  word-break: keep-all;
}
.essential__txt .box h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.essential__txt .box p {
  font-size: 0.95rem;
  color: #555;
  word-break: keep-all;
}
.essential__txt .box ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.essential__txt .box ul li {
  font-size: 0.9rem;
  color: #666;
}
.essential__txt .box .des {
  width: 100%;
  height: auto;
  background-color: #f3f3f3;
  border-radius: 0.5rem;
  padding: 1rem;
}

/*  */
.ft__call {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  border-top: 1px solid #ccc;
  padding: 1rem 0;
}
@media screen and (max-width: 1200px) {
  .ft__call {
    padding: 1rem;
  }
}
.ft__call .inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
}
.ft__call .list {
  display: flex;
}
@media screen and (max-width: 1200px) {
  .ft__call .list {
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .ft__call .list {
    flex-direction: column;
  }
}
.ft__call .list > li {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1200px) {
  .ft__call .list > li {
    padding: 1rem 0;
  }
}
.ft__call .list > li:nth-of-type(1) {
  border-right: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .ft__call .list > li:nth-of-type(1) {
    border-right: none;
    border-bottom: 1px solid #ccc;
  }
}
.ft__call .list > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 1200px) {
  .ft__call .list > li > a {
    flex-direction: column;
    text-align: center;
  }
}
.ft__call .list > li > a img {
  width: 50px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.ft__call .list > li > a p {
  font-size: 1rem;
  font-weight: 600;
  line-height: normal;
}
.ft__call .list > li > a p b {
  font-weight: inherit;
  color: #ef3b23;
}
.ft__call .list > li > a span {
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .ft__call .list > li > a span {
    font-size: 1.2rem;
  }
}

/*  */
.footer {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  background-color: #F9F9F9;
  padding: 2rem 0;
}
@media screen and (max-width: 1200px) {
  .footer {
    padding: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 2rem 1rem;
  }
}
.footer__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.footer__inner > button {
  font-size: 0.9rem;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  padding: 10px 2rem;
  cursor: pointer;
}
.footer__inner > ul {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.footer__inner > ul > li {
  font-size: 0.9rem;
}