.sub_container {
  .inner {
    width: 100%;
    max-width: 1272px;
    margin: 0 auto;
    padding: 24px 16px 165px;
    box-sizing: border-box;
  }

  .title {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin: 34px 0 40px;
  }

  .pc {
    display: none;
  }

  .link {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;

    a {
      flex: 0 0 30%;
      position: absolute;
      width: 30%;
      height: 40%;
      p {
        display: none;
      }

      &.second,
      &.four {
        right: 0;
      }

      &.third,
      &.four {
        bottom: 0;
      }
    }
  }

  .inner-section {
    margin-top: 80px;
    
    &.gray {
      .section-title {
        margin-bottom: 60px;
      }

      .box {
        position: relative;
        padding: 60px 0 66px;


        &::before {
          content: "";
          display: block;
          position: absolute;
          top: 0;
          bottom: 0;
          width: 100vw;
          left: 50%;
          transform: translateX(-50vw);
          z-index: -1;
          background-color: #FAFAFA;
        }
      }
    }
    
    .section-title {
      text-align: center;
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 40px;
    }

    &:last-child {
      .box {
        border-radius: 16px;
        background-color: #FAFAFA;
        padding: 60px 24px 50px;
      }
    }
  }

  @media screen and (min-width:768px) {
    .mo {
      display: none;
    }
    .pc {
      display: block;
    }

    .inner {
      padding: 24px 16px 135px;
  
      .title {
        margin: 34px 0 100px;
        font-size: 45px;
      }

      .inner-section {
        margin-top: 140px;

        &.gray {
          .section-title {
            margin-bottom: 60px;
          }

          .box {
            padding: 80px 0;
          }
        }

        .section-title {
          font-size: 45px;
          margin-bottom: 70px;
        }

        &:last-child {
          .box {
            padding: 80px 84px;
          }
        }
      }
    }
  }
}