#index-main {
  padding-top: 100px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1280px) {
  #index-main {
    padding-top: 60px;
  }
}

.index-hero {
  padding-top: 64px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 1280px) {
  .index-hero {
    padding-top: 48px;
  }
}
@media (max-width: 768px) {
  .index-hero {
    padding-top: 36px;
  }
}
.index-hero .container {
  width: 95%;
  height: auto;
  max-width: 1880px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.index-hero .container .hero-head {
  width: 100%;
  height: auto;
  max-width: 1720px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 36px;
}
@media (max-width: 1280px) {
  .index-hero .container .hero-head {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .index-hero .container .hero-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.index-hero .container .hero-head .subject {
  flex: 0 0 50%;
  font-size: 70px;
  font-weight: 300;
  line-height: 1.2;
  word-break: keep-all;
  color: black;
}
@media (max-width: 1620px) {
  .index-hero .container .hero-head .subject {
    font-size: 56px;
  }
}
@media (max-width: 1280px) {
  .index-hero .container .hero-head .subject {
    flex: 0 0 45%;
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .index-hero .container .hero-head .subject {
    flex: unset;
    width: 100%;
    font-size: 28px;
  }
}
.index-hero .container .hero-head .subject > em {
  font-weight: 800;
}
.index-hero .container .hero-head .desc {
  flex: 1 1 auto;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  word-break: keep-all;
  color: black;
}
@media (max-width: 1620px) {
  .index-hero .container .hero-head .desc .m-disable {
    display: none;
  }
}
@media (max-width: 1280px) {
  .index-hero .container .hero-head .desc {
    font-size: 16px;
  }
}
.index-hero .container .hero-head > a {
  flex: 0 0 auto;
  width: 80px;
  height: auto;
  display: flex;
  transition: all 0.2s ease-in-out;
}
.index-hero .container .hero-head > a:hover img:nth-child(1) {
  display: none;
}
.index-hero .container .hero-head > a:hover img:nth-child(2) {
  display: block;
}
@media (max-width: 1280px) {
  .index-hero .container .hero-head > a {
    width: 52px;
  }
}
.index-hero .container .hero-head > a > img {
  width: 100%;
  height: auto;
}
.index-hero .container .hero-head > a > img:nth-child(2) {
  display: none;
}
.index-hero .container .hero-body {
  position: relative;
  width: 100%;
  height: 600px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 36px;
}
@media (max-width: 1280px) {
  .index-hero .container .hero-body {
    height: 520px;
    border-radius: 24px;
  }
}
@media (max-width: 768px) {
  .index-hero .container .hero-body {
    height: 400px;
    border-radius: 16px;
  }
}
.index-hero .container .hero-body > h1 {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  width: 90%;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.2;
  word-break: keep-all;
  text-align: center;
  color: white;
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.8);
}
@media (max-width: 1620px) {
  .index-hero .container .hero-body > h1 {
    font-size: 48px;
  }
}
@media (max-width: 1280px) {
  .index-hero .container .hero-body > h1 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .index-hero .container .hero-body > h1 {
    font-size: 32px;
  }
}
@media (max-width: 540px) {
  .index-hero .container .hero-body > h1 {
    font-size: 24px;
  }
}
.index-hero .container .hero-body .animation-circle {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  width: 170px;
  height: 170px;
  border-radius: 1000000rem;
  background: linear-gradient(45deg, #262626, #8E86B5);
}
@media (max-width: 1280px) {
  .index-hero .container .hero-body .animation-circle {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 768px) {
  .index-hero .container .hero-body .animation-circle {
    bottom: 20px;
    width: 80px;
    height: 80px;
  }
}
.index-hero .container .hero-body .animation-circle > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  animation-name: textAnim;
  animation-direction: forwards;
  animation-duration: 10s;
  animation-timing-function: linear;
  animation-fill-mode: none;
  animation-iteration-count: infinite;
}
@keyframes textAnim {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.index-hero .container .hero-body .animation-circle > svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  height: 30%;
  fill: white;
}

.floating-banner {
  width: 100%;
  height: 100px;
  margin-bottom: 120px;
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}
@media (max-width: 1280px) {
  .floating-banner {
    height: 60px;
    margin-bottom: 70px;
  }
}
.floating-banner .banner-wrapper {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  animation-name: floatingAnim;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-duration: 30s;
}
.floating-banner .banner-wrapper .banner-list {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.floating-banner .banner-wrapper .banner-list .logo-box {
  width: auto;
  height: 52px;
  padding-right: 60px;
}
@media (max-width: 1280px) {
  .floating-banner .banner-wrapper .banner-list .logo-box {
    height: 32px;
    padding-right: 40px;
  }
}
.floating-banner .banner-wrapper .banner-list .logo-box > a {
  width: auto;
  height: 100%;
  display: flex;
  cursor: initial;
}
.floating-banner .banner-wrapper .banner-list .logo-box > a > img {
  width: auto;
  height: 100%;
}

@keyframes floatingAnim {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.un-official {
  width: 100%;
  height: auto;
  margin-bottom: 120px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 1280px) {
  .un-official {
    margin-bottom: 70px;
  }
}
.un-official .container {
  width: 95%;
  height: auto;
  max-width: 1640px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.un-official .container .title-wrap {
  width: 100%;
  height: auto;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1280px) {
  .un-official .container .title-wrap {
    margin-bottom: 48px;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .un-official .container .title-wrap {
    margin-bottom: 32px;
    gap: 12px;
  }
}
.un-official .container .title-wrap > h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 1280px) {
  .un-official .container .title-wrap > h1 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .un-official .container .title-wrap > h1 {
    font-size: 28px;
  }
}
.un-official .container .title-wrap > p {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  word-break: keep-all;
  text-align: center;
  color: black;
}
@media (max-width: 1280px) {
  .un-official .container .title-wrap > p {
    font-size: 16px;
  }
}
.un-official .container .expandable-cards {
  width: 100%;
  height: auto;
}
.un-official .container .expandable-cards > ul {
  width: 100%;
  height: 580px;
  display: flex;
  flex-direction: row;
  gap: 8px;
}
@media (max-width: 1280px) {
  .un-official .container .expandable-cards > ul {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .un-official .container .expandable-cards > ul {
    height: auto;
    flex-direction: column;
  }
}
.un-official .container .expandable-cards > ul > li {
  position: relative;
  flex: 1 1 10%;
  border-radius: 15px;
  background: white;
  overflow: hidden;
  transition: all 0.7s ease-in-out;
}
@media (max-width: 768px) {
  .un-official .container .expandable-cards > ul > li {
    flex: unset;
    width: 100%;
    height: 56px;
  }
}
.un-official .container .expandable-cards > ul > li .closed-cover {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 20px;
  background: rgba(124, 84, 242, 0.9);
  transition: all 0.7s ease-in-out;
}
@media (max-width: 1280px) {
  .un-official .container .expandable-cards > ul > li .closed-cover {
    padding: 0 16px;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .un-official .container .expandable-cards > ul > li .closed-cover {
    justify-content: flex-start;
  }
}
.un-official .container .expandable-cards > ul > li .closed-cover > b {
  transform: rotate(180deg);
  font-size: 28px;
  font-weight: 800;
  writing-mode: vertical-lr;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .un-official .container .expandable-cards > ul > li .closed-cover > b {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .un-official .container .expandable-cards > ul > li .closed-cover > b {
    transform: unset;
    writing-mode: lr;
  }
}
.un-official .container .expandable-cards > ul > li .main-contents {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.un-official .container .expandable-cards > ul > li .main-contents .inner {
  width: 100%;
  height: 100%;
  padding: 0 16px;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 44px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.7s ease-in-out;
}
@media (max-width: 1280px) {
  .un-official .container .expandable-cards > ul > li .main-contents .inner {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .un-official .container .expandable-cards > ul > li .main-contents .inner {
    gap: 20px;
  }
}
.un-official .container .expandable-cards > ul > li .main-contents .inner .name-wrap {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
@media (max-width: 1280px) {
  .un-official .container .expandable-cards > ul > li .main-contents .inner .name-wrap {
    gap: 10px;
  }
}
.un-official .container .expandable-cards > ul > li .main-contents .inner .name-wrap > h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 1280px) {
  .un-official .container .expandable-cards > ul > li .main-contents .inner .name-wrap > h1 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .un-official .container .expandable-cards > ul > li .main-contents .inner .name-wrap > h1 {
    font-size: 24px;
  }
}
.un-official .container .expandable-cards > ul > li .main-contents .inner .name-wrap > span {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 1280px) {
  .un-official .container .expandable-cards > ul > li .main-contents .inner .name-wrap > span {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .un-official .container .expandable-cards > ul > li .main-contents .inner .name-wrap > span {
    font-size: 16px;
  }
}
.un-official .container .expandable-cards > ul > li .main-contents .inner > a {
  width: 200px;
  height: 60px;
  padding: 0 10px 0 16px;
  background: black;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1280px) {
  .un-official .container .expandable-cards > ul > li .main-contents .inner > a {
    width: 120px;
    height: 48px;
  }
}
@media (max-width: 768px) {
  .un-official .container .expandable-cards > ul > li .main-contents .inner > a {
    height: 40px;
  }
}
.un-official .container .expandable-cards > ul > li .main-contents .inner > a > span {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
  transition: inherit;
}
@media (max-width: 1280px) {
  .un-official .container .expandable-cards > ul > li .main-contents .inner > a > span {
    font-size: 14px;
  }
}
.un-official .container .expandable-cards > ul > li .main-contents .inner > a > svg {
  width: 24px;
  height: 24px;
  fill: white;
  transition: inherit;
}
@media (max-width: 1280px) {
  .un-official .container .expandable-cards > ul > li .main-contents .inner > a > svg {
    width: 20px;
    height: 20px;
  }
}
.un-official .container .expandable-cards > ul > li .main-contents .inner > a:hover {
  background: #7C54F2;
}
.un-official .container .expandable-cards > ul > li.active {
  flex: 1 1 80%;
}
@media (max-width: 768px) {
  .un-official .container .expandable-cards > ul > li.active {
    flex: unset;
    height: 300px;
  }
}
.un-official .container .expandable-cards > ul > li.active .closed-cover {
  visibility: hidden;
  opacity: 0;
}
.un-official .container .expandable-cards > ul > li.active .main-contents .inner {
  visibility: visible;
  opacity: 1;
}

.jm-portfolio {
  width: 100%;
  height: auto;
  margin-bottom: 120px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 1280px) {
  .jm-portfolio {
    margin-bottom: 70px;
  }
}
.jm-portfolio .container {
  width: 95%;
  height: auto;
  padding-bottom: 120px;
  max-width: 1640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid #ddd;
}
@media (max-width: 1280px) {
  .jm-portfolio .container {
    padding-bottom: 70px;
  }
}
.jm-portfolio .container .title-wrap {
  width: 100%;
  height: auto;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1280px) {
  .jm-portfolio .container .title-wrap {
    margin-bottom: 48px;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .jm-portfolio .container .title-wrap {
    margin-bottom: 32px;
    gap: 12px;
  }
}
.jm-portfolio .container .title-wrap > h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 1280px) {
  .jm-portfolio .container .title-wrap > h1 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .jm-portfolio .container .title-wrap > h1 {
    font-size: 28px;
  }
}
.jm-portfolio .container .title-wrap > p {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  word-break: keep-all;
  text-align: center;
  color: black;
}
@media (max-width: 1280px) {
  .jm-portfolio .container .title-wrap > p {
    font-size: 16px;
  }
}
.jm-portfolio .container .pf-body {
  width: 90%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
@media (max-width: 1280px) {
  .jm-portfolio .container .pf-body {
    width: 100%;
    gap: 24px;
  }
}
.jm-portfolio .container .pf-body .pf-swiper-area {
  position: relative;
  width: 100%;
  padding: 0 110px;
}
@media (max-width: 1280px) {
  .jm-portfolio .container .pf-body .pf-swiper-area {
    padding: 0 80px;
  }
}
@media (max-width: 768px) {
  .jm-portfolio .container .pf-body .pf-swiper-area {
    padding: 0;
  }
}
.jm-portfolio .container .pf-body .pf-swiper-area .custom-navigation {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}
.jm-portfolio .container .pf-body .pf-swiper-area .custom-navigation div {
  width: 70px;
  height: 70px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #f0f0f0;
  border-radius: 10000rem;
  cursor: pointer;
}
@media (max-width: 1280px) {
  .jm-portfolio .container .pf-body .pf-swiper-area .custom-navigation div {
    width: 56px;
    height: 56px;
  }
}
@media (max-width: 768px) {
  .jm-portfolio .container .pf-body .pf-swiper-area .custom-navigation div {
    width: 52px;
    height: 52px;
  }
}
.jm-portfolio .container .pf-body .pf-swiper-area .custom-navigation div > svg {
  width: 70%;
  height: auto;
  fill: black;
}
@media (max-width: 1280px) {
  .jm-portfolio .container .pf-body .pf-swiper-area .custom-navigation div > svg {
    width: 60%;
  }
}
.jm-portfolio .container .pf-body .pf-swiper-area .web-window {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  border: 2px solid #f0f0f0;
  border-radius: 20px;
}
.jm-portfolio .container .pf-body .pf-swiper-area .web-window .web-head {
  position: relative;
  width: 100%;
  height: 64px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid #f0f0f0;
}
@media (max-width: 1280px) {
  .jm-portfolio .container .pf-body .pf-swiper-area .web-window .web-head {
    height: 52px;
  }
}
@media (max-width: 768px) {
  .jm-portfolio .container .pf-body .pf-swiper-area .web-window .web-head {
    height: 48px;
  }
}
.jm-portfolio .container .pf-body .pf-swiper-area .web-window .web-head .web-buttons {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.jm-portfolio .container .pf-body .pf-swiper-area .web-window .web-head .web-buttons > img {
  flex: 0 0 auto;
  width: 32px;
  height: auto;
}
.jm-portfolio .container .pf-body .pf-swiper-area .web-window .web-head > b {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  color: black;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 1280px) {
  .jm-portfolio .container .pf-body .pf-swiper-area .web-window .web-head > b {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .jm-portfolio .container .pf-body .pf-swiper-area .web-window .web-head > b {
    font-size: 16px;
  }
}
.jm-portfolio .container .pf-body .pf-swiper-area .web-window .web-body {
  width: 100%;
  height: auto;
  padding: 24px 32px 32px;
}
@media (max-width: 1280px) {
  .jm-portfolio .container .pf-body .pf-swiper-area .web-window .web-body {
    padding: 16px 24px 24px;
  }
}
@media (max-width: 768px) {
  .jm-portfolio .container .pf-body .pf-swiper-area .web-window .web-body {
    padding: 16px;
  }
}
.jm-portfolio .container .pf-body .pf-swiper-area .web-window .web-body .pf-swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.jm-portfolio .container .pf-body .pf-swiper-area .web-window .web-body .pf-swiper .swiper-wrapper {
  width: 100%;
  height: auto;
}
.jm-portfolio .container .pf-body .pf-swiper-area .web-window .web-body .pf-swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: auto;
}
.jm-portfolio .container .pf-body .pf-swiper-area .web-window .web-body .pf-swiper .swiper-wrapper .swiper-slide > a {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.jm-portfolio .container .pf-body .pf-swiper-area .web-window .web-body .pf-swiper .swiper-wrapper .swiper-slide > a .web-image {
  position: relative;
  width: 100%;
  height: 460px;
  margin-bottom: 36px;
  border-radius: 24px;
  overflow: hidden;
}
@media (max-width: 1280px) {
  .jm-portfolio .container .pf-body .pf-swiper-area .web-window .web-body .pf-swiper .swiper-wrapper .swiper-slide > a .web-image {
    height: 380px;
    margin-bottom: 24px;
    border-radius: 16px;
  }
}
@media (max-width: 768px) {
  .jm-portfolio .container .pf-body .pf-swiper-area .web-window .web-body .pf-swiper .swiper-wrapper .swiper-slide > a .web-image {
    height: 320px;
    margin-bottom: 20px;
  }
}
.jm-portfolio .container .pf-body .pf-swiper-area .web-window .web-body .pf-swiper .swiper-wrapper .swiper-slide > a .web-image > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.jm-portfolio .container .pf-body .pf-swiper-area .web-window .web-body .pf-swiper .swiper-wrapper .swiper-slide > a .web-titles {
  width: 100%;
  height: auto;
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
@media (max-width: 1280px) {
  .jm-portfolio .container .pf-body .pf-swiper-area .web-window .web-body .pf-swiper .swiper-wrapper .swiper-slide > a .web-titles {
    margin-bottom: 20px;
    gap: 12px;
  }
}
.jm-portfolio .container .pf-body .pf-swiper-area .web-window .web-body .pf-swiper .swiper-wrapper .swiper-slide > a .web-titles > h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1280px) {
  .jm-portfolio .container .pf-body .pf-swiper-area .web-window .web-body .pf-swiper .swiper-wrapper .swiper-slide > a .web-titles > h3 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .jm-portfolio .container .pf-body .pf-swiper-area .web-window .web-body .pf-swiper .swiper-wrapper .swiper-slide > a .web-titles > h3 {
    font-size: 20px;
  }
}
.jm-portfolio .container .pf-body .pf-swiper-area .web-window .web-body .pf-swiper .swiper-wrapper .swiper-slide > a .web-titles > p {
  font-size: 18px;
  line-height: 1.2;
  word-break: keep-all;
  color: black;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1280px) {
  .jm-portfolio .container .pf-body .pf-swiper-area .web-window .web-body .pf-swiper .swiper-wrapper .swiper-slide > a .web-titles > p {
    font-size: 16px;
  }
}
.jm-portfolio .container .pf-body .pf-swiper-area .web-window .web-body .pf-swiper .swiper-wrapper .swiper-slide > a .date {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
  color: #464646;
  word-break: keep-all;
  text-align: center;
}
.jm-portfolio .container .pf-body > a {
  width: 240px;
  height: 64px;
  padding: 0 12px;
  border: 1px solid black;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  text-align: center;
  background: white;
}
.jm-portfolio .container .pf-body > a:hover {
  background: black;
  color: white;
}
@media (max-width: 1280px) {
  .jm-portfolio .container .pf-body > a {
    width: 180px;
    height: 48px;
    font-size: 18px;
  }
}

.network-latest {
  width: 100%;
  height: auto;
  margin-bottom: 120px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 1280px) {
  .network-latest {
    margin-bottom: 70px;
  }
}
.network-latest .container {
  width: 95%;
  height: auto;
  max-width: 1640px;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid #ddd;
}
@media (max-width: 1280px) {
  .network-latest .container {
    padding-bottom: 70px;
  }
}
.network-latest .container .title-wrap {
  width: 100%;
  height: auto;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1280px) {
  .network-latest .container .title-wrap {
    margin-bottom: 48px;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .network-latest .container .title-wrap {
    margin-bottom: 32px;
    gap: 12px;
  }
}
.network-latest .container .title-wrap > h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 1280px) {
  .network-latest .container .title-wrap > h1 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .network-latest .container .title-wrap > h1 {
    font-size: 28px;
  }
}
.network-latest .container .title-wrap > p {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  word-break: keep-all;
  text-align: center;
  color: black;
}
@media (max-width: 1280px) {
  .network-latest .container .title-wrap > p {
    font-size: 16px;
  }
}
.network-latest .container .latest-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1280px) {
  .network-latest .container .latest-wrapper {
    gap: 48px;
  }
}
.network-latest .container .latest-wrapper .latest-list {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.network-latest .container .latest-wrapper .latest-list .row {
  width: 100%;
  height: auto;
  opacity: 0.4;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1280px) {
  .network-latest .container .latest-wrapper .latest-list .row {
    opacity: 1;
  }
}
.network-latest .container .latest-wrapper .latest-list .row:hover {
  opacity: 1;
}
.network-latest .container .latest-wrapper .latest-list .row:hover > a {
  border-color: #ddd;
}
.network-latest .container .latest-wrapper .latest-list .row > a {
  width: 100%;
  height: 100px;
  padding: 0 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  border: 3px solid #ddd;
  border-color: transparent;
  border-radius: 20px;
  background: white;
}
@media (max-width: 1280px) {
  .network-latest .container .latest-wrapper .latest-list .row > a {
    padding: 0 24px;
    gap: 20px;
    border-color: #ddd;
  }
}
@media (max-width: 768px) {
  .network-latest .container .latest-wrapper .latest-list .row > a {
    height: auto;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.network-latest .container .latest-wrapper .latest-list .row > a .cate {
  flex: 0 0 300px;
  height: 44px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
  text-align: center;
  border-radius: 10000rem;
  background: black;
}
@media (max-width: 1280px) {
  .network-latest .container .latest-wrapper .latest-list .row > a .cate {
    flex: 0 0 240px;
    height: 36px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .network-latest .container .latest-wrapper .latest-list .row > a .cate {
    flex: unset;
    height: 28px;
    padding: 0 12px;
    font-size: 13px;
  }
}
.network-latest .container .latest-wrapper .latest-list .row > a .title {
  flex: 1 1 auto;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1280px) {
  .network-latest .container .latest-wrapper .latest-list .row > a .title {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .network-latest .container .latest-wrapper .latest-list .row > a .title {
    flex: unset;
    font-size: 16px;
  }
}
.network-latest .container .latest-wrapper .latest-list .row > a .period {
  flex: 0 0 230px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1280px) {
  .network-latest .container .latest-wrapper .latest-list .row > a .period {
    flex: 0 0 210px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .network-latest .container .latest-wrapper .latest-list .row > a .period {
    flex: unset;
  }
}
.network-latest .container .latest-wrapper .latest-list .row > a .content {
  flex: 1 1 20%;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1280px) {
  .network-latest .container .latest-wrapper .latest-list .row > a .content {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .network-latest .container .latest-wrapper .latest-list .row > a .content {
    flex: unset;
    font-size: 16px;
  }
}
.network-latest .container .latest-wrapper .latest-list .row > a .status {
  flex: 0 0 100px;
  height: 44px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 2px solid transparent;
  border-radius: 100000rem;
  background: #E66D6D;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
  color: white;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .network-latest .container .latest-wrapper .latest-list .row > a .status {
    flex: 0 0 80px;
    height: 36px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .network-latest .container .latest-wrapper .latest-list .row > a .status {
    flex: unset;
    padding: 0 12px;
    height: 28px;
    font-size: 13px;
  }
}
.network-latest .container .latest-wrapper .latest-list .row > a .status.done {
  border-color: black;
  background: white;
  color: black;
}
.network-latest .container .latest-wrapper > a {
  width: 240px;
  height: 64px;
  padding: 0 12px;
  border: 1px solid black;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  text-align: center;
  background: white;
}
.network-latest .container .latest-wrapper > a:hover {
  background: black;
  color: white;
}
@media (max-width: 1280px) {
  .network-latest .container .latest-wrapper > a {
    width: 180px;
    height: 48px;
    font-size: 18px;
  }
}

.join-us {
  width: 100%;
  height: auto;
  margin-bottom: 120px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 1280px) {
  .join-us {
    margin-bottom: 70px;
  }
}
.join-us .container {
  width: 95%;
  height: auto;
  max-width: 1640px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 100px;
}
@media (max-width: 1280px) {
  .join-us .container {
    gap: 28px;
  }
}
@media (max-width: 768px) {
  .join-us .container {
    flex-direction: column;
    align-items: center;
  }
}
.join-us .container .left, .join-us .container .right {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .join-us .container .left, .join-us .container .right {
    flex: unset;
    width: 100%;
    height: auto;
  }
}
.join-us .container .left .title-wrap, .join-us .container .right .title-wrap {
  width: 100%;
  height: auto;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 1280px) {
  .join-us .container .left .title-wrap, .join-us .container .right .title-wrap {
    margin-bottom: 48px;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .join-us .container .left .title-wrap, .join-us .container .right .title-wrap {
    margin-bottom: 32px;
    gap: 12px;
  }
}
.join-us .container .left .title-wrap > h1, .join-us .container .right .title-wrap > h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  text-align: left;
}
@media (max-width: 1280px) {
  .join-us .container .left .title-wrap > h1, .join-us .container .right .title-wrap > h1 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .join-us .container .left .title-wrap > h1, .join-us .container .right .title-wrap > h1 {
    font-size: 28px;
  }
}
.join-us .container .left .title-wrap > p, .join-us .container .right .title-wrap > p {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  word-break: keep-all;
  text-align: left;
  color: black;
}
@media (max-width: 1280px) {
  .join-us .container .left .title-wrap > p, .join-us .container .right .title-wrap > p {
    font-size: 16px;
  }
}
.join-us .container .left .index-form, .join-us .container .right .index-form {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: flex-start;
  gap: 20px 16px;
}
@media (max-width: 1280px) {
  .join-us .container .left .index-form, .join-us .container .right .index-form {
    gap: 16px 12px;
  }
}
@media (max-width: 768px) {
  .join-us .container .left .index-form, .join-us .container .right .index-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.join-us .container .left .index-form > label, .join-us .container .right .index-form > label {
  position: relative;
  width: 100%;
  height: auto;
  padding: 16px 0 0 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #2D2D2D;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .join-us .container .left .index-form > label, .join-us .container .right .index-form > label {
    padding: 12px 0 0 16px;
    font-size: 18px;
  }
}
.join-us .container .left .index-form > label::before, .join-us .container .right .index-form > label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-60%);
  width: 10px;
  height: 10px;
  background: #7C54F2;
  border-radius: 10000rem;
}
@media (max-width: 1280px) {
  .join-us .container .left .index-form > label::before, .join-us .container .right .index-form > label::before {
    width: 8px;
    height: 8px;
  }
}
.join-us .container .left .index-form input[type=text], .join-us .container .right .index-form input[type=text] {
  width: 100%;
  height: 60px;
  padding: 0 16px;
  border: 2px solid #ddd;
  border-radius: 12px;
  background: white;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .join-us .container .left .index-form input[type=text], .join-us .container .right .index-form input[type=text] {
    height: 48px;
    padding: 0 12px;
    font-size: 16px;
  }
}
.join-us .container .left .index-form input[type=text]::-moz-placeholder, .join-us .container .right .index-form input[type=text]::-moz-placeholder {
  color: #707070;
}
.join-us .container .left .index-form input[type=text]::placeholder, .join-us .container .right .index-form input[type=text]::placeholder {
  color: #707070;
}
.join-us .container .left .index-form textarea, .join-us .container .right .index-form textarea {
  width: 100%;
  height: auto;
  padding: 16px;
  border: 2px solid #ddd;
  border-radius: 12px;
  background: white;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  resize: none;
}
@media (max-width: 1280px) {
  .join-us .container .left .index-form textarea, .join-us .container .right .index-form textarea {
    padding: 12px;
    font-size: 16px;
  }
}
.join-us .container .left .index-form textarea::-moz-placeholder, .join-us .container .right .index-form textarea::-moz-placeholder {
  color: #707070;
}
.join-us .container .left .index-form textarea::placeholder, .join-us .container .right .index-form textarea::placeholder {
  color: #707070;
}
.join-us .container .left .index-form button, .join-us .container .right .index-form button {
  width: 360px;
  height: 70px;
  padding: 0 16px;
  background: #7C54F2;
  border: none;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 1280px) {
  .join-us .container .left .index-form button, .join-us .container .right .index-form button {
    width: 240px;
    height: 52px;
    font-size: 18px;
  }
}
.join-us .container .left .contact-group, .join-us .container .right .contact-group {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.join-us .container .left .contact-group .box, .join-us .container .right .contact-group .box {
  width: 100%;
  height: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border: 2px solid #ddd;
  border-radius: 16px;
  background: white;
}
@media (max-width: 1280px) {
  .join-us .container .left .contact-group .box, .join-us .container .right .contact-group .box {
    padding: 16px;
    gap: 16px;
  }
}
.join-us .container .left .contact-group .box .name-wrap, .join-us .container .right .contact-group .box .name-wrap {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1280px) {
  .join-us .container .left .contact-group .box .name-wrap, .join-us .container .right .contact-group .box .name-wrap {
    gap: 6px;
  }
}
.join-us .container .left .contact-group .box .name-wrap > b, .join-us .container .right .contact-group .box .name-wrap > b {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 1280px) {
  .join-us .container .left .contact-group .box .name-wrap > b, .join-us .container .right .contact-group .box .name-wrap > b {
    font-size: 20px;
  }
}
.join-us .container .left .contact-group .box .name-wrap > p, .join-us .container .right .contact-group .box .name-wrap > p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  word-break: keep-all;
  color: #464646;
  text-align: center;
}
@media (max-width: 1280px) {
  .join-us .container .left .contact-group .box .name-wrap > p, .join-us .container .right .contact-group .box .name-wrap > p {
    font-size: 14px;
  }
}
.join-us .container .left .contact-group .box .contacts, .join-us .container .right .contact-group .box .contacts {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.join-us .container .left .contact-group .box .contacts .item, .join-us .container .right .contact-group .box .contacts .item {
  flex: 0 0 auto;
  padding: 6px 16px;
  background: #f0f0f0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
@media (max-width: 1280px) {
  .join-us .container .left .contact-group .box .contacts .item, .join-us .container .right .contact-group .box .contacts .item {
    padding: 5px 12px;
    gap: 6px;
  }
}
.join-us .container .left .contact-group .box .contacts .item > svg, .join-us .container .right .contact-group .box .contacts .item > svg {
  flex: 0 0 auto;
  width: 28px;
  height: auto;
  fill: black;
}
@media (max-width: 1280px) {
  .join-us .container .left .contact-group .box .contacts .item > svg, .join-us .container .right .contact-group .box .contacts .item > svg {
    width: 24px;
  }
}
.join-us .container .left .contact-group .box .contacts .item > p, .join-us .container .right .contact-group .box .contacts .item > p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .join-us .container .left .contact-group .box .contacts .item > p, .join-us .container .right .contact-group .box .contacts .item > p {
    font-size: 14px;
  }
}/*# sourceMappingURL=main.css.map */