header .header__wrap .title_img {
  background: linear-gradient(229deg, #FFBCD9 17.57%, #E61872 86.93%);
}

h2 span {
  margin-left: 10px;
  background: linear-gradient(229deg, #FFBCD9 17.57%, #E61872 86.93%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.modal_open {
  overflow: hidden;
}

.work__header {
  width: 100%;
  height: auto;
  z-index: 50;
}
.work__header .section_title {
  padding-top: 5rem;
}
.work__header .worknav {
  margin-top: 1rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.work__header .worknav ul {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
.work__header .worknav ul li {
  border-radius: 100px;
  opacity: 0.6;
}
.work__header .worknav ul li a {
  gap: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.work__header .worknav ul li .worknav_svg {
  width: 20px;
  height: 20px;
}
.work__header .worknav ul li .worknav_svg svg {
  width: 100%;
  height: 100%;
}
.work__header .worknav ul li .worknav_inner {
  font-weight: 600;
  font-size: 0.875rem;
}
.work__header .worknav ul li:hover, .work__header .worknav ul li.active {
  opacity: 1;
}
.work__header .worknav ul li:hover .nav_svg, .work__header .worknav ul li.active .nav_svg {
  opacity: 0.9;
}

.workspace {
  min-height: 100vh;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 3rem;
  padding: 1rem;
}
.workspace .workbox__wrap {
  width: 100%;
  display: grid;
  height: auto;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  grid-auto-rows: 1px;
  gap: 10px;
}
.workspace .workbox {
  grid-row-end: span var(--row-span);
  padding: 4px;
  border-radius: 8px;
  border: 1px solid rgba(253, 253, 253, 0.3);
  cursor: pointer;
}
.workspace .workbox .workbox_wrap {
  width: 100%;
  height: auto;
}
.workspace .workbox .workbox_wrap img {
  border-radius: 5px;
  overflow: hidden;
  display: block;
  width: 100%;
  overflow: hidden;
  object-fit: cover;
}
.workspace .workbox .textbox_title {
  position: absolute;
  font-weight: 700;
  margin-top: -1.5rem;
  left: 0.5rem;
  opacity: 0.9;
  color: #222;
  opacity: 0.8;
  font-size: 0.875rem;
}
.workspace .workbox .textbox_sub {
  font-size: 0.875rem;
  margin: 0.5rem;
  opacity: 0.9;
}
.workspace .workbox.active .workbox_text {
  display: flex;
}
.workspace .workbox.active .workbox_text .textbox {
  animation: textboxMove 0.9s ease-in-out forwards;
}
.workspace .workbox.design .workbox_text .linkbox {
  display: none;
}
.workspace .workbox.design.none, .workspace .workbox.develop.none {
  display: none;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #151515;
  z-index: 51;
  display: none;
  overflow-y: auto;
}
.modal .modal__container {
  width: 100%;
  max-width: 1400px;
  overflow-x: hidden;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.modal .modal__left {
  width: 25%;
  height: auto;
  display: flex;
  justify-content: center;
}
.modal .modal__left .left_p {
  position: fixed;
  top: -3rem;
}
.modal .modal__left .left_p p {
  position: absolute;
  transform: translate(-50%, 150%) rotate(-90deg);
  transform-origin: center center;
  font-size: 8rem;
  font-weight: 800;
  white-space: nowrap;
}
.modal .modal__left .left_p .left_top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(21, 21, 21, 0.85);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.modal .modal__right {
  width: 75%;
  padding: 5.5rem 2rem 5.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.modal .modal__right .modal_close {
  cursor: pointer;
  overflow: hidden;
}
.modal .modal__right .modal_close .modalclose {
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0.8;
  left: -34px;
}
.modal .modal__right .modal_close .modalclose .modalclose_svg {
  width: 30px;
  height: 30px;
}
.modal .modal__right .modal_close .modalclose .modalclose_svg svg {
  width: 100%;
  height: 100%;
}
.modal .modal__right .modal_close .modalclose p {
  font-weight: 45;
  font-size: 1.5rem;
}
.modal .modal__right .modal_close .modalclose:hover {
  left: 0;
}
.modal .modal__right .modal_title {
  width: min-content;
}
.modal .modal__right .modal_title h2 {
  white-space: nowrap;
  font-size: 1.5rem;
}
.modal .modal__right .modal_title .title_under {
  position: absolute;
  width: 0px;
  bottom: 0px;
  left: -10px;
  height: 18px;
  transform: skewX(-8deg);
  background: #FFBCD9;
  opacity: 0.5;
  mix-blend-mode: screen;
}
.modal .modal__right .modal_innerbox {
  width: 100%;
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}
.modal .modal__right .modal_innerbox .modal_innertext {
  width: 65%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modal .modal__right .modal_innerbox .modal_innertext p {
  font-size: 0.875rem;
  opacity: 0.9;
  line-height: 20px;
  text-align: justify;
  text-justify: inter-word;
}
.modal .modal__right .modal_innerbox .modal_info {
  width: 35%;
  padding: 1rem;
  border-radius: 8px;
  background: #222;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal .modal__right .modal_innerbox .info_inner {
  display: flex;
  flex-direction: column;
}
.modal .modal__right .modal_innerbox .info_inner p {
  font-size: 0.875rem;
  opacity: 0.9;
  line-height: 20px;
}
.modal .modal__right .modal_innerbox .info_programs ul {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.modal .modal__right .modal_innerbox .info_programs ul li {
  padding: 1px 10px;
  border-radius: 50px;
  background: rgba(253, 253, 253, 0.3);
}
.modal .modal__right .modal_innerbox .info_programs ul li p {
  font-size: 0.875rem;
}
.modal .modal__right .modal_links {
  width: 100%;
  display: flex;
  padding-left: 2rem;
  top: -2rem;
  gap: 2rem;
}
.modal .modal__right .modal_links a {
  top: 2.8rem;
  width: 80px;
  aspect-ratio: 1/1;
  border-radius: 80px;
  border: 1px solid rgba(253, 253, 253, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 0.875rem;
  text-align: center;
  background: #222;
}
.modal .modal__right .modal_links a:hover {
  top: 2.5rem;
  background: #555;
}
.modal .modal__right .modal_img {
  top: -2rem;
  width: 100%;
  height: 100%;
}
.modal .modal__right .modal_img img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.modal.design .modal_links {
  display: none;
}
.modal.design .modal_img {
  top: 0;
}

body.light a {
  color: #222;
}
body.light .work__header .worknav ul li a .worknav_svg svg path {
  stroke: #222;
}
body.light .workspace .workbox {
  border: 1px solid rgba(21, 21, 21, 0.2);
}
body.light .workspace .workbox .workbox_text .linkbox {
  background: rgba(253, 253, 253, 0.55);
  backdrop-filter: brightness(1.1) blur(8px);
  -webkit-backdrop-filter: brightness(1.1) blur(8px);
  box-shadow: 0px 0px 10px 1px rgba(21, 21, 21, 0.08);
  border: 1px solid rgba(253, 253, 253, 0.75);
}
body.light .workspace .workbox .workbox_text .linkbox .link_svg svg path {
  stroke: #151515;
}
body.light .workspace .workbox .workbox_text .textbox .textbox_program li {
  background: rgba(21, 21, 21, 0.15);
  border: 1px solid rgba(253, 253, 253, 0.8);
}
body.light .modal {
  background: #fdfdfd;
}
body.light .modal .modal__left .left_top {
  background: rgba(253, 253, 253, 0.85);
}
body.light .modal .modalclose_svg svg path {
  stroke: #222;
}
body.light .modal .modal_innerbox .modal_info {
  background: #efefef;
}
body.light .modal .modal_innerbox .info_programs li {
  background: rgba(21, 21, 21, 0.2);
  color: #fdfdfd;
}
body.light .modal .modal_links a {
  background: #efefef;
  border: 1px solid rgba(21, 21, 21, 0.25);
}
body.light .modal .modal_links a:hover {
  background: #fdfdfd;
}

@media (prefers-color-scheme: dark) {
  header .header__wrap .title_img {
    background: linear-gradient(229deg, #FFBCD9 17.57%, #E61872 86.93%);
  }
  h2 span {
    background: linear-gradient(229deg, #FFBCD9 17.57%, #E61872 86.93%);
  }
}
@media screen and (max-width: 1023px) {
  .modal .modal__right .modal_close .modalclose {
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .work__header .worknav ul {
    gap: 1rem;
  }
  .work__header .worknav ul li .worknav_svg {
    width: 16px;
    height: 16px;
  }
  .work__header .worknav ul li a {
    padding: 2px 12px;
  }
  .work__header .worknav ul li a .worknav_inner span {
    display: none;
  }
  .modal .modal__container {
    flex-direction: column;
  }
  .modal .modal__container .modal__left {
    display: none;
  }
  .modal .modal__container .modal__right {
    width: 100%;
    top: 0;
    padding: 5rem 2rem;
  }
  .modal .modal__container .modal__right .modal_innerbox {
    flex-direction: column;
  }
  .modal .modal__container .modal__right .modal_innerbox .modal_innertext {
    width: 100%;
  }
  .modal .modal__container .modal__right .modal_innerbox .modal_info {
    width: 100%;
  }
  .modal .modal__container .modal_links {
    padding: 0;
    margin: 0 auto;
    align-items: center;
    width: auto;
    gap: 1.5rem;
  }
  .modal .modal__container .modal_links a {
    width: 70px;
  }
}
@keyframes textboxMove {
  0% {
    opacity: 0;
    bottom: -100px;
  }
  85% {
    opacity: 1;
    bottom: 10px;
  }
  100% {
    bottom: 0px;
  }
}