@charset "UTF-8";

/**
 * オリジナルcss
 */

header{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
    background-color: #FFF;
}
#header{
    margin: 0 3%;
}
#h-top{
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

#header .menu{
    margin:auto 0 20px auto;
}

#header .menu ul{
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    list-style: none;
    min-width: 700px;
}

#h-top #site-description{
    display: none;
}

#header #h-top .alignleft{
    display: flex;
    align-items: center;
    height: 100px;
}

#header .menu{
    display: none;
}

#header .header_button{
    background: #FF3E60;
    color: #FFF;
    font-weight: bold;
    width: 140px;
    height: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    text-align: center;
}

#mobile-menu{
    position: unset;
}

#mobile-menu a{
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
}

#site-title{
    margin: 0;
    line-height: normal;
}

#site-title a{
    font-family: "Kaisei Opti", serif;
    font-size: 40px;
    font-weight: 900;
}


@media screen and (max-width: 1110px){
    #h-top{
        display: block;
    }
}
@media screen and (max-width:740px){
    #header #h-top .alignleft{
        height: 60px;
    }
    #h-top #site-title a, #site-title a{
        font-size: 24px;
    }
    #header .header_button{
        display: none;
    }
    #h-top{
        min-height: auto;
        height: 60px;
    }
    .main_visual_area{
        
    }
}
@media screen and (max-width:639px){
}
@media screen and (max-width:500px){
}

