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


.txt_box > h2{
  font-family: FrutigerBold,"sans-serif";
  font-size: 44px;
  line-height: 1;
  color: #20344F;
  text-align: center;
  margin-bottom: 110px;
}

.logo{
  width: 400px;
  margin: 0 auto 115px;
}

.txt_box p{
  font-size: 16px;
  line-height: 1.8;
}

.txt_box p + p{
  margin-top: 35px;
}

.box{
  text-align: center;
  border: 1px solid #023485;
  border-radius: 10px;
  padding: 0 0 40px;
  margin-top: 80px
}

.box + .box{
  margin-top: 75px;
}

.box h2{
  font-family: FrutigerBold,"sans-serif";
  width: 240px;
  height: 50px;
  font-size: 20px;
  line-height: 50px;
  color: #FFF;
  background: #023485;
  border-radius: 50px;
  display: inline-block;
  overflow: hidden;
  margin-bottom: 25px;
  margin-top: -25px;
}

.box h3{
  font-family: FrutigerBold,"sans-serif";
  font-size: 32px;
  line-height: 1;
  color: #023485;
  margin-bottom: 20px;
}

.box p{
  font-size: 20px;
  line-height: 1.8;
}

.box ul{
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
  align-items: stretch;
}

.box ul li{
  width: 25%;
  font-family: FrutigerBold,"sans-serif";
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  padding-top: 140px;
  position: relative;
}

.box ul li img{
  max-width: inherit;
  width: 145px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-65%);
}



@media screen and (max-width: 767px) {
  
  .txt_box > h2{
    font-size: 6vw;
    line-height: 1;
    margin-bottom: 10vw;
    margin-top: 10vw;
  }

  .logo{
    width: 70%;
    margin: 0 auto 10vw;
  }

  .txt_box p{
    font-size: 3.6vw;
      line-height: 1.7;
  }

  .txt_box p + p{
    margin-top: 8vw;
  }

  .box{
    border-radius: 1vw;
    padding: 0 5vw 5vw;
    margin-top: 15vw
  }

  .box + .box{
    margin-top: 10vw;
  }

  .box h2{
    width: 40vw;
    height: 9vw;
    font-size: 4vw;
    line-height: 9vw;
    border-radius: 5vw;
    margin-bottom: 6vw;
    margin-top: -4.5vw;
  }

  .box h3{
    font-size: 5.5vw;
    line-height: 1;
    color: #023485;
    margin-bottom: 4vw;
  }

  .box p{
    font-size: 4vw;
    line-height: 1.6;
  }

  .box ul{
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
  }

  .box ul li{
    width: 50%;
    font-size: 3.6vw;
    line-height: 1;
    padding-top: 25vw;
  }
  
  .box ul li:nth-of-type(n+3){
     margin-top: 5vw;
  }

  .box ul li img{
    width: 60%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-65%);
  }
 
}






