/*メニュー*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#menu {
    position: sticky;
    top: 0;
    z-index: 100;
}

#menu nav {
    background-color: #ffccdd;
    max-width: 100%;
    opacity: 0.85;
}

#menu ul {
    list-style: none;
    display: flex;
}

#menu a {
    text-decoration: none;
    color: #7e3d00;
    display: inline-block;
    padding: 8px 16px;
    width: 100%;
    text-align: center;
    transition: color 0.4s ease;
}

#menu li {
    transition: background-color 0.4s ease;
}

#menu li:hover {
    background-color: #ff8eb3;
}

#menu a:hover {
    color: #ffffff;
}

.home {
        margin-right: auto;
}

/*フッター関連*/
footer {
    background-color: #fff4f7;
    max-width: 100%;
    opacity: 0.85;
    text-align: center;
}

footer p {
    color: rgb(209 52 113);
}

.wrap {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    flex: 1;
    padding-top: 80px;
    text-align: center;
}

/*ボタン*/

.botton {
    background-color: #ffccdd;
    color: #7e3d00;

    margin-top: 5px;
    padding: 12px 24px;

    border: none;
    border-radius: 20px;

    font-size: 16px;

    cursor: pointer;
    transition: background-color 0.4s ease;
    transition: color 0.4s ease;
}

.botton:hover {
    background-color: #ff8eb3;
    color: #ffffff;
}