@charset "utf-8";
/* CSS Document */

/* ヘッダー */

header {
    height: 60px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.hd_filter {
    background-image: url("../images/filter.png");

}

.header__wrap {
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
}

.header__logo {
    width: 40px;
    height: auto;
}

header ul {
    display: flex;
    justify-content: space-between;
}

header ul li {
    margin: 10px 0 0 30px;
    text-align: right;
    font-size: 1.6rem;
    font-weight: bold;
}

header ul li a {
    color: white;
}

header a:hover {
    opacity: 0.5;
}

/*　フッター、TOPへ戻るボタン　*/

footer {
    height: 140px;
    background-color: #7e318e;
    color: white;
    text-align: center;
    position: relative;
}

.footer__copyright {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
}

.scroll-top button {
    position: fixed;
    cursor: pointer;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    border: #7e318e solid thin;
    z-index: 999;
    line-height: 1;
    color: #7e318e;
}

/*　その他　*/