@charset "UTF-8";
/* 전역 변수 */
:root {
  --color-main: #066bfd;
  --color-sub: #1e293b;
  --color-error: #ef4444;
  --color-gray: #555;
  --color-base: #222;
  --color-border: #ccc;
}

.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 */
/*
 * 파일명 : sub.scss
 * 역할   : 서브페이지 레이아웃
 */
.breadcrumb {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  box-shadow: 0 1px 0 #e5e7eb;
  padding: 1rem;
}
@media screen and (max-width: 1200px) {
  .breadcrumb {
    padding: 1rem;
  }
}
.breadcrumb__inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: flex-start;
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.breadcrumb ol li {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: #666;
}
.breadcrumb ol li:not(:first-child)::before {
  content: ">";
  display: inline-block;
  margin: 0 10px;
  font-size: 0.85rem;
  color: #999;
}
.breadcrumb ol li[aria-current=page] {
  font-weight: 700;
  color: #111;
}
.breadcrumb ol li a {
  color: #666;
  text-decoration: none;
  transition: color 0.15s;
}
.breadcrumb ol li a:hover {
  color: var(--color-main);
  text-decoration: underline;
}

.content {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
}
.content__inner {
  width: 100%;
  max-width: 800px;
  height: auto;
}
@media screen and (max-width: 1200px) {
  .content__inner {
    max-width: 100%;
  }
}
.content__title {
  text-align: center;
  margin-bottom: 2rem;
}
.content__title strong {
  font-size: 2rem;
  font-weight: 800;
}
@media screen and (max-width: 1200px) {
  .content__title strong {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .content__title strong {
    font-size: 1.4rem;
  }
}
.content__title h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-main);
}
@media screen and (max-width: 1200px) {
  .content__title h2 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .content__title h2 {
    font-size: 1.4rem;
    word-break: keep-all;
    text-wrap: balance;
  }
}
.content__items {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.content__item {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.content__item .img {
  width: 100%;
  height: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #fff, #fbfbfb);
  position: relative;
}
@media screen and (max-width: 1200px) {
  .content__item .img {
    height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .content__item .img {
    height: 200px;
  }
}
.content__item .img img {
  width: auto;
  height: 175px;
  -o-object-fit: contain;
     object-fit: contain;
  animation: bounce ease-in-out 1.4s infinite;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .content__item .img img {
    height: 150px;
  }
}
@media screen and (max-width: 767px) {
  .content__item .img img {
    height: 100px;
  }
}
.content__item .img::after {
  content: "";
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 12px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  filter: blur(4px);
  animation: shadowScale ease-in-out 1.4s infinite;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .content__item .img::after {
    bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .content__item .img::after {
    width: 100px;
    bottom: 20px;
  }
}
.content__item .txt {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.content__item .txt h3 {
  font-size: 1.4rem;
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  .content__item .txt h3 {
    font-size: 1.1rem;
    word-break: keep-all;
    text-wrap: balance;
  }
  .content__item .txt h3 > br {
    display: none;
  }
}
.content__item .txt p {
  font-size: 1.1rem;
  color: #7f7f7f;
}
@media screen and (max-width: 767px) {
  .content__item .txt p {
    font-size: 0.95rem;
  }
  .content__item .txt p > br {
    display: none;
  }
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes shadowScale {
  0% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) scale(1.3, 1);
    opacity: 0.5;
  }
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
}
.content__des {
  width: 100%;
  height: auto;
  background-color: #eaf1ff;
  border-radius: 1rem;
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .content__des p {
    font-size: 0.95rem;
  }
  .content__des p > br {
    display: none;
  }
}