@charset "utf-8";
/* ----------------------------------------
 form
------------------------------------------- */
#form table {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 30px;
}
#form table th {
    width: 26%;
    text-align: left;
    vertical-align: top;
    line-height: 1.7;
    font-weight: normal;
    box-sizing: border-box;
    border-bottom: 1px solid #c6c6c6;
    padding: 15px 10px;
}
.red {
color: #ff0000;
}
#form table td {
    text-align: left;
    vertical-align: top;
    line-height: 1.7;
    border-bottom: 1px solid #c6c6c6;
    box-sizing: border-box;
    padding: 15px 10px;
}

.input01 {
    width: 100%;
    box-sizing: border-box;
    color: #000;
    background-color: #efefef;
    border: 1px solid #efefef;
    padding: 10px;
}
.input02{
    width:80%;
    box-sizing: border-box;
    color: #000;
    background-color: #efefef;
    border: 1px solid #efefef;
    padding: 10px;
}
.input03 {
    box-sizing: border-box;
    color: #000;
    background-color: #efefef;
    border: 1px solid #efefef;
    padding: 10px;
}

.select01 {
    padding: 10px 15px;
}

.submit input {
    display: inline-block;
    color: #fff;
    font-size: 1.6rem;
    width: 100%;
    box-sizing: border-box;
    max-width: 250px;
    background-color: #027ec4;
    border: solid 1px #027ec4;
    cursor: pointer;
    padding: 15px 30px;
    margin-bottom: 15px;
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.submit input:hover {
    color: #027ec4;
    background-color: #fff;
    border: solid 1px #027ec4;
    cursor: pointer;
}


/* =======================
  PC
======================== */
@media screen and (min-width: 1200px) {
}
/* =======================
  TABLET
======================== */
@media screen and (max-width:1199px) {
}
/* =======================
  SP
======================== */
@media screen and (max-width: 699px) {
#form table {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 30px;
}
#form table th {
    display: block;
    width: 100%;
    border-bottom: none;
    padding: 15px 10px 10px 10px;
}
#form table td {
    display: block;
    width: 100%;
    padding: 0 10px 15px 10px;
}

.input01 {
    width: 100%;
}
.input02{
    width: 100%;
}
.input03 {
    width: 100%;
}
.select01 {
     width: 100%;
     box-sizing: border-box;
}


}