@charset "utf-8";
body{
    background: #BCC6CF;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
.header{
    background: #000;
    position: relative;
    padding: 1%;
}
#form, #confirmation, #finish{
    width: 800px;
    margin: 80px auto;
    text-align: center;
}
h2{
    font-size: 50px;
    margin-bottom: 40px;
    font-family:"shippori-mincho-b1", sans-serif;
}
table{
    width: 100%;
}
th, td{
    text-align: left;
    padding: 12px 0;
}
#form th, #form td{
    border-bottom:none;
}
.must{
    background: rgba(191, 43, 33, 1);
    padding: 2px 4px 3px;
    color: #fff;
    font-size: 12px;
    margin-left: 10px;
}
.form_inner input, select, textarea{
    background-color: #fff;
    border-radius: 5px;
    text-indent: 1em;
    padding: 15px 0;
    width: 100%;
    border: none;
    font-size: 15px;
    box-sizing: border-box;
    -webkit-appearance: none;
}
.adress .fsS{
    font-size:12px;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance:textfield;
}
textarea {
  height: 14em;
  width: 100%;
  display: block;
  resize: vertical;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}
input[type="submit"] {
  -webkit-appearance: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  background-image: linear-gradient(150deg, rgba(150, 29, 21, 1), rgba(191, 43, 33, 1));
  color: #fff;
  text-align: center;
  font-size: 20px;
  width: 400px;
  padding: 20px 0;
  margin: 40px auto 0;
  display: block;
  border-radius: 0;
  font-weight: bold;
  text-indent: 0;
}
#confirmation th, #confirmation td{
    padding: 20px 0;
}
#confirmation .submitbtn{
    display:flex;
    justify-content: center;
    margin-top: 5%;
}
#confirmation input[type="submit"]{
    width:43%;
    margin:0;
}
#footer p{
    text-align: center;
    line-height: 1;
    font-size: 12px;
    margin-top:20px;
}
#footer a{
    color: #999;
}
.backbtn{
    background: #585f63;
    width: 400px;
    margin: 40px auto 0;
    text-align: center;
    font-size: 20px;
    display: block;
    font-weight: 600;
    padding: 20px;
}
.backbtn a{
    color: #fff;
    text-decoration: none;
}
@media (max-width: 767px) {
    #form, #confirmation, #finish{
        width: 90%;
        margin: 15% auto;
    }
    h2{
        font-size: 9vw;
        line-height: 1.3;
        margin-bottom: 10%;
    }
    table{
        font-size: 4vw;
    }
    th, td{
        display: block;
        width: 100%;
        padding: 2% 0;
    }
    td{
        padding-bottom: 4%;
    }
    .adress .fsS{
        font-size:3vw;
        margin-bottom: 4%;
    }
    input[type="submit"],.backbtn{
        padding: 5%;
        font-size: 5vw;
        width: 90%;
    }
    #confirmation td{
        padding: 2% 0;
        margin-bottom:4%;
    }
    #confirmation th{
        border-bottom:none;
        padding:2% 0 0;
    }
}