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

input[type="submit"],
input[type="button"],
input[type="reset"]{
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
input[type="reset"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus,
input[type="reset"]::focus {
  outline-offset: -2px;
}

/*==============================
共通
==============================*/
#singleWrap{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
}

.titleBox{
  width: 100px;
  height: calc(100vh - 100px);
  position: sticky;
  top: 100px;
  align-items: flex-start;
  text-align: center;
}

.titleBox h3{
  font-family: 'Overpass', sans-serif;
  font-weight: bold;
  padding: 10px 0;
  border-bottom: 5px solid #000;
  text-align: center;
}

.titleBox h2{
  padding-top: 30px;
  display: inline-block;
  writing-mode: vertical-rl;
  font-family: a-otf-futo-min-a101-pr6n, serif;
  font-weight: 400;
  font-style: bold;
  white-space: normal;
}

@media screen and (max-width: 1240px) {
  .contentsBox{
    width: calc(100% - 120px);
  }
}

@media screen and (max-width: 1000px) {
  .titleBox{
    height: calc(100vh - 70px);
  }
}

@media screen and (max-width: 600px) {
  #singleWrap{
    display: block;
  }
  
  .titleBox{
    position: relative;
    text-align: center;
    width: 100%;
    height: auto;
    top: auto;
  }
  
  .titleBox h3{
    display: inline-block;
    text-align: center;
    padding: 10px 20px;
  }
  
  .titleBox h2{
    writing-mode: horizontal-tb;
    padding: 10px 20px 30px;
    padding-left: 0;
  }
  
  .contentsBox{
    width: 100%;
  }
}

/*==============================
メイン
==============================*/
.titleBox{
  height: 200px;
}
.titleBox h2{
  display: none;
  height: auto;
}

.titleBox img{
  margin-top: 20px;
}

.contentsBox{
  width: calc(100% - 250px);
  margin-left: 150px;
  text-align: center;
}


.contentsBox p{
  font-family: a-otf-futo-min-a101-pr6n, serif;
  font-weight: 400;
  font-style: bold;
}

.contentsBox > p{
  font-size: 17px;
  line-height: 35px;
  letter-spacing: 2px;
  text-align: left;
  margin-bottom: 50px;
}

.formBox{
  width: 100%;
  background-color: #f2f2f2;
  padding: 50px;
  margin-bottom: 50px;
}

.formBox table{
  width: 100%;
}

.formBox th,
.formBox td,
.formBox input[type="text"],
.formBox textarea{
  text-align: left;
  font-size: 15px;
  letter-spacing: 2px;
}

input::placeholder {
  color: #999;
}

/* IE */
input:-ms-input-placeholder {
  color: #999;
}

/* Edge */
input::-ms-input-placeholder {
  color: #999;
}

.formBox th{
  width: 220px;
  position: relative;
  text-align: left;
  padding-right: 40px;
  vertical-align: top;
  padding-top: 10px;
}

.formBox th img{
  position: absolute;
  top: 15px;
  right: 15px;
}

.formBox td input[type="text"],
.formBox td textarea{
  width: 100%;
  padding: 10px;
  border: none;
  margin-bottom: 20px;
  text-align: left;
}

.check{
  width: 100%;
  display: inline-block;
  font-family: a-otf-futo-min-a101-pr6n, serif;
  font-weight: 400;
  font-style: bold;
  padding: 10px 20px;
  border: 2px solid #000;
  font-size: 18px;
}

.checkList{
  display: flex;
  justify-content: space-between;
}

.checkList li{
  text-align: center;
}

.checkList li:first-of-type{
  width: 45%;
}

.checkList li:nth-of-type(2),
.checkList li:nth-of-type(3){
  width: 25%;
}

.checkList input{
  width: 100%;
  font-family: a-otf-futo-min-a101-pr6n, serif;
  font-weight: 400;
  font-style: bold;
  font-size: 18px;
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #000;
  border-radius: 0;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  transition: .2s;
}

.checkList input:hover{
  background-color: #fff;
  color: #000;
  transition: .2s;
}

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

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

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

@media screen and (max-width: 1240px) {
  .contentsBox{
    width: calc(100% - 200px);
    margin-left: 100px;
  }
}

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

@media screen and (max-width: 840px) {
  .contentsBox{
    width: calc(100% - 150px);
    margin-left: 50px;
  }

  .formBox table tr{
    display: flex;
    flex-wrap: wrap;
  }

  .formBox th{
    width: 100%;
    padding-top: 0;
    margin-bottom: 10px;
  }
  
  .formBox th img{
    position: relative;
    top: auto;
    right: auto;
    margin-left: 10px;
  }

  .formBox td{
    width: 100%;
  }
  
  .formBox td input[type="text"], .formBox td textarea{
    margin-bottom: 10px;
  }
  
  .checkList{
    flex-wrap: wrap;
  }
  
  .checkList li:first-of-type{
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .checkList li:nth-of-type(2),
  .checkList li:nth-of-type(3){
    width: 48%;
  }
}

@media screen and (max-width: 600px){
  
  .titleBox img{
    display: none;
  }
  
  .titleBox{
    text-align: center;
    height: auto;
    margin-bottom: 20px;
  }
  
  .contentsBox{
    width: 100%;
    margin-left: 0;
  }
  
  .contentsBox > p{
    font-size: 15px;
    letter-spacing: 1px;
    text-align: justify;
  }
  
  .formBox{
    padding: 40px 20px;
  }
  
  .checkList{
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .checkList li:first-of-type{
    margin-right: 0;
    margin-bottom: 35px;
  }

  .checkList li:nth-of-type(2),
  .checkList li:nth-of-type(3){
    width: 280px;
  }
  
  .checkList input{
    width: 100%;
  }
}

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