/*ハンバーガーメニュー*/
.menu-btn span, .menu-btn span:before, .menu-btn span:after {
                background-color: #ccc;
        }

/*ヘッダー*/
.nav ul {
    display: flex;
    margin-right: 30px;
    margin-top: 10px;
}
.nav li {
    margin-left: 20px;
}
.header {
    position: relative;
}
h1 {
    position: absolute;
    top: 10px;
    left: 10px;
}
.nav {
    position: absolute;
    top: 10px;
    right: 10px;
}
.nav ul a {
    color: #fff;
    font-size: 16px;
    display: block;
}
.nav a:hover {
    font-weight: bold;
}
.title h2 {
    font-size: 34px;
    font-weight: bold;
    font-family: sans-serif;
    letter-spacing: 0.2em;
}
.title p {
    font-family: serif;
    font-size: 24px;
}
.title-text {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -60%);
    text-align: center;
    color: #fff;
    letter-spacing: 0.1em;
}
.title-text p {
    margin: -10px;
}

/*フッター*/
footer {
        width: 100%;
        text-align: center;
        background-color: #d7d7d7;
        height: 60px;
}
footer p {
        color: #666;
        font-size: 14px;
        line-height: 60px;
}