@charset "UTF-8";
/* CSS Document */

.culture{
  text-align: center;
  margin-top: 15px;
  padding: 80px 0 180px;
  background-color: rgba(211, 237, 251, 1);
  background-image: radial-gradient(at 50% 25%, rgba(255, 255, 255, 1), rgba(234, 246, 253, 1) 30%, rgba(211, 237, 251, 1));
}

.culture .info{
  margin-bottom: 90px;
}

.culture .info p{
  font-size: 18px;
  line-height: 1.6;
}

.culture h2{
  width: 350px;
  height: 42px;
  font-size: 27px;
  line-height: 42px;
  color: #FFF;
  margin-bottom: 65px;
  display: inline-block;
  background: #023894;
  border-radius: 50px;
}

.culture p{
  font-size: 30px;
  line-height: 1.5;
}

.culture p + h2{
  margin-top: 115px;
}

.culture ul{
  display: flex;
  justify-content: center;
  flex-flow: wrap;
  gap: 0 35px;
}

.culture ul li{
  width: 255px;
}

.culture ul li img{
  width: 120px;
  height: auto;
}

.culture ul li h3{
  font-family: FrutigerBold,sans-serif;
  font-size: 25px;
  line-height: 1.3;
  min-height: 2.3em;
  margin: 35px 0 30px;
  position: relative;
}

.culture ul li h3 span{
  width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%)
}

.culture ul li p{
  font-size: 15px;
  line-height: 1.5;
  text-align: left;
}

.culture ul li p + p{
  margin-top: 15px;
}

.logo_list{
  padding: 30px 15px;
  margin-bottom: 1px;
  background: #023894;
}

.logo_list ul{
  display: flex;
  justify-content: center;
  gap: 0 65px;
}

@media screen and (max-width: 1230px) {
  .logo_list ul{
    gap: 0 4.5%;
  }
}

.logo_list ul li img{
  width: auto;
  height: auto;
  max-height: 45px;
}

@media screen and (max-width: 768px) {
  
  .culture{
    margin-top:15vw;
    padding: 10vw 5vw 15vw;
  }

  .culture .info{
    margin-bottom: 10vw;
  }

  .culture .info p{
    font-size: 3.3vw;
    line-height: 1.8;
  }

  .culture h2{
    width: 80%;
    height: 9vw;
    font-size: 4.5vw;
    line-height: 9vw;
    margin-bottom: 8vw;
    border-radius: 10vw;
  }

  .culture p{
    font-size: 5vw;
    line-height: 1.5;
  }

  .culture p + h2{
    margin-top: 15vw;
  }

  .culture ul{
    display: block;
  }

  .culture ul li{
    width: 90%;
    margin: 0 auto;
  }
  
  .culture ul li + li{
    margin-top: 15vw;
  }

  .culture ul li img{
    width: 30%;
    height: auto;
  }

  .culture ul li h3{
    font-size: 5vw;
    line-height: 1;
    min-height: inherit;
    margin: 5vw 0 4vw;
  }
  
  .culture ul li h3 span{
    width: 100%;
    display: block;
    position: static;
    top: auto;
    left: auto;
    transform: translate(0)
  }
  
  .culture ul li p{
    font-size: 3.5vw;
    line-height: 1.5;
    text-align: left;
    padding: 0 
  }

  .culture ul li p + p{
    margin-top: 3vw;
  }

  .logo_list{
    padding: 5vw 4vw;
  }

  .logo_list ul{
    display: flex;
    justify-content: center;
    gap: 0 2vw;
  }
  
  .logo_list ul li img{
    width: 100%;
    height: auto;
    max-height: inherit;
  }  
}

