 /* hero */
 .hero {
  background: url(../images/home/pc_hero_bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 780px;
  position: relative;
  background-color: #f1f4ff;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 31px;

  .hero-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    top: 50%;
    left: 0;
    right: 0;
    max-width: 1128px;

    .hero-text {
      width: 54%;
      padding-top: 101px;

      .hero-sub-title {
        color: #1A1A1A;
        font-family: "Noto Sans JP";
        font-size: 1.375rem; /*22px*/
        font-style: normal;
        font-variation-settings: "wght" 500;
        line-height: 150%;
        letter-spacing: -1px;
        padding-bottom: 8px;
      }

      .hero-title {
        color: #1a1a1a;
        font-family: "Noto Sans JP";
        font-size: var(--wa-font-size-xl);
        font-style: normal;
        font-variation-settings: "wght" 500;
        line-height: 140%;
        letter-spacing: -1px;
        padding-bottom: 24px;

        span {
            color: transparent;
            background: linear-gradient(90deg, #343B8B 10.83%, #8945B4 94.62%);
            background-clip: text;
        }
      }

      .text {
        font-size: 1.125rem; /*18px*/
        font-style: normal;
        font-variation-settings: "wght" 400;
        line-height: 170%;
        letter-spacing: 0px;
      }

      .hero-btn-lists {
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding-top: 48px;

        .hero-cta-list {
          color: #fff;
          font-feature-settings: 'pwid' on;
          /* PC/Standard/Std-16R */
          font-family: "Noto Sans JP";
          font-size: var(--wa-font-size-base);
          font-style: normal;
          font-variation-settings: "wght" 400;
          line-height: 160%; /* 25.6px */
          letter-spacing: 0px;

          .hero-dl-btn {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            flex-shrink: 0;
            width: 274px;
            height: 48px;
            background-image: url(../images/home/hero-dl-bg.svg);
            background-repeat: no-repeat no-repeat;
            color: #fff;
            padding: 11px 24px;
            text-decoration: none;

            &:hover {
              background-image: url(../images/home/hover-hero-dl-bg.svg);
            }
          }

          .hero-contact-btn {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            flex-shrink: 0;
            background-image: url(../images/home/hero-contact-bg.svg);
            background-repeat: no-repeat no-repeat;
            width: 209px;
            height: 48px;
            color: #343b8b;
            padding: 11px 24px;
            text-decoration: none;

            &:hover {
              color: #fff;
              background-image: url(../images/home/hover-hero-contact-bg.svg);
            }
          }
        }
      }
    }

    .hero-image {
      position: relative;
      top: 0;
      flex-shrink: 1;
      padding-top: 47.35px;
    }
  }

  .hero-achievement {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 226px;

    .achievement-data {
      display: flex;
      align-items: center;
      color: #fff;
      justify-content: flex-end;

      &::after {
        content: "";
        display: block;
        background: #1f2353;
        width: 50%;
        height: 88px;
        position: absolute;
        right: 0;
        z-index: 0;
      }

      & picture {
        line-height: 0;
      }

      dl,
      div {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 88px;
        color: #fff;
        padding-left: 120px;
        flex-shrink: 0;

        dt {
          font-size: var(--wa-font-size-xs); /*14px*/
          color: #fff;
          font-variation-settings: "wght" 400;
          line-height: 160%;
        }

        dd {
          font-size: 1.25rem; /*20px*/
          color: #fff;
          font-variation-settings: "wght" 500;
          line-height: 150%;

          span {
            font-size: var(--wa-font-size-xxs);
            font-variation-settings: "wght" 400;
            line-height: 160%;
          }
        }

        &:first-child{
          background: #343b8b;
          max-width: calc(32px + 176px + 88px);
          width: 100%;
          padding: 0 50px 0 0;
          position: relative;
          padding-right: 88px;
          z-index: 1;

          &::before {
            content: "";
            display: block;
            width: 92px;
            height: 88px;
            background: #343b8b;
            clip-path: polygon(100% 100%, 96% 0, 0 100%);
            position: absolute;
            left: -88px;
          }
        }

        &:nth-child(2) {
          background: rgba(42 47 111);
          max-width: 270px;
          width: 100%;
          padding: 0 50px 0 0;
          position: relative;
          z-index: 1;

          &::before {
            content: "";
            display: block;
            width: 92px;
            height: 88px;
            background: #2a2f6f;
            clip-path: polygon(100% 100%, 96% 0, 0 100%);
            position: absolute;
            left: -88px;
          }
        }

        &:last-child {
          background: rgba(31 35 83);
          max-width: 244px;
          width: 100%;
          padding: 0 0 0 50px;
          position: relative;
          z-index: 1;

          &::before {
            content: "";
            display: block;
            width: 89px;
            height: 88px;
            background: #1f2353;
            clip-path: polygon(100% 100%, 100% 0, 0 100%);
            position: absolute;
            left: -88px;
          }
        }
      }

    }

    .notes {
      padding: 0 0 0 1rem;
      max-width: 869px;
      width: 100%;

      .note {

        &::before {
          content: "※"counter(number)".";
        }
      }
    }
  }
}

.hero-news {
  padding: 0 0 0 1rem;
  & li {
    display: flex;
    align-items: center;
    gap: .75rem;
  }
}

.hero-news-tag {
  flex-shrink: 0;
  padding: 0.375rem 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  background: #E5E7FF;
  border-radius: 0.375rem;
  color: #343B8B;
}

.hero-news-link {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #0055AD;
  text-decoration: underline;
  position: relative;
  &[target] {
    &::after {
      content: "";
      display: inline-block;
      width: 1rem;
      height: 1rem;
      background: url(../images/common/blue-arrow-up-right-from-square.svg) no-repeat center center / 100%;
      position: absolute;
      margin: .1875rem 0 0 .25rem;
    }
  }
}

/* about */
.about {
  background: var(--wa-pc-sub-bg-color);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: inherit;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 120px 40px;
  color: #fff;

  .sub-headline {
    text-align: center;
  }

  .content {
    display: flex;
    flex-direction: column;
    align-items: normal;
    gap: 24px;
  }

  .description {
    font-size: var(--wa-font-size-base); /*16px*/
    font-style: normal;
    font-variation-settings: "wght" 400;
    line-height: 160%;
  }

  .about-image {
    display: flex;
    gap: 45px;
    padding-top: 24px;
  }
}

/* feature */
.feature {
  background: #fff;
  padding: 160px 0;

  .feature-inner {
    display: flex;
    flex-direction: column;
    gap: 64px;
    padding: 25px 40px 0;
    width: 100%;
    max-width: 936px;
    margin: 0 auto;

    .headline {
      color: #343b8b;
      position: relative;
      z-index: 1;

      &::before {
        content: "FEATURE";
        display: block;
        color: #dac3e9;
        font-size: 8rem; /*128px*/
        font-variation-settings: "wght" 500;
        line-height: 125%;
        letter-spacing: -2.56px;
        text-transform: uppercase;
        text-align: center;
        top: -60px;
        right: 0px;
        left: 0px;
        bottom: 0;
        position: absolute;
        z-index: -1;
        bottom: -50px;
        opacity: 0.25;
      }
    }

    .feature-lists {
      display: flex;
      flex-direction: column;
      gap: 56px;

      li {
        &:nth-child(odd) {
          flex-direction: row-reverse;
        }
      }

      .feature-list {
        display: flex;
        gap: 40px;
        align-items: flex-start;

        .description {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          flex: 1 0 0;
          gap: 16px;
          padding-top: 32px;

          .title {
            color: #1a1a1a;
            font-size: 1.5rem; /*24px*/
            font-variation-settings: "wght" 500;
            line-height: 150%;
          }

          .text {
            color: #333;
          }
        }

        .feature-image {
          display: flex;
          justify-content: center;
          align-items: center;
          max-width: 384px;
          min-height: 304px;
          padding: 0 20px;
          line-height: 0;
          flex-shrink: 0;
          background: #fff;

          img {
            width: 100%;
          }
        }
      }
    }
  }
}

/* casestudy */
.casestudy {
  padding: 160px 0;

  .casestudy-inner {
    padding: 25px 40px 0;

    .description {
      display: flex;
      flex-direction: column;
      gap: 40px;

      .headline {
        color: #343b8b;
        position: relative;
        z-index: 1;

        &::before {
          content: "Case Studies";
          display: block;
          color: #dac3e9;
          font-size: 8rem; /*128px*/
          font-variation-settings: "wght" 500;
          line-height: 125%;
          letter-spacing: -2.56px;
          text-transform: uppercase;
          text-align: center;
          right: 0px;
          left: 0px;
          position: absolute;
          z-index: -1;
          bottom: -50px;
          opacity: 0.25;
        }
      }

      .text {
        font-size: 1.125rem; /*18px*/
        color: #333;
        display: flex;
        justify-content: center;
        text-align: center;
      }
    }

    .post-card {
      display: flex;
      flex-wrap: wrap;
      gap: 3rem 2.1277%;
      margin-top: 60px;
      margin-bottom: 56px;


      .post-item {
        width: 31.9149%;
        border: 1px solid #ccc;
        background: #fff;
        box-shadow: 2px 2px 6px 0px rgba(255, 255, 255, 0.10);
        border-radius: 0.5rem;
        overflow: hidden;

        .post-link {
          display: block;
          height: 100%;

          .post-figure {
            width: 100%;
            overflow: hidden;
            position: relative;

            &::before {
              content: "";
              display: block;
              padding-top: 55.8659%;
            }


            &::after {
              content: "";
              display: block;
              width: 100%;
              height: 100%;
              background: rgba(0, 0, 0, 0.30);
              position: absolute;
              top: 0;
              left: 0;
              opacity: 0;
              transition: .3s;
            }

            img {
              width: 100%;
              height: 100%;
              object-fit: cover;
              position: absolute;
              top: 0;
              left: 0;
            }
          }

          .post-text {
            line-height: 1.6;
            padding: 1.5rem 1.5rem 2rem;

            .case-item-meta {
              display: flex;
              flex-direction: column;
              gap: 0.5rem;
              margin: 0 0 1.5rem;

              .case-logo {
                height: 1.5rem;
                overflow: hidden;

                img {
                  width: 100%;
                  height: 100%;
                  object-fit: contain;
                  object-position: left;
                }
              }

              .company-category {
                font-size: 0.8125rem;
              }
              .company-text {
                font-variation-settings: "wght" 700;
              }
            }

            .post-title {
              color: inherit;
              font-size: 1rem;
              font-variation-settings: "wght" 400;
              margin: 0 0 .5rem;
              overflow: hidden;
              display: -webkit-box;
              -webkit-box-orient: vertical;
              -webkit-line-clamp: 3;
              transition: .3s;
            }


            .post-lead {
              overflow: hidden;
              display: -webkit-box;
              -webkit-box-orient: vertical;
              -webkit-line-clamp: 3;
            }

            .case-item-tag {
              display: flex;
              flex-wrap: wrap;
              gap: 0.5rem;
              padding: 1.5rem 0 0;
              margin: 1.5rem 0 0;
              border-top: 1px solid #ccc;

              li {
                font-size: 0.75rem;
                padding: 0.25rem 0.625rem;
                color: #666;
                background: #F2F2F2;
                border: solid 1px #E6E6E6;
                border-radius: 0.25rem;
              }
            }
          }
        }

        & :hover {
          color: #343B8B;
          text-decoration: none;

          .post-figure {
            &::after {
              opacity: 1;
            }

            .post-title {
              color: #343B8B;
            }
          }
        }
      }
    }

    .link-btn {
      display: flex;
      gap: 12px;
      width: 262px;
      margin: 0 auto;
      padding: 16px 32px;
    }

    .casestudy-customer {
      display: flex;
      flex-direction: column;
      gap: 32px;
      padding-top: 160px;
      width: 864px;
      margin: 0 auto;

      .headline {
        font-size: 1.5rem; /*24px*/
        font-style: normal;
        font-variation-settings: "wght" 500;
        line-height: 150%; /* 36px */
        text-align: center;
        margin-bottom: 8px;
      }

      .customer-lists {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        gap: 24px;
        text-align: left;

        .customer-list {

          img {
            max-width: 152px;
            flex-shrink: 0;

          }
        }
      }
    }
  }
}

/* price */
.price {
  background: var(--wa-pc-sub-bg-color);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  display: flex;
  flex-direction: column;
  padding: 160px 0;

  .price-inner {
    padding: 25px 40px 0;

    .headline {
      color: #fff;
      position: relative;
      z-index: 1;

      &::before {
        content: "PRICE";
        display: block;
        color: #dac3e9;
        font-size: 8rem; /*128px*/
        font-variation-settings: "wght" 500;
        line-height: 125%;
        letter-spacing: -2.56px;
        text-transform: uppercase;
        text-align: center;
        right: 0px;
        left: 0px;
        position: absolute;
        z-index: -1;
        bottom: -50px;
        opacity: 0.25;
      }
    }

    .price-wrap {
      margin-top: 80px;
      margin-bottom: 48px;

      .price-image {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 24px;
      }

      .notes {
        margin-top: 16px;

        .note {
          color: #fff;

          &::before {
            content: "※";
        }
        }
      }
    }

    .price-summary {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: #fff;
      margin-top: 48px;

      .text {
        color: #fff;
        text-align: center;
        font-size: 1.25rem; /*20px*/
        line-height: 150%; /* 30px */
      }

      .sub-title {
        color: var(--white, #FFF);
        text-align: center;
        font-size: var(--wa-font-size-xl); /*40px*/
        font-style: normal;
        font-variation-settings: "wght" 500;
        line-height: 140%; /* 56px */
        letter-spacing: -1px;
        margin-bottom: 48px;
      }

      .price-btn {
        gap: 12px;
        width: 256px;
        margin: 0 auto;
        padding: 16px 40px;
        border: 1px solid #EAE2F9;
        font-size: var(--wa-font-size-base); /*16px*/
        color: #343b8b;
        font-variation-settings: "wght" 500;
        background: #fff;

        &:hover {
          color: #fff;
          border: solid 1px #2E1F44;
          background-color: #EAE2F9;
          color: #343b8b;
          opacity : 0.7;
        }

        &::after {
          content: "";
          display: block;
          width: 10px;
          height: 10px;
          background-image: url(../images/common/arrow-btn.svg);
          background-repeat: no-repeat, no-repeat;
          background-position: center;
        }
      }
      }
  }
}

/* news */
.news {
  padding: 120px 0;

  .news-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 0 40px;

    .headline {
      color: #343b8b;
    }

    .news-lists {
      display: flex;
      flex-direction: column;
      gap: 32px;

      .news-list {
        display: flex;
        gap: 8px;
        width: 100%;
        max-width: 900px;
        align-items: center;

        .date {
          color: #666;
          text-align: center;
          font-size: var(--wa-font-size-xs); /*14px*/
          font-style: normal;
          font-variation-settings: "wght" 400;
          line-height: 160%; /* 22.4px */
          padding-right: 8px;
          flex: 0 0 88px;
        }

        .tag {
          color: #666;
          text-align: center;
          font-size: var(--wa-font-size-xxs);
          font-variation-settings: "wght" 400;
          line-height: 160%;
          border-radius: 4px;
          border: 1px solid #e6e6e6;
          background: #f2f2f2;
          padding: 4px 10px;
          flex: 0 0 auto;
        }

        .text {
          color: #0055ad;
          text-align: left;
        }
      }
    }

    .news-btn {
        width: 256px;

        &::after {
          width: 12px;
          height: 12px;
        }
    }
  }
}

@media (width < 992px) {
  .main {
    .hero {
      background-image: url(../images/home/sp_mv_bg.svg);
      background-position: top center;
      background-size: 100% auto;
      padding-bottom: 48px;

      .hero-head {
        padding-bottom: 215px;

        .hero-text {
          padding: 45px 1.5rem 0;
          width: 100%;

          .hero-sub-title {
            font-size: 1rem;
          }

          .hero-title {
            font-size: 1.875rem; /* 30px */

            span {
              display: block;
            }
          }

          .text {
            font-size: var(--wa-font-size-xs); /* 14px */
          }

          .hero-btn-lists {
            padding-top: 32px;

            .hero-cta-list {
              font-size: var(--wa-font-size-xs); /* 14px */

                .hero-dl-btn {
                  width: 242px;
                  background-image: url(../images/home/sp-hero-dl-bg.svg);

                  &:hover {
                    background-image: url(../images/home/sp-hero-dl-hover-bg.svg);
                  }
                }

                .hero-contact-btn {
                  width: 185px;
                  background-image: url(../images/home/sp-hero-contact-bg.svg);

                  &:hover {
                    background-image: url(../images/home/sp-hero-contact-hover-bg.svg);
                  }
                }
            }
          }
        }

        .hero-image {
          position: absolute;
          max-width: 264px;
          top: auto;
          bottom: 0;
          right: -46px;
      }

      }

      .hero-achievement {
        margin: 0 -24px;
        padding: 0;

        .achievement-data {
          justify-content: center;
          flex-shrink: 0;
          width: 100%;
          text-align: center;

          &::after {
            display: none;
          }

          dl,
          div {
            align-items: center;
            justify-content: flex-start;
            padding-top: 17px;

            dt {
              font-size: 0.6875rem;  /*11px */
              font-variation-settings: "wght" 400;
              line-height: 160%;
            }

            dd {
              font-size: var(--wa-font-size-xs); /* 14px */
              line-height: 180%;
              width: 100%;

              span {
                font-size: 0.6875rem;  /*11px */
              }

              .note {
                display: block;
                text-align: right;
                padding-right: 5px;
              }
            }

            &:first-child {
              display: flex;
              justify-content: center;
              flex-shrink: 1;
              flex-grow: 1;
              width: auto;
              padding: 14px 6px 14px 10px;
              max-width: 100%;

              &::before {
                display: none;
              }

            }

            &:nth-child(2) {
              flex-shrink: 1;
              flex-grow: 1;
              width: 112px;
              padding: 17px 0 0 0;
              max-width: 100%;

              &::before {
                display: none;
              }

            }

            &:last-child {
              align-items: center;
              flex-shrink: 1;
              flex-grow: 1;
              width: 130px;
              max-width: 100%;
              padding: 17px 0 0 0;

              &::before {
                display: none;
              }
            }


            &.number {
              picture {
                max-width: 132px;
              }
            }

          }
        }
      }
      .notes {
        padding: 0 3rem;
      }
    }
    .hero-news {
      padding: 0 3rem;
    }
  }
}

@media (width < 768px) {
  .main {
    .hero {
      .hero-head {
        .hero-text {
          padding: 45px 0 0;
        }
      }
      .hero-achievement {
        gap: 0;

        .notes {
          padding: 24px 24px 0;

          .note {
            font-size: var(--wa-font-size-xxs);
          }
        }
      }
    }
    .hero-news {
      padding: 2rem 1.5rem 0;
      & li {
        flex-direction: column;
        align-items: flex-start;
        gap: .5rem;
      }
    }
    .hero-news-link {
      line-height: 1.8;
      &::after {
        margin: .25rem 0 0 .5rem;
      }
    }
  }
  .main .about {
    padding: 0;
    background: var(--wa-sp-sub-bg-color);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;

    .about-inner {
      padding: 72px 32px 100px;

      .content {
        .sub-headline {
          font-size: var(--wa-font-size-ms);
        }

        .headline {
          font-size: 1.375rem; /* 22px */
          font-variation-settings: "wght" 500;
          line-height: 160%;
          letter-spacing: 0;
        }

        .description {
          font-size: var(--wa-font-size-xs);  /* 14px */
          line-height: 180%;
        }

        .about-image {
          flex-direction: column;
          gap: 32px;
          margin: 0 auto;


          li {
            width: 100%;
            max-width: 326px;
            height: 221px;
            border-radius: 8px;
            background: #fff;
          }
        }
      }
    }
  }

  .main .feature {
    padding: 135px 0 120px;

    .feature-inner {
      padding: 0 24px;
      gap: 40px;

      .headline {
        font-size: 1.625rem; /*26px */

        &::before {
          font-size: 3rem; /*48px*/
          font-style: normal;
          font-variation-settings: "wght" 900;
          line-height: 125%;
          right: 0;
          left: 0;
          bottom: 0;
          top: -28px;
          letter-spacing: -0.96px;
        }
      }

      .feature-lists {
        gap: 72px;
        li {
          &:nth-child(odd) {
              flex-direction: column-reverse;
          }
        }

        .feature-list {
          flex-direction: column-reverse;
          gap: 24px;

          .description {
            padding-top: 0;

            .title {
              font-size: 1.25rem; /* 20px */
              line-height: 160%;
            }

            .text {
              line-height: 180%;
              letter-spacing: -1px;
              margin-bottom: 16px;
            }

            .link-btn {
              margin: 0 auto;
              width: 80%;
            }

            .sp-link-btn {
              width: auto;
            }
          }

          .feature-image {
            width: 100%;
            padding: 0;
            margin: 0 auto;
            min-height: auto;

            img {
              padding: 0 61px 0 47px;
            }
          }
        }

      }
    }
  }

  .main .casestudy {
    padding: 120px 0;

    .casestudy-inner {
      padding: 0 24px;

      .description {
        gap: 24px;

        .headline {
          font-size: 1.625rem; /* 26px */
          line-height: 140%;

          &::before {
            font-size: 3rem; /*48px*/
            font-variation-settings: "wght" 900;
            line-height: 125%;
            letter-spacing: -0.96px;
            right: auto;
            left: 50%;
            bottom: 0;
            top: -28px;
            white-space: nowrap;
            transform: translateX(-50%);

          }
        }
        .text {
          font-size: var(--wa-font-size-xs); /* 14px */
          line-height: 180%;
        }
      }

      .post-card {
        margin-top: 40px;
        margin-bottom: 48px;

        .post-item {
          width: 100%;

          .post-figure {
            &::before {
              padding-top: 58.4795%;
            }
          }
        }
      }

      .casestudy-customer {
        padding-top: 120px;
        width: 100%;

        .headline {
          font-size: 1.125rem; /* 18px */
          font-variation-settings: "wght" 500;
          line-height: 160%;
          letter-spacing: 0;
        }

        .customer-lists {
          width: 100%;
          max-width: 342px;
          flex-wrap: wrap;
          margin: 0 auto;
          gap: 0;
          justify-content: space-between;

          .customer-list {
            margin-bottom: 24px;
          }
        }
      }
    }
  }

  .main .price {
    padding: 120px 0;
    background: var(--wa-sp-sub-bg-color);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;

    .price-inner {
      padding: 15px 32px 0;

      .headline {
        font-size: 1.625rem; /* 26px */

        &::before {
          font-size: 3rem; /*48px */
          font-variation-settings: "wght" 900;
          line-height: 125%;
          letter-spacing: -0.96px;
          bottom: 0;
        }
      }

      .price-wrap {
        margin-top: 40px;
        margin-bottom: 72px;
        display: flex;
        flex-direction: column;
        gap: 24px;

        .price-image {
          max-width: 326px;
          margin: 0 auto;
        }

        .notes {
          margin-top: 0;

          .note {
            width: 100%;
            max-width: 326px;
            margin: 0 auto;
          }
        }
      }

      .price-summary {
        gap: 16px;

        .text {
          font-size: var(--wa-font-size-base);  /* 16px */
          line-height: 180%;
        }

        .sub-title {
          margin-bottom: 38px;

          span {
            display: block;
          }
        }
      }
    }
  }

  .main .news {
    padding: 72px 0;

    .news-inner {
      padding: 0 32px;
      gap: 40px;

      .headline {
        font-size: 1.625rem; /* 26px */
      }

      .news-lists {
        gap: 40px;

        .news-list {
          flex-wrap: wrap;
          gap: 12px;

          .date {
            padding-right: 4px;
          }

          .text {
            text-align: left;
          }
        }
      }
    }
  }

  }
