@charset "UTF-8";

/* 共通 */
* {
    line-height: 1.5em;
    letter-spacing: 0.1em;
}
a {
    color: #333333;
    text-decoration: none;
}
a:hover {
    opacity: 0.7;
}
img {
    width: 100%;
}

/*アンカーメニュー*/
.flex-layout {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.fix-menu {
    opacity: 0;
    transition-duration: .3s;
    width: 30%;
}
.fix-menu.display {
    opacity: 1;
}
.flex-layout__innner{
    width: 70%;
}
.fix-menu .fix-menu__fixed {
    position: fixed;
    top: auto;
    bottom: -1em;
    padding: 20px;
}
.fix-menu .fix-menu__fixed ul {
    padding: 0;
}
.fix-menu .fix-menu__fixed ul li {
    list-style-type: none;
    font-size: 16px;
    padding: 10px 0 10px 30px;
    position: relative;
}
.fix-menu .fix-menu__fixed ul li::before {
    content: "ー";
    position: absolute;
    left: 0;
    top: 0.5em;
}
@media (max-width: 968px) {
    /*アンカーメニュー*/
    .fix-menu .fix-menu__fixed {
        position: static;
    }
    .fix-menu {
        width: 100%;
    }
    .flex-layout__innner{
        width: 100%;
    }
    .fix-menu {
        background: #728C93;
        color: #FFF;
        padding: 15px;
        margin: 20px 0 0 0;
    }
    .fix-menu a {
        color: #ffffff;
    }
}