@charset "UTF-8";
/* 
---------------------------------------
WEBフォント追加
---------------------------------------
*/
@font-face {
  font-family: 'Unbounded';
  /*要素に指定するときに使うフォント名*/
  src: url("../fonts/unbounded.woff2") format("woff2"), url("../fonts/unbounded.woff") format("woff");
  font-display: swap; }
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  margin-top: 0 !important; }

/* ローディング画面 */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.8s ease-out; }

.loading--fade-out {
  opacity: 0;
  pointer-events: none; }

/* プログレスバー */
.loading__progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(24, 45, 123, 0.1);
  overflow: hidden; }

.loading__progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #182d7b, #c12c1f, #182d7b);
  background-size: 200% 100%;
  width: 0%;
  animation: progressAnimation 3s ease-out forwards, shimmer 2s ease-in-out infinite; }

@keyframes progressAnimation {
  0% {
    width: 0%; }
  50% {
    width: 70%; }
  100% {
    width: 100%; } }
@keyframes shimmer {
  0% {
    background-position: 200% 0; }
  100% {
    background-position: -200% 0; } }
/* ロゴコンテナ */
.loading__logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: logoEntrance 3s ease-out forwards; }

.loading__logo-img {
  width: 280px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(24, 45, 123, 0.15));
  animation: logoScale 3s ease-out forwards, logoFloat 4s ease-in-out infinite; }
  @media screen and (max-width: 834px) {
    .loading__logo-img {
      width: 220px; } }

@keyframes logoEntrance {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.8); }
  30% {
    opacity: 1;
    transform: translateY(0) scale(1); }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1.1); } }
@keyframes logoScale {
  0% {
    transform: scale(0.8); }
  70% {
    transform: scale(1.05); }
  100% {
    transform: scale(1.1); } }
@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0px) scale(1.1); }
  50% {
    transform: translateY(-5px) scale(1.1); } }
.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__title span.section__title--arrow {
    background-color: #C3152B;
    border-radius: 25px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0; }
    @media screen and (max-width: 834px) {
      .top .section__title span.section__title--arrow {
        width: 50px;
        padding: 5px 0; }
        .top .section__title span.section__title--arrow .material-symbols-outlined {
          font-size: 15px; } }
    .top .section__title span.section__title--arrow span {
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .top .section__title a:hover span.section__title--arrow span {
    transform: translateX(8px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.top .section__sub-title {
  font-size: clamp(48px, 5vw, 90px);
  line-height: 1.2;
  font-weight: 400; }
  @media screen and (max-width: 834px) {
    .top .section__sub-title {
      font-size: clamp(45px, 5vw, 72px); } }
  .top .section__sub-title span {
    display: block;
    font-size: clamp(32px, 3vw, 60px); }
    @media screen and (max-width: 834px) {
      .top .section__sub-title span {
        font-size: clamp(30px, 3vw, 50px); } }
.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: 16px;
  font-weight: 300;
  line-height: 1.8; }
  @media screen and (max-width: 834px) {
    .top .section__text {
      font-size: 14px; } }
.top .mv {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 100vh;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto; }
  .top .mv .grid-lines .grid-lines__line--left {
    top: 93.5px;
    transition-delay: 0.8s; }
    @media screen and (max-width: 834px) {
      .top .mv .grid-lines .grid-lines__line--left {
        top: 0; } }
  .top .mv .grid-lines .grid-lines__line--center {
    transition-delay: 0.8s; }
  .top .mv .grid-lines .grid-lines__line--right {
    top: 93.5px;
    transition-delay: 0.8s; }
    @media screen and (max-width: 834px) {
      .top .mv .grid-lines .grid-lines__line--right {
        top: 0; } }
  .top .mv__main {
    position: absolute;
    bottom: 0;
    left: 5%;
    z-index: 6;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .top .mv__main.loading-animation {
    transform: translateY(0);
    opacity: 1; }
  .top .mv__title {
    position: relative;
    z-index: 6;
    font-size: clamp(80px, 9.5vw, 160px);
    font-weight: 400;
    font-family: "Unbounded", sans-serif;
    line-height: 0.8; }
    @media screen and (max-width: 834px) {
      .top .mv__title {
        font-size: clamp(50px, 12vw, 80px);
        line-height: 1.1; } }
    .top .mv__title span {
      position: relative;
      z-index: 6; }
    .top .mv__title span.mv__title-number {
      color: #C3152B; }
  .top .mv__lead {
    position: relative;
    z-index: 6;
    font-size: 28px;
    font-weight: 400;
    font-family: "IBM Plex Sans JP", sans-serif; }
    @media screen and (max-width: 834px) {
      .top .mv__lead {
        font-size: 16px; } }
  .top .mv__picture {
    height: 100%;
    width: 100%;
    display: flex;
    margin: 0 auto; }
    @media screen and (max-width: 834px) {
      .top .mv__picture {
        justify-content: flex-end;
        flex-direction: column-reverse; } }
    .top .mv__picture picture {
      display: block;
      height: 100%; }
    .top .mv__picture img {
      display: block;
      height: 100%;
      width: 100%;
      object-fit: cover; }
  .top .mv__picture-left {
    width: 50%; }
    @media screen and (max-width: 834px) {
      .top .mv__picture-left {
        padding-top: 2rem;
        width: 90%;
        margin: 0 auto; } }
  .top .mv__picture-right {
    width: 50%; }
    @media screen and (max-width: 834px) {
      .top .mv__picture-right {
        width: 100%;
        position: relative;
        z-index: 6; } }
  .top .mv__picture-left {
    padding-top: 12.5rem;
    padding-right: 1%;
    transform: translate(-20px);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    @media screen and (max-width: 834px) {
      .top .mv__picture-left {
        padding-top: 2rem; } }
  .top .mv__picture-left.loading-animation {
    transform: translate(0px); }
  .top .mv__picture-right {
    transform: scale(1.3);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .top .mv__picture-right.loading-animation {
    transform: scale(1);
    opacity: 1; }
  .top .mv__address {
    color: #9DA1A4;
    text-align: right;
    font-size: 13px;
    font-weight: 300;
    font-family: "Hanken Grotesk", sans-serif; }
.top .about {
  position: relative;
  z-index: 6;
  padding: 0 0 10rem; }
  @media screen and (max-width: 834px) {
    .top .about {
      padding: 2rem 0 7rem; } }
  .top .about .section__lead {
    font-size: 16px;
    writing-mode: vertical-rl;
    position: absolute;
    left: 3%;
    top: 20px; }
    @media screen and (max-width: 834px) {
      .top .about .section__lead {
        writing-mode: horizontal-tb;
        position: relative;
        left: auto;
        top: auto;
        padding-left: 5%;
        font-size: 10px; } }
  .top .about__body {
    padding: 10rem 2rem 0rem;
    display: flex;
    justify-content: space-between; }
    @media screen and (max-width: 834px) {
      .top .about__body {
        padding: 5rem 0 0;
        flex-direction: column; } }
  .top .about__main {
    width: 50%;
    padding-top: 9rem; }
    @media screen and (max-width: 834px) {
      .top .about__main {
        width: 100%;
        padding-top: 0; } }
  .top .about__main--image {
    aspect-ratio: 70 / 73;
    overflow: hidden;
    width: 95%;
    margin: 6.5rem auto 0 0; }
    @media screen and (max-width: 834px) {
      .top .about__main--image {
        width: 100%;
        margin: 2rem auto 0; } }
  .top .about__info {
    width: 50%;
    position: relative; }
    @media screen and (max-width: 834px) {
      .top .about__info {
        width: 100%; } }
  .top .about__info--image {
    width: fit-content;
    margin: 0 0 0 auto; }
    @media screen and (max-width: 834px) {
      .top .about__info--image {
        margin: -32% -5% 0 auto;
        width: 38%; } }
  .top .about .section__sub-title {
    margin-top: 9.6rem; }
    @media screen and (max-width: 834px) {
      .top .about .section__sub-title {
        margin-top: -1rem; } }
  .top .about .section__message {
    margin-top: 4rem; }
    @media screen and (max-width: 834px) {
      .top .about .section__message {
        text-align: left;
        margin-top: 2rem; } }
  .top .about .section__text {
    width: 95%;
    margin: 4rem 0 0 auto; }
    @media screen and (max-width: 834px) {
      .top .about .section__text {
        margin: 3rem auto 0;
        width: 100%; } }
.top .business {
  padding: 10rem 0 8rem;
  position: relative; }
  @media screen and (max-width: 834px) {
    .top .business {
      padding: 2rem 0 7rem; } }
  .top .business__bg {
    position: absolute;
    z-index: 4;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
    .top .business__bg .simpleParallax {
      height: 100%;
      overflow: hidden; }
    .top .business__bg .parallax-img {
      height: 100%;
      display: block; }
      .top .business__bg .parallax-img img {
        height: 100%;
        width: 100%;
        object-fit: cover; }
  .top .business .section__lead {
    writing-mode: vertical-rl;
    position: absolute;
    left: 3%;
    top: 20px;
    z-index: 6; }
    @media screen and (max-width: 834px) {
      .top .business .section__lead {
        font-size: 10px;
        writing-mode: horizontal-tb;
        position: relative;
        left: auto;
        top: auto;
        padding-left: 5%; } }
  .top .business__body {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    height: 100%;
    z-index: 6; }
    @media screen and (max-width: 834px) {
      .top .business__body {
        margin: 5rem auto 0;
        flex-direction: column; } }
  .top .business__main {
    width: 53%; }
    @media screen and (max-width: 834px) {
      .top .business__main {
        width: 100%; } }
    .top .business__main .section__title {
      gap: 0 3rem; }
      @media screen and (max-width: 834px) {
        .top .business__main .section__title {
          gap: 0 2rem; } }
  .top .business__info {
    width: 47%;
    padding-top: clamp(30rem, 34vw, 57rem); }
    @media screen and (max-width: 834px) {
      .top .business__info {
        width: 100%;
        padding-top: 5rem; } }
    .top .business__info .section__message {
      text-align: left;
      margin-bottom: 4rem; }
      @media screen and (max-width: 834px) {
        .top .business__info .section__message {
          margin-bottom: 2rem; } }
.top .service {
  padding: 2rem 0 8rem;
  position: relative;
  background: linear-gradient(rgba(138, 142, 147, 0.95), rgba(138, 142, 147, 0.95)), url("../img/common/noise.png"), #8a8e93; }
  @media screen and (max-width: 834px) {
    .top .service {
      padding: 2rem 0 7rem; } }
  .top .service .section__lead {
    writing-mode: vertical-rl;
    position: absolute;
    left: 3%;
    top: 20px;
    z-index: 6; }
    @media screen and (max-width: 834px) {
      .top .service .section__lead {
        font-size: 10px;
        writing-mode: horizontal-tb;
        position: relative;
        left: auto;
        top: auto;
        padding-left: 5%; } }
  .top .service__body {
    margin-top: 14rem; }
    @media screen and (max-width: 834px) {
      .top .service__body {
        margin-top: 5rem; } }
  .top .service .service__title {
    position: relative;
    z-index: 10;
    font-size: clamp(32px, 3vw, 60px);
    font-weight: 400;
    padding-left: 1%; }
    @media screen and (max-width: 834px) {
      .top .service .service__title {
        font-size: clamp(28px, 3vw, 34px);
        padding-left: 0; } }
  .top .service__main {
    margin-top: 6.6rem;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: stretch;
    position: relative; }
    @media screen and (max-width: 834px) {
      .top .service__main {
        margin-top: 3rem;
        z-index: 6;
        flex-direction: column; } }
  .top .service__link {
    width: 50%; }
    @media screen and (max-width: 834px) {
      .top .service__link {
        width: 100%; } }
    .top .service__link a {
      display: flex;
      align-items: center;
      flex-direction: column;
      padding: 77px 0; }
      @media screen and (max-width: 834px) {
        .top .service__link a {
          padding: 50px 0; } }
  .top .service__link:first-child {
    background: url(../img/top/index-service-bg1.webp) no-repeat center;
    background-size: cover; }
  .top .service__link:last-child {
    background: url(../img/top/index-service-bg2.webp) no-repeat center;
    background-size: cover; }
  .top .service__link--title-en {
    text-align: center;
    font-size: 12px;
    margin-bottom: 2rem; }
    @media screen and (max-width: 834px) {
      .top .service__link--title-en {
        margin-top: 1rem; } }
  .top .service__link--image {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center; }
    @media screen and (max-width: 1300px) {
      .top .service__link--image {
        width: 80%; } }
    @media screen and (max-width: 834px) {
      .top .service__link--image {
        width: 60%; } }
    .top .service__link--image img {
      object-fit: cover;
      transform: scale(1);
      transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .top .service__link--title {
    margin-top: 2rem;
    text-align: center;
    font-size: 18px;
    font-weight: 600; }
    @media screen and (max-width: 834px) {
      .top .service__link--title {
        font-size: 15px;
        margin-top: 1rem; } }
  .top .service__link a:hover .service__link--image img {
    transform: scale(1.08);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.top .construction {
  position: relative;
  background: linear-gradient(rgba(138, 142, 147, 0.95), rgba(138, 142, 147, 0.95)), url("../img/common/noise.png"), #8a8e93;
  position: relative; }
  .top .construction__body {
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media screen and (max-width: 834px) {
      .top .construction__body {
        flex-direction: column;
        gap: 3rem 0;
        z-index: 6;
        position: relative;
        padding: 5rem 0 0; } }
  .top .construction__main {
    width: 50%;
    padding-left: 2rem; }
    @media screen and (max-width: 834px) {
      .top .construction__main {
        width: 95%;
        padding-left: 0rem; } }
  .top .construction .section__lead {
    font-size: 12px;
    margin-bottom: 1rem; }
    @media screen and (max-width: 834px) {
      .top .construction .section__lead {
        font-size: 10px; } }
  .top .construction .section__sub-title-en {
    font-size: clamp(48px, 5vw, 90px);
    margin-bottom: 2rem; }
    @media screen and (max-width: 834px) {
      .top .construction .section__sub-title-en {
        font-size: clamp(40px, 5vw, 72px);
        margin-bottom: 1rem; } }
  .top .construction__title {
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 400; }
    @media screen and (max-width: 834px) {
      .top .construction__title {
        font-size: clamp(19px, 2.5vw, 24px); } }
  .top .construction__info {
    width: 50%; }
    @media screen and (max-width: 834px) {
      .top .construction__info {
        width: 100%; } }
  .top .construction__item {
    position: relative;
    padding: 2rem 0; }
    @media screen and (max-width: 834px) {
      .top .construction__item {
        padding: 2rem 2% 3rem; } }
  .top .construction .item__title {
    font-size: 21px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0 1.5rem;
    margin: 0 0 0 1rem; }
    @media screen and (max-width: 834px) {
      .top .construction .item__title {
        margin: 0 auto 0 0;
        gap: 0 1rem;
        font-size: 18px; } }
    .top .construction .item__title span {
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #030303;
      border-radius: 15px;
      padding: 0.76rem 2rem;
      font-size: 12px; }
      @media screen and (max-width: 834px) {
        .top .construction .item__title span {
          line-height: 1;
          padding: 0.7rem 1.5rem; } }
  .top .construction .item__text {
    width: 61%;
    margin: 8rem 2rem 0 auto; }
    @media screen and (max-width: 834px) {
      .top .construction .item__text {
        width: 100%;
        margin: 2rem auto 0; } }
.top .case {
  position: relative;
  z-index: 6;
  padding: 2rem 0 8rem;
  /* スライド内の画像 */ }
  @media screen and (max-width: 834px) {
    .top .case {
      padding: 2rem 0 7rem; } }
  .top .case .section__lead {
    writing-mode: vertical-rl;
    position: absolute;
    left: 3%;
    top: 20px; }
    @media screen and (max-width: 834px) {
      .top .case .section__lead {
        font-size: 10px;
        writing-mode: horizontal-tb;
        position: relative;
        left: auto;
        top: auto;
        padding-left: 5%; } }
  .top .case__body {
    margin-top: 14rem; }
    @media screen and (max-width: 834px) {
      .top .case__body {
        margin-top: 5rem; } }
  .top .case__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem; }
    @media screen and (max-width: 834px) {
      .top .case__info {
        flex-direction: column;
        gap: 2rem 0;
        align-items: flex-start; } }
  .top .case .case__slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 7;
    /* スライド */ }
    .top .case .case__slider .swiper {
      z-index: 6 !important; }
    .top .case .case__slider .swiper .swiper-wrapper {
      transition-timing-function: linear; }
    .top .case .case__slider .swiper .swiper-slide {
      position: relative;
      z-index: 6 !important;
      height: 320px !important;
      width: auto !important; }
    @media screen and (max-width: 834px) {
      .top .case .case__slider {
        height: 320px !important;
        width: auto !important; } }
  .top .case .swiper .swiper-slide img {
    width: auto;
    height: 100%; }
  .top .case .swiper-slide {
    width: fit-content; }
  .top .case img {
    width: 100%;
    height: auto;
    object-fit: cover; }
  @media screen and (max-width: 834px) {
    .top .case .section__message {
      text-align: left; } }
  .top .case .section__text {
    margin: 5.5rem 0 0 2rem; }
    @media screen and (max-width: 834px) {
      .top .case .section__text {
        margin: 2rem auto 0; } }
.top .sustainability {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url("../img/common/noise.png"), #000000; }
  @media screen and (max-width: 834px) {
    .top .sustainability {
      padding: 0 0 7rem; } }
  .top .sustainability .section__lead {
    writing-mode: vertical-rl;
    position: absolute;
    left: 3%;
    top: 20px; }
    @media screen and (max-width: 834px) {
      .top .sustainability .section__lead {
        font-size: 10px;
        writing-mode: horizontal-tb;
        position: relative;
        padding: 20px 0 0 3%; } }
  .top .sustainability__body {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    @media screen and (max-width: 834px) {
      .top .sustainability__body {
        flex-direction: column;
        gap: 3rem 0;
        margin-top: 5rem;
        position: relative;
        z-index: 6; } }
  .top .sustainability__main {
    width: 50%; }
    @media screen and (max-width: 834px) {
      .top .sustainability__main {
        width: 100%; } }
    .top .sustainability__main img {
      width: 100%;
      width: 100%;
      object-fit: cover; }
  .top .sustainability__info {
    width: 34%;
    margin: 0 auto; }
    @media screen and (max-width: 834px) {
      .top .sustainability__info {
        width: 100%;
        margin: 0 auto; } }
    .top .sustainability__info .section__title {
      font-size: clamp(48px, 5vw, 90px);
      font-weight: 400;
      text-align: right;
      padding-left: 0; }
      @media screen and (max-width: 834px) {
        .top .sustainability__info .section__title {
          font-size: clamp(40px, 5vw, 72px); } }
      .top .sustainability__info .section__title span {
        display: block;
        color: #C3152B; }
    .top .sustainability__info .section__text {
      margin-top: 5rem; }
      @media screen and (max-width: 834px) {
        .top .sustainability__info .section__text {
          margin-top: 3rem; } }
    .top .sustainability__info a.detail__btn {
      margin-top: 5rem;
      display: flex;
      align-items: center;
      gap: 0 2.5rem;
      font-size: 18px;
      font-weight: 600; }
      @media screen and (max-width: 834px) {
        .top .sustainability__info a.detail__btn {
          font-size: 16px;
          gap: 0 1.5rem; } }
    .top .sustainability__info span.section__title--arrow {
      background-color: #C3152B;
      border-radius: 15px;
      width: 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 5px 0; }
      @media screen and (max-width: 834px) {
        .top .sustainability__info span.section__title--arrow {
          width: 50px; } }
      .top .sustainability__info span.section__title--arrow .material-symbols-outlined {
        transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        font-size: 16px; }
        @media screen and (max-width: 834px) {
          .top .sustainability__info span.section__title--arrow .material-symbols-outlined {
            font-size: 15px; } }
    .top .sustainability__info a.detail__btn:hover span.section__title--arrow span {
      transform: translateX(8px);
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.top .news {
  position: relative;
  z-index: 2; }
  @media screen and (max-width: 834px) {
    .top .news {
      padding: 0 0 7rem; } }
  .top .news .section__lead {
    writing-mode: vertical-rl;
    position: absolute;
    left: 3%;
    top: 20px; }
    @media screen and (max-width: 834px) {
      .top .news .section__lead {
        font-size: 10px;
        writing-mode: horizontal-tb;
        position: relative;
        padding: 20px 0 0 3%; } }
  .top .news__body {
    padding: 15rem 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end; }
    @media screen and (max-width: 834px) {
      .top .news__body {
        padding: 5rem 0;
        flex-direction: column;
        gap: 3rem 0;
        align-items: flex-start; } }
  .top .news__main {
    width: 60%;
    position: relative;
    margin-left: 2.5rem; }
    @media screen and (max-width: 834px) {
      .top .news__main {
        width: 100%;
        margin-left: 0; } }
    .top .news__main .line-horizontal.news__main--line {
      top: 0;
      bottom: auto; }
  .top .news__item {
    position: relative; }
    .top .news__item a {
      padding: 3rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between; }
      @media screen and (max-width: 834px) {
        .top .news__item a {
          padding: 2rem 0; } }
  .top .news__main--info {
    width: 89%;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media screen and (max-width: 834px) {
      .top .news__main--info {
        width: 100%; } }
  .top .news__main--image {
    width: 29%;
    overflow: hidden; }
    .top .news__main--image img {
      object-fit: cover;
      transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .top .news .item__text-box {
    width: 66%; }
    .top .news .item__text-box .section__text {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
      overflow: hidden; }
  .top .news .date {
    font-family: 'HankenGrotesk';
    font-size: 15px;
    font-weight: 500;
    margin-top: 1rem; }
    @media screen and (max-width: 834px) {
      .top .news .date {
        font-size: 12px; } }
  .top .news__arrow {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    .top .news__arrow span.material-symbols-outlined {
      font-size: 24px; }
      @media screen and (max-width: 834px) {
        .top .news__arrow span.material-symbols-outlined {
          font-size: 24px; } }
  .top .news__item a:hover .news__main--image img {
    transform: scale(1.08);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .top .news__item a:hover .news__arrow {
    transform: translateX(5px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .top .news a.detail__btn {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 0 2.5rem;
    font-size: 18px;
    font-weight: 600; }
    @media screen and (max-width: 834px) {
      .top .news a.detail__btn {
        font-size: 16px;
        gap: 0 1.5rem; } }
  .top .news span.section__title--arrow {
    background-color: #C3152B;
    border-radius: 15px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0; }
    @media screen and (max-width: 834px) {
      .top .news span.section__title--arrow {
        width: 50px; } }
    .top .news span.section__title--arrow .material-symbols-outlined {
      transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      font-size: 16px; }
      @media screen and (max-width: 834px) {
        .top .news span.section__title--arrow .material-symbols-outlined {
          font-size: 15px; } }
  .top .news a.detail__btn:hover span.section__title--arrow span {
    transform: translateX(8px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.top .recruit {
  position: relative;
  z-index: 2; }
  .top .recruit a {
    display: block;
    padding: 25rem 0 30rem; }
    @media screen and (max-width: 834px) {
      .top .recruit a {
        height: 50vh;
        padding: 4rem 0 2rem; } }
  .top .recruit__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden; }
    .top .recruit__bg picture {
      width: 100%;
      height: 100%; }
    .top .recruit__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .top .recruit .section__lead {
    writing-mode: vertical-rl;
    position: absolute;
    left: 3%;
    top: 20px; }
    @media screen and (max-width: 834px) {
      .top .recruit .section__lead {
        font-size: 10px;
        writing-mode: horizontal-tb;
        position: relative;
        left: auto;
        top: auto;
        padding-left: 5%; } }
  .top .recruit__body {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    @media screen and (max-width: 834px) {
      .top .recruit__body {
        height: 100%;
        gap: 5rem 0;
        flex-direction: column; } }
  .top .recruit__main {
    width: 50%; }
    @media screen and (max-width: 834px) {
      .top .recruit__main {
        width: 100%; } }
  .top .recruit .section__title {
    display: flex;
    align-items: center;
    gap: 0 2rem;
    margin-left: 2rem; }
    @media screen and (max-width: 834px) {
      .top .recruit .section__title {
        margin-left: 0em; } }
    .top .recruit .section__title span.section__title--arrow {
      transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .top .recruit__info {
    width: 50%; }
    @media screen and (max-width: 834px) {
      .top .recruit__info {
        width: 100%; } }
  .top .recruit__info--title {
    text-align: right;
    font-size: clamp(45px, 5vw, 85px);
    white-space: nowrap; }
    @media screen and (max-width: 834px) {
      .top .recruit__info--title {
        text-align: right;
        line-height: 1.4;
        font-size: clamp(38px, 6vw, 48px); } }
    .top .recruit__info--title span {
      font-size: clamp(20px, 2.5vw, 32px);
      display: block; }
  .top .recruit a:hover .recruit__bg img {
    transform: scale(1.08);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .top .recruit a:hover .section__title span.section__title--arrow span {
    transform: translateX(8px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.top .banner__wrapper {
  padding: 9rem 0; }
  @media screen and (max-width: 834px) {
    .top .banner__wrapper {
      padding: 5rem 0; } }
  .top .banner__wrapper .banner__box {
    position: relative; }
  .top .banner__wrapper .line-horizontal.banner__line-top {
    top: 0;
    bottom: auto; }
  .top .banner__wrapper .section__grid-line .grid-lines__line--right {
    left: 100%;
    transition: height 1s ease;
    transition-delay: 0.4s; }
  .top .banner__wrapper .banner__main {
    position: relative;
    display: flex;
    justify-content: space-between; }
    @media screen and (max-width: 834px) {
      .top .banner__wrapper .banner__main {
        flex-direction: column; } }
  .top .banner__wrapper .banner__item {
    width: 33.3%;
    position: relative; }
    @media screen and (max-width: 834px) {
      .top .banner__wrapper .banner__item {
        width: 100%; } }
    .top .banner__wrapper .banner__item a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 2rem;
      font-size: 24px;
      font-weight: 600; }
      @media screen and (max-width: 834px) {
        .top .banner__wrapper .banner__item a {
          padding: 1.5rem 2rem;
          font-size: 20px; } }
    .top .banner__wrapper .banner__item .banner__arrow {
      background-color: #000;
      border-radius: 15px;
      width: 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 5px 0;
      transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
      @media screen and (max-width: 834px) {
        .top .banner__wrapper .banner__item .banner__arrow {
          width: 50px; } }
      .top .banner__wrapper .banner__item .banner__arrow span.material-symbols-outlined {
        font-size: 16px; }
        @media screen and (max-width: 834px) {
          .top .banner__wrapper .banner__item .banner__arrow span.material-symbols-outlined {
            font-size: 15px; } }
  .top .banner__wrapper .banner__item a:hover {
    background-color: #C3152B; }
    .top .banner__wrapper .banner__item a:hover span {
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    .top .banner__wrapper .banner__item a:hover span.banner__arrow span {
      transform: translateX(5px);
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
