@charset "UTF-8";
@font-face {
  font-family: "Butler_Ultra_Light";
  src: url("../fonts/Butler_Ultra_Light.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Butler_Light";
  src: url("../fonts/Butler_Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Butler_Regular";
  src: url("../fonts/Butler_Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Butler_Medium";
  src: url("../fonts/Butler_Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Butler_Bold";
  src: url("../fonts/Butler_Bold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Butler_Medium_Stencil";
  src: url("../fonts/Butler_Regular_Stencil.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Butler_Ultra_Light_Stencil";
  src: url("../fonts/Butler_Ultra_Light_Stencil.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-light: #FFFFFF;
  --color-dark: #1A1A1A;
  --color-dark2: #333333;
  --color-gray: #CCCCCC;
  --color-gray2: #F5F5F5;
  --color-gray3: #EEEEEE;
  --color-accent: #B6E23A;
  --color-white: #FFFFFF;
  --cursor-default: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3e%3ccircle cx='30' cy='30' r='18' fill='%23cccccc' fill-opacity='0.4' stroke='%23cccccc' stroke-width='1'/%3e%3c/svg%3e") 30 30, auto;
  --cursor-accent: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60' style='shape-rendering: crispEdges'%3e%3ccircle cx='30' cy='30' r='18' fill='%23DCF97F' fill-opacity='0.9'/%3e%3c/svg%3e") 30 30, pointer;
  --page-gutter: 36px;
}

@media (min-width: 768px) {
  :root {
    --page-gutter: 50px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-break: keep-all;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  touch-action: pan-y;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
html::-webkit-scrollbar, body::-webkit-scrollbar {
  display: none;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Pretendard", "Butler_Medium_Stencil", sans-serif;
  font-size: 1.6rem;
  background: #fff;
  color: #222;
  min-height: 100vh;
}
body a {
  text-decoration: none;
  color: inherit;
}
body ul {
  list-style: none;
}
body button {
  font-family: "Pretendard", sans-serif;
}

:root {
  --page-gutter: 50px;
}

.fullpage-container {
  height: auto;
  width: 100%;
  max-width: 100vw;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: none;
  touch-action: pan-y;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media (min-width: 768px) {
  .fullpage-container {
    height: 100vh;
    scroll-snap-type: y mandatory;
  }
}
.fullpage-container::-webkit-scrollbar {
  display: none;
}
.fullpage-container.loading {
  scroll-behavior: auto;
}

.page {
  height: auto;
  min-height: auto;
  width: 100vw;
  max-width: 100vw;
  position: relative;
  padding: 20px 0;
}
@media (min-width: 768px) {
  .page {
    height: 100vh;
    min-height: 100vh;
    padding: 0;
    scroll-snap-align: start;
  }
}
@media (min-width: 1024px) {
  .page {
    height: 100vh;
    min-height: 100vh;
    padding: 0;
  }
}

.right-green-bar {
  position: fixed;
  top: 0;
  right: 0;
  width: 8px;
  height: 0;
  background: #B6E23A;
  z-index: 1000;
  transition: height 0.2s ease;
  background: rgba(182, 226, 58, 0.9);
  pointer-events: none;
}
@media (min-width: 768px) {
  .right-green-bar {
    background: #B6E23A;
    pointer-events: auto;
  }
}

header {
  position: relative;
  top: 30px;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: 0 30px;
}
@media (min-width: 768px) {
  header {
    position: fixed;
    padding: 0 50px;
    max-width: 1000px;
  }
}
@media (min-width: 1024px) {
  header {
    position: fixed;
    padding: 0 50px;
    max-width: 1000px;
  }
}
header > h1 .logo-img {
  height: 30px;
  width: auto;
  object-fit: contain;
}
@media (min-width: 768px) {
  header > h1 .logo-img {
    height: 40px;
  }
}
@media (min-width: 1024px) {
  header > h1 .logo-img {
    height: 40px;
  }
}
header .hamburger-menu {
  display: flex;
  position: fixed;
  top: 30px;
  right: 50px;
  width: 15px;
  height: 15px;
  background: transparent;
  border: none;
  cursor: var(--cursor-accent);
  z-index: 1001;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}
header .hamburger-menu .hamburger-line {
  width: 100%;
  height: 1px;
  background-color: var(--color-dark2);
  transition: all 0.3s ease;
  transform-origin: center;
}
header .hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
header .hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
header .hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
header .side-nav {
  position: fixed;
  display: none;
  right: var(--page-gutter);
  top: 50%;
  transform: translateY(-50%);
}
header .side-nav ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-end;
}
header .side-nav li {
  font-size: 1.6rem;
  font-family: "Butler_Medium";
  color: var(--color-dark2);
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  text-align: right;
  position: relative;
}
header .side-nav li.active {
  font-family: "Butler_Bold";
  color: var(--color-dark);
}
header .side-nav li.active::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -14px;
  width: 12px;
  height: 12px;
  background-color: var(--color-accent);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  animation: navDotAppear 0.4s ease forwards;
}
@keyframes navDotAppear {
  0% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.2) rotate(180deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(360deg);
  }
}
header .side-nav .PROJECT_li {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}
header .side-nav .PROJECT_li li {
  font-size: 1.4rem;
  font-family: "Butler_Light";
  color: var(--color-dark2);
  transition: all 0.3s ease;
  margin: 0;
  padding: 0;
  position: relative;
}
header .side-nav .PROJECT_li li.active {
  font-family: "Butler_Bold";
  color: var(--color-dark);
}
header .side-nav .PROJECT_li li.active::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 10px;
  height: 10px;
  background-color: var(--color-accent);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  animation: navDotAppearSmall 0.4s ease forwards;
}
@keyframes navDotAppearSmall {
  0% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.2) rotate(180deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(360deg);
  }
}
header .mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(3px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
header .mobile-nav-overlay.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

header.nav-open .side-nav {
  display: block;
  position: fixed;
  right: 50px;
  top: 80px;
  transform: none;
  z-index: 1002;
}
header.nav-open .side-nav > ul {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  padding: 40px 26px;
  border-radius: 12px;
  gap: 32px;
}
header.nav-open .side-nav .PROJECT_li {
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin-top: 2rem;
  gap: 12px;
}

header .hamburger-menu {
  display: flex;
}
header .side-nav {
  display: none;
}

@media (min-width: 1440px) {
  header .hamburger-menu {
    display: none;
  }
  header .side-nav {
    display: block;
  }
  header .mobile-nav-overlay {
    display: none;
  }
}
.hamburger-menu {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  width: 15px;
  height: 15px;
  background: transparent;
  border: none;
  cursor: var(--cursor-accent);
  z-index: 1002;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}
@media (min-width: 1440px) {
  .hamburger-menu {
    display: none;
  }
}
.hamburger-menu .hamburger-line {
  width: 100%;
  height: 1px;
  background-color: var(--color-dark2);
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.side-nav {
  position: absolute;
  display: none;
  right: 0;
  top: 0;
  transform: translateY(0);
}
@media (min-width: 1440px) {
  .side-nav {
    display: block;
  }
}
.side-nav ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-end;
}
.side-nav li {
  font-size: 1.6rem;
  font-family: "Butler_Medium";
  color: var(--color-dark2);
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  text-align: right;
  position: relative;
  cursor: var(--cursor-accent);
}
.side-nav li.active {
  font-family: "Butler_Bold";
  color: var(--color-dark);
}
.side-nav li.active::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -14px;
  width: 12px;
  height: 12px;
  background-color: var(--color-accent);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  animation: navDotAppear 0.4s ease forwards;
}
.side-nav .PROJECT_li {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}
.side-nav .PROJECT_li li {
  font-size: 1.4rem;
  font-family: "Butler_Light";
  color: var(--color-dark2);
  transition: all 0.3s ease;
  margin: 0;
  padding: 0;
  position: relative;
}
.side-nav .PROJECT_li li.active {
  font-family: "Butler_Bold";
  color: var(--color-dark);
}
.side-nav .PROJECT_li li.active::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 10px;
  height: 10px;
  background-color: var(--color-accent);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  animation: navDotAppearSmall 0.4s ease forwards;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(3px);
  z-index: 1003;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-nav-overlay.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

header.nav-open .side-nav {
  display: block;
  position: fixed;
  right: 36px;
  top: 70px;
  transform: none;
  z-index: 1004;
}
@media (min-width: 768px) {
  header.nav-open .side-nav {
    right: 50px;
    top: 80px;
  }
}
header.nav-open .side-nav > ul {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  padding: 40px 26px;
  border-radius: 12px;
  gap: 32px;
}
header.nav-open .side-nav .PROJECT_li {
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin-top: 2rem;
  gap: 12px;
}

@keyframes navDotAppear {
  0% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.2) rotate(180deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(360deg);
  }
}
@keyframes navDotAppearSmall {
  0% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.2) rotate(180deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(360deg);
  }
}
.skip-button {
  position: relative;
  bottom: -30px;
  left: 0;
  z-index: 100;
}
@media (min-width: 768px) {
  .skip-button {
    position: absolute;
    bottom: 60px;
  }
}
.skip-button button {
  background: transparent;
  border: none;
  font-size: 1.4rem;
  font-family: "Pretendard", sans-serif;
  text-transform: uppercase;
  cursor: var(--cursor-accent);
  position: relative;
  overflow: hidden;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .skip-button button {
    font-size: 1.6rem;
  }
}
.skip-button button .button-text,
.skip-button button .button-text-hover {
  display: block;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.skip-button button .button-text {
  transform: translateY(0);
}
.skip-button button .button-text-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(100%);
}
.skip-button button:hover .button-text {
  transform: translateY(-100%);
}
.skip-button button:hover .button-text-hover {
  transform: translateY(0);
}
.skip-button .mobile-text {
  display: inline;
}
@media (min-width: 768px) {
  .skip-button .mobile-text {
    display: none;
  }
}
.skip-button .desktop-text {
  display: none;
}
@media (min-width: 768px) {
  .skip-button .desktop-text {
    display: inline;
  }
}

.contact-links {
  position: absolute;
  bottom: 50px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (min-width: 768px) {
  .contact-links {
    bottom: 68px;
    right: 42px;
    gap: 40px;
  }
}
.contact-links a {
  color: var(--color-dark2);
  font-size: 1.4rem;
  font-family: "Pretendard", sans-serif;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  height: 20px;
  display: flex;
  align-items: center;
  cursor: var(--cursor-accent);
}
@media (min-width: 768px) {
  .contact-links a {
    font-size: 1.6rem;
  }
}
.contact-links a .button-text,
.contact-links a .button-text-hover {
  display: block;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  line-height: 20px;
  white-space: nowrap;
}
.contact-links a .button-text {
  transform: translateY(0);
}
.contact-links a .button-text-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(100%);
}
.contact-links a:hover {
  text-decoration: none;
}
.contact-links a:hover .button-text {
  transform: translateY(-100%);
}
.contact-links a:hover .button-text-hover {
  transform: translateY(0);
}

.arrow-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
}

.button-text .arrow-icon,
.button-text-hover .arrow-icon {
  margin-left: 12px;
}

.contact-form button {
  background-color: var(--color-gray2);
  color: var(--color-dark);
  border: none;
  padding: 8px 20px;
  border-radius: 16px;
  font-size: 1.6rem;
  font-weight: 300;
  font-family: "Pretendard";
  transition: all 0.3s ease;
  cursor: var(--cursor-accent);
  margin-right: 1rem;
}
.contact-form button:hover {
  background-color: var(--color-dark);
  color: var(--color-accent);
  font-weight: 400;
}
.contact-form .copy-btn {
  cursor: var(--cursor-accent);
}

.arrow-icon,
.button-text-hover .arrow-icon {
  margin-left: 12px;
}

.arrow-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
}

body {
  cursor: var(--cursor-default);
}

body.custom-cursor-active {
  cursor: none;
}

.cursor,
.custom-cursor {
  position: absolute;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--color-gray);
  margin-top: -22.5px;
  margin-left: -22.5px;
  z-index: 9999;
  pointer-events: none;
  transform: scale(0);
  transition: transform 0.3s ease;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
  display: none;
}
@media (min-width: 1024px) {
  .cursor,
  .custom-cursor {
    display: block;
  }
}
.cursor.prev, .cursor.next, .cursor.active,
.custom-cursor.prev,
.custom-cursor.next,
.custom-cursor.active {
  transition: none;
}

.cursor-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  font-weight: bold;
  opacity: 0;
  color: var(--color-dark2);
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.cursor.active,
.custom-cursor.active {
  transform: scale(1);
}

.cursor.prev,
.cursor.next,
.custom-cursor.prev,
.custom-cursor.next {
  transform: scale(1);
  width: 45px;
  height: 45px;
  background: transparent;
  border: 1px solid var(--color-gray);
}

.cursor.prev .cursor-arrow.prev,
.cursor.next .cursor-arrow.next,
.custom-cursor.prev .cursor-arrow.prev,
.custom-cursor.next .cursor-arrow.next {
  opacity: 1;
}

.cursor-arrow:not(.prev):not(.next) {
  opacity: 0;
}

header .side-nav ul li,
header .side-nav .nav-item,
header .side-nav .project-nav,
header .side-nav .sub-nav,
.project-container .project-box,
.modal .close,
.contact-form button,
.contact-form .copy-btn,
.contact-links a,
.contact-links button {
  cursor: var(--cursor-accent);
}

.preloader {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-light);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 1;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.grid-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.grid-lines {
  position: absolute;
  width: 100%;
  height: 100%;
}

.horizontal-grid-line {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--color-accent);
  opacity: 0.5;
  transform: scaleX(0);
  transform-origin: left;
}

.vertical-grid-line {
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: var(--color-accent);
  opacity: 0.5;
  transform: scaleY(0);
  transform-origin: top;
}

.loader-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.counter-container {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 4rem;
  margin-bottom: 1rem;
  font-family: "Butler_Medium_Stencil";
}
@media (min-width: 768px) {
  .counter-container {
    font-size: 6rem;
    gap: 8px;
  }
}
@media (min-width: 1024px) {
  .counter-container {
    font-size: 6rem;
    gap: 12px;
  }
}
@media (min-width: 1440px) {
  .counter-container {
    font-size: 8rem;
    gap: 12px;
  }
}
.counter-container .counter {
  opacity: 0;
  transform: translateY(20px);
}

.title {
  font-size: 1.2rem;
  font-family: "Butler_Ultra_Light";
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
}
@media (min-width: 480px) {
  .title {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .title {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
}

.progress-bar {
  width: 240px;
  height: 5px;
  background-color: var(--color-gray2);
  border-radius: 6px;
  overflow: hidden;
}
@media (min-width: 480px) {
  .progress-bar {
    width: 280px;
    height: 6px;
  }
}
@media (min-width: 768px) {
  .progress-bar {
    width: 400px;
    height: 8px;
  }
}
@media (min-width: 1024px) {
  .progress-bar {
    width: 600px;
    height: 11px;
  }
}

.progress-bar-fill {
  height: 100%;
  width: 0;
  background-color: var(--color-accent);
  border-radius: 2px;
}

.loading-overlay,
.nav-loading-overlay {
  display: none;
  position: fixed;
  z-index: 20000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  justify-content: center;
  align-items: center;
}

.loader {
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pl {
  width: 120px;
  height: 120px;
  display: block;
}

.pl__ring {
  stroke: #ddd;
  opacity: 0.3;
}

.pl__worm {
  stroke: #B6E23A;
  stroke-linecap: round;
  animation: worm 1.5s linear infinite;
  transform-origin: 50% 50%;
}

@keyframes worm {
  0% {
    stroke-dasharray: 60 600;
    stroke-dashoffset: 0;
    transform: rotate(0deg);
  }
  50% {
    stroke-dasharray: 300 600;
    stroke-dashoffset: -50;
    transform: rotate(45deg);
  }
  100% {
    stroke-dasharray: 60 600;
    stroke-dashoffset: -600;
    transform: rotate(360deg);
  }
}
.nav-loading-overlay .nav-loader-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.nav-loading-overlay .nav-counter {
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-dark2);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
}
@media (min-width: 768px) {
  .nav-loading-overlay .nav-counter {
    font-size: 6rem;
  }
}
.nav-loading-overlay .nav-title {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-dark2);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
}
@media (min-width: 768px) {
  .nav-loading-overlay .nav-title {
    font-size: 1.4rem;
  }
}
.nav-loading-overlay .nav-progress-bar {
  width: 200px;
  height: 3px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .nav-loading-overlay .nav-progress-bar {
    width: 250px;
  }
}
.nav-loading-overlay .nav-progress-bar-fill {
  height: 100%;
  width: 0;
  background-color: #B6E23A;
  border-radius: 2px;
}

.character-modal,
.teamwork-modal,
.mywork-modal,
.tiger-modal,
.book-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.character-modal.show,
.teamwork-modal.show,
.mywork-modal.show,
.tiger-modal.show,
.book-modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hb-modal-container {
  position: relative;
  background-color: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  cursor: default;
  overflow: visible;
  display: flex;
  top: 20px;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 94%;
  gap: 15px;
  border-radius: 8px;
  min-height: 600px;
  padding: 30px 40px;
}
@media (min-width: 768px) {
  .hb-modal-container {
    width: 95%;
    min-height: 660px;
    gap: 20px;
    border-radius: 12px;
    padding: 40px 60px;
  }
}
@media (min-width: 1024px) {
  .hb-modal-container {
    width: 90%;
    max-width: 1100px;
    min-height: 680px;
    padding: 60px 100px;
    gap: 40px;
    border-radius: 12px;
  }
}
@media (min-height: 680px) {
  .hb-modal-container {
    transform: translate(-50%, -50%);
    top: 50%;
  }
}

.character-modal .close,
.teamwork-modal .close,
.mywork-modal .close,
.tiger-modal .close,
.book-modal .close {
  position: absolute;
  z-index: 10;
  background: none;
  border: none;
  cursor: var(--cursor-accent);
  color: #666;
  font-weight: bold;
  top: 10px;
  right: 15px;
  font-size: 24px;
}
@media (min-width: 768px) {
  .character-modal .close,
  .teamwork-modal .close,
  .mywork-modal .close,
  .tiger-modal .close,
  .book-modal .close {
    top: 20px;
    right: 30px;
    font-size: 28px;
  }
}
.character-modal .close:hover,
.teamwork-modal .close:hover,
.mywork-modal .close:hover,
.tiger-modal .close:hover,
.book-modal .close:hover {
  color: #333;
}

.character-modal.show,
.teamwork-modal.show,
.mywork-modal.show,
.tiger-modal.show,
.book-modal.show {
  display: block;
  visibility: visible;
  opacity: 1;
}

.project-image-scroll-box {
  width: 100%;
  height: 480px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #f8f8f8;
  position: relative;
  margin: 20px auto;
}
.project-image-scroll-box::-webkit-scrollbar {
  width: 8px;
}
.project-image-scroll-box::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.project-image-scroll-box::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}
.project-image-scroll-box::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}
.project-image-scroll-box img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.project-image-scroll-box.fullscreen-mode {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  border: none;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0.95);
  margin: 0;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
}
.project-image-scroll-box.fullscreen-mode img {
  width: 100vw;
  max-width: 100vw;
  height: auto;
  object-fit: contain;
  cursor: pointer;
  display: block;
}
.project-image-scroll-box.fullscreen-mode img:hover {
  transform: none;
}

.teamwork-detail-content {
  width: 100%;
  height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .teamwork-detail-content {
    height: 500px;
  }
}
@media (min-width: 1024px) {
  .teamwork-detail-content {
    height: 500px;
  }
}
.teamwork-detail-content .teamwork-description p {
  line-height: 1.7;
  color: var(--color-dark2);
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .teamwork-detail-content .teamwork-description p {
    font-size: 1.3rem;
  }
}
@media (min-width: 1024px) {
  .teamwork-detail-content .teamwork-description p {
    font-size: 1.4rem;
  }
}
.teamwork-detail-content .teamwork-features .feature-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .teamwork-detail-content .teamwork-features .feature-header {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .teamwork-detail-content .teamwork-features .feature-header {
    font-size: 1.8rem;
  }
}
.teamwork-detail-content .teamwork-features .feature-header .feature-icon {
  margin-right: 12px;
}
.teamwork-detail-content .teamwork-features .feature-header h3 {
  font-weight: 700;
  margin: 0;
}
.teamwork-detail-content .teamwork-features .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.teamwork-detail-content .teamwork-features .feature-list li {
  line-height: 1.5;
  margin-bottom: 8px;
  padding-left: 12px;
  position: relative;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .teamwork-detail-content .teamwork-features .feature-list li {
    font-size: 1.3rem;
  }
}
@media (min-width: 1024px) {
  .teamwork-detail-content .teamwork-features .feature-list li {
    font-size: 1.4rem;
  }
}
.teamwork-detail-content .teamwork-features .feature-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-dark2);
}
.teamwork-detail-content .teamwork-technologies .tech-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .teamwork-detail-content .teamwork-technologies .tech-header {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .teamwork-detail-content .teamwork-technologies .tech-header {
    font-size: 1.8rem;
  }
}
.teamwork-detail-content .teamwork-technologies .tech-header .tech-icon {
  margin-right: 12px;
}
.teamwork-detail-content .teamwork-technologies .tech-header h3 {
  font-weight: 700;
  margin: 0;
}
.teamwork-detail-content .teamwork-technologies .tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.teamwork-detail-content .teamwork-technologies .tech-tags .tech-tag {
  background: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: 20px;
  padding: 4px 12px;
  transition: all 0.2s ease;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .teamwork-detail-content .teamwork-technologies .tech-tags .tech-tag {
    font-size: 1.3rem;
    padding: 7px 22px;
  }
}
@media (min-width: 1024px) {
  .teamwork-detail-content .teamwork-technologies .tech-tags .tech-tag {
    font-size: 1.4rem;
    padding: 8px 24px;
  }
}
.teamwork-detail-content .teamwork-technologies .tech-tags .tech-tag:hover {
  background: var(--color-gray2);
  border-color: var(--color-gray);
}
.teamwork-detail-content .teamwork-goto-site {
  text-align: center;
  width: 100%;
}
.teamwork-detail-content .teamwork-goto-site .goto-site-btn {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--color-gray2);
  color: var(--color-dark2);
  text-decoration: none;
  padding: 10px 0;
  border-radius: 20px;
  border: 1px solid var(--color-gray);
  font-weight: 700;
  transition: all 0.2s ease;
  cursor: var(--cursor-accent);
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .teamwork-detail-content .teamwork-goto-site .goto-site-btn {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .teamwork-detail-content .teamwork-goto-site .goto-site-btn {
    font-size: 1.6rem;
  }
}
.teamwork-detail-content .teamwork-goto-site .goto-site-btn .site-arrow-icon {
  color: var(--color-dark2);
  margin-left: 6px;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .teamwork-detail-content .teamwork-goto-site .goto-site-btn .site-arrow-icon {
    font-size: 1.7rem;
    margin-left: 7px;
  }
}
@media (min-width: 1024px) {
  .teamwork-detail-content .teamwork-goto-site .goto-site-btn .site-arrow-icon {
    font-size: 1.8rem;
    margin-left: 18px;
  }
}
.teamwork-detail-content .teamwork-goto-site .goto-site-btn:hover {
  background: var(--color-gray);
}

.teamwork-modal-title {
  font-weight: 700;
  color: #333;
  font-size: 1.8rem;
}
.teamwork-modal-title span {
  font-size: 1.2rem;
  font-weight: 200;
  padding-left: 3px;
  color: #666;
}
@media (min-width: 768px) {
  .teamwork-modal-title {
    font-size: 2.2rem;
  }
  .teamwork-modal-title span {
    font-size: 1.6rem;
    padding-left: 5px;
  }
}
@media (min-width: 1024px) {
  .teamwork-modal-title {
    font-size: 2.5rem;
  }
  .teamwork-modal-title span {
    font-size: 1.8rem;
  }
}

.teamwork-modal-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
  height: 100%;
}
@media (min-width: 768px) {
  .teamwork-modal-container {
    gap: 20px;
  }
}

.teamwork-left-section {
  flex: 0 0 auto;
}

.mywork-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 3000;
}
.mywork-modal .mywork-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: var(--cursor-accent);
}
.mywork-modal .mywork-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: transparent;
  padding: 0;
  box-shadow: none;
  overflow: visible;
}
.mywork-modal .mywork-modal-content .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 28px;
  font-weight: bold;
  color: #666;
  cursor: var(--cursor-accent);
  z-index: 10;
}
.mywork-modal .mywork-modal-content .close:hover {
  color: #333;
}

.mywork-modal-page {
  display: none;
  width: 100%;
  height: 100%;
  position: relative;
}
.mywork-modal-page:first-child {
  display: block;
}

.mywork-modal-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
  height: 100%;
}
@media (min-width: 768px) {
  .mywork-modal-container {
    gap: 20px;
  }
}

.mywork-left-section {
  flex: 0 0 auto;
}

.mywork-right-section {
  height: 540px;
  align-items: center;
}
@media (min-width: 768px) {
  .mywork-right-section {
    height: 500px;
  }
}
@media (min-width: 1024px) {
  .mywork-right-section {
    height: 500px;
  }
}

.mywork-modal-title {
  font-weight: 700;
  color: #333;
  font-size: 1.8rem;
}
.mywork-modal-title span {
  font-size: 1.2rem;
  font-weight: 200;
  padding-left: 3px;
  color: #666;
}
@media (min-width: 768px) {
  .mywork-modal-title {
    font-size: 2.2rem;
  }
  .mywork-modal-title span {
    font-size: 1.6rem;
    padding-left: 5px;
  }
}
@media (min-width: 1024px) {
  .mywork-modal-title {
    font-size: 2.5rem;
  }
  .mywork-modal-title span {
    font-size: 1.8rem;
  }
}

.mywork-detail-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mywork-detail-content::-webkit-scrollbar {
  width: 8px;
}
.mywork-detail-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.mywork-detail-content::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}
.mywork-detail-content::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.mywork-description p {
  line-height: 1.7;
  color: var(--color-dark2);
  margin: 0;
  text-align: justify;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .mywork-description p {
    font-size: 1.3rem;
  }
}
@media (min-width: 1024px) {
  .mywork-description p {
    font-size: 1.4rem;
  }
}

.mywork-images {
  display: flex;
  gap: 20px;
}
.mywork-images .mywork-image-item {
  background: #f5f5f5;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
}
.mywork-images .mywork-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.mywork-features .feature-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .mywork-features .feature-header {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .mywork-features .feature-header {
    font-size: 1.8rem;
  }
}
.mywork-features .feature-header .feature-icon {
  margin-right: 12px;
}
.mywork-features .feature-header h3 {
  font-weight: 700;
  margin: 0;
}
.mywork-features .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mywork-features .feature-list li {
  line-height: 1.5;
  margin-bottom: 8px;
  padding-left: 12px;
  position: relative;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .mywork-features .feature-list li {
    font-size: 1.3rem;
  }
}
@media (min-width: 1024px) {
  .mywork-features .feature-list li {
    font-size: 1.4rem;
  }
}
.mywork-features .feature-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-dark2);
}

.mywork-technologies .tech-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .mywork-technologies .tech-header {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .mywork-technologies .tech-header {
    font-size: 1.8rem;
  }
}
.mywork-technologies .tech-header .tech-icon {
  margin-right: 12px;
}
.mywork-technologies .tech-header h3 {
  font-weight: 700;
  margin: 0;
}
.mywork-technologies .tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.mywork-technologies .tech-tags .tech-tag {
  background: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: 20px;
  padding: 4px 12px;
  transition: all 0.2s ease;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .mywork-technologies .tech-tags .tech-tag {
    font-size: 1.3rem;
    padding: 7px 22px;
  }
}
@media (min-width: 1024px) {
  .mywork-technologies .tech-tags .tech-tag {
    font-size: 1.4rem;
    padding: 8px 24px;
  }
}
.mywork-technologies .tech-tags .tech-tag:hover {
  background: var(--color-gray2);
  border-color: var(--color-gray);
}

.mywork-overview {
  text-align: center;
  width: 100%;
}
.mywork-overview .overview-btn {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--color-gray2);
  color: var(--color-dark2);
  text-decoration: none;
  padding: 6px 0;
  border-radius: 20px;
  border: 1px solid var(--color-gray);
  font-weight: 700;
  transition: all 0.2s ease;
  cursor: var(--cursor-accent);
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .mywork-overview .overview-btn {
    font-size: 1.5rem;
    padding: 8px 0;
  }
}
@media (min-width: 1024px) {
  .mywork-overview .overview-btn {
    font-size: 1.6rem;
    padding: 10px 0;
  }
}
.mywork-overview .overview-btn .overview-arrow-icon {
  color: var(--color-dark2);
  margin-left: 6px;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .mywork-overview .overview-btn .overview-arrow-icon {
    font-size: 1.7rem;
    margin-left: 7px;
  }
}
@media (min-width: 1024px) {
  .mywork-overview .overview-btn .overview-arrow-icon {
    font-size: 1.8rem;
    margin-left: 18px;
  }
}
.mywork-overview .overview-btn:hover {
  background: var(--color-gray);
}

.character-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.character-modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
}
.character-modal .hb-modal-container {
  position: relative;
  background-color: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  cursor: default;
  overflow: visible;
  display: flex;
  top: 20px;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 94%;
  gap: 15px;
  border-radius: 8px;
  min-height: 600px;
  padding: 30px 40px;
}
@media (min-width: 768px) {
  .character-modal .hb-modal-container {
    width: 95%;
    min-height: 660px;
    gap: 20px;
    border-radius: 12px;
    padding: 40px 60px;
  }
}
@media (min-width: 1024px) {
  .character-modal .hb-modal-container {
    width: 90%;
    max-width: 1100px;
    min-height: 680px;
    padding: 60px 100px;
    gap: 40px;
    border-radius: 12px;
  }
}
@media (min-height: 680px) {
  .character-modal .hb-modal-container {
    transform: translate(-50%, -50%);
    top: 50%;
  }
}
.character-modal .hb-modal-container .character-page {
  width: 100%;
  height: 100%;
  position: relative;
}
.character-modal .hb-modal-container .modal-next-arrow,
.character-modal .hb-modal-container .character-prev-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-color: #f8f8f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: var(--cursor-accent);
  transition: all 0.3s ease;
  border: 2px solid #e0e0e0;
  z-index: 2001;
  padding-right: 12px;
}
@media (min-width: 768px) {
  .character-modal .hb-modal-container .modal-next-arrow,
  .character-modal .hb-modal-container .character-prev-arrow {
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 1024px) {
  .character-modal .hb-modal-container .modal-next-arrow,
  .character-modal .hb-modal-container .character-prev-arrow {
    width: 50px;
    height: 50px;
  }
}
.character-modal .hb-modal-container .modal-next-arrow:hover,
.character-modal .hb-modal-container .character-prev-arrow:hover {
  background-color: #333;
  border-color: #333;
}
.character-modal .hb-modal-container .modal-next-arrow:hover .arrow-icon,
.character-modal .hb-modal-container .character-prev-arrow:hover .arrow-icon {
  color: white;
}
.character-modal .hb-modal-container .modal-next-arrow .arrow-icon,
.character-modal .hb-modal-container .character-prev-arrow .arrow-icon {
  font-size: 16px;
  font-weight: bold;
  color: #666;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1;
}
@media (min-width: 1024px) {
  .character-modal .hb-modal-container .modal-next-arrow .arrow-icon,
  .character-modal .hb-modal-container .character-prev-arrow .arrow-icon {
    font-size: 20px;
  }
}
.character-modal .hb-modal-container .modal-next-arrow {
  right: -34px;
}
@media (min-width: 768px) {
  .character-modal .hb-modal-container .modal-next-arrow {
    right: -50px;
  }
}
@media (min-width: 1024px) {
  .character-modal .hb-modal-container .modal-next-arrow {
    right: -72px;
  }
}
.character-modal .hb-modal-container .character-prev-arrow {
  left: -34px;
}
@media (min-width: 768px) {
  .character-modal .hb-modal-container .character-prev-arrow {
    left: -50px;
  }
}
@media (min-width: 1024px) {
  .character-modal .hb-modal-container .character-prev-arrow {
    left: -72px;
  }
}

#characterPage1 {
  flex-direction: column;
  justify-content: space-between;
}
#characterPage1 .character-modal-title {
  text-align: left;
  font-weight: 700;
  width: 100%;
  font-size: 2rem;
}
@media (min-width: 768px) {
  #characterPage1 .character-modal-title {
    font-size: 2.2rem;
  }
}
@media (min-width: 1024px) {
  #characterPage1 .character-modal-title {
    font-size: 2.5rem;
  }
}
#characterPage1 .character-modal-title span {
  font-weight: 200;
  padding-left: 5px;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  #characterPage1 .character-modal-title span {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  #characterPage1 .character-modal-title span {
    font-size: 1.8rem;
  }
}
#characterPage1 .character-page1-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  #characterPage1 .character-page1-content {
    flex-direction: row;
    height: 530px;
  }
}
@media (min-width: 1024px) {
  #characterPage1 .character-page1-content {
    flex-direction: row;
    height: 530px;
  }
}
#characterPage1 .character-page1-content .character-left-section {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 768px) {
  #characterPage1 .character-page1-content .character-left-section {
    flex: 0 0 320px;
  }
}
@media (min-width: 1024px) {
  #characterPage1 .character-page1-content .character-left-section {
    flex: 0 0 360px;
  }
}
#characterPage1 .character-page1-content .character-left-section .character-main-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
#characterPage1 .character-page1-content .character-left-section .character-main-image img {
  width: 320px;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0;
  border: none;
}
@media (min-width: 768px) {
  #characterPage1 .character-page1-content .character-left-section .character-main-image img {
    width: 320px;
  }
}
@media (min-width: 1024px) {
  #characterPage1 .character-page1-content .character-left-section .character-main-image img {
    width: 360px;
  }
}
#characterPage1 .character-page1-content .character-left-section .character-left-bottom {
  margin-top: 20px;
}
@media (min-width: 768px) {
  #characterPage1 .character-page1-content .character-left-section .character-left-bottom {
    margin-top: 10px;
  }
}
@media (min-width: 1024px) {
  #characterPage1 .character-page1-content .character-left-section .character-left-bottom {
    margin-top: 10px;
  }
}
#characterPage1 .character-page1-content .character-left-section .character-left-bottom .character-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#characterPage1 .character-page1-content .character-left-section .character-left-bottom .character-section .section-title {
  font-size: 1.4rem;
  font-weight: 600;
}
#characterPage1 .character-page1-content .character-left-section .character-left-bottom .character-section .section-content {
  font-size: 1.2rem;
  line-height: 1.8rem;
  margin: 0;
  text-align: justify;
}
@media (min-width: 768px) {
  #characterPage1 .character-page1-content .character-left-section .character-left-bottom .character-section .section-content {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
}
@media (min-width: 1024px) {
  #characterPage1 .character-page1-content .character-left-section .character-left-bottom .character-section .section-content {
    font-size: 1.4rem;
    line-height: 2rem;
  }
}
#characterPage1 .character-page1-content .character-left-section .character-left-bottom .character-section .mobile-only {
  display: block;
}
@media (min-width: 768px) {
  #characterPage1 .character-page1-content .character-left-section .character-left-bottom .character-section .mobile-only {
    display: none;
  }
}
@media (min-width: 1024px) {
  #characterPage1 .character-page1-content .character-left-section .character-left-bottom .character-section .mobile-only {
    display: none;
  }
}
#characterPage1 .character-page1-content .character-right-section {
  flex: 1;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
@media (min-width: 768px) {
  #characterPage1 .character-page1-content .character-right-section {
    display: flex;
  }
}
@media (min-width: 1024px) {
  #characterPage1 .character-page1-content .character-right-section {
    display: flex;
  }
}
#characterPage1 .character-page1-content .character-right-section .character-section .section-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 5px;
  margin-top: 0;
  display: block;
}
#characterPage1 .character-page1-content .character-right-section .character-section .section-content {
  line-height: 2rem;
  margin: 0;
  text-align: justify;
  display: block;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  #characterPage1 .character-page1-content .character-right-section .character-section .section-content {
    font-size: 1.2rem;
  }
}
@media (min-width: 1024px) {
  #characterPage1 .character-page1-content .character-right-section .character-section .section-content {
    font-size: 1.4rem;
  }
}
#characterPage1 .character-page1-content .character-right-section .character-section .sketch-container {
  margin-top: 15px;
}
#characterPage1 .character-page1-content .character-right-section .character-section .sketch-container .sketch-image {
  width: 90%;
  height: auto;
}
#characterPage1 .character-page1-content .character-right-section .character-section .goods-image {
  margin-top: 15px;
  margin-bottom: 20px;
}
#characterPage1 .character-page1-content .character-right-section .character-section .goods-image img {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: cover;
  border-radius: 0;
  border: none;
}
#characterPage1 .character-page1-content .character-right-section .character-main-image2 {
  margin-top: 20px;
}

#characterPage2 {
  height: auto;
  flex-direction: column;
  justify-content: space-between;
}
#characterPage2 .character-modal-title {
  text-align: left;
  font-weight: 700;
  width: 100%;
  font-size: 2rem;
}
@media (min-width: 768px) {
  #characterPage2 .character-modal-title {
    font-size: 2.2rem;
  }
}
@media (min-width: 1024px) {
  #characterPage2 .character-modal-title {
    font-size: 2.5rem;
  }
}
#characterPage2 .character-modal-title span {
  font-weight: 200;
  padding-left: 5px;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  #characterPage2 .character-modal-title span {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  #characterPage2 .character-modal-title span {
    font-size: 1.8rem;
  }
}
#characterPage2 .character-left-section {
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
  overflow: scroll;
  overflow-x: overlay;
}
@media (min-width: 768px) {
  #characterPage2 .character-left-section {
    overflow: hidden;
    overflow-x: hidden;
  }
}
@media (min-width: 1024px) {
  #characterPage2 .character-left-section {
    overflow: hidden;
    overflow-x: hidden;
  }
}
#characterPage2 .character-left-section .character-main-image2 {
  width: 100%;
}
#characterPage2 .character-left-section .character-main-image2 img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
#characterPage2 .character-left-section .character-main-image3 {
  width: 100%;
  display: block;
}
#characterPage2 .character-left-section .character-main-image3 img {
  padding: 10px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media (min-width: 768px) {
  #characterPage2 .character-left-section .character-main-image3 {
    display: none;
  }
}
@media (min-width: 1024px) {
  #characterPage2 .character-left-section .character-main-image3 {
    display: none;
  }
}

#characterPage3 {
  height: auto;
  flex-direction: column;
  justify-content: space-between;
}
#characterPage3 .character-modal-title {
  text-align: left;
  font-weight: 700;
  width: 100%;
  font-size: 2rem;
}
@media (min-width: 768px) {
  #characterPage3 .character-modal-title {
    font-size: 2.2rem;
  }
}
@media (min-width: 1024px) {
  #characterPage3 .character-modal-title {
    font-size: 2.5rem;
  }
}
#characterPage3 .character-modal-title span {
  font-weight: 200;
  padding-left: 5px;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  #characterPage3 .character-modal-title span {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  #characterPage3 .character-modal-title span {
    font-size: 1.8rem;
  }
}
#characterPage3 .character-page3-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
#characterPage3 .character-page3-container .character-modal-title {
  text-align: start;
  font-size: 2.5rem;
  font-weight: 700;
  width: 100%;
}
#characterPage3 .character-page3-container .character-modal-title span {
  font-size: 1.8rem;
  font-weight: 200;
  padding-left: 5px;
}
#characterPage3 .character-page3-container .character-page3-grid {
  display: grid;
  gap: 10px;
  width: 100%;
  align-items: end;
  position: relative;
  grid-template-columns: auto;
  grid-template-rows: repeat(3, auto);
  max-width: none;
}
@media (min-width: 768px) {
  #characterPage3 .character-page3-container .character-page3-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 732px;
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  #characterPage3 .character-page3-container .character-page3-grid {
    grid-template-columns: 1fr 0.5fr 0.5fr;
    max-width: none;
    gap: 20px;
  }
}
#characterPage3 .character-page3-container .character-page3-grid .character-page3-left {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
}
@media (min-width: 768px) {
  #characterPage3 .character-page3-container .character-page3-grid .character-page3-left {
    height: 100%;
    justify-content: start;
  }
}
@media (min-width: 1024px) {
  #characterPage3 .character-page3-container .character-page3-grid .character-page3-left {
    height: 100%;
    justify-content: center;
  }
}
#characterPage3 .character-page3-container .character-page3-grid .character-page3-left .character-main-image-large {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  max-width: none;
}
@media (min-width: 768px) {
  #characterPage3 .character-page3-container .character-page3-grid .character-page3-left .character-main-image-large {
    max-width: 300px;
  }
}
@media (min-width: 1024px) {
  #characterPage3 .character-page3-container .character-page3-grid .character-page3-left .character-main-image-large {
    max-width: none;
  }
}
#characterPage3 .character-page3-container .character-page3-grid .character-page3-left .character-main-image-large img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0;
  border: none;
}
#characterPage3 .character-page3-container .character-page3-grid .character-page3-center {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  height: 100%;
}
#characterPage3 .character-page3-container .character-page3-grid .character-page3-center .character-descriptions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
#characterPage3 .character-page3-container .character-page3-grid .character-page3-center .character-descriptions .description-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
@media (min-width: 768px) {
  #characterPage3 .character-page3-container .character-page3-grid .character-page3-center .character-descriptions .description-item {
    gap: 10px;
  }
}
@media (min-width: 1024px) {
  #characterPage3 .character-page3-container .character-page3-grid .character-page3-center .character-descriptions .description-item {
    gap: 10px;
  }
}
#characterPage3 .character-page3-container .character-page3-grid .character-page3-center .character-descriptions .description-item .item-number {
  font-size: 1.4rem;
  font-weight: bold;
  flex-shrink: 0;
}
#characterPage3 .character-page3-container .character-page3-grid .character-page3-center .character-descriptions .description-item .item-text {
  font-size: 1.2rem;
  line-height: 1.4;
}
@media (min-width: 768px) {
  #characterPage3 .character-page3-container .character-page3-grid .character-page3-center .character-descriptions .description-item .item-text {
    font-size: 1.3rem;
  }
}
@media (min-width: 1024px) {
  #characterPage3 .character-page3-container .character-page3-grid .character-page3-center .character-descriptions .description-item .item-text {
    font-size: 1.4rem;
  }
}
#characterPage3 .character-page3-container .character-page3-grid .character-page3-right {
  height: 100%;
  grid-column: auto;
}
@media (min-width: 768px) {
  #characterPage3 .character-page3-container .character-page3-grid .character-page3-right {
    grid-column: 1/3;
  }
}
@media (min-width: 1024px) {
  #characterPage3 .character-page3-container .character-page3-grid .character-page3-right {
    grid-column: auto;
  }
}
#characterPage3 .character-page3-container .character-page3-grid .character-page3-right .character-goods-images-vertical {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}
@media (min-width: 768px) {
  #characterPage3 .character-page3-container .character-page3-grid .character-page3-right .character-goods-images-vertical {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  #characterPage3 .character-page3-container .character-page3-grid .character-page3-right .character-goods-images-vertical {
    flex-direction: column;
  }
}
#characterPage3 .character-page3-container .character-page3-grid .character-page3-right .character-goods-images-vertical .goods-image-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  border: none;
}

.tiger-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.tiger-modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
}
.tiger-modal .hb-modal-container {
  position: relative;
  background-color: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  cursor: default;
  overflow: visible;
  display: flex;
  top: 20px;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 94%;
  gap: 15px;
  border-radius: 8px;
  min-height: 600px;
  padding: 30px 40px;
}
@media (min-width: 768px) {
  .tiger-modal .hb-modal-container {
    width: 95%;
    min-height: 660px;
    gap: 20px;
    border-radius: 12px;
    padding: 40px 60px;
  }
}
@media (min-width: 1024px) {
  .tiger-modal .hb-modal-container {
    width: 90%;
    max-width: 1100px;
    min-height: 680px;
    padding: 60px 100px;
    gap: 40px;
    border-radius: 12px;
  }
}
@media (min-height: 680px) {
  .tiger-modal .hb-modal-container {
    transform: translate(-50%, -50%);
    top: 50%;
  }
}
.tiger-modal .hb-modal-container .close {
  position: absolute;
  z-index: 10;
  background: none;
  border: none;
  cursor: var(--cursor-accent);
  color: #666;
  font-weight: bold;
  top: 10px;
  right: 15px;
  font-size: 24px;
}
@media (min-width: 768px) {
  .tiger-modal .hb-modal-container .close {
    top: 20px;
    right: 30px;
    font-size: 28px;
  }
}
.tiger-modal .hb-modal-container .close:hover {
  color: #333;
}

.tiger-page .teamwork-modal-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 30px;
}
.tiger-page .teamwork-modal-container .teamwork-left-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tiger-page .teamwork-modal-container .teamwork-left-section .character-modal-title {
  text-align: left;
  font-weight: 700;
  width: 100%;
  font-size: 2rem;
}
@media (min-width: 768px) {
  .tiger-page .teamwork-modal-container .teamwork-left-section .character-modal-title {
    font-size: 2.2rem;
  }
}
@media (min-width: 1024px) {
  .tiger-page .teamwork-modal-container .teamwork-left-section .character-modal-title {
    font-size: 2.5rem;
  }
}
.tiger-page .teamwork-modal-container .teamwork-left-section .character-modal-title span {
  font-weight: 200;
  padding-left: 5px;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .tiger-page .teamwork-modal-container .teamwork-left-section .character-modal-title span {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .tiger-page .teamwork-modal-container .teamwork-left-section .character-modal-title span {
    font-size: 1.8rem;
  }
}
.tiger-page .teamwork-modal-container .teamwork-right-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.tiger-page .teamwork-modal-container .teamwork-right-section .tiger-left-bottom .tiger-info-item p {
  font-size: 1.2rem;
  line-height: 1.6rem;
}
@media (min-width: 768px) {
  .tiger-page .teamwork-modal-container .teamwork-right-section .tiger-left-bottom .tiger-info-item p {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .tiger-page .teamwork-modal-container .teamwork-right-section .tiger-left-bottom .tiger-info-item p {
    font-size: 1.6rem;
    line-height: 2rem;
  }
}
.tiger-page .teamwork-modal-container .teamwork-right-section .tiger-main-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -20px;
}
@media (min-width: 768px) {
  .tiger-page .teamwork-modal-container .teamwork-right-section .tiger-main-image {
    margin-top: -40px;
  }
}
@media (min-width: 1024px) {
  .tiger-page .teamwork-modal-container .teamwork-right-section .tiger-main-image {
    margin-top: -58px;
  }
}
.tiger-page .teamwork-modal-container .teamwork-right-section .tiger-main-image img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  border-radius: 0;
  border: none;
}
.tiger-page .teamwork-modal-container .teamwork-right-section .tiger-applications h4 {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 15px 0;
  color: #333;
}
@media (min-width: 768px) {
  .tiger-page .teamwork-modal-container .teamwork-right-section .tiger-applications {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .tiger-page .teamwork-modal-container .teamwork-right-section .tiger-applications {
    font-size: 1.8rem;
  }
}
.tiger-page .teamwork-modal-container .teamwork-right-section .tiger-applications .tiger-app-images {
  display: flex;
  gap: 20px;
  align-items: start;
  flex-direction: column;
}
@media (min-width: 768px) {
  .tiger-page .teamwork-modal-container .teamwork-right-section .tiger-applications .tiger-app-images {
    gap: 10px;
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .tiger-page .teamwork-modal-container .teamwork-right-section .tiger-applications .tiger-app-images {
    gap: 10px;
    flex-direction: row;
    align-items: center;
  }
}
.tiger-page .teamwork-modal-container .teamwork-right-section .tiger-applications .tiger-app-images .tiger-app-images-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.tiger-page .teamwork-modal-container .teamwork-right-section .tiger-applications .tiger-app-images .tiger-app-text {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-left: 0px;
}
@media (min-width: 768px) {
  .tiger-page .teamwork-modal-container .teamwork-right-section .tiger-applications .tiger-app-images .tiger-app-text {
    margin-left: 20px;
  }
}
@media (min-width: 1024px) {
  .tiger-page .teamwork-modal-container .teamwork-right-section .tiger-applications .tiger-app-images .tiger-app-text {
    margin-left: 20px;
  }
}
.tiger-page .teamwork-modal-container .teamwork-right-section .tiger-applications .tiger-app-images .tiger-app-text .description-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.tiger-page .teamwork-modal-container .teamwork-right-section .tiger-applications .tiger-app-images .tiger-app-text .description-item .item-number {
  font-size: 1.2rem;
  font-weight: bold;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .tiger-page .teamwork-modal-container .teamwork-right-section .tiger-applications .tiger-app-images .tiger-app-text .description-item .item-number {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  .tiger-page .teamwork-modal-container .teamwork-right-section .tiger-applications .tiger-app-images .tiger-app-text .description-item .item-number {
    font-size: 1.6rem;
  }
}
.tiger-page .teamwork-modal-container .teamwork-right-section .tiger-applications .tiger-app-images .tiger-app-text .description-item .item-text {
  font-size: 1.2rem;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .tiger-page .teamwork-modal-container .teamwork-right-section .tiger-applications .tiger-app-images .tiger-app-text .description-item .item-text {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  .tiger-page .teamwork-modal-container .teamwork-right-section .tiger-applications .tiger-app-images .tiger-app-text .description-item .item-text {
    font-size: 1.6rem;
  }
}

.book-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
}
.book-modal .book-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.book-modal .book-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  padding: 0;
  max-width: 95vw;
  max-height: 95vh;
}
.book-modal .book-modal-content .book-modal-image img {
  width: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  height: 300px;
}
@media (min-width: 768px) {
  .book-modal .book-modal-content .book-modal-image img {
    height: 450px;
  }
}
@media (min-width: 1024px) {
  .book-modal .book-modal-content .book-modal-image img {
    height: 600px;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal .modal-content {
  background-color: var(--color-light);
  margin: 10% auto;
  padding: 3rem;
  border-radius: 15px;
  width: 80%;
  max-width: 600px;
  position: relative;
}
.modal .modal-content .close {
  color: #aaa;
  float: right;
  font-size: 2.8rem;
  font-weight: bold;
  position: absolute;
  top: 1rem;
  right: 2rem;
}
.modal .modal-content .close:hover {
  color: var(--color-dark);
}
.modal .modal-content h3 {
  font-family: "Butler_Medium_Stencil", "Pretendard", sans-serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.modal .modal-content p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--color-dark2);
}

.about-container {
  max-width: none;
  width: 100%;
  padding: 40px 30px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: auto;
}
@media (min-width: 768px) {
  .about-container {
    padding: 30px 50px;
    max-width: 1000px;
    min-height: 100vh;
    justify-content: center;
  }
}
.about-container .about-bg-title {
  position: absolute;
  top: 170px;
  right: auto;
  font-size: 8rem;
  color: var(--color-gray2);
  font-family: "Butler_Medium_Stencil", "Pretendard", sans-serif;
  z-index: 0;
  user-select: none;
  pointer-events: none;
  font-weight: 500;
}
@media (min-width: 768px) {
  .about-container .about-bg-title {
    font-size: 14rem;
    right: 0%;
    top: 1%;
  }
}
@media (min-width: 1024px) {
  .about-container .about-bg-title {
    font-size: 18rem;
    right: -16%;
    top: 1%;
  }
}
.about-container .about-profile {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .about-container .about-profile {
    flex-direction: row;
    gap: 3rem;
    text-align: left;
  }
}
.about-container .about-profile .profile-img {
  width: 140px;
  object-fit: cover;
  transition: all 0.3s ease;
  cursor: var(--cursor-accent);
}
@media (min-width: 768px) {
  .about-container .about-profile .profile-img {
    width: 200px;
  }
}
@media (min-width: 1024px) {
  .about-container .about-profile .profile-img {
    width: 260px;
  }
}
.about-container .about-profile .about-text {
  width: 100%;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .about-container .about-profile .about-text {
    margin-top: 0;
  }
}
.about-container .about-profile .about-text h2 {
  font-family: "Butler_Medium_Stencil";
  font-size: 2rem;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .about-container .about-profile .about-text h2 {
    font-size: 3.5rem;
  }
}
@media (min-width: 1024px) {
  .about-container .about-profile .about-text h2 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
  }
}
.about-container .about-profile .about-text p {
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 300;
}
@media (min-width: 768px) {
  .about-container .about-profile .about-text p {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}
@media (min-width: 1024px) {
  .about-container .about-profile .about-text p {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
.about-container .about-profile .about-text .about-text-line {
  display: block;
  height: 1px;
  background: var(--color-dark2);
  width: 100%;
  margin: 1.5rem auto 0;
}
@media (min-width: 768px) {
  .about-container .about-profile .about-text .about-text-line {
    margin-top: 30px;
  }
}
.about-container .history-section {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .about-container .history-section {
    margin-top: 70px;
    margin-bottom: 70px;
  }
}
.about-container .history-section > h3 {
  font-family: "Butler_Regular";
  font-size: 1.8rem;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .about-container .history-section > h3 {
    font-size: 2.4rem;
    margin-bottom: 28px;
  }
}
@media (min-width: 1024px) {
  .about-container .history-section > h3 {
    font-size: 2.8rem;
    margin-bottom: 32px;
  }
}
.about-container .history-section .history-container {
  position: relative;
  width: 100%;
}
.about-container .history-section .history-container .history-list {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .about-container .history-section .history-container .history-list {
    margin-bottom: 18px;
  }
}
.about-container .history-section .history-container .history-list .history-item {
  min-width: 0;
  opacity: 1;
  transform: none;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.about-container .history-section .history-container .history-list .history-item:nth-child(1) {
  margin-top: 0;
}
@media (min-width: 768px) {
  .about-container .history-section .history-container .history-list .history-item:nth-child(1) {
    width: 31%;
  }
}
.about-container .history-section .history-container .history-list .history-item:nth-child(2) {
  margin-top: 0;
}
@media (min-width: 768px) {
  .about-container .history-section .history-container .history-list .history-item:nth-child(2) {
    left: 31%;
    width: 19%;
    margin-top: 12px;
  }
}
.about-container .history-section .history-container .history-list .history-item:nth-child(3) {
  margin-top: 0;
}
@media (min-width: 768px) {
  .about-container .history-section .history-container .history-list .history-item:nth-child(3) {
    left: 50%;
    width: 26%;
  }
}
.about-container .history-section .history-container .history-list .history-item:nth-child(4) {
  margin-top: 0;
}
@media (min-width: 768px) {
  .about-container .history-section .history-container .history-list .history-item:nth-child(4) {
    left: 76%;
    width: 24%;
    margin-top: 12px;
  }
}
.about-container .history-section .history-container .history-list .history-item.show {
  opacity: 1;
  transform: translateY(0);
}
.about-container .history-section .history-container .history-list .history-item .history-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
@media (min-width: 768px) {
  .about-container .history-section .history-container .history-list .history-item .history-title {
    font-size: 1.3rem;
  }
}
@media (min-width: 1024px) {
  .about-container .history-section .history-container .history-list .history-item .history-title {
    font-size: 1.5rem;
  }
}
.about-container .history-section .history-container .history-list .history-item .history-desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 0.2rem;
}
@media (min-width: 768px) {
  .about-container .history-section .history-container .history-list .history-item .history-desc {
    font-size: 1.3rem;
  }
}
@media (min-width: 1024px) {
  .about-container .history-section .history-container .history-list .history-item .history-desc {
    font-size: 1.5rem;
  }
}
.about-container .history-section .history-container .history-bar {
  position: relative;
  height: 12px;
  margin-top: 0;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  .about-container .history-section .history-container .history-bar {
    height: 14px;
  }
}
.about-container .history-section .history-container .history-bar .bar-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: #F5F5F5;
}
.about-container .history-section .history-container .history-bar .bar {
  position: absolute;
  height: 6px;
  width: 0;
  transition: width 0.7s cubic-bezier(0.77, 0, 0.18, 1);
}
@media (min-width: 1024px) {
  .about-container .history-section .history-container .history-bar .bar {
    height: 7px;
  }
}
.about-container .history-section .history-container .history-bar .bar.bar1 {
  background: #FFE0ED;
  left: 0;
  top: 6px;
}
@media (min-width: 1024px) {
  .about-container .history-section .history-container .history-bar .bar.bar1 {
    top: 7px;
  }
}
.about-container .history-section .history-container .history-bar .bar.bar2 {
  background: #D0F2FF;
  left: 31%;
  top: 0px;
}
.about-container .history-section .history-container .history-bar .bar.bar3 {
  background: #DCF97F;
  left: 50%;
  top: 6px;
}
@media (min-width: 1024px) {
  .about-container .history-section .history-container .history-bar .bar.bar3 {
    top: 7px;
  }
}
.about-container .history-section .history-container .history-bar .bar.bar4 {
  background: #D0F2FF;
  left: 76%;
  top: 0px;
}
.about-container .history-section .history-container .history-dates {
  position: relative;
  display: flex;
}
.about-container .history-section .history-container .history-dates .date-item {
  font-size: 1rem;
  color: var(--color-dark2);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
@media (min-width: 768px) {
  .about-container .history-section .history-container .history-dates .date-item {
    font-size: 1.4rem;
  }
}
.about-container .history-section .history-container .history-dates .date-item.date-1 {
  left: 0;
  width: 31%;
}
.about-container .history-section .history-container .history-dates .date-item.date-2 {
  left: 31%;
  width: 19%;
}
.about-container .history-section .history-container .history-dates .date-item.date-3 {
  left: 50%;
  width: 26%;
}
.about-container .history-section .history-container .history-dates .date-item.date-4 {
  left: 76%;
  width: 24%;
}
.about-container .history-section .history-container .history-dates .date-item.show {
  opacity: 1;
  transform: translateY(0);
}
.about-container .info-section {
  width: 100%;
  display: flex;
  gap: 15px;
}
@media (min-width: 768px) {
  .about-container .info-section {
    gap: 35px;
    margin-top: 22px;
  }
}
.about-container .info-section > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media (min-width: 768px) {
  .about-container .info-section > div {
    flex-direction: row;
    gap: 35px;
  }
}
.about-container .info-section h4 {
  font-family: "Butler_Regular";
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}
@media (min-width: 768px) {
  .about-container .info-section h4 {
    font-size: 2.8rem;
  }
}
.about-container .info-section h5 {
  font-size: 1.1rem;
  font-weight: 600;
  min-width: 38px;
}
@media (min-width: 768px) {
  .about-container .info-section h5 {
    font-size: 1.5rem;
    min-width: 48px;
  }
}
.about-container .info-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 768px) {
  .about-container .info-section ul {
    gap: 12px;
  }
}
.about-container .info-section li {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
@media (min-width: 768px) {
  .about-container .info-section li {
    font-size: 1.5rem;
  }
}
.about-container .info-section li .contact_line {
  width: 1px;
  height: 12px;
  background: var(--color-dark);
  margin: 0 7px 0 0;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .about-container .info-section li .contact_line {
    height: 15px;
  }
}

.skills-container {
  width: 100%;
  padding: 40px 30px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: auto;
}
@media (min-width: 768px) {
  .skills-container {
    padding: 30px 50px;
    min-height: 100vh;
    justify-content: center;
  }
}
@media (min-width: 1440px) {
  .skills-container {
    max-width: 1400px;
  }
}
.skills-container h2 {
  font-family: "Butler_Medium_Stencil";
  font-size: 3.5rem;
  margin-bottom: 8px;
  text-align: left;
}
@media (min-width: 768px) {
  .skills-container h2 {
    font-size: 4.5rem;
  }
}
@media (min-width: 1440px) {
  .skills-container h2 {
    font-size: 5.6rem;
  }
}
.skills-container .skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(8, 1fr);
  gap: 12px;
  margin: 0;
  min-height: 600px;
}
@media (min-width: 768px) {
  .skills-container .skills-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 18px;
    min-height: 540px;
  }
}
@media (min-width: 1024px) {
  .skills-container .skills-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 20px;
    min-height: 420px;
  }
}
@media (min-width: 1440px) {
  .skills-container .skills-grid {
    min-height: 480px;
  }
}
.skills-container .skills-grid .skill-item {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  background: var(--color-light);
  border-radius: 4%;
  padding: 8px;
  border: 1px solid var(--color-gray);
  transition: all 0.3s ease;
  cursor: var(--cursor-accent);
}
@media (min-width: 768px) {
  .skills-container .skills-grid .skill-item {
    padding: 12px;
  }
}
@media (min-width: 1024px) {
  .skills-container .skills-grid .skill-item {
    padding: 10px;
  }
}
.skills-container .skills-grid .skill-item:hover {
  scale: 1.05;
  box-shadow: 0 0 10px rgba(220, 249, 127, 0.8);
  border-color: var(--color-accent);
}
@media (min-width: 1024px) {
  .skills-container .skills-grid .skill-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(220, 249, 127, 0.8);
  }
}
.skills-container .skills-grid .skill-item img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
@media (min-width: 768px) {
  .skills-container .skills-grid .skill-item img {
    width: 32px;
    height: 32px;
  }
}
@media (min-width: 1024px) {
  .skills-container .skills-grid .skill-item img {
    width: 36px;
    height: 36px;
  }
}
@media (min-width: 1440px) {
  .skills-container .skills-grid .skill-item img {
    width: 40px;
    height: 40px;
  }
}
.skills-container .skills-grid .skill-item span {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--color-dark);
  text-align: center;
}
@media (min-width: 1024px) {
  .skills-container .skills-grid .skill-item span {
    font-size: 1.6rem;
  }
}
@media (min-width: 1440px) {
  .skills-container .skills-grid .skill-item span {
    font-size: 1.8rem;
  }
}

.skills-page .tooltip-container {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.skills-page .tooltip-container.show {
  opacity: 1;
}
.skills-page .tooltip-container .tooltip {
  background: rgba(0, 0, 0, 0.75);
  color: white;
  max-width: 300px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 200;
  text-align: center;
  word-break: keep-all;
  word-wrap: break-word;
}
@media (min-width: 768px) {
  .skills-page .tooltip-container .tooltip {
    max-width: 420px;
    padding: 16px 20px;
    font-size: 1.4rem;
  }
}
.skills-page .skill-item {
  transition: transform 0.2s ease;
}
.skills-page .skill-item:hover {
  transform: scale(1.05);
}

.project-container {
  width: 100%;
  height: auto;
  min-height: auto;
  padding: 40px 36px;
  position: relative;
}
@media (min-width: 768px) {
  .project-container {
    padding: 0 50px;
    height: 100vh;
    min-height: 100vh;
  }
}
.project-container .section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
  transition: background-image 0.4s ease, opacity 0.3s ease;
}
.project-container .section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("imgs/wgradient 1.png");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}
.project-container .project-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: auto;
}
@media (min-width: 768px) {
  .project-container .project-content {
    align-items: center;
    height: 100%;
  }
}
.project-container .project-content .project-box {
  width: 100%;
  height: 46vh;
  min-height: 420px;
  background: transparent;
  border: none;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 10px;
  cursor: var(--cursor-accent);
}
@media (min-width: 768px) {
  .project-container .project-content .project-box {
    width: 100%;
    max-width: 900px;
    min-height: none;
    height: 70vh;
  }
}
.project-container .project-content .project-box.slideshow:hover .slide__img, .project-container .project-content .project-box.slideshow:hover .slide__text {
  background: rgba(0, 0, 0, 0.03);
}

.slide {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  transform: translateY(0);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.slide.active {
  visibility: visible;
}
.slide .slide__img {
  width: 100%;
  height: auto;
  border-radius: 0;
  overflow: hidden;
  position: relative;
}
.slide .slide__img img {
  width: 100%;
  object-fit: cover;
}
.slide .slide__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 40%);
}
.slide .slide__text {
  padding: 10px;
  background-color: transparent;
  transition: background-color 0.3s ease;
  border-bottom: 2px solid var(--color-gray);
}
@media (min-width: 768px) {
  .slide .slide__text {
    padding: 20px;
  }
}
.slide .slide__text .slide__text-line {
  display: block;
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  transform: translateY(100%);
  opacity: 0;
}
@media (min-width: 768px) {
  .slide .slide__text .slide__text-line {
    font-size: 4.2rem;
  }
}
@media (min-width: 1440px) {
  .slide .slide__text .slide__text-line {
    font-size: 4.5rem;
  }
}
@media (min-width: 1024px) {
  .slide .slide__text .slide__text-line {
    transition: transform 1s ease, opacity 1s ease;
  }
}
.slide .slide__text .slide__subtitle {
  font-size: 0.9rem;
  font-weight: 300;
  margin-top: 1rem;
  margin-bottom: 0;
  text-align: right;
  opacity: 0.8;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .slide .slide__text .slide__subtitle {
    font-size: 1.1rem;
    margin-top: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .slide .slide__text .slide__subtitle {
    font-size: 1.2rem;
  }
}

.teamwork-page .slide-counter {
  width: 100%;
  position: relative;
  bottom: 36px;
  display: flex;
  justify-content: end;
  gap: 8px;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  z-index: 10;
  font-family: "Butler_Medium", "Pretendard", sans-serif;
}
@media (min-width: 768px) {
  .teamwork-page .slide-counter {
    position: absolute;
    bottom: 36px;
  }
}
.teamwork-page .slide .slide__more {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}
@media (min-width: 768px) {
  .teamwork-page .slide .slide__more {
    right: 2rem;
  }
}
.teamwork-page .slide .slide__more .more-btn {
  background-color: var(--color-gray2);
  color: var(--color-dark);
  border: none;
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 1.2rem;
  font-weight: 500;
  font-family: "Pretendard", sans-serif;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: var(--cursor-accent);
}
@media (min-width: 768px) {
  .teamwork-page .slide .slide__more .more-btn {
    font-size: 1.4rem;
    padding: 7px 18px;
  }
}
@media (min-width: 1024px) {
  .teamwork-page .slide .slide__more .more-btn {
    font-size: 1.6rem;
    padding: 8px 20px;
  }
}
.teamwork-page .slide .slide__more .more-btn:hover {
  background-color: var(--color-dark) !important;
  color: var(--color-accent) !important;
  font-weight: 400 !important;
}
.teamwork-page .slide .slide__more .more-btn .plus-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1em;
  text-align: center;
  transform-origin: 50% 58%;
  transition: transform 0.6s ease;
}
.teamwork-page .slide:hover .more-btn {
  background-color: var(--color-dark);
  color: var(--color-accent);
  font-weight: 400;
}
.teamwork-page .slide:hover .slide__more .plus-icon {
  transform: rotate(360deg);
}
@media (min-width: 768px) {
  .teamwork-page .slide .slide__more {
    position: absolute;
    top: 2rem;
    right: 1rem;
    z-index: 10;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .teamwork-page .slide .slide__more {
    right: 2rem;
  }
}
@media (min-width: 768px) {
  .teamwork-page .slide .slide__more .more-btn {
    background-color: var(--color-gray2);
    color: var(--color-dark);
    border: none;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 500;
    font-family: "Pretendard", sans-serif;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: var(--cursor-accent);
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .teamwork-page .slide .slide__more .more-btn {
    font-size: 1.4rem;
    padding: 7px 18px;
  }
}
@media (min-width: 768px) and (min-width: 1024px) {
  .teamwork-page .slide .slide__more .more-btn {
    font-size: 1.6rem;
    padding: 8px 20px;
  }
}
@media (min-width: 768px) {
  .teamwork-page .slide .slide__more .more-btn:hover {
    background-color: var(--color-dark) !important;
    color: var(--color-accent) !important;
    font-weight: 400 !important;
  }
  .teamwork-page .slide .slide__more .more-btn .plus-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    line-height: 1em;
    text-align: center;
    transform-origin: 50% 58%;
    transition: transform 0.6s ease;
  }
  .teamwork-page .slide:hover .more-btn {
    background-color: var(--color-dark);
    color: var(--color-accent);
    font-weight: 400;
  }
  .teamwork-page .slide:hover .slide__more .plus-icon {
    transform: rotate(360deg);
  }
}
.teamwork-page .slide-counter .slide-counter {
  width: 100%;
  position: relative;
  bottom: 36px;
  display: flex;
  justify-content: end;
  gap: 8px;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  z-index: 10;
  font-family: "Butler_Medium", "Pretendard", sans-serif;
}
@media (min-width: 768px) {
  .teamwork-page .slide-counter .slide-counter {
    position: absolute;
    bottom: 36px;
  }
}
.teamwork-page .controls {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}
@media (min-width: 768px) {
  .teamwork-page .controls {
    top: 2rem;
    right: 2rem;
  }
}
.teamwork-page .controls-text {
  color: #333;
  font-size: 0.8rem;
  font-weight: 400;
}
.teamwork-page .teamwork-modal-title {
  font-size: 2rem;
}
@media (min-width: 1024px) {
  .teamwork-page .teamwork-modal-title {
    font-size: 3rem;
  }
}
.teamwork-page .teamwork-modal-title span {
  font-size: 1.4rem;
}
@media (min-width: 1024px) {
  .teamwork-page .teamwork-modal-title span {
    font-size: 1.8rem;
  }
}

.mywork-page .slide-counter {
  width: 100%;
  position: relative;
  bottom: 36px;
  display: flex;
  justify-content: end;
  gap: 8px;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  z-index: 10;
  font-family: "Butler_Medium", "Pretendard", sans-serif;
}
@media (min-width: 768px) {
  .mywork-page .slide-counter {
    position: absolute;
    bottom: 36px;
  }
}
.mywork-page .slide .slide__more {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}
@media (min-width: 768px) {
  .mywork-page .slide .slide__more {
    right: 2rem;
  }
}
.mywork-page .slide .slide__more .more-btn {
  background-color: var(--color-gray2);
  color: var(--color-dark);
  border: none;
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 1.2rem;
  font-weight: 500;
  font-family: "Pretendard", sans-serif;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: var(--cursor-accent);
}
@media (min-width: 768px) {
  .mywork-page .slide .slide__more .more-btn {
    font-size: 1.4rem;
    padding: 7px 18px;
  }
}
@media (min-width: 1024px) {
  .mywork-page .slide .slide__more .more-btn {
    font-size: 1.6rem;
    padding: 8px 20px;
  }
}
.mywork-page .slide .slide__more .more-btn:hover {
  background-color: var(--color-dark) !important;
  color: var(--color-accent) !important;
  font-weight: 400 !important;
}
.mywork-page .slide .slide__more .more-btn .plus-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1em;
  text-align: center;
  transform-origin: 50% 58%;
  transition: transform 0.6s ease;
}
.mywork-page .slide:hover .more-btn {
  background-color: var(--color-dark);
  color: var(--color-accent);
  font-weight: 400;
}
.mywork-page .slide:hover .slide__more .plus-icon {
  transform: rotate(360deg);
}
@media (min-width: 768px) {
  .mywork-page .slide .slide__more {
    position: absolute;
    top: 2rem;
    right: 1rem;
    z-index: 10;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .mywork-page .slide .slide__more {
    right: 2rem;
  }
}
@media (min-width: 768px) {
  .mywork-page .slide .slide__more .more-btn {
    background-color: var(--color-gray2);
    color: var(--color-dark);
    border: none;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 500;
    font-family: "Pretendard", sans-serif;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: var(--cursor-accent);
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .mywork-page .slide .slide__more .more-btn {
    font-size: 1.4rem;
    padding: 7px 18px;
  }
}
@media (min-width: 768px) and (min-width: 1024px) {
  .mywork-page .slide .slide__more .more-btn {
    font-size: 1.6rem;
    padding: 8px 20px;
  }
}
@media (min-width: 768px) {
  .mywork-page .slide .slide__more .more-btn:hover {
    background-color: var(--color-dark) !important;
    color: var(--color-accent) !important;
    font-weight: 400 !important;
  }
  .mywork-page .slide .slide__more .more-btn .plus-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    line-height: 1em;
    text-align: center;
    transform-origin: 50% 58%;
    transition: transform 0.6s ease;
  }
  .mywork-page .slide:hover .more-btn {
    background-color: var(--color-dark);
    color: var(--color-accent);
    font-weight: 400;
  }
  .mywork-page .slide:hover .slide__more .plus-icon {
    transform: rotate(360deg);
  }
}
.mywork-page .slide-counter .slide-counter {
  width: 100%;
  position: relative;
  bottom: 36px;
  display: flex;
  justify-content: end;
  gap: 8px;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  z-index: 10;
  font-family: "Butler_Medium", "Pretendard", sans-serif;
}
@media (min-width: 768px) {
  .mywork-page .slide-counter .slide-counter {
    position: absolute;
    bottom: 36px;
  }
}
.mywork-page .slide-info {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.7;
  z-index: 10;
  max-width: 15rem;
  color: var(--color-dark2);
}
@media (min-width: 768px) {
  .mywork-page .slide-info {
    top: 2rem;
    left: 2rem;
  }
}
.mywork-page .slide-info-title {
  margin-bottom: 0.5rem;
}
.mywork-page .controls {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}
@media (min-width: 768px) {
  .mywork-page .controls {
    top: 2rem;
    right: 2rem;
  }
}
.mywork-page .controls-text {
  color: #333;
  font-size: 0.8rem;
  font-weight: 400;
}
.mywork-page .mywork-modal-title {
  font-size: 2rem;
}
@media (min-width: 1024px) {
  .mywork-page .mywork-modal-title {
    font-size: 3rem;
  }
}
.mywork-page .mywork-modal-title span {
  font-size: 1.4rem;
}
@media (min-width: 1024px) {
  .mywork-page .mywork-modal-title span {
    font-size: 1.8rem;
  }
}

.slide-counter .counter-display {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.slide-counter .current-slide {
  font-size: 4rem;
  font-weight: 500;
  color: var(--color-dark2);
}
@media (min-width: 768px) {
  .slide-counter .current-slide {
    font-size: 5rem;
  }
}
.slide-counter .counter-separator {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-gray);
}
@media (min-width: 768px) {
  .slide-counter .counter-separator {
    font-size: 2rem;
  }
}
.slide-counter .total-slides {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-gray);
}
@media (min-width: 768px) {
  .slide-counter .total-slides {
    font-size: 2rem;
  }
}

@keyframes bookShake {
  0%, 100% {
    transform: translateY(-3px) scale(1.03) rotate(0deg);
  }
  25% {
    transform: translateY(-3px) scale(1.03) rotate(-1deg);
  }
  50% {
    transform: translateY(-3px) scale(1.03) rotate(1deg);
  }
  75% {
    transform: translateY(-3px) scale(1.03) rotate(-0.5deg);
  }
}
@keyframes bookShakeDesktop {
  0%, 100% {
    transform: translateY(-5px) scale(1.05) rotate(0deg);
  }
  25% {
    transform: translateY(-5px) scale(1.05) rotate(-1deg);
  }
  50% {
    transform: translateY(-5px) scale(1.05) rotate(1deg);
  }
  75% {
    transform: translateY(-5px) scale(1.05) rotate(-0.5deg);
  }
}
.designwork-page .design-container {
  height: auto;
  min-height: auto;
  margin: 0 36px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 0;
}
@media (min-width: 768px) {
  .designwork-page .design-container {
    margin: 0 50px;
    height: 100vh;
    min-height: 100vh;
    align-items: center;
    padding: 0;
  }
}
.designwork-page .design-container .design-bg-title {
  position: absolute;
  top: 600px;
  right: -10px;
  font-size: 8rem;
  color: var(--color-gray2);
  font-family: "Butler_Medium_Stencil", "Pretendard", sans-serif;
  z-index: 0;
  user-select: none;
  pointer-events: none;
  font-weight: 500;
  transition: all 0.5s ease;
}
@media (min-width: 768px) {
  .designwork-page .design-container .design-bg-title {
    font-size: 14rem;
    right: 1%;
    top: 60px;
  }
}
@media (min-width: 1024px) {
  .designwork-page .design-container .design-bg-title {
    font-size: 18rem;
    right: 1%;
    top: 60px;
  }
}
.designwork-page .design-container .design-content-box {
  width: 100%;
  max-width: 335px;
  height: fit-content;
  position: relative;
  display: flex;
  gap: 0;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .designwork-page .design-container .design-content-box {
    max-width: 1400px;
    flex-direction: row;
    gap: 20px;
  }
}
.designwork-page .design-container .design-content-box .category-buttons {
  display: flex;
  gap: 0.5rem;
  position: relative;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .designwork-page .design-container .design-content-box .category-buttons {
    gap: 1rem;
    position: absolute;
    top: 0;
    left: 0;
    margin-bottom: 0;
  }
}
.designwork-page .design-container .design-content-box .category-buttons .category-btn {
  width: 80px;
  height: 28px;
  border: none;
  border-radius: 16px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  font-weight: 300;
  background-color: var(--color-gray2);
  cursor: var(--cursor-accent);
}
@media (min-width: 768px) {
  .designwork-page .design-container .design-content-box .category-buttons .category-btn {
    width: 98px;
    height: 30px;
    font-size: 1.6rem;
  }
}
.designwork-page .design-container .design-content-box .category-buttons .category-btn.active {
  background-color: var(--color-dark);
  color: var(--color-accent);
  font-weight: 500;
}
.designwork-page .design-container .design-content-box .category-buttons .category-btn:hover:not(.active) {
  background-color: var(--color-gray);
}
.designwork-page .design-container .design-content-box .design-projects {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 335px;
}
@media (min-width: 768px) {
  .designwork-page .design-container .design-content-box .design-projects {
    flex-direction: row;
    bottom: 0;
    left: 0;
    margin-top: 100px;
    max-width: none;
  }
}
.designwork-page .design-container .design-content-box .design-projects .design-project-box {
  height: fit-content;
  position: relative;
  background-color: var(--color-light);
  cursor: var(--cursor-accent);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .designwork-page .design-container .design-content-box .design-projects .design-project-box {
    gap: 20px;
  }
}
.designwork-page .design-container .design-content-box .design-projects .design-project-box .slide__more {
  position: absolute;
  bottom: 7px;
  right: 1rem;
  z-index: 10;
}
@media (min-width: 768px) {
  .designwork-page .design-container .design-content-box .design-projects .design-project-box .slide__more {
    bottom: 12px;
  }
}
@media (min-width: 768px) {
  .designwork-page .design-container .design-content-box .design-projects .design-project-box .slide__more {
    right: 2rem;
  }
}
.designwork-page .design-container .design-content-box .design-projects .design-project-box .slide__more .more-btn {
  background-color: var(--color-gray2);
  color: var(--color-dark);
  border: none;
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 1.2rem;
  font-weight: 500;
  font-family: "Pretendard", sans-serif;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: var(--cursor-accent);
}
@media (min-width: 768px) {
  .designwork-page .design-container .design-content-box .design-projects .design-project-box .slide__more .more-btn {
    font-size: 1.4rem;
    padding: 7px 18px;
  }
}
@media (min-width: 1024px) {
  .designwork-page .design-container .design-content-box .design-projects .design-project-box .slide__more .more-btn {
    font-size: 1.6rem;
    padding: 8px 20px;
  }
}
.designwork-page .design-container .design-content-box .design-projects .design-project-box .slide__more .more-btn:hover {
  background-color: var(--color-dark) !important;
  color: var(--color-accent) !important;
  font-weight: 400 !important;
}
.designwork-page .design-container .design-content-box .design-projects .design-project-box .slide__more .more-btn .plus-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1em;
  text-align: center;
  transform-origin: 50% 58%;
  transition: transform 0.6s ease;
}
.designwork-page .design-container .design-content-box .design-projects .design-project-box:hover .more-btn {
  background-color: var(--color-dark);
  color: var(--color-accent);
  font-weight: 400;
}
.designwork-page .design-container .design-content-box .design-projects .design-project-box:hover .slide__more .plus-icon {
  transform: rotate(360deg);
}
.designwork-page .design-container .design-content-box .design-projects .design-project-box:hover {
  background-color: var(--color-gray3);
}
@media (min-width: 1024px) {
  .designwork-page .design-container .design-content-box .design-projects .design-project-box:hover .project-image img {
    transform: scale(1.05);
  }
}
.designwork-page .design-container .design-content-box .design-projects .design-project-box .project-image {
  height: 220px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .designwork-page .design-container .design-content-box .design-projects .design-project-box .project-image {
    height: auto;
  }
}
.designwork-page .design-container .design-content-box .design-projects .design-project-box .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.designwork-page .design-container .design-content-box .design-projects .design-project-box .project-info {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  gap: 6px;
}
@media (min-width: 768px) {
  .designwork-page .design-container .design-content-box .design-projects .design-project-box .project-info {
    height: 120px;
    flex-direction: column;
    gap: 0;
  }
}
@media (min-width: 1024px) {
  .designwork-page .design-container .design-content-box .design-projects .design-project-box .project-info {
    height: 142px;
    padding: 0;
  }
}
.designwork-page .design-container .design-content-box .design-projects .design-project-box .project-info .project-subtitle {
  font-size: 1.4rem;
  margin-top: 0;
  font-weight: 200;
}
@media (min-width: 768px) {
  .designwork-page .design-container .design-content-box .design-projects .design-project-box .project-info .project-subtitle {
    font-size: 1.6rem;
    margin-top: 24px;
  }
}
@media (min-width: 1024px) {
  .designwork-page .design-container .design-content-box .design-projects .design-project-box .project-info .project-subtitle {
    font-size: 2rem;
    margin-top: 36px;
  }
}
.designwork-page .design-container .design-content-box .design-projects .design-project-box .project-info .project-title {
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
}
@media (min-width: 768px) {
  .designwork-page .design-container .design-content-box .design-projects .design-project-box .project-info .project-title {
    font-size: 2rem;
    margin-top: 10px;
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .designwork-page .design-container .design-content-box .design-projects .design-project-box .project-info .project-title {
    font-size: 2.5rem;
    margin-top: 16px;
  }
}
.designwork-page .design-container .design-content-box .design-projects .design-project-box .project-line {
  width: 100%;
  height: 1px;
  background-color: var(--color-dark);
}
.designwork-page .design-container .design-content-box .design-title-section {
  width: auto;
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.designwork-page .design-container .design-content-box .design-title-section .design-main-title {
  font-family: "Butler_Bold";
  font-size: 2.5rem;
  line-height: 1.5;
  color: var(--color-dark);
  margin: 0;
  margin-top: 10px;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 768px) {
  .designwork-page .design-container .design-content-box .design-title-section .design-main-title {
    font-size: 3.6rem;
    margin-top: 0;
    margin-bottom: 5px;
  }
}
@media (min-width: 1024px) {
  .designwork-page .design-container .design-content-box .design-title-section .design-main-title {
    font-size: 5rem;
  }
}
.designwork-page .design-container .design-content-box .design-title-section .design-main-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.designwork-page .design-container .design-content-box .design-title-section .design-main-title.animate-change {
  opacity: 0;
  transform: translateY(30px);
}
.designwork-page .design-container .design-content-box .design-title-section .design-sub-title {
  font-family: "Butler_Light";
  font-size: 1.8rem;
  margin-bottom: 0;
  line-height: 1.5;
  color: var(--color-dark2);
  font-weight: 300;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 768px) {
  .designwork-page .design-container .design-content-box .design-title-section .design-sub-title {
    font-size: 2.8rem;
    margin-bottom: 25px;
  }
}
@media (min-width: 1024px) {
  .designwork-page .design-container .design-content-box .design-title-section .design-sub-title {
    font-size: 3.7rem;
    margin-bottom: 30px;
  }
}
.designwork-page .design-container .design-content-box .design-title-section .design-sub-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.designwork-page .design-container .design-content-box .design-title-section .design-sub-title.animate-change {
  opacity: 0;
  transform: translateY(30px);
}
.designwork-page .design-container .design-content-box .design-title-section .title-underline {
  width: 100%;
  height: 1px;
  background-color: var(--color-dark);
  display: none;
}
@media (min-width: 768px) {
  .designwork-page .design-container .design-content-box .design-title-section .title-underline {
    display: block;
  }
}
@media (min-width: 768px) {
  .designwork-page .design-container .design-content-box.character-category .design-title-section {
    width: 300px;
  }
  .designwork-page .design-container .design-content-box.bookcover-category .design-title-section {
    width: 300px;
  }
  .designwork-page .design-container .design-content-box.brochure-category .design-title-section {
    width: 400px;
  }
  .designwork-page .design-container .design-content-box.etc-category .design-title-section {
    width: 400px;
  }
}
@media (min-width: 1024px) {
  .designwork-page .design-container .design-content-box.character-category .design-title-section {
    width: 420px;
  }
  .designwork-page .design-container .design-content-box.bookcover-category .design-title-section {
    width: 420px;
  }
  .designwork-page .design-container .design-content-box.brochure-category .design-title-section {
    width: 632px;
  }
  .designwork-page .design-container .design-content-box.etc-category .design-title-section {
    width: 632px;
  }
}

.brochure-grid,
.etc-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 15px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .brochure-grid,
  .etc-grid {
    left: 0;
    bottom: 0;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    max-width: 788px;
    margin: 100px 0 0 -20px;
  }
}
@media (min-width: 1024px) {
  .brochure-grid,
  .etc-grid {
    gap: 30px;
  }
}
.brochure-grid .brochure-item,
.brochure-grid .etc-item,
.etc-grid .brochure-item,
.etc-grid .etc-item {
  width: auto;
  height: auto;
  cursor: var(--cursor-accent);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}
.brochure-grid .brochure-item:hover .brochure-overlay,
.brochure-grid .brochure-item:hover .etc-overlay,
.brochure-grid .etc-item:hover .brochure-overlay,
.brochure-grid .etc-item:hover .etc-overlay,
.etc-grid .brochure-item:hover .brochure-overlay,
.etc-grid .brochure-item:hover .etc-overlay,
.etc-grid .etc-item:hover .brochure-overlay,
.etc-grid .etc-item:hover .etc-overlay {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.3);
}
.brochure-grid .brochure-item:hover .brochure-description,
.brochure-grid .brochure-item:hover .etc-description,
.brochure-grid .etc-item:hover .brochure-description,
.brochure-grid .etc-item:hover .etc-description,
.etc-grid .brochure-item:hover .brochure-description,
.etc-grid .brochure-item:hover .etc-description,
.etc-grid .etc-item:hover .brochure-description,
.etc-grid .etc-item:hover .etc-description {
  opacity: 1;
}
.brochure-grid .brochure-item img,
.brochure-grid .etc-item img,
.etc-grid .brochure-item img,
.etc-grid .etc-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  z-index: 0;
}
.brochure-grid .brochure-item .brochure-overlay,
.brochure-grid .brochure-item .etc-overlay,
.brochure-grid .etc-item .brochure-overlay,
.brochure-grid .etc-item .etc-overlay,
.etc-grid .brochure-item .brochure-overlay,
.etc-grid .brochure-item .etc-overlay,
.etc-grid .etc-item .brochure-overlay,
.etc-grid .etc-item .etc-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 100;
}
.brochure-grid .brochure-item .brochure-overlay .brochure-description,
.brochure-grid .brochure-item .brochure-overlay .etc-description,
.brochure-grid .brochure-item .etc-overlay .brochure-description,
.brochure-grid .brochure-item .etc-overlay .etc-description,
.brochure-grid .etc-item .brochure-overlay .brochure-description,
.brochure-grid .etc-item .brochure-overlay .etc-description,
.brochure-grid .etc-item .etc-overlay .brochure-description,
.brochure-grid .etc-item .etc-overlay .etc-description,
.etc-grid .brochure-item .brochure-overlay .brochure-description,
.etc-grid .brochure-item .brochure-overlay .etc-description,
.etc-grid .brochure-item .etc-overlay .brochure-description,
.etc-grid .brochure-item .etc-overlay .etc-description,
.etc-grid .etc-item .brochure-overlay .brochure-description,
.etc-grid .etc-item .brochure-overlay .etc-description,
.etc-grid .etc-item .etc-overlay .brochure-description,
.etc-grid .etc-item .etc-overlay .etc-description {
  text-align: center;
  color: var(--color-white);
  opacity: 1;
  transition: all 0.3s ease;
  z-index: 200;
}
.brochure-grid .brochure-item .brochure-overlay .brochure-description .description-line1,
.brochure-grid .brochure-item .brochure-overlay .brochure-description .description-line2,
.brochure-grid .brochure-item .brochure-overlay .etc-description .description-line1,
.brochure-grid .brochure-item .brochure-overlay .etc-description .description-line2,
.brochure-grid .brochure-item .etc-overlay .brochure-description .description-line1,
.brochure-grid .brochure-item .etc-overlay .brochure-description .description-line2,
.brochure-grid .brochure-item .etc-overlay .etc-description .description-line1,
.brochure-grid .brochure-item .etc-overlay .etc-description .description-line2,
.brochure-grid .etc-item .brochure-overlay .brochure-description .description-line1,
.brochure-grid .etc-item .brochure-overlay .brochure-description .description-line2,
.brochure-grid .etc-item .brochure-overlay .etc-description .description-line1,
.brochure-grid .etc-item .brochure-overlay .etc-description .description-line2,
.brochure-grid .etc-item .etc-overlay .brochure-description .description-line1,
.brochure-grid .etc-item .etc-overlay .brochure-description .description-line2,
.brochure-grid .etc-item .etc-overlay .etc-description .description-line1,
.brochure-grid .etc-item .etc-overlay .etc-description .description-line2,
.etc-grid .brochure-item .brochure-overlay .brochure-description .description-line1,
.etc-grid .brochure-item .brochure-overlay .brochure-description .description-line2,
.etc-grid .brochure-item .brochure-overlay .etc-description .description-line1,
.etc-grid .brochure-item .brochure-overlay .etc-description .description-line2,
.etc-grid .brochure-item .etc-overlay .brochure-description .description-line1,
.etc-grid .brochure-item .etc-overlay .brochure-description .description-line2,
.etc-grid .brochure-item .etc-overlay .etc-description .description-line1,
.etc-grid .brochure-item .etc-overlay .etc-description .description-line2,
.etc-grid .etc-item .brochure-overlay .brochure-description .description-line1,
.etc-grid .etc-item .brochure-overlay .brochure-description .description-line2,
.etc-grid .etc-item .brochure-overlay .etc-description .description-line1,
.etc-grid .etc-item .brochure-overlay .etc-description .description-line2,
.etc-grid .etc-item .etc-overlay .brochure-description .description-line1,
.etc-grid .etc-item .etc-overlay .brochure-description .description-line2,
.etc-grid .etc-item .etc-overlay .etc-description .description-line1,
.etc-grid .etc-item .etc-overlay .etc-description .description-line2 {
  display: block;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 300;
}
@media (min-width: 768px) {
  .brochure-grid .brochure-item .brochure-overlay .brochure-description .description-line1,
  .brochure-grid .brochure-item .brochure-overlay .brochure-description .description-line2,
  .brochure-grid .brochure-item .brochure-overlay .etc-description .description-line1,
  .brochure-grid .brochure-item .brochure-overlay .etc-description .description-line2,
  .brochure-grid .brochure-item .etc-overlay .brochure-description .description-line1,
  .brochure-grid .brochure-item .etc-overlay .brochure-description .description-line2,
  .brochure-grid .brochure-item .etc-overlay .etc-description .description-line1,
  .brochure-grid .brochure-item .etc-overlay .etc-description .description-line2,
  .brochure-grid .etc-item .brochure-overlay .brochure-description .description-line1,
  .brochure-grid .etc-item .brochure-overlay .brochure-description .description-line2,
  .brochure-grid .etc-item .brochure-overlay .etc-description .description-line1,
  .brochure-grid .etc-item .brochure-overlay .etc-description .description-line2,
  .brochure-grid .etc-item .etc-overlay .brochure-description .description-line1,
  .brochure-grid .etc-item .etc-overlay .brochure-description .description-line2,
  .brochure-grid .etc-item .etc-overlay .etc-description .description-line1,
  .brochure-grid .etc-item .etc-overlay .etc-description .description-line2,
  .etc-grid .brochure-item .brochure-overlay .brochure-description .description-line1,
  .etc-grid .brochure-item .brochure-overlay .brochure-description .description-line2,
  .etc-grid .brochure-item .brochure-overlay .etc-description .description-line1,
  .etc-grid .brochure-item .brochure-overlay .etc-description .description-line2,
  .etc-grid .brochure-item .etc-overlay .brochure-description .description-line1,
  .etc-grid .brochure-item .etc-overlay .brochure-description .description-line2,
  .etc-grid .brochure-item .etc-overlay .etc-description .description-line1,
  .etc-grid .brochure-item .etc-overlay .etc-description .description-line2,
  .etc-grid .etc-item .brochure-overlay .brochure-description .description-line1,
  .etc-grid .etc-item .brochure-overlay .brochure-description .description-line2,
  .etc-grid .etc-item .brochure-overlay .etc-description .description-line1,
  .etc-grid .etc-item .brochure-overlay .etc-description .description-line2,
  .etc-grid .etc-item .etc-overlay .brochure-description .description-line1,
  .etc-grid .etc-item .etc-overlay .brochure-description .description-line2,
  .etc-grid .etc-item .etc-overlay .etc-description .description-line1,
  .etc-grid .etc-item .etc-overlay .etc-description .description-line2 {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .brochure-grid .brochure-item .brochure-overlay .brochure-description .description-line1,
  .brochure-grid .brochure-item .brochure-overlay .brochure-description .description-line2,
  .brochure-grid .brochure-item .brochure-overlay .etc-description .description-line1,
  .brochure-grid .brochure-item .brochure-overlay .etc-description .description-line2,
  .brochure-grid .brochure-item .etc-overlay .brochure-description .description-line1,
  .brochure-grid .brochure-item .etc-overlay .brochure-description .description-line2,
  .brochure-grid .brochure-item .etc-overlay .etc-description .description-line1,
  .brochure-grid .brochure-item .etc-overlay .etc-description .description-line2,
  .brochure-grid .etc-item .brochure-overlay .brochure-description .description-line1,
  .brochure-grid .etc-item .brochure-overlay .brochure-description .description-line2,
  .brochure-grid .etc-item .brochure-overlay .etc-description .description-line1,
  .brochure-grid .etc-item .brochure-overlay .etc-description .description-line2,
  .brochure-grid .etc-item .etc-overlay .brochure-description .description-line1,
  .brochure-grid .etc-item .etc-overlay .brochure-description .description-line2,
  .brochure-grid .etc-item .etc-overlay .etc-description .description-line1,
  .brochure-grid .etc-item .etc-overlay .etc-description .description-line2,
  .etc-grid .brochure-item .brochure-overlay .brochure-description .description-line1,
  .etc-grid .brochure-item .brochure-overlay .brochure-description .description-line2,
  .etc-grid .brochure-item .brochure-overlay .etc-description .description-line1,
  .etc-grid .brochure-item .brochure-overlay .etc-description .description-line2,
  .etc-grid .brochure-item .etc-overlay .brochure-description .description-line1,
  .etc-grid .brochure-item .etc-overlay .brochure-description .description-line2,
  .etc-grid .brochure-item .etc-overlay .etc-description .description-line1,
  .etc-grid .brochure-item .etc-overlay .etc-description .description-line2,
  .etc-grid .etc-item .brochure-overlay .brochure-description .description-line1,
  .etc-grid .etc-item .brochure-overlay .brochure-description .description-line2,
  .etc-grid .etc-item .brochure-overlay .etc-description .description-line1,
  .etc-grid .etc-item .brochure-overlay .etc-description .description-line2,
  .etc-grid .etc-item .etc-overlay .brochure-description .description-line1,
  .etc-grid .etc-item .etc-overlay .brochure-description .description-line2,
  .etc-grid .etc-item .etc-overlay .etc-description .description-line1,
  .etc-grid .etc-item .etc-overlay .etc-description .description-line2 {
    font-size: 1.8rem;
  }
}

.book-covers-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 15px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .book-covers-grid {
    left: 0;
    bottom: 0;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 100px 0 0 -20px;
  }
}
@media (min-width: 1024px) {
  .book-covers-grid {
    gap: 30px;
    max-width: 1000px;
  }
}
.book-covers-grid .book-item {
  width: auto;
  cursor: var(--cursor-accent);
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.book-covers-grid .book-item:nth-child(9) {
  display: none;
}
@media (min-width: 768px) {
  .book-covers-grid .book-item:nth-child(9) {
    display: block;
  }
}
.book-covers-grid .book-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  animation: bookShake 0.6s ease-in-out;
}
@media (min-width: 1024px) {
  .book-covers-grid .book-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: bookShakeDesktop 0.6s ease-in-out;
  }
}
.book-covers-grid .book-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.contact-page {
  background: var(--color-light);
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}
@media (min-width: 768px) {
  .contact-page {
    min-height: 100vh;
    justify-content: center;
  }
}
.contact-page .contact-container {
  width: 100%;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contact-page .contact-container {
    flex-direction: row;
    padding: 30px 50px;
    gap: 4rem;
    justify-content: center;
  }
}
@media (min-width: 1440px) {
  .contact-page .contact-container {
    max-width: 1400px;
  }
}
.contact-page .contact-container .contact-left {
  width: 100%;
}
@media (min-width: 768px) {
  .contact-page .contact-container .contact-left {
    width: 740px;
  }
}
.contact-page .contact-container .contact-left h2 {
  font-size: 3.5rem;
  font-family: "Butler_Medium_Stencil";
  margin-bottom: 1.2rem;
}
@media (min-width: 768px) {
  .contact-page .contact-container .contact-left h2 {
    font-size: 5rem;
  }
}
.contact-page .contact-container .contact-left p {
  font-size: 1.4rem;
  margin-bottom: 2.2rem;
}
@media (min-width: 768px) {
  .contact-page .contact-container .contact-left p {
    font-size: 1.6rem;
  }
}
.contact-page .contact-container .contact-left .contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-page .contact-container .contact-left .contact-form input, .contact-page .contact-container .contact-left .contact-form textarea {
  width: 100%;
  padding-left: 15px;
  border: none;
  background: var(--color-gray2);
  font-size: 1.4rem;
  font-family: "Pretendard";
}
@media (min-width: 768px) {
  .contact-page .contact-container .contact-left .contact-form input, .contact-page .contact-container .contact-left .contact-form textarea {
    font-size: 1.6rem;
    padding-left: 23px;
  }
}
.contact-page .contact-container .contact-left .contact-form input:focus, .contact-page .contact-container .contact-left .contact-form textarea:focus {
  outline: none;
}
.contact-page .contact-container .contact-left .contact-form input:focus::placeholder, .contact-page .contact-container .contact-left .contact-form textarea:focus::placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.contact-page .contact-container .contact-left .contact-form input {
  height: 50px;
}
@media (min-width: 768px) {
  .contact-page .contact-container .contact-left .contact-form input {
    height: 55px;
  }
}
.contact-page .contact-container .contact-left .contact-form textarea {
  padding-top: 15px;
  min-height: 100px;
  resize: vertical;
}
@media (min-width: 768px) {
  .contact-page .contact-container .contact-left .contact-form textarea {
    padding-top: 20px;
    min-height: 115px;
  }
}
.contact-page .contact-container .contact-left .contact-form .contact-form-bottom {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.contact-page .contact-container .contact-left .contact-form .contact-form-bottom button {
  background-color: var(--color-gray2);
  color: var(--color-dark);
  border: none;
  padding: 8px 20px;
  border-radius: 16px;
  font-size: 1.6rem;
  font-weight: 300;
  font-family: "Pretendard";
  transition: all 0.3s ease;
  cursor: var(--cursor-accent);
  font-size: 1.4rem;
  padding: 6px 18px;
  margin-right: 1rem;
}
.contact-page .contact-container .contact-left .contact-form .contact-form-bottom button:hover {
  background-color: var(--color-dark);
  color: var(--color-accent);
  font-weight: 400;
}
@media (min-width: 768px) {
  .contact-page .contact-container .contact-left .contact-form .contact-form-bottom button {
    font-size: 1.6rem;
    padding: 8px 22px;
  }
}
.contact-page .contact-container .contact-left .contact-form .contact-form-bottom .or-contact {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .contact-page .contact-container .contact-left .contact-form .contact-form-bottom .or-contact {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  .contact-page .contact-container .contact-left .contact-form .contact-form-bottom .or-contact {
    font-size: 1.6rem;
  }
}
.contact-page .contact-container .contact-right {
  width: 100%;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .contact-page .contact-container .contact-right {
    width: 300px;
    margin-top: 0;
  }
}
@media (min-width: 1024px) {
  .contact-page .contact-container .contact-right {
    width: 500px;
    margin-top: 0;
  }
}
.contact-page .contact-container .contact-right .contact-visual {
  display: none;
}
.contact-page .contact-container .contact-right .contact-visual img {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .contact-page .contact-container .contact-right .contact-visual {
    display: block;
  }
}
.contact-page .copyright {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-dark2);
  margin-top: 2rem;
  position: relative;
  bottom: auto;
  left: auto;
  text-align: start;
}
@media (min-width: 768px) {
  .contact-page .copyright {
    text-align: center;
    font-size: 1.6rem;
    position: absolute;
    bottom: 68px;
    left: 50px;
    text-align: left;
    margin-top: 0;
  }
}
@media (min-width: 1024px) {
  .contact-page .copyright {
    text-align: center;
    font-size: 1.6rem;
    position: absolute;
    bottom: 68px;
    left: 50px;
    text-align: left;
    margin-top: 0;
  }
}
.contact-page .contact-links {
  position: relative;
  bottom: auto;
  right: auto;
  display: flex;
  justify-content: start;
  gap: 20px;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .contact-page .contact-links {
    position: absolute;
    bottom: 68px;
    right: 42px;
    gap: 40px;
    margin-top: 0;
    justify-content: center;
  }
}
.contact-page .contact-links a {
  color: var(--color-dark2);
  font-size: 1.4rem;
  font-family: "Pretendard", sans-serif;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  height: 20px;
  display: flex;
  align-items: center;
  cursor: var(--cursor-accent);
}
@media (min-width: 768px) {
  .contact-page .contact-links a {
    font-size: 1.6rem;
  }
}
.contact-page .contact-links a .button-text,
.contact-page .contact-links a .button-text-hover {
  display: block;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  line-height: 20px;
  white-space: nowrap;
}
.contact-page .contact-links a .button-text {
  transform: translateY(0);
}
.contact-page .contact-links a .button-text-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(100%);
}
.contact-page .contact-links a:hover {
  text-decoration: none;
}
.contact-page .contact-links a:hover .button-text {
  transform: translateY(-100%);
}
.contact-page .contact-links a:hover .button-text-hover {
  transform: translateY(0);
}

body {
  cursor: var(--cursor-default);
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

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

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

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.p-1 {
  padding: 1rem;
}

.p-2 {
  padding: 2rem;
}

.d-flex {
  display: flex;
}

.d-block {
  display: block;
}

.d-none {
  display: none;
}

.flex-column {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

@media (min-width: 768px) {
  .tablet-hidden {
    display: none !important;
  }
  .tablet-show {
    display: block !important;
  }
}
@media (min-width: 1024px) {
  .desktop-hidden {
    display: none !important;
  }
  .desktop-show {
    display: block !important;
  }
}
@media (min-width: 1440px) {
  .large-hidden {
    display: none !important;
  }
  .large-show {
    display: block !important;
  }
}