@charset "UTF-8";

.main-container {
  position: relative;
  z-index: 0;
}

.main-section {
  position: relative;
}

.main-section .floating-title {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  margin: 0;
  pointer-events: none;
  white-space: nowrap;
}

.main-inner {
  width: 105rem;
  min-height: inherit;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 2.5rem;
  margin: 0 auto;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-inner {
    padding: 0 1.25rem;
  }
}

@media only screen and (max-width: 767px) {
  .main-inner {
    padding: 0 1rem;
  }
}

/* 섹션 공통 */
.section-msg {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.section-ttl {
  display: inline-block;
  font-size: 2.8125rem;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .section-ttl {
    font-size: 2.25rem;
  }
}

@media only screen and (max-width: 767px) {
  .section-ttl {
    font-size: 1.5rem;
  }
}

.section-ttl strong {
  font-weight: 700;
  color: #D0121B;
}

.section-desc {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.6;
  color: #555;
  letter-spacing: -0.025rem;
  word-break: keep-all;
  overflow-wrap: break-word;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .section-desc {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 767px) {
  .section-desc span {
    display: block;
  }

  .section-desc {
    font-size: 0.875rem;
  }
}

/* 첫번째 섹션 */
.main-section.type-first {
  position: relative;
  z-index: 0;
  background-color: #F8F9FA;
}

.main-section.type-first .first-section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  /* 콘텐츠 뒤로 */
  pointer-events: none;
  /* 클릭 방해 금지 */
}

.main-section.type-first .first-section-bg .bg-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209, 50, 40, 0.1) 0%, rgba(209, 50, 40, 0) 70%);
  transform: translateZ(0);
  will-change: transform;
}

.main-section.type-first .first-section-bg .bg-shape:nth-child(1) {
  width: 50vw;
  height: 50vw;
  bottom: -15vw;
  left: -10vw;
  animation: floatShape1 15s ease-in-out infinite alternate;
}

.main-section.type-first .first-section-bg .bg-shape:nth-child(2) {
  width: 60vw;
  height: 60vw;
  top: -10vw;
  right: -15vw;
  animation: floatShape2 18s ease-in-out infinite alternate;
}

@keyframes floatShape1 {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(3vw, 3vw) scale(1.05);
    opacity: 0.4;
  }
}

@keyframes floatShape2 {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }

  100% {
    transform: translate(-3vw, -3vw) scale(1.05);
    opacity: 1;
  }
}

@keyframes textShine {
  0% {
    background-position: -100% center;
  }

  100% {
    background-position: 100% center;
  }
}

.main-section.type-first .first-section {
  position: relative;
  display: flex;
  align-items: center;
  height: 100vh;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-first .first-section {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 8.75rem 0 0 0;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-first .first-section {
    height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 8.75rem 0 3.75rem 0;
  }
}

.main-section.type-first .first-section .section-msg {
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-first .first-section .section-msg {
    gap: 0.9375rem;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-first .first-section .section-msg {
    gap: 0.3125rem;
  }
}

.main-section.type-first .first-section .section-msg .msg-logo {
  color: #E8E8E8;
  font-family: "Roboto";
  font-size: 3.9375rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.9375rem;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-first .first-section .section-msg .msg-logo {
    font-size: 3rem;
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-first .first-section .section-msg .msg-logo {
    font-size: 1.625rem;
    text-align: center;
  }
}

.main-section.type-first .first-section .section-ttl {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(120deg, #222 35%, #d0121b 48%, #ff4b4b 50%, #d0121b 52%, #222 65%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: textShine 8s ease-in-out infinite alternate;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-first .first-section .section-ttl {
    font-size: 3rem;
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-first .first-section .section-ttl {
    font-size: 1.75rem;
    text-align: center;
  }
}

.main-section.type-first .first-section .section-desc {
  font-size: 1.375Rem;
  font-weight: 300;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-first .first-section .section-desc {
    font-size: 1.125rem;
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-first .first-section .section-desc {
    font-size: 0.9375rem;
    text-align: center;
  }
}

.main-section.type-first .first-section .section-desc strong {
  font-weight: 600;
}

.main-section.type-first .main-visual {
  position: absolute;
  z-index: 0;
  width: 100%;
  box-sizing: border-box;
  padding-left: 50%;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-first .main-visual {
    position: relative;
    padding-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-first .main-visual {
    position: relative;
    padding-left: 0;
  }
}

.main-section.type-first .main-visual .visual-image {
  position: relative;
  transform: translateY(10%);
  text-align: center;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-first .main-visual .visual-image {
    transform: translateY(0);
  }
}

.main-section.type-first .main-visual .visual-image video,
.main-section.type-first .main-visual .visual-image img {
  max-width: none;
  width: 46.875vw;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {

  .main-section.type-first .main-visual .visual-image video,
  .main-section.type-first .main-visual .visual-image img {
    width: 100%;
    max-width: 80vw;
  }
}

@media only screen and (max-width: 767px) {

  .main-section.type-first .main-visual .visual-image video,
  .main-section.type-first .main-visual .visual-image img {
    width: 100%;
  }
}

.main-section.type-first .main-visual .visual-video {
  position: relative;
  width: 100%;
  height: 100%;
}

.main-section.type-first .main-visual .visual-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}

/* 두번째 섹션 */
.main-section.type-second {
  position: relative;
  z-index: 10;
  background-color: #fff;
}

.main-section.type-second::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 12.5rem;
  background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.main-section.type-second .second-section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  /* 콘텐츠들의 z-index가 기본적으로 자식으로 쌓이므로 0이어도 배경 뒤로 감 */
  pointer-events: none;
}

.main-section.type-second .second-section-bg .bg-shape {
  position: absolute;
  border-radius: 50%;
  /* 1섹션과 동일한 붉은 광원 효과를 더 은은하게 적용 */
  background: radial-gradient(circle, rgba(209, 50, 40, 0.08) 0%, rgba(209, 50, 40, 0) 70%);
  transform: translateZ(0);
  will-change: transform;
  /* 긴 섹션 전반에 결쳐 흩뿌림 */
}

.main-section.type-second .second-section-bg .bg-shape.shape-1 {
  width: 60vw;
  height: 60vw;
  top: -5%;
  left: -15vw;
  animation: floatShape1 20s ease-in-out infinite alternate;
}

.main-section.type-second .second-section-bg .bg-shape.shape-2 {
  width: 50vw;
  height: 50vw;
  top: 20%;
  right: -10vw;
  animation: floatShape2 18s ease-in-out infinite alternate-reverse;
  background: radial-gradient(circle, rgba(209, 50, 40, 0.06) 0%, rgba(209, 50, 40, 0) 70%);
}

.main-section.type-second .second-section-bg .bg-shape.shape-3 {
  width: 70vw;
  height: 70vw;
  top: 45%;
  left: -20vw;
  animation: floatShape1 25s ease-in-out infinite alternate;
}

.main-section.type-second .second-section-bg .bg-shape.shape-4 {
  width: 55vw;
  height: 55vw;
  top: 70%;
  right: -15vw;
  animation: floatShape2 22s ease-in-out infinite alternate-reverse;
}

.main-section.type-second .second-section-bg .bg-shape.shape-5 {
  width: 65vw;
  height: 65vw;
  bottom: -5%;
  left: -10vw;
  animation: floatShape1 19s ease-in-out infinite alternate;
}

.main-section.type-second .second-section-bottom-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.main-section.type-second .second-section-bottom-bg::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 12.5rem;
  background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.main-section.type-second .section-line {
  position: absolute;
  top: 10rem;
  left: 50%;
  transform: translateX(-10rem);
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-second .section-line {
    top: 0;
    left: 0;
    transform: translate(0);
  }
}

.main-section.type-second .section-line .fixed-line {
  transform: translate(-9rem, 4.25rem);
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-second .section-line .fixed-line {
    transform: translate(0);
  }
}

.main-section.type-second .section-line .line-pc {
  display: block;
}

.main-section.type-second .section-line .line-tablet {
  display: none;
}

.main-section.type-second .section-line .line-mobile {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-second .section-line .line-pc {
    display: block;
  }

  .main-section.type-second .section-line .line-mobile {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-second .section-line .line-pc {
    display: none;
  }

  .main-section.type-second .section-line .line-mobile {
    display: block;
  }
}

.main-section.type-second .section-line-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.main-section.type-second .second-section {
  display: grid;
  grid-template-columns: 1fr 52.5rem;
  align-items: start;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-second .second-section {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-second .second-section {
    grid-template-columns: 1fr;
  }
}

.main-section.type-second .section-left {
  align-self: flex-start;
  position: sticky;
  top: 0;
  height: -moz-fit-content;
  height: fit-content;
  padding-top: 13.4375rem;
  padding-bottom: 10vh;
  width: 40rem;
  max-width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-second .section-left {
    position: relative;
    width: 100%;
    padding-top: 10rem;
    padding-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-second .section-left {
    position: relative;
    width: 100%;
    padding-top: 7.5rem;
    padding-bottom: 0;
  }
}

.main-section.type-second .section-right {
  position: relative;
  width: 100%;
  padding: 10rem 0 20rem;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-second .section-right {
    padding: 0;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-second .section-right {
    padding: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-second .section-msg {
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-second .section-msg {
    text-align: center;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-second .section-desc {
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-second .section-desc br {
    display: none;
  }
}

.main-section.type-second .card-navi {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.625rem;
  padding-left: 1.25rem;
  margin-top: 3.75rem;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-second .card-navi {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-second .card-navi {
    display: none;
  }
}

.main-section.type-second .card-navi .navi-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.1875rem;
  height: 100%;
  background-color: #E3E3E3;
}

.main-section.type-second .card-navi .navi-progress .progress-bar {
  display: block;
  width: 100%;
  height: 0;
  background-color: #D0121B;
  transition: height 0.4s ease-out;
}

.main-section.type-second .card-navi .navi-item .item-trigger {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  width: 100%;
  height: 2.625rem;
}

.main-section.type-second .card-navi .navi-item .item-order {
  width: 2.625rem;
  color: #B4B8BD;
  font-family: Pretendard;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02rem;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 767px) {
  .main-section.type-second .card-navi .navi-item .item-order {
    font-size: 1.375rem;
  }
}

.main-section.type-second .card-navi .navi-item .item-name {
  color: #B4B8BD;
  font-family: Pretendard;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: -0.02rem;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 767px) {
  .main-section.type-second .card-navi .navi-item .item-name {
    font-size: 1.375rem;
  }
}

.main-section.type-second .card-navi .navi-item.is-active .item-order {
  color: #D0121B;
}

.main-section.type-second .card-navi .navi-item.is-active .item-name {
  font-size: 2rem;
  color: #212529;
}

.main-section.type-second .card-list {
  display: flex;
  flex-direction: column;
  gap: 16.25rem;
  padding-top: 10rem;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-second .card-list {
    align-items: center;
    gap: 10rem;
    padding-top: 7.5rem;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-second .card-list {
    gap: 5rem;
    padding-top: 5rem;
  }
}

.main-section.type-second .card-item {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-second .card-item {
    align-items: center;
    width: -moz-max-content;
    width: max-content;
    gap: 2.5rem;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-second .card-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
  }
}

.main-section.type-second .card-item.is-active .item-thumb img {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%);
}

.main-section.type-second .card-item.is-active .item-conts {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.main-section.type-second .card-item.is-hovered {
  cursor: none;
}

.main-section.type-second .card-item .item-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  cursor: none;
  z-index: 5;
  outline: none;
}

.main-section.type-second .card-item .item-thumb {
  position: relative;
  width: 25.625rem;
  height: 31.25rem;
  background-color: #E3E3E3;
  border-radius: 1Rem;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-second .card-item .item-thumb {
    width: 20rem;
    height: 25rem;
    opacity: 1;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-second .card-item .item-thumb {
    width: 17.5rem;
    height: 21.25rem;
    opacity: 1;
  }
}

.main-section.type-second .card-item .item-thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, -40%);
  transition: all 0.5s ease;
}

.main-section.type-second .card-item .item-frame {
  display: flex;
}

.main-section.type-second .card-item .item-conts {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  transition: all 0.3s ease;
  visibility: hidden;
  opacity: 0;
  transform: translateY(1.25rem);
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-second .card-item .item-conts {
    max-width: 21.25rem;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-second .card-item .item-conts {
    max-width: 100%;
  }
}

.main-section.type-second .card-item .item-name {
  margin-bottom: 0.9375rem;
  color: #111;
  font-size: 3.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.03375rem;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-second .card-item .item-name {
    font-size: 2.625rem;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-second .card-item .item-name {
    font-size: 2rem;
  }
}

.main-section.type-second .card-item .item-intro {
  color: #333;
  font-size: 1.5625rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: -0.025rem;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-second .card-item .item-intro {
    font-size: 1.25rem;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-second .card-item .item-intro br {
    display: none;
  }

  .main-section.type-second .card-item .item-intro {
    font-size: 1.0625rem;
  }
}

.main-section.type-second .card-item .item-desc {
  color: #555;
  font-size: 1.1875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.025rem;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-second .card-item .item-desc {
    font-size: 1.0625rem;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-second .card-item .item-desc {
    font-size: 0.9375rem;
  }
}

.main-section.type-second .card-item {
  /* 첫, 세번째 카드 기본 (이미지 왼쪽) */
}

.main-section.type-second .card-item:nth-child(2n+1) .item-frame {
  align-items: flex-start;
}

.main-section.type-second .card-item:nth-child(2n+1) .item-conts {
  padding-top: 22.5rem;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-second .card-item:nth-child(2n+1) .item-conts {
    padding: 0;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-second .card-item:nth-child(2n+1) .item-conts {
    padding-top: 0;
  }
}

.main-section.type-second .card-item {
  /* 짝수번째 카드 (이미지 오른쪽) */
}

.main-section.type-second .card-item:nth-child(2n) {
  margin-bottom: 11.25rem;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-second .card-item:nth-child(2n) {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-second .card-item:nth-child(2n) {
    align-items: center;
    margin-bottom: 0;
    text-align: center;
  }
}

.main-section.type-second .card-item:nth-child(2n) .item-thumb {
  order: 2;
  transform: translateY(11.25rem);
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-second .card-item:nth-child(2n) .item-thumb {
    order: 1;
    transform: translateY(0);
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-second .card-item:nth-child(2n) .item-thumb {
    order: 1;
    transform: translateY(0);
  }
}

.main-section.type-second .card-item:nth-child(2n) .item-frame {
  order: 1;
  align-items: flex-start;
}

@media only screen and (max-width: 767px) {
  .main-section.type-second .card-item:nth-child(2n) .item-frame {
    order: 2;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-second .card-item:last-child {
    margin-bottom: 10rem;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-second .card-item:last-child {
    margin-bottom: 10rem;
  }
}

.main-section.type-second {
  /* 네비게이션 및 라인을 따라가는 더미 카드 (card-item.item-thumb의 크기를 그대로 상속받고 JS에서 0.8로 scale 됨) */
}

.main-section.type-second .moving-dummy {
  position: absolute;
  width: 25.625rem;
  height: 31.25rem;
  background: rgba(208, 18, 27, 0.8);
  border-radius: 1rem;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 2rem;
  box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.5);
  pointer-events: none;
  transition: background-image 0.4s ease, border-radius 0.4s ease;
  background-size: cover;
  background-position: center;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-second .moving-dummy {
    width: 20rem;
    height: 25rem;
    visibility: hidden;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-second .moving-dummy {
    visibility: hidden;
    opacity: 0 !important;
    width: 17.5rem;
    height: 21.25rem;
  }
}

.main-section.type-second .moving-dummy {
  /* 지나간 카드의 배경을 복사할 수 있는 클래스 (JS에서 부여) */
}

.main-section.type-second .moving-dummy.type-01 {
  background-image: url("../../img/main/second-section/card_01.png");
}

.main-section.type-second .moving-dummy.type-02 {
  background-image: url("../../img/main/second-section/card_02.png");
}

.main-section.type-second .moving-dummy.type-03 {
  background-image: url("../../img/main/second-section/card_03.png");
}

.main-section.type-second .moving-dummy.type-04 {
  background-image: url("../../img/main/second-section/card_04.png");
}

/* 세번째 섹션 */
.main-section.type-thrid {
  position: relative;
  overflow: hidden;
  z-index: 10;
  background-color: #fff;
}

.main-section.type-thrid .floating-title br {
  display: none;
}

@media only screen and (max-width: 767px) {
  .main-section.type-thrid .floating-title br {
    display: block;
  }
}

.main-section.type-thrid .thrid-section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.main-section.type-thrid .thrid-section-bg::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 12.5rem;
  background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.main-section.type-thrid .thrid-section {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
}

.main-section.type-thrid .thrid-section .section-msg {
  gap: 1.25rem;
  align-items: center;
  text-align: center;
}

.main-section.type-thrid .thrid-section .section-msg br {
  display: none;
}

@media only screen and (max-width: 767px) {
  .main-section.type-thrid .thrid-section .section-msg br {
    display: block;
  }
}

.main-section.type-thrid .thrid-section .exp-list-wrapper {
  margin-left: -2.5rem;
  margin-right: -2.5rem;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-thrid .thrid-section .exp-list-wrapper {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-thrid .thrid-section .exp-list-wrapper {
    margin-left: -1rem;
    margin-right: -1rem;
  }
}

.main-section.type-thrid .thrid-section .exp-list {
  margin-top: 7.5rem;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .main-section.type-thrid .thrid-section .exp-list {
    margin-top: 3.75rem;
  }
}

.main-section.type-thrid .thrid-section .exp-track {
  display: flex;
  gap: 1.75rem;
  width: -moz-max-content;
  width: max-content;
  animation: marquee-slide 40s linear infinite;
  animation-play-state: paused;
}

@media only screen and (max-width: 767px) {
  .main-section.type-thrid .thrid-section .exp-track {
    gap: 1rem;
    animation-duration: 30s;
  }
}

.main-section.type-thrid .thrid-section .exp-track.is-running {
  animation-play-state: running;
}

@keyframes marquee-slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.main-section.type-thrid .thrid-section .exp-item {
  width: auto;
}

.main-section.type-thrid .thrid-section .exp-item .item-card {
  display: flex;
  flex-direction: column;
  width: 23.0625rem;
  height: 20.5625rem;
  padding: 3.125rem 2.5rem;
  align-items: flex-start;
  flex-shrink: 0;
  border-radius: 2.5rem;
  border: 1px solid rgba(211, 39, 39, 0.13);
  background: linear-gradient(100deg, #FDF2F2 0%, rgba(255, 255, 255, 0.1) 77.35%, #FDF6F6 100%);
  box-shadow: 0.25rem 0.25rem 0.75rem 0 rgba(219, 76, 76, 0.1);
  backdrop-filter: blur(0.15625rem);
  transition: all 0.8s ease;
  pointer-events: none;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-thrid .thrid-section .exp-item .item-card {
    width: 20rem;
    height: 17.5rem;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-thrid .thrid-section .exp-item .item-card {
    width: 17.5rem;
    height: 15rem;
  }
}

.main-section.type-thrid .thrid-section .exp-item .item-label {
  color: #111;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 150%;
}

@media only screen and (max-width: 767px) {
  .main-section.type-thrid .thrid-section .exp-item .item-label {
    font-size: 1.125rem;
  }
}

.main-section.type-thrid .thrid-section .exp-item .itme-image img {
  width: 8.75rem;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-thrid .thrid-section .exp-item .itme-image img {
    width: 7.5rem;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-thrid .thrid-section .exp-item .itme-image img {
    width: 6.25rem;
  }
}

.main-section.type-thrid .thrid-section .exp-item .item-conts {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.main-section.type-thrid .thrid-section .exp-item .item-count {
  display: flex;
  color: #222;
  font-size: 5.5625rem;
  font-weight: 700;
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  .main-section.type-thrid .thrid-section .exp-item .item-count {
    font-size: 3.75rem;
  }
}

.main-section.type-thrid .thrid-section .exp-item .item-count .count-unit {
  align-self: flex-end;
  font-size: 3.375rem;
}

@media only screen and (max-width: 767px) {
  .main-section.type-thrid .thrid-section .exp-item .item-count .count-unit {
    font-size: 2.25rem;
  }
}

.main-section.type-thrid .thrid-section .exp-item.is-active .item-card {
  background: #D0121B;
  box-shadow: 0.25rem 0.25rem 0.75rem 0 rgba(0, 0, 0, 0.1);
  color: #fff;
  transform: translateY(-2.5rem);
}

@media only screen and (max-width: 767px) {
  .main-section.type-thrid .thrid-section .exp-item.is-active .item-card {
    transform: translateY(0);
  }
}

.main-section.type-thrid .thrid-section .exp-item.is-active .item-card .item-label,
.main-section.type-thrid .thrid-section .exp-item.is-active .item-card .item-count {
  color: inherit;
}

/* 네번째 섹션 */
.main-section.type-fourth {
  position: relative;
  z-index: 10;
  background-color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-fourth {
    padding: 5rem 0;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-fourth {
    padding: 3.75rem 0;
  }
}

.main-section.type-fourth .fourth-section-bg {
  position: sticky;
  top: 50vh;
  z-index: 0;
  margin-left: 50%;
  transform: translate(-50%, -50%);
  width: 0%;
  height: 34.0625rem;
  margin-bottom: -34.0625rem;
  background-color: #F8F9FA;
  border-radius: 0.9375rem;
  pointer-events: none;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-fourth .fourth-section-bg {
    position: absolute;
    top: 12.5rem;
    margin-left: 0;
    left: 50%;
    margin-bottom: 0;
    width: 100%;
    height: 25rem;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-fourth .fourth-section-bg {
    position: absolute;
    top: 9.375rem;
    margin-left: 0;
    left: 50%;
    margin-bottom: 0;
    width: 100%;
    height: 21.875rem;
  }
}

.main-section.type-fourth .fourth-section {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  height: auto;
  min-height: 100vh;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-fourth .fourth-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-fourth .fourth-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

.main-section.type-fourth .fourth-section .section-left {
  position: sticky;
  top: 50vh;
  transform: translateY(-50%);
  align-self: start;
  height: -moz-fit-content;
  height: fit-content;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-fourth .fourth-section .section-left {
    position: relative;
    top: 0;
    transform: none;
    align-self: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: baseline;
    padding-bottom: 0;
    margin-bottom: 3.75rem;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-fourth .fourth-section .section-left {
    position: relative;
    top: 0;
    transform: none;
    align-self: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: baseline;
    padding-bottom: 0;
    margin-bottom: 2.5rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-fourth .fourth-section .section-left .news-more {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-fourth .fourth-section .section-left .news-more {
    display: none;
  }
}

.main-section.type-fourth .fourth-section .section-right {
  position: relative;
  align-self: flex-start;
  padding-top: 9.375rem;
  height: auto;
  padding-bottom: 6.25rem;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-fourth .fourth-section .section-right {
    padding-top: 0;
    padding-bottom: 3.75rem;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-fourth .fourth-section .section-right {
    padding-top: 0;
    padding-bottom: 2.5rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-fourth .fourth-section .section-msg {
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-fourth .fourth-section .section-msg {
    text-align: center;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-fourth .fourth-section .section-ttl br {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-fourth .fourth-section .section-ttl br {
    display: none;
  }
}

.main-section.type-fourth .fourth-section .news-more {
  display: inline-flex;
  width: 10rem;
  height: 3.75rem;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  border-radius: 62.4375rem;
  background: #D0121B;
  transition: all 0.3s ease;
  margin-top: 3.4375rem;
}

@media only screen and (max-width: 767px) {
  .main-section.type-fourth .fourth-section .news-more {
    margin-top: 2.5rem;
  }
}

.main-section.type-fourth .fourth-section .news-more:hover .link-ico,
.main-section.type-fourth .fourth-section .news-more:focus .link-ico {
  color: #D0121B;
  background-color: #fff;
}

.main-section.type-fourth .fourth-section .news-more:active {
  background-color: rgb(184.5309734513, 15.9690265487, 23.953539823);
}

.main-section.type-fourth .fourth-section .news-more:active .link-ico {
  color: #D0121B;
  background-color: #fff;
}

.main-section.type-fourth .fourth-section .news-more .link-txt {
  color: #FFF;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1rem;
  letter-spacing: -0.02rem;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-fourth .fourth-section .news-more .link-txt {
    font-size: 0.9375rem;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-fourth .fourth-section .news-more .link-txt {
    font-size: 0.875rem;
  }
}

.main-section.type-fourth .fourth-section .news-more .link-ico {
  display: flex;
  width: 1.75rem;
  height: 1.75rem;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transition: all 0.3s ease;
}

.main-section.type-fourth .fourth-section .news-more .link-ico svg {
  width: 1rem;
  height: 1rem;
}

.main-section.type-fourth .fourth-section .news-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.375rem;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-fourth .fourth-section .news-list {
    gap: 2.5rem;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-fourth .fourth-section .news-list {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.main-section.type-fourth .fourth-section .news-item:nth-child(2n+1) .item-card {
  transform: translateY(5.3125rem);
}

@media only screen and (max-width: 767px) {
  .main-section.type-fourth .fourth-section .news-item:nth-child(2n+1) .item-card {
    transform: translateY(0);
  }
}

.main-section.type-fourth .fourth-section .news-item .item-card {
  position: relative;
  display: flex;
  width: 29.6875rem;
  height: 31.875rem;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 1rem;
  background: #FFF;
  box-shadow: 0.25rem 0.375rem 2.1875rem 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .main-section.type-fourth .fourth-section .news-item .item-card {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .main-section.type-fourth .fourth-section .news-item .item-card {
    width: 100%;
    height: auto;
  }
}

.main-section.type-fourth .fourth-section .news-item .item-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #f4f4f4;
}

.main-section.type-fourth .fourth-section .news-item .item-thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  min-width: 100%;
  transform: translate(-50%, -50%);
}

.main-section.type-fourth .fourth-section .news-item .item-conts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 2.25rem;
}

@media only screen and (max-width: 767px) {
  .main-section.type-fourth .fourth-section .news-item .item-conts {
    padding: 1.25rem 1.5rem;
  }
}

.main-section.type-fourth .fourth-section .news-item .item-category {
  display: flex;
  padding: 0.125rem 0.5rem;
  justify-content: center;
  align-items: center;
  border-radius: 0.25rem;
  background: rgba(209, 50, 40, 0.1);
  color: #D13228;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.0125rem;
}

@media only screen and (max-width: 767px) {
  .main-section.type-fourth .fourth-section .news-item .item-category {
    font-size: 0.875rem;
  }
}

.main-section.type-fourth .fourth-section .news-item .item-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: keep-all;
  overflow-wrap: break-word;
  color: #222;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.03rem;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .main-section.type-fourth .fourth-section .news-item .item-title {
    font-size: 1rem;
    line-height: 1.4;
  }
}

.main-section.type-fourth .fourth-section .news-item .item-date {
  color: #555;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.0125rem;
}

@media only screen and (max-width: 767px) {
  .main-section.type-fourth .fourth-section .news-item .item-date {
    font-size: 0.875rem;
  }
}

.main-section.type-fourth .fourth-section .news-item .item-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

/* ==========================================================
   인트로 애니메이션 (마스크 로고 커튼콜 모듈)
   ========================================================== */
#intro-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  overflow: hidden;
  background: transparent;
  /* 3중 커튼 레이어 (우측으로 걷히며 사라짐) */
}

#intro-wrapper .glass-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#intro-wrapper {
  /* 가장 위쪽 짙은 막 (제일 먼저 걷힘) */
}

#intro-wrapper .layer-1 {
  background: #ffffff;
  z-index: 30;
}

#intro-wrapper {
  /* 중간 반투명 블러 막 (두 번째로 걷힘) */
}

#intro-wrapper .layer-2 {
  background: #fdfdfd;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 20;
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}

#intro-wrapper {
  /* 가장 아랫쪽 부드러운 블러 막 (마지막에 걷힘) */
}

#intro-wrapper .layer-3 {
  background: #fafafa;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 10;
  border-left: 1px solid rgba(0, 0, 0, 0.03);
}

#intro-wrapper {
  /* 중앙 로고 컨테이너 */
}

#intro-wrapper #logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  opacity: 0;
}

#intro-wrapper {
  /* SVG 오차 조정 영역 (반응형 보장) */
}

#intro-wrapper svg {
  max-width: 72%;
  height: auto;
  transform-origin: center center;
  will-change: transform;
  overflow: visible;
  transform: translateZ(0);
}

#intro-wrapper {
  /* 하단 서브 텍스트 영역 (반응형 폰트 적용) */
}

#intro-wrapper .loading-text {
  color: #1a1a1a;
  /* 모바일에선 최소 24px, PC에선 48px까지 유연하게 대응 */
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  position: absolute;
  bottom: -20px;
  opacity: 0;
}

#intro-wrapper .intro-subtext {
  font-size: clamp(14px, 1.5vw, 24px);
  color: #333333;
  font-weight: 600;
  letter-spacing: -0.02em;
  opacity: 0;
  position: absolute;
  bottom: -60px;
  white-space: nowrap;
}

.point-cursor-text,
.point-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 150px;
  height: 150px;
  z-index: 9999;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.5);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.3s;
}

.is-visible.point-cursor-text,
.is-visible.point-cursor {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.point-cursor .cursor-bg {
  position: absolute;
  width: 90px;
  height: 90px;
  background-color: #D13228;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.point-cursor .plus-icon {
  position: absolute;
  width: 28px;
  height: 28px;
  z-index: 2;
}

.point-cursor-text {
  mix-blend-mode: difference;
}

.point-cursor-text .rotating-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: #fff;
  animation: rotateText 12s linear infinite;
}

.point-cursor-text .rotating-text text {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}