@charset "UTF-8";

html, *{
    margin:0px;
    padding:0px;
    box-sizing: border-box;
    font-size:15px;
}
body{
    padding-top: 50px;
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing:0.1rem;
}
h1, h2{
    width:90%;
    text-align: center;
    margin:0 auto 20px auto;
    font-weight: 400;
}
p{
    width:90%;
    text-align: center;
    margin:0 auto 15px auto;

}
a{
    text-decoration: none;
    color: #333;
}
a:visited{
    color: #333;
}
small{
    display:block;
    width:90%;
    margin:0 auto 15px auto;
    text-align: center;
    font-size: 10px;
}
h2{
    font-size:20px;
    margin-bottom: 0px;
}
.address_txt{
    font-size: 0.8rem;
    margin-bottom: 50px;
}

@media screen and (min-width: 768px) {
/* form */
.form_section{
    width:450px;
    margin:0 auto 50px;
}
.form_section .lavel{
    display:block;
    margin-bottom: 5px;
}
.text_box{
    width: 100%;
    height: 35px;
    border: 1px solid #333;
    border-radius: 8px;
    display: block;
    margin-bottom: 15px;
    padding:15px;
}
.area_box{
    width: 100%;
    display: block;
    height:200px;
    border: 1px solid #333;
    border-radius: 8px;
    margin-bottom: 25px;
    padding:15px;
}
.submit_button{
    width: 100%;
    height:35px;
    border: 1px solid #333;
    border-radius: 20px;
    cursor: pointer;

}
.submit_button:hover{
    background-color: #999;
}
.mail_sent{
    width:450px;
    margin:0 auto 50px;
}
}

@media screen and (max-width: 767px) {
    .form_section{
        width:90%;
        margin:0 auto 50px;
    }
    .form_section .lavel{
        display:block;
        margin-bottom: 5px;
    }
    .text_box{
        width: 100%;
        height: 35px;
        border: 1px solid #333;
        border-radius: 8px;
        display: block;
        margin-bottom: 15px;
        padding:15px;
    }
    .area_box{
        width: 100%;
        display: block;
        height:200px;
        border: 1px solid #333;
        border-radius: 8px;
        margin-bottom: 25px;
        padding:15px;
        background-color: #fff;
    }
    .submit_button{
        width: 100%;
        height:35px;
        border: 1px solid #333;
        background-color: #333;
        border-radius: 20px;
        color: #fff;
    
    }
    .mail_sent{
        width:90%;
        margin:0 auto 50px;
    }
}