@charset "UTF-8";
/* ==========================================================================//
//
// トップページ
//
// ========================================================================== */
/* 共通
---------------------------------------------------------- */
.all_btn {
  position: relative;
  width: min(235px, 90%);
  margin-inline: auto;
}
@media all and (min-width: 751px) {
  .all_btn {
    width: min(330px, 90%);
  }
}
.all_btn::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background-color: #222222;
  border-radius: 100px;
  z-index: -1;
}
.all_btn a {
  position: relative;
  display: block;
  text-align: center;
  color: #222222;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: bold;
  font-size: 17px;
  letter-spacing: 0.19em;
  background-color: #fff;
  border: 1px solid #222222;
  border-radius: 100px;
  padding: 12px;
}
@media all and (min-width: 751px) {
  .all_btn a {
    font-size: 23px;
    padding: 17px;
  }
}
.all_btn a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../../images/common/arrow_01.png);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 1;
  width: 20px;
}
@media all and (min-width: 751px) {
  .all_btn a::after {
    width: 28px;
  }
}
@media (hover: hover) {
  .all_btn a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .all_btn a:hover {
    -webkit-transform: translate(4px, 4px);
            transform: translate(4px, 4px);
  }
}

/* メインビジュアル
---------------------------------------------------------- */
.mv {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: calc(100vh - var(--header_height));
  height: calc(100svh - var(--header_height));
  background-color: #a3ced6;
  padding: 24px 20px 32px;
}
@media all and (min-width: 751px) {
  .mv {
    padding: 47px 70px 74px;
  }
}
.mv .copy_wrap {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: min(240px, 64%);
}
@media all and (min-width: 751px) {
  .mv .copy_wrap {
    width: min(643px, 60%);
  }
}
.mv .copy_wrap .copy {
  opacity: 0;
  -webkit-animation: fadeUpAnime 0.5s forwards 0.4s;
          animation: fadeUpAnime 0.5s forwards 0.4s;
}
.mv .movie {
  position: relative;
  width: 100%;
  height: 100%;
  border: 2px solid #222222;
  border-radius: 20px;
  overflow: hidden;
}
@media all and (min-width: 751px) {
  .mv .movie {
    border-radius: 50px;
  }
}
.mv .movie::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: #000000;
  background-image: radial-gradient(circle, #fff 0.75px, transparent 0.75px);
  background-position: 4px 4px;
  background-size: 7px 7px;
  opacity: 0.24;
}
.mv .movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* news
---------------------------------------------------------- */
.sec_news {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(49%, #a3ced6), color-stop(51%, #222222), color-stop(52%, transparent));
  background: linear-gradient(to bottom, #a3ced6 49%, #222222 51%, transparent 52%);
}
.sec_news .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
  border: 1.5px solid #222222;
  border-radius: 6px;
  overflow: hidden;
}
@media all and (min-width: 751px) {
  .sec_news .container {
    min-height: 100px;
    border-radius: 20px;
  }
}
.sec_news .container .ttl_wrap {
  display: -ms-grid;
  display: grid;
  place-items: center;
  background: repeating-linear-gradient(-45deg, #aaa, #aaa 1px, #fff 0, #fff 7.5px);
  border-right: 1.5px solid #222222;
  padding: 10px 8px;
}
@media all and (min-width: 751px) {
  .sec_news .container .ttl_wrap {
    padding: 10px 5%;
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  .sec_news .container .ttl_wrap {
    padding: 10px 2%;
  }
}
.sec_news .container .ttl_wrap .sec_ttl {
  background-color: #fff;
  line-height: 1;
  padding: 3px;
}
.sec_news .container .ttl_wrap .sec_ttl img {
  width: 56px;
}
@media all and (min-width: 751px) {
  .sec_news .container .ttl_wrap .sec_ttl img {
    width: 116px;
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  .sec_news .container .ttl_wrap .sec_ttl img {
    width: 80px;
  }
}
.sec_news .container .content_wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 10px 14px;
}
@media all and (min-width: 751px) {
  .sec_news .container .content_wrap {
    padding: 10px 4%;
  }
}
.sec_news .container .content_wrap .news_item {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media (hover: hover) {
  .sec_news .container .content_wrap .news_item {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .sec_news .container .content_wrap .news_item:hover {
    opacity: 0.7;
  }
}
@media all and (min-width: 751px) {
  .sec_news .container .content_wrap .news_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 18px;
  }
}
.sec_news .container .content_wrap .news_item .date {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 900;
  color: #8e8e8e;
  font-size: 10px;
}
@media all and (min-width: 751px) {
  .sec_news .container .content_wrap .news_item .date {
    font-size: 18px;
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  .sec_news .container .content_wrap .news_item .date {
    font-size: 16px;
  }
}
.sec_news .container .content_wrap .news_item .title {
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.06em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  text-decoration: underline;
}
@media all and (min-width: 751px) {
  .sec_news .container .content_wrap .news_item .title {
    font-size: 17px;
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  .sec_news .container .content_wrap .news_item .title {
    font-size: 15px;
  }
}
.sec_news .container .index_wrap {
  display: -ms-grid;
  display: grid;
  place-items: center;
  border-left: 1.5px solid #222222;
  padding: 10px 4%;
}
.sec_news .container .index_wrap a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px 13px;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: bold;
  font-size: 10px;
  letter-spacing: 0.09em;
  text-decoration: underline;
}
@media all and (min-width: 751px) {
  .sec_news .container .index_wrap a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    font-size: 17px;
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  .sec_news .container .index_wrap a {
    font-size: 15px;
  }
}
.sec_news .container .index_wrap a .arrow {
  width: 16px;
}
@media all and (min-width: 751px) {
  .sec_news .container .index_wrap a .arrow {
    width: 28px;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
}
@media (hover: hover) {
  .sec_news .container .index_wrap a:hover .arrow {
    -webkit-transform: translateX(6px);
            transform: translateX(6px);
  }
}
.sec_news .container.js_scroll {
  opacity: 0;
}
.sec_news .container.js_scroll.scroll_active {
  -webkit-animation: fadeUpAnime 0.6s forwards;
          animation: fadeUpAnime 0.6s forwards;
}

/* shigma activity
---------------------------------------------------------- */
.sec_activity {
  border-top: 1px solid #222222;
  border-bottom: 1px solid #222222;
  margin-top: 45px;
}
@media all and (max-width: 750px) {
  .sec_activity {
    padding-bottom: 30px;
  }
}
@media all and (min-width: 751px) {
  .sec_activity {
    margin-top: 78px;
    margin-bottom: 30px;
  }
}
@media all and (max-width: 750px) {
  .sec_activity .inner {
    display: contents;
  }
}
.sec_activity .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media all and (min-width: 751px) {
  .sec_activity .container {
    display: -ms-grid;
    display: grid;
    border-left: 1px solid #222222;
    border-right: 1px solid #222222;
  }
}
.sec_activity .container .ttl_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5%;
  padding: 30px;
}
@media all and (max-width: 750px) {
  .sec_activity .container .ttl_wrap {
    display: contents;
  }
}
.sec_activity .container .sec_ttl {
  width: min(344px, 90%);
}
@media all and (max-width: 750px) {
  .sec_activity .container .sec_ttl {
    margin-inline: auto;
    padding: 20px 0;
  }
}
@media all and (min-width: 751px) {
  .sec_activity .container .sec_ttl {
    width: min(344px, 100%);
  }
}
.sec_activity .container .content {
  border-top: 1px solid #222222;
}
@media all and (max-width: 750px) {
  .sec_activity .container .content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    border-bottom: 1px solid #222222;
    margin-bottom: 20px;
  }
}
.sec_activity .container .content #sb_instagram #sbi_images {
  padding: 0;
}
@media all and (min-width: 751px) {
  .sec_activity .container .content #sb_instagram #sbi_images {
    -ms-grid-columns: 33.4% 1fr 1fr 1fr 1fr;
    grid-template-columns: 33.4% 1fr 1fr 1fr 1fr;
    -ms-grid-rows: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .sec_activity .container .content #sb_instagram #sbi_images > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .sec_activity .container .content #sb_instagram #sbi_images > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .sec_activity .container .content #sb_instagram #sbi_images > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .sec_activity .container .content #sb_instagram #sbi_images > *:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 4;
  }
  .sec_activity .container .content #sb_instagram #sbi_images > *:nth-child(5) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  .sec_activity .container .content #sb_instagram #sbi_images > *:nth-child(6) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .sec_activity .container .content #sb_instagram #sbi_images > *:nth-child(7) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .sec_activity .container .content #sb_instagram #sbi_images > *:nth-child(8) {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
  .sec_activity .container .content #sb_instagram #sbi_images > *:nth-child(9) {
    -ms-grid-row: 2;
    -ms-grid-column: 4;
  }
  .sec_activity .container .content #sb_instagram #sbi_images > *:nth-child(10) {
    -ms-grid-row: 2;
    -ms-grid-column: 5;
  }
}
@media all and (max-width: 750px) {
  .sec_activity .container .content #sb_instagram .sbi_item:not(:nth-last-child(-n+3)) {
    border-bottom: 1px solid #222222;
  }
  .sec_activity .container .content #sb_instagram .sbi_item:nth-child(3n+2) {
    border-left: 1px solid #222222;
    border-right: 1px solid #222222;
  }
}
@media all and (min-width: 751px) {
  .sec_activity .container .content #sb_instagram .sbi_item {
    aspect-ratio: 1;
    -ms-flex-item-align: end;
        -ms-grid-row-align: end;
        align-self: end;
  }
  .sec_activity .container .content #sb_instagram .sbi_item:first-child {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row-span: 2;
    grid-row: span 2;
    border-right: 1px solid #222222;
  }
  .sec_activity .container .content #sb_instagram .sbi_item:not(:first-child, :nth-last-child(-n+4)) {
    border-bottom: 1px solid #222222;
  }
  .sec_activity .container .content #sb_instagram .sbi_item:not(:nth-child(4n+5)) {
    border-right: 1px solid #222222;
  }
}
.sec_activity .container .content #sb_instagram .sbi_photo {
  height: 100% !important;
  padding: 10px;
}
.sec_activity .container .content #sb_instagram .sbi_photo img {
  height: 100%;
  aspect-ratio: 1;
}
@media all and (max-width: 750px) {
  .sec_activity .container .more_btn {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-inline: auto;
  }
}
@media all and (min-width: 751px) {
  .sec_activity .container .more_btn {
    width: 120px;
  }
  .sec_activity .container .more_btn a {
    font-size: 13px;
  }
  .sec_activity .container .more_btn a::before {
    width: 20px;
  }
  .sec_activity .container .more_btn a span {
    padding-right: 34px;
  }
}

/* company
---------------------------------------------------------- */
.sec_company {
  --inner_padding: 40px;
  position: relative;
  border-bottom: 1px solid #222222;
  overflow: hidden;
  padding: 60px 0;
  z-index: 1;
}
@media all and (min-width: 751px) {
  .sec_company {
    --inner_padding: 100px;
    border-top: 1px solid #222222;
    padding: 80px 0;
  }
}
.sec_company::before {
  position: absolute;
  content: "";
  top: 80%;
  bottom: 0;
  width: 100%;
  background-color: #a3ced6;
  background-image: repeating-linear-gradient(to bottom, transparent 0, transparent 25px, rgba(255, 255, 255, 0.5) 25px, rgba(255, 255, 255, 0.5) 26px), repeating-linear-gradient(to right, transparent 0, transparent 25px, rgba(255, 255, 255, 0.5) 25px, rgba(255, 255, 255, 0.5) 26px);
  z-index: -1;
}
@media all and (max-width: 750px) {
  .sec_company::before {
    border-top: 1px solid #222222;
  }
}
@media all and (min-width: 751px) {
  .sec_company::before {
    top: 0;
    left: 65%;
    right: 0;
    width: auto;
    border-left: 1px solid #222222;
  }
}
.sec_company.js_scroll::after {
  position: absolute;
  content: "";
  inset: 0;
  background-color: #fff;
  z-index: 1;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: 0.75s cubic-bezier(0.76, 0.09, 0.215, 1);
  transition: 0.75s cubic-bezier(0.76, 0.09, 0.215, 1);
}
.sec_company.js_scroll.scroll_active::after {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.sec_company .row_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 90px;
}
@media all and (min-width: 751px) {
  .sec_company .row_wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8%;
  }
  .sec_company .row_wrap .texts {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .sec_company .row_wrap .image {
    width: 54.5%;
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  .sec_company .row_wrap {
    gap: 30px;
  }
}
.sec_company .texts {
  position: relative;
}
.sec_company .texts .illust {
  position: absolute;
  z-index: -1;
  -webkit-animation-name: kakukaku;
          animation-name: kakukaku;
  -webkit-animation-duration: 3400ms;
          animation-duration: 3400ms;
  -webkit-animation-timing-function: steps(2, end);
          animation-timing-function: steps(2, end);
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@-webkit-keyframes kakukaku {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
}
@keyframes kakukaku {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
}
@-webkit-keyframes kakukaku02 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
  }
}
@keyframes kakukaku02 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
  }
}
.sec_company .texts .illust01 {
  top: -20px;
  left: -24px;
  width: 52px;
}
@media all and (min-width: 751px) {
  .sec_company .texts .illust01 {
    top: -40px;
    left: -70px;
  }
}
.sec_company .texts .illust02 {
  top: -28px;
  right: -50px;
  width: 68px;
  -webkit-animation-name: kakukaku02;
          animation-name: kakukaku02;
  -webkit-animation-delay: 400ms;
          animation-delay: 400ms;
  -webkit-animation-duration: 4400ms;
          animation-duration: 4400ms;
}
@media all and (min-width: 751px) {
  .sec_company .texts .illust02 {
    top: -35px;
    right: -60px;
    width: 90px;
  }
}
.sec_company .texts .illust03 {
  bottom: -90px;
  right: 76%;
  width: min(115px, 50%);
  -webkit-animation-name: kakukaku02;
          animation-name: kakukaku02;
  -webkit-animation-delay: 200ms;
          animation-delay: 200ms;
  -webkit-animation-duration: 4400ms;
          animation-duration: 4400ms;
}
@media all and (min-width: 751px) {
  .sec_company .texts .illust03 {
    bottom: 30px;
    right: 100%;
    width: min(140px, 40%);
  }
}
.sec_company .texts .illust04 {
  bottom: -84px;
  left: 60%;
  width: min(150px, 50%);
  -webkit-animation-delay: 600ms;
          animation-delay: 600ms;
}
@media all and (min-width: 751px) {
  .sec_company .texts .illust04 {
    bottom: -36px;
    left: 68%;
    width: min(176px, 50%);
  }
}
.sec_company .sec_ttl {
  text-align: center;
}
@media all and (min-width: 751px) {
  .sec_company .sec_ttl {
    text-align: left;
  }
}
.sec_company .sec_ttl .en {
  margin-bottom: 30px;
}
@media all and (min-width: 751px) {
  .sec_company .sec_ttl .en {
    margin-bottom: 13px;
  }
}
.sec_company .sec_ttl .en img {
  width: min(246px, 80%);
}
@media all and (min-width: 751px) {
  .sec_company .sec_ttl .en img {
    width: min(300px, 100%);
  }
}
.sec_company .sec_ttl .jp {
  font-size: 16px;
  letter-spacing: 0.15em;
}
@media all and (min-width: 751px) {
  .sec_company .sec_ttl .jp {
    font-size: 17px;
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  .sec_company .sec_ttl .jp {
    font-size: 14px;
  }
}
.sec_company .text {
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 2;
  margin-top: 18px;
}
.sec_company .more_btn {
  margin-top: 30px;
}
@media all and (max-width: 750px) {
  .sec_company .more_btn {
    margin-inline: auto;
  }
}
.sec_company .image {
  margin-right: -20px;
}
@media all and (min-width: 751px) {
  .sec_company .image {
    margin-right: -30px;
  }
}

/* projects
---------------------------------------------------------- */
.sec_projects {
  position: relative;
  border-top: 1px solid #222222;
  border-bottom: 12px solid #222222;
  margin-top: 15px;
}
@media all and (min-width: 751px) {
  .sec_projects {
    border-bottom-width: 20px;
  }
}
.sec_projects.js_scroll::after {
  position: absolute;
  content: "";
  inset: 0;
  background-color: #fff;
  z-index: 1;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: 0.75s cubic-bezier(0.76, 0.09, 0.215, 1);
  transition: 0.75s cubic-bezier(0.76, 0.09, 0.215, 1);
}
.sec_projects.js_scroll.scroll_active::after {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.sec_projects .head_area {
  border-bottom: 1px solid #222222;
}
.sec_projects .head_area .wrap {
  width: min(354px, 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
  padding: 23px 0;
}
@media all and (min-width: 751px) {
  .sec_projects .head_area .wrap {
    width: min(1000px, 80%);
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    border-left: 1px solid #222222;
    border-right: 1px solid #222222;
    padding: 0;
  }
}
@media all and (min-width: 751px) {
  .sec_projects .head_area .wrap .sec_ttl {
    display: -ms-grid;
    display: grid;
    place-items: center;
    padding: 24px;
  }
}
.sec_projects .head_area .wrap .sec_ttl img {
  width: min(227px, 100%);
}
@media all and (min-width: 751px) {
  .sec_projects .head_area .wrap .sec_ttl img {
    width: min(628px, 100%);
  }
}
.sec_projects .head_area .wrap .illust {
  width: 60px;
}
@media all and (min-width: 751px) {
  .sec_projects .head_area .wrap .illust {
    width: 14%;
    aspect-ratio: 1;
    display: -ms-grid;
    display: grid;
    place-items: center;
  }
  .sec_projects .head_area .wrap .illust:first-child {
    border-right: 1px solid #222222;
  }
  .sec_projects .head_area .wrap .illust:last-child {
    border-left: 1px solid #222222;
  }
}
.sec_projects .head_area .wrap .illust img {
  -webkit-animation-name: kakukaku;
          animation-name: kakukaku;
  -webkit-animation-duration: 3000ms;
          animation-duration: 3000ms;
  -webkit-animation-timing-function: steps(2, end);
          animation-timing-function: steps(2, end);
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@media all and (min-width: 751px) {
  .sec_projects .head_area .wrap .illust img {
    width: 64.6%;
  }
}
.sec_projects .content_area {
  background: repeating-linear-gradient(-45deg, #666666, #666666 1px, #eaeaea 0, #eaeaea 7px);
}
@media all and (max-width: 750px) {
  .sec_projects .content_area {
    padding-bottom: 90px;
  }
}
.sec_projects .content_area .slide_wrap {
  position: relative;
  margin-inline: auto;
}
@media all and (max-width: 750px) {
  .sec_projects .content_area .slide_wrap {
    background-color: #eaeaea;
    border-bottom: 1px solid #222222;
    padding: 20px;
  }
}
@media all and (min-width: 751px) {
  .sec_projects .content_area .slide_wrap {
    width: min(1000px, 80%);
    border-left: 1px solid #222222;
    border-right: 1px solid #222222;
  }
}
.sec_projects .content_area .slide_wrap .splide__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
}
@media all and (min-width: 751px) {
  .sec_projects .content_area .slide_wrap .splide__slide {
    border-right: 1px solid #222222;
  }
}
.sec_projects .content_area .slide_wrap .splide__slide a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (hover: hover) {
  .sec_projects .content_area .slide_wrap .splide__slide a:hover .texts::before {
    -webkit-transform: translateX(6px);
            transform: translateX(6px);
  }
}
.sec_projects .content_area .slide_wrap .splide__slide .texts {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  padding: 14px 20px 30px;
}
.sec_projects .content_area .slide_wrap .splide__slide .texts::before {
  position: absolute;
  content: "";
  bottom: 18px;
  right: 20px;
  background-image: url(../../images/top/arrow_01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 16/12;
  width: 16px;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.sec_projects .content_area .slide_wrap .splide__slide .texts .number {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 1;
  background-color: #222222;
  border-radius: 3px;
  padding: 2px 8px 1px;
  margin-bottom: 10px;
}
.sec_projects .content_area .slide_wrap .splide__slide .texts .number span {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-weight: 600;
  font-size: 1.33em;
  margin-left: 0.3em;
}
.sec_projects .content_area .slide_wrap .splide__slide .texts .ttl {
  font-size: 15px;
  letter-spacing: 0.08em;
}
.sec_projects .content_area .slide_wrap .splide__arrows {
  position: absolute;
  z-index: 1;
  top: calc(100% + 40px);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  pointer-events: none;
}
@media all and (min-width: 751px) {
  .sec_projects .content_area .slide_wrap .splide__arrows {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: calc(100% + 140px);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.sec_projects .content_area .slide_wrap .splide__arrow {
  display: -ms-grid;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  width: 50px;
  background-color: #fff;
  border: 1px solid #222222;
  border-radius: 50%;
  pointer-events: auto;
}
.sec_projects .content_area .slide_wrap .splide__arrow > svg {
  display: none;
}
.sec_projects .content_area .slide_wrap .splide__arrow::after {
  content: "";
  aspect-ratio: 1;
  width: 20%;
  border-style: solid;
  border-color: #222222;
  border-width: 1.5px 1.5px 0 0;
}
.sec_projects .content_area .slide_wrap .splide__arrow--prev::after {
  -webkit-transform: translateX(25%) rotate(-135deg);
          transform: translateX(25%) rotate(-135deg);
}
.sec_projects .content_area .slide_wrap .splide__arrow--next::after {
  -webkit-transform: translateX(-25%) rotate(45deg);
          transform: translateX(-25%) rotate(45deg);
}
@media (hover: hover) {
  .sec_projects .content_area .slide_wrap .splide__arrow {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .sec_projects .content_area .slide_wrap .splide__arrow:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.sec_projects .content_area .slide_wrap .splide:not(.is-active) .splide__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sec_projects .content_area .slide_wrap .splide:not(.is-active) .splide__slide {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* interview
---------------------------------------------------------- */
.sec_interview {
  position: relative;
  padding: 50px 0 40px;
}
@media all and (min-width: 751px) {
  .sec_interview {
    padding: 76px 0 90px;
  }
}
.sec_interview.js_scroll::after {
  position: absolute;
  content: "";
  inset: 0;
  background-color: #fff;
  z-index: 1;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transition: 0.75s cubic-bezier(0.76, 0.09, 0.215, 1);
  transition: 0.75s cubic-bezier(0.76, 0.09, 0.215, 1);
}
.sec_interview.js_scroll.scroll_active::after {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}
.sec_interview .sec_ttl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  text-align: center;
}
.sec_interview .sec_ttl .en {
  position: relative;
  width: min(281px, 90%);
}
@media all and (min-width: 751px) {
  .sec_interview .sec_ttl .en {
    width: min(377px, 60%);
  }
}
.sec_interview .sec_ttl .en::before {
  position: absolute;
  content: "";
  background-image: url(../../images/top/interview_star_01_sp.svg);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 34/43;
  width: 34px;
  top: 90%;
  right: 100%;
}
@media all and (min-width: 751px) {
  .sec_interview .sec_ttl .en::before {
    background-image: url(../../images/top/interview_star_01_pc.svg);
    aspect-ratio: 49/45;
    width: 49px;
    top: 50%;
    right: 110%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.sec_interview .sec_ttl .en::after {
  position: absolute;
  content: "";
  background-image: url(../../images/top/interview_star_02_sp.svg);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 45/47;
  width: 45px;
  top: 80%;
  left: 95%;
}
@media all and (min-width: 751px) {
  .sec_interview .sec_ttl .en::after {
    background-image: url(../../images/top/interview_star_02_pc.svg);
    aspect-ratio: 64/44;
    width: 64px;
    top: 50%;
    left: 110%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.sec_interview .sec_ttl .jp {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.17em;
  background-color: #222222;
  border-radius: 3px;
  padding: 2px 10px;
}
@media all and (min-width: 751px) {
  .sec_interview .sec_ttl .jp {
    font-size: 15px;
    padding: 2px 12px;
  }
}
.sec_interview .slide_wrap {
  position: relative;
}
.sec_interview .slide_wrap .splide__track {
  padding-bottom: 20px;
}
@media all and (min-width: 961px) {
  .sec_interview .slide_wrap .splide__track {
    overflow: visible;
  }
}
@media all and (min-width: 751px) {
  .sec_interview .slide_wrap .splide__slide:nth-child(2n) {
    margin-top: 60px;
  }
}
.sec_interview .slide_wrap .splide__slide a {
  position: relative;
  display: block;
}
@media (hover: hover) {
  .sec_interview .slide_wrap .splide__slide a .image {
    overflow: hidden;
  }
  .sec_interview .slide_wrap .splide__slide a img {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .sec_interview .slide_wrap .splide__slide a:hover img {
    -webkit-transform: scale(1.07);
            transform: scale(1.07);
  }
}
.sec_interview .slide_wrap .splide__slide .image {
  overflow: hidden;
  border: 1.5px solid #222222;
  border-radius: 25px;
}
.sec_interview .slide_wrap .splide__slide .texts {
  position: absolute;
  bottom: -20px;
  right: -20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #a3ced6;
  border: 1.5px solid #222222;
  border-radius: 15px;
  padding: 10px 16px 10px 18px;
}
.sec_interview .slide_wrap .splide__slide .texts .position {
  font-weight: bold;
  font-size: 15px;
}
.sec_interview .slide_wrap .splide__slide .texts .name {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: bold;
  font-size: 29px;
  margin-left: 10px;
}
.sec_interview .slide_wrap .splide__slide .texts .arrow {
  width: 26px;
  margin-left: 8px;
}
.sec_interview .slide_wrap .splide__arrows {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: min(264px, 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none;
}
@media all and (min-width: 751px) {
  .sec_interview .slide_wrap .splide__arrows {
    width: 100%;
  }
}
.sec_interview .slide_wrap .splide__arrows .splide__arrow {
  display: -ms-grid;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  width: 50px;
  background-color: #fff;
  border: 1px solid #222222;
  border-radius: 50%;
  pointer-events: auto;
}
.sec_interview .slide_wrap .splide__arrows .splide__arrow > svg {
  display: none;
}
.sec_interview .slide_wrap .splide__arrows .splide__arrow::after {
  content: "";
  aspect-ratio: 1;
  width: 20%;
  border-style: solid;
  border-color: #222222;
  border-width: 1.5px 1.5px 0 0;
}
.sec_interview .slide_wrap .splide__arrows .splide__arrow--prev {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.sec_interview .slide_wrap .splide__arrows .splide__arrow--prev::after {
  -webkit-transform: translateX(25%) rotate(-135deg);
          transform: translateX(25%) rotate(-135deg);
}
@media (hover: hover) {
  .sec_interview .slide_wrap .splide__arrows .splide__arrow--prev {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .sec_interview .slide_wrap .splide__arrows .splide__arrow--prev:hover {
    -webkit-transform: translateX(-50%) scale(1.1);
            transform: translateX(-50%) scale(1.1);
  }
}
.sec_interview .slide_wrap .splide__arrows .splide__arrow--next {
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
.sec_interview .slide_wrap .splide__arrows .splide__arrow--next::after {
  -webkit-transform: translateX(-25%) rotate(45deg);
          transform: translateX(-25%) rotate(45deg);
}
@media (hover: hover) {
  .sec_interview .slide_wrap .splide__arrows .splide__arrow--next {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .sec_interview .slide_wrap .splide__arrows .splide__arrow--next:hover {
    -webkit-transform: translateX(50%) scale(1.1);
            transform: translateX(50%) scale(1.1);
  }
}
.sec_interview .slide_wrap .splide__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
}
@media all and (min-width: 751px) {
  .sec_interview .slide_wrap .splide__pagination {
    gap: 9px;
  }
}
.sec_interview .slide_wrap .splide__pagination > li {
  font-size: 0;
}
.sec_interview .slide_wrap .splide__pagination__page {
  aspect-ratio: 1;
  width: 15px;
  border-radius: 50%;
  background-color: #fff;
  border: 1.5px solid #222222;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media all and (min-width: 751px) {
  .sec_interview .slide_wrap .splide__pagination__page {
    width: 11px;
  }
}
.sec_interview .slide_wrap .splide__pagination__page.is-active {
  background-color: #222222;
}
.sec_interview .slide_wrap .splide:not(.is-active) .splide__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5%;
}
.sec_interview .slide_wrap .splide:not(.is-active) .splide__slide {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.sec_interview .slide_wrap .splide.is-active {
  margin-top: 26px;
}
.sec_interview .slide_wrap .splide.is-active .splide__track {
  padding-top: 26px;
}
.sec_interview .all_btn {
  margin-top: 40px;
}
@media all and (min-width: 751px) {
  .sec_interview .all_btn {
    margin-top: 54px;
  }
}
.sec_interview .illust_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  pointer-events: none;
}
@media all and (max-width: 750px) {
  .sec_interview .illust_list {
    margin-inline: calc(50% - 50vw);
  }
}
@media all and (min-width: 751px) {
  .sec_interview .illust_list {
    position: absolute;
    bottom: 34px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: min(1100px, 100%);
  }
}
.sec_interview .illust_item img {
  -webkit-animation: kakukaku 3.4s steps(2, end) infinite 1s;
          animation: kakukaku 3.4s steps(2, end) infinite 1s;
}
.sec_interview .illust_item:nth-child(1) {
  width: min(177px, 32.2%);
}
@media all and (min-width: 751px) {
  .sec_interview .illust_item:nth-child(1) {
    width: min(177px, 16%);
  }
}
.sec_interview .illust_item:nth-child(2) {
  width: min(119px, 24.2%);
  -webkit-transform: translateX(-6px);
          transform: translateX(-6px);
  margin-right: auto;
  margin-bottom: 8px;
}
@media all and (min-width: 751px) {
  .sec_interview .illust_item:nth-child(2) {
    width: min(119px, 12%);
  }
}
.sec_interview .illust_item:nth-child(2) img {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.sec_interview .illust_item:nth-child(3) {
  width: min(140px, 28.6%);
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  margin-left: auto;
}
@media all and (min-width: 751px) {
  .sec_interview .illust_item:nth-child(3) {
    width: min(140px, 12%);
  }
}
.sec_interview .illust_item:nth-child(3) img {
  -webkit-animation-duration: 3.2s;
          animation-duration: 3.2s;
}
.sec_interview .illust_item:nth-child(4) {
  width: min(190px, 36.7%);
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
@media all and (min-width: 751px) {
  .sec_interview .illust_item:nth-child(4) {
    width: min(190px, 16%);
  }
}
.sec_interview .illust_item:nth-child(4) img {
  -webkit-animation-duration: 4.2s;
          animation-duration: 4.2s;
}

/* crosstalk
---------------------------------------------------------- */
.sec_crosstalk {
  position: relative;
  background-color: #a3ced6;
  border-top: 1px solid #222222;
  padding: 50px 0;
}
@media all and (min-width: 751px) {
  .sec_crosstalk {
    padding: 70px 0;
  }
}
.sec_crosstalk.js_scroll::after {
  position: absolute;
  content: "";
  inset: 0;
  background-color: #fff;
  z-index: 1;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: 0.75s cubic-bezier(0.76, 0.09, 0.215, 1);
  transition: 0.75s cubic-bezier(0.76, 0.09, 0.215, 1);
}
.sec_crosstalk.js_scroll.scroll_active::after {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
@media all and (max-width: 750px) {
  .sec_crosstalk .inner {
    --inner_padding: 40px;
  }
}
@media all and (min-width: 751px) {
  .sec_crosstalk .inner {
    max-width: 1200px;
  }
}
.sec_crosstalk .row_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media all and (min-width: 751px) {
  .sec_crosstalk .row_wrap {
    position: relative;
    z-index: 1;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.sec_crosstalk .row_wrap .texts {
  position: relative;
}
@media all and (min-width: 751px) {
  .sec_crosstalk .row_wrap .texts {
    width: 100%;
  }
}
.sec_crosstalk .row_wrap .texts::before {
  position: absolute;
  content: "";
  background-image: url(../../images/top/crosstalk_illust_02.png);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 128/148;
  width: 54px;
  bottom: -16px;
  left: 71%;
}
@media all and (min-width: 751px) {
  .sec_crosstalk .row_wrap .texts::before {
    width: 60px;
    left: calc(154px + 6%);
  }
}
.sec_crosstalk .row_wrap .texts .sec_ttl {
  margin-bottom: 18px;
}
.sec_crosstalk .row_wrap .texts .sec_ttl .en {
  width: min(202px, 80%);
  margin-bottom: 18px;
}
@media all and (min-width: 751px) {
  .sec_crosstalk .row_wrap .texts .sec_ttl .en {
    width: min(267px, 34%);
    margin-bottom: 23px;
  }
}
.sec_crosstalk .row_wrap .texts .sec_ttl .jp {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.17em;
  background-color: #222222;
  border-radius: 3px;
  padding: 2px 10px;
}
@media all and (min-width: 751px) {
  .sec_crosstalk .row_wrap .texts .sec_ttl .jp {
    font-size: 15px;
    padding: 2px 12px;
  }
}
.sec_crosstalk .row_wrap .texts .copy_wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.sec_crosstalk .row_wrap .texts .copy_wrap .illust {
  position: absolute;
  width: 108px;
  top: 10px;
  right: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  z-index: -1;
}
@media all and (min-width: 751px) {
  .sec_crosstalk .row_wrap .texts .copy_wrap .illust {
    right: 65%;
    width: min(114px, 16%);
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  .sec_crosstalk .row_wrap .texts .copy_wrap .illust {
    right: 62%;
    width: 12%;
  }
}
.sec_crosstalk .row_wrap .texts .copy_wrap .illust.js_scroll {
  overflow: hidden;
}
.sec_crosstalk .row_wrap .texts .copy_wrap .illust.js_scroll img {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.4s 0.5s;
  transition: -webkit-transform 0.4s 0.5s;
  transition: transform 0.4s 0.5s;
  transition: transform 0.4s 0.5s, -webkit-transform 0.4s 0.5s;
}
.sec_crosstalk .row_wrap .texts .copy_wrap .illust.js_scroll.scroll_active img {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.sec_crosstalk .row_wrap .texts .copy {
  font-size: 18px;
  letter-spacing: 0.06em;
  line-height: 2;
}
@media all and (min-width: 751px) {
  .sec_crosstalk .row_wrap .texts .copy {
    font-size: 26px;
  }
}
.sec_crosstalk .row_wrap .texts .copy span {
  display: inline;
  background-color: #fff;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 2px 5px;
}
@media all and (min-width: 751px) {
  .sec_crosstalk .row_wrap .texts .copy span {
    padding: 2px 10px;
  }
}
.sec_crosstalk .row_wrap .more_btn {
  --bg_color: #fff;
}
@media all and (min-width: 751px) {
  .sec_crosstalk .row_wrap .image {
    position: absolute;
    top: 0;
    right: 0;
    width: 64%;
    z-index: -1;
  }
}
.sec_crosstalk .row_wrap .image img {
  border-radius: 15px;
  border: 1px solid #222222;
}
@media all and (min-width: 751px) {
  .sec_crosstalk .row_wrap .image img {
    border-radius: 30px;
  }
}

/* culture
---------------------------------------------------------- */
.sec_culture {
  --inner_padding: 40px;
  position: relative;
  border-top: 1px solid #222222;
  padding: 60px 0;
}
@media all and (min-width: 751px) {
  .sec_culture {
    --inner_padding: 80px;
    padding: 100px 0 120px;
  }
}
.sec_culture.js_scroll::after {
  position: absolute;
  content: "";
  inset: 0;
  background-color: #fff;
  z-index: 1;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: 0.75s cubic-bezier(0.76, 0.09, 0.215, 1);
  transition: 0.75s cubic-bezier(0.76, 0.09, 0.215, 1);
}
.sec_culture.js_scroll.scroll_active::after {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.sec_culture .row_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media all and (min-width: 751px) {
  .sec_culture .row_wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8%;
  }
  .sec_culture .row_wrap .texts {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .sec_culture .row_wrap .image {
    width: 54.5%;
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  .sec_culture .row_wrap {
    gap: 30px;
  }
}
.sec_culture .sec_ttl {
  text-align: center;
}
@media all and (min-width: 751px) {
  .sec_culture .sec_ttl {
    text-align: left;
  }
}
.sec_culture .sec_ttl .en {
  margin-bottom: 20px;
}
@media all and (min-width: 751px) {
  .sec_culture .sec_ttl .en {
    margin-bottom: 14px;
  }
}
.sec_culture .sec_ttl .en img {
  width: min(264px, 80%);
}
.sec_culture .sec_ttl .jp {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.17em;
  background-color: #222222;
  border-radius: 3px;
  padding: 2px 10px;
}
@media all and (max-width: 750px) {
  .sec_culture .sec_ttl .jp {
    margin-inline: auto;
  }
}
@media all and (min-width: 751px) {
  .sec_culture .sec_ttl .jp {
    font-size: 15px;
    padding: 2px 12px;
  }
}
.sec_culture .text {
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 2;
  margin-top: 18px;
}
.sec_culture .more_btn {
  margin-top: 30px;
}
@media all and (max-width: 750px) {
  .sec_culture .more_btn {
    margin-inline: auto;
  }
}
.sec_culture .image {
  margin-left: -10px;
}
@media all and (min-width: 751px) {
  .sec_culture .image {
    margin-left: -30px;
  }
}