/* AIアプリケーション イノベーションコミュニティのご紹介 固定ページ Styles */
#ai-community-program {
  background: #000;
  color: #fff;

  .article-inner {
    margin-bottom: 0;
    padding-bottom: 40px;
  }
  @media screen and (max-width: 1199px){
    .article-inner {
      padding: 40px 30px 0 53px;
    }
    .article-body {
      width: calc(90% - 250px);
    }
  }
  @media screen and (max-width: 768px){
    .article-inner {
      padding: 40px 0 0 0;
    }
    .article-body {
      width: 100%;
    }
  }

  .entrylist-item-body {

    .entrylist-item-head::after {
      background: #fff;
    }

    a {
      color: #fff;
    }

    .category {
      border: 1px solid #fff;
    }
  }

  .contact {
    display: flex;
    width: 100%;
    padding: 70px 30px;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    background: #1A1A1B;
    color: #FFF;
    text-align: center;

    .inner {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      align-items: center;

      .title-group {
        margin: 0 0 40px;
        align-items: center;
  
        .title {
          font-size: 36px;
          margin: 0 0 30px;
        }

        .description {
          color: #FFF;
        }
      }
  
      .button-link {
        display: flex;
        height: 56px;
        padding: 0px 24px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        border: 1px solid #FFF;
        background: #1A1A1B;
        color: #FFF;
        font-size: 20px;
        font-weight: bold;
        line-height: 1;
        transition: opacity 0.2s cubic-bezier(0.39, 0.575, 0.565, 1)
      }
  
      .button-link:hover {
        opacity: 0.5;
      }
    }
  }
  @media screen and (max-width: 768px){
    .contact {
      padding: 50px 16px;

      .inner {
        .title-group {
          .title {
            font-size: 22px;
          }

          .description {
            font-size: 14px;
          }
        }
    
        .button-link {
          display: flex;
          height: 56px;
          padding: 0px 24px;
          justify-content: center;
          align-items: center;
          gap: 8px;
          border: 1px solid #FFF;
          background: #1A1A1B;
          color: #FFF;
          font-size: 20px;
          font-weight: bold;
          line-height: 1;
          transition: opacity 0.2s cubic-bezier(0.39, 0.575, 0.565, 1)
        }
    
        .button-link:hover {
          opacity: 0.5;
        }
      }
    }
  }
}