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



/*==============================
共通
==============================*/
.btn{
  font-weight: 600;
  display: inline-block;
  padding: 12px 20px 7px;
  border: 2px solid #143a10;
  color: #143a10;
  background-color: rgba(20,58,16,.1);
  font-size: 15px;
}

.btn:hover{
  opacity: 1;
  background-color: #143a10;
  color: #fff;
}
/*==============================
メイン
==============================*/

#aboutWrap{
  text-align: center;
  padding: 100px 15px;
}

#aboutWrap > div{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

#aboutWrap > div > div{
  width: 50%;
  max-width: 800px;
  margin-right: 5%;
  text-align: left;
}

#aboutWrap > div > div h2{
  color: #143a10;
  margin-bottom: 30px;
}

#aboutWrap > div > div p{
  margin-bottom: 30px;
}

#aboutWrap > div > img{
  width: 45%;
  max-width: 500px;
}

#aboutWrap .btn{
  position: relative;
  width: 220px;
}

#aboutWrap .btn::before{
  transition: .3s;
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  bottom: 15px;
  width: 25px;
  height: 2px;
  background-color: #143a10;
}

#aboutWrap .btn::after{
  transition: .3s;
  content: "";
  display: block;
  position: absolute;
  right: 17px;
  bottom: 19px;
  width: 12px;
  height: 2px;
  transform: rotate(45deg);
  background-color: #143a10;
}

#aboutWrap .btn:hover::before{
  transition: .3s;
  background-color: #fff;
}

#aboutWrap .btn:hover::after{
  transition: .3s;
  background-color: #fff;
}

#aboutWrap h3{
  color: #143a10;
  font-size: 35px;
  line-height: 45px;
  margin-bottom: 15px;  
}

#aboutWrap h4{
  font-size: 23px;
  line-height: 33px;
  margin-bottom: 30px;
}

#flowWrap{
  padding: 0 15px 100px;
  text-align: center;
}

#flowWrap > h2{
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  background-color: rgba(20,58,16,.5);
  color: #fff;
  padding: 14px 50px 10px;
  margin-bottom: 50px;
}

#flowWrap > ul{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 50px;
  display: flex;
  justify-content: space-between;
}

#flowWrap > ul li{
  position: relative;
  width: 24%;
}

#flowWrap > ul li h4{
  font-size: 25px;
  margin-bottom: 10px;
}

#flowWrap > ul li img{
  width: 60%;
  max-width: 150px;
  margin: 0 auto 20px;
}

#flowWrap > ul li h5{
  font-size: 25px;
  margin-bottom: 20px;  
}

#flowWrap > ul li p{
  font-size: 15px;
  line-height: 20px;
  text-align: left;
}

#flowWrap > ul li p a{
  font-weight: 600;
  text-decoration: underline;
  color: #000;
}

#flowWrap > ul li i{
  position: absolute;
  font-size: 50px;
  color: rgba(20,58,16,.5);
  top: 100px;
  right: -15px;
}

#flowWrap > .btn{
  width: 100%;
  max-width: 250px;
}

#flowWrap > a:last-of-type{
  margin-left: 50px;
}

#circuitWrap{
  padding: 100px 0;
  background-color: #f5f5f2;
  text-align: center;
}

.circuitBox{
  display: flex;
  margin-bottom: 100px;
}

.circuitBox > img{
  width: 60%;
  align-self: flex-start;
}

.circuitBox > div{
  width: 400px;
  max-width: 37%;
  text-align: left;
}

.circuitBox > div h2{
  color: #143a10;
  margin-bottom: 25px;
  text-align: left;
}

.circuitBox > div p{
  line-height: 37px;
  margin-bottom: 20px;
  text-align: left;
}

.circuitBox > div .btn{
  background-color: #143a10;
  color: #fff;
  width: 220px;
  position: relative;
  text-align: left;
}

.circuitBox > div .btn::before{
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  bottom: 15px;
  width: 80px;
  height: 2px;
  transition: .3s;
  background-color: #fff;
}

.circuitBox > div .btn::after{
  content: "";
  display: block;
  position: absolute;
  right: 17px;
  bottom: 19px;
  width: 12px;
  height: 2px;
  transform: rotate(45deg);
  transition: .3s;
  background-color: #fff;
}

.circuitBox > div .btn:hover{
  color: #143a10;
  opacity: 1;
  background-color: rgba(20,58,16,.1);
}

.circuitBox > div .btn:hover::before{
  transition: .3s;
  background-color: #143a10;
}

.circuitBox > div .btn:hover::after{
  transition: .3s;
  background-color: #143a10;
}

.circuitBox:first-of-type div{
  margin-left: 3%;
}

.circuitBox:nth-of-type(2){
  flex-flow: row-reverse nowrap;
}

.circuitBox:nth-of-type(2) div{
  margin-right: 3%;
}

.circuitBox:nth-of-type(2) > div .btn{
  text-align: right;
}

.circuitBox:nth-of-type(2) > div .btn::before{
  left: 20px;
  bottom: 15px;
}

.circuitBox:nth-of-type(2) > div .btn::after{
  left: 17px;
  bottom: 19px;
  transform: rotate(-45deg);
}

.circuitAbout{
  text-align: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.circuitAbout h2{
  color: #143a10;
  margin-bottom: 30px;
}

.circuitAbout p{
  text-align: left;
  margin-bottom: 25px;
}

.circuitAbout ul{
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.circuitAbout ul li{
  width: 20%;
}

.circuitAbout ul li img{
  width: 100%;
}

.circuitAbout > a{
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
  margin-bottom: 30px;
  border: 2px solid #143a10;
  background-color: #143a10;
  color: #fff;
  font-weight: 600;
  padding: 15px 0;
}

.circuitAbout > a:hover{
  color: #143a10;
  background-color: rgba(20,58,16,.1);
  opacity: 1;
}

.circuitAbout > div{
  padding: 30px;
  background-color: #fff;
}

.circuitAbout > div p{
  font-size: 23px;
  line-height: 41px;
  margin-bottom: 0;
}

.circuitAbout > div p a{
  color: #000;
  font-weight: 600;
  text-decoration: underline;
}

#voiceWrap{
  padding: 100px 15px 0;
  text-align: center;
}

#voiceWrap h2{
  display: inline-block;
  font-size: 40px;
  padding: 10px 20px;
  border-bottom: 4px solid rgba(20,58,16,.5);
  color: rgba(20,58,16,1);
  margin-bottom: 50px;
}

#voiceWrap > ul{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

#voiceWrap > ul li{
  width: 30%;
  padding: 30px;
  padding-bottom: 70px;
  text-align: left;
  background-color: rgba(20,58,16,.1);
}

#voiceWrap > ul li > div{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

#voiceWrap > ul li > div img{
  max-width: 80px;
  margin-right: 10px;
  align-self: center;
}

#voiceWrap > ul li > div > div > div{
  display: flex;
}

#voiceWrap > ul li > div > div h3{
  font-size: 17px;
  margin-bottom: 5px;
}

#voiceWrap > ul li > div > div > div i{
  color: #ffff00;
  font-size: 18px;
  margin-right: 5px;
}

#voiceWrap > ul li > p{
  font-size: 15px;
  line-height: 20px;
}

/*==============================
レスポンシブ
==============================*/

@media screen and (max-width: 1400px) {
}

@media screen and (max-width: 1300px) {
}

@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 1000px) {
  #mainSlide{
    margin-top: 50px;
  }
  
  #aboutWrap > div > div{
    width: 60%;
  }
  
  #aboutWrap > div > img{
    width: 30%;
  }
  
  #voiceWrap > ul li{
    width: 32%;
    padding: 20px;
    padding-bottom: 50px;
  }
  
  #voiceWrap > ul li > div > div > div i{
    font-size: 14px;
    margin-right: 1px;
  }
}

@media screen and (max-width: 800px) {
  #flowWrap > ul{
    flex-wrap: wrap;
    max-width: 300px;
  }
  
  #flowWrap > ul li{
    width: 100%;
    margin-bottom: 50px;
  }
  
  #flowWrap > ul li i{
    top: auto;
    bottom: -50px;
    right: 0;
    left: 0;
    margin: auto;
    transform: rotate(90deg);
  }
  
  .circuitAbout ul{
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  
  .circuitAbout ul li{
    width: 48%;
    margin-bottom: 20px;
  }
  
  #voiceWrap > ul{
    flex-wrap: wrap;
    max-width: 330px;
  }
  
  #voiceWrap > ul li{
    width: 100%;
    margin-bottom: 20px;
  }
  
  #voiceWrap > ul li > div > div > div i{
    font-size: 18px;
    margin-right: 5px;
  }
}

@media screen and (max-width: 600px){
  h2{
    font-size: 26px;
    line-height: 36px;
  }
  
  p{
    font-size: 15px;
    line-height: 26px;
  }
  
  #aboutWrap{
    padding: 30px 15px;
  }
  
  #aboutWrap > div{
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  
  #aboutWrap > div > div{
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
    text-align: center;
  }
  
  #aboutWrap > div > img{
    width: 100%;
    max-width: 350px;
  }
  
  #aboutWrap > div > div h2{
    text-align: left;
  }
  
  #aboutWrap > div > div p{
    text-align: left;
  }
  
  #aboutWrap h3{
    font-size: 26px;
    line-height: 36px;
    text-align: left;
  }
  
  #aboutWrap h4{
    font-size: 18px;
    line-height: 28px;
    text-align: left;
  }
  
  #aboutWrap .btn{
    width: 250px;
  }
  
  #flowWrap{
    padding-bottom: 50px;
  }
  
  #flowWrap > ul{
    margin-bottom: 0;
  }
  
  #flowWrap > a:first-of-type{
    font-size: 16px;
  }
  
  #flowWrap > a:last-of-type{
    margin-top: 20px;
    margin-left: 0;
  }
  
  #flowWrap > ul{
    width: 100%;
    max-width: 100%;
  }
  
  #flowWrap > ul li img{
    margin-bottom: 0;
  }
  
  #flowWrap > ul li h5{
    margin-bottom: 0;
  }
  
  #circuitWrap{
    padding: 50px 0;
  }
  
  .circuitBox{
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
  
  .circuitBox > div h2{
    margin-bottom: 0;
  }
  
  .circuitBox > div p{
    line-height: 26px;
  }
  
  .circuitBox > img{
    width: 100%;
  }
  
  .circuitBox:first-of-type{
    margin-bottom: 0;
  }
  
  .circuitBox > div{
    width: 100%;
    max-width: 100%;
  }
  
  .circuitBox:first-of-type div{
    margin-left: 0;
    width: 100%;
    padding: 20px 15px 40px;
    text-align: center;
  }
  
  .circuitBox:nth-of-type(2){
    flex-flow: column;
    text-align: center;
  }
  
  .circuitBox:nth-of-type(2) div{
    margin-right: 0;
    padding: 20px;
    text-align: center;
  }
  
  .circuitBox:nth-of-type(2) div h2{
    text-align: left;
  }
  
  .circuitBox:nth-of-type(2) div p{
    text-align: left;
  }
  
  .circuitBox:nth-of-type(2) > div .btn{
    text-align: left;
  }
  
  .circuitBox:nth-of-type(2) > div .btn::before{
    content: "";
    display: block;
    position: absolute;
    left: auto;
    right: 20px;
    bottom: 15px;
    width: 80px;
    height: 2px;
    transition: .3s;
    background-color: #fff;
  }
  
  .circuitBox:nth-of-type(2) > div .btn::after{
    content: "";
    display: block;
    position: absolute;
    left: auto;
    right: 17px;
    bottom: 19px;
    width: 12px;
    height: 2px;
    transform: rotate(45deg);
    transition: .3s;
    background-color: #fff;
  }
  
  .circuitBox > div .btn{
    width: 250px;
  }
  
  .circuitAbout{
    text-align: left;
  }
  
  .circuitAbout h2{
    margin-bottom: 5px;
  }
  
  .circuitAbout > a{
    width: 250px;
    padding: 12px 20px 7px;
    text-align: center;
  }
  
  .circuitAbout > div p{
    font-size: 17px;
    line-height: 27px;
  }
  
  #voiceWrap{
    padding: 25px 15px 0;
  }
  
  #voiceWrap h2{
    font-size: 26px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 414px){
}