@charset "UTF-8";
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  margin-top: 0 !important; }

.top {
  /*modal*/ }
  .top .section__title {
    font-size: clamp(32px, 3vw, 60px);
    font-weight: 400;
    padding-left: 2rem; }
    @media screen and (max-width: 834px) {
      .top .section__title {
        font-size: clamp(28px, 3vw, 34px);
        padding-left: 0rem; } }
    .top .section__title a {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 0 3rem; }
      @media screen and (max-width: 834px) {
        .top .section__title a {
          gap: 0 2rem; } }
  .top .section__sub-title {
    margin-top: clamp(15rem, 16vw, 25rem);
    font-size: clamp(25px, 3vw, 42px);
    line-height: 1.2;
    font-weight: 700; }
    .top .section__sub-title span {
      display: block; }
  .top .section__message {
    text-align: right;
    font-size: clamp(20px, 2.5vw, 32px); }
    @media screen and (max-width: 834px) {
      .top .section__message {
        font-size: clamp(18px, 2.5vw, 24px); } }
  .top .section__text {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.8; }
    @media screen and (max-width: 834px) {
      .top .section__text {
        font-size: 14px; } }
  .top .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 1, 1, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease; }
  .top .modal.show {
    display: block;
    opacity: 1; }
  .top .modal__content {
    max-height: 80vh;
    overflow-y: auto;
    margin: 7.6rem auto 0;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(-30px);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column; }
  .top .modal.show .modal__content {
    transform: translateY(0); }
  .top .modal__content.large {
    max-width: 1000px; }
  .top .modal__content.small {
    max-width: 500px; }
  .top .close {
    font-family: "Oswald", sans-serif;
    color: #010101;
    float: right;
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    cursor: pointer;
    width: 200px;
    border: 2px solid #000000;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    transition: all 0.3s ease;
    margin: 3.4rem auto 0; }
  .top .close:hover {
    color: #fff;
    background-color: #000; }
  .top .mv {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    height: 100vh;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0 auto;
    pointer-events: none;
    /* レスポンシブ対応 */
    /* 人物レイヤー */
    /* 帯レイヤー */ }
    @media screen and (max-width: 834px) {
      .top .mv {
        background: url("../img/top/mv-bg-sp.webp") center no-repeat;
        background-size: cover; } }
    .top .mv::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 5;
      backdrop-filter: blur(var(--blur, 0px));
      background-color: rgba(0, 0, 0, var(--darkness, 0));
      transition: backdrop-filter 0.3s ease, background-color 0.3s ease;
      pointer-events: none; }
    .top .mv .text-layer {
      position: absolute;
      bottom: 0;
      z-index: 4;
      right: 5%; }
      @media screen and (max-width: 834px) {
        .top .mv .text-layer {
          right: auto;
          left: 0;
          bottom: 9%; } }
    .top .mv .main-title {
      font-size: clamp(120px, 19vh, 200px);
      font-weight: 400;
      line-height: 1;
      font-family: "Anton", sans-serif; }
      @media screen and (max-width: 834px) {
        .top .mv .main-title {
          font-size: clamp(100px, 8vh, 120px); } }
    .top .mv .sub-title {
      position: absolute;
      bottom: 54%;
      left: 34%;
      max-width: 450px;
      height: auto;
      width: 90%; }
      @media screen and (max-width: 834px) {
        .top .mv .sub-title {
          bottom: auto;
          top: 16%;
          z-index: 4;
          left: auto;
          right: 6px;
          max-width: 200px;
          width: fit-content; } }
    .top .mv .mv-slider {
      position: relative;
      width: 100%;
      height: 100%;
      /* iOS対応：transform-styleを追加 */
      transform-style: preserve-3d; }
      @media screen and (max-width: 834px) {
        .top .mv .mv-slider {
          margin-top: 20vh;
          height: 50vh; } }
    .top .mv .slider-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      transition: opacity 3s ease-in-out;
      /* iOS対応：GPUアクセラレーションを有効化 */
      transform: translateZ(0);
      will-change: opacity; }
      .top .mv .slider-bg picture {
        display: block;
        max-width: 100%;
        height: 100%; }
    .top .mv .slider-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      z-index: 0;
      /* iOS対応：レイヤー合成を強制 */
      transform: translateZ(0);
      will-change: opacity, transform;
      -webkit-transform: translateZ(0);
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden; }
    .top .mv .slider-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      /* iOS対応：画像もGPUアクセラレーション */
      transform: translateZ(0);
      -webkit-transform: translateZ(0); }
      @media screen and (max-width: 834px) {
        .top .mv .slider-img img {
          object-position: top; } }
    @media screen and (max-width: 834px) {
      .top .mv .slider-img3 img {
        object-position: center; } }
    @media screen and (max-width: 834px) {
      .top .mv .slider-img picture source {
        display: block; } }
    .top .mv .slider-img-layer {
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 100%;
      z-index: 3;
      /* iOS対応：レイヤー合成を強制 */
      transform: translateZ(0);
      will-change: transform; }
    .top .mv .slider-img-layer picture {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
      color: white;
      font-size: 18px;
      text-align: center; }
    .top .mv .slider-band-layer {
      position: absolute;
      inset: 0;
      z-index: 2;
      overflow: hidden;
      /* iOS対応：レイヤー合成を強制 */
      transform: translateZ(0);
      will-change: transform;
      -webkit-transform: translateZ(0); }
    .top .mv .slider-band-layer img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%);
      /* iOS対応：アニメーション最適化 */
      transform: translateZ(0);
      will-change: clip-path;
      -webkit-transform: translateZ(0); }
@keyframes revealDiagonal {
  0% {
    clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%); }
  50% {
    clip-path: polygon(0 100%, 0 0, 0 0, 0 100%); }
  100% {
    clip-path: polygon(0 100%, 0 0, 100% 0, 100% 100%); } }
    .top .mv .slider-img.active .slider-band-layer.dynamic img {
      animation: revealDiagonal 1s ease forwards; }
  .top .message {
    overflow: hidden;
    position: relative;
    z-index: 3;
    margin-top: 100vh;
    padding: 100rem 0 0;
    background-image: linear-gradient(to bottom, rgba(65, 65, 65, 0) 0%, rgba(33, 33, 33, 0.9) 40%);
    pointer-events: none; }
    @media screen and (max-width: 834px) {
      .top .message {
        padding: 2rem 0 0;
        margin-top: 110vh; } }
    .top .message__body {
      display: flex;
      max-width: 1500px;
      justify-content: space-between;
      padding-top: 10rem; }
      @media screen and (max-width: 834px) {
        .top .message__body {
          flex-direction: column; } }
    .top .message__title {
      width: 49%;
      display: flex;
      max-width: 540px;
      align-items: flex-start;
      justify-content: center; }
      @media screen and (max-width: 834px) {
        .top .message__title {
          justify-content: flex-start;
          width: 80%;
          max-width: 300px; } }
    .top .message__info {
      width: 49%;
      position: relative; }
      @media screen and (max-width: 834px) {
        .top .message__info {
          width: 100%; } }
    .top .message__info--image {
      width: fit-content;
      margin: 0 0 0 auto; }
      @media screen and (max-width: 834px) {
        .top .message__info--image {
          margin: -32% -5% 0 auto;
          width: 38%; } }
    .top .message .section__sub-title {
      margin-top: clamp(15rem, 16vw, 25rem);
      font-size: clamp(30px, 3vw, 42px);
      line-height: 1.2;
      font-weight: 700; }
      @media screen and (max-width: 834px) {
        .top .message .section__sub-title {
          margin-top: clamp(5rem, 9vw, 10rem);
          font-size: clamp(26px, 5vw, 30px); } }
    .top .message .text-box {
      margin: 5rem 0 0 auto;
      display: flex;
      flex-direction: column;
      gap: 5rem 0; }
      @media screen and (max-width: 834px) {
        .top .message .text-box {
          margin: 3.5rem auto 0;
          gap: 3rem 0; } }
    .top .message .section__text {
      line-height: 2.3; }
      @media screen and (max-width: 834px) {
        .top .message .section__text {
          line-height: 1.8;
          font-size: 15px; } }
    .top .message .message__ribbon-wrap {
      width: 100%;
      position: relative;
      inset: 0;
      z-index: 2;
      overflow: hidden;
      height: clamp(90vh, 8vw, 100vh); }
      @media screen and (max-width: 834px) {
        .top .message .message__ribbon-wrap {
          height: clamp(28vh, 48vw, 90vh);
          margin-top: 3rem; } }
    .top .message .message__ribbon1,
    .top .message .message__ribbon2 {
      position: absolute;
      inset: 0;
      width: 100%;
      height: auto;
      object-fit: cover;
      clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%); }
    .top .message .message__ribbon1.active {
      animation: revealDiagonal2 1s ease forwards; }
    .top .message .message__ribbon2.active {
      animation: revealDiagonal2 1s 0.8s ease forwards; }
@keyframes revealDiagonal2 {
  0% {
    clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%); }
  50% {
    clip-path: polygon(0 100%, 0 0, 0 0, 0 100%); }
  100% {
    clip-path: polygon(0 100%, 0 0, 100% 0, 100% 100%); } }
  .top .who-we-are {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 17rem 0; }
    @media screen and (max-width: 834px) {
      .top .who-we-are {
        height: auto;
        padding: 5rem 0; } }
    .top .who-we-are__bg {
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      overflow: hidden; }
      .top .who-we-are__bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    .top .who-we-are .section__lead {
      writing-mode: vertical-rl;
      display: flex;
      gap: 0 1rem; }
      @media screen and (max-width: 834px) {
        .top .who-we-are .section__lead {
          font-size: 15px;
          align-items: center;
          writing-mode: horizontal-tb; }
          .top .who-we-are .section__lead img {
            width: 20px;
            height: auto; } }
    .top .who-we-are__contents {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: space-between;
      align-items: flex-start; }
      @media screen and (max-width: 834px) {
        .top .who-we-are__contents {
          height: 100%;
          gap: 3rem 0;
          flex-direction: column; } }
    .top .who-we-are__main {
      width: 50%;
      display: flex;
      align-items: flex-start;
      gap: 0 3rem; }
      @media screen and (max-width: 834px) {
        .top .who-we-are__main {
          width: 100%;
          flex-direction: column; } }
    .top .who-we-are__title {
      font-size: clamp(60px, 7vw, 90px);
      font-weight: 700;
      line-height: 1.2; }
      @media screen and (max-width: 834px) {
        .top .who-we-are__title {
          font-size: clamp(40px, 10vw, 60px); } }
      .top .who-we-are__title span.lead {
        display: flex;
        font-size: clamp(28px, 4vw, 42px); }
        @media screen and (max-width: 834px) {
          .top .who-we-are__title span.lead {
            font-size: clamp(20px, 5vw, 28px); } }
    .top .who-we-are__info {
      margin-top: clamp(14rem, 16vw, 22rem);
      width: 50%; }
      @media screen and (max-width: 834px) {
        .top .who-we-are__info {
          width: 100%;
          margin-top: 0; } }
    .top .who-we-are .section__modal {
      background: transparent;
      color: white;
      width: 290px;
      border: 1px solid #fff;
      padding: 25px 50px;
      font-size: 18px;
      font-weight: bold;
      line-height: 1;
      border-radius: 35px;
      cursor: pointer;
      transition: all 0.3s ease;
      margin: 3rem 0 0; }
      @media screen and (max-width: 834px) {
        .top .who-we-are .section__modal {
          font-size: 14px;
          padding: 10px 0;
          width: 250px;
          margin: 3rem auto 0; }
          .top .who-we-are .section__modal span.button-text-wrapper {
            height: 35px; } }
    .top .who-we-are .section__modal:hover {
      background: #fff;
      color: #000000; }
  .top #sdgs__modal .modal__content {
    background-color: #FFFFFF;
    padding: 4.5rem 2.5%;
    flex-direction: column; }
    @media screen and (max-width: 834px) {
      .top #sdgs__modal .modal__content {
        padding: 2rem 5%; } }
  .top #sdgs__modal .modal__title {
    background: linear-gradient(to right, #FF3057, #D8133A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem; }
    @media screen and (max-width: 834px) {
      .top #sdgs__modal .modal__title {
        font-size: 22px;
        margin-bottom: 1.5rem; } }
  .top #sdgs__modal .modal__picture {
    position: relative; }
    .top #sdgs__modal .modal__picture img {
      width: 100%; }
    .top #sdgs__modal .modal__picture img.modal__picture__logo {
      position: absolute;
      bottom: 2rem;
      left: 3%;
      width: fit-content; }
      @media screen and (max-width: 834px) {
        .top #sdgs__modal .modal__picture img.modal__picture__logo {
          width: 60%;
          max-width: 200px; } }
  .top #sdgs__modal .modal__sub-title {
    background: linear-gradient(to right, #FF3057, #D8133A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 21px;
    font-weight: 700;
    text-align: center;
    margin-top: 3rem; }
    @media screen and (max-width: 834px) {
      .top #sdgs__modal .modal__sub-title {
        font-size: 17px;
        font-weight: 700;
        margin-top: 2rem;
        text-align: justify; } }
  .top #sdgs__modal .modal__text {
    font-size: 18px;
    font-weight: 700;
    color: #010101;
    margin-top: 4rem;
    line-height: 1.6; }
    @media screen and (max-width: 834px) {
      .top #sdgs__modal .modal__text {
        font-size: 14px;
        margin-top: 2rem; } }
  .top #sdgs__modal .close {
    background: transparent;
    line-height: 1.2; }
  .top #sdgs__modal .close:hover {
    color: #fff;
    background-color: #000; }
  .top .our-work {
    position: relative;
    /* スライド内の画像 */
    /* 帯アニメーション */ }
    .top .our-work__lead {
      overflow: hidden;
      padding: 10rem 0 0;
      position: relative;
      z-index: 3;
      background: url("../img/top/work-bg.webp") center no-repeat;
      background-size: cover; }
      @media screen and (max-width: 834px) {
        .top .our-work__lead {
          padding: 6rem 0 0; } }
      .top .our-work__lead .title-box__upper {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin: 0 auto; }
        @media screen and (max-width: 834px) {
          .top .our-work__lead .title-box__upper {
            flex-direction: column;
            align-items: center;
            gap: 0.8rem 0; } }
      .top .our-work__lead .our-work__catch {
        font-size: clamp(48px, 5vw, 78px);
        width: 41%;
        font-weight: 700;
        line-height: 1;
        display: flex;
        flex-direction: column;
        align-items: self-end; }
        @media screen and (max-width: 834px) {
          .top .our-work__lead .our-work__catch {
            width: 100%;
            align-items: center;
            font-size: clamp(40px, 9vw, 50px); } }
      .top .our-work__lead .catch1 {
        padding-right: 2rem;
        display: flex;
        align-items: flex-end; }
        @media screen and (max-width: 834px) {
          .top .our-work__lead .catch1 {
            padding: 0; } }
        .top .our-work__lead .catch1 span {
          font-size: clamp(20px, 2vw, 38px); }
          @media screen and (max-width: 834px) {
            .top .our-work__lead .catch1 span {
              font-size: 20px; } }
      .top .our-work__lead .our-work__title {
        width: 50%;
        font-size: clamp(18px, 3vw, 32px);
        font-weight: 700;
        text-align: center; }
        @media screen and (max-width: 834px) {
          .top .our-work__lead .our-work__title {
            font-size: clamp(18px, 3vw, 32px); } }
      .top .our-work__lead .our-work__title-en {
        margin: 1rem auto 4rem;
        text-align: center;
        font-size: clamp(150px, 16vw, 260px);
        line-height: 1; }
        @media screen and (max-width: 834px) {
          .top .our-work__lead .our-work__title-en {
            font-size: clamp(75px, 16vw, 150px);
            margin: 1rem auto 3rem; } }
      .top .our-work__lead .our-work__main {
        margin-top: 8rem;
        display: flex;
        align-items: center;
        justify-content: space-between; }
        @media screen and (max-width: 834px) {
          .top .our-work__lead .our-work__main {
            flex-direction: column;
            gap: 3rem 0;
            margin-top: 4rem; } }
      .top .our-work__lead .our-work__sub-title {
        width: 48%;
        font-size: clamp(40px, 5vw, 60px);
        font-weight: 700;
        line-height: 1; }
        @media screen and (max-width: 834px) {
          .top .our-work__lead .our-work__sub-title {
            width: 100%;
            font-size: clamp(30px, 5vw, 40px);
            line-height: 1.3; } }
        .top .our-work__lead .our-work__sub-title span {
          display: block;
          font-size: clamp(20px, 2vw, 24px);
          line-height: 2.1; }
          @media screen and (max-width: 834px) {
            .top .our-work__lead .our-work__sub-title span {
              font-size: 17px; } }
      .top .our-work__lead .our-work__text {
        width: 50%; }
        @media screen and (max-width: 834px) {
          .top .our-work__lead .our-work__text {
            width: 100%; } }
    .top .our-work__slider {
      overflow: hidden;
      width: 100%;
      position: relative;
      z-index: 7;
      /* スライド */ }
      .top .our-work__slider .swiper {
        z-index: 6 !important; }
      .top .our-work__slider .swiper .swiper-wrapper {
        transition-timing-function: linear; }
      .top .our-work__slider .swiper .swiper-slide {
        position: relative;
        z-index: 6 !important;
        height: 320px !important;
        width: auto !important; }
      @media screen and (max-width: 834px) {
        .top .our-work__slider {
          height: 250px !important;
          width: auto !important; } }
    .top .our-work .swiper .swiper-slide img {
      width: auto;
      height: 100%; }
    .top .our-work .swiper-slide {
      width: fit-content; }
    .top .our-work img {
      width: 100%;
      height: auto;
      object-fit: cover; }
    .top .our-work .our-work__ribbon-wrap {
      width: 100%;
      position: relative;
      height: 50vh;
      inset: 0;
      z-index: 2;
      overflow: hidden; }
      @media screen and (max-width: 834px) {
        .top .our-work .our-work__ribbon-wrap {
          height: 17vh; } }
    .top .our-work .our-work__ribbon1 {
      position: absolute;
      inset: 0;
      width: 100%;
      height: auto;
      object-fit: cover;
      clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%); }
    .top .our-work .our-work__ribbon1.active {
      animation: revealDiagonal3 1s ease forwards; }
@keyframes revealDiagonal3 {
  0% {
    clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%); }
  50% {
    clip-path: polygon(0 100%, 0 0, 0 0, 0 100%); }
  100% {
    clip-path: polygon(0 100%, 0 0, 100% 0, 100% 100%); } }
    .top .our-work .our-work__lower-box {
      position: relative;
      display: flex;
      background-color: #fff;
      width: 100%;
      z-index: 5;
      flex-direction: row-reverse; }
    .top .our-work__list {
      margin: 0 0 0 auto;
      position: relative;
      z-index: 3;
      color: #000000;
      width: 46%;
      min-height: 500rem; }
      @media screen and (max-width: 1024px) {
        .top .our-work__list {
          width: 60%; } }
      @media screen and (max-width: 834px) {
        .top .our-work__list {
          height: 100%;
          width: 100%;
          margin: 0 auto;
          display: flex;
          flex-direction: column;
          gap: 7rem 0; } }
      @media screen and (max-width: 640px) {
        .top .our-work__list {
          min-height: 360rem; } }
      @media screen and (max-width: 374px) {
        .top .our-work__list {
          min-height: 340rem; } }
      .top .our-work__list .our-work__item {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        position: relative;
        min-height: 100vh;
        clip-path: inset(0);
        z-index: 5; }
        @media screen and (max-width: 834px) {
          .top .our-work__list .our-work__item {
            display: flex;
            flex-direction: column;
            width: 100%;
            min-height: auto;
            grid-row-gap: 2rem; } }
      .top .our-work__list .item__main {
        padding: 10rem 0 16rem;
        position: relative;
        padding-right: 5%;
        z-index: 7; }
        @media screen and (max-width: 834px) {
          .top .our-work__list .item__main {
            width: 90%;
            padding: 0rem 0 5rem; } }
      .top .our-work__list .item__title {
        font-weight: 700;
        font-size: clamp(22px, 3vw, 25px);
        line-height: 1;
        margin: 0 -5% 12rem auto;
        width: fit-content; }
        @media screen and (max-width: 834px) {
          .top .our-work__list .item__title {
            font-size: 18px;
            margin: 0 -5% 4rem auto; } }
        .top .our-work__list .item__title span.item__title-en {
          display: block;
          font-size: clamp(90px, 7vw, 150px); }
          @media screen and (max-width: 834px) {
            .top .our-work__list .item__title span.item__title-en {
              font-size: clamp(60px, 5vw, 90px); } }
      .top .our-work__list .item__message {
        display: none;
        line-height: 1.9;
        margin-bottom: 3rem;
        font-size: clamp(40px, 3vw, 50px);
        font-weight: 700;
        color: #fff;
        transition: 0.2s ease;
        white-space: nowrap;
        width: 0%;
        overflow: hidden; }
        @media screen and (max-width: 834px) {
          .top .our-work__list .item__message {
            font-size: 26px;
            margin-bottom: 1rem; } }
        .top .our-work__list .item__message span {
          background: linear-gradient(to right, #FF3057, #D8133A);
          padding: 6px 10px;
          display: block;
          width: fit-content;
          line-height: 1; }
        .top .our-work__list .item__message span:first-child {
          margin-bottom: 2px; }
      .top .our-work__list .section__text {
        font-size: 16px;
        font-weight: 700;
        line-height: 1.5; }
        @media screen and (max-width: 834px) {
          .top .our-work__list .section__text {
            font-size: 14px; } }
      .top .our-work__list .our-work__item.active .item__message {
        display: block;
        animation: textFadein 0.8s 0.3s forwards linear; }
@keyframes textFadein {
  from {
    width: 0%; }
  to {
    width: 100%; } }
      .top .our-work__list .item__catch {
        font-size: 24px;
        margin-bottom: 3rem; }
        @media screen and (max-width: 834px) {
          .top .our-work__list .item__catch {
            font-size: 16px;
            margin-bottom: 2rem; } }
      .top .our-work__list .item__sub-picture {
        width: 100%;
        margin: 3rem auto 0;
        max-width: 800px; }
        @media screen and (max-width: 834px) {
          .top .our-work__list .item__sub-picture {
            margin: 2rem auto 0; } }
        .top .our-work__list .item__sub-picture img {
          width: 100%;
          display: block; }
    .top .our-work .item__picture.sp {
      display: none; }
      @media screen and (max-width: 834px) {
        .top .our-work .item__picture.sp {
          display: block;
          position: relative;
          width: 100%;
          height: auto; }
          .top .our-work .item__picture.sp img {
            aspect-ratio: 2/1; } }
    .top .our-work .item__picture.pc {
      width: 50%;
      height: 100vh;
      position: sticky;
      top: 0; }
      @media screen and (max-width: 1024px) {
        .top .our-work .item__picture.pc {
          width: 38%; } }
      @media screen and (max-width: 834px) {
        .top .our-work .item__picture.pc {
          display: none;
          position: relative; } }
    .top .our-work .picture-stage {
      position: relative;
      width: 100%;
      height: 100vh; }
      .top .our-work .picture-stage img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
        opacity: 0;
        position: absolute;
        top: 0;
        transition-duration: 0.5s; }
      .top .our-work .picture-stage img.active {
        opacity: 8;
        transition-duration: 0.5s; }
    .top .our-work .sub-picture__description {
      font-size: 32px;
      margin: 4rem 0 2rem;
      background: linear-gradient(to right, #FF3057, #D8133A);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent; }
      @media screen and (max-width: 834px) {
        .top .our-work .sub-picture__description {
          font-size: 20px;
          margin: 3rem 0 1rem; } }
    .top .our-work .sub-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 2rem 0; }
    .top .our-work .sub-item {
      width: 31%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem 0; }
      @media screen and (max-width: 834px) {
        .top .our-work .sub-item {
          width: 48%; } }
    .top .our-work .sub-item__title {
      font-size: 15px; }
      @media screen and (max-width: 834px) {
        .top .our-work .sub-item__title {
          font-size: 13px; } }
  .top .environment {
    padding: 15rem 0 12rem;
    position: relative;
    z-index: 3;
    background: url("../img/top/environment-bg.webp") top no-repeat;
    background-size: cover; }
    @media screen and (max-width: 834px) {
      .top .environment {
        padding: 7rem 0; } }
    .top .environment__upper-box {
      display: flex;
      align-items: center;
      justify-content: space-between; }
      @media screen and (max-width: 834px) {
        .top .environment__upper-box {
          flex-direction: column;
          gap: 3rem 0; } }
    .top .environment__main {
      width: 50%;
      display: flex;
      align-items: flex-start;
      gap: 0 3rem; }
      @media screen and (max-width: 834px) {
        .top .environment__main {
          width: 100%;
          flex-direction: column;
          gap: 1rem 0; } }
    .top .environment .section__lead {
      writing-mode: vertical-rl;
      display: flex;
      align-items: center;
      font-size: 20px;
      gap: 0 1rem; }
      @media screen and (max-width: 834px) {
        .top .environment .section__lead {
          font-size: 15px;
          align-items: center;
          writing-mode: horizontal-tb; }
          .top .environment .section__lead img {
            width: 20px;
            height: auto; } }
    .top .environment__title {
      font-size: clamp(60px, 7vw, 90px);
      font-weight: 700;
      line-height: 1; }
      @media screen and (max-width: 834px) {
        .top .environment__title {
          font-size: clamp(39px, 7vw, 60px);
          line-height: 1.2; } }
      .top .environment__title span.min-text {
        font-size: clamp(40px, 4vw, 70px); }
        @media screen and (max-width: 834px) {
          .top .environment__title span.min-text {
            font-size: clamp(26px, 5vw, 40px); } }
      @media screen and (max-width: 834px) {
        .top .environment__title span.title2 {
          display: block; } }
    .top .environment__info {
      width: 50%; }
      @media screen and (max-width: 834px) {
        .top .environment__info {
          width: 100%; } }
    .top .environment__contents {
      margin-top: 6rem;
      display: flex;
      flex-wrap: wrap;
      gap: 3rem 0;
      justify-content: space-between; }
    .top .environment__item {
      width: 24%;
      position: relative;
      transition: transform 0.8s;
      transform-origin: center center; }
      @media screen and (max-width: 834px) {
        .top .environment__item {
          width: 48%; } }
    .top .environment .item__bg img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .top .environment .item__number {
      position: absolute;
      z-index: 5;
      right: 10%;
      top: 0;
      color: #fff;
      font-size: clamp(38px, 3vw, 60px);
      font-weight: 700; }
      @media screen and (max-width: 834px) {
        .top .environment .item__number {
          font-size: clamp(25px, 5vw, 38px);
          top: 3%; } }
    .top .environment .item__title {
      pointer-events: painted;
      width: 80%;
      font-style: italic;
      text-align: center;
      position: absolute;
      line-height: 1.1;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      font-weight: 700; }
      @media screen and (max-width: 834px) {
        .top .environment .item__title {
          width: 90%; } }
      .top .environment .item__title span.min-text {
        font-size: clamp(23px, 3vw, 45px); }
      .top .environment .item__title span.lead {
        display: block;
        margin-bottom: 0.7rem; }
        @media screen and (max-width: 834px) {
          .top .environment .item__title span.lead {
            margin-bottom: 0.4rem; } }
    .top .environment .vertical {
      width: auto;
      writing-mode: vertical-rl; }
    .top .environment .horizontal {
      writing-mode: horizontal-tb; }
    .top .environment__item:nth-child(1) .item__title {
      font-size: clamp(30px, 3vw, 60px);
      height: 100%;
      line-height: 1.2;
      text-align: left;
      left: 45%;
      display: flex;
      flex-direction: column;
      align-items: center; }
      @media screen and (max-width: 834px) {
        .top .environment__item:nth-child(1) .item__title {
          font-size: clamp(25px, 6vw, 50px); } }
      .top .environment__item:nth-child(1) .item__title span.pt {
        padding-top: clamp(3rem, 3vw, 8rem); }
        @media screen and (max-width: 834px) {
          .top .environment__item:nth-child(1) .item__title span.pt {
            padding-top: clamp(2rem, 5vw, 4rem); } }
    .top .environment__item:nth-child(2) .item__title {
      font-size: clamp(28px, 3vw, 41px);
      top: 43%; }
      @media screen and (max-width: 1024px) {
        .top .environment__item:nth-child(2) .item__title {
          width: 90%; } }
      @media screen and (max-width: 834px) {
        .top .environment__item:nth-child(2) .item__title {
          top: 47%;
          font-size: clamp(23px, 5vw, 50px); } }
    .top .environment__item:nth-child(2) .lead {
      font-size: clamp(16px, 2vw, 28px); }
      @media screen and (max-width: 834px) {
        .top .environment__item:nth-child(2) .lead {
          font-size: 14px; } }
    .top .environment__item:nth-child(3) .item__title {
      top: 41%;
      text-align: left;
      font-size: clamp(28px, 3vw, 48px); }
      @media screen and (max-width: 834px) {
        .top .environment__item:nth-child(3) .item__title {
          font-size: clamp(22px, 6vw, 50px); } }
    .top .environment__item:nth-child(3) .lead {
      font-size: clamp(16px, 2vw, 21px); }
      @media screen and (max-width: 834px) {
        .top .environment__item:nth-child(3) .lead {
          font-size: clamp(14px, 3vw, 28px); } }
    .top .environment__item:nth-child(4) .item__title {
      font-size: clamp(30px, 3vw, 48px);
      height: 70%;
      text-align: left;
      left: 37%;
      top: 46%; }
      @media screen and (max-width: 834px) {
        .top .environment__item:nth-child(4) .item__title {
          font-size: clamp(25px, 7vw, 50px); } }
    .top .environment__item:nth-child(4) .lead {
      font-size: clamp(18px, 2vw, 30px); }
      @media screen and (max-width: 834px) {
        .top .environment__item:nth-child(4) .lead {
          font-size: clamp(15px, 4vw, 28px); } }
    .top .environment__item:nth-child(5) .item__title {
      font-size: clamp(30px, 3vw, 48px);
      top: 40%; }
      @media screen and (max-width: 1024px) {
        .top .environment__item:nth-child(5) .item__title {
          top: 44%; } }
      @media screen and (max-width: 834px) {
        .top .environment__item:nth-child(5) .item__title {
          font-size: clamp(22px, 6vw, 50px); } }
    .top .environment__item:nth-child(5) .lead {
      font-size: clamp(15px, 2vw, 24px); }
      @media screen and (max-width: 834px) {
        .top .environment__item:nth-child(5) .lead {
          font-size: clamp(14px, 4vw, 28px); } }
    .top .environment__item:nth-child(6) .item__title {
      text-align: left;
      font-size: clamp(28px, 3vw, 48px); }
      @media screen and (max-width: 1024px) {
        .top .environment__item:nth-child(6) .item__title {
          top: 52%; } }
      @media screen and (max-width: 834px) {
        .top .environment__item:nth-child(6) .item__title {
          font-size: clamp(22px, 6vw, 50px); } }
    .top .environment__item:nth-child(6) .lead {
      font-size: clamp(17px, 2vw, 24px); }
      @media screen and (max-width: 834px) {
        .top .environment__item:nth-child(6) .lead {
          font-size: clamp(14px, 4vw, 28px); } }
    .top .environment__item:nth-child(7) .item__title {
      top: 42%;
      font-size: clamp(30px, 3vw, 48px); }
      @media screen and (max-width: 1024px) {
        .top .environment__item:nth-child(7) .item__title {
          width: 90%; } }
      @media screen and (max-width: 834px) {
        .top .environment__item:nth-child(7) .item__title {
          font-size: clamp(22px, 6vw, 50px); } }
    .top .environment__item:nth-child(7) .lead {
      font-size: clamp(15px, 1vw, 24px); }
      @media screen and (max-width: 834px) {
        .top .environment__item:nth-child(7) .lead {
          font-size: clamp(13px, 3vw, 21px); } }
    .top .environment__item:nth-child(8) .item__title {
      font-size: clamp(25px, 3vw, 39px);
      text-align: right;
      top: 68%; }
      @media screen and (max-width: 834px) {
        .top .environment__item:nth-child(8) .item__title {
          font-size: clamp(22px, 6vw, 50px); } }
    .top .environment__item:nth-child(8) .lead {
      font-size: clamp(17px, 2vw, 24px); }
      @media screen and (max-width: 834px) {
        .top .environment__item:nth-child(8) .lead {
          font-size: clamp(14px, 4vw, 28px); } }
@keyframes rotateY {
  0% {
    transform: rotateY(0); }
  100% {
    transform: rotateY(360deg); } }
  .top .interview {
    padding: 13rem 0 14rem;
    position: relative;
    z-index: 3;
    background: url("../img/top/interview-bg.webp") top no-repeat;
    background-size: cover; }
    @media screen and (max-width: 834px) {
      .top .interview {
        padding: 7rem 0; } }
    .top .interview__main {
      display: flex;
      align-items: flex-end;
      justify-content: space-between; }
      @media screen and (max-width: 834px) {
        .top .interview__main {
          flex-direction: column;
          align-items: center;
          gap: 1rem 0; } }
    .top .interview .interview__title {
      text-align: center;
      font-size: clamp(110px, 13vw, 180px);
      line-height: 1;
      font-weight: 700; }
      @media screen and (max-width: 834px) {
        .top .interview .interview__title {
          font-size: clamp(84px, 21vw, 110px); } }
    .top .interview__main--text {
      font-size: 24px;
      font-weight: 700;
      line-height: 1.5; }
      @media screen and (max-width: 834px) {
        .top .interview__main--text {
          font-size: 17px; } }
    .top .interview__modal--list {
      margin-top: 5.5rem;
      display: flex;
      align-items: flex-end;
      justify-content: space-between; }
      @media screen and (max-width: 834px) {
        .top .interview__modal--list {
          margin-top: 3rem;
          flex-wrap: wrap;
          flex-direction: row;
          gap: 2rem 0; } }
    .top .interview button {
      background-color: transparent;
      border: transparent; }
    .top .interview__modal--item {
      width: 23%;
      position: relative; }
      @media screen and (max-width: 834px) {
        .top .interview__modal--item {
          width: 48%; } }
    .top .interview .interview__modal--item.active:nth-child(1) {
      transition-delay: 0.2s; }
    .top .interview .interview__modal--item.active:nth-child(2) {
      transition-delay: 0.4s; }
    .top .interview .interview__modal--item.active:nth-child(3) {
      transition-delay: 0.6s; }
    .top .interview .interview__modal--item.active:nth-child(4) {
      transition-delay: 0.8s; }
    .top .interview__modal--item:nth-child(2n + 1) {
      margin-bottom: 6rem; }
      @media screen and (max-width: 834px) {
        .top .interview__modal--item:nth-child(2n + 1) {
          margin-bottom: 5rem; } }
    .top .interview .item__picture img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .top .interview .tag {
      background-color: #000000;
      position: absolute;
      top: 60px;
      right: 5%;
      border-radius: 15.5px;
      color: #fff;
      writing-mode: vertical-rl;
      white-space: nowrap;
      padding: 12px 1px;
      font-size: 18px;
      font-weight: 700;
      line-height: 1.7; }
      @media screen and (max-width: 834px) {
        .top .interview .tag {
          font-size: 13px;
          top: 38px;
          align-items: center;
          display: flex;
          justify-content: center;
          text-align: center; } }
    .top .interview__modal--item:nth-child(2) .tag {
      top: 100px; }
      @media screen and (max-width: 834px) {
        .top .interview__modal--item:nth-child(2) .tag {
          top: 50px; } }
    .top .interview .modal__message {
      position: absolute;
      bottom: 6px;
      left: -2%;
      display: none;
      line-height: 1.9;
      margin-bottom: 3rem;
      font-size: clamp(14px, 2vw, 21px);
      font-weight: 700;
      color: #fff;
      transition: 0.2s ease;
      white-space: nowrap;
      width: 0%;
      overflow: hidden; }
      @media screen and (max-width: 834px) {
        .top .interview .modal__message {
          font-size: 15px;
          margin-bottom: 2rem; } }
      @media screen and (max-width: 400px) {
        .top .interview .modal__message {
          font-size: 12px;
          margin-bottom: 2rem; } }
      .top .interview .modal__message span {
        background: linear-gradient(to right, #FF3057, #D8133A);
        padding: 6px 10px;
        display: block;
        width: fit-content;
        line-height: 1; }
        @media screen and (max-width: 400px) {
          .top .interview .modal__message span {
            padding: 6px 4px; } }
      .top .interview .modal__message span:first-child {
        margin-bottom: 2px; }
    .top .interview .interview__modal--item.active .modal__message {
      display: block;
      animation: textFadein 0.8s 0.3s forwards linear; }
@keyframes textFadein {
  from {
    width: 0%; }
  to {
    width: 100%; } }
  .top .interview__modal {
    display: none; }
    .top .interview__modal.show {
      display: block; }
    .top .interview__modal .modal__content {
      background: url("../img/top/interview-modal-bg.webp") center no-repeat; }
    .top .interview__modal .modal__picture {
      position: relative; }
      .top .interview__modal .modal__picture img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .top .interview__modal .modal__picture-tag {
      background-color: #000000;
      position: absolute;
      top: 20px;
      right: 5%;
      border-radius: 15px;
      color: #fff;
      writing-mode: vertical-rl;
      white-space: nowrap;
      padding: 12px 1px;
      font-size: 18px;
      font-weight: 700;
      line-height: 1.7; }
      @media screen and (max-width: 834px) {
        .top .interview__modal .modal__picture-tag {
          font-size: 13px;
          top: 35px;
          align-items: center;
          display: flex;
          justify-content: center;
          text-align: center; } }
    .top .interview__modal .modal__message {
      position: absolute;
      bottom: -50px;
      left: 0;
      display: none;
      line-height: 1.9;
      margin-bottom: 3rem;
      font-size: 32px;
      font-weight: 700;
      color: #fff;
      transition: 0.2s ease;
      white-space: nowrap;
      width: 0%;
      overflow: hidden; }
      @media screen and (max-width: 834px) {
        .top .interview__modal .modal__message {
          font-size: 25px;
          margin-bottom: 2rem; } }
      .top .interview__modal .modal__message span {
        background: linear-gradient(to right, #FF3057, #D8133A);
        padding: 6px 10px;
        display: block;
        width: fit-content;
        line-height: 1; }
      .top .interview__modal .modal__message span:first-child {
        margin-bottom: 4px; }
    .top .interview__modal .modal__name {
      text-align: center;
      font-size: 12px;
      line-height: 1.2;
      font-weight: 700;
      width: 95%;
      margin: 5.7rem auto 3rem; }
      @media screen and (max-width: 834px) {
        .top .interview__modal .modal__name {
          margin: 5.7rem auto 2rem; } }
      .top .interview__modal .modal__name span {
        font-size: 42px;
        display: block;
        font-weight: 600; }
        @media screen and (max-width: 834px) {
          .top .interview__modal .modal__name span {
            font-size: 35px; } }
    .top .interview__modal .modal__text {
      width: 90%;
      margin: 0 auto; }
    .top .interview__modal .close {
      margin: 2.7rem auto 7rem;
      color: #000;
      border: 2px solid #fff; }
      @media screen and (max-width: 834px) {
        .top .interview__modal .close {
          margin: 2.7rem auto 5rem; } }
    .top .interview__modal .close:hover {
      color: #fff; }
  .top .interview__modal.modal.show .modal__message {
    display: block;
    animation: textFadein2 0.8s 0.3s forwards linear; }
@keyframes textFadein2 {
  from {
    width: 0%; }
  to {
    width: 100%; } }
  .top .requirements {
    color: #030303;
    padding: 12rem 0 13rem;
    background-color: #EFEFEF;
    z-index: 3;
    position: relative; }
    @media screen and (max-width: 834px) {
      .top .requirements {
        padding: 7rem 0;
        scroll-margin-top: -48vh; } }
    @media screen and (max-width: 430px) {
      .top .requirements {
        scroll-margin-top: -50vh; } }
    .top .requirements__contents {
      display: flex;
      justify-content: space-between;
      align-items: flex-start; }
      @media screen and (max-width: 834px) {
        .top .requirements__contents {
          gap: 3rem 0;
          flex-direction: column; } }
    .top .requirements__main {
      width: 48%; }
      @media screen and (max-width: 834px) {
        .top .requirements__main {
          width: 100%; } }
    .top .requirements__title {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 2rem; }
      @media screen and (max-width: 834px) {
        .top .requirements__title {
          font-size: 18px;
          margin-bottom: 1rem; } }
    @media screen and (max-width: 834px) {
      .top .requirements__title-en {
        width: 80%; } }
    .top .requirements .section__text {
      margin-top: 3rem; }
      @media screen and (max-width: 834px) {
        .top .requirements .section__text {
          margin-top: 2rem; } }
    .top .requirements__list {
      width: 45%;
      display: grid;
      grid-template-columns: 100px 1fr; }
      @media screen and (max-width: 834px) {
        .top .requirements__list {
          width: 100%; } }
    .top .requirements__list dt {
      border-bottom: 1px solid #E5E5E5;
      padding: 25px 0;
      font-size: 14px;
      color: #C3152B;
      font-weight: 700; }
      @media screen and (max-width: 834px) {
        .top .requirements__list dt {
          padding: 15px 0; } }
    .top .requirements__list dd {
      border-bottom: 1px solid #E5E5E5;
      padding: 25px 0;
      font-size: 14px;
      font-weight: 400; }
      @media screen and (max-width: 834px) {
        .top .requirements__list dd {
          padding: 15px 0; } }
      .top .requirements__list dd span {
        font-size: 12px; }
