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



/*==============================
共通
==============================*/
header{
  width: 100%;
  height: 60vh;
  background-image: url("../img/headBack.jpg");
  background-size: cover;
  background-position: center center;
}

.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;
}

nav > a{
  top: 10px;
}

nav > a img{
  width: 50px;
}

nav > a div h1{
  font-size: 32px;
}

@media screen and (max-width: 1100px){
  nav > a div h1{
    font-size: 24px;
  }
}

nav > a div h1 br{
  display: none;
}

nav > a div p{
  display: none;
}

@media screen and (max-width: 1100px){
  nav > a div p{
    display: block;
  }
}

/*==============================
メイン
==============================*/

.circuitWrap{
  padding: 100px 15px;
  padding-bottom: 100px;
  text-align: center;
  border-bottom: 1px solid #000;
}

.circuitWrap > h2{
  display: inline-block;
  font-size: 40px;
  padding: 10px 20px;
  border-bottom: 4px solid rgba(20,58,16,.5);
  color: #143a10;
  margin-bottom: 30px;  
}

.circuitWrap > h3{
  font-size: 35px;
  color: #143a10;
  margin-bottom: 20px;  
}

.circuitWrap > p{
  max-width: 1200px;
  margin: 0 auto 50px;
  text-align: left;
}

.circuitList{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.circuitList li{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 100px;
}

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

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

.circuitList li > div{
  width: 35%;
}

.circuitList li > div h4{
  font-size: 35px;
  color: #143a10;
  margin-bottom: 20px;
  text-align: left;
}

.circuitList li > div > p{
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 20px;
  text-align: left;
}

.circuitList li > div > div{
  display: flex;
  background-color: rgba(20,58,16,.1);
  border-radius: 10px;
  padding: 15px 20px;
  justify-content: center;
  align-items: center;
}

.circuitList li > div > div p{
  line-height: 17px;
  text-align: left;
}

.circuitList li > div > div p span{
  font-size: 14px;
  font-weight: 600;
}

.circuitList li > div > div i{
  font-size: 40px;
  margin-right: 10px;
  transform: scale(-1, 1);
}

.priceTable{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 30px;
}

.priceTable th,
.priceTable td{
  padding: 15px 20px 10px;
  border: 2px solid #143a10;
  font-weight: 600;
  text-align: center;
}

.priceTable th:nth-of-type(1){
  width: 25%;
}

.priceTable th:nth-of-type(2){
  width: 25%;
}

.priceTable th:nth-of-type(3){
  width: 50%;
}

.priceTable tr:nth-of-type(1) th{
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  border-bottom: none;
  background-color: #143a10;
  color: #fff;
}

.priceTable tr:nth-of-type(1) th:first-of-type{
  border-left: 2px solid #143a10;
}

.priceTable tr:nth-of-type(1) th:last-of-type{
  border-right: 2px solid #143a10;
}

.priceTable tr:nth-of-type(2) td{
  font-size: 18px;
  border-left: 1px solid #143a10;
  border-right: 1px solid #143a10;
}

.priceTable tr:nth-of-type(2) td:first-of-type{
  border-left: 2px solid #143a10;
}

.priceTable tr:nth-of-type(2) td:last-of-type{
  border-right: 2px solid #143a10;
}

.priceTable tr:nth-of-type(3) th{
  background-color: rgba(20,58,16,.5);
  color: #143a10;
  border-bottom: none;
}

.priceTable tr:last-of-type td{
  border-top: none;
  text-align: left;
  padding: 25px 50px;
}

.priceTable tr:last-of-type td span{
  color: rgba(20,58,16,.5);  
}

.circuitWrap > p:last-of-type{
  color: #143a10;
  max-width: 1000px;
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 30px;
}

.circuitWrap > .btn{
  width: 300px;
  margin-bottom: 40px;
}

.circuitWrap > .btn:first-of-type{
  margin-right: 20px;
}

.circuitWrap > .btn:last-of-type{
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
  margin-bottom: 0;
  background-color: #143a10;
  color: #fff;
  padding: 15px 0 12px;
}

.circuitWrap > .btn:last-of-type:hover{
  background-color: rgba(20,58,16,.1);
  color: #143a10;
}

.circuitImg{
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.circuitImg{
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.circuitImg li{
  width: 20%;
}

.circuitImg li img{
  width: 100%;
}

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

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

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

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

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

@media screen and (max-width: 800px) {
  .circuitList li:nth-of-type(2n){
    flex-flow: column;
  }
  
  .circuitList li{
    flex-wrap: wrap;
    margin-bottom: 50px;
  }
  
  .circuitList li > img{
    width: 100%;
    margin-bottom: 30px;
  }
  
  .circuitList li > div{
    width: 100%;
  }
  
  .circuitImg{
    flex-wrap: wrap;
  }
  
  .circuitImg li{
    width: 48%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 600px){
  .circuitWrap{
    padding: 30px 15px;
  }
  
  .circuitWrap > .btn:first-of-type{
    margin-right: 0;
  }
  
  .priceTable th, .priceTable td{
    padding: 14px 10px 10px;
    font-size: 14px;
    line-height: 18px;
  }
  
  .priceTable tr:last-of-type td{
    padding: 14px 10px 10px;
  }
  
  .circuitWrap > h2{
    font-size: 26px;
    line-height: 36px;
  }
  
  h2{
    font-size: 26px;
    line-height: 36px;
  }
  
  p{
    font-size: 15px;
    line-height: 26px;
  }
  
  .circuitWrap > h3{
    font-size: 18px;
    line-height: 28px; 
    text-align: left;
  }
  
  .circuitList li > div h4{
    font-size: 22px;
    line-height: 28px;  
    margin-bottom: 10px;
  }
  
  .circuitList li > img{
    margin-bottom: 15px;
  }
  
  .circuitWrap > .btn{
    width: 250px;
    margin-bottom: 20px;
  }
  
  .circuitWrap > .btn:last-of-type{
    width: 250px;
    margin: 0 auto;
  }
}

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