@charset "utf-8";
h2 {
    padding: 0.16rem 0.3rem 0.16rem 0.5rem;
    margin-bottom: 0.4rem;
    background: #e8e8e8;
    color: #65aa31;
    font-size: 0.21rem;
    position: relative;
}
h2::before {
    content: '';
    width: 0.18rem;
    background: #65aa31;
    position: absolute;
    top: 0;
    left: 0.14rem;
    bottom: 0;
}
h3 {
    font-size: 0.21rem;
}
section {
    margin-bottom: 1rem;
}
table {
    width: 100%;
    border-top: #969696 2px solid;
    border-collapse: collapse;
    border-spacing: none;
}
table th,
table td {
    padding: 0.2rem 0.4rem;
    border-bottom: #969696 2px solid;
}
table th {
    background: #efefef;
    text-align: left;
    vertical-align: top;
}
.agreement {
    height: 3rem;
    padding: 0.2rem;
    background: #f9f9f9;
    border: #efefef 1px solid;
    overflow: scroll;
}
input,
textarea {
    padding: 0.08rem;
    margin: 0.02rem 0;
    border-radius: 4px;
    font-size: 0.17rem;
}
.btnarea {
    display: flex;
    justify-content: space-evenly;
}
.btn_send,
.btn_back {
    width: 2.68rem;
    padding: 0.15rem 0;
    border: none;
    font-size: 0.22rem;
    text-align: center;
    cursor: pointer;
}
.btn_send {
    background: #65aa31;
    color: #fff;    
}
.btn_back {
    background: #e8e8e8;
    color: #000;    
}


@media screen and (min-width:1118px) { /* PCのみ */
}

@media screen and (max-width:1118px) { /* タブレット以下の場合 */
}

@media screen and (max-width:1118px) and (min-width:768px) { /* タブレットのみ */
}

@media screen and (max-width:768px) { /* スマホのみ */
    table th,
    table td {
        width: 100% !important;
        display: block;
    }
    table th {
        border-bottom: none;
    }
    input,
    textarea {
        font-size: 0.28rem;
    }
}