@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
html {
    font-family: -apple-system, system-ui,'Noto Sans Japanese', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Helvetica neue, 'メイリオ', 'Meiryo', sans-serif;
    color: #303030;
}

body {
    background-color: #F6F8F9;
    color: #777777;
}

a {
    text-decoration: none;
    color: #303030;
}

li, dl {
    list-style: none;
}


body{
    display: flex;
}
.hidden{
    display: none !important;
}
/***************/
/*  Layout  */
/***************/
.l-flex{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-shrink: 0;
    flex-grow: 0;
}
.l-flex_start{
    justify-content: flex-start !important;
}
.l-flex_center{
     justify-content: center !important;
}
.l-flex-between{
    justify-content: space-between;
}
.l-right{
    float: right;
}
.l-flex_rowReverse{
    flex-direction: row-reverse;
}
.l-flex_column{
    flex-direction: column;
}

.vertical-flex {
    flex-flow: column;
}

.fit-content{
    width: -moz-fit-content !important;
    width: fit-content !important;
}
