@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}
body {
    font-family: "Murecho", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #000000;
}

/* ヘッダー部 */
.header_a {
    width: 100%;
    height: 100px;
    min-width: 800px;
    background-color: #ffffff;
    position: fixed;
    z-index: 1;
    top: 0;
    text-align: center;
}
.container {
    width: 100%;
    height: 100px;
    display: inline-block;
}
.area_logo_header {
    height: 100%;
    margin-left: 30px;
    float: left;
    align-items: center;
    display: flex;
}
.area_logo_header img{
    /* height: 70px; */
    width: 200px;
}
.contact_link{
    height: 100%;
    float: right;
    align-items: center;
    display: flex;
    z-index: 1;
}
.contact_link a{
    background-color: #fef1f6;
    color: #000000;
    border: 2px solid #fef1f6;
    align-items: center;
    text-align: center;
    border-radius: 2em;
    min-width: 4.1em;
    max-width: 100%;
    font-size: 80%;
    line-height: 1.0;
    padding: 0.5em 1.5em 0.5em 1.5em;
    text-decoration: none;
    margin-top: 60px;
    margin-right: 30px;
    margin-bottom: 5px;
}
.area_nav_header {
    min-width: 320px;
    float: right;
    height: 100%;
}
.area_nav_header ul{
    margin-right:8px;
    margin-top: 60px;
    display: flex;
    flex-wrap :wrap;
}
.area_nav_header li {
    list-style: none;
    float: left;
}
.area_nav_header img{
    border-right: 1px solid #cacaca;
    height: 35px;
    width: 100px;
}

/*フッター部*/
.footer_a {
    height: 100px;
    width: 100%;
    background-color: #ffffff;
    margin-top: 30px;
    text-align: center;
    position: absolute;
    margin-bottom: 0;
}
.container_footer {
    width: 100%;
    height: 100px;
    border-top: 0.5px solid #a1a1a1;
}
.area_logo_footer{
    float: left;
    height: 100%;
    margin-left: 30px;
    align-items: center;
    display: flex;
}
.area_logo_footer img{
    /* height: 70px; */
    width: 200px;
}
.infomation {
    float: right;
    height: 100%;
    margin-right: 30px; 
    align-items: center;
    display: flex;
}
.infomation p{
    display: block;
    text-align: left;
    color: #000000;
    font-size: 15px;
    font-weight: 600;
}

/* レスポンシブ対応 */
@media screen and (max-width: 480px) {
    .header_a {
        /* height: 150px; */
        height: 140px;
        min-width: auto;
        background-color: #ffffff;
        position: relative;
        text-align: center;
    }
    .container {
        width: 100vw;
        height: 150px;
        display: flex; 
        flex-direction: column;
    }
    .area_logo_header {
        height: auto;
        display: inline-block;
        margin-left: 0;
        padding-top: 30px;
    }
    .contact_link{
        visibility: hidden;
    }
    .area_nav_header {
        float: left;
        position: absolute;
        top: 110px;
    }
    .area_nav_header ul{
        margin-right: 0;
        margin-top: 0%;
        display: flex;
        flex-wrap :wrap;
    }
    .area_nav_header li {
        list-style: none;
        float: left;
        width: calc((100% - 1px)/4);
    }
    .area_nav_header img{
        border-right: none;
        width: 98%;
        height: 90%;
    }
    
    /*フッター部*/
    .footer_a {
        height: 150px;
        background-color: #ffffff;  
    }
    .container_footer {
        width: 100vw;
        height: auto;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }
    .area_logo_footer{
        margin-top: 20px;
        margin-left: 0;
    }
    .infomation {
        margin-right: 0;
        margin-top: 20px;
    }
    .infomation p{
        font-size: 2.5vw;
    }
}