@charset "UTF-8";
.font-Nothing-You-Could-Do {
  font-family: "Nothing You Could Do";
}

html {
  max-width: 100%;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
  background-image: url(https://../assets/images/bg.jpg);
  background-position: top center;
  background-size: 100%;
  background-repeat: no-repeat;
  background-attachment: scroll;
}
@media (max-width: 601px) {
  body {
    background-size: 600px auto;
  }
}

#header-top {
  top: 0;
  inset-inline: 0;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
  /* 섹션7 진입 시 사라질 클래스 */
}
#header-top.is-hidden {
  transform: translateY(-100%);
}
#header-top .header-wrap {
  min-width: 300px;
  margin: 0 auto;
  /* 최상단 탑 라인배너 */
}
#header-top .header-wrap .top-line-banner {
  position: relative;
  height: 1.8rem;
  background-color: #614231;
  overflow: hidden;
}
#header-top .header-wrap .top-line-banner .banner-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  color: #fefdfc;
  font-size: 12px;
  opacity: 0;
  animation: fadeLoop 6.2s ease-in-out infinite;
}
#header-top .header-wrap .top-line-banner .banner-text .highlight {
  color: #f1d8be;
}
#header-top .header-wrap .top-line-banner .text-2 {
  animation-delay: 3.1s;
}
@keyframes fadeLoop {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  } /* 서서히 나타남 */
  45% {
    opacity: 1;
  } /* 유지 */
  60% {
    opacity: 0;
  } /* 서서히 사라짐 */
  100% {
    opacity: 0;
  }
}
#header-top .header-wrap .header-top-bar {
  height: auto;
  min-height: 9vw;
  background-color: transparent;
}
#header-top .header-wrap .header-top-bar.is-active {
  background-color: rgba(235, 228, 220, 0.05); /* 바뀔 불투명 배경 */
  backdrop-filter: blur(5px); /* 유리창 효과 */
  -webkit-backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(97, 66, 49, 0.08);
  box-shadow: 0 4px 20px rgba(97, 66, 49, 0.05);
}
#header-top .header-wrap .header-top-bar .con {
  padding-inline: 4vw 11rem;
}
#header-top .header-wrap .header-top-bar .con .header-top-bar__left .logo-box {
  text-align: left;
  gap: 1rem;
}
#header-top .header-wrap .header-top-bar .con .header-top-bar__left .logo-box .logo a {
  font-size: 5vw;
  white-space: nowrap;
}
#header-top .header-wrap .header-top-bar .con .header-top-bar__left .logo-box .bookmark {
  transform: translateY(-1.5vw);
}
#header-top .header-wrap .header-top-bar .con .header-top-bar__left .logo-box .bookmark img {
  height: 8vw;
}
#header-top .header-wrap .header-top-bar .con .header-top-bar__right .util-box {
  width: 80%;
  padding: 0.3rem 1rem;
  border: 1px solid #5a5858;
  border-radius: 40px;
  gap: 1.5rem;
  transform: translateY(-1.5vw);
}
#header-top .header-wrap .header-top-bar .con .header-top-bar__right .util-box a {
  display: flex;
  color: #5a5858;
}
#header-top .header-wrap .header-top-bar .con .header-top-bar__right .util-box a img {
  width: clamp(1.4rem, 2.5vw, 2rem);
}
#header-top .header-wrap .header-top-bar .con .header-top-bar__right .util-box a:hover img {
  filter: invert(45%) sepia(5%) saturate(400%) hue-rotate(0deg) brightness(95%) contrast(92%);
}
#header-top .header-wrap .header-top-bar .con .menu-box {
  transform: translateY(-2vw);
}
#header-top .header-wrap .header-top-bar .con .menu-box .menu-inner {
  max-width: 1000px;
  margin: 0 auto;
}
#header-top .header-wrap .header-top-bar .con .menu-box .menu-inner .menu-list {
  gap: 4vw;
  white-space: nowrap;
}
#header-top .header-wrap .header-top-bar .con .menu-box .menu-inner .menu-list li a {
  font-size: clamp(0.95rem, 1.2vw, 1.2rem);
  color: #21120a;
  font-weight: 500;
  transition: color 0.3s;
  letter-spacing: 2;
}
#header-top .header-wrap .header-top-bar .con .menu-box .menu-inner .menu-list li a:hover {
  color: #747171;
}
#header-top .header-wrap .header-top-bar .con .menu-box .menu-inner .menu-list .menu-list__item {
  letter-spacing: -0.02rem;
}
#header-top .header-wrap .header-top-bar .con .menu-box .menu-inner .menu-list .item-tag {
  font-weight: 700;
}
#header-top .header-wrap .mobile-header-top-bar {
  display: none;
}
@media (max-width: 600px) {
  #header-top .header-wrap .header-top-bar {
    display: none;
  }
  #header-top .header-wrap .mobile-header-top-bar {
    display: block;
    height: auto;
    background-color: transparent;
    transition: background-color 0.3s ease, -webkit-backdrop-filter 0.3s ease;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  }
  #header-top .header-wrap .mobile-header-top-bar.is-active {
    background-color: rgba(235, 228, 220, 0.05);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 20px rgba(97, 66, 49, 0.05);
    border-bottom: 1px solid rgba(97, 66, 49, 0.08);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 50;
  }
  #header-top .header-wrap .mobile-header-top-bar.is-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
  }
  #header-top .header-wrap .mobile-header-top-bar .con {
    padding-inline: 4.7vw;
  }
  #header-top .header-wrap .mobile-header-top-bar .con .top-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 10vw;
    margin-top: 0.5rem;
  }
  #header-top .header-wrap .mobile-header-top-bar .con .header-top-bar__left {
    justify-self: start;
  }
  #header-top .header-wrap .mobile-header-top-bar .con .header-top-bar__mid {
    justify-self: center;
  }
  #header-top .header-wrap .mobile-header-top-bar .con .header-top-bar__mid .logo-box {
    gap: 1rem;
  }
  #header-top .header-wrap .mobile-header-top-bar .con .header-top-bar__mid .logo-box .logo a {
    font-size: 8.7vw;
    white-space: nowrap;
  }
  #header-top .header-wrap .mobile-header-top-bar .con .header-top-bar__right {
    justify-self: end;
  }
  #header-top .header-wrap .mobile-header-top-bar .con .header-top-bar__right .util-box {
    width: 100%;
    gap: 0.7rem;
    justify-content: flex-end;
  }
  #header-top .header-wrap .mobile-header-top-bar .con .header-top-bar__right .util-box a {
    display: flex;
    color: #5a5858;
  }
  #header-top .header-wrap .mobile-header-top-bar .con .header-top-bar__right .util-box a img {
    width: clamp(1.4rem, 2.5vw, 2rem);
  }
  #header-top .header-wrap .mobile-header-top-bar .con .menu-box {
    padding-top: 0.4rem;
  }
  #header-top .header-wrap .mobile-header-top-bar .con .menu-box .menu-inner {
    min-width: 300px;
    margin: 0 auto;
  }
  #header-top .header-wrap .mobile-header-top-bar .con .menu-box .menu-inner .menu-list {
    gap: 3vw;
    flex-wrap: wrap;
  }
  #header-top .header-wrap .mobile-header-top-bar .con .menu-box .menu-inner .menu-list li a {
    font-size: clamp(0.95rem, 1.2vw, 1.2rem);
    color: #21120a;
    font-weight: 500;
    letter-spacing: 2;
  }
  #header-top .header-wrap .mobile-header-top-bar .con .menu-box .menu-inner .menu-list .menu-list__item {
    letter-spacing: -0.02rem;
  }
  #header-top .header-wrap .mobile-header-top-bar .con .menu-box .menu-inner .menu-list .item-tag {
    font-weight: 700;
  }
}

/* 푸터영역 */
#pc-footer {
  background-color: #21120a;
}
#pc-footer .footer-inner .content__box {
  margin: 0 auto;
}
#pc-footer .footer-inner .content__top {
  padding: 2rem;
  gap: 9vw;
}
#pc-footer .footer-inner .tit {
  padding-bottom: 0.5rem;
  letter-spacing: 1px;
  color: #fefdfc;
}
#pc-footer .footer-inner .contact-info,
#pc-footer .footer-inner .info-list {
  color: #a08e83;
  font-size: 0.85rem;
}
#pc-footer .footer-inner .guide {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: nowrap;
  cursor: pointer;
}
#pc-footer .footer-inner .guide p {
  white-space: nowrap;
}
#pc-footer .footer-inner .follow-us .follow-info ul {
  gap: 1rem;
}
#pc-footer .footer-inner .follow-us .follow-info ul li.insta {
  width: 1.3rem;
  height: 1.3rem;
}
#pc-footer .footer-inner .follow-us .follow-info ul li.youtube {
  width: 1.5rem;
  height: 1.5rem;
}
#pc-footer .footer-inner .follow-us .follow-info ul li.kakaotalk {
  width: 1.3rem;
  height: 1.3rem;
}
#pc-footer .footer-inner .follow-us .follow-info ul li.naverCafe {
  width: 1.8rem;
  height: 1.8rem;
  margin-left: -0.6rem;
}
#pc-footer .footer-inner .line {
  width: 100%;
  height: 0.05px;
  background-color: #8e8b8b;
}
#pc-footer .footer-inner .content__bottom {
  padding: 1rem;
}
#pc-footer .footer-inner .content__bottom .copyright {
  color: #8e8b8b;
  font-size: 0.8rem;
  text-align: center;
}

#mobile-footer {
  display: none;
}

@media (max-width: 600px) {
  #pc-footer {
    display: none;
  }
  #mobile-footer {
    display: flex;
    background-color: #21120a;
  }
  #mobile-footer .footer-inner .content__box {
    margin: 0 auto;
    letter-spacing: 1px;
  }
  #mobile-footer .footer-inner .content__top {
    flex-direction: row;
    padding: 1.3rem;
    gap: 2rem;
  }
  #mobile-footer .footer-inner .contact-info,
  #mobile-footer .footer-inner .guide {
    color: #a08e83;
    font-size: 0.85rem;
    white-space: nowrap;
  }
  #mobile-footer .footer-inner .line {
    width: 100%;
    height: 0.05px;
    background-color: #8e8b8b;
  }
  #mobile-footer .footer-inner .follow-info ul {
    gap: 1rem;
    padding-bottom: 0.5rem;
    letter-spacing: 1px;
    color: #fefdfc;
  }
  #mobile-footer .footer-inner .follow-info ul li.insta {
    width: 1.3rem;
    height: 1.3rem;
  }
  #mobile-footer .footer-inner .follow-info ul li.youtube {
    width: 1.5rem;
    height: 1.5rem;
  }
  #mobile-footer .footer-inner .follow-info ul li.kakaotalk {
    width: 1.3rem;
    height: 1.3rem;
  }
  #mobile-footer .footer-inner .follow-info ul li.naverCafe {
    width: 1.8rem;
    height: 1.8rem;
    margin-left: -0.4rem;
  }
  #mobile-footer .footer-inner .content__bottom {
    padding: 1rem;
  }
  #mobile-footer .footer-inner .copyright {
    color: #fefdfc;
    font-size: 0.8rem;
    text-align: center;
    font-weight: 300;
  }
}
/* 메인섹션영역 */
.main-wrap {
  padding-top: calc(1.8rem + 10vw);
}
.main-wrap .content {
  display: flex;
  flex-direction: column;
  gap: clamp(6rem, 10vw, 12rem);
}
.main-wrap .content .section-1 {
  display: block;
  opacity: 0;
  transition: opacity 1.2s ease-out, margin-top 1.2s ease-out;
  margin-top: 40px;
}
.main-wrap .content .section-1.active {
  opacity: 1;
  margin-top: 0; /* 제자리로 이동 */
}
.main-wrap .content .section-1 .con {
  max-width: 1420px;
  margin: 0 auto;
}
.main-wrap .content .section-1 .con .swiper .swiper-slide {
  cursor: pointer;
}
.main-wrap .content .section-1 .con .swiper .swiper-slide a {
  display: block;
  height: 100%;
  width: 100%;
}
.main-wrap .content .section-1 .con .swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* 추가: 선명도 향상 속성 */
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.main-wrap .content .section-1 .con .swiper .fraction-nav {
  position: absolute;
  bottom: 10%;
  left: 10%;
}
.main-wrap .content .section-1 .con .swiper .fraction-nav .fraction-box {
  display: flex;
  align-items: center;
  gap: 1.5vw;
}
.main-wrap .content .section-1 .con .swiper .fraction-nav .fraction-box .swiper-pagination {
  position: static;
  width: auto;
  font-size: 14px;
  color: #614231;
}
.main-wrap .content .section-1 .con .swiper .fraction-nav .fraction-box .swiper-button {
  position: static;
  width: 1rem;
  height: auto;
  margin: 0;
  color: #614231;
}
.main-wrap .content .section-1 .con .swiper .fraction-nav .fraction-box .swiper-button::after {
  font-size: 0.8rem;
}
.main-wrap .content .mobile-section-1 {
  display: none;
}
.main-wrap .content .section-2 {
  position: relative;
  min-width: 300px;
  background-color: transparent;
  /* 배경 텍스트*/
  /* 텍스트가 오른쪽에서 왼쪽 끝까지 이동하는 애니메이션 */
  /* 원형 고정 비디오*/
}
.main-wrap .content .section-2 .marquee {
  position: relative;
}
.main-wrap .content .section-2 .text-background {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: auto;
  width: 100vw;
  z-index: 1; /* 비디오보다 낮게 z-index설정 */
  overflow: hidden;
  /* 	opacity: 0.2; */
  pointer-events: none;
}
.main-wrap .content .section-2 .text-background .text-line {
  font-size: 7vw;
  font-weight: 600;
  color: #b29580;
  letter-spacing: -2.5px;
  white-space: nowrap;
  width: 300%;
  line-height: 1.5;
  padding: 2rem 0;
  gap: 5rem;
}
.main-wrap .content .section-2 .text-background .text-line span {
  flex-shrink: 0;
  padding-right: 2.5rem;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.33%);
  }
}
.main-wrap .content .section-2 .video-box {
  /* 여기에 너비값주면 비디오 위치조정이 안됨 */
}
.main-wrap .content .section-2 .video-box .video-container {
  position: relative;
  width: clamp(100px, 35vw, 400px);
  height: clamp(100px, 35vw, 400px);
  border-radius: 50%;
  overflow: visible;
  transform: translateX(70%);
  z-index: 10; /* 비디오가 텍스트 위에 위치 */
}
.main-wrap .content .section-2 .video-box .video-container::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(255, 253, 245, 0.85); /* 크림 화이트*/
  box-shadow: 0 0 12px rgba(97, 66, 49, 0.55), 0 0 30px rgba(97, 66, 49, 0.35); /* 브라운 그로우 은은한 빛 퍼짐 */
  z-index: 3;
  animation: wavePulse 6s ease-in-out infinite;
}
.main-wrap .content .section-2 .video-box .video-container video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  animation: videoBreath 6s ease-in-out infinite;
}
@keyframes videoBreath {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes wavePulse {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.85;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
}
.main-wrap .content .section-3 .subscription__header {
  max-width: 1602px;
  margin-bottom: 2rem;
}
.main-wrap .content .section-3 .subscription__header .tit-area {
  text-align: left;
}
.main-wrap .content .section-3 .subscription__header .tit-area .subscription__title {
  font-size: clamp(1.3rem, 3.5vw, 2.5rem);
  color: #21120a;
  gap: 0.5rem;
}
.main-wrap .content .section-3 .subscription__header .tit-area .subscription__title p {
  margin: 0;
  margin-left: -2px;
  font-weight: 800;
}
.main-wrap .content .section-3 .subscription__header .tit-area .subscription__text {
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  font-weight: 500;
  color: #8e8b8b;
}
.main-wrap .content .section-3 .subscription__header .subscription__button {
  padding: clamp(0.45rem, 1vw, 0.6rem) clamp(0.8rem, 2vw, 1.5rem);
  border: 1.5px solid #81685a;
  border-radius: 40px;
  gap: 1rem;
  color: #81685a;
  font-size: clamp(0.6rem, 1.6vw, 0.85rem);
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
}
.main-wrap .content .section-3 .subscription__content {
  align-items: flex-start;
}
.main-wrap .content .section-3 .subscription__content .monthly-area {
  width: 100%;
  gap: 3rem;
  align-items: flex-start;
}
.main-wrap .content .section-3 .subscription__content .monthly-area .attention-item {
  width: 100%;
  position: relative;
  border-radius: 15px;
  background: linear-gradient(160deg, rgba(97, 66, 49, 0.92), rgba(97, 66, 49, 0.82));
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  padding: 1.5rem;
  aspect-ratio: 5/4;
  height: auto;
  min-height: 500px;
  overflow: hidden;
}
.main-wrap .content .section-3 .subscription__content .monthly-area .attention-item .attention-con {
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  padding: 1rem;
}
.main-wrap .content .section-3 .subscription__content .monthly-area .attention-item .attention-con .attention-top .brand {
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  color: #f7ebdf;
}
.main-wrap .content .section-3 .subscription__content .monthly-area .attention-item .attention-con .attention-top i {
  color: #f7ebdf;
  cursor: pointer;
}
.main-wrap .content .section-3 .subscription__content .monthly-area .attention-item .attention-con .attention-book {
  flex: 1;
  height: 100%;
  position: relative;
}
.main-wrap .content .section-3 .subscription__content .monthly-area .attention-item .attention-con .attention-book a img {
  display: block;
  width: auto;
  max-height: 60%;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 5px;
  box-shadow: 15px 15px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1280px) {
  .main-wrap .content .section-3 .subscription__content .monthly-area .attention-item .attention-con .attention-book a img {
    height: 25vw;
  }
}
@media (max-width: 1024px) {
  .main-wrap .content .section-3 .subscription__content .monthly-area .attention-item .attention-con .attention-book a img {
    height: 45vw;
  }
}
@media (max-width: 600px) {
  .main-wrap .content .section-3 .subscription__content .monthly-area .attention-item .attention-con .attention-book a img {
    height: 42vw !important;
  }
}
.main-wrap .content .section-3 .subscription__content .monthly-area .attention-item .attention-con .attention-book .text {
  position: absolute;
  bottom: 5%;
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  color: #fefdfc;
  font-weight: 600;
  z-index: 2;
}
.main-wrap .content .section-3 .subscription__content .monthly-area .attention-item .attention-con .attention-box {
  gap: clamp(0.5rem, 1.8vw, 1rem);
}
.main-wrap .content .section-3 .subscription__content .monthly-area .attention-item .attention-con .attention-box .month {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.75rem, 1.5vw, 1rem);
  color: #fefdfc;
  font-weight: 600;
  white-space: nowrap;
  background-color: #a08e83;
  width: clamp(2.2rem, 4vw, 2.8rem);
  height: clamp(2.2rem, 4vw, 2.8rem);
  border-radius: 50%;
}
.main-wrap .content .section-3 .subscription__content .monthly-area .attention-item .attention-con .attention-box .book-name {
  padding-top: 0.5rem;
  font-weight: 500;
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  color: #f7ebdf;
  text-align: center;
}
.main-wrap .content .section-3 .subscription__content .monthly-area .attention-item .attention-con .attention-box .attention-author {
  font-size: 0.75rem;
  color: #8e8b8b;
}
.main-wrap .content .section-3 .subscription__content .monthly-area .sub-item {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto;
  align-self: flex-start;
  gap: 3rem 6rem;
  height: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.main-wrap .content .section-3 .subscription__content .monthly-area .sub-item .sub-book {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
}
.main-wrap .content .section-3 .subscription__content .monthly-area .sub-item .sub-book a {
  display: flex;
  justify-content: center;
}
.main-wrap .content .section-3 .subscription__content .monthly-area .sub-item .sub-book a img {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  transition: transform 0.3s;
  margin-bottom: 1rem;
  width: auto;
  height: auto;
  max-height: 190px;
  -o-object-fit: contain;
     object-fit: contain;
}
.main-wrap .content .section-3 .subscription__content .monthly-area .sub-item .sub-book .text-inner {
  position: absolute;
  bottom: 20%;
  transform: translate(0, -10%);
}
.main-wrap .content .section-3 .subscription__content .monthly-area .sub-item .sub-book .text-inner .text {
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  color: #747171;
}
.main-wrap .content .section-3 .subscription__content .monthly-area .sub-item .sub-book .sub-box {
  gap: 0.7rem;
  padding-top: 0.7rem;
}
.main-wrap .content .section-3 .subscription__content .monthly-area .sub-item .sub-book .sub-box .month {
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  color: #a08e83;
  font-weight: 600;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.main-wrap .content .section-3 .subscription__content .monthly-area .sub-item .sub-book .sub-box .book-info .book-name {
  font-weight: 700;
  color: #3c3b3b;
}
.main-wrap .content .section-3 .subscription__content .monthly-area .sub-item .sub-book .sub-box .book-info .author {
  font-size: 0.75rem;
  color: #8e8b8b;
}
.main-wrap .content .section-4 {
  position: relative;
  /* AOS 또는 특정 클래스가 붙었을 때 애니메이션 실행 */
}
.main-wrap .content .section-4 .tag-container .tag .tag__header {
  max-width: 1602px;
  margin-bottom: 2rem;
}
.main-wrap .content .section-4 .tag-container .tag .tag__header .tag__left .tag__title {
  font-size: clamp(1.3rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #21120a;
  gap: 0.5rem;
}
.main-wrap .content .section-4 .tag-container .tag .tag__header .tag__left .tag__text {
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  font-weight: 500;
  color: #8e8b8b;
}
.main-wrap .content .section-4 .tag-container .tag .tag__header .tag__left p {
  margin: 0;
  margin-left: -2px;
}
.main-wrap .content .section-4 .tag-container .tag .tag__header .tag__right .tag__button {
  padding: clamp(0.45rem, 1vw, 0.6rem) clamp(0.8rem, 2vw, 1.5rem);
  border: 1.5px solid #81685a;
  border-radius: 40px;
  gap: 1rem;
  color: #81685a;
  font-size: clamp(0.6rem, 1.6vw, 0.85rem);
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
}
.main-wrap .content .section-4 .tag-container .tag .tag__content .tag-small {
  gap: 1rem;
  margin-bottom: 1rem;
}
.main-wrap .content .section-4 .tag-container .tag .tag__content .tag-small .small-button {
  padding: 0.3rem 0.7rem;
  border: 0.5px solid #d9d8d8;
  border-radius: 50px;
  gap: 1rem;
  color: #8e8b8b;
  font-size: clamp(0.6rem, 1.6vw, 0.85rem);
  transition: all 0.3s;
  cursor: pointer;
  white-space: nowrap;
}
.main-wrap .content .section-4 .tag-container .tag .tag__content .tag-main {
  cursor: pointer;
}
.main-wrap .content .section-4 .tag-container .tag .tag__content .tag-main .tag-img {
  width: 45vw;
  max-width: 600px;
  background-image: url(../assets/images/science_width.jpg);
  background-position: center;
  background-size: cover;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(97, 66, 49, 0.22), 0 4px 10px rgba(97, 66, 49, 0.12);
}
.main-wrap .content .section-4 .tag-container .tag .tag__content .tag-main .tag-book-info {
  color: #21120a;
  font-weight: 600;
}
.main-wrap .content .section-4 .tag-container .tag .tag__content .tag-box {
  width: 45vw;
  max-width: 700px;
}
.main-wrap .content .section-4 .tag-container .tag .tag__content .tag-box .tag-large {
  overflow: visible;
}
.main-wrap .content .section-4 .tag-container .tag .tag__content .tag-box .tag-large .large-button {
  position: relative;
  width: 100%;
  margin-bottom: 12px;
}
.main-wrap .content .section-4 .tag-container .tag .tag__content .tag-box .tag-large .large-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08), 0 14px 28px rgba(0, 0, 0, 0.12);
}
.main-wrap .content .section-4 .tag-container .tag .tag__content .tag-box .tag-large .large-button .large-text {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 1.1rem 1.4rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  font-weight: 450;
  color: #5a5858;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06), 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
  cursor: pointer;
  position: relative;
}
.main-wrap .content .section-4 .tag-container .tag .tag__content .tag-box .tag-large .large-button .large-text .plus {
  font-size: 1.2rem;
  color: #8e8b8b;
  transition: transform 0.45s ease-out;
}
.main-wrap .content .section-4 .tag-container .tag .tag__content .tag-box .tag-large .large-button .accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 1.4rem;
  transition: max-height 0.45s ease, opacity 0.35s ease;
  z-index: 5;
  background-color: #fff;
}
.main-wrap .content .section-4 .tag-container .tag .tag__content .tag-box .tag-large .large-button .accordion-content .inner-wrapper {
  min-height: 0;
}
.main-wrap .content .section-4 .tag-container .tag .tag__content .tag-box .tag-large .large-button .accordion-content .inner-wrapper .book-thumb {
  display: flex;
  align-items: center;
  gap: 2.3rem;
  padding: 1.2rem 0;
  cursor: pointer;
}
.main-wrap .content .section-4 .tag-container .tag .tag__content .tag-box .tag-large .large-button .accordion-content .inner-wrapper .book-thumb img {
  width: 130px;
  height: auto;
}
.main-wrap .content .section-4 .tag-container .tag .tag__content .tag-box .tag-large .large-button.active .accordion-content {
  max-height: 500px;
  opacity: 1;
  z-index: 5;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-top: none; /* 버튼과 이어지는 느낌 */
  margin-top: -1px; /* 버튼 테두리와 겹쳐서 깔끔하게 */
}
.main-wrap .content .section-4 .tag-container .tag .tag__content .tag-box .tag-large .large-button.active .plus {
  transform: rotate(90deg);
}
.main-wrap .content .section-4 .tag-container .tag .tag__content .tag-box .typing-line {
  display: block; /* 문장별 줄 유지 */
  white-space: nowrap;
}
@keyframes blinkCursor {
  50% {
    opacity: 0;
  }
}
.main-wrap .content .section-4 .band-banner {
  width: 100%;
  margin-top: clamp(3rem, 8vw, 6rem);
  border-radius: 30px 30px 0 0;
  max-width: 100%;
  transform: scaleX(0);
  transform-origin: center; /* 가운데서 펼쳐짐 */
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0;
}
.main-wrap .content .section-4 .band-banner .band-content {
  background-image: url(../assets/images/line-banner_bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  aspect-ratio: 1600/120;
  max-width: 1602px;
  min-height: auto;
  margin: 0 auto;
  padding: 1rem 5% 1rem 2rem;
  cursor: pointer;
}
.main-wrap .content .section-4 .band-banner .band-content .band-text {
  text-align: left;
  color: #fefdfc;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 0.6s;
}
.main-wrap .content .section-4 .band-banner .band-content .band-text .band-title {
  font-size: clamp(0.7rem, 1.6vw, 1rem);
  font-weight: 600;
}
.main-wrap .content .section-4 .band-banner .band-content .band-text .band-des {
  font-size: clamp(0.7rem, 1.8vw, 0.85rem);
}
.main-wrap .content .section-4 .band-banner .band-content .band-book {
  position: absolute;
  bottom: -2rem;
  right: 25%;
  width: clamp(7.5rem, 20vw, 12.5rem);
  height: auto;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 0.9s;
}
.main-wrap .content .section-4 .band-banner .band-content .band-book img {
  width: 130%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transform: rotate(3deg);
}
.main-wrap .content .section-4 .band-banner.aos-animate {
  transform: scaleX(1);
  opacity: 1;
}
.main-wrap .content .section-4 .band-banner.aos-animate .band-text {
  opacity: 1;
  transform: translateY(0);
}
.main-wrap .content .section-4 .band-banner.aos-animate .band-book {
  opacity: 1;
}
.main-wrap .content .section-5 .news-container .news .news__header {
  max-width: 1602px;
  margin-bottom: 2rem;
}
.main-wrap .content .section-5 .news-container .news .news__header .news__left .news__title {
  font-size: clamp(1.3rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #21120a;
  gap: 0.5rem;
}
.main-wrap .content .section-5 .news-container .news .news__header .news__left .news__text {
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  font-weight: 500;
  color: #8e8b8b;
}
.main-wrap .content .section-5 .news-container .news .news__header .news__left p {
  margin: 0;
  margin-left: -2px;
}
.main-wrap .content .section-5 .news-container .news .news__header .news__right .news__button {
  padding: clamp(0.45rem, 1vw, 0.6rem) clamp(0.8rem, 2vw, 1.5rem);
  border: 1.5px solid #81685a;
  border-radius: 40px;
  gap: 1rem;
  color: #81685a;
  font-size: clamp(0.6rem, 1.6vw, 0.85rem);
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
}
.main-wrap .content .section-5 .news-container .news .news__content {
  gap: 2vw;
  align-items: flex-start;
}
.main-wrap .content .section-5 .news-container .news .news__content .book-area {
  display: flex;
  gap: 1%;
  flex: 1.2;
  min-width: 0;
  height: auto;
  aspect-ratio: 4/2.3;
  padding: 0 2vw;
}
.main-wrap .content .section-5 .news-container .news .news__content .book-area .book-card {
  position: relative;
  width: 4.75rem;
  height: clamp(280px, 32vw, 450px);
  border-radius: 12px;
  overflow: hidden;
  transition: width 0.35s ease;
  cursor: pointer;
  z-index: 1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
.main-wrap .content .section-5 .news-container .news .news__content .book-area .book-card .book-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.35s ease;
}
.main-wrap .content .section-5 .news-container .news .news__content .book-area .book-card .book-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 70%;
  padding: 5px;
  color: #fff;
  text-align: center;
  transition: transform 0.35s ease;
  writing-mode: vertical-rl; /* 기본 세로 쓰기 */
  text-orientation: sideways; /* 모든 문자를 옆으로 눕힘 */
}
.main-wrap .content .section-5 .news-container .news .news__content .book-area .book-card .book-title h3 {
  margin: 0;
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
}
.main-wrap .content .section-5 .news-container .news .news__content .book-area .book-card:hover .book-title {
  transform: translateX(-50%) scale(1.5);
  writing-mode: horizontal-tb; /* 가로 쓰기로 변경 */
  transition: transform 0.35s ease;
}
.main-wrap .content .section-5 .news-container .news .news__content .book-area .book-card .book-info {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 1.4rem;
  color: #f2f2f2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  top: 75%;
  height: 50%;
  width: 100%;
  text-align: center;
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.main-wrap .content .section-5 .news-container .news .news__content .book-area .book-card:hover {
  width: 18.25rem;
  aspect-ratio: 4/2.3;
  z-index: 10;
}
.main-wrap .content .section-5 .news-container .news .news__content .book-area .book-card:hover .book-img {
  border: 7px solid #fff;
  border-radius: 12px;
}
.main-wrap .content .section-5 .news-container .news .news__content .book-area .book-card:hover .book-info {
  opacity: 1;
  transform: translateY(0);
  font-size: 95%;
}
.main-wrap .content .section-5 .news-container .news .news__content .book-area .book-card-default {
  width: 18.25rem;
  height: auto;
}
.main-wrap .content .section-5 .news-container .news .news__content .book-area:hover .book-card {
  width: 4.75rem;
}
.main-wrap .content .section-5 .news-container .news .news__content .book-area .book-card:hover {
  width: 18.25rem;
}
.main-wrap .content .section-5 .news-container .news .news-board {
  flex: 1.2;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.main-wrap .content .section-5 .news-container .news .news-board .board {
  height: 100%;
  margin-top: 4vw;
  background-color: #fff;
  border: 1px solid #d9d8d8;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.main-wrap .content .section-5 .news-container .news .news-board .board .board-photo {
  width: 100%;
  aspect-ratio: 4/3;
}
.main-wrap .content .section-5 .news-container .news .news-board .board .board-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.main-wrap .content .section-5 .news-container .news .news-board .board:hover .board-photo img {
  transform: scale(1.05);
}
.main-wrap .content .section-5 .news-container .news .news-board .board .board-text {
  padding: clamp(0.8rem, 1.8vw, 2rem);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  word-break: keep-all;
}
.main-wrap .content .section-5 .news-container .news .news-board .board .board-text p:nth-of-type(1) {
  font-size: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 600;
  color: #747171;
  white-space: nowrap;
  overflow: hidden;
}
.main-wrap .content .section-5 .news-container .news .news-board .board .board-text p:nth-of-type(2) {
  font-size: clamp(0.75rem, 1.5vw, 1rem);
  color: #8e8b8b;
  line-height: 1.3;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}
.main-wrap .content .section-6 {
  position: relative;
  width: 100%;
  min-height: auto;
  background-color: #fcf7f2;
  padding-bottom: clamp(6rem, 12vh, 10rem);
  z-index: 1;
  overflow: hidden;
}
.main-wrap .content .section-6::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(223, 212, 201, 0.4) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(235, 224, 213, 0.3) 0%, transparent 60%), radial-gradient(circle at 50% 80%, rgba(245, 235, 225, 0.5) 0%, transparent 50%), radial-gradient(circle at 90% 90%, rgba(210, 195, 180, 0.2) 0%, transparent 40%);
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
}
.main-wrap .content .section-6 .book-mark-container .book-mark .book-mark__header {
  max-width: 1602px;
  margin-top: 5vw;
  margin-bottom: 2rem;
}
.main-wrap .content .section-6 .book-mark-container .book-mark .book-mark__header .book-mark__left .book-mark__title {
  font-size: clamp(1.3rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #21120a;
  gap: 0.5rem;
}
.main-wrap .content .section-6 .book-mark-container .book-mark .book-mark__header .book-mark__left .book-mark__text {
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  font-weight: 500;
  color: #8e8b8b;
}
.main-wrap .content .section-6 .book-mark-container .book-mark .book-mark__header .book-mark__left p {
  margin: 0;
  margin-left: -2px;
}
.main-wrap .content .section-6 .book-mark-container .book-mark .book-mark__header .book-mark__right .book-mark__button {
  padding: clamp(0.45rem, 1vw, 0.6rem) clamp(0.8rem, 2vw, 1.5rem);
  border: 1.5px solid #81685a;
  border-radius: 40px;
  gap: 1rem;
  color: #81685a;
  font-size: clamp(0.6rem, 1.6vw, 0.85rem);
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
}
.main-wrap .content .section-6 .book-mark__content.swiper {
  width: 100%;
  overflow: hidden;
}
.main-wrap .content .section-6 .book-mark__content.swiper .swiper-pagination {
  position: absolute;
  right: 20px;
  left: auto;
  top: 40%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 20px;
  z-index: 100;
}
.main-wrap .content .section-6 .book-mark__content.swiper .swiper-pagination .swiper-pagination-bullet {
  display: block;
  width: 12px;
  height: 12px;
  background: #d1cdc9;
  opacity: 1;
  transition: all 0.3s;
  margin: 0;
  cursor: pointer;
}
.main-wrap .content .section-6 .book-mark__content.swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #614231;
  border-radius: 20px;
}
.main-wrap .content .section-6 .book-mark__content.swiper .swiper-wrapper .swiper-slide .book-mark__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.main-wrap .content .section-6 .book-mark__content.swiper .swiper-wrapper .swiper-slide .script-box {
  cursor: pointer;
  justify-content: flex-end;
}
.main-wrap .content .section-6 .book-mark__content.swiper .swiper-wrapper .swiper-slide .script-box .script-inner {
  position: relative;
  padding: 1.5rem;
  width: 100%;
  max-width: 500px;
  z-index: 1;
}
.main-wrap .content .section-6 .book-mark__content.swiper .swiper-wrapper .swiper-slide .script-box .script-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  z-index: -1;
}
.main-wrap .content .section-6 .book-mark__content.swiper .swiper-wrapper .swiper-slide .script-box .script-inner .script-text {
  text-align: center;
  line-height: 1.5;
  color: #5a5858;
  gap: 2rem;
  margin-bottom: 1rem;
}
.main-wrap .content .section-6 .book-mark__content.swiper .swiper-wrapper .swiper-slide .script-box .script-inner .script-text .hl {
  display: inline;
  background: linear-gradient(to top, rgba(168, 143, 121, 0.3) 45%, transparent 45%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.6s ease-in-out;
}
.main-wrap .content .section-6 .book-mark__content.swiper .swiper-wrapper .swiper-slide .script-box .script-inner .script-title .tit {
  color: #21120a;
  font-weight: 500;
}
.main-wrap .content .section-6 .book-mark__content.swiper .swiper-wrapper .swiper-slide .script-box .script-inner .script-title .script-author {
  color: #8e8b8b;
  font-size: 0.75rem;
}
.main-wrap .content .section-6 .book-mark__content.swiper .swiper-wrapper .swiper-slide .script-box .script-inner .script-tag {
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.main-wrap .content .section-6 .book-mark__content.swiper .swiper-wrapper .swiper-slide .script-box .script-inner .script-tag .small-button {
  padding: 0.3rem 0.7rem;
  border: 0.5px solid #d9d8d8;
  border-radius: 50px;
  gap: 1rem;
  color: #8e8b8b;
  font-size: clamp(0.6rem, 1.6vw, 0.85rem);
  transition: all 0.3s;
  cursor: pointer;
  white-space: nowrap;
}
.main-wrap .content .section-6 .book-mark__content.swiper .swiper-wrapper .swiper-slide .book-box {
  max-width: 500px;
  cursor: pointer;
  justify-content: flex-start;
}
.main-wrap .content .section-6 .book-mark__content.swiper .swiper-wrapper .swiper-slide .book-cover {
  width: 100%;
  max-width: 240px;
}
.main-wrap .content .section-6 .book-mark__content.swiper .swiper-wrapper .swiper-slide .book-cover img {
  width: 90%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.main-wrap .content .section-6 .book-mark__content.swiper .swiper-wrapper .swiper-slide .mobile-script-title {
  display: none;
}
.main-wrap .content .section-6.is-visible .swiper-slide-active .hl {
  background-size: 100% 100%;
}
.main-wrap .content .section-7 {
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  will-change: transform !important;
  backface-visibility: hidden;
}
.main-wrap .content .section-7 .scroll-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.main-wrap .content .section-7 .scroll-container .intro-overlay {
  position: absolute;
  height: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 20;
}
.main-wrap .content .section-7 .scroll-container .intro-overlay .book-wrapper {
  perspective: 1500px;
  width: 300px;
  height: 420px;
}
.main-wrap .content .section-7 .scroll-container .intro-overlay .book-wrapper .book-cover {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transform-origin: left center;
  will-change: transform;
}
.main-wrap .content .section-7 .scroll-container .intro-overlay .book-wrapper .book-cover .book-front {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  z-index: 2;
}
.main-wrap .content .section-7 .scroll-container .intro-overlay .book-wrapper .book-cover .book-front img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-wrap .content .section-7 .scroll-container .best__bg.bg-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.05);
  width: 110vw;
  height: 110dvh;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  filter: blur(1.8px) brightness(0.9);
  aspect-ratio: 16/9;
  -webkit-mask-image: radial-gradient(white, black);
          mask-image: radial-gradient(white, black);
}
.main-wrap .content .section-7 .scroll-container .best__bg.bg-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 80px 40px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 1;
}
.main-wrap .content .section-7 .scroll-container .best__bg.bg-layer #bg-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: sepia(50%) brightness(85%) contrast(105%) saturate(70%);
  -o-object-position: center;
     object-position: center;
}
.main-wrap .content .section-7 .scroll-container .best__header {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 5vw;
  padding: 0 40px;
  margin-bottom: 2rem;
  z-index: 30;
  pointer-events: none;
}
.main-wrap .content .section-7 .scroll-container .best__header .best__left .best__title {
  font-size: clamp(1.3rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #21120a;
  gap: 0.5rem;
}
.main-wrap .content .section-7 .scroll-container .best__header .best__left .best__text {
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  font-weight: 500;
  color: #8e8b8b;
}
.main-wrap .content .section-7 .scroll-container .best__header .best__left p {
  margin: 0;
  margin-left: -2px;
}
.main-wrap .content .section-7 .scroll-container .best__header .best__right {
  pointer-events: auto;
}
.main-wrap .content .section-7 .scroll-container .best__header .best__right .best__button {
  padding: clamp(0.45rem, 1vw, 0.6rem) clamp(0.8rem, 2vw, 1.5rem);
  border: 1.5px solid #81685a;
  border-radius: 40px;
  gap: 1rem;
  color: #81685a;
  font-size: clamp(0.6rem, 1.6vw, 0.85rem);
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
}
.main-wrap .content .section-7 .scroll-container .best__content {
  position: relative;
  margin-top: 10vh;
  z-index: 20;
}
.main-wrap .content .section-7 .scroll-container .best__content .card-track {
  gap: 8vw;
  padding-left: 100vw;
  will-change: transform;
}
.main-wrap .content .section-7 .scroll-container .best__content .card {
  width: clamp(160px, 17vw, 380px);
  box-sizing: border-box;
  flex-shrink: 0;
  animation: floating 3s infinite ease-in-out alternate;
  cursor: pointer;
}
.main-wrap .content .section-7 .scroll-container .best__content .card .card-box {
  width: 100%;
  aspect-ratio: 2/3;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 20px 60px rgba(0, 0, 0, 0.15);
}
.main-wrap .content .section-7 .scroll-container .best__content .card .card-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
.main-wrap .content .section-7 .scroll-container .best__content .card .card-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease-in-out 0.5s;
}
.main-wrap .content .section-7 .scroll-container .best__content .card:nth-child(even) {
  animation-duration: 4s;
  animation-delay: 0.5s;
}
.main-wrap .content .section-7 .scroll-container .best__content .card:nth-child(3) {
  animation-duration: 3.5s;
}
.main-wrap .content .section-7 .scroll-container .best__content .card .card-content .desc {
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.5;
  margin-top: 20px;
  word-break: keep-all;
  color: #fefdfc;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.main-wrap .content .section-7 .scroll-container .best__content .card .card-content .author {
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  margin-top: auto;
  color: #fefdfc;
  opacity: 0.7;
}
@keyframes floating {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-30px);
  }
}
.main-wrap .content .section-8 {
  overflow: hidden;
}
.main-wrap .content .section-8 .lank-container .lank .lank__header {
  max-width: 1602px;
  margin-bottom: 2rem;
}
.main-wrap .content .section-8 .lank-container .lank .lank__header .lank__left .lank__title {
  font-size: clamp(1.3rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #21120a;
  gap: 0.5rem;
}
.main-wrap .content .section-8 .lank-container .lank .lank__header .lank__left .lank__text {
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  font-weight: 500;
  color: #8e8b8b;
}
.main-wrap .content .section-8 .lank-container .lank .lank__header .lank__left p {
  margin: 0;
  margin-left: -2px;
}
.main-wrap .content .section-8 .lank-container .lank .lank__header .lank__right .lank__button {
  padding: clamp(0.45rem, 1vw, 0.6rem) clamp(0.8rem, 2vw, 1.5rem);
  border: 1.5px solid #81685a;
  border-radius: 40px;
  gap: 1rem;
  color: #81685a;
  font-size: clamp(0.6rem, 1.6vw, 0.85rem);
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
}
.main-wrap .content .section-8 .lank-container .lank__content {
  position: relative;
  min-height: 800px;
  gap: 4vw;
  padding: 45px min(8vw, 150px);
  perspective: 1200px;
}
@media (max-width: 1024px) {
  .main-wrap .content .section-8 .lank-container .lank__content {
    min-height: 700px;
    padding: 30px 50px;
  }
}
.main-wrap .content .section-8 .lank-container .lank__content .timeline__inner {
  position: absolute;
  bottom: clamp(100px, 8.5vh, 150px);
  left: 0;
  width: 100%;
  height: 1.5px;
  z-index: 10;
}
.main-wrap .content .section-8 .lank-container .lank__content .timeline__inner .timeline-base {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #eee;
}
.main-wrap .content .section-8 .lank-container .lank__content .timeline__inner .timeline-active {
  position: absolute;
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  background: #21120a;
  opacity: 0.5;
}
.main-wrap .content .section-8 .lank-container .lank__content .timeline__inner .timeline-dots-wrapper {
  position: absolute;
  top: 50%;
  left: min(8vw, 150px);
  right: min(8vw, 150px);
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 3;
}
.main-wrap .content .section-8 .lank-container .lank__content .timeline__inner .timeline-dots-wrapper .timeline-dot {
  width: 10px;
  height: 10px;
  background: #eee;
  border-radius: 50%;
}
.main-wrap .content .section-8 .lank-container .lank__content .lank__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(20% - 2vw);
  max-width: 200px;
  min-width: 100px;
  margin-bottom: clamp(40px, 9vh, 100px);
  z-index: 2;
  will-change: transform, opacity;
}
.main-wrap .content .section-8 .lank-container .lank__content .lank__item.item-odd {
  margin-top: 0;
}
.main-wrap .content .section-8 .lank-container .lank__content .lank__item.item-even {
  margin-top: 100px;
}
.main-wrap .content .section-8 .lank-container .lank__content .lank__item .lank-number {
  font-size: clamp(30px, 6vw, 100px);
  font-weight: 600;
  margin-bottom: -10px;
  /* 그라데이션 설정 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 60%, #d1d1d1 65%, #444444 100%);
  background-size: 100% 200%;
  background-position: 0% 0%;
  -webkit-background-clip: text;
  background-clip: text;
  /* 초기 상태: 테두리 연하게 */
  color: transparent;
  -webkit-text-stroke: 1px rgba(200, 200, 200, 0.5);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.05));
  opacity: 0;
  will-change: transform, opacity;
  z-index: 10;
}
.main-wrap .content .section-8 .lank-container .lank__box {
  aspect-ratio: 3/4;
  border-radius: 5px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 10;
  background: #eee;
  cursor: pointer;
}
.main-wrap .content .section-8 .lank-container .lank__box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-wrap .content .section-8 .lank-container .lank-shadow {
  width: 70%;
  height: 8px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, transparent 70%);
  margin: 5px auto 0;
  border-radius: 100%;
  filter: blur(3px);
  opacity: 0;
  transform: scale(0.5);
}
.main-wrap .content .section-8 .lank-container .lank-info {
  position: relative;
  width: 100%;
  min-width: auto;
  max-width: 280px;
  margin-top: auto;
  padding: 1rem;
  background: #fff;
  border-radius: 4px 16px 16px 16px;
  line-height: 1.5;
  font-size: clamp(12px, 1.2vw, 14px);
  color: #5a5858;
  word-break: keep-all;
  text-align: center;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.08));
}
.main-wrap .content .section-8 .lank-container .lank-info::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #fff;
  margin-top: -1px;
}
.main-wrap .content .section-9.parallax-section {
  height: 100vh;
  text-align: center;
  background-image: url("../assets/images/community.jpg");
  background-size: cover;
  background-position: center; /* 이미지 전체 채우기 */
  background-attachment: fixed; /* 뷰포트(화면)에 고정 */
}
.main-wrap .content .section-9.parallax-section .parallax__inner {
  position: relative;
  min-height: 100vh;
}
.main-wrap .content .section-9.parallax-section .parallax__inner .parallax__content {
  position: relative;
  max-width: 1200px;
  padding: 0 1rem 0 2rem;
  margin: 0 auto;
  width: clamp(13rem, 90vw, 55rem);
  min-height: clamp(5rem, 45vh, 35rem);
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
}
.main-wrap .content .section-9.parallax-section .parallax__inner .parallax__content .mobile-btn-talk {
  display: none;
}
.main-wrap .content .section-9.parallax-section .parallax__inner .community__box {
  flex: 1;
  max-width: 400px;
  min-width: 250px;
  height: 15rem;
  text-align: left;
  /* PC용 톡 버튼 */
}
.main-wrap .content .section-9.parallax-section .parallax__inner .community__box .community-title {
  top: 50%;
  left: 50%;
  font-size: clamp(1.3rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: #21120a;
}
.main-wrap .content .section-9.parallax-section .parallax__inner .community__box .community-text {
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  font-weight: 600;
  color: #747171;
}
.main-wrap .content .section-9.parallax-section .parallax__inner .community__box .btn-talk {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 5%;
  left: 35%;
  width: 8.5rem;
  color: #81685a;
  font-weight: 500;
  font-size: clamp(0.8rem, 1.8vw, 1rem);
  border: 1.5px solid #81685a;
  gap: 0.4rem;
  height: 1.8rem;
  border-radius: 40px;
  cursor: pointer;
}
.main-wrap .content .section-9.parallax-section .parallax__inner .memo__box {
  position: absolute;
  top: 0;
  right: 2%;
  transform: translateY(-50%) ratate(2deg);
  width: clamp(320px, 30vw, 400px);
  min-height: clamp(22rem, 45vh, 30rem);
  z-index: 5;
}
.main-wrap .content .section-9.parallax-section .parallax__inner .memo__box .memo__wrap {
  position: relative;
  width: 100%;
  min-height: 450px;
  background-image: url(../assets/images/memo2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  overflow: hidden;
  filter: drop-shadow(3px 5px 7px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
  padding: 4.5rem 1.5rem 1.5rem;
  aspect-ratio: 4/5;
}
.main-wrap .content .section-9.parallax-section .parallax__inner .memo__box .memo__wrap:hover {
  transform: translateY(-6px) rotate(-1deg);
}
.main-wrap .content .section-9.parallax-section .parallax__inner .memo__inner {
  padding: 0 2rem;
}
.main-wrap .content .section-9.parallax-section .parallax__inner .memo__content {
  width: 100%;
  margin-top: clamp(4rem, 4vw, 5rem);
  text-align: left;
}
.main-wrap .content .section-9.parallax-section .parallax__inner .memo__content .memo-title {
  font-size: clamp(0.8rem, 1.5vw, 1.3rem);
  font-weight: 550;
  color: #21120a;
  padding-bottom: 0.5rem;
}
.main-wrap .content .section-9.parallax-section .parallax__inner .memo__content .memo-text {
  font-size: clamp(0.7rem, 1.1vw, 0.95rem);
  color: #5a5858;
  line-height: 1.35;
  padding-bottom: 0.2rem;
}
.main-wrap .content .section-9.parallax-section .parallax__inner .memo-photo {
  padding: 0.3rem;
}
.main-wrap .content .section-9.parallax-section .parallax__inner .memo-photo img {
  width: 80%;
  height: auto;
  max-height: 10rem;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.main-wrap .content .section-9.parallax-section .parallax__inner .divider {
  display: block;
  width: 100% !important;
  height: 1px;
  background-color: #ccc;
  margin: 0.5rem 0.5rem;
}
.main-wrap .content .section-9.parallax-section .parallax__inner .sns-item {
  gap: 0.25rem;
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
}
.main-wrap .content .section-9.parallax-section .parallax__inner .sns-item .sns-info {
  gap: 0.3rem;
  flex: 1;
  min-width: 0;
}
.main-wrap .content .section-9.parallax-section .parallax__inner .sns-item .sns-info .privacy-img {
  width: 1.5vw;
  min-width: 18px;
  height: auto;
  flex-shrink: 0;
  height: auto;
}
.main-wrap .content .section-9.parallax-section .parallax__inner .sns-item .sns-info .privacy-img img {
  display: block;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.main-wrap .content .section-9.parallax-section .parallax__inner .sns-item .sns-info .sns-name {
  flex-shrink: 1;
  overflow: hidden;
}
.main-wrap .content .section-9.parallax-section .parallax__inner .sns-item .sns-info .sns-name .nickName {
  font-size: clamp(0.6rem, 0.8vw, 1.2rem);
  white-space: nowrap;
  text-align: left;
}
.main-wrap .content .section-9.parallax-section .parallax__inner .sns-item .sns-meta {
  flex-wrap: nowrap;
  color: #747171;
  font-size: clamp(0.7rem, 1vw, 0.8rem);
  flex-shrink: 0;
}
.main-wrap .content .section-9.parallax-section .parallax__inner .sns-item .date {
  white-space: nowrap;
}
.main-wrap .content .section-9.parallax-section .parallax__inner .sns-item .icon-item {
  gap: 4px;
}
.main-wrap .content .section-9.parallax-section .parallax__inner .sns-item .icon-group {
  gap: 0.5rem;
}
.main-wrap .content .section-9.parallax-section .parallax__inner .sns-item .icon-group .sns-icon {
  gap: 0.2rem;
  color: #747171;
  font-size: clamp(0.7rem, 1vw, 0.8rem);
}
.main-wrap .content .section-9.parallax-section .parallax__inner .sns-item .icon-group .sns-icon i {
  line-height: 1;
  width: 1em;
  text-align: center;
}
.main-wrap .content .section-9.parallax-section .parallax__inner .sns-item .icon-group .sns-icon .fa-heart {
  color: #bb0707;
}
@media (max-width: 800px) {
  .main-wrap .section-5 .news-container .news .news__content {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 2vw;
  }
  .main-wrap .section-5 .news-container .news .news__content .book-area {
    width: 100%;
    flex: none;
    justify-content: center;
    overflow: hidden;
  }
  .main-wrap .section-5 .news-container .news .news__content .book-area .book-card {
    height: auto;
  }
  .main-wrap .section-5 .news-container .news .news__content .news-board {
    margin-left: 0 !important;
  }
  .main-wrap .section-5 .news-container .news .news__content .news-board .board {
    margin-top: 0 !important;
  }
  .main-wrap .section-6 {
    padding-bottom: 2rem !important;
  }
  .main-wrap .section-6 .book-mark__content {
    padding-right: 0 !important;
  }
  .main-wrap .section-6 .book-mark__content .swiper-pagination {
    right: 10px !important;
    gap: 10px !important;
  }
  .main-wrap .section-6 .book-mark__content .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  .main-wrap .section-6 .book-mark__wrap {
    width: 100%;
    flex-direction: column;
    align-items: center !important;
    gap: 0 !important;
    max-width: 100%;
    margin: 0 auto;
    padding: 5px 0;
  }
  .main-wrap .section-6 .book-mark__wrap .script-box {
    width: 100%;
    align-items: center !important;
    justify-content: center !important;
  }
  .main-wrap .section-6 .book-mark__wrap .script-box .script-inner {
    width: 100%;
    padding: 20px !important;
    min-height: auto;
    z-index: 2;
  }
  .main-wrap .section-6 .book-mark__wrap .script-box .script-inner .script-text {
    width: 100%;
    text-align: center;
    word-break: keep-all;
    line-height: 1.5;
    gap: 0.5rem !important;
  }
  .main-wrap .section-6 .book-mark__wrap .script-box .script-inner .script-text i {
    font-size: 0.8em;
  }
  .main-wrap .section-6 .book-mark__wrap .script-box .script-inner .script-tag {
    margin-top: 0.5rem !important;
  }
  .main-wrap .section-6 .book-mark__wrap .book-box {
    justify-content: center !important;
    width: 100%;
    border-radius: 12px;
    background: rgba(220, 215, 210, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    gap: 1.5rem;
    padding: 1rem;
    height: auto;
    min-height: 0;
  }
  .main-wrap .section-6 .book-mark__wrap .book-box .book-cover {
    flex: 0 0 60px;
    flex-shrink: 0;
  }
  .main-wrap .section-6 .book-mark__wrap .book-box .book-cover img {
    width: 100%;
    height: auto;
    border-radius: 3px !important;
  }
  .main-wrap .section-6 .mobile-script-title {
    display: flex !important;
    flex-direction: column;
    text-align: left;
    flex: 1;
  }
  .main-wrap .section-6 .mobile-script-title .tit {
    color: #21120a;
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
    word-break: keep-all;
    line-height: 1.3;
    font-size: 0.95rem;
  }
  .main-wrap .section-6 .mobile-script-title .script-author {
    font-size: 0.8rem;
    color: #8e8b8b;
  }
  .main-wrap .section-6 .script-title {
    display: none;
  }
  .main-wrap .section-7 .card-track {
    gap: 6.5rem !important;
  }
}
@media (max-width: 768px) {
  .main-wrap .section-3 .sub-item .sub-book {
    aspect-ratio: 3/4;
    justify-content: flex-start;
    height: auto !important;
    overflow: visible !important;
  }
  .main-wrap .section-3 .sub-item .sub-book a {
    justify-content: center;
    width: 100%;
    max-width: 160px;
  }
  .main-wrap .section-3 .sub-item .sub-book a img {
    width: auto;
    max-width: 100%;
    max-height: 38vw;
    height: 100%;
    margin-bottom: 0 !important;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .main-wrap .section-3 .sub-item .text-inner {
    position: static !important;
    transform: none !important;
    text-align: center;
  }
  .main-wrap .section-3 .sub-item .sub-box {
    padding: 0.3rem !important;
  }
  .main-wrap .section-7 .card-track {
    margin-top: 70px;
  }
  .main-wrap .section-9.parallax-section .parallax__inner {
    display: flex;
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
  }
  .main-wrap .section-9.parallax-section .parallax__content {
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center;
    width: 90% !important;
    min-height: 0 !important;
  }
  .main-wrap .section-9.parallax-section .parallax__content .btn-talk {
    display: none !important;
  }
  .main-wrap .section-9.parallax-section .parallax__content .community__box {
    order: 1;
    max-width: 100%;
    text-align: center;
    margin: 2rem;
    height: auto;
  }
  .main-wrap .section-9.parallax-section .parallax__content .memo__box {
    position: relative !important;
    width: 100%;
    max-width: 300px;
    margin-top: -2rem !important;
    margin-bottom: -5rem !important;
    order: 2;
  }
  .main-wrap .section-9.parallax-section .parallax__content .memo__box .memo__wrap {
    padding: 0.5rem !important;
    background-position: top center !important;
  }
  .main-wrap .section-9.parallax-section .parallax__content .mobile-btn-talk {
    position: absolute;
    display: flex !important;
    align-items: center;
    justify-content: center;
    right: 8%;
    bottom: 5%;
    gap: 0.4rem;
    width: 7rem;
    height: 1.8rem;
    font-size: 0.7rem;
    font-weight: 500;
    color: #81685a;
    border: 2px solid #81685a;
    border-radius: 40px;
    cursor: pointer;
    z-index: 30;
    order: 3;
  }
}
@media (max-width: 601px) {
  .main-wrap {
    padding-top: calc(10vw + 20px);
  }
  .main-wrap .content {
    gap: clamp(2.5rem, 6vw, 4rem);
  }
  .main-wrap .content .section-1 {
    display: none !important;
  }
  .main-wrap .content .mobile-section-1 {
    display: block !important;
    opacity: 0;
    margin-top: 40px; /* 40px 아래에서 시작 */
    transition: opacity 1.2s ease-out, margin-top 1.2s ease-out;
  }
  .main-wrap .content .mobile-section-1.active {
    opacity: 1;
    margin-top: 10px; /* 제자리로 이동 */
  }
  .main-wrap .content .mobile-section-1 .con {
    max-width: 600px;
    padding-top: 3.8rem;
    padding-inline: 1rem;
    margin: 0 auto;
  }
  .main-wrap .content .mobile-section-1 .con .swiper .swiper-slide {
    cursor: pointer;
  }
  .main-wrap .content .mobile-section-1 .con .swiper .swiper-slide a {
    display: block;
    height: 100%;
    width: 100%;
  }
  .main-wrap .content .mobile-section-1 .con .swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    image-rendering: high-quality; /* 렌더링 시 떨림 방지 */
    backface-visibility: hidden;
    transform: translateZ(0);
  }
  .main-wrap .content .mobile-section-1 .con .swiper .fraction-nav {
    position: absolute;
    bottom: 10%;
    left: 5%;
  }
  .main-wrap .content .mobile-section-1 .con .swiper .fraction-nav .fraction-box {
    display: flex;
    align-items: center;
    gap: 1.5vw;
  }
  .main-wrap .content .mobile-section-1 .con .swiper .fraction-nav .fraction-box .swiper-pagination {
    position: static;
    width: auto;
    font-size: 10px !important;
    color: #614231;
  }
  .main-wrap .content .mobile-section-1 .con .swiper .fraction-nav .fraction-box .swiper-button {
    position: static;
    width: 0.8rem;
    height: auto;
    margin: 0;
    color: #614231;
  }
  .main-wrap .content .mobile-section-1 .con .swiper .fraction-nav .fraction-box .swiper-button::after {
    font-size: 0.6rem;
  }
  .main-wrap .content .section-2 {
    background-color: #fff;
  }
  .main-wrap .content .section-3 {
    /* 하단 2x2 그리드 */
  }
  .main-wrap .content .section-3 .subscription__header {
    align-items: flex-end;
    margin-bottom: 1rem !important;
  }
  .main-wrap .content .section-3 .subscription__header .tit-area .subscription__title p {
    margin: 0;
    margin-left: -0.1rem;
  }
  .main-wrap .content .section-3 .subscription__content .attention-item {
    min-height: auto !important;
    height: auto !important;
    aspect-ratio: 1.2/1 !important;
  }
  .main-wrap .content .section-3 .subscription__content .attention-item .attention-top {
    display: none;
  }
  .main-wrap .content .section-3 .subscription__content .attention-item .attention-book img {
    height: 48vw !important;
    width: auto;
  }
  .main-wrap .content .section-3 .subscription__content .attention-item .attention-book .text {
    bottom: -1% !important;
    font-size: 3.5vw !important;
  }
  .main-wrap .content .section-3 .sub-item {
    gap: 1.5rem !important;
  }
  .main-wrap .content .section-3 .sub-item .sub-book a {
    width: 80%;
  }
  .main-wrap .content .section-3 .sub-item .text-inner .text {
    white-space: normal !important;
    word-break: keep-all !important;
  }
  .main-wrap .content .section-3 .sub-item .sub-box {
    white-space: nowrap;
  }
  .main-wrap .content .section-3 .sub-item .sub-box .month {
    padding-right: 0.2rem !important;
  }
  .main-wrap .content .section-4 .tag-container {
    width: 100%;
    max-width: none;
    padding-inline: 0;
  }
  .main-wrap .content .section-4 .tag-container .tag {
    width: 100%;
    max-width: none;
    margin: 0;
  }
  .main-wrap .content .section-4 .tag-container .tag .tag__header {
    margin-bottom: 1rem !important;
  }
  .main-wrap .content .section-4 .tag-container .tag .tag__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    margin: 0 auto;
  }
  .main-wrap .content .section-4 .tag-container .tag .tag__content .tag-small {
    margin-bottom: 0.8rem !important;
    gap: 0.8rem !important;
  }
  .main-wrap .content .section-4 .tag-container .tag .tag__content .tag-main {
    display: none;
  }
  .main-wrap .content .section-4 .tag-container .tag .tag__content .tag-box {
    width: 100% !important;
    max-width: none;
  }
  .main-wrap .content .section-4 .tag-container .tag .tag__content .tag-box .tag-large .typing-line {
    display: block;
    width: 100%;
    white-space: normal !important;
    word-break: keep-all;
    text-align: left;
  }
  .main-wrap .content .section-4 .accordion-content {
    padding-block: 1.2rem;
  }
  .main-wrap .content .section-4 .accordion-content .book-thumb {
    gap: 1.2rem;
  }
  .main-wrap .content .section-4 .accordion-content .book-thumb img {
    width: 96px;
  }
  .main-wrap .content .section-4 .band-banner {
    border-radius: 12px 12px 0 0;
  }
  .main-wrap .content .section-4 .band-banner .band-content {
    aspect-ratio: auto !important;
  }
  .main-wrap .content .section-4 .band-banner .band-des {
    display: none;
  }
  .main-wrap .content .section-4 .band-banner .band-book {
    right: 5%;
    bottom: -1rem !important;
    width: 85px !important;
  }
  .main-wrap .content .section-4 .band-banner .band-book img {
    width: 100% !important;
  }
  .main-wrap .content .section-5 .news__header {
    margin-bottom: 1rem !important;
  }
  .main-wrap .content .section-5 .book-area {
    display: none !important;
  }
  .main-wrap .content .section-6 .book-mark__header {
    margin-bottom: 1rem !important;
  }
  .main-wrap .content .section-7 .best__header {
    margin-bottom: 1rem !important;
  }
  .main-wrap .content .section-8 .lank__header {
    margin-bottom: 1rem !important;
  }
  .main-wrap .content .section-8 .lank__content {
    margin: 0.2vw !important;
    gap: 7vw !important;
    padding: 0 !important;
    min-height: 500px !important;
  }
  .main-wrap .content .section-8 .lank__content .timeline__inner {
    bottom: 40px !important;
  }
  .main-wrap .content .section-8 .lank__item {
    position: relative;
    margin-bottom: 0 !important;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: floatingMobile 1s ease-in-out infinite;
  }
  .main-wrap .content .section-8 .lank__item::before {
    content: "";
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 100px;
    aspect-ratio: 1/1;
    background: radial-gradient(circle, ellipse at center, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 80%);
    filter: blur(15px);
    z-index: 1;
    pointer-events: none;
    animation: headGlowFloating 3s ease-in-out infinite;
  }
  .main-wrap .content .section-8 .lank__item .lank__box {
    width: 100%;
    aspect-ratio: 3/4.5;
    z-index: 2;
    width: 95% !important;
    height: 95% !important;
  }
  .main-wrap .content .section-8 .lank__item .lank__box .lank-info {
    z-index: 3;
  }
  @keyframes floatingMobile {
    0%, 100% {
      transform: translateY(0) rotate(0deg);
    }
    50% {
      transform: translateY(-12px) rotate(1deg); /* 위로 가면서 아주 살짝 오른쪽으로 기움 */
    }
  }
  @keyframes headGlowFloating {
    0%, 100% {
      transform: translateX(-50%) translateY(0) scaleX(1);
      opacity: 0.7;
    }
    50% {
      transform: translateX(-50%) translateY(-15px) scaleX(1.1);
      opacity: 1;
    }
  }
  .main-wrap .content .section-9.parallax-section .parallax__content .memo__box {
    right: 0;
    width: 280px;
  }
}