@charset "UTF-8";
/*----------------------------------------------------------------------------------------------------

  top header

----------------------------------------------------------------------------------------------------*/

.header {
  position: fixed;
  top: 0;
  z-index: 999;
  background:none;
  box-shadow:none;
  width: 100%;

}
  /* .top .header--scrolled {
    background: #fff;
    box-shadow: 0px 0px 60px 0px rgba(0, 49, 99, 0.1);
  } */

  .header {
  background: #fff;
  box-shadow: 0px 0px 60px 0px rgba(0, 49, 99, 0.1);
}

/*---------------------
  pc gnav
---------------------*/
.gnav-list__link {
  color: var(--color-primary);
  transition: color 0.5s;
}
/*---------------------
  sp gnav
---------------------*/
  .sp-gnav .gnav-list__link {
    color: var(--color-primary);
  }

/*----------------------------------------------------------------------------------------------------

  top main

----------------------------------------------------------------------------------------------------*/

.top-h2-section__title {
}
  .top-h2-section__title-en {
    margin: 0 0 26px 0;
    display: flex;
    gap: 0.4em;
  }
    .top-h2-section__title-en img {
      margin: -4px 0 0 0;
      width: 28px;
    }
    .top-h2-section__title-en em {
      display: inline-block;
      font-size: 16px;
      font-weight: 500;
      font-family: var(--font-family-en);
      background: linear-gradient(90deg, #29c5f1, #004397);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      line-height: 1.0em;
    }
  .top-h2-section__title-ja {
    display: block;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.0em;
  }

@media screen and (max-width: 768px) {
  .top-h2-section__title-en {
    margin: 0 0 20px 0;
    gap: 0.34em;
  }
    .top-h2-section__title-en img {
      margin: -3px 0 0 0;
      width: 26px;
    }
    .top-h2-section__title-en em {
      font-size: 14px;
    }
  .top-h2-section__title-ja {
    font-size: 28px;
  }
}

/*---------------------
  top btn
---------------------*/
.top-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.8em;
      text-decoration: none;
      color: var(--color-white);
      background: var(--color-accent);
      padding: 0.64em 2.2em;
      /* padding: 0.60em 3.8em 0.64em 1.6em; */
      transition: 0.2s ease-out;
      font-weight: 600;
      font-size: var(--font-size-md);
      position: relative;
      border-radius: 5px;
    }

@media screen and (max-width: 768px) {
  .top-btn {
    gap: 0.8em;
    padding: 10px 32px 10px 32px;
    font-size: 18px;
  }
    .top-btn::before {
      width: 0.80em;
      height: 1.5px;
      right: 1.64em;
    }
    .top-btn::after {
      width: 0.34em;
      height: 0.34em;
      right: 1.6em;
    }
}

/*---------------------
  top-mv
---------------------*/
.top-mv {
  position: relative;
}

.top-mv .container {
  position: relative;
  z-index: 666;
  max-width: 1200px;
  height: 100vh;
}

.top-mv__title {
  position: absolute;
  bottom: 8.40vh;
  left: 90px;
  z-index: 998;
  font-size: 56px;
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.6em;
  text-shadow: 0 0 6px rgba(1, 71, 154, 0.5), 0 0 10px rgba(1, 71, 154, 0.5);
  letter-spacing: 4.48px;
}

@media screen and (max-width: 768px) {
  .top-mv__title {
    left: 20px;
    font-size: 32px;
  }
}

/* FVスライド画像（最優先）*/
.top-mv__img .splide__slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;  /* ★FVは cover */
  object-position: center;
}

.top-mv__img {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 555;
}

/* SPだけ高さ固定 */
@media screen and (max-width: 767px) {
  .top-mv__img,
  .top-mv__img .splide__track,
  .top-mv__img .splide__list,
  .top-mv__img .splide__slide {
    height: 684px;
  }

  .top-mv__img .splide__slide img {
    height: 684px;
    object-fit: cover;
  }
}

/* スライダーの高さ調整 */
.top-mv__img .splide__track,
.top-mv__img .splide__list,
.top-mv__img .splide__slide {
  height: 100%;
}

/* pagination */
#top-mv-slider.splide {
  position: relative; /* pagination の絶対位置基準 */
}

/* ページネーションを右端中央に配置 */
#top-mv-slider.splide > .splide__pagination {
  position: absolute !important;
  top: 50% !important;
  right: 10px !important;        /* 右端に寄せる */
  bottom: auto !important;
  transform: translateY(-50%) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  z-index: 9999 !important;
}

/* ドットデザイン */
#top-mv-slider.splide > .splide__pagination .splide__pagination__page {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  border: none;
}

/* アクティブ時：白丸 + 外側に二重丸 */
#top-mv-slider .splide__pagination__page.is-active {
  background: #ffffff; /* 中央の白丸 */
  box-shadow: 0 0 0 6px rgba(0, 68, 151, 0.6); /* 外側の半透明丸 */
}




/*---------------------
  top-message
---------------------*/

.top-message {
  background: url("../images/top-bg-01.jpg") center top;
  background-size: cover;
}
  .top-message .container {
    padding: 140px 40px 100px 40px;
    text-align: center;
    max-width: 100%;
    background-image: linear-gradient(transparent 80%, #ffffff);
  }
    .top-message__title {
      font-size: 56px;
      color: var(--color-primary);
      font-weight: 700;
      line-height: 1.5em;
      margin-bottom: 50px;
    }

    .top-message__lead {
      font-size: 20px;
      line-height: 2.1em;
      margin-bottom: 45px;
    }

    .top-message__list {
      display: flex;
      justify-content: center;
      gap: 36px;
      max-width: 440px;
      margin: auto;
      margin-bottom: 50px;
    }
      .top-message__item {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        width: 210px;
        text-align: left;
      }
        .top-message__item--img {
          height: 70px;
        }
        .top-message__item--text {
          font-size: 12px;
          line-height: 1.7em;
        }
          .top-message__item--name {
            display: block;
            font-size: 15px;
            font-weight: 500;
          }


@media screen and (max-width: 768px) {
  .top-message .container {
    padding: 50px 20px 60px 20px;
    background-image: linear-gradient(transparent 80%, #ffffff);
  }
    .top-message__title {
      font-size: 32px;
      line-height: 1.5em;
      margin-bottom: 40px;
    }

    .top-message__lead {
      font-size: 16px;
      line-height: 2.1em;
      margin-bottom: 30px;
    }

    .top-message__list {
      gap: 10px;
      max-width:95%;
      margin-bottom: 50px;
    }
      .top-message__item {
        gap: 10px;
        width: 50%;
      }
        .top-message__item--img {
          height: 60px;
        }
        .top-message__item--text {
          font-size: 10px;
          line-height: 1.7em;
        }
          .top-message__item--name {
            font-size: 14px;
          }
}



/*---------------------
  top-initiatives
---------------------*/

.top-initiatives {
  padding: 100px 40px 100px 40px;
}
  .top-initiatives--inner {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 0 0 60px 0;
  }
    .top-initiatives__text-block{
      width: 54%;
    }
      .top-initiatives__title {
        margin: 0 0 50px 0;
      }
        .top-initiatives__title .top-h2-section__title-en{
          margin: 0 0 14px 0;
          font-size: 18px;
        }
        .top-initiatives__title .top-h2-section__title-ja{
          font-size: 18px;
        }

      .top-initiatives__catch {
        margin: 0 0 45px 0;
        font-size: 50px;
        font-weight: 700;
        line-height: 1.5em;
      }
      .top-initiatives__lead {
        font-size: 20px;
        line-height: 2.0em;
        font-weight: 400;
      }
    .top-initiatives__img-block{
      width: 46%;
    }
      .top-initiatives__img01 {
        display: block;
        width: 252px;
      }
      .top-initiatives__img02 {
        display: block;
        width: 248px;
        margin: 0 0 0 auto;
      }

@media screen and (max-width: 768px) {
  .top-initiatives {
    padding: 50px 20px 50px 20px;
  }
    .top-initiatives--inner {
      display: block;
      padding: 0 0 50px 0;
    }
      .top-initiatives__text-block{
        width: 100%;
      }
        .top-initiatives__title {
          margin: 0 0 35px 0;
        }
          .top-initiatives__title .top-h2-section__title-en{
            margin: 0 0 14px 0;
            font-size: 14px;
          }
          .top-initiatives__title .top-h2-section__title-ja{
            font-size: 16px;
          }

        .top-initiatives__catch {
          margin: 0 0 35px 0;
          font-size: 30px;
          line-height: 1.5em;
        }
        .top-initiatives__lead {
          font-size: 16px;
          line-height: 2.0em;
          margin-bottom: 10px;
        }
      .top-initiatives__img-block{
        width: 90%;
        margin: auto;
      }
        .top-initiatives__img01 {
          width: 51%;
        }
        .top-initiatives__img02 {
          width: 49%;
        }
    .top-initiatives__btn{
      text-align: center;
    }

}

/*---------------------
  top-company
---------------------*/

.top-company {
  padding: 100px 40px 100px 40px;
}
  .top-company .container{
    padding: 60px 40px 60px 40px;
    background: var(--color-blue-light);
  }
    .top-company__title {
      padding: 0 0 40px 0;
    }
      .top-company__title .top-h2-section__title-en {
        padding: 0 10px 0 0;
        justify-content: center;
        margin-bottom: 14px;
      }
      .top-company__title .top-h2-section__title-ja{
        text-align: center;
        font-size: 30px;
      }
    .top-company__list {
      max-width: 960px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
    }
        .top-company__btn {
          display: flex;
          justify-content: space-between;
          align-items: center;
          gap: 10px;
          width: 100%;
          padding: 40px 40px;
          background: #fff;
          text-align: center;
        }
          .top-company__btn--img {
            width: 32px;
          }
          .top-company__btn--text-en {
            display: block;
            font-family: var(--font-family-en);
            color: #72CEE8;
            font-size: 13px;
            line-height: 1.0em;
            margin-bottom: 7px;
          }
          .top-company__btn--text-ja {
            display: block;
            font-size: 28px;
            font-weight: 500;
            color: var(--color-primary);
            line-height: 1.0em;
          }
          .top-company__btn--arrow {
            display: block;
            width: 32px;
            height: 28px;
            background: var(--color-accent);
            border-radius: 5px;
            position: relative;
          }
            .top-company__btn--arrow::before {
              content: '';
              width: 0.70em;
              height: 1.5px;
              position: absolute;
              top: 50%;
              transform: translateY(-50%);
              right: 0.58em;
              background: var(--color-white);
            }
            .top-company__btn--arrow::after {
              content: '';
              width: 0.34em;
              height: 0.34em;
              border: 1.5px solid var(--color-white);
              border-left: 0;
              border-bottom: 0;
              transform: rotate(45deg);
              transform-origin: top right;
              position: absolute;
              top: 50%;
              right: 0.54em;
            }

@media screen and (max-width: 768px) {
  .top-company {
    padding: 10px 20px 50px 20px;
  }
    .top-company .container{
      padding: 50px 20px 50px 20px;
      background: var(--color-blue-light);
    }
      .top-company__title {
        padding: 0 0 35px 0;
      }
        .top-company__title .top-h2-section__title-en {
          padding: 0 10px 0 0;
          justify-content: center;
          margin-bottom: 14px;
        }
        .top-company__title .top-h2-section__title-ja{
          font-size: 26px;
        }
      .top-company__list {
        max-width: inherit;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
      }
          .top-company__btn {
            gap: 10px;
            padding: 40px 40px;
          }
            .top-company__btn--img {
              width: 32px;
            }
            .top-company__btn--text-en {
              font-size: 12px;
              line-height: 1.0em;
              margin-bottom: 7px;
            }
            .top-company__btn--text-ja {
              font-size: 23px;
              line-height: 1.0em;
            }
            .top-company__btn--arrow {
              width: 32px;
              height: 28px;
            }
              .top-company__btn--arrow::before {
                width: 0.70em;
                height: 1.5px;
                right: 0.58em;
              }
              .top-company__btn--arrow::after {
                width: 0.34em;
                height: 0.34em;
                right: 0.54em;
              }
}

/*---------------------
  top-service
---------------------*/
.top-service {
  background: url("../images/top-bg-02.jpg") center center no-repeat;
  background-size: 100% auto;
}
  .top-service .container {
    padding: 100px 40px 20px 40px;
    max-width: 100%;
    background-image: linear-gradient(#ffffff, transparent 10% 90%, #ffffff);
  }
    .top-service__header {
      max-width: 1200px;
      margin: 0 auto 140px;
      display: flex;
      align-items: flex-end;
    }
      .top-service__title {
        width: 37%;
      }
        .top-service__title .top-h2-section__title-en {
        }
        .top-service__title .top-h2-section__title-ja{
          font-size: 64px;
        }
      .top-service__header--lead {
        width: 63%;
        font-weight: 500;
      }
      .top-service__list {
        max-width: 1200px;
        margin: auto;
        display: flex;
        flex-direction: column;
        gap: 120px;
      }
        .top-service__item {
          display: flex;
        }
          .top-service__text-block{
            width: 53%;
            padding: 0 80px 0 0;
          }
            .top-service__catch {
              margin: 0 0 55px 0;
            }
              .top-service__catch--small {
                display: block;
                margin: 0 0 25px 0;
                font-size: 20px;
                font-weight: 400;
                line-height: 1.0em;
              }
              .top-service__catch--strong {
                display: block;
                font-size: 51px;
                font-weight: 700;
                line-height: 1.0em;
              }

            .top-service__lead {
              font-size: 20px;
              line-height: 1.8em;
              font-weight: 400;
              margin-bottom: 60px;
            }
          .top-service__img-block{
            width: 47%;
          }
            .top-service__img {
              width:100%;
              height: 545px;
              border-radius: 15px;
              object-fit: cover;
            }

@media screen and (max-width: 768px) {
  .top-service {
    background: url("../images/top-bg-02.jpg") center 60% no-repeat;
    background-size: 100% auto;
  }
    .top-service .container {
      padding: 60px 0 20px 0;
      background-image: linear-gradient(#ffffff, transparent 10% 90%, #ffffff);
    }
      .top-service__header {
        max-width: inherit;
        margin: 0 auto 65px;
        padding: 0 20px;
        display: block;
        align-items: flex-end;
      }
        .top-service__title {
          width: inherit;
          margin-bottom: 45px;
        }
          .top-service__title .top-h2-section__title-ja{
            font-size: 35px;
          }
        .top-service__header--lead {
          width:inherit;
        }
        .top-service__list {
          max-width: inherit;
          gap: 60px;
        }
          .top-service__item {
            display: block;
          }
            .top-service__text-block {
              width:inherit;
              padding: 0 20px 50px 20px;
            }
              .top-service__catch {
                margin: 0 0 35px 0;
              }
                .top-service__catch--small {
                  margin: 0 0 20px 0;
                  font-size: 15px;
                }
                .top-service__catch--strong {
                  font-size: 32px;
                }
              .top-service__lead {
                font-size: 16px;
                line-height: 1.8em;
                margin-bottom: 30px;
              }

            .top-service__img-block{
              width:inherit;
            }
              .top-service__img {
                width:100%;
                height: 292px;
                border-radius: 0;
              }
}

/*---------------------
  top-news
---------------------*/
.top-news {
  padding: 100px 40px 20px 40px;
}
  .top-news__title {
    margin-bottom: 65px;
  }
  .top-news__meta {
    display: flex;
    gap: 12px;
    margin: 30px 0 0 0;
    align-items: center;
  }
    .top-news__date {
      display: inline-block;
      font-family: var(--font-family-en);
      color: #99D2E2;
      font-size: 20px;
      line-height: 1.0em;
      margin-top: 4px;
      letter-spacing: 0.08em;
    }
    .top-news__category {
      display: inline-block;
      background-color:var(--color-primary);
      color: #fff;
      padding: 0.30em 1.0em 0.40em 1.0em;
      font-size: 14px;
      line-height: 1.0em;
    }
    .top-news__text {
      padding: 15px 80px 25px 0;
      border-bottom: solid 1px #D7DDE4;
      position: relative;
    }
      .top-news__text::before {
        content: '';
        width: 0.90em;
        height: 1.5px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 10px;
        background: var(--color-primary);
      }
      .top-news__text::after {
        content: '';
        width: 0.40em;
        height: 0.40em;
        border: 1.5px solid var(--color-primary);
        border-left: 0;
        border-bottom: 0;
        transform: rotate(45deg);
        transform-origin: top right;
        position: absolute;
        top: 50%;
        right: 10px;
      }
      .top-news__text a{
        color: var(--color-font);
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
        word-break: break-word;

        line-height: 1.5em;
        max-height: calc(1.5em * 2);
      }
  .top-news__btn {
    margin-top: 60px;
    text-align: right;
  }

@media screen and (max-width: 768px) {
  .top-news {
    padding: 60px 20px 60px 20px;
  }
    .top-news__title {
      margin-bottom: 40px;
    }
    .top-news__meta {
      gap: 12px;
      margin: 25px 0 0 0;
    }
      .top-news__date {
        font-size: 16px;
        margin-top: 4px;
      }
      .top-news__category {
        padding: 0.30em 1.0em 0.40em 1.0em;
        font-size: 12px;
      }
      .top-news__text {
        padding: 10px 25px 15px 0;
      }
        .top-news__text::before {
          width: 0.80em;
          height: 1.5px;
          top: 50%;
          transform: translateY(-50%);
          right: 0;
        }
        .top-news__text::after {
          width: 0.34em;
          height: 0.34em;
          top: 50%;
          right: 0;
        }
    .top-news__btn {
      margin-top: 35px;
      text-align: right;
    }
}

/*---------------------
  top-blog
---------------------*/
/* 背景画像 */
.top-blog-recruit-bg {
  background: url("../images/top-blog-bg.png") center top;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .top-blog-recruit-bg {
    background: none;
  }
}

.top-blog {
  padding: 64px 40px 180px;
}
  .top-blog--inner {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 60px;
  }
    .top-blog__text-block {
      width: 50%;
    }
      .top-blog__title {
        font-size: 26px;
        font-weight: 700;
        line-height: 1.6em;
        margin: 0 0 20px 0;
      }
      .top-blog__lead {
        font-size: 18px;
        font-weight: 400;
        line-height: 2.0em;
      }
    .top-blog__img-block {
      width: 50%;
    }
      .top-blog__img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        display: block;
        transition: opacity 0.3s;
      }
      .top-blog__img:hover {
        opacity: 0.8;
      }

@media screen and (max-width: 768px) {
  .top-blog {
    padding: 50px 20px 30px;
  }
    .top-blog--inner {
      display: block;
    }
      .top-blog__text-block {
        width: 100%;
        margin: 0 0 30px 0;
      }
        .top-blog__title {
          font-size: 20px;
          margin: 0 0 15px 0;
        }
        .top-blog__lead {
          font-size: 16px;
        }
      .top-blog__img-block {
        width: 100%;
      }
}

/*---------------------
  top-recruit
---------------------*/

.top-recruit {
  padding: 0 40px 100px 40px;
}
  .top-recruit--inner {
    display: flex;
    width: 100%;
    align-items: center;
    flex-direction: row-reverse;
    padding: 60px 65px 60px 60px;
    background: var(--color-blue-light);
    position: relative;
  }
    .top-recruit__text-block{
      padding: 0 40px 0 0;
      width: 50%;
    }
      .top-recruit__title {
        position: absolute;
        top: 65px;
        left: 60px;
      }
      .top-recruit__lead {
        line-height: 2.0em;
        font-weight: 400;
        margin: 110px 0 30px 0;
      }
    .top-recruit__img-block{
      width: 50%;
    }
      .top-recruit__img01 {
        width:100%;
        height: auto;
        border-radius: 10px;
        object-fit: cover;
      }

@media screen and (max-width: 768px) {
  .top-recruit {
    padding: 50px 20px 50px 20px;
  }
    .top-recruit--inner {
      display: block;
      padding: 50px 22px 50px 22px;
    }
      .top-recruit__text-block{
        padding: 0 0 0 0 ;
        width: 100%;
      }
        .top-recruit__title {
          position: inherit;
          top: inherit;
          left: inherit;
          margin: 0 0 30px 0;
          text-align: center;
        }
          .top-recruit__title .top-h2-section__title-en{
            justify-content: center;
          }
        .top-recruit__lead {
          font-size: 16px;
          line-height: 2.0em;
          margin: 20px 0 20px 0;
        }
      .top-recruit__img-block{
        width: 100%;
      }
        .top-recruit__img01 {
          width:100%;
          height: auto;
        }
    .top-recruit__btn{
      text-align: center;
    }

}

/*---------------------
  沿革
---------------------*/

.history {
  margin-top: 141px;
}

.history__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
}

.history__year {
  width: 180px;
  flex-shrink: 0;
  font-family: var(--font-family-en);
  font-size: 52px;
  font-weight: 500;
  line-height: 70px;
  letter-spacing: 2.24px;
  background: linear-gradient(90deg, #29c5f1, #004397);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 40px;
  white-space: nowrap;
}

/* 年の「年」だけ別デザイン */
.history__year--nen {
  color: #004397;
  font-family: var(--font-family-ja);
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 1.8px;
  margin-left: 10px;

  -webkit-text-fill-color: #004397;
  -webkit-background-clip: unset;
  background: none;
}


.history__body {
  position: relative;
  padding-left: 40px;
}

/* ● 丸 */
.history__dot {
  position: absolute;
  top: 40px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-accent);
  z-index: 1;
}

/* ｜｜ 縦線 */
.history__line {
  position: absolute;
  top: 40px;
  left: 8px;
  width: 0;
  height: calc(100% + 60px); /* margin-bottom 分まで追従 */
  border-left: 2px dashed #C4CEDA;
  z-index: 0;
}

/* 日付 */
.history__date {
  font-weight: 700;
  margin-bottom: 4px;
}

/* 本文 */
.history__text {
  line-height: 1.7;
}

.history__img {
  margin-top: 13px;
  display: block;
  max-width: 100%;
  height: auto;
}

/* 最後の項目だけ縦線なし */
.history__item:last-child .history__line {
  display: none;
}

@media screen and (max-width: 768px) {
  .history {
    margin-top: 62px;
  }

  .history__year {
    width: 80px;
    font-size: 20px;
    line-height: 24px;
    margin-right: 4px;
  }

  .history__year--nen {
    font-size: 13px;
    margin-left: 4px;
  }

  .history__body {
    padding-left: 28px;
  }

  .history__dot {
    width: 10px;
    height: 10px;
    top: 12px;
  }

  .history__line {
    top: 20px;
    left: 4px;
    height: calc(100% + 60px);
  }
}

/* 会社情報の主要取引先用 */
.partner-list {
  padding: 0 0 0 1.30em;
}

.partner-list li {
  padding: 0 0 1.20em 0;
  position: relative;
}

.partner-list li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.72em;
  left: -1.00em;
  width: 0.34em;
  height: 0.34em;
  border-radius: 50%;
  background: #D7DDE4;
}

.partner-list li:last-child {
  padding: 0;
}

/* PC時：主要取引先を2列表示 */
@media screen and (min-width: 769px) {
  .partner-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
  }
}