header {
    font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    line-height: 1.15;
}
header,
.hamburger-menu{
    a:hover {
        opacity: .7;
        text-decoration: none;
    }
}
/* ヘッダー(Fix部分) */
.fix-container {
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-top: 2px solid #CEB896;
    z-index: 1000;
    .logo {
        padding-left: 20px;
        img {
            height: 36px;
        }
    }
    .navigation {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        a {
            display: flex;
            align-items: center;
            color: #5D4E36;
            font-size: 14px;
            img {
                width: 24px;
                height: 24px;
                margin-right: 4px;
            }
        }
        .hamburger-btn {
            width: 58px;
            height: 58px;
            background-color: #F3EDE2;
            img {
                width: 20px;
                height: 20px;
                &.hamburger-btn-close {
                    display: none;
                }
            }
        }
    }
}
/* ヘッダー（下部） */
.nav-container {
    margin-top: 60px;
    padding: 20px 0;
    background-color: #f1f1f1;
    ul {
        display: flex;
        justify-content: center;
        li {
            padding: 0 14px;
            line-height: 1;
            border-right: 1px solid #5D4E36;
            &:last-child {
                border-right: none;
            }
            a {
                color: #5D4E36;
                font-size: 16px;
            }
        }
    }
}
/* ハンバーガーメニュー */
.hamburger-menu {
    width: 100%;
    min-width: 960px;
    padding: 40px 0;
    background-color: #fff;
    z-index: 999;
    display: none;
    position: fixed;
    top: 60px;
    overflow-y: scroll;
    line-height: 1.15;
    &.menu-show {
        display: block;
    }
    .hamburger-container {
        width: 960px;
        margin: auto;
        display: flex;
        flex-direction: column;
        .hamburger-nav {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 20px;
            font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
            ul {
                flex: 1;
                li {
                    &:last-child {
                        padding-bottom: 0;
                    }
                }
                li:not(.half-list) {
                    padding-bottom: 40px;
                    position: relative;
                    a {
                        color: #5D4E36;
                        font-size: 20px;
                    }
                    &:before {
                        content: "";
                        position: absolute;
                        width: 100%;
                        height: 1px;
                        margin-top: 30px;
                        border-radius: 9999px;
                        background-color: #CEB896;
                    }
                    &:after {
                        content: "";
                        position: absolute;
                        top: calc(30px - 1px);
                        right: 0;
                        width: 12px;
                        height: 1px;
                        border-radius: 9999px;
                        background-color: #CEB896;
                        transform: rotate(45deg);
                        transform-origin: calc(100% - 2px) 50%;
                    }
                }
                .half-list {
                    display: flex;
                    flex-wrap: wrap;
                    ul {
                        display: flex;
                        flex-wrap: wrap;
                        li {
                            width: calc(50% - 20px);
                            margin-left: 20px;
                            a {
                                font-size: 14px;
                            }
                        }
                    }
                }
            }
        }
        .hamburger-bottom {
            display: flex;
            align-items: center;
            gap: 10px;
            .contact-warpper {
                width: 300px;
                height: 80px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                font-size: 10px;
                text-align: center;
                background-color: #f2f2f2;
                dl * {
                    color: #5D4E36;
                }
                .dl_tel {
                    .dt_tel {
                        font-size: 12px;
                        margin-bottom: 8px;
                    }
                    .dd_tel {
                        margin-bottom: 8px;
                        a {
                            font-size: 24px;
                            letter-spacing: 2px;
                        }
                    }
                }
                .dl_reception_hours {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    line-height: 1.15;
                    .dt_reception_hours {
                        padding-right: 8px;
                    }
                }
            }
            .ico-link-warpper {
                display: flex;
                align-items: center;
                height: 80px;
                background-color: #F3EDE2;
                a {
                    width: 120px;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    color: #5D4E36;
                    font-size: 14px;
                    border-right: 1px solid #D5C4A9;
                    &:last-child {
                        border-right: none;
                    }
                    span {
                        margin-bottom: 4px;
                    }
                    img {
                        width: 32px;
                        height: 32px;
                    }
                }
            }
        }
    }
}
.fix-ico-link-warpper {
    display: none;
}

/* SP */
@media screen and (max-width: 768px) {
    .fix-container {
        .logo {
            img {
                width: 100px;
                height: auto;
            }
        }
        .navigation {
            gap: 10px;
            a {
                font-size: 12px;
                img {
                    width: 20px;
                    height: 20px;
                    margin-right: 4px;
                }
            }
            .hamburger-btn {
                width: 58px;
                height: 58px;
                background-color: #F3EDE2;
                img {
                    width: 20px;
                    height: 20px;
                }
            }
        }
    }
    /* ヘッダー（下部） */
    .nav-container {
        display: none !important;
    }
    /* ハンバーガーメニュー */
    .hamburger-menu {
        min-width: unset;
        padding-top: 30px;
        height: calc(100vh - 60px);
        .hamburger-container {
            width: 100%;
            padding: 0 20px;
            .hamburger-nav {
                flex-direction: column;
                gap: 20px;
                ul {
                    li:not(.half-list) {
                        a {
                            font-size: 18px;
                        }
                        &:before {
                            margin-top: 25px;
                        }
                        &:after {
                            top: calc(25px - 1px);
                        }
                    }
                }
            }
            .hamburger-bottom {
                display: block;
                .contact-warpper {
                    width: 100%;
                    height: 100px;
                    .dl_reception_hours {
                        display: block;
                        line-height: 1.15;
                        .dt_reception_hours {
                            padding: 0;
                        }
                    }
                }
                .ico-link-warpper {
                    display: none !important;
                }
            }
        }
    }
    /* ページ下部 FIX */
    .fix-ico-link-warpper {
        display: flex;
        align-items: center;
        width: 100%;
        height: 80px;
        background-color: #F3EDE2;
        position: fixed;
        left: 0;
        bottom: 0;
        z-index: 990;
        a {
            width: auto;
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #5D4E36;
            font-size: 14px;
            border-right: 1px solid #D5C4A9;
            &:last-child {
                border-right: none;
            }
            span {
                margin-bottom: 4px;
            }
            img {
                width: 32px;
                height: 32px;
            }
        }
    }


    #copyright {
        padding-bottom: 90px !important;
    }
    #fair {
        .hamburger-menu {
            padding-bottom: 120px;
        }
        .fix-ico-link-warpper {
            display: none !important;
        }
    }
}

#wrapper {
    padding-top: 0 !important;
}