/* AIアライアンスパートナー企業  固定ページ Styles */
#ai-community-partner {
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.5;
  overflow-wrap: anywhere;

  .is-sp {
    display: none;
  }
  @media screen and (max-width: 768px){
    .is-sp {
      display: block;
    }
  }

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

  .block {
    display: flex;
    width: 100%;
    padding: 70px 30px;
    justify-content: center;
    align-items: center;
  }
  @media screen and (max-width: 768px){
    .block {
      padding: 50px 16px;
    }
  }

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

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

      .title-group {
        display: flex;
        flex-direction: column;
        align-items: center;
  
        .title {
          font-size: 36px;
          margin: 0 0 30px;
        }
      }

      .partner-list-title {
        font-size: 32px;
        margin: 0 0 30px;
      }

      .partner-list {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;

        .partner-list-item {
          display: flex;
          width: calc(100% / 6);
          height: 120px;
          justify-content: center;
          align-items: center;
          flex-shrink: 0;
          background: #fff;
          position: relative;

          .partner-logo {
            max-width: 160px;
            max-height: 80px;
          }
        }
      }
    }
  }
  @media screen and (max-width: 999px){
    .partner {
      .inner {
        .partner-list {
          .partner-list-item {
            .partner-logo {
              max-width: 120px;
              max-height: 60px;
            }
          }
        }
      }
    }
  }
  @media screen and (max-width: 768px){
    .partner {
      .inner {
        .title-group {
          .title {
            font-size: 24px;
          }

          .description {
            font-size: 15px;
            text-align: left;
          }
        }
  
        .partner-list-title {
          font-size: 20px;
        }
  
        .partner-list {
          .partner-list-item {
            width: calc(100% / 3);
            height: 80px;

            .partner-logo {
              max-width: 100px;
              max-height: 40px;
            }
          }
        }
      }
    }
  }

  .contact {
    flex-direction: column;
    background: #1A1A1B;
    color: #FFF;
    text-align: center;

    .inner {
      align-items: center;

      .title-group {
        margin: 0 0 40px;
        align-items: center;
  
        .title {
          font-size: 36px;
          margin: 0 0 30px;
        }
      }
  
      .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 {
      .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;
        }
      }
    }
  }
}