@charset "UTF-8";
/* CSS Document */
.section-top{
  background-image: url("../images/second_top-bg.jpg");
  background-position: right 40% bottom 25% ;
  background-color: rgba(255,255,255,0.6);
  background-blend-mode: lighten;
  height: 260px;
  width: 100%;
  margin-bottom: 200px;
}
.section-top h2{
  font-size: 4.0rem;
  padding: 70px 0 0;
  border-bottom: 2px solid #ff9f1c;
  padding-bottom: 30px;
  width: 200px;
  margin: 0 auto 20px;
}
.section-top p{
  font-size: 2.0rem;
}
.fadeIn {
	opacity: 0;
	animation-name: fadeIn;
	animation-duration: 2s;
	animation-timing-function: ease;
	animation-delay: .25s;
	animation-fill-mode: forwards;
}
@keyframes fadeIn{
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.achievement{
  padding: 0 25px;
}
.achievement h2{
  display: inline-block;
  position: relative;
  font-size: 3.0rem;
  line-height: 3.6rem;
  padding: 0 0 10px;
  
}
.achievement h2:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  display: inline-block;
  width: 50px;
  height: 3px;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translate(-50%); /*位置調整*/
  background-color: #05668d; /*下線の色*/
}
.list{
  margin-top: 90px;
}
.line{
  display: flex;
  border-bottom: 1px solid #ff9f1c;
  padding: 10px 0;
}
.left{
  width: 80px;
  text-align: left;
  margin-right:  20px;
}
.right{
  text-align: left;
  width: 100%;
}
.list01{
  margin-top: 90px;
}
.line01{
  display: flex;
  border-bottom: 1px solid #ff9f1c;
  padding: 10px 0;
}
.left01{
  width: 80px;
  text-align: left;
  margin-right:  20px;
}
.right01{
  text-align: left;
  width: 100%;
}

@media(min-width: 1160px){
  .achievement{
    padding: 0 120px;
  }
  .flex{
    display: flex;
    justify-content: space-between;
  }
  
  .list{
    width: 100%;
    margin: 60px 100px;
  }
  .flex01{
    width: 400px;
    justify-content: space-between;
  }
  
  .list01{
    width: 100%;
    margin: 60px 100px;
  }
}




















