/*---------------------------------------------------------
                フロントヘッダー
---------------------------------------------------------*/

.h_front {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    height: 80px;
    background: var(--f-text-color02);
}

.h_front .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    width: 90%;
}

.h_front .inner a.h_logo {
    position: relative;
    z-index: 50;
    width: 182px;
}

.h_front .inner .menu_toggle {
    position: relative;
    z-index: 50;
    width: 35px;
    height: 29px;
    cursor: pointer;
}

.h_front .inner .menu_toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--f-text-color01);
    border-radius: 5px;
    transition: .3s;
}

.h_front .inner .menu_toggle span:nth-of-type(1) {
    top: 0;
}

.h_front .inner .menu_toggle span:nth-of-type(1) {
    top: 50%;
    transform: translateY(-50%);
}

.h_front .inner .menu_toggle span:nth-of-type(3) {
    bottom: 0;
}

.h_front .inner .menu_toggle.open span:nth-of-type(1) {
    transform: rotate(45deg);
}

.h_front .inner .menu_toggle.open span:nth-of-type(2) {
    opacity: 0;
}

.h_front .inner .menu_toggle.open span:nth-of-type(3) {
    transform: rotate(-45deg);
    bottom: 10px;
}

.h_front .inner .menu_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, .9);
    pointer-events: none;
    transition: .3s;
    opacity: 0;
}

.menu_toggle.open+.menu_bg {
    opacity: 1;
    pointer-events: all;
}

.h_front .inner .nav_content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 60px 0;
    width: 90vw;
    max-height: 80vh;
    background: var(--r-base-color);
    border-radius: 20px;
    overflow: scroll;
    opacity: 0;
    transition: .3s;
    pointer-events: none;
}

.menu_toggle.open~.nav_content {
    opacity: 1;
    pointer-events: all;
}

.h_front .inner .nav_content .box {
    display: flex;
    flex-direction: column;
}

.h_front .inner .nav_content .box:nth-of-type(2) {
    margin-left: 3vw;
}

.h_front .inner .nav_content .box .ttl {
    display: flex;
    align-items: center;
    gap: 10px;
}

.h_front .inner .nav_content .box:nth-of-type(1) .ttl {
    color: #5FBC45;
}

.h_front .inner .nav_content .box:nth-of-type(2) .ttl {
    color: #BC6D45;
}

.h_front .inner .nav_content .box .ttl img {
    width: 27px;
}

.h_front .inner .nav_content .box .ttl p {
    font-size: clamp(16px, 2.08vw, 30px);
    letter-spacing: .1em;
}

.h_front .inner .nav_content .box .content_area {
    display: flex;
    gap: 1.3vw;
    margin-top: 5px;
}

.h_front .inner .nav_content .box .content_area .item {
    width: 22.7vw;
}

.h_front .inner .nav_content .box .content_area .item .img_box {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.h_front .inner .nav_content .box .content_area .item .img_box img {
    width: 100%;
    height: 100%;
    aspect-ratio: 310/366;
    object-fit: cover;
    transition: .3s;
}

@media (hover: hover) and (pointer: fine) {
    .h_front .inner .nav_content .box .content_area .item:hover .img_box img {
        transform: scale(1.1);
    }
}

.h_front .inner .nav_content .box .content_area .item .text {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.h_front .inner .nav_content .box .content_area .item .text img {
    width: 60px;
    aspect-ratio: unset;
    border-radius: 8px;
    object-fit: cover;
}

.h_front .inner .nav_content .box .content_area .item .text p {
    font-size: min(20px, 1.26vw);
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.08em;
}

.h_front .inner .nav_content .box .content_area .item .text p span {
    display: block;
    font-size: clamp(12px, 1.04vw, 15px);
}

.h_front .inner .nav_content nav {
    margin: 5vw 0 0 3vw;
}

.h_front .inner .nav_content nav ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.h_front .inner .nav_content nav ul li a {
    font-size: min(16px, 1.1vw);
}

@media (hover: hover) and (pointer: fine) {
    .h_front .inner .nav_content nav ul li a:hover {
        opacity: .7;
    }
}

.h_front .inner .nav_content nav ul li a span {
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
    text-decoration: underline;
}

@media screen and (max-width:1024px) {
    .h_front .inner .nav_content {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 5%;
        width: 100vw;
        height: 100vh;
        max-height: unset;
        border-radius: 0;
    }
    .h_front .inner .nav_content .box {
        gap: 12px;
    }
    .h_front .inner .nav_content .box:nth-of-type(2) {
        margin-top: 30px;
        margin-left: 0;
    }
    .h_front .inner .nav_content .box .content_area {
        flex-direction: column;
        gap: 20px;
    }
    .h_front .inner .nav_content .box .content_area .item {
        display: flex;
        align-items: center;
        gap: 20px;
        width: 100%;
    }
    .h_front .inner .nav_content .box .content_area .item .img_box {
        width: 20%;
        min-width: 90px;
        aspect-ratio: 1 / 1;
    }
    .h_front .inner .nav_content .box .content_area .item .text {
        margin-top: 0;
    }
    .h_front .inner .nav_content .box .content_area .item .text p {
        font-size: max(14px, 2.5vw);
    }
    .h_front .inner .nav_content nav {
        margin: 40px auto 0;
    }
    .h_front .inner .nav_content nav ul {
        flex-direction: row;
    }
    .h_front .inner .nav_content nav ul li a {
        font-size: 16px;
    }
}

@media screen and (max-width:768px) {
    .h_front .inner .nav_content .box .content_area .item .text img {
        width: 50px;
        min-width: unset;
    }
    .h_front .inner .nav_content nav ul {
        gap: 24px;
    }
}

@media screen and (max-width:500px) {
    .h_front .inner a.h_logo {
        width: 140px;
    }
    .h_front .inner .nav_content .box .content_area .item {
        gap: 10px;
    }
    .h_front .inner .nav_content nav {
        margin: 40px 0 0 0;
    }
    .h_front .inner .nav_content nav ul {
        flex-direction: column;
    }
}


/*---------------------------------------------------------
                飲食ヘッダー
---------------------------------------------------------*/

.h_restaurant {
    position: fixed;
    top: 5%;
    left: 5%;
    z-index: 50;
    width: 180px;
}

.h_restaurant a,
.h_restaurant a img {
    width: 100%;
}

@media screen and (max-width:768px) {
    .h_restaurant {
        width: 120px;
        top: 3%;
    }
}