@charset"UTF-8";

header{
    background-color: aqua;
}
.header-top-area{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.header-left{
    display: flex;
    flex-direction: column;
}
.header-center{
    display: flex;
    flex-direction: column;
}
.header-right{
    display: flex;
    flex-direction: column;
}

body{
    background-color: azure;
}
#toggle-sns{
    cursor:pointer;
    font-size: 1.2rem;
    padding: 5px 10px0;
}
#snslink{
    display: none;
    background-color: aliceblue;
    padding: 10px;
    border: 1px solid #ccc;
}
#snslink img{
    width: 50px;
    height: 50px;
}
#snslink.is-active{
    display: block;
}
#toggle-yakuzaishi{
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px 10px;
}
#yakuzaishi{
    display: none;
    background-color: aliceblue;
    padding: 10px;
    border: 1px solid #ccc;
}
#yakuzaishi.is-active{
    display: block;
}
#toggle-chiiki{
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px 10px;
}
#houkatumenu{
    display: none;
    background-color: aliceblue;
    padding: 10px;
    border: 1px solid #ccc;
}
#houkatumenu.is-active{
    display: block;
}

@media screen and (max-width:600px){
header{
    font: size 10px;
}
.header-top-area{
    display: flex;
    flex-direction: column;
}
}

