/* ==============================================================================
# mobileFont
============================================================================== */
@font-face {
  font-family: "TsukuOldGothicStd";
  src: url("../font/TsukuOldGothicStdFont.woff2") format("woff2"), url("../font/TsukuOldGothicStdFont.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TsukuGoPro";
  src: url("../font/FOT-TsukuGoPro-L.woff2") format("woff2"), url("../font/FOT-TsukuGoPro-L.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TsukuGoPro";
  src: url("../font/FOT-TsukuGoPro-R.woff2") format("woff2"), url("../font/FOT-TsukuGoPro-R.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TsukuGoPro";
  src: url("../font/FOT-TsukuGoPro-M.woff2") format("woff2"), url("../font/FOT-TsukuGoPro-M.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TsukuGoPro";
  src: url("../font/FOT-TsukuGoPro-D.woff2") format("woff2"), url("../font/FOT-TsukuGoPro-D.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TsukuGoPro";
  src: url("../font/FOT-TsukuGoPro-B.woff2") format("woff2"), url("../font/FOT-TsukuGoPro-B.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TsukuGoPro";
  src: url("../font/FOT-TsukuGoPro-H.woff2") format("woff2"), url("../font/FOT-TsukuGoPro-H.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TsukuGoPro";
  src: url("../font/FOT-TsukuGoPro-E.woff2") format("woff2"), url("../font/FOT-TsukuGoPro-E.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HelveticaNeueLTStd";
  src: url("../font/HelveticaNeueLTStd-LtCn.woff2") format("woff2"), url("../font/HelveticaNeueLTStd-LtCn.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HelveticaNeueLTStd";
  src: url("../font/HelveticaNeueLTStd-MdCn.woff2") format("woff2"), url("../font/HelveticaNeueLTStd-MdCn.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HelveticaNeueLTStd";
  src: url("../font/HelveticaNeueLTStd-Bd.woff2") format("woff2"), url("../font/HelveticaNeueLTStd-Bd.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HelveticaNeueLTStd";
  src: url("../font/HelveticaNeueLTStd-BdCn.woff2") format("woff2"), url("../font/HelveticaNeueLTStd-BdCn.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
/* ========================================
   Fixed Buttons Component
   ======================================== */
:root {
  --btn-start: 80;
  --btn-dir: 1;
  --btn-dur: 1.7s;
  --btn-loop-dur: 10s;
  --btn-ease: ease-in-out;
  --btn-bg: #333;
}

/* ========================================
   Container Styles
   ======================================== */
.fixed-buttons {
  position: fixed;
  bottom: 40px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 10px;
  right: calc((100vw - 1000px) / 2 - 83px);
}
@media screen and (max-width: 1200px) {
  .fixed-buttons {
    right: 40px;
  }
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .fixed-buttons {
    right: auto;
  }
}

/* ========================================
   Button Item Base Styles
   ======================================== */
.fixed-buttons__item {
  display: inline-block;
  text-align: center;
  font-family: "TsukuGoPro", sans-serif;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  --start: var(--btn-start);
  --dir: var(--btn-dir);
  --dur: var(--btn-dur);
  --loop-dur: var(--btn-loop-dur);
  --ease: var(--btn-ease);
  --bg: var(--btn-bg);
  background-color: transparent;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s var(--ease);
  /* ========================================
     Text Content
     ======================================== */
  /* ========================================
     Border Animation Container
     ======================================== */
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .fixed-buttons__item {
    width: 220px;
  }
}
.fixed-buttons__item .fixed-buttons__content {
  position: relative;
  color: #fff;
  opacity: 0;
  bottom: -12px;
  transition: all 0.6s var(--ease);
}
.fixed-buttons__item span {
  color: #fff;
}
.fixed-buttons__item .-border {
  position: absolute;
  top: 0;
  left: 0;
  overflow: visible;
  pointer-events: none;
}
.fixed-buttons__item .-border rect {
  transition: stroke-dasharray var(--dur) var(--ease), stroke-dashoffset var(--dur) var(--ease), stroke 0.6s var(--ease);
  stroke: transparent;
  stroke-dasharray: 0 100;
  stroke-dashoffset: var(--start);
}
.fixed-buttons__item .-border rect.pink-border {
  stroke: transparent;
}
.fixed-buttons__item .-border rect.black-border {
  stroke: transparent;
}

/* ========================================
   Button States
   ======================================== */
.fixed-buttons__item.is-border-in .-border rect.pink-border {
  stroke: url(#btn-border-gradient);
  stroke-dasharray: 100 0;
  stroke-dashoffset: calc(var(--start) + 100 * var(--dir));
}
.fixed-buttons__item.is-border-in .-border rect.black-border {
  stroke: transparent;
  stroke-dasharray: 0 100;
  stroke-dashoffset: var(--start);
}

.fixed-buttons__item.is-content-in {
  background-color: var(--bg);
  box-shadow: 0 0 6px 0 rgba(29, 32, 49, 0.3);
}
.fixed-buttons__item.is-content-in .fixed-buttons__content {
  opacity: 1;
  bottom: 0;
}
.fixed-buttons__item.is-content-in .-border rect.pink-border,
.fixed-buttons__item.is-content-in .-border rect.black-border {
  stroke: transparent;
}

.fixed-buttons__item.is-loop .-border rect,
.fixed-buttons__item.is-content-in.is-loop .-border rect {
  transition: none;
  will-change: stroke-dasharray, stroke-dashoffset;
}
.fixed-buttons__item.is-loop .-border rect.pink-border,
.fixed-buttons__item.is-content-in.is-loop .-border rect.pink-border {
  stroke: url(#btn-border-gradient);
  animation: btnBorderLoopPink var(--loop-dur) var(--ease) infinite;
}
.fixed-buttons__item.is-loop .-border rect.black-border,
.fixed-buttons__item.is-content-in.is-loop .-border rect.black-border {
  stroke: #333;
  animation: btnBorderLoopBlack var(--loop-dur) var(--ease) infinite;
}

/* ========================================
   Hover Interactions
   ======================================== */
@media screen and (min-width: 601px) {
  .fixed-buttons:has(.fixed-buttons__item:hover) .fixed-buttons__item.is-loop .-border rect.pink-border,
  .fixed-buttons:has(.fixed-buttons__item:hover) .fixed-buttons__item.is-loop .-border rect.black-border,
  .fixed-buttons:has(.fixed-buttons__item:hover) .fixed-buttons__item.is-content-in.is-loop .-border rect.pink-border,
  .fixed-buttons:has(.fixed-buttons__item:hover) .fixed-buttons__item.is-content-in.is-loop .-border rect.black-border {
    animation-play-state: paused;
    stroke: transparent;
  }
  .fixed-buttons__item.is-loop .-border:hover rect,
  .fixed-buttons__item.is-content-in.is-loop .-border:hover rect {
    animation-play-state: paused;
    stroke: transparent;
  }
}
/* ========================================
   Keyframe Animations
   ======================================== */
@keyframes btnBorderLoopPink {
  0% {
    stroke-dasharray: 0 100;
    stroke-dashoffset: var(--start);
  }
  25% {
    stroke-dasharray: 100 0;
    stroke-dashoffset: var(--start);
  }
  50% {
    stroke-dasharray: 100 0;
    stroke-dashoffset: var(--start);
  }
  100% {
    stroke-dasharray: 100 0;
    stroke-dashoffset: var(--start);
  }
}
@keyframes btnBorderLoopBlack {
  0% {
    stroke-dasharray: 0 100;
    stroke-dashoffset: var(--start);
  }
  50% {
    stroke-dasharray: 0 100;
    stroke-dashoffset: var(--start);
  }
  75% {
    stroke-dasharray: 100 0;
    stroke-dashoffset: var(--start);
  }
  100% {
    stroke-dasharray: 100 0;
    stroke-dashoffset: var(--start);
  }
}
/* ========================================
   double button
   ======================================== */
.fixed-buttons__item-double {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fixed-buttons__item-double .fixed-buttons__item {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
@media (min-width: 769px) {
  .fixed-buttons__item-double .fixed-buttons__item:hover {
    background: #e83c5c;
  }
}
@media (max-width: 768px) {
  .fixed-buttons__item-double .fixed-buttons__item:active {
    background: #e83c5c;
  }
}

.front-page .fixed-buttons__item-double .fixed-buttons__item:nth-of-type(1) {
  padding: 0 38px;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .front-page .fixed-buttons__item-double .fixed-buttons__item:nth-of-type(1) {
    padding: 0;
  }
}
.front-page .fixed-buttons__item-double .fixed-buttons__item:nth-of-type(1):hover {
  padding: 0 42px;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .front-page .fixed-buttons__item-double .fixed-buttons__item:nth-of-type(1):hover {
    padding: 0;
  }
}
.front-page .fixed-buttons__item-double .fixed-buttons__item:nth-of-type(2) {
  padding: 0 20px;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .front-page .fixed-buttons__item-double .fixed-buttons__item:nth-of-type(2) {
    padding: 0;
  }
}
.front-page .fixed-buttons__item-double .fixed-buttons__item:nth-of-type(2):hover {
  padding: 0 24px;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .front-page .fixed-buttons__item-double .fixed-buttons__item:nth-of-type(2):hover {
    padding: 0;
  }
}
.front-page .fixed-buttons__item-double:has(.fixed-buttons__item:hover) .fixed-buttons__item:not(:hover):nth-of-type(1) {
  padding: 0 34px;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .front-page .fixed-buttons__item-double:has(.fixed-buttons__item:hover) .fixed-buttons__item:not(:hover):nth-of-type(1) {
    padding: 0;
  }
}
.front-page .fixed-buttons__item-double:has(.fixed-buttons__item:hover) .fixed-buttons__item:not(:hover):nth-of-type(2) {
  padding: 0 16px;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .front-page .fixed-buttons__item-double:has(.fixed-buttons__item:hover) .fixed-buttons__item:not(:hover):nth-of-type(2) {
    padding: 0;
  }
}

/* ====================
# TOP
==================== */
.front-page .fixed-buttons {
  max-width: 452px;
  gap: 8px 12px;
}

@media screen and (max-width: 600px) and (min-width:360px) {
  .fixed-buttons-fv {
    position: relative;
    width: 220px;
    max-width: 220px;
    margin: 50px auto 0;
    bottom: auto;
    right: auto;
    gap: 16px;
    display: grid !important;
  }
  .fixed-buttons-fv .fixed-buttons__item {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (max-width: 600px) and (min-width:360px) {
  .fixed-buttons-fv-scroll {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    right: 0;
    bottom: 20px;
    z-index: 1000;
    max-width: 100%;
    width: 100%;
    padding: 0 8px;
    box-sizing: border-box;
  }
  .fixed-buttons-fv-scroll .fixed-buttons__item {
    font-size: 16px;
    padding: 0;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
/* ====================
# PROJECT
==================== */
.project-page .fixed-buttons {
  right: 48px;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .project-page .fixed-buttons {
    right: auto;
  }
}
.project-page .fixed-buttons__item {
  padding: 16px 20px 20px;
  --start: 88;
  --loop-dur: 14s;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .project-page .fixed-buttons__item {
    width: 308px;
    padding: 8px 0 12px;
    --start: 80;
  }
}
@media screen and (min-width: 601px) {
  .project-page .fixed-buttons__item:hover {
    background: #333;
    padding: 16px 20px 20px;
  }
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .project-page .project-fixed-buttons {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 105;
  }
}
.project-page .fixed-buttons__wrapper {
  position: relative;
  display: inline-block;
}
.project-page span {
  display: block;
}
.project-page .fixed-buttons__content {
  margin-bottom: 4px;
}
.project-page .fixed-buttons__label {
  position: relative;
  margin-bottom: 8px;
}
.project-page .fixed-buttons__label img {
  position: absolute;
  top: calc(50% + 4px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 122px;
}
.project-page .fixed-buttons__image {
  max-width: 252px;
  margin-bottom: 16px;
}
.project-page .fixed-buttons__action {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 4px 12px 4px 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-radius: 26px;
  background: #e83c5c;
  box-shadow: 0 0 6px 0 rgba(29, 32, 49, 0.3);
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .project-page .fixed-buttons__action {
    padding: 0 12px 0 20px;
    margin-top: 2px;
  }
}
.project-page .fixed-buttons__action img {
  position: relative;
  width: 8px;
}
.project-page .fixed-buttons__action .fixed-buttons__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 50%;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.16);
  border: 1px solid #fafafa;
  width: 23px;
  height: 23px;
  position: relative;
}
.project-page .fixed-buttons__action .fixed-buttons__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  background: #fafafa;
  border-radius: 50%;
  transition: all 0.5s;
}
.project-page .fixed-buttons__item:hover .fixed-buttons__arrow::before {
  width: 23px;
  height: 23px;
}

/* ========================================
   Pivot Button
   ======================================== */
.pivot {
  width: 100%;
  display: flex;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .pivot {
    height: auto !important;
  }
}
@media (min-width: 769px) {
  .pivot:hover {
    background: #e83c5c;
  }
  .pivot:hover .pivot-button__icon {
    background: #333;
  }
}
@media (max-width: 768px) {
  .pivot:active {
    background: #e83c5c;
  }
  .pivot:active .pivot-button__icon {
    background: #333;
  }
}

.pivot-button {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.3s ease;
  padding: 8px;
}
.pivot-button .fixed-buttons__content {
  padding: 0;
  gap: 12px;
}
.pivot-button__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 160px;
  margin: 0 auto;
  background: #e83c5c;
  flex-shrink: 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.pivot-button__label {
  color: #fff;
  font-weight: bold;
  font-family: "TsukuGoPro";
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .pivot-button__label {
    font-size: 14px;
  }
}
.pivot-button__content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.pivot-button__thumbnail {
  width: 200px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .pivot-button__thumbnail {
    width: 160px;
  }
}
.pivot-button__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pivot-button__text {
  display: grid;
}
.pivot-button__title {
  margin: 4px 0;
  transition: all 0.3s ease;
  text-align: left;
  color: #fafafa;
  font-family: "TsukuGoPro";
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .pivot-button__title {
    font-size: 14px;
  }
}
.pivot-button__action {
  transition: all 0.3s ease;
  color: #fafafa;
  text-align: center;
  font-family: "M+ 1p";
  font-size: 12px;
  font-weight: 500;
  line-height: 1.67;
  letter-spacing: 0.6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ========================================
   Close Button
   ======================================== */
.fixed-buttons__wrapper {
  transition: all 0.3s ease;
}
@media (min-width: 769px) {
  .fixed-buttons__wrapper:hover {
    transform: translateY(-10px);
  }
}
@media (max-width: 768px) {
  .fixed-buttons__wrapper:active {
    transform: translateY(-10px);
  }
}
.fixed-buttons__wrapper.is-closing {
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  transition: all 0.5s ease;
  pointer-events: none;
}
.fixed-buttons__wrapper.is-hidden {
  display: none;
}

@media (min-width: 769px) {
  .fixed-buttons__wrapper--no-raise:hover {
    transform: none;
  }
}
@media (max-width: 768px) {
  .fixed-buttons__wrapper--no-raise:active {
    transform: none;
  }
}

.fixed-buttons__close {
  position: absolute;
  top: -4px;
  right: 8px;
  z-index: 10;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 6px 0 rgba(29, 32, 49, 0.3);
  transition: all 0.3s ease;
}
.fixed-buttons__close .-border {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
.fixed-buttons__close .-border path {
  transition: all 0.3s ease;
}
.fixed-buttons__close:active {
  transform: translate(0, -100%) scale(1.1);
}
.fixed-buttons__close.is-visible {
  opacity: 1;
  transform: translate(0, -100%) scale(1);
}

body,
html {
  height: 100%;
  margin: 0;
  color: #333333;
  font-family: "TsukuGoPro", sans-serif;
}

* {
  font-size: 16px;
}

@media screen and (max-width: 1267px) and (min-width: 601px) {
  body {
    width: 1267px;
  }
}
#center-text {
  color: #000;
  font-size: 2em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 21;
  text-align: center;
}
#center-text h1 {
  font-size: 80px;
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
}
#center-text h1 span {
  color: #e83c5c;
}
#center-text p {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 18px;
  letter-spacing: 0.9px;
  line-height: 41px;
  font-weight: 600;
}
#center-text p span {
  color: #e83c5c;
}

#main-section {
  color: #000;
  font-size: 2em;
  z-index: 30;
  position: relative;
}

main {
  padding-top: 120px;
  padding-bottom: 140px;
  background-color: rgb(250, 250, 250);
}
@media screen and (max-width: 600px) and (min-width:360px) {
  main {
    padding-top: 0;
  }
}
main .fv__text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
main .fv__text p {
  font-size: 18px;
  letter-spacing: 0.9px;
  line-height: 42px;
  font-weight: 400;
}
main .anime-horizon {
  overflow: hidden;
  height: 67px;
}
main .anime-horizon .title {
  font-size: 80px;
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
}
main .anime-horizon .title span {
  color: #e83c5c;
}
main .anime-horizon .horizon-txt {
  display: inline-block;
  transform: translateY(1em);
  transition-property: all;
  transition-duration: 0.7s;
  transition-timing-function: var(--bezier);
}
main .anime-horizon .horizon-txt.title {
  font-size: 67px;
  font-family: "futura-pt", sans-serif;
}
main .anime-horizon .horizon-wrap:nth-of-type(2) .horizon-txt {
  transition-delay: 0.2s;
}
main .active .anime-horizon,
main .anime-horizon.active .horizon-txt {
  transform: translateY(-12px);
}
main .project {
  margin-top: 40px;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  main .project {
    margin-top: 0px;
    padding-top: 60px;
  }
}
main .project .project__inner {
  max-width: 1000px;
  margin: auto;
  width: 100%;
}
main .project .project__inner h1 {
  font-family: "futura-pt", sans-serif;
  font-size: 30px;
  font-weight: 500;
  position: relative;
  z-index: 100;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  main .project .project__inner h1 {
    padding: 20px 15px 28px;
  }
}
main .project .project-slider {
  padding-top: 73px;
}
main .project .project-slider .splide__slide {
  width: 38% !important;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  main .project .project-slider .splide__slide {
    width: 265px !important;
    height: 148px;
    background-color: #fff;
  }
}
main .project .project-slider .splide__slide a {
  display: block;
}
main .project .project-slider .splide__slide .img__cover {
  overflow: hidden;
  aspect-ratio: 16/9;
  margin: auto;
}
main .project .project-slider .splide__slide .img__cover:hover img {
  transform: scale(1.1);
}
@media screen and (max-width: 600px) and (min-width:360px) {
  main .project .project-slider .splide__slide .img__cover {
    height: auto;
  }
}
main .project .project-slider .splide__slide img {
  width: 100%;
  transition: all 0.3s;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 16/9;
}
main .project .project-slider .splide__slide h3 {
  color: #333;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 35px;
  margin-top: 34px;
  height: 70px;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  main .project .project-slider .splide__slide h3 {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 32px;
    margin-top: 14px;
    height: 70px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-align: left;
  }
}
main .project .project-slider .splide__slide p {
  color: #888;
  font-size: 15px;
  letter-spacing: 0.75px;
  margin-top: 10px;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  main .project .project-slider .splide__slide p {
    text-align: left;
  }
}
main .project .project-slider .splide__pagination {
  bottom: auto;
  left: auto;
  padding: 0 1em;
  position: absolute;
  right: 0px;
  z-index: 1;
  top: -35px;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  main .project .project-slider .splide__pagination {
    top: 20px;
    left: 0;
    padding: 0;
    position: absolute;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
  }
}
main .project .project-slider .splide__pagination .splide__pagination__page {
  width: 81px;
  height: 4px;
  border-radius: 0;
  background-color: #ededed;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  main .project .project-slider .splide__pagination .splide__pagination__page {
    width: 62px;
  }
}
main .project .project-slider .splide__pagination .splide__pagination__page.is-active {
  background-color: #888888;
  transform: scale(1);
}
main .project .project-slider .splide__arrows {
  width: calc(38% + 75px);
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  main .project .project-slider .splide__arrows {
    width: 310px;
    display: none;
  }
}
main .project .project-slider .splide__arrow {
  position: absolute;
  top: 30px;
  background-color: transparent;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  main .project .project-slider .splide__arrow {
    top: 65px;
  }
}
main .project .project-slider .splide__arrow svg {
  display: none;
}
main .project .project-slider .splide__arrow--prev {
  left: 10px;
  width: 1em;
  height: 1em;
  border-right: 1.5px solid #333;
  border-bottom: 1.5px solid #333;
  border-radius: 0;
  transform: rotate(135deg);
}
@media screen and (max-width: 600px) and (min-width:360px) {
  main .project .project-slider .splide__arrow--prev {
    width: 12px;
    height: 12px;
  }
}
main .project .project-slider .splide__arrow--next {
  right: 10px;
  width: 1em;
  height: 1em;
  border-right: 1.5px solid #333;
  border-bottom: 1.5px solid #333;
  border-radius: 0;
  transform: rotate(-45deg);
}
@media screen and (max-width: 600px) and (min-width:360px) {
  main .project .project-slider .splide__arrow--next {
    width: 12px;
    height: 12px;
  }
}
main .project .splide__track {
  height: inherit;
}
main .project .splide__list {
  align-items: flex-start;
  min-height: 420px;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  main .project .splide__list {
    height: 500px;
  }
}
main .project .more__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 50px;
}
main .project .more__btn:hover .arrow::before {
  width: 82px;
  height: 82px;
  top: 0;
  left: 0;
}
main .project .more__btn p {
  font-size: 15px;
  color: #333;
  letter-spacing: 0.75px;
}
main .project .more__btn .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 1px solid rgb(222, 36, 74);
  position: relative;
  transition: all 0.2s;
}
main .project .more__btn .arrow::before {
  transition: all 0.2s;
  background-color: rgb(222, 36, 74);
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  top: 5px;
  left: 5px;
  box-sizing: border-box;
}
main .project .more__btn .arrow img {
  width: 16px !important;
  position: relative;
}

.splide__bg {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 70%;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  filter: blur(2px);
  z-index: 0;
  box-shadow: inset 0px 0 40px 55px #fff;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0.1;
  }
  100% {
    opacity: 0.3;
  }
}
.tab {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 26px;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .tab {
    padding: 10px 15px 0;
    position: relative;
    z-index: 100;
  }
}

.tab__head {
  margin-top: 33px;
  padding-top: 12px;
  padding-bottom: 16px;
  background: #fafafa;
  position: sticky;
  top: 62px;
  z-index: 10;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .tab__head {
    padding: 12px 15px 16px;
    z-index: 101;
    top: 55px;
  }
}

.tab__filter {
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 0 6px rgba(29, 32, 49, 0.1);
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .tab__filter {
    top: 55px;
    border-radius: 4px;
  }
}

.tab__list-wrapper {
  position: relative;
  box-shadow: 2px -2px 4px rgba(29, 32, 49, 0.1);
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .tab__list-wrapper {
    box-shadow: 1px -1px 4px rgba(29, 32, 49, 0.1);
  }
}

.tab__list {
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.tab__toggle-btn {
  width: 100%;
  margin: 0 auto;
  padding: 16px 0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  gap: 6px;
  cursor: pointer;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .tab__toggle-btn {
    padding: 12px 0 16px;
  }
}
.tab__toggle-btn span {
  color: #888;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
}
.tab__toggle-btn .arrow {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.tab__toggle-btn .arrow svg {
  display: block;
}

.tab__menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.tab__menu-item {
  list-style: none;
  width: 100%;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
  font-weight: 400;
  background: #fff;
  box-sizing: border-box;
  height: 48px;
  position: relative;
  z-index: 1;
  font-weight: 700;
  overflow: hidden;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .tab__menu-item {
    height: 32px;
  }
}
.tab__menu-item span {
  font-size: 18px;
  color: #888888;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .tab__menu-item span {
    font-size: 14px;
    transform: translateY(2px);
  }
}
.tab__menu-item:last-of-type {
  margin-right: 0px;
}
.tab__menu-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  top: 0;
  left: 0;
  background: transparent;
  transition: all 0.3s;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .tab__menu-item::after {
    height: 4px;
  }
}

.tab__menu > li.is-active:nth-of-type(1) .tab__menu-item {
  box-shadow: 2px -2px 4px rgba(29, 32, 49, 0.1);
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .tab__menu > li.is-active:nth-of-type(1) .tab__menu-item {
    box-shadow: 1px -1px 4px rgba(29, 32, 49, 0.1);
  }
}
.tab__menu > li.is-active:nth-of-type(2) .tab__menu-item {
  box-shadow: -2px -2px 4px rgba(29, 32, 49, 0.1);
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .tab__menu > li.is-active:nth-of-type(2) .tab__menu-item {
    box-shadow: -1px -1px 4px rgba(29, 32, 49, 0.1);
  }
}

.tab__menu > li.is-active .tab__menu-item {
  border-radius: 15px 15px 0 0;
  z-index: 5;
  box-shadow: 2px -2px 4px rgba(29, 32, 49, 0.1);
}
.tab__menu > li.is-active .tab__menu-item span {
  color: #e83c5c;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .tab__menu > li.is-active .tab__menu-item {
    border-radius: 4px 4px 0 0;
  }
}
.tab__menu > li.is-active .tab__menu-item::after {
  background: #e83c5c;
}

.content__top {
  background-color: #fff;
  border-top: none;
  display: none;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .content__top {
    padding: 0 15px;
  }
}
.content__top.is-show {
  display: block;
  animation: fadeInUp 0.4s ease-out both;
}
.content__top span {
  display: block;
  width: 846px;
  margin: auto;
  padding-top: 40px;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .content__top span {
    width: 100%;
  }
}
.content__top span img {
  width: 846px;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .content__top span img {
    width: 100%;
  }
}
.content__top .design__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 33px;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .content__top .design__container {
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
  }
}
.content__top .design {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .content__top .design {
    gap: 0px;
    flex-direction: column;
    width: 100%;
  }
}
.content__top .design img {
  margin-top: -7px;
}
.content__top .cross {
  margin-top: 27px;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .content__top .cross {
    margin-top: 17px;
    margin-bottom: 17px;
  }
}
.content__top .select__wrapper {
  position: relative;
  margin-top: 25px;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .content__top .select__wrapper {
    margin-top: 15px;
    width: 100%;
  }
}
.content__top .select__wrapper::before {
  content: "";
  position: absolute;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  background-color: #e83c5c;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  pointer-events: none;
}
.content__top .select__wrapper:after {
  content: "";
  position: absolute;
  top: 30%;
  right: 18px;
  transform: rotate(-135deg) translateY(-50%);
  width: 10px;
  height: 10px;
  border-left: 1px solid #fff;
  border-top: 1px solid #fff;
  pointer-events: none;
  z-index: 101;
}
.content__top select {
  width: 330px;
  height: 62px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 31px;
  padding: 10px 15px;
  outline: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  position: relative;
  font-size: 1rem;
  box-sizing: border-box;
  padding-right: 60px;
  font-size: 18px;
  text-align: center;
  font-weight: 400;
  color: #aaa;
  font-family: "M PLUS 1p", sans-serif;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .content__top select {
    width: 100%;
    font-size: 18px;
    padding-right: 15px;
  }
}
.content__top select:focus {
  border-color: #b3b3b3;
}
.content__top select option {
  padding: 10px;
  background: #fff;
  border: none;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .content__top.is-show {
    animation: none;
  }
}
.tab__panel {
  width: 100%;
}

.tab__panel-box {
  min-height: 400px;
  border-radius: 10px;
}

.tab__panel-box001 {
  display: none;
}

.tab__panel-box002 {
  display: none;
}

.tab__panel-box.is-show {
  display: block;
}

.content__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .content__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.list__item {
  width: 100%;
  transition: all 0.3s;
}
.list__item:hover {
  transform: translateY(-10px);
}
.list__item a {
  display: grid;
  grid-template-rows: auto 1fr;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #dddddd;
  background-color: #fbfbfb;
  border-radius: 15px;
  box-shadow: 0 0 11.002px 1.375px rgba(29, 67, 103, 0.2);
  height: 100%;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .list__item a {
    border-radius: 8px;
  }
}
.list__item a .thumbnail__cover {
  padding: 8px 8px 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .list__item a .thumbnail__cover {
    margin: auto;
  }
}
.list__item a .thumbnail {
  aspect-ratio: 464/255;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  border-radius: 15px;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .list__item a .thumbnail {
    width: 100%;
    border-radius: 8px;
  }
}
.list__item a .item__content {
  padding: 12px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.list__item a .item__text h2 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.67;
  margin-bottom: 12px;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .list__item a .item__text h2 {
    font-size: 16px;
    line-height: 1.5;
  }
}
.list__item a .item__text .desc {
  color: #888;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.71;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .list__item a .item__text .desc {
    font-size: 14px;
  }
}
.list__item .cat__company {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 16px;
}
.list__item .cat__company .cat {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  border-radius: 12.868px;
  border: 1.5px solid #d2d6dd;
  background: #fafafa;
  line-height: 1;
  padding: 5px 20px;
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .list__item .cat__company .cat {
    font-size: 14px;
  }
}
.list__item .cat__company .company {
  font-size: 15px;
  font-weight: 400;
  color: #888;
  border: 1.287px solid #d2d6dd;
}
.list__item .more__btn {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
}
.list__item .more__btn:hover .arrow::before {
  width: 46px;
  height: 46px;
}
.list__item .more__btn p {
  font-size: 14px;
  color: #333;
  letter-spacing: 0.75px;
}
.list__item .more__btn .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 1px solid #de244a;
  position: relative;
  transition: all 0.2s;
}
.list__item .more__btn .arrow::before {
  transition: all 0.2s;
  background-color: #de244a;
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}
.list__item .more__btn .arrow img {
  width: 16px !important;
  position: relative;
}

.occupation__list {
  align-items: center;
  gap: 12px;
  padding: 20px 40px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .occupation__list {
    gap: 12px 16px;
    padding: 0px;
    padding-top: 12px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.occupation__list .occupation__item {
  cursor: pointer;
  height: 48px;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  letter-spacing: 0.8px;
  transition: all 0.3s;
  border: none;
  border-radius: 8px;
  box-shadow: 0 0 4px 0 rgba(29, 32, 49, 0.15);
}
@media screen and (max-width: 600px) and (min-width:360px) {
  .occupation__list .occupation__item {
    font-size: 14px;
  }
}
.occupation__list .occupation__item:hover {
  background-color: #ededed;
}
.occupation__list .occupation__item.active {
  background-color: #888888;
  color: #fff;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 84px;
}
.pagination .page-numbers {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-family: "futura-pt", sans-serif;
  font-size: 15px;
  font-weight: 500;
}
.pagination .page-numbers.current, .pagination .page-numbers:hover {
  background: #e83c5c;
  color: #fff;
}/*# sourceMappingURL=project.css.map */