@charset "UTF-8";

/* メイン部 */
.main {
    width: 100%;
}

/* コンテンツ1START */
.container1_main{
    margin-top: 30px;
    height: auto;
}
.container1_area{
    width: 100%;
    height: auto;
    background-color: #ffffff;
    display: flex;
    flex-direction:column;
    align-items: center;
}
.contact_title{
    width: 90%;
    height: auto;
    text-align: center;
    font-size: 45px;
    line-height: normal;
    color: #2C7FC3;
    font-family: "Mochiy Pop One", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-top: 100px;
}
.contact_sub_title{
    font-size: 25px;
    line-height: normal;
    color: #000000;
    margin-left: 20px;
}
.contact_area{
    margin-top: 30px;
    width: 90%;
    display: flex;
    flex-direction:column;
    align-items: center;
}
.explanation{
    width: 100%;
    background-color: #fef1f6;
    border: #000000 dashed 0.1px;
    text-align: center;
    list-style: 1.2;
    border-radius: 50px;
    padding-top: 10px;
    padding-bottom: 10px;  
}
.explanation span{
    font-size: 20px;
}
.input_area{
    height: auto;
    width: 100%;
    background-color: #ffffff;
    padding-top: 30px;
    display: flex;
    flex-direction:column;
    align-items: center;
}
.input_item{
    overflow: hidden;
    margin-bottom: 20px;
}
.item_label{
    font-size: 20px;
    float: left;
    margin-right: 20px;
    width: 200px;
    padding-left: 10px;
}
.required{
    border-bottom: 1px solid #ff0000;
}
.input{
    font-size: 20px;
    width: 60%;
    padding: 5px 5px;
}
.notes{
    color: #ff0000;
    font-size: 15px;
}
.button_area{
    width: 100%;
    display: inline-block;
    text-align: center;
}
input[type="submit"]{
    width: 100px;
    height: 50px;
    background-color: #2C7FC3;
    border-radius: 1em;
    color: #ffffff;
    font-size: 20px;
}
input[type="reset"]{
    width: 100px;
    height: 50px;
    background-color: #2C7FC3;
    border-radius: 1em;
    color: #ffffff;
    font-size: 20px;
}
/* コンテンツ1END */

/* レスポンシブ対応 */
@media screen and (max-width: 480px) {
    /* メイン部 */
    .main {
        width: 100vw;
    }

    /* コンテンツ1START */
    .container1_main{
        margin-top: 10px;
    }
    .contact_title{
        width: 100%;
        height: auto;
        font-size: 30px;
        margin-top: 0;
    }
    .contact_sub_title{
        font-size: 15px;
    }
    .contact_area{
        margin-top: 30px;
        width: 90%;
    }
    .explanation{
        width: 100%;
        border-radius: 3%;
        font-size: 12px;
    }
    .explanation span{
        font-size: 15px;
    }
    .input_area{
        margin-top: 10px;
        padding-top: 10px;
    }
    .input_item{
        overflow: hidden;
        margin-bottom: 20px;
    }
    .item_label{
        font-size: 15px;
        width: auto;
        margin-bottom: 5px;
    }
    .input{
        font-size: 15px;
        width: 95%;    
    }
    .notes{
        font-size: 10px;
    }
    .button_area{
        width: 100%;
        display: inline-block;
        text-align: center;
    }

    input[type="submit"]{
        width: 80px;
        height: 25px;
        font-size: 15px;
    }
    input[type="reset"]{
        width: 80px;
        height: 25px;
        font-size: 15px;
    }
}