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

/* table */
.contact-table{
    width: 700px;
    margin: 20px 0;
}

.contact-table .table-caption{
    font-size: 0.8em;
    margin: 10px 0 10px 10px;
}

.contact-table table{
    width: 100%;
    border: 1px solid #ccc;
    border-left: none;
    border-right: none;
    font-size: 0.8em;
}

.contact-table  table th{
    width: 30%;
    border-bottom: 1px solid #ccc;
    font-weight: normal;
    text-align: left;
    padding: 10px;
    box-sizing: border-box;
}

.contact-table table td{
    width: 70%;
    border-bottom: 1px solid #ccc;
    padding: 10px;
    box-sizing: border-box;
}

.contact-table table td input{
    width: 60%;
}

.contact-table table td textarea{
    width: 100%;
    resize: none;
}

.contact-table table td span{
    font-size: 0.7em;
}

/* btnarea */
.btnarea{
    width: 100%;
    text-align: center;
    margin: 10px 0;
}

.btnarea input{
    padding: 5px 10px;
    margin-right: 10px;
    border-style: none;
     color: #fff;
}

.btnarea .clear-btn,
.btnarea .revision-btn{
    background-color: #ccc;
}

.btnarea .confirm-btn,
.btnarea .submit-btn{
    background-color: #194998;
    margin-right: 0;
}

/* to-toppage */
.to-toppage-caption{
    margin-bottom: 40px;
}

.to-toppage span{
    margin: 20px 0;
    color: #fff;
    background-color: #194998;
    padding: 10px;
}

/* error */
.error{
    box-sizing: border-box;
    width: 100%;
    background-color: #ffe4e1;
    color: #ff0000;
    font-weight: bold;
    font-size: 0.8em;
    line-height: 1.8em;
    border: 1px solid #ff0000;
}

/* contact */
.small-text{
    font-size: 0.8em;
}

.privacy-notice {
  border: 1px solid #ccc;
  padding: 10px;
  margin-top: 20px;
  background-color: #f9f9f9;
  border-radius: 5px;
  font-size: 0.8em;
}

.privacy-notice h3 {
  margin-top: 0;
  margin-bottom: 10px;  
}

.privacy-notice p {
  line-height: 1.4;
  margin-top: 0;
}

@media screen and (max-width: 1025px) {
    .contact-table{
        width: 100%;
    }
    
    .contact-table table td input{
        width: 100%;
    }
}