body{
    background-color:#FFF;
}
.contents{
    width:100%;
    max-width:1000px;
    padding:80px 0px;
    margin:auto;
}
h1{
    width:90%;
    max-width:800px;
    margin:0px auto;
}
h2{
    font-size:29px;
    font-weight:600;
    text-align:center;
    margin:60px 0px;
}
.check{
    margin:0px 0px 60px 0px;
    font-size:16px;
    font-weight: 400;
}
table{
    border-collapse: collapse;
    width:100%;
    max-width:1000px;
    margin:auto;
}
table th{
    font-size:16px;
    text-align:left;
    padding:20px 0px;
    border-bottom: 1px solid #999;
}
table th > sup{color: #C00;}
table th > p{
    color:#666;
    font-size:14px;
}
table td{
    padding:20px 0px 20px 20px;
    border-bottom: 1px solid #999;
    width:480px;
}
.submit-check{text-align:center;}
.submit-check > div{
    padding:40px 0px;
    font-size: 16px;
    font-weight: 600;
}
.submit-check > div a{
    color: #00A1FF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
label{
    display:inline-block;
    padding:0px 0px 0px 10px;
}
select{
    font-size:16px;
    margin:0px 5px;
    padding:5px;
}
input[type="text"],input[type="email"],input[type="tel"]{
    font-size:16px;
    padding:5px 10px;
    width:95%;
}
input[type="submit"]{
    border:none;
    border-radius: 8px;
    background: #C30D23;
    display: flex;
    width: 460px;
    height: 80px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin:auto;
    color:#FFF;
    font-size:20px;
    font-weight:600;
    letter-spacing:1.6px;
    cursor: pointer;
}
input[type="submit"]:disabled{
    background-color:#999;
    cursor:not-allowed;
}

.error input[type="email"]{
    border: 1px solid #C00;
    background: #FFE0E0;
}
.error_text{
    color: #C00;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
}
.top-link{
    color: #FFF;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    border: 2px solid #C00;
    background: #C30D23;
    display: block;
    width:460px;
    height:60px;
    padding:10px 0px;
    margin:auto;
}
@media screen and (max-width: 768px){
    .contents{
        width:95%;
        margin:auto;
        padding:40px 0px;
    }
    h2{
        margin:30px 0px;
        font-size:14.5px;
    }
    .check{
        margin:0px 0px 30px 0px;
        font-size:12px;
    }
    table{
        width:100%;
        margin:auto;
    }
    table th{
        display:block;
        width:100%;
        font-size:12px;
        padding:15px 0px;
        border-bottom:none
    }
    table td{
        display: block;
        width:100%;
        padding:0px 0px 15px 0px;
    }
    table th > p{font-size:11px;}
    select{font-size:12px;}
    input[type="text"],input[type="email"],input[type="tel"]{
        width:90%;
        margin:auto;
    }
    label{font-size:12px}
    .submit-check > div{
        padding: 30px 0;
        font-size:12px;
    }
    .submit-check > div a{font-size:12px}
    input[type="submit"]{
        width:220px;
        height:40px;
        font-size:13px;
    }
    .error_text{font-size:12px;}
    .top-link{
        width:280px;
        height: 40px;
        font-size: 13px;
    }
}