@charset "UTF-8";
/* 전역 변수 */
:root {
  --color-main: #E58B4A;
  --color-sub: #FFEEE6;
  --color-error: #ef4444;
  --color-gray: #94a3b8;
  --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);
}

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

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

/*
 * 파일명 : common.scss
 * 역할   : 공통 레이아웃
 */
.header {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--color-border);
}
@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: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo img {
  width: 350px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1200px) {
  .header__logo img {
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .header__logo img {
    width: 250px;
  }
}
@media screen and (max-width: 1200px) {
  .header__call {
    display: none;
  }
}
.header__call a {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__call .icon {
  width: 44px;
  height: 44px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__call .icon img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__call .txt {
  display: flex;
  flex-direction: column;
}
.header__call .txt span {
  font-size: 0.9rem;
  font-weight: 600;
}
.header__call .txt strong {
  font-weight: 700;
}
.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: auto;
  display: flex;
  justify-content: center;
  background-color: #fff;
  border-bottom: 1px solid var(--color-border);
}
@media screen and (max-width: 1200px) {
  .nav {
    display: none;
    position: absolute;
    z-index: 97;
    padding: 2rem;
  }
}
.nav.is-active {
  display: flex !important;
}
.nav__inner {
  width: 100%;
  max-width: 1200px;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .nav__inner {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.nav__inner > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .nav__inner > li {
    flex-direction: column;
    align-items: flex-start;
  }
}
.nav__inner > li > a {
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s;
}
@media screen and (max-width: 1200px) {
  .nav__inner > li > a {
    font-weight: 600;
  }
}
.nav__inner > li:hover > a {
  color: var(--color-main);
}
.nav__inner > li:hover .nav__drop {
  display: flex;
}
.nav__drop {
  display: none;
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: auto;
  flex-direction: column;
  gap: 10px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 0.5rem;
  padding: 1rem;
  z-index: 99;
}
@media screen and (max-width: 1200px) {
  .nav__drop {
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: static;
    transform: none;
    border-radius: 0;
    box-shadow: none;
    margin-top: 10px;
    padding: 0;
  }
}
.nav__drop li {
  width: 100%;
}
.nav__drop li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}
.nav__drop li a:hover {
  color: var(--color-main);
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .nav__drop li a {
    justify-content: flex-start;
  }
}

.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 {
  margin-top: 10px;
}
.agreement__txt .box ul li {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 5px;
  text-indent: -10px;
  padding-left: 10px;
}

.plan {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding: 4rem 0;
}
@media screen and (max-width: 1200px) {
  .plan {
    padding: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .plan {
    padding: 2rem 1rem;
  }
}
.plan__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
}
.plan__title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1200px) {
  .plan__title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .plan__title {
    font-size: 1.2rem;
    text-align: center;
    word-break: keep-all;
    text-wrap: balance;
  }
}
.plan__list {
  width: 100%;
  height: auto;
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 1200px) {
  .plan__list {
    gap: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .plan__list {
    flex-wrap: wrap;
  }
}
.plan__list li {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  border: 2px solid var(--color-main);
  background-color: #f9f9f9;
  border-radius: 2rem;
  line-height: normal;
  padding: 2rem;
}
.plan__list li img {
  width: 80px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1200px) {
  .plan__list li img {
    width: 66px;
  }
}
@media screen and (max-width: 767px) {
  .plan__list li img {
    width: 55px;
  }
}
.plan__list li h3 {
  font-size: 1.1rem;
}
.plan__list li p {
  color: #595959;
}
@media screen and (max-width: 1200px) {
  .plan__list li p br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .plan__list li p {
    font-size: 0.95rem;
    word-break: keep-all;
    text-wrap: balance;
  }
}

.footer {
  width: 100%;
  height: auto;
}
.footer__top {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  background-color: #F6F7FB;
  padding: 1.5rem 0;
}
@media screen and (max-width: 1200px) {
  .footer__top {
    padding: 2rem 1rem;
  }
}
.footer__bot {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  background-color: #575757;
  padding: 1.5rem 0;
}
@media screen and (max-width: 1200px) {
  .footer__bot {
    padding: 2rem 1rem;
  }
}
.footer__bot li {
  color: #c9c9c9;
}
.footer__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__list {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer__list li {
  font-size: 0.9rem;
}