@charset "UTF-8";
/* 전역 변수 */
:root {
  --color-main: #2563EB;
  --color-sub: #1e293b;
  --color-error: #ef4444;
  --color-gray: #94a3b8;
  --color-base: #334155;
  --color-border: #e2e8f0;
  --color-grad: linear-gradient(135deg, #2563EB, #38BDF8);
}

.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
 * 역할   : 공통 레이아웃
 */
body {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  body {
    padding-top: 70px;
  }
}

.header {
  width: 100%;
  height: 80px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 1200px) {
  .header {
    padding: 0 1rem;
  }
}
@media screen and (max-width: 767px) {
  .header {
    height: 70px;
  }
}
.header__inner {
  width: 100%;
  max-width: 1200px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  height: 100%;
}
.header__logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
  text-decoration: none;
}
.header__logo .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-grad);
  border-radius: 12px;
}
.header__logo .icon i {
  color: #fff;
  font-size: 1.2rem;
}
.header__logo .txt {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-sub);
  letter-spacing: -0.03em;
}
@media screen and (max-width: 767px) {
  .header__logo .txt {
    font-size: 1.15rem;
  }
}
.header__nav {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
  .header__nav.is-active {
    display: flex;
    width: 100%;
    height: auto;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    padding: 1.5rem 2rem;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }
}
.header__nav ul {
  display: flex;
  gap: 2.5rem;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .header__nav ul {
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
  }
}
.header__nav ul li {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .header__nav ul li {
    height: auto;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.header__nav ul li a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-base);
  transition: color 0.2s ease;
  display: inline-block;
  position: relative;
  padding: 0 4px;
}
.header__nav ul li a:hover {
  color: var(--color-main);
}
.header__nav ul li.is-active a {
  color: var(--color-main);
  font-weight: 700;
}
.header__nav ul li.is-active a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  height: 3px;
  background: var(--color-grad);
  border-radius: 3px;
}
@media screen and (max-width: 767px) {
  .header__nav ul li.is-active a::after {
    display: none;
  }
}
.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: 767px) {
  .header .nav__btn {
    display: flex;
  }
}
.header .nav__btn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #222;
  border-radius: 2px;
}

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

.sticky {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 500;
}
@media screen and (max-width: 1200px) {
  .sticky {
    right: 24px;
    bottom: 24px;
  }
}
@media screen and (max-width: 767px) {
  .sticky {
    right: 16px;
    bottom: 16px;
  }
}
.sticky .btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 1.8rem;
  height: 56px;
  background-color: #fee500;
  color: #191919;
  border: none;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media screen and (max-width: 767px) {
  .sticky .btn {
    height: 48px;
    padding: 0 1.2rem;
    gap: 6px;
  }
}
.sticky .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.sticky .icon {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #191919;
}
@media screen and (max-width: 767px) {
  .sticky .icon {
    font-size: 0.95rem;
  }
}
.sticky .txt {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .sticky .txt {
    font-size: 0.88rem;
  }
}

.footer {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  background-color: #f8f9fa;
  border-top: 1px solid #ccc;
  padding: 3rem 0;
  color: #666;
}
@media screen and (max-width: 1200px) {
  .footer {
    padding: 2rem 1rem;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 2rem 1rem;
  }
}
.footer__inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    gap: 1.5rem;
  }
}
.footer__btn {
  display: flex;
  justify-content: flex-start;
}
.footer__btn button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 1rem;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #333;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 767px) {
  .footer__btn button {
    height: 34px;
  }
}
.footer ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.footer ul:not(:last-child) {
  border-bottom: 1px dashed #ddd;
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .footer ul:not(:last-child) {
    padding-bottom: 1.5rem;
  }
}
.footer ul li {
  font-size: 0.85rem;
  font-weight: 500;
  color: #777;
  line-height: 1.5;
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .footer ul li {
    line-height: 1.4;
  }
}
.footer ul li.point {
  color: #dc2626;
  font-weight: 700;
}

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