.main {
    background: #F6F1FF;
  }

  div {
    box-sizing: border-box;
  }

  .footer {
    background: #191E63;
    padding: 70px 20px;
    text-align: center;
    color: white;
    color: #FFFFFF;
    font-size: 20px;
    line-height: 40px;
    margin-top: 70px;
  }

  .container {
    max-width: 1240px;
    margin: 50px auto;
    padding: 0 20px;
  }

  .item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid #D9D9D9;
  }

  .item img {
    max-width: 300px;
    height: 270px;
    object-fit: cover;
  }

  .item .info {
    flex: 1;
  }

  .item .info h3 {
    font-size: 24px;
    line-height: 42px;
    margin-bottom: 20px;
    color: #343434;
  }
  .item .info a{
    font-size: 20px;
    line-height: 40px;
    margin: 40px 0;
    color: #767676;
  }
  .item .info .desc {
    font-size: 20px;
    line-height: 40px;
    margin: 40px 0;
    color: #767676;
  }


  .more {
    display: block;
    margin: 0 auto;
    width: 130px;
    height: 55px;
    line-height: 55px;
    background: #841A1D;
    color: white;
    text-align: center;
    margin-top: 50px;
    font-size: 20px
  }

  .mobile {
    display: none;
  }

  @media screen and (max-width: 768px) {
    .pc {
      display: none;
    }

    .mobile {
      display: block;
    }

    body {
      min-width: 100%;
    }

    .footer {
      background: #191E63;
      padding: 30px 15px;
      text-align: center;
      color: white;
      color: #FFFFFF;
      font-size: 12px;
      line-height: 20px;
      margin-top: 40px;
    }

    .container {
      max-width: 100%;
      width: 100%;
      margin: 0 auto;
      padding: 0 15px;
      padding-top: 20px;
    }

    .item {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 15px;
      padding: 15px 0;
      border-bottom: 1px solid #D9D9D9;
    }

    .item img {
      max-width: 120px;
      height: 100px;
      object-fit: cover;
    }

    .item .info {
      flex: 1;
    }

    .item .info h3 {
      font-size: 14px;
      line-height: 20px;
      font-weight: bold;
      margin-bottom: 0;
      color: #343434;
    }

    .item .info p,.item .info a {

      color: #767676;
      font-size: 10px;
      line-height: 13px;
    }
    .item .info .desc {
      font-size: 12px;
      line-height: 16px;
      margin: 8px 0;
    }


    .more {
      display: block;
      margin: 0 auto;
      width: 70px;
      height: 33px;
      line-height: 33px;
      background: #841A1D;
      color: white;
      text-align: center;
      margin-top: 30px;
      font-size: 12px
    }
  }