#main-content {
  /* =============================================================
  B. ヒーロー（FV）
  ============================================================= */
  .order-hero {
    background: url("../../img/common/reason-bg.jpg") center / cover no-repeat;
  }

  .order-hero__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 300px;
    padding-block: 24px;
  }

  .order-hero__title {
    font-size: 46px;
    font-weight: 700;
    white-space: nowrap;
    margin: 0;
  }

  .order-hero__illustration {
    flex-shrink: 0;
  }

  .order-hero__illustration img {
    display: block;
    width: 454px;
    height: auto;
  }

  @media (max-width: 1024px) {
    .order-hero__title {
      font-size: 30px;
    }

    .order-hero__illustration img {
      width: 340px;
    }
  }

  @media (max-width: 768px) {
    .order-hero {
      background-image: url("../../img/common/reason-bg-sp.jpg");
    }

    .order-hero__inner {
      gap: 12px;
      min-height: 120px;
      padding-block: 16px;
    }

    .order-hero__title {
      font-size: 24px;
      line-height: 1.5;
      white-space: normal;
    }

    .order-hero__illustration img {
      width: 145px;
    }
  }

  .service-list {
    background: #ffffff;
    padding-block: 60px 80px;
  }

  .service-list__header {
    margin-bottom: 60px;
  }

  .service-list__title {
    margin: 0 0 24px;
  }

  .service-list__lead {
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
  }

  @media (max-width: 768px) {
    .service-list {
      padding-block: 40px 0px;
    }

    .service-list__header {
      margin-bottom: 32px;
    }

    .service-list__title {
      margin-bottom: 16px;
    }
  }
  
  .service-document {
    background: #ffffff;
  }

  .service-document__body {
    margin-bottom: 60px;
  }

  .service-document__title {
    margin: 0 0 24px;
  }

  .service-document__lead {
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
  }

  @media (max-width: 768px) {
    .service-document__body {
      margin-bottom: 32px;
    }

    .service-document__title {
      margin-bottom: 16px;
    }
  }

  .container {
    .site-header__megamenu {
      position: relative;
      overscroll-behavior: initial;
      box-shadow: initial;
      overflow-y: initial;
      max-height: initial;

      @media (max-width: 1100px) {
        & {
          display: block !important;
        }
      }

      @media (max-width: 768px) {
        .mega-service__card {
          min-height: 50px;
        }
      }
    }

    .mega-service__main {
      grid-template-columns: repeat(3, 1fr);

      @media (max-width: 1100px) {
        & {
          grid-template-columns: 1fr;
        }
      }
    }

    .service-info {
      margin-bottom: 30px;

      h3 {
        color: white;
        border-radius: 10px 10px 0 0;
        text-align: center;
        padding: 10px 0;
      }

      .service-info__body {
        display: flex;
        align-items: center;
        line-height: 200%;

        &>div {
          padding: 20px;
        }

        &>div:first-child {
          width: 200px;

          @media (max-width: 1100px) {
            & {
              display: none;
            }
          }
        }
      }

      .service-info__footer {
        background-color: lightgreen;
        border-radius: 0 0 10px 10px;
        display: flex;
        justify-content: center;
        gap: 50px;

        @media (max-width: 1100px) {
          & {
            gap: 10px;
          }
        }

        padding-bottom: 20px;

        &>div {
          width: 100%;
          max-width: 385px;
        }

        .btn-more-link {
          color: black;
          border-color: #ff8802;

          &::after {
            background-image: url("../../img/common/icon_arrow-black.svg");
          }

          &:hover,
          &:focus-visible {
            color: white;
            background-color: #ff8802;

            &::after {
              background-image: url("../../img/common/icon_arrow-white.svg");
            }
          }
        }

        .btn-more-link__wrap:nth-child(2) .btn-more-link {
          color: white;
          background-color: #ff8802;

          &::after {
            background-image: url("../../img/common/icon_arrow-white.svg");
          }

          &:hover,
          &:focus-visible {
            color: black;
            background-color: white;

            &::after {
              background-image: url("../../img/common/icon_arrow-black.svg");
            }
          }
        }
      }

      &#desktop {
        h3 {
          background-color: #16a291;
        }

        .service-info__body,
        .service-info__footer {
          background-color: #eefafa;
        }
      }

      &#vps {
        h3 {
          background-color: #1877f2;
        }

        .service-info__body,
        .service-info__footer {
          background-color: #edf4fe;
        }
      }

      &#private {
        h3 {
          background-color: #72b935;
        }

        .service-info__body,
        .service-info__footer {
          background-color: #f2faeb;
        }
      }

      &#share {
        h3 {
          background-color: #09cae3;
        }

        .service-info__body,
        .service-info__footer {
          background-color: #ebfbfd;
        }
      }

      &#fx {
        h3 {
          background-color: #ffcd00;
        }

        .service-info__body,
        .service-info__footer {
          background-color: #fffbeb;
        }

        .service-info__footer {
          .btn-more-link {
            color: white;
            background-color: #ff3366;
            border-color: #ff3366;

            &::after {
              background-image: url("../../img/common/icon_arrow-white.svg");
            }

            &:hover,
            &:focus-visible {
              color: black;
              background-color: white;

              &::after {
                background-image: url("../../img/common/icon_arrow-black.svg");
              }
            }
          }
        }

        .btn-more-link__wrap:nth-child(2) .btn-more-link {
          color: white;
          background-color: #ff8802;
          border-color: #ff8802;

          &::after {
            background-image: url("../../img/common/icon_arrow-white.svg");
          }

          &:hover,
          &:focus-visible {
            color: black;
            background-color: white;

            &::after {
              background-image: url("../../img/common/icon_arrow-black.svg");
            }
          }
        }
      }

      &#managed {
        h3 {
          background-color: #6574e8;
        }

        .service-info__body,
        .service-info__footer {
          background-color: #f1f1fa;
        }

        .service-info__footer {
          .btn-more-link__wrap:nth-child(2) .btn-more-link {
            color: black;
            background-color: white;
            border-color: #ff8802;

            &::after {
              background-image: url("../../img/common/icon_arrow-black.svg");
            }

            &:hover,
            &:focus-visible {
              color: white;
              background-color: #ff8802;

              &::after {
                background-image: url("../../img/common/icon_arrow-white.svg");
              }
            }
          }
        }
      }
    }
  }
}
