@charset "utf-8";

*,
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

a {
    font-family: 'Kaisei Opti', serif;
    color: inherit;
    text-decoration: none;
}

body {
    margin: 0;
    font-family: 'Kaisei Opti', serif;
    font-size: 16px;
    color: #574949;
    line-height: 1;
    background-color: #d2b5ce;
}



.header-inner {
    max-width: 1200px;
    height: 110px;/* ここを100vhにするとちょうどよい */
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;/* ロゴとnavバーの中心 */
}

img {
    max-width: 100%;
}

.hamburger-toggle-menu {
    display: none;
}

.header-logo {
    display: block;
    width: 300px;
    /* margin-right: 50px; ここを変更することでとりあえずロゴが左右に動く */
}



.site-menu ul {
    display: flex;
}

.site-menu ul li {
    font-family: 'Kaisei Opti', serif;
    margin-left: 20px;
    margin-right: 20px;
}


.footer {
    /* color: #fbf3ff; */
    background-color: #897193;
    padding-top: 30px;
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    display: block;
    width: 220px; /*ロゴのサイズ*/
    margin-top: 50px;
    margin-bottom: 20px;
}

.footer-top {
    margin-top: 28px;
}

.footer-site-menu ul {
    display: flex;
}

.footer-site-menu ul li {
    font-family: 'Kaisei Opti', serif;
    margin-top: 40px;
    margin-left: 20px;
    margin-right: 20px;
}

.footer-site-menu li:hover {
    color: #ffffff;
}

@media (max-width: 800px){
    .main {
        padding: 20px;
    }

    .site-menu ul {
        display: block;
        text-align: center;
    }

    .site-menu li {
        margin-top: 20px;
    }

    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: #897193;
        height: 50px;
        z-index: 10;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    }

    .header-inner {
        padding-left: 20px;
        padding-right: 20px;
        height: 100%;
        position: relative;
    }

    .header-logo {
        width: 100px;
    }

    .header-site-menu {
        position: fixed;
        top: 50px;
        right: -100%;
        width: 100%;
        height: 100%;
        color: #574949;
        background-color: rgba(214, 166, 185, 0.9);
        padding-top: 200px;
        padding-bottom: 1000px;
        transition: right 0.3s ease;
        z-index: 10;
    }

    .header-site-menu a {
        font-size: 20px;
    }
    /* クリア！↑ */

    .header-site-menu.is-show {
        right: 0;
    }


        /* ハンバーガーメニューアイコンのスタイル */
    .hamburger-toggle-menu {
        display: block;
        width: 44px;
        height: 34px;
        background-image: url(../images/common/icon-menu.png);
        background-size: 50%;
        background-position: center;
        background-repeat: no-repeat;
        background-color: transparent;
        border: none;
        border-radius: 0;
        outline: none;
        background-repeat: no-repeat;
    }

    .footer-site-menu ul {
        display: block;
        text-align: center;
    }

    .footer-site-menu li {
        margin-top: 30px;
        text-shadow: 5px 3px 6px rgba(0, 0, 0, 0.1);
    }
}