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



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

.linkBar{
  display: inline-block;
  font-size: 22px;
  letter-spacing: 3px;
  color: #000;
  border-bottom: 1px solid #000;
}

.titleH3{
  display: inline-block;
  color: #000;
  font-size: 16px;
  letter-spacing: 2px;
  padding: 10px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  margin-bottom: 30px;
}

#headWrap{
  width: 100%;
  height: 300px;
  background-image: url("../img/headBack.jpg");
  background-position: center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

#headWrap > div{
  position: relative;
  text-align: center;
}

#headWrap > div img{
  margin-bottom: 5px;
}

#headWrap > div h1{
  writing-mode: vertical-rl;
  font-size: 16px;
  letter-spacing: 6px;
  color: #fff;
  margin: 0 auto;
}

@media screen and (max-width: 600px){
  #headWrap{
    height: 200px;
  }

  #headWrap > div h1{
    writing-mode: horizontal-tb;
  }
}

#linkWrap{
  padding: 50px 20px;
  text-align: center
}



#linkWrap > .titleH3{
  margin-bottom: 20px;
}

.linkBox{
  padding: 0px 20px;
  width: 100%;
  max-width: 700px;
  margin: 0 auto 20px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.linkBox > a{
  display: block;
  width: 33%;
  padding: 10px 20px;
  color: #000;
  font-size: 20px;
  border: 1px solid #000;
  text-decoration: underline;
  margin-bottom: 10px;
}

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

  .linkBox > a{
    display: block;
    width: 100%;
    padding: 10px 20px;
    color: #000;
    font-size: 20px;
    border: 1px solid #000;
    text-decoration: underline;
    margin-bottom: 10px;
  }
}

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

#formWrap{
  text-align: center;
  padding: 50px 20px 50px;
}

.formBox{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 50px;
  background-color: #f6f6f6;
  padding: 50px 20px 20px;
  text-align: center;
}

.formBox h3,
.formBox h2{
  margin-bottom: 30px;
}

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

.formBox form > p{
  text-align: left;
  padding-left: 5px;
  line-height: 18px;
  margin-bottom: 5px;
  color: #111;
}

.formBox form > p span{
  color: #b61f1f;
}

.formBox form > p a{
  text-decoration: underline;
  color: #247187;
}

.formBox form > input[type="text"],
.formBox form > select,
.formBox form > textarea{
  padding: 10px;
  border: none;
  background-color: #fff;
  width: 100%;
  margin-bottom: 15px;
  font-size: 14px;
  letter-spacing: 1px;
}
.formBox form > input[type="text"]::placeholder,
.formBox form > textarea::placeholder{
  color: #ccc;
}


.formBox form > input[type="submit"]{
  display: block;
  width: 100%;
  max-width: 180px;
  border: none;
  margin: 0 auto;
  padding: 10px 20px;
  background-color: #2f2222;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
}

.radioBox{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 15px;
}

.radioBox > input[type="radio"]{
  display: none;
}

.radioBox::after{
  content: "";
  display: block;
  width: 32%;
}

.radioBox label{
  width: 32%;
  border: 2px solid #fff;
  text-align: left;
  margin-bottom: 10px;
  padding: 10px;
  background-color: #fff;
}

.radioBox > input[type="radio"]:checked + label{
  border: 2px solid #999;
  background-color: #f1f1f1;
}

.radioBox label img{
  width: 100%;
  margin-bottom: 5px;
}

.radioBox label p{
  font-size: 14px;
  letter-spacing: 1px;
}

.radioBox label table{
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.radioBox label table td{
  border: 1px solid #ccc;
  padding: 5px;
  font-size: 14px;
}

.heriRadio label{
  width: 24%;
  padding: 5px;
}

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

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

  .radioBox label{
    align-self: flex-start;
    width: 48%;
    padding: 5px;
  }

  .heriRadio label{
    width: 33%;
    padding: 5px;
  }
}

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

  .heriRadio label{
    width: 48%;
    padding: 5px;
  }
}

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