@charset "utf-8";

.company-cont{
  position: relative;
  margin: 5rem auto;
}

.company-cont-title{
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: center;
}

.company-cont-wrap{
  font-size: 1.25rem;
  text-align: center;
}

.company-cont-title h2{
  font-size: 2rem;
  text-align: center;
}

.company-item01{
  position: relative;
  width: 80%;
  margin: 5rem 0 5rem auto;
  display: flex;
  gap: 3rem;
  justify-content: space-between;
}

.company-item01-text{
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.company-item01-text h3{
  font-size: 1.5rem;
}

.company-item01 img{
  max-width: 50%;
  height: auto;
}

.company-item02{
  position: relative;
  width: 80%;
  margin: 5rem auto 5rem 0;
  display: flex;
  gap: 3rem;
  justify-content: space-between;
}

.company-item02-img{
  max-width: 50%;
  height: auto;
}

.company-info{
  position: relative;
  margin: 5rem auto;
  width: 70%;
  min-width: 680px;
}

.company-info-title{
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.company-info-item{
  margin: 5rem 0;
  display: flex;
  gap: 5rem;
}

.company-info-item img{
  max-width: 35%;
  height: auto;
}

.company-info-list{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.company-info-list-item{
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #707070;
}

.company-info-point-title{
  display: flex;
  gap: 2rem;
  align-items: center;
  width: 100%;
  border-bottom: #BCBCBC 1px solid;
  padding: 1rem 0;
}

.company-info-point-title h3{
  font-size: 1.5rem;
}

.company-info-point-img{
  width: 24px;
  height: auto;
}


@media screen and (max-width: 960px) {
  .company-cont{
    margin: 3rem auto;
  }
  .company-cont-title h2{
    font-size: 1.5rem;
  }
  .company-item01{
    width: 90%;
    margin: 2rem auto;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .company-item01-text{
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .company-item01-text h3{
    font-size: 1.125rem;
  }

  .company-item01 img{
    max-width: 100%;
  }

  .company-item02{
    width: 90%;
    margin: 2rem auto;
    flex-direction: column-reverse;
    gap: 2rem;
    align-items: center;
  }
  .company-item02-img{
    max-width: 100%;
  }
  .company-info{
    position: relative;
    margin: 3rem auto;
    width: 90%;
    min-width: 90%;
  }
  .company-info-title{
    display: flex;
    flex-direction: column;
    gap: .5rem;
  }
  .company-info-item{
    margin: 2rem 0;
    flex-direction: column;
    gap: 2rem;
  }
  .company-info-item img{
    max-width: 50%;
  }
  .company-info-list-item{
    display: grid;
    grid-template-columns: 1fr 4fr;
    gap: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #707070;
  }
  .company-info-point-title{
    display: flex;
    gap: 1rem;
    align-items: center;
    width: 100%;
    border-bottom: #BCBCBC 1px solid;
    padding: 1rem 0;
  }
  .company-info-point-title h3{
    font-size: 1.125rem;
  }
  .company-info-point-img{
    width: 24px;
    height: auto;
  }
  .company-info-item-img{
    margin: 0 auto;
  }

}