@charset "UTF-8";
/****** global BOF *****/
/*
Gridの定義
-
この変数は_frame.scssやその他すべてのscssファイルでも使用
*/
/*
    例：
    @media screen and (min-width: g.$window-max-width) {
      width: calc(g.column(12, pc, g.$window-margin-right-pc));
    }
*/
/*
Column計算の関数
-
上記のGridの定義をもとにカラムの幅を割り出す関数
-
第一引数：カラム数
第二引数：デバイス（pc/sp）
第三引数：追加の数値指定（デフォルト値:0／任意）
-
ex.
width: g.column(2, sp); // SPの2カラム分の幅
width: g.column(8, pc); // PCの8カラム分の幅
width: g.column(8, pc, 6rem); // PCの8カラム分の幅 + 6rem
width: g.column(8, pc, -6rem); // PCの8カラム分の幅 - 6rem
width: g.column(8, pc, $column-margin-right-pc); // PCの8カラム分の幅 + ウインドウ右端からのマージン
*/
.layoutGrid {
  display: grid;
  display: none;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 10000;
  pointer-events: none;
  gap: 2rem;
  grid-template-columns: repeat(12, 1fr);
  width: calc(100vw - 4.2rem - 4.2rem - 0px);
  max-width: calc(1680px - 4.2rem - 4.2rem);
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .layoutGrid {
    gap: 2rem;
    grid-template-columns: repeat(10, 1fr);
    width: calc(100vw - 4.2rem - 4.2rem);
    max-width: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

.layoutGrid__item {
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.4);
  border-width: 0 1px;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .layoutGrid__item {
    background: rgba(255, 0, 0, 0.06);
    border: 1px solid rgba(255, 0, 0, 0.1);
  }
}

@media screen and (orientation: landscape) and (max-width: 767px), screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pc {
    display: none;
  }
}

@media screen and (orientation: portrait) and (max-width: 767px) {
  .sp {
    display: block;
  }
}
@media screen and (orientation: landscape) and (max-width: 767px), screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

/****** global EOF *****/
/****** global BOF *****/
html {
  font-size: 10px;
  font-size: 2.6666666667vw;
  letter-spacing: 0.02em;
  line-height: 1.9;
  scroll-behavior: auto !important;
}
@media screen and (orientation: landscape) and (max-width: 767px), screen and (min-width: 768px) {
  html {
    font-size: 0.6944444444vw;
    letter-spacing: 0.02em;
    line-height: 2;
  }
}
@media screen and (min-width: 1680px) {
  html {
    font-size: 11.6666666667px;
  }
}

body {
  overscroll-behavior: none;
  width: 100%;
}

.c-frame {
  width: calc(100vw - 4.2rem - 4.2rem - 0px);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (orientation: landscape) and (max-width: 767px), screen and (min-width: 768px) {
  .c-frame {
    width: calc(100vw - 4.2rem - 4.2rem - 0px);
    padding-left: 4.2rem;
    padding-right: 4.2rem;
  }
}

.c-frameTight {
  width: calc((100vw - 4.2rem - 4.2rem - 2rem * (10 - 1)) / 10 * 10 + 2rem * (10 - 1) + 0px);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (orientation: landscape) and (max-width: 767px), screen and (min-width: 768px) {
  .c-frameTight {
    width: calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 16 + 2rem * (16 - 1) + 0px);
    margin-left: auto;
    margin-right: auto;
  }
}

/****** global BOF *****/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 11rem;
  z-index: 6000;
  transition: transform 0.3s cubic-bezier(0.43, 0.05, 0.17, 1);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .site-header {
    height: 6.9rem;
  }
}
.site-header.is-hidden {
  transform: translateY(-100%);
}
.site-header .site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 4.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .site-header .site-header__inner {
    padding: 0 4.2rem;
  }
}
.site-header .site-header__logo {
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.36, 0, 0, 1);
  width: 10rem;
  display: flex;
}
.site-header .site-header__logo a {
  display: block;
}
.site-header .site-header__logo img {
  width: 100%;
  vertical-align: bottom;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .site-header .site-header__logo img {
    height: 2rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .site-header .site-header__logo.is-open {
    transform: translateX(9rem);
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .site-header .site-header__nav--pc {
    display: none;
  }
}
.site-header .site-header__menu {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .site-header__menu-item a {
  display: block;
  color: #111111;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s cubic-bezier(0.26, 0.06, 0, 1);
}
.site-header .site-header__menu-item a:hover {
  color: #3C37FF;
}
.site-header .site-header__menu-item.site-header__menu-item--pill a {
  padding: 0 1.2rem;
  background-color: #3C37FF;
  color: #fff;
  border-radius: 0.6rem;
  transition: background-color 0.3s ease;
  font-size: 1rem;
}
.site-header .site-header__menu-item.site-header__menu-item--pill a:hover {
  background-color: #0052cc;
  color: #fff;
}

.hamburger {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  background: #3C37FF;
  border: none;
  cursor: pointer;
  padding: 0;
  position: fixed;
  right: 4.2rem;
  top: 2rem;
  z-index: 6000;
  border-radius: 0.3rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
  }
}
.hamburger .hamburger__line {
  display: block;
  width: 1.5rem;
  height: 0.15rem;
  background-color: #ffffff;
  transition: all 0.3s cubic-bezier(0.43, 0.05, 0.17, 1);
  transform-origin: center;
}
.hamburger.is-active .hamburger__line:nth-child(1) {
  transform: translateY(0.55rem) rotate(45deg);
}
.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active .hamburger__line:nth-child(3) {
  transform: translateY(-0.55rem) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: calc((100vw - 4.2rem - 4.2rem - 2rem * (10 - 1)) / 10 * 8 + 2rem * (8 - 1) + 0px + 4.2rem);
  height: 100vh;
  background-color: #fff;
  z-index: 3000;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.36, 0, 0, 1), visibility 0.3s;
}
.mobile-menu::before {
  content: "";
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  transform: translateX(-100%);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.36, 0, 0, 1), visibility 0.3s;
}
@media screen and (orientation: landscape) and (max-width: 767px), screen and (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu.is-open {
  visibility: visible;
  transform: translateX(0);
}
.mobile-menu.is-open::before {
  visibility: visible;
  opacity: 1;
}
.mobile-menu .mobile-menu__nav {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
  margin: 10rem 0;
  padding: 0 5rem;
}
.mobile-menu .mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1.8rem;
}
.mobile-menu .mobile-menu__item a {
  display: block;
  color: #111111;
  text-decoration: none;
  font-size: 1.6rem;
  transition: color 0.3s cubic-bezier(0.26, 0.06, 0, 1);
}
.mobile-menu .mobile-menu__item a:active {
  color: #3C37FF;
}
.mobile-menu .mobile-menu__item.mobile-menu__item--pill a {
  background-color: #3C37FF;
  color: #fff;
  font-size: 1.4rem;
  padding: 0.2rem 1.2rem;
  border-radius: 0.6rem;
  margin-top: 0.5rem;
}
.mobile-menu .mobile-menu__item.mobile-menu__item--pill a:active {
  background-color: #0052cc;
  color: #fff;
}

/****** global BOF *****/
.site-footer {
  width: 100%;
  border-top: 0.1rem solid #3C37FF;
  padding: 2.3rem 4.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .site-footer {
    padding: 7.2rem 4.2rem;
  }
}
.site-footer .site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .site-footer .site-footer__inner {
    width: calc((100vw - 4.2rem - 4.2rem - 2rem * (10 - 1)) / 10 * 10 + 2rem * (10 - 1) + 0px);
    margin: 0 auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 5rem;
  }
}
.site-footer .site-footer__logo {
  flex-shrink: 0;
  width: 10rem;
}
.site-footer .site-footer__logo a {
  display: flex;
  align-items: center;
}
.site-footer .site-footer__logo img {
  width: 100%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .site-footer .site-footer__nav--pc {
    display: none;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .site-footer .site-footer__nav {
    width: 100%;
  }
}
.site-footer .site-footer__menu {
  display: flex;
  align-items: center;
  gap: 3.3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .site-footer .site-footer__menu {
    flex-direction: column;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 2rem;
  }
}
.site-footer .site-footer__menu-item a {
  display: block;
  color: #111111;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s cubic-bezier(0.26, 0.06, 0, 1);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .site-footer .site-footer__menu-item a {
    font-size: 1.5rem;
  }
}
.site-footer .site-footer__menu-item a:hover {
  color: #3C37FF;
}
.site-footer .site-footer__menu-item.site-footer__menu-item--pill a {
  padding: 0 1.2rem;
  background-color: #3C37FF;
  color: #fff;
  border-radius: 0.6rem;
  transition: background-color 0.3s ease;
  font-size: 1rem;
}
.site-footer .site-footer__menu-item.site-footer__menu-item--pill a:hover {
  background-color: #0052cc;
  color: #fff;
}

/****** global BOF *****/
/****** global BOF *****/
.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 3.3rem;
  background-color: #3C37FF;
  color: #fff;
  border-radius: 3.2rem;
  border: 1px solid transparent;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  font-size: 1.1rem;
  font-size: 500;
  text-decoration: none;
  gap: 0.6rem;
}
.c-button svg {
  transform: rotate(90deg);
  width: 0.6rem;
  height: 0.5rem;
  transition: transform 0.3s ease;
}
.c-button svg * {
  fill: white;
  transition: fill 0.3s ease;
}
.c-button:hover {
  background-color: #fff;
  color: #3C37FF;
  border-color: #3C37FF;
}
.c-button:hover svg {
  transform: rotate(90deg) translateY(-0.5rem);
}
.c-button:hover svg * {
  fill: #3C37FF;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-button {
    padding: 0.5rem 3.2rem;
    font-size: 1.1rem;
  }
}

.c-header {
  font-size: 4rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 500;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-header {
    font-size: 3rem;
    gap: 1.2rem;
  }
}
.c-header::before {
  content: "";
  display: block;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background-color: #3C37FF;
  flex-grow: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-header::before {
    width: 0.8rem;
    height: 0.8rem;
  }
}

.page-heading {
  margin-top: 18rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-heading {
    margin-top: 19rem;
  }
}
.page-heading .page-heading__title {
  font-size: 6.4rem;
  font-weight: 500;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-heading .page-heading__title {
    font-size: 3.9rem;
  }
}

/****** global EOF *****/
/****** global BOF *****/
/****** global BOF *****/
html {
  width: 100%;
  font-family: avenir-next-lt-pro, source-han-sans-japanese, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
}

.content-margin {
  margin-top: 10rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .content-margin {
    margin-top: 4rem;
  }
}

.contact .contact__wrapper {
  width: 100%;
  aspect-ratio: 1440/983;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7rem;
  color: #3C37FF;
  font-weight: 500;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .contact .contact__wrapper {
    gap: 2.4rem;
    padding: 4rem 2rem;
    aspect-ratio: auto;
    aspect-ratio: 375/375;
  }
}
.contact .contact__wrapper .contact__wrapperText {
  font-size: 16rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .contact .contact__wrapper .contact__wrapperText {
    font-size: 5.5rem;
  }
}
.contact .contact__wrapper svg {
  width: auto;
  height: 23rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .contact .contact__wrapper svg {
    height: 7.2rem;
  }
}

.post-type-archive.post-type-archive-creators .list, .post-type-archive.post-type-archive-solutions .list {
  display: grid;
  grid-template-columns: calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 5 + 2rem * (5 - 1) + 0px) calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 11 + 2rem * (11 - 1) + 0px);
  gap: 2rem;
  align-items: start;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .post-type-archive.post-type-archive-creators .list, .post-type-archive.post-type-archive-solutions .list {
    grid-template-columns: calc((100vw - 4.2rem - 4.2rem - 2rem * (10 - 1)) / 10 * 10 + 2rem * (10 - 1) + 0px);
    gap: 9rem;
  }
}
.post-type-archive.post-type-archive-creators .list .list__type, .post-type-archive.post-type-archive-solutions .list .list__type {
  display: grid;
  grid-template-columns: auto;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .post-type-archive.post-type-archive-creators .list .list__type, .post-type-archive.post-type-archive-solutions .list .list__type {
    grid-template-columns: 1fr 1fr;
    gap: 3.2rem 2rem;
  }
}
.post-type-archive.post-type-archive-creators .list .list__type .list__typeItem, .post-type-archive.post-type-archive-solutions .list .list__type .list__typeItem {
  position: relative;
  padding-left: 2rem;
  font-size: 1.9rem;
  line-height: 1.2;
  font-weight: 500;
  text-align: left;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .post-type-archive.post-type-archive-creators .list .list__type .list__typeItem, .post-type-archive.post-type-archive-solutions .list .list__type .list__typeItem {
    font-size: 1.4rem;
  }
}
.post-type-archive.post-type-archive-creators .list .list__type .list__typeItem.active::before, .post-type-archive.post-type-archive-solutions .list .list__type .list__typeItem.active::before {
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #3C37FF;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.post-type-archive.post-type-archive-creators .list .list__grid, .post-type-archive.post-type-archive-solutions .list .list__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10rem 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .post-type-archive.post-type-archive-creators .list .list__grid, .post-type-archive.post-type-archive-solutions .list .list__grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}
.post-type-archive.post-type-archive-creators .list .list__grid .list__gridItem, .post-type-archive.post-type-archive-solutions .list .list__grid .list__gridItem {
  color: inherit;
}
.post-type-archive.post-type-archive-creators .list .list__grid .list__gridItem .list__gridItemImg, .post-type-archive.post-type-archive-solutions .list .list__grid .list__gridItem .list__gridItemImg {
  width: 100%;
  aspect-ratio: 226/317;
  background: rgba(0, 0, 0, 0.5);
  background: #f6f5ff;
  position: relative;
  overflow: hidden;
}
.post-type-archive.post-type-archive-creators .list .list__grid .list__gridItem .list__gridItemImg::before, .post-type-archive.post-type-archive-solutions .list .list__grid .list__gridItem .list__gridItemImg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 0rem solid white;
  transition: border-width 0.3s ease;
  pointer-events: none;
}
.post-type-archive.post-type-archive-creators .list .list__grid .list__gridItem .list__gridItemImg img, .post-type-archive.post-type-archive-solutions .list .list__grid .list__gridItem .list__gridItemImg img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  vertical-align: bottom;
}
.post-type-archive.post-type-archive-creators .list .list__grid .list__gridItem:hover .list__gridItemImg::before, .post-type-archive.post-type-archive-solutions .list .list__grid .list__gridItem:hover .list__gridItemImg::before {
  border-width: 1rem;
}
.post-type-archive.post-type-archive-creators .list .list__grid .list__gridItem .list__gridItemTitle, .post-type-archive.post-type-archive-solutions .list .list__grid .list__gridItem .list__gridItemTitle {
  margin-top: 2.2rem;
  font-size: 1.6rem;
  line-height: 1.2;
}
.post-type-archive.post-type-archive-creators .list .list__grid .list__gridItem .list__gridItemTags, .post-type-archive.post-type-archive-solutions .list .list__grid .list__gridItem .list__gridItemTags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1rem;
  margin-top: 1.4rem;
  line-height: 1.2;
  gap: 0.5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .post-type-archive.post-type-archive-creators .list .list__grid .list__gridItem .list__gridItemTags, .post-type-archive.post-type-archive-solutions .list .list__grid .list__gridItem .list__gridItemTags {
    margin-top: 1.2rem;
  }
}
.post-type-archive.post-type-archive-creators .list .list__grid .list__gridItem .list__gridItemTags .list__gridItemTagsItem, .post-type-archive.post-type-archive-solutions .list .list__grid .list__gridItem .list__gridItemTags .list__gridItemTagsItem {
  border: 0.1rem solid rgba(0, 0, 0, 0.5);
  color: rgba(0, 0, 0, 0.5);
  padding: 0.3rem 1rem;
  font-family: 1rem;
  border-radius: 3rem;
}
.post-type-archive.post-type-archive-creators .list .list__grid .pagination, .post-type-archive.post-type-archive-solutions .list .list__grid .pagination {
  grid-column: 1/-1;
}
.post-type-archive.post-type-archive-creators .list .list__grid .pagination .page-numbers, .post-type-archive.post-type-archive-solutions .list .list__grid .pagination .page-numbers {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  font-weight: 500;
  font-size: 1.6rem;
  list-style: none;
  color: rgba(0, 0, 0, 0.5);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .post-type-archive.post-type-archive-creators .list .list__grid .pagination .page-numbers, .post-type-archive.post-type-archive-solutions .list .list__grid .pagination .page-numbers {
    gap: 2.5rem;
    font-size: 1.5rem;
  }
}
.post-type-archive.post-type-archive-creators .list .list__grid .pagination .page-numbers .current, .post-type-archive.post-type-archive-solutions .list .list__grid .pagination .page-numbers .current {
  color: #3C37FF;
}

.single .detail,
.page .detail {
  display: grid;
  grid-template-columns: calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 9 + 2rem * (9 - 1) + 0px) calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 6 + 2rem * (6 - 1) + 0px);
  gap: calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 1 + 2rem * (1 - 1) + 0px + 4rem);
  align-items: start;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single .detail,
  .page .detail {
    grid-template-columns: calc((100vw - 4.2rem - 4.2rem - 2rem * (10 - 1)) / 10 * 10 + 2rem * (10 - 1) + 0px);
    gap: 9rem;
  }
}
.single .detail.detail--news, .single .detail.detail--recruit,
.page .detail.detail--news,
.page .detail.detail--recruit {
  grid-template-columns: calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 6 + 2rem * (6 - 1) + 0px) calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 8 + 2rem * (8 - 1) + 0px);
  gap: calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 2 + 2rem * (2 - 1) + 0px + 4rem);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single .detail.detail--news, .single .detail.detail--recruit,
  .page .detail.detail--news,
  .page .detail.detail--recruit {
    grid-template-columns: calc((100vw - 4.2rem - 4.2rem - 2rem * (10 - 1)) / 10 * 10 + 2rem * (10 - 1) + 0px);
    gap: 9rem;
  }
}
.single .detail.detail--news .detail__text, .single .detail.detail--recruit .detail__text,
.page .detail.detail--news .detail__text,
.page .detail.detail--recruit .detail__text {
  grid-column: 2/3;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single .detail.detail--news .detail__text, .single .detail.detail--recruit .detail__text,
  .page .detail.detail--news .detail__text,
  .page .detail.detail--recruit .detail__text {
    grid-column: 1/2;
  }
}
.single .detail.detail--news .detail__text .detail__textRow, .single .detail.detail--recruit .detail__text .detail__textRow,
.page .detail.detail--news .detail__text .detail__textRow,
.page .detail.detail--recruit .detail__text .detail__textRow {
  grid-template-columns: calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 2 + 2rem * (2 - 1) + 0px) calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 6 + 2rem * (6 - 1) + 0px + 2rem);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single .detail.detail--news .detail__text .detail__textRow, .single .detail.detail--recruit .detail__text .detail__textRow,
  .page .detail.detail--news .detail__text .detail__textRow,
  .page .detail.detail--recruit .detail__text .detail__textRow {
    width: calc((100vw - 4.2rem - 4.2rem - 2rem * (10 - 1)) / 10 * 9 + 2rem * (9 - 1) + 0px);
    grid-template-columns: 100%;
    margin-left: auto;
    gap: 2rem;
  }
}
.single .detail.detail--news .detail__text .detail__textRow .detail__textRowDescription--title, .single .detail.detail--recruit .detail__text .detail__textRow .detail__textRowDescription--title,
.page .detail.detail--news .detail__text .detail__textRow .detail__textRowDescription--title,
.page .detail.detail--recruit .detail__text .detail__textRow .detail__textRowDescription--title {
  font-size: 3.1rem;
}
.single .detail.detail--privacyPolicy,
.page .detail.detail--privacyPolicy {
  grid-template-columns: calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 4 + 2rem * (4 - 1) + 0px) calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 12 + 2rem * (12 - 1) + 0px);
  gap: 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single .detail.detail--privacyPolicy,
  .page .detail.detail--privacyPolicy {
    grid-template-columns: calc((100vw - 4.2rem - 4.2rem - 2rem * (10 - 1)) / 10 * 10 + 2rem * (10 - 1) + 0px);
    gap: 2rem;
  }
}
.single .detail.detail--privacyPolicy .detail__text,
.page .detail.detail--privacyPolicy .detail__text {
  grid-column: 2/3;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single .detail.detail--privacyPolicy .detail__text,
  .page .detail.detail--privacyPolicy .detail__text {
    grid-column: 1/2;
  }
}
.single .detail.detail--privacyPolicy .detail__text .detail__textRow,
.page .detail.detail--privacyPolicy .detail__text .detail__textRow {
  grid-template-columns: calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 4 + 2rem * (4 - 1) + 0px) calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 8 + 2rem * (8 - 1) + 0px);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single .detail.detail--privacyPolicy .detail__text .detail__textRow,
  .page .detail.detail--privacyPolicy .detail__text .detail__textRow {
    grid-template-columns: calc((100vw - 4.2rem - 4.2rem - 2rem * (10 - 1)) / 10 * 9 + 2rem * (9 - 1) + 0px);
    margin-left: auto;
    gap: 2rem;
  }
}
.single .detail.detail--privacyPolicy .detail__text .detail__textRow .detail__textRowHeading,
.page .detail.detail--privacyPolicy .detail__text .detail__textRow .detail__textRowHeading {
  text-indent: -1em;
  padding-left: 1.5em;
}
.single .detail.detail--privacyPolicy .detail__text .detail__textRow .detail__textRowHeading::before,
.page .detail.detail--privacyPolicy .detail__text .detail__textRow .detail__textRowHeading::before {
  display: none;
}
.single .detail .detail__images,
.page .detail .detail__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single .detail .detail__images,
  .page .detail .detail__images {
    gap: 1.5rem;
  }
}
.single .detail .detail__images .detail__imagesItem,
.page .detail .detail__images .detail__imagesItem {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  aspect-ratio: 3/2;
}
.single .detail .detail__images .detail__imagesItem .no-image,
.page .detail .detail__images .detail__imagesItem .no-image {
  border: 0.1rem solid #3C37FF;
}
.single .detail .detail__images .detail__imagesItem img,
.page .detail .detail__images .detail__imagesItem img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  vertical-align: bottom;
}
.single .detail .detail__images .detail__imagesItem--1,
.page .detail .detail__images .detail__imagesItem--1 {
  grid-column: 1/3;
}
.single .detail .detail__text,
.page .detail .detail__text {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single .detail .detail__text,
  .page .detail .detail__text {
    width: calc((100vw - 4.2rem - 4.2rem - 2rem * (10 - 1)) / 10 * 9 + 2rem * (9 - 1) + 0px);
    margin-left: auto;
    gap: 4.5rem;
  }
}
.single .detail .detail__text .detail__textSummary,
.page .detail .detail__text .detail__textSummary {
  margin-bottom: 6rem;
  font-size: 1.3rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single .detail .detail__text .detail__textSummary,
  .page .detail .detail__text .detail__textSummary {
    margin-bottom: 4.2rem;
    font-size: 1.2rem;
  }
}
.single .detail .detail__text .detail__textRow,
.page .detail .detail__text .detail__textRow {
  display: grid;
  grid-template-columns: calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 2 + 2rem * (2 - 1) + 0px) calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 4 + 2rem * (4 - 1) + 0px);
  align-items: start;
  gap: 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single .detail .detail__text .detail__textRow,
  .page .detail .detail__text .detail__textRow {
    grid-template-columns: 100%;
    gap: 2rem;
  }
}
.single .detail .detail__text .detail__textRow .detail__textRowHeading,
.page .detail .detail__text .detail__textRow .detail__textRowHeading {
  font-size: 1.5rem;
  font-weight: 500;
  color: #3C37FF;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.2;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single .detail .detail__text .detail__textRow .detail__textRowHeading,
  .page .detail .detail__text .detail__textRow .detail__textRowHeading {
    font-size: 1.3rem;
  }
}
.single .detail .detail__text .detail__textRow .detail__textRowHeading::before,
.page .detail .detail__text .detail__textRow .detail__textRowHeading::before {
  content: "";
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #3C37FF;
  flex-grow: 0;
}
.single .detail .detail__text .detail__textRow .detail__textRowDescription,
.page .detail .detail__text .detail__textRow .detail__textRowDescription {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 400;
  transform: translateY(-0.4em);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single .detail .detail__text .detail__textRow .detail__textRowDescription,
  .page .detail .detail__text .detail__textRow .detail__textRowDescription {
    font-size: 1.2rem;
  }
}
.single .detail .detail__text .detail__textRow .detail__textRowDescription ul,
.page .detail .detail__text .detail__textRow .detail__textRowDescription ul {
  list-style: none;
  margin-top: 1rem;
}
.single .detail .detail__text .detail__textRow .detail__textRowDescription ul li::before,
.page .detail .detail__text .detail__textRow .detail__textRowDescription ul li::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #111111;
  margin-right: 0.8rem;
  flex-grow: 0;
}
.single .detail .detail__text .detail__textRow--title .detail__textRowDescription,
.page .detail .detail__text .detail__textRow--title .detail__textRowDescription {
  grid-column: 1/3;
  font-size: 3.8rem;
  transform: translateY(-0.5em);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single .detail .detail__text .detail__textRow--title .detail__textRowDescription,
  .page .detail .detail__text .detail__textRow--title .detail__textRowDescription {
    grid-column: auto;
    font-size: 1.8rem;
    transform: translateY(0);
  }
}
.single .detail .detail__text .detail__textRow--name .detail__textRowDescription, .single .detail .detail__text .detail__textRow--solution .detail__textRowDescription,
.page .detail .detail__text .detail__textRow--name .detail__textRowDescription,
.page .detail .detail__text .detail__textRow--solution .detail__textRowDescription {
  grid-column: 1/3;
  font-size: 3.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single .detail .detail__text .detail__textRow--name .detail__textRowDescription, .single .detail .detail__text .detail__textRow--solution .detail__textRowDescription,
  .page .detail .detail__text .detail__textRow--name .detail__textRowDescription,
  .page .detail .detail__text .detail__textRow--solution .detail__textRowDescription {
    font-size: 2.4rem;
  }
}
.single .detail .detail__text .detail__link,
.page .detail .detail__text .detail__link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 6rem;
  padding: 1.5rem 1rem;
  background-color: #3C37FF;
  color: #fff;
  border-radius: 1rem;
  transition: background-color 0.3s ease;
  font-size: 1.3rem;
  font-size: 500;
  text-decoration: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single .detail .detail__text .detail__link,
  .page .detail .detail__text .detail__link {
    margin-top: 0rem;
    margin-left: auto;
    font-size: 1.2rem;
  }
}
.single .detail .detail__text .detail__link svg,
.page .detail .detail__text .detail__link svg {
  transform: rotate(90deg);
  width: 0.8rem;
  height: 0.9rem;
}
.single .detail .detail__text .detail__link svg *,
.page .detail .detail__text .detail__link svg * {
  fill: white;
}

.related {
  margin-top: 15.3rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .related {
    margin-top: 16rem;
  }
}
.related .related__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 6rem 2rem;
  margin-top: 0.8em;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .related .related__grid {
    grid-template-columns: 1fr;
    gap: 5rem;
    margin-top: 2em;
  }
}
.related .related__grid .related__gridItem {
  color: inherit;
}
.related .related__grid .related__gridItem .related__gridItemImg {
  width: 100%;
  aspect-ratio: 223/303;
  background: rgba(0, 0, 0, 0.5);
}
.related .related__grid .related__gridItem .related__gridItemImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
.related .related__grid .related__gridItem .related__gridItemTitle {
  margin-top: 2.5rem;
  font-size: 1.5rem;
  line-height: 1.2;
}
.related .related__grid .related__gridItem .related__gridItemTags {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.3rem;
  line-height: 1.2;
  gap: 0.5rem;
}
.related .related__grid .related__gridItem .related__gridItemTags .related__gridItemTagsItem {
  border: 0.1rem solid rgba(0, 0, 0, 0.5);
  color: rgba(0, 0, 0, 0.5);
  padding: 0.3rem 1rem;
  font-family: 1rem;
  border-radius: 3rem;
}
.related .related__grid .pagination {
  grid-column: 1/-1;
}
.related .related__grid .pagination .page-numbers {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  font-weight: 500;
  font-size: 1.6rem;
  list-style: none;
  color: rgba(0, 0, 0, 0.5);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .related .related__grid .pagination .page-numbers {
    gap: 2.5rem;
    font-size: 1.5rem;
  }
}
.related .related__grid .pagination .page-numbers .current {
  color: #3C37FF;
}

.toList {
  margin-top: 24.9rem;
  border-top: 0.2rem solid #3C37FF;
  border-bottom: 0.2rem solid #3C37FF;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .toList {
    margin-top: 12rem;
  }
}
.toList .toList__heading {
  color: #3C37FF;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  font-weight: 200;
  padding: 5.5rem 0;
  text-decoration: none;
  gap: 1.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .toList .toList__heading {
    font-size: 1.3rem;
    padding: 4.3rem 0;
  }
}
.toList .toList__heading svg {
  width: 1.2rem;
  height: 1.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .toList .toList__heading svg {
    width: 1.1rem;
    height: 1.1rem;
  }
}
.toList .toList__heading svg path {
  fill: #3C37FF;
}

/****** global BOF *****/
.post-type-archive.post-type-archive-services .list .list__grid .list__gridItem {
  display: grid;
  grid-template-columns: calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 6 + 2rem * (6 - 1) + 0px) calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 1.6 + 2rem * (1.6 - 1) + 0px) calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 3.4 + 2rem * (3.4 - 1) + 0px) calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 5 + 2rem * (5 - 1) + 0px);
  gap: 2rem;
  margin-bottom: 5.3rem;
  align-items: start;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .post-type-archive.post-type-archive-services .list .list__grid .list__gridItem {
    grid-template-columns: calc((100vw - 4.2rem - 4.2rem - 2rem * (10 - 1)) / 10 * 10 + 2rem * (10 - 1) + 0px);
    gap: 1.5rem;
    margin-bottom: 8rem;
  }
}
.post-type-archive.post-type-archive-services .list .list__grid .list__gridItem .list__gridItemImg {
  width: 100%;
  aspect-ratio: 255/149;
  background: #f6f5ff;
}
.post-type-archive.post-type-archive-services .list .list__grid .list__gridItem .list__gridItemImg img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  vertical-align: bottom;
}
.post-type-archive.post-type-archive-services .list .list__grid .list__gridItem .list__gridItemIndex {
  color: #3C37FF;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.2;
  transform: translateY(-0.2rem);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .post-type-archive.post-type-archive-services .list .list__grid .list__gridItem .list__gridItemIndex {
    margin-top: 2rem;
    transform: translateY(0);
  }
}
.post-type-archive.post-type-archive-services .list .list__grid .list__gridItem .list__gridItemIndex::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #3C37FF;
}
.post-type-archive.post-type-archive-services .list .list__grid .list__gridItem .list__gridItemTitle {
  font-size: 1.8rem;
  line-height: 1.2;
  transform: translateY(-0.2rem);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .post-type-archive.post-type-archive-services .list .list__grid .list__gridItem .list__gridItemTitle {
    transform: translateY(0);
  }
}
.post-type-archive.post-type-archive-services .list .list__grid .list__gridItem .list__gridItemDetail {
  transform: translateY(-0.5rem);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .post-type-archive.post-type-archive-services .list .list__grid .list__gridItem .list__gridItemDetail {
    margin-top: 1.5rem;
    transform: translateY(0);
  }
}
.post-type-archive.post-type-archive-services .list .list__grid .list__gridItem .list__gridItemDetail ul {
  list-style: none;
}
.post-type-archive.post-type-archive-services .list .list__grid .list__gridItem .list__gridItemDetail ul li {
  font-size: 1.2rem;
}
.post-type-archive.post-type-archive-services .list .list__grid .list__gridItem .list__gridItemDetail ul li::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #3C37FF;
  margin-right: 0.8rem;
}

/****** global BOF *****/
.related .related__grid {
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .related .related__grid {
    grid-template-columns: 1fr;
  }
}
.related .related__grid .related__gridItem .related__gridItemImg {
  aspect-ratio: 3/2;
}

/****** global BOF *****/
.post-type-archive.post-type-archive-solutions .list .list__grid {
  grid-template-columns: 1fr 1fr;
  gap: 7rem 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .post-type-archive.post-type-archive-solutions .list .list__grid {
    grid-template-columns: calc((100vw - 4.2rem - 4.2rem - 2rem * (10 - 1)) / 10 * 10 + 2rem * (10 - 1) + 0px);
    gap: 5rem;
  }
}
.post-type-archive.post-type-archive-solutions .list .list__grid .list__gridItem .list__gridItemImg {
  aspect-ratio: 355/209;
}

/****** global BOF *****/
.post-type-archive.post-type-archive-news .list .list__grid {
  width: calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 8 + 2rem * (8 - 1) + 0px);
  margin-left: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .post-type-archive.post-type-archive-news .list .list__grid {
    width: calc((100vw - 4.2rem - 4.2rem - 2rem * (10 - 1)) / 10 * 9 + 2rem * (9 - 1) + 0px);
    margin-left: auto;
  }
}
.post-type-archive.post-type-archive-news .list .list__grid .list__gridItem {
  color: inherit;
  display: grid;
  grid-template-columns: calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 2 + 2rem * (2 - 1) + 0px) calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 5 + 2rem * (5 - 1) + 0px) calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 1 + 2rem * (1 - 1) + 0px);
  gap: 2rem;
  margin-bottom: 1.7rem;
  align-items: center;
  padding: 1.5rem 0;
  transition: color 0.3s ease;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .post-type-archive.post-type-archive-news .list .list__grid .list__gridItem {
    grid-template-columns: calc((100vw - 4.2rem - 4.2rem - 2rem * (10 - 1)) / 10 * 8 + 2rem * (8 - 1) + 0px) calc((100vw - 4.2rem - 4.2rem - 2rem * (10 - 1)) / 10 * 1 + 2rem * (1 - 1) + 0px);
    gap: 1.1rem;
    margin-bottom: 2.5rem;
  }
}
.post-type-archive.post-type-archive-news .list .list__grid .list__gridItem:hover {
  color: rgba(0, 0, 0, 0.5);
}
.post-type-archive.post-type-archive-news .list .list__grid .list__gridItem:hover .list__gridItemIcon svg {
  transform: translateX(0.5rem);
}
.post-type-archive.post-type-archive-news .list .list__grid .list__gridItem .list__gridItemDate {
  font-size: 1.1rem;
}
.post-type-archive.post-type-archive-news .list .list__grid .list__gridItem .list__gridItemTitle {
  font-size: 1.3rem;
  line-height: 1.2;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .post-type-archive.post-type-archive-news .list .list__grid .list__gridItem .list__gridItemTitle {
    grid-column: 1/2;
  }
}
.post-type-archive.post-type-archive-news .list .list__grid .list__gridItem .list__gridItemIcon {
  width: 1.2rem;
  height: 1.2rem;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .post-type-archive.post-type-archive-news .list .list__grid .list__gridItem .list__gridItemIcon {
    grid-column: 2/3;
    grid-row: 1/3;
  }
}
.post-type-archive.post-type-archive-news .list .list__grid .list__gridItem .list__gridItemIcon svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.post-type-archive.post-type-archive-news .list .list__grid .list__gridItem .list__gridItemIcon svg path {
  fill: #3C37FF;
}
.post-type-archive.post-type-archive-news .list .list__grid .pagination {
  grid-column: 1/-1;
}
.post-type-archive.post-type-archive-news .list .list__grid .pagination .page-numbers {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  font-weight: 500;
  font-size: 1.6rem;
  list-style: none;
  color: rgba(0, 0, 0, 0.5);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .post-type-archive.post-type-archive-news .list .list__grid .pagination .page-numbers {
    gap: 2.5rem;
    font-size: 1.5rem;
  }
}
.post-type-archive.post-type-archive-news .list .list__grid .pagination .page-numbers .current {
  color: #3C37FF;
}

/****** global BOF *****/
.page .detail.detail--contact {
  display: block;
}
.page .detail.detail--contact header {
  display: none;
}
.page .detail.detail--contact .wpcf7 {
  width: calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 12 + 2rem * (12 - 1) + 0px);
  margin-left: auto;
  font-size: 1.2rem;
  font-weight: 500;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page .detail.detail--contact .wpcf7 {
    width: calc((100vw - 4.2rem - 4.2rem - 2rem * (10 - 1)) / 10 * 9 + 2rem * (9 - 1) + 0px);
    margin-left: auto;
    font-size: 1.1rem;
  }
}
.page .detail.detail--contact .wpcf7 .wpcf7-form > p > label {
  position: relative;
  display: grid;
  align-items: start;
  grid-template-columns: calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 2 + 2rem * (2 - 1) + 0px - 2rem) calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 2 + 2rem * (2 - 1) + 0px) calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 8 + 2rem * (8 - 1) + 0px);
  gap: 2rem;
  margin-top: 0;
  padding-left: 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page .detail.detail--contact .wpcf7 .wpcf7-form > p > label {
    grid-template-columns: auto 1fr;
    gap: 0.8rem 1.3em;
    margin-top: -0.5rem;
    padding-left: 1.5rem;
  }
}
.page .detail.detail--contact .wpcf7 .wpcf7-form > p > label::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #3C37FF;
  margin-right: 0.8rem;
  position: absolute;
  top: 0.7em;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page .detail.detail--contact .wpcf7 .wpcf7-form > p > label::before {
    width: 0.6rem;
    height: 0.6rem;
    top: 0.6em;
  }
}
.page .detail.detail--contact .wpcf7 .wpcf7-form > p > label > span {
  color: red;
}
.page .detail.detail--contact .wpcf7 .wpcf7-form > p > label > .wpcf7-form-control-wrap {
  grid-column: 3/4;
  grid-row: 1/2;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page .detail.detail--contact .wpcf7 .wpcf7-form > p > label > .wpcf7-form-control-wrap {
    width: calc(100% + 1.5rem);
    grid-column: 1/3;
    grid-row: 2/3;
    margin-left: -1.5rem;
  }
}
.page .detail.detail--contact .wpcf7 .wpcf7-form > p > label > .wpcf7-form-control-wrap input,
.page .detail.detail--contact .wpcf7 .wpcf7-form > p > label > .wpcf7-form-control-wrap textarea {
  display: block;
  width: 100%;
  background: rgba(0, 52, 222, 0.11);
  border-radius: 1rem;
  margin-left: auto;
  padding: 1.2rem;
  transform: translateY(-1em);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page .detail.detail--contact .wpcf7 .wpcf7-form > p > label > .wpcf7-form-control-wrap input,
  .page .detail.detail--contact .wpcf7 .wpcf7-form > p > label > .wpcf7-form-control-wrap textarea {
    margin-left: 0;
    transform: translateY(0);
    padding: 1rem;
  }
}
.page .detail.detail--contact .wpcf7 .wpcf7-form > p > label > .wpcf7-form-control-wrap input[aria-required=true]::after,
.page .detail.detail--contact .wpcf7 .wpcf7-form > p > label > .wpcf7-form-control-wrap textarea[aria-required=true]::after {
  content: "必須";
  color: red;
  font-weight: bold;
  margin-left: 0.5rem;
  position: absolute;
  left: 0;
}
.page .detail.detail--contact .wpcf7 .wpcf7-form > p .wpcf7-submit {
  width: calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 8 + 2rem * (8 - 1) + 0px);
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.2rem;
  padding: 1.5rem 5rem;
  background-color: #3C37FF;
  color: #fff;
  border-radius: 1rem;
  transition: background-color 0.3s ease;
  font-size: 1.3rem;
  font-size: 500;
  text-decoration: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page .detail.detail--contact .wpcf7 .wpcf7-form > p .wpcf7-submit {
    width: calc((100vw - 4.2rem - 4.2rem - 2rem * (10 - 1)) / 10 * 9 + 2rem * (9 - 1) + 0px);
  }
}
.page .detail.detail--contact .detail__text {
  display: flex;
  flex-direction: column;
  gap: 6.8rem;
}
.page .detail.detail--contact .detail__text .detail__textSummary {
  margin-bottom: 6rem;
  font-size: 1.3rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page .detail.detail--contact .detail__text .detail__textSummary {
    margin-bottom: 4.2rem;
    font-size: 1.2rem;
  }
}
.page .detail.detail--contact .detail__text .detail__textRow {
  display: grid;
  grid-template-columns: calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 2 + 2rem * (2 - 1) + 0px) calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 4 + 2rem * (4 - 1) + 0px);
  align-items: start;
  gap: 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page .detail.detail--contact .detail__text .detail__textRow {
    grid-template-columns: calc((100vw - 4.2rem - 4.2rem - 2rem * (10 - 1)) / 10 * 3 + 2rem * (3 - 1) + 0px) calc((100vw - 4.2rem - 4.2rem - 2rem * (10 - 1)) / 10 * 7 + 2rem * (7 - 1) + 0px);
    gap: 2rem;
  }
}
.page .detail.detail--contact .detail__text .detail__textRow .detail__textRowHeading {
  font-size: 1.5rem;
  font-weight: 500;
  color: #3C37FF;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  line-height: 1.2;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page .detail.detail--contact .detail__text .detail__textRow .detail__textRowHeading {
    font-size: 1.3rem;
  }
}
.page .detail.detail--contact .detail__text .detail__textRow .detail__textRowHeading::before {
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #3C37FF;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page .detail.detail--contact .detail__text .detail__textRow .detail__textRowHeading::before {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.page .detail.detail--contact .detail__text .detail__textRow .detail__textRowDescription {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 400;
  transform: translateY(-0.4em);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page .detail.detail--contact .detail__text .detail__textRow .detail__textRowDescription {
    font-size: 1.2rem;
  }
}
.page .detail.detail--contact .detail__text .detail__textRow .detail__textRowDescription ul {
  list-style: none;
  margin-top: 1rem;
}
.page .detail.detail--contact .detail__text .detail__textRow .detail__textRowDescription ul li::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #111111;
  margin-right: 0.8rem;
}
.page .detail.detail--contact .detail__text .detail__textRow--title .detail__textRowDescription {
  font-size: 3.2rem;
  transform: translateY(-0.5em);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page .detail.detail--contact .detail__text .detail__textRow--title .detail__textRowDescription {
    transform: translateY(0);
  }
}
.page .detail.detail--contact .detail__text .detail__textRow--name .detail__textRowDescription, .page .detail.detail--contact .detail__text .detail__textRow--solution .detail__textRowDescription {
  font-size: 3.8rem;
}
.page .detail.detail--contact .detail__text .detail__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 4rem;
  padding: 1.5rem 0;
  background-color: #3C37FF;
  color: #fff;
  border-radius: 2.2rem;
  transition: background-color 0.3s ease;
  font-size: 1.3rem;
  text-decoration: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page .detail.detail--contact .detail__text .detail__link {
    width: calc((100vw - 4.2rem - 4.2rem - 2rem * (10 - 1)) / 10 * 9 + 2rem * (9 - 1) + 0px);
    margin-top: 0rem;
    margin-left: auto;
    font-size: 1.2rem;
  }
}
.page .detail.detail--contact .detail__text .detail__link svg {
  transform: rotate(90deg);
  width: 0.8rem;
  height: 0.9rem;
}
.page .detail.detail--contact .detail__text .detail__link svg * {
  fill: white;
}

/****** global BOF *****/
.page .mission .mission__copy {
  font-size: 3.5rem;
  line-height: 160%;
  text-align: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page .mission .mission__copy {
    font-size: 2rem;
  }
}
.page .mission .mission__copyEn {
  font-size: 1.4rem;
  color: rgba(17, 17, 17, 0.5019607843);
  text-align: center;
  margin-top: 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page .mission .mission__copyEn {
    font-size: 1.2rem;
    margin-top: 2rem;
  }
}
.page .mission .mission__image {
  width: calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 8 + 2rem * (8 - 1) + 0px);
  margin-top: 19rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: flex;
  justify-content: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page .mission .mission__image {
    width: calc((100vw - 4.2rem - 4.2rem - 2rem * (10 - 1)) / 10 * 8 + 2rem * (8 - 1) + 0px);
    margin-top: 10rem;
  }
}
.page .mission .mission__image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
.page .mission .mission__image .mission__image__caption {
  position: absolute;
  font-size: 1.8rem;
  color: white;
  background: rgba(255, 255, 255, 0.9);
  padding: 0rem 1.2rem;
  background: #3C37FF;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page .mission .mission__image .mission__image__caption {
    font-size: 1.3rem;
  }
}
.page .mission .mission__image .mission__image__caption:nth-of-type(1) {
  top: -6rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page .mission .mission__image .mission__image__caption:nth-of-type(1) {
    top: -4rem;
    left: 50%;
  }
}
.page .mission .mission__image .mission__image__caption:nth-of-type(2) {
  bottom: -2rem;
  left: -12rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page .mission .mission__image .mission__image__caption:nth-of-type(2) {
    bottom: -4rem;
    left: -3.5rem;
  }
}
.page .mission .mission__image .mission__image__caption:nth-of-type(3) {
  bottom: -2rem;
  right: -12rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page .mission .mission__image .mission__image__caption:nth-of-type(3) {
    bottom: -4rem;
    right: -3.5rem;
  }
}
.page .company {
  margin-top: 28rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page .company {
    margin-top: 14rem;
  }
}
.page .company .company__columns {
  display: grid;
  grid-template-columns: calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 7 + 2rem * (7 - 1) + 0px) calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 9 + 2rem * (9 - 1) + 0px);
  gap: 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page .company .company__columns {
    grid-template-columns: 100%;
    gap: 2rem;
  }
}
.page .company .company__table {
  display: flex;
  flex-direction: column;
  margin-top: 2.6rem;
}
.page .company .company__table .company__table__row {
  display: grid;
  grid-template-columns: calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 2 + 2rem * (2 - 1) + 0px) calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 7 + 2rem * (7 - 1) + 0px);
  gap: 2rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1019607843);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page .company .company__table .company__table__row {
    grid-template-columns: calc((100vw - 4.2rem - 4.2rem - 2rem * (10 - 1)) / 10 * 3 + 2rem * (3 - 1) + 0px) calc((100vw - 4.2rem - 4.2rem - 2rem * (10 - 1)) / 10 * 6 + 2rem * (6 - 1) + 0px);
    gap: 2rem;
    padding: 2rem 0;
    margin-left: auto;
  }
}
.page .company .company__table .company__table__row:first-child {
  border-top: 1px solid rgba(17, 17, 17, 0.1019607843);
}
.page .company .company__table .company__table__row .company__table__cell {
  font-size: 1.3rem;
  line-height: 1.8;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page .company .company__table .company__table__row .company__table__cell {
    font-size: 1.2rem;
  }
}
.page .company .company__table .company__table__row .company__table__cell--label {
  color: #111111;
  font-weight: 700;
}
/* Loading Animation */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.loading-overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.loading-overlay__white {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 1;
}

.loading-overlay__blue {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #3C37FF;
  z-index: 2;
}

.loading-overlay__fv-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: auto;
  height: auto;
  width: calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 9 + 2rem * (9 - 1) + 0px + 2rem);
}
.loading-overlay__fv-image img {
  width: calc((100vw - 4.2rem - 4.2rem - 2rem * (10 - 1)) / 10 * 8 + 2rem * (8 - 1) + 0px);
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home.loading-complete .fv__columnRight {
  opacity: 1 !important;
}
.home .fv {
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .fv {
    max-height: 70rem;
  }
}
.home .fv .fv__column {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 1 + 2rem * (1 - 1) + 0px + 4rem);
  transform: translateX(2rem);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .fv .fv__column {
    flex-direction: column-reverse;
    gap: 6.3rem;
    transform: translateX(0);
  }
}
.home .fv .fv__column .fv__columnLeft {
  width: calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 6 + 2rem * (6 - 1) + 0px);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .fv .fv__column .fv__columnLeft {
    width: calc((100vw - 4.2rem - 4.2rem - 2rem * (10 - 1)) / 10 * 10 + 2rem * (10 - 1) + 0px);
    text-align: left;
  }
}
.home .fv .fv__column .fv__columnLeft .fv__columnLeftCopy {
  font-weight: 200;
  font-size: 3.4rem;
  line-height: 180%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .fv .fv__column .fv__columnLeft .fv__columnLeftCopy {
    font-size: 2.1rem;
  }
}
.home .fv .fv__column .fv__columnLeft .fv__columnLeftLead {
  font-weight: 200;
  font-size: 1.1rem;
  margin-top: 0.9rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .fv .fv__column .fv__columnLeft .fv__columnLeftLead {
    font-size: 1.1rem;
    margin-top: 1rem;
  }
}
.home .fv .fv__column .fv__columnLeft .fv__columnLink {
  margin-top: 5.3rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .fv .fv__column .fv__columnLeft .fv__columnLink {
    margin-top: 2.6rem;
  }
}
.home .fv .fv__column .fv__columnRight {
  width: calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 9 + 2rem * (9 - 1) + 0px + 2rem);
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .fv .fv__column .fv__columnRight {
    width: calc((100vw - 4.2rem - 4.2rem - 2rem * (10 - 1)) / 10 * 8 + 2rem * (8 - 1) + 0px);
  }
}
.home .fv .fv__column .fv__columnRight img {
  width: 100%;
}
.home .creatorsSlider {
  overflow: hidden;
  margin-top: 15.9rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .creatorsSlider {
    margin-top: 10rem;
  }
}
.home .creatorsSlider .creatorsSlider__swiper {
  overflow: visible;
}
.home .creatorsSlider .creatorsSlider__wrapper {
  display: flex;
  transition-timing-function: linear;
}
.home .creatorsSlider .creatorsSlider__item {
  width: auto;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: end;
}
.home .creatorsSlider .creatorsSlider__itemImage {
  width: 26.1rem;
  aspect-ratio: 261/352;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .creatorsSlider .creatorsSlider__itemImage {
    width: 9.2rem;
  }
}
.home .creatorsSlider .creatorsSlider__itemImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home .creatorsSlider .creatorsSlider__itemName {
  font-size: 0.7rem;
  font-weight: 500;
  margin-top: 0.6rem;
  display: none;
}
.home .mission {
  margin-top: 18.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .mission {
    margin-top: 11.2rem;
  }
}
.home .mission .mission__column {
  display: flex;
  align-items: center;
  margin-top: 17.1rem;
  gap: 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .mission .mission__column {
    flex-direction: column;
    margin-top: 5.2rem;
    gap: 5rem;
  }
}
.home .mission .mission__column .mission__columnLeft {
  width: calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 9 + 2rem * (9 - 1) + 0px);
  padding-left: calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 1 + 2rem * (1 - 1) + 0px + 2rem);
  padding-right: calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 2 + 2rem * (2 - 1) + 0px);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .mission .mission__column .mission__columnLeft {
    width: calc((100vw - 4.2rem - 4.2rem - 2rem * (10 - 1)) / 10 * 8 + 2rem * (8 - 1) + 0px);
    padding-left: 0;
    padding-right: 0;
  }
}
.home .mission .mission__column .mission__columnLeft img {
  width: 100%;
}
.home .mission .mission__column .mission__columnRight {
  width: calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 7 + 2rem * (7 - 1) + 0px);
  font-weight: 200;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .mission .mission__column .mission__columnRight {
    width: calc((100vw - 4.2rem - 4.2rem - 2rem * (10 - 1)) / 10 * 10 + 2rem * (10 - 1) + 0px);
  }
}
.home .mission .mission__column .mission__columnRight .mission__columnRightCopy {
  font-size: 3.2rem;
  line-height: 180%;
  font-weight: 200;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .mission .mission__column .mission__columnRight .mission__columnRightCopy {
    font-size: 2.1rem;
  }
}
.home .mission .mission__column .mission__columnRight .mission__columnRightList {
  margin-top: 2rem;
  list-style: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .mission .mission__column .mission__columnRight .mission__columnRightList {
    margin-top: 2.1rem;
  }
}
.home .mission .mission__column .mission__columnRight .mission__columnRightList .mission__columnRightListItem {
  position: relative;
  padding-left: 2.2rem;
  font-size: 1.1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .mission .mission__column .mission__columnRight .mission__columnRightList .mission__columnRightListItem {
    padding-left: 1.8rem;
  }
}
.home .mission .mission__column .mission__columnRight .mission__columnRightList .mission__columnRightListItem::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  margin: auto;
  background: #3C37FF;
}
.home .mission .mission__column .mission__columnRight .mission__columnLink {
  margin-top: 5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .mission .mission__column .mission__columnRight .mission__columnLink {
    margin-top: 4rem;
  }
}
.home .services {
  margin-top: 25.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .services {
    margin-top: 17rem;
  }
}
.home .services .servicesWrapper {
  margin-top: 4rem;
  border-radius: 2.7rem;
  overflow: hidden;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .services .servicesWrapper {
    display: flex;
    flex-direction: column;
    overflow: visible;
    margin-top: 1.5rem;
  }
}
.home .services .servicesWrapper .servicesWrapper__bg {
  width: 100%;
  padding-top: 53.4722222222%;
  overflow: hidden;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .services .servicesWrapper .servicesWrapper__bg {
    position: relative;
    padding-top: 0;
    aspect-ratio: 374/198;
    border-radius: 0;
    overflow: hidden;
  }
}
.home .services .servicesWrapper .servicesWrapper__bg .servicesWrapper__bgItem {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.home .services .servicesWrapper .servicesWrapper__bg .servicesWrapper__bgItem.active {
  opacity: 1;
}
.home .services .servicesWrapper .servicesWrapper__bg .servicesWrapper__bgItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home .services .servicesWrapper__contents {
  position: absolute;
  inset: 0 calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 2 + 2rem * (2 - 1) + 0px + 2rem + 4.2rem) 0 auto;
  width: calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 6 + 2rem * (6 - 1) + 0px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
  margin: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .services .servicesWrapper__contents {
    position: relative;
    inset: 0;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: 0;
    border-radius: 0 0 3rem 3rem;
    box-shadow: 0.1rem 0.2rem 2rem rgba(60, 55, 255, 0.25);
  }
}
.home .services .servicesWrapper__contents .servicesWrapper__item {
  background: white;
  border-radius: 3rem;
  width: 100%;
  display: grid;
  align-items: start;
  grid-template-rows: auto 0fr;
  padding: 1.5rem 3rem;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .services .servicesWrapper__contents .servicesWrapper__item {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    padding: 3.8rem 4rem;
    width: 100%;
    height: auto;
    border-radius: 0;
  }
}
.home .services .servicesWrapper__contents .servicesWrapper__item.active {
  grid-template-rows: auto 1fr;
  padding: 4rem 4.5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .services .servicesWrapper__contents .servicesWrapper__item.active {
    padding: 4rem;
  }
}
.home .services .servicesWrapper__contents .servicesWrapper__item.active .servicesWrapper__itemHeading .servicesWrapper__itemHeadingNumber {
  font-size: 4.2rem;
}
.home .services .servicesWrapper__contents .servicesWrapper__item.active .servicesWrapper__itemHeading .servicesWrapper__itemHeadingText {
  font-size: 2.1rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .services .servicesWrapper__contents .servicesWrapper__item.active .servicesWrapper__itemHeading .servicesWrapper__itemHeadingText {
    font-size: 1.6rem;
  }
}
.home .services .servicesWrapper__contents .servicesWrapper__item.active .servicesWrapper__itemProgressContainer {
  opacity: 1;
}
.home .services .servicesWrapper__contents .servicesWrapper__item .servicesWrapper__itemHeading {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  line-height: 1.2;
  transition: all 0.5s ease-in-out;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .services .servicesWrapper__contents .servicesWrapper__item .servicesWrapper__itemHeading {
    gap: 1rem;
  }
}
.home .services .servicesWrapper__contents .servicesWrapper__item .servicesWrapper__itemHeading .servicesWrapper__itemHeadingNumber {
  color: #3C37FF;
  font-size: 2.6rem;
  font-weight: 800;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .services .servicesWrapper__contents .servicesWrapper__item .servicesWrapper__itemHeading .servicesWrapper__itemHeadingNumber {
    font-size: 3.4rem;
  }
}
.home .services .servicesWrapper__contents .servicesWrapper__item .servicesWrapper__itemHeading .servicesWrapper__itemHeadingText {
  font-size: 1.3rem;
  transition: all 0.5s ease-in-out;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .services .servicesWrapper__contents .servicesWrapper__item .servicesWrapper__itemHeading .servicesWrapper__itemHeadingText {
    font-size: 1.4rem;
  }
}
.home .services .servicesWrapper__contents .servicesWrapper__item .servicesWrapper__itemDescriotion {
  min-height: 0;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
.home .services .servicesWrapper__contents .servicesWrapper__item .servicesWrapper__itemDescriotion .servicesWrapper__itemDescriotionInner {
  font-size: 1.2rem;
  font-weight: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  height: 24.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .services .servicesWrapper__contents .servicesWrapper__item .servicesWrapper__itemDescriotion .servicesWrapper__itemDescriotionInner {
    font-size: 1.2rem;
    height: 100%;
  }
}
.home .services .servicesWrapper__contents .servicesWrapper__item .servicesWrapper__itemDescriotion .servicesWrapper__itemDescriotionInner .servicesWrapper__itemDescriotionText {
  padding-top: 3rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .services .servicesWrapper__contents .servicesWrapper__item .servicesWrapper__itemDescriotion .servicesWrapper__itemDescriotionInner .servicesWrapper__itemDescriotionText {
    padding-top: 1.5rem;
  }
}
.home .services .servicesWrapper__contents .servicesWrapper__item .servicesWrapper__itemDescriotion .servicesWrapper__itemDescriotionInner .servicesWrapper__itemDescriotionLink {
  margin-top: auto;
  display: flex;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .services .servicesWrapper__contents .servicesWrapper__item .servicesWrapper__itemDescriotion .servicesWrapper__itemDescriotionInner .servicesWrapper__itemDescriotionLink {
    margin-top: 4rem;
  }
}
.home .services .servicesWrapper__contents .servicesWrapper__item .servicesWrapper__itemProgressContainer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.4rem;
  background: #c1c1c1;
  border-radius: 0 0 3rem 3rem;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .services .servicesWrapper__contents .servicesWrapper__item .servicesWrapper__itemProgressContainer {
    display: none;
  }
}
.home .services .servicesWrapper__contents .servicesWrapper__item .servicesWrapper__itemProgressContainer .servicesWrapper__itemProgress {
  height: 100%;
  width: 0%;
  background: #3C37FF;
  transition: width 8000ms linear;
}
.home .services .servicesWrapper__contents .servicesWrapper__item .servicesWrapper__itemCarouselProgressContainer {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .services .servicesWrapper__contents .servicesWrapper__item .servicesWrapper__itemCarouselProgressContainer {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0.4rem;
    background: #c1c1c1;
    border-radius: 0 0 3rem 3rem;
    overflow: hidden;
  }
  .home .services .servicesWrapper__contents .servicesWrapper__item .servicesWrapper__itemCarouselProgressContainer .servicesWrapper__itemCarouselProgress {
    height: 100%;
    width: 0%;
    background: #3C37FF;
    transition: width 5000ms linear;
  }
}
.home .creators {
  margin-top: 13.6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .creators {
    margin-top: 12.9rem;
  }
}
.home .creators .creators__creatorsWrapper {
  display: block;
  position: relative;
  padding: 28.6rem 0;
  perspective: 1000px;
  overflow: visible;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .creators .creators__creatorsWrapper {
    padding: 11rem 0;
  }
}
.home .creators .creators__creatorsWrapper .creators__creatorsText {
  position: relative;
  text-align: center;
  font-size: 15.5rem;
  font-weight: 500;
  color: #3C37FF;
  z-index: 2;
  transform: translateY(5rem);
  display: flex;
  align-items: end;
  justify-content: center;
  line-height: 1;
  gap: 3rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .creators .creators__creatorsWrapper .creators__creatorsText {
    font-size: 4rem;
    gap: 1rem;
    transform: translateY(1rem);
  }
}
.home .creators .creators__creatorsWrapper .creators__creatorsText svg {
  transform: rotate(90deg);
  width: 7.7rem;
  height: 6.7rem;
  margin-bottom: 2.5rem;
  will-change: transform;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .creators .creators__creatorsWrapper .creators__creatorsText svg {
    width: 3.4rem;
    height: 3rem;
    margin-bottom: 0.5rem;
  }
}
.home .creators .creators__creatorsWrapper .creators__creatorsBgs {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.home .creators .creators__creatorsWrapper .creators__creatorsBgs .creators__creatorsBgsDelta {
  position: absolute;
  transform-style: preserve-3d;
  will-change: transform;
}
.home .creators .creators__creatorsWrapper .creators__creatorsBgs .creators__creatorsBgsDelta svg {
  width: 100%;
  height: 100%;
  display: block;
}
.home .creators .creators__creatorsWrapper .creators__creatorsBgs .creators__creatorsBgsDelta1 {
  width: 4rem;
  top: 30%;
  left: 13%;
  transform: rotate(10deg);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .creators .creators__creatorsWrapper .creators__creatorsBgs .creators__creatorsBgsDelta1 {
    width: 1.4rem;
  }
}
.home .creators .creators__creatorsWrapper .creators__creatorsBgs .creators__creatorsBgsDelta2 {
  width: 21rem;
  top: 5%;
  left: 43%;
  transform: rotate(-48deg);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .creators .creators__creatorsWrapper .creators__creatorsBgs .creators__creatorsBgsDelta2 {
    width: 7.6rem;
    top: 0%;
  }
}
.home .creators .creators__creatorsWrapper .creators__creatorsBgs .creators__creatorsBgsDelta3 {
  width: 2.8rem;
  top: 24%;
  left: 85%;
  transform: rotate(-15deg);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .creators .creators__creatorsWrapper .creators__creatorsBgs .creators__creatorsBgsDelta3 {
    display: none;
  }
}
.home .creators .creators__creatorsWrapper .creators__creatorsBgs .creators__creatorsBgsDelta4 {
  width: 21.5rem;
  top: 73%;
  left: 21%;
  transform: rotate(37deg);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .creators .creators__creatorsWrapper .creators__creatorsBgs .creators__creatorsBgsDelta4 {
    width: 7.8rem;
    left: 10%;
  }
}
.home .creators .creators__creatorsWrapper .creators__creatorsBgs .creators__creatorsBgsDelta5 {
  width: 6.8rem;
  bottom: 14%;
  left: 55%;
  transform: rotate(-30deg);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .creators .creators__creatorsWrapper .creators__creatorsBgs .creators__creatorsBgsDelta5 {
    width: 2.4rem;
    left: 58%;
    bottom: 20%;
    transform: rotate(-40deg);
  }
}
.home .creators .creators__creatorsWrapper .creators__creatorsBgs .creators__creatorsBgsDelta6 {
  width: 1.7rem;
  top: 118%;
  left: 40%;
  transform: rotate(25deg);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .creators .creators__creatorsWrapper .creators__creatorsBgs .creators__creatorsBgsDelta6 {
    display: none;
  }
}
.home .creators .creators__creatorsWrapper .creators__creatorsBgs .creators__creatorsBgsImage {
  position: absolute;
  background: white;
  border-radius: 3rem;
  overflow: hidden;
  will-change: transform, opacity;
}
.home .creators .creators__creatorsWrapper .creators__creatorsBgs .creators__creatorsBgsImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home .creators .creators__creatorsWrapper .creators__creatorsBgs .creators__creatorsBgsImage1 {
  width: 22rem;
  height: auto;
  top: 23%;
  left: 33%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .creators .creators__creatorsWrapper .creators__creatorsBgs .creators__creatorsBgsImage1 {
    width: 7.8rem;
    top: 25%;
    left: 25%;
  }
}
.home .creators .creators__creatorsWrapper .creators__creatorsBgs .creators__creatorsBgsImage2 {
  width: 12rem;
  height: auto;
  top: 27%;
  left: 69%;
  left: 70%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .creators .creators__creatorsWrapper .creators__creatorsBgs .creators__creatorsBgsImage2 {
    width: 3.9rem;
    top: 30%;
    left: 75%;
  }
}
.home .creators .creators__creatorsWrapper .creators__creatorsBgs .creators__creatorsBgsImage3 {
  width: 20rem;
  height: auto;
  top: 68%;
  left: 27%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .creators .creators__creatorsWrapper .creators__creatorsBgs .creators__creatorsBgsImage3 {
    width: 6.9rem;
    top: 70%;
    left: 15%;
  }
}
.home .creators .creators__creatorsWrapper .creators__creatorsBgs .creators__creatorsBgsImage4 {
  width: 32rem;
  height: auto;
  top: 71%;
  left: 60%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .creators .creators__creatorsWrapper .creators__creatorsBgs .creators__creatorsBgsImage4 {
    width: 11.5rem;
    top: 65%;
    left: 63%;
  }
}
.home .solutions {
  margin-top: 32rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .solutions {
    margin-top: 19rem;
  }
}
.home .solutions .solutions__grid {
  margin-top: 5.3rem;
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  grid-template-rows: repeat(6, 8.5rem);
  gap: 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .solutions .solutions__grid {
    margin-top: 1.4rem;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(7, 5.7rem);
    gap: 1.2rem;
  }
}
.home .solutions .solutions__grid .solutions__gridItem.solutions__gridItem--1 {
  grid-column: 1/8;
  grid-row: 1/4;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .solutions .solutions__grid .solutions__gridItem.solutions__gridItem--1 {
    grid-column: 1/11;
    grid-row: 1/3;
  }
}
.home .solutions .solutions__grid .solutions__gridItem.solutions__gridItem--2 {
  grid-column: 10/12;
  grid-row: 2/3;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .solutions .solutions__grid .solutions__gridItem.solutions__gridItem--2 {
    grid-column: 1/6;
    grid-row: 4/5;
  }
}
.home .solutions .solutions__grid .solutions__gridItem.solutions__gridItem--3 {
  grid-column: 12/14;
  grid-row: 1/2;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .solutions .solutions__grid .solutions__gridItem.solutions__gridItem--3 {
    grid-column: 3/8;
    grid-row: 3/4;
  }
}
.home .solutions .solutions__grid .solutions__gridItem.solutions__gridItem--4 {
  grid-column: 14/17;
  grid-row: 1/3;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .solutions .solutions__grid .solutions__gridItem.solutions__gridItem--4 {
    grid-column: 8/11;
    grid-row: 3/5;
  }
}
.home .solutions .solutions__grid .solutions__gridItem.solutions__gridItem--5 {
  grid-column: 8/13;
  grid-row: 3/7;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .solutions .solutions__grid .solutions__gridItem.solutions__gridItem--5 {
    grid-column: 1/7;
    grid-row: 5/9;
  }
}
.home .solutions .solutions__grid .solutions__gridItem.solutions__gridItem--6 {
  grid-column: 13/17;
  grid-row: 3/7;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .solutions .solutions__grid .solutions__gridItem.solutions__gridItem--6 {
    grid-column: 7/11;
    grid-row: 5/9;
  }
}
.home .solutions .solutions__grid .solutions__gridItem.solutions__gridItem--7 {
  grid-column: 2/8;
  grid-row: 4/7;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .solutions .solutions__grid .solutions__gridItem.solutions__gridItem--7 {
    grid-column: 1/11;
    grid-row: 9/10;
  }
}
.home .solutions .solutions__grid .solutions__gridItem.solutions__gridItem--image {
  background: #d9d9d9;
  border-radius: 3rem;
  overflow: hidden;
  position: relative;
}
.home .solutions .solutions__grid .solutions__gridItem.solutions__gridItem--image .solutions__gridItemImages {
  position: relative;
  width: 100%;
  height: 100%;
}
.home .solutions .solutions__grid .solutions__gridItem.solutions__gridItem--image .solutions__gridItemImage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.home .solutions .solutions__grid .solutions__gridItem.solutions__gridItem--image .solutions__gridItemImage.active {
  opacity: 1;
  transform: translateX(0);
}
.home .solutions .solutions__grid .solutions__gridItem.solutions__gridItem--image .solutions__gridItemImage.exiting {
  opacity: 1;
  transform: translateX(-100%);
}
.home .solutions .solutions__grid .solutions__gridItem.solutions__gridItem--image .solutions__gridItemImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home .solutions .solutions__grid .solutions__gridItem.solutions__gridItem--text {
  padding-top: 1rem;
  padding-right: 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .solutions .solutions__grid .solutions__gridItem.solutions__gridItem--text {
    padding-top: 4rem;
  }
}
.home .solutions .solutions__grid .solutions__gridItem.solutions__gridItem--text .solutions__gridItemHeading {
  font-size: 2.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .solutions .solutions__grid .solutions__gridItem.solutions__gridItem--text .solutions__gridItemHeading {
    font-size: 2.1rem;
  }
}
.home .solutions .solutions__grid .solutions__gridItem.solutions__gridItem--text .solutions__gridItemText {
  margin-top: 1rem;
  font-size: 1.1rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .solutions .solutions__grid .solutions__gridItem.solutions__gridItem--text .solutions__gridItemText {
    font-size: 1.1rem;
  }
}
.home .solutions .solutions__grid .solutions__gridItem.solutions__gridItem--text .solutions__gridItemText ul {
  list-style: none;
}
.home .solutions .solutions__grid .solutions__gridItem.solutions__gridItem--text .solutions__gridItemText ul li {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.home .solutions .solutions__grid .solutions__gridItem.solutions__gridItem--text .solutions__gridItemText ul li::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #3C37FF;
  flex-grow: 1;
  flex-shrink: 0;
  margin-top: 0.6rem;
  flex-grow: 0;
}
.home .solutions .solutions__grid .solutions__gridItem.solutions__gridItem--text .solutions__gridItemLink {
  margin-top: 5rem;
}
.home .r18 {
  margin-top: 14rem;
  background: #3C37FF;
  text-align: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .r18 {
    margin-top: 10rem;
  }
}
.home .r18 .r18__heading {
  display: block;
  color: white;
  font-size: 1.6rem;
  font-weight: 200;
  padding: 10rem 0;
  text-decoration: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .r18 .r18__heading {
    font-size: 1.3rem;
    padding: 6rem 0;
  }
}
.home .r18 .r18__heading .r18__heading__pill {
  font-size: 1.1rem;
  background: white;
  color: #3C37FF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.5rem;
  padding: 0.3rem 0.5rem;
  border-radius: 0.3rem;
  font-weight: 700;
  line-height: 1.2;
  transform: translateY(-0.1rem);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .r18 .r18__heading .r18__heading__pill {
    font-size: 1rem;
  }
}
.home .news {
  display: grid;
  grid-template-columns: calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 8 + 2rem * (8 - 1) + 0px) calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 8 + 2rem * (8 - 1) + 0px);
  margin-top: 15.1rem;
  align-items: start;
  gap: 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .news {
    grid-template-columns: calc((100vw - 4.2rem - 4.2rem - 2rem * (10 - 1)) / 10 * 10 + 2rem * (10 - 1) + 0px);
    margin-top: 8rem;
    margin-left: auto;
    gap: 2rem;
  }
}
.home .news .news__items {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 1.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .news .news__items {
    gap: 3.1rem;
  }
}
.home .news .news__items .news__itemsItem {
  display: grid;
  grid-template-columns: calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 2 + 2rem * (2 - 1) + 0px) calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 5 + 2rem * (5 - 1) + 0px) calc((100vw - 0px - 4.2rem - 4.2rem - 2rem * (20 - 1)) / 20 * 1 + 2rem * (1 - 1) + 0px);
  gap: 2rem;
  align-items: center;
  padding: 1.5rem 0;
  color: inherit;
  transition: color 0.3s ease;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .news .news__items .news__itemsItem {
    grid-template-columns: calc((100vw - 4.2rem - 4.2rem - 2rem * (10 - 1)) / 10 * 8 + 2rem * (8 - 1) + 0px) calc((100vw - 4.2rem - 4.2rem - 2rem * (10 - 1)) / 10 * 1 + 2rem * (1 - 1) + 0px);
    gap: 1rem 2rem;
    margin-left: auto;
  }
}
.home .news .news__items .news__itemsItem:hover {
  color: rgba(0, 0, 0, 0.5);
}
.home .news .news__items .news__itemsItem:hover .news__itemsItemIcon svg {
  transform: translateX(0.5rem);
}
.home .news .news__items .news__itemsItem .news__itemsItemDate {
  font-size: 1.1rem;
}
.home .news .news__items .news__itemsItem .news__itemsItemText {
  font-size: 1.3rem;
  line-height: 1.2;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .news .news__items .news__itemsItem .news__itemsItemText {
    grid-column: 1/2;
  }
}
.home .news .news__items .news__itemsItem .news__itemsItemIcon {
  width: 1.2rem;
  height: 1.2rem;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .news .news__items .news__itemsItem .news__itemsItemIcon {
    grid-column: 2/3;
    grid-row: 1/3;
  }
}
.home .news .news__items .news__itemsItem .news__itemsItemIcon svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.home .news .news__items .news__itemsItem .news__itemsItemIcon svg path {
  fill: #3C37FF;
}

/*# sourceMappingURL=general.css.map */
