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



/*==============================
共通
==============================*/


.titleBox h2{  
  font-size: 80px;
  line-height: 80px;
  font-weight: bold;
  letter-spacing: 10px;
  margin-bottom: 10px;
  color: #37386b;
}

.titleBox hr{
  display: block;
  border-bottom: none;
  width: 100px;
  height: 2px;
  margin-bottom: 10px;  
  background-color: #37386b;
}

.titleBox h3{
  font-weight: 400;  
  color: #37386b;
}

#headWrap{
  width: 100%;
  height: 400px;
  z-index: 1;
  background-image: url("../img/headBack.jpg");
  background-position: center center;
  background-size: cover;
  border: 10px solid #37386b;
}

#headWrap > .titleBox{
  padding-top: 120px;
  padding-left: 100px;
}

#headWrap > .titleBox h2{
  color: #fff;
}

#headWrap > .titleBox hr{
  background-color: #fff;
}

#headWrap > .titleBox h3{
  color: #fff;
}


@media screen and (max-width: 600px){  
  .titleBox h2{  
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 4px;
  }
  
  #headWrap{
    height: 250px;
  }
  
  #headWrap > .titleBox {
    padding-top: 70px;
    padding-left: 40px;
  }
}

/*==============================
メイン
==============================*/
#companyWrap{
  padding: 50px 20px;
}

#companyWrap .titleBox{
  text-align: center;
  margin-bottom: 30px;
}

#companyWrap .titleBox hr{
  margin: 0 auto 10px;
}

#companyWrap table{
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  border-spacing: 0;
}

#companyWrap table th,
#companyWrap table td{
  text-align: left;
  border-top: 1px solid #ccc;
  padding: 30px;
  vertical-align: text-top
}

#companyWrap table th{
  font-weight: bold;
}

#companyWrap table tr:last-of-type th,
#companyWrap table tr:last-of-type td{
  border-bottom: 1px solid #ccc;  
}

#historyWrap{
  padding: 50px 20px;
}

#historyWrap .titleBox{
  text-align: center;
  margin-bottom: 30px;
}

#historyWrap .titleBox hr{
  margin: 0 auto 10px;
}

.historyList{
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.historyList li{
  display: flex;
  justify-content: space-between;
  background-color: #f6f6f6;
  padding: 30px;
  margin-bottom: 10px;
}

.historyList li span{
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #127caa;
  margin-right: 15px;
  margin-top: 7px;
}

.historyList li span::before{
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  height: 250px;
  width: 2px;
  background-color: #127caa;  
}

.historyList li:nth-last-of-type(2) span::before,
.historyList li:nth-last-of-type(3) span::before,
.historyList li:nth-last-of-type(4) span::before,
.historyList li:nth-last-of-type(5) span::before{
  display: none;
}
.historyList li:last-of-type span::before{
  top: auto;
  bottom: 4px;
}

.historyList li h4{
  width: 10%;
  font-weight: bold;
}

.historyList li p{
  width: 85%;
}

#officeWrap{
  padding: 50px 20px;
}

#officeWrap .titleBox{
  text-align: center;
  margin-bottom: 30px;
}

#officeWrap .titleBox hr{
  margin: 0 auto 10px;
}

.officeList{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.officeList li{
  width: 100%;
  display: flex;
  margin-bottom: 50px;
  box-shadow: 0 0 10px 0px rgba(0,0,0,.2);
}

.officeList li div{
  width: 50%;
  padding: 50px 30px;
}

.officeList li div h4{
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.officeList li div hr{
  border-bottom: none;
  width: 50px;
  height: 2px;
  background-color: #127caa;
  margin-bottom: 10px;
}

.officeList li iframe{
  width: 50%;
  border: none;
}
/*==============================
レスポンシブ
==============================*/

@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) {
}

@media screen and (max-width: 600px){
  #companyWrap table th, #companyWrap table td{
    padding: 10px;
  }
  
  .historyList li{
    padding: 20px;
  }
  
  .historyList li h4{
    width: 25%;
  }
  
  .historyList li p{
    width: 70%;
  }
  
  .officeList li{
    display: block;
  }
  
  .officeList li div{
    width: 100%;
    padding: 20px;
  }
  
  .officeList li iframe{
    width: 100%;
    height: 200px;
    vertical-align: bottom;
  }
}

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