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



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

header{
  position: relative;
  width: 100%;
  height: 200px;
  background-image: url("../img/headBack.png");
  background-size: cover;
  background-position: center center;
}

header > img{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

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

.titleBox h2{
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
}

.titleBox hr{
  display: block;
  width: 100px;
  margin: 15px auto;
  height: 4px;
  background:linear-gradient(90deg,#000000 0%,#000000 50%,#1478dc 50%,#1478dc 100%);
}

.titleBox h2 span{
  color: #1478dc;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
}

.titleBox02{
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 20px;
}

.titleBox02 hr{
  width: 20px;
  height: 4px;
  margin-bottom: 10px;
  margin-right: 5px;
  background:linear-gradient(90deg,#000000 0%,#000000 50%,#1478dc 50%,#1478dc 100%);
}

.titleBox02 h2{
  font-size: 22px;
  line-height: 22px;
  margin-right: 5px;
  margin-bottom: 0;
}

.titleBox02 h3{
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 2px;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
}

.titleBox02 h3 span{
  color: #1478dc;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
}


#sideMenu{
  width: 250px;
  border: 2px solid #ccc;
}

#sideMenu > h2{
  font-size: 20px;
  line-height: 50px;
  color: #fff;
  background-color: #000;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  text-align: center;
  height: 50px;
}

#sideMenu > ul > li > a{
  display: block;
  color: #fff;
  background-color: #5aa0e6;
  font-size: 15px;
  letter-spacing: 0;
  height: 50px;
  line-height: 50px;
  font-weight: bold;
  padding-left: 10px;
  border-bottom: 2px solid #ccc
}

#sideMenu > ul > li > ul > li > a{
  display: block;
  color: #000;
  background-color: #f2f2f2;
  font-size: 15px;
  letter-spacing: 0;
  height: 50px;
  line-height: 50px;
  font-weight: bold;
  padding-left: 10px;
  border-bottom: 2px solid #ccc
}

#sideMenu > ul > li > ul > li > ul > li > a{
  display: block;
  color: #000;
  background-color: #fff;
  font-size: 14px;
  letter-spacing: 0;
  height: 50px;
  line-height: 50px;
  font-weight: bold;
  padding-left: 10px;
  border-bottom: 2px solid #ccc
}

#sideMenu > ul > li > ul{
  display: none;
}

@media screen and (max-width: 800px){
  #sideMenu{
    display: none;
  }
}

@media screen and (max-width: 600px){
  header{
    height: 200px;
  }
  
  header > img{
    max-width: 50%;
  }

  .titleBox02 h3{
  display: none;
  }
}

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

#contactWrap{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 20px;
  text-align: center;
}

#contactWrap table{
  width: 100%;
}

#contactWrap table th,
#contactWrap table td{
  padding: 10px 0;
}

#contactWrap table th{
  width: 20%;
  position: relative;
  padding-right: 50px;
  text-align: left;
}

#contactWrap table th span{
  display: block;
  position: absolute;
  top: 23px;
  right: 10px;
  font-size: 12px;
  color: #be0d23;
  text-align: right;
}

#contactWrap input[type="text"],
#contactWrap select,
#contactWrap textarea{
  width: 100%;
  padding: 10px;
  border: 2px solid #000;
  border-radius: 8px;
}

#contactWrap select{
  height: 44px;
}

#contactWrap input[type="submit"]{
  display: inline-block; 
  padding: 15px 100px;
  background-color: #000;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  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){
  #contactWrap table tr{
    display: flex;
    flex-wrap: wrap;
  }
  
  #contactWrap table th,
  #contactWrap table td{
    width: 100%;
  }
  
  #contactWrap table th{
    padding-bottom: 0;
  }
  
  #contactWrap table th span{
    top: 13px;
  }
}

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