@charset "UTF-8";
/* 전역 변수 */
:root {
  --color-main: #007bff;
  --color-sub: #6c757d;
  --color-error: #ef4444;
  --color-gray: #94a3b8;
  --color-base: #334155;
  --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;
}

/* ELLIPSIS */
/*
 * 파일명 : main.scss
 * 역할   : 메인페이지 레이아웃
 */
.visual {
  width: 100%;
  height: auto;
  min-height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-main);
  background-image: url(../img/bg.png);
  background-position: center center;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .visual {
    min-height: auto;
  }
}
@media screen and (max-width: 767px) {
  .visual {
    min-height: 350px;
    background-position: 20% 20%;
  }
}
.visual__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 1200px) {
  .visual__inner {
    flex-wrap: wrap;
    gap: 2rem;
    padding: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .visual__inner {
    padding: 2rem;
  }
}
.visual__txt {
  width: 100%;
  height: auto;
  min-height: 200px;
  text-align: center;
  padding-bottom: 6rem;
  z-index: 10;
}
@media screen and (max-width: 1200px) {
  .visual__txt {
    width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .visual__txt {
    min-height: 250px;
  }
}
.visual__txt .visual__item {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
.visual__txt .visual__item h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: normal;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
}
@media screen and (max-width: 1200px) {
  .visual__txt .visual__item h2 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .visual__txt .visual__item h2 {
    font-size: 1.5rem;
    word-break: keep-all;
    text-wrap: balance;
  }
  .visual__txt .visual__item h2 br {
    display: none;
  }
}
.visual__txt .visual__item.active {
  visibility: visible;
  position: relative;
  animation: fade-in-down 1s ease forwards;
}
@keyframes fade-in-down {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.visual__txt p {
  font-size: 1.4rem;
  font-weight: 600;
  color: #e7e7e7;
  line-height: 1.4;
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .visual__txt p {
    font-size: 1rem;
  }
}
.visual__img {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 0;
  overflow: hidden;
}
.visual__img .car {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  animation: goUp 1.2s cubic-bezier(0.39, 0.58, 0.57, 1) forwards;
}
.visual__img .car img {
  width: 270px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1200px) {
  .visual__img .car img {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .visual__img .car img {
    width: 180px;
  }
}
@keyframes goUp {
  0% {
    transform: translate(20px, 100%);
  }
  100% {
    transform: translate(20px, 30%);
  }
}

.logo__ticker {
  padding: 2rem 0;
}
@media screen and (max-width: 767px) {
  .logo__ticker {
    padding: 1rem 0;
  }
}
.logo__ticker .wrap {
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  gap: 20px;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(0, 0, 0) 10%, rgb(0, 0, 0) 90%, rgba(0, 0, 0, 0));
          mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(0, 0, 0) 10%, rgb(0, 0, 0) 90%, rgba(0, 0, 0, 0));
}
.logo__ticker .ticker__list {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  min-width: 100%;
  animation: scroll-left 30s linear infinite;
}
.logo__ticker .ticker__list li {
  background: #f8f9fa;
  border-radius: 0.5rem;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
}
.logo__ticker .ticker__list li img {
  height: 40px;
  width: auto;
  transition: all 0.3s;
}
@media screen and (max-width: 1200px) {
  .logo__ticker .ticker__list li img {
    height: 28px;
  }
}
.logo__ticker .wrap:hover .ticker__list {
  animation-play-state: paused;
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 40px));
  }
}

.content {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  background-color: #fff;
  padding: 0 0 4rem;
}
@media screen and (max-width: 767px) {
  .content {
    padding: 0 0 2rem;
  }
}
.content__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
}
.content .status {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f9fafb;
  padding: 40px;
  border-radius: 2rem;
  margin-bottom: 4rem;
}
.content .status__item {
  text-align: center;
  flex: 1;
}
.content .status__item span {
  display: block;
  font-size: 1rem;
  color: #6b7684;
  margin-bottom: 10px;
}
.content .status__item strong {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-main);
}
.content .status__divider {
  width: 1px;
  height: 50px;
  background-color: #e5e8eb;
  margin: 0 50px;
}
.content .benefit__title {
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  margin: 2rem 0;
  color: #1a1f27;
}
@media screen and (max-width: 1200px) {
  .content .benefit__title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .content .benefit__title {
    font-size: 1.2rem;
    margin: 2rem 0 1rem;
  }
}
.content .benefit__grid {
  display: flex;
  gap: 30px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1200px) {
  .content .benefit__grid {
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0 1rem;
  }
}
.content .benefit__card {
  width: 100%;
  height: auto;
  background: #fff;
  border: 1px solid #f2f4f7;
  border-radius: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  padding: 2rem;
}
.content .benefit__card .icon {
  margin-bottom: 20px;
}
.content .benefit__card .icon img {
  width: 50px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .content .benefit__card .icon img {
    width: 40px;
  }
}
.content .benefit__card .name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333d4b;
}
@media screen and (max-width: 767px) {
  .content .benefit__card .name {
    font-size: 1.2rem;
  }
}
.content .benefit__card .des {
  font-size: 1rem;
  color: #6b7684;
  line-height: 1.6;
}
.content .benefit__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.content .quick {
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 1200px) {
  .content .quick {
    flex-wrap: wrap;
    padding: 0 1rem;
  }
}
.content .quick__box {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  border-radius: 1rem;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .content .quick__box {
    width: 100%;
    flex: auto;
  }
}
@media screen and (max-width: 767px) {
  .content .quick__box {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem;
  }
}
.content .quick__box--guide {
  background: linear-gradient(135deg, #007aff 0%, #00c3ff 100%);
}
.content .quick__box--check {
  background: linear-gradient(135deg, #1a1f27 0%, #333d4b 100%);
}
.content .quick__text small {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 5px;
}
.content .quick__text h4 {
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .content .quick__text h4 {
    font-size: 1.2rem;
  }
}
.content .quick__link {
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 1rem;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(5px);
  transition: background 0.3s;
}
@media screen and (max-width: 767px) {
  .content .quick__link {
    width: 100%;
    text-align: center;
  }
}
.content .quick__link:hover {
  background: rgba(255, 255, 255, 0.3);
}

.banner {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  background-image: url(../img/banner-bg.png);
  background-position: center center;
  background-size: cover;
  padding: 4rem 0;
}
@media screen and (max-width: 1200px) {
  .banner {
    padding: 4rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .banner {
    background-position: left center;
  }
}
.banner__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .banner__inner {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}
.banner__txt {
  color: #fff;
  text-align: center;
}
.banner__txt h4 {
  font-size: 2.6rem;
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
}
@media screen and (max-width: 1200px) {
  .banner__txt h4 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .banner__txt h4 {
    font-size: 1.6rem;
    gap: 5px;
  }
}
.banner__txt h4 img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .banner__txt h4 img {
    width: 30px;
    height: 30px;
  }
}
.banner__txt p {
  font-size: 1.2rem;
  background-color: #1e293b;
  border-radius: 2rem;
  padding: 6px 2rem;
}
@media screen and (max-width: 767px) {
  .banner__txt p {
    font-size: 0.9rem;
    word-break: keep-all;
    text-wrap: balance;
    padding: 10px 2rem;
  }
}

.tip {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  background-color: #fff;
  padding: 4rem 0;
}
@media screen and (max-width: 1200px) {
  .tip {
    padding: 2rem 1rem;
  }
}
.tip__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
}
.tip__list {
  width: 100%;
  height: auto;
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 1200px) {
  .tip__list {
    flex-wrap: wrap;
  }
}
.tip__list li {
  width: 100%;
  height: auto;
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  transition: transform 0.2s ease;
  padding: 2rem;
}
.tip__list li:hover {
  transform: translateY(-10px);
}
.tip__list li:hover span::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 150%;
  background-color: #fff;
  transform: translateX(200px) rotate(20deg);
  opacity: 0.2;
  animation: light 1.4s ease forwards;
}
@media screen and (max-width: 1200px) {
  .tip__list li {
    width: calc(50% - 8px);
  }
  .tip__list li:hover {
    transform: none;
  }
}
@media screen and (max-width: 767px) {
  .tip__list li {
    width: 100%;
  }
  .tip__list li:hover {
    transform: none;
  }
}
.tip__list li span {
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--color-main);
  border-radius: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  margin-bottom: 1rem;
  padding: 3px 2rem;
  overflow: hidden;
  position: relative;
}
@keyframes light {
  0% {
    transform: translateX(200px) rotate(20deg);
  }
  100% {
    transform: translateX(-100px) rotate(20deg);
  }
}
.tip__list li h4 {
  font-size: 1.2rem;
  color: var(--color-base);
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .tip__list li h4 {
    font-size: 1.1rem;
  }
}
.tip__list li p {
  font-size: 0.95rem;
  color: #6b7684;
}