@charset "utf-8";

*{ box-sizing: border-box;}
body{ font-size: 1rem;}
@media screen and (max-width: 599px) {
    body{ font-size: 14px;}
}

#topicPath{ font-size: 12px;}
@media screen and (max-width: 999px) {
    #topicPath{ display: none;}
}

.pagettl{
    font-size: 30px;
    font-weight: normal;
    text-align: center;
}
.pagettl::after {
    content: "";
    display: block;
    border-bottom: 3px solid #1c236d;
    width: 100px;
    margin: 20px auto 65px;
}
@media screen and (max-width: 599px) {
    .pagettl{
        font-size: 20px;
    }
    .pagettl::after {
        width: 50px;
        margin: 10px auto 30px;
    }
}

.unsubscribe_box{
    background: #f3f3f2;
    border-radius: 10px;
    padding: 60px max(12.5%, 60px);
    margin-bottom: 40px;
}
.list_disc{
    margin: 1em 0 1em 1em;
}
.list_disc li{
    list-style-type: disc;
}
.form{
    max-width: 500px;
    margin: 60px auto 0;
}
.form label{
    display: block;
    font-weight: bold;
}
.form label .must{
    color: #DE0606;
}
.form input[type="text"]{
    display: block;
    width: 100%;
    height: 50px;
    border: 1px solid #707070;
    border-radius: 0;
    font-size: 1rem;
    padding: 5px;
}
.form .submit button{
    display: block;
    max-width: 300px;
    margin: 40px auto 0;
    width: 100%;
    border: 0;
    background-color: #1c236d;
    border-radius: 2em;
    color: #fff;
    font-size: 1em;
    padding: .8em 2em;
    cursor: pointer;
    position: relative;
}
.form .submit button::after{
    content: "";
    width: 10px;
    height: 10px;
    border-top: 1px solid;
    border-right: 1px solid;
    transform: rotate(45deg) translate(0, 10px);
    transition: all .2s;
    position: absolute;
    right: 15px;
}
.form .submit button:hover{
    opacity: .7;
}
@media screen and (max-width: 599px) {
    .unsubscribe_box{
        padding: 40px 6.5%;
    }
    .form,
    .form .submit button{
        margin-top: 35px;
    }
}
