@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@600&display=swap');

html {
    font-size: 62.5%;
}

body,
table,
input,
textarea,
select,
option {
    font-family: 'Noto Sans JP', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

a,
input {
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .wrap {
        min-width: 320px;
    }
}


/* Device
-------------------------------------- */
/* PC */
@media (min-width:901px) {
    .tb:not(.pc) {
        display: none;
    }

    .sp:not(.pc) {
        display: none;
    }
}

/* TB */
@media (min-width:576px) and (max-width:900px) {
    .pc:not(.tb) {
        display: none;
    }

    .sp:not(.tb) {
        display: none;
    }
}

/* SP */
@media (max-width:575px) {
    .pc:not(.sp) {
        display: none;
    }

    .tb:not(.sp) {
        display: none;
    }
}


/* Variable
-------------------------------------- */
:root {
    --white: #fff;
    --red: #C60000;
    --yellow: #E0AE07;
    --lsWide: 0.07em;
    --enText: 'Barlow', sans-serif;
    --weightR: 400;
    --weightB: 700;
}


/* Animation
-------------------------------------- */
/* Fade in */
body {
    animation: fade-in 3s;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/* Rayout
-------------------------------------- */
html {
    overflow: auto;
    scroll-behavior: smooth;
}

body {
    font-size: 1.6rem;
    font-weight: var(--weightR);
    background-color: var(--red);
}

body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
}

.wrap {
    position: relative;
    overflow: hidden;
}


/* Contents
-------------------------------------- */
.contents {
    position: relative;
    width: calc(100% - 128px);
    max-width: 1120px;
    margin: auto;
}

@media (max-width: 1023px) {
    .contents {
        width: calc(100% - 80px);
    }
}

@media (max-width: 575px) {
    .contents {
        width: calc(100% - 56px);
    }
}


/* Header
-------------------------------------- */
header {
    position: fixed;
    top: 48px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 128px);
    z-index: 999;
    margin: auto;
    display: flex;
    justify-content: space-between;
    transition: all 0.3s;
}

.header__logo {
    width: 220px;
    transition: all 0.3s;
}

.scrollSmall {
    transform: scale(0.7);
    transform-origin: 0 0;
}

.header__navi {
    display: flex;
    justify-content: flex-end;
    gap: 0 48px;
    margin-left: 32px;
    color: var(--white);
    font-family: var(--enText);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: var(--lsWide);
}

.header__naviIcon {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0 40px;
    margin-top: 24px;
}

.header__naviIcon img {
    transition: all 0.3s;
}

.header__naviIcon li:nth-of-type(1) {
    width: 22px;
}

.header__naviIcon li:nth-of-type(2) {
    width: 21px;
}

.header__naviIcon li:nth-of-type(3) {
    width: 25px;
}

.header__naviIcon li:nth-of-type(4) {
    width: 29px;
}

.header__naviIcon a {
    position: relative;
}

@media (hover: hover) {

    .header__logo a:hover,
    .header__navi a:hover,
    .header__naviIcon a:hover img {
        opacity: 0.7;
    }
}

@media (max-width: 1023px) {
    header {
        top: 32px;
        width: calc(100% - 64px);
    }

    .header__logo {
        width: 180px;
    }

    .header__navi {
        gap: 0 32px;
        font-size: 1.8rem;
    }
}

@media (min-width: 768px) {
    .scrollCompact {
        top: 32px;
        width: calc(100% - 64px);
    }
}

@media (max-width: 767px) {
    header {
        top: 5vw;
        width: calc(100% - 10vw);
    }

    .header__logo {
        width: 140px;
    }

    .header__navi {
        display: none;
    }

    .header__naviIcon {
        gap: 0 32px;
        margin-top: 8vw;
    }
}

@media (max-width: 575px) {
    .header__logo {
        width: 100px;
    }

    .header__naviIcon {
        transform: scale(0.9);
        transform-origin: top right;
        gap: 0 24px;
        margin-top: 0;
        margin-right: 14vw;
    }
}


/* SP NAVI
-------------------------------------- */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
}

.hamburger {
    height: 40px;
    width: 40px;
    position: fixed;
    top: 5vw;
    right: 5vw;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s;
}

.hamburger div {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: top 0.4s 0.2s, transform 0.4s 0s;
}

.hamburger div:nth-of-type(1) {
    top: calc(35% - 0px);
}

.hamburger div:nth-of-type(2) {
    top: calc(35% - 13px);
}

.hamburger div:nth-of-type(3) {
    top: calc(35% + 13px);
}

.hamburger.on div {
    top: calc(35% - 0px);
    transform-origin: center center;
    transition: top 0.4s 0s, transform 0.4s 0.2s;
}

.hamburger.on div:nth-of-type(1) {
    transform: rotate(45deg);
}

.hamburger.on div:nth-of-type(2) {
    opacity: 0;
}

.hamburger.on div:nth-of-type(3) {
    transform: rotate(135deg);
}

.menuBox {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--red);
    z-index: 999;
    overflow-y: auto;
    transition: all 0.3s;
}

.menuBox.on {
    visibility: visible;
    opacity: 1;
}

.spNavi {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px 0;
}

.spNavi a {
    color: var(--white);
    font-family: var(--enText);
    font-weight: var(--weightB);
    font-size: 2.2rem;
    letter-spacing: var(--lsWide);
}

@media (max-width: 575px) {
    .hamburger {
        transform: scale(0.8);
        transform-origin: top right;
    }
}


/* MV
-------------------------------------- */
.mv {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.mv__image {
    position: absolute;
    top: 7vh;
    left: 51%;
    transform: translateX(-50%);
    width: 1140px;
}

.mv__tagline1 {
    position: absolute;
    top: 25vh;
    right: 12.29vw;
    width: 140px;
}

.mv__tagline2 {
    position: absolute;
    bottom: 7.06vh;
    left: 50%;
    transform: translateX(-50%);
    width: 736px;
}

.mv__steam {
    position: absolute;
    top: -280px;
    right: 39.29vw;
    width: 950px;
}

@media (max-width: 1200px) {
    .mv__image {
        width: 95vw;
    }

    .mv__tagline1 {
        right: 6.86vw;
    }

    .mv__steam {
        top: -30vw;
        width: 92.86vw;
    }
}

@media (max-width: 1023px) {
    .mv {
        min-height: 70vw;
    }

    .mv__image {
        top: 7vh;
    }

    .mv__tagline1 {
        top: 20vw;
        width: 13.69vw;
    }

    .mv__tagline2 {
        bottom: auto;
        top: 52vw;
        width: 71.95vw;
    }
}

@media (max-width: 575px) {
    .mv {
        min-height: 100vw;
    }

    .mv__image {
        width: 100vw;
        top: 13vh;
    }

    .mv__tagline1 {
        top: 28vw;
        width: 15vw;
    }

    .mv__tagline2 {
        top: 77vw;
        width: 85vw;
    }
}


/* ABOUT
-------------------------------------- */
.about {
    position: relative;
    margin-top: 320px;
    padding-top: 10.35vh;
    background-color: var(--yellow);
    scroll-margin-top: 48px;
}

.about::before {
    content: '';
    display: block;
    width: 662px;
    height: 131px;
    background: url(../img/about-title1.png) no-repeat center bottom / contain;
    position: absolute;
    top: -125px;
    left: calc((100% - 1120px) / 2);
}

.about__title img {
    display: inline-block;
}

.about__title img:first-child {
    width: 209px;
    margin-right: 40px;
}

.about__title img:last-child {
    width: 299px;
}

.about__text {
    margin-top: 64px;
    margin-left: 32px;
    color: var(--red);
    font-size: 2rem;
    font-weight: var(--weightB);
    letter-spacing: var(--lsWide);
    line-height: 2.4;
}

.about__image {
    position: absolute;
    top: 70px;
    right: 0;
    z-index: 1;
    width: 635px;
}

.about__slider {
    margin-top: 104px;
}

.about__slider li {
    width: 640px;
}

@media (min-width: 1401px) {
    .about__image {
        width: 45.36vw;
    }
}

@media (max-width: 1248px) {
    .about::before {
        left: 64px;
    }

    .about__text {
        margin-left: 0;
    }
}

@media (max-width: 1200px) {
    .about__image {
        width: 52.92vw;
    }
}

@media (max-width: 1023px) {
    .about {
        margin-top: 25vw;
    }

    .about__text {
        font-size: 1.8rem;
    }

    .about::before {
        left: 40px;
        width: 64.71vw;
    }
}

@media (max-width: 900px) {
    .about__image {
        position: relative;
        top: 0;
        margin-top: 32px;
        width: 100%;
        text-align: right;
    }

    .about__image img {
        width: 80vw;
    }

    .about__slider {
        margin-top: -128px;
    }

    .about__slider li {
        width: 55vw;
    }
}

@media (max-width: 767px) {
    .about__title img {
        display: block;
    }

    .about__title img:first-child {
        margin-bottom: 32px;
        margin-right: 0;
    }
}

@media (max-width: 575px) {
    .about::before {
        left: 28px;
    }

    .about__title img:first-child {
        width: 33.33vw;
        /* 60% */
    }

    .about__title img:last-child {
        width: 59.73vw;
        /* 75% */
    }

    .about__text {
        margin-top: 32px;
        font-size: 1.7rem;
        line-height: 2;
    }

    .about__image {
        margin-top: 16px;
    }

    .about__slider {
        margin-top: -60px;
    }

    .about__slider li {
        width: 65vw;
    }
}


/* MENU
-------------------------------------- */
.menu {
    margin-top: -56px;
    padding-bottom: 160px;
    scroll-margin-top: 80px;
}

.menu__title {
    width: 386px;
}

.menu__list {
    display: flex;
    justify-content: space-between;
    gap: 0 35px;
    margin-top: 88px;
}

.menu__list li {
    position: relative;
    width: 100%;
    height: 400px;
}

.menu__list a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border: 10px solid var(--yellow);
}

.menu__list a::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2E791C;
    opacity: 0;
    transition: all 0.3s;
}

.menu__list li:nth-of-type(1) a {
    background: url(../img/menu-bg-dinner.jpg ) no-repeat center center / cover;
}

.menu__list li:nth-of-type(2) a {
    background: url(../img/menu-bg-drink.jpg ) no-repeat center center / cover;
}

.menu__list li:nth-of-type(3) a {
    background: url(../img/menu-bg-lunch.jpg ) no-repeat center center / cover;
}

/* 準備中 */
.menu__list._close li::before {
    content: '準備中';
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    height: 100%;
    color: var(--yellow);
    font-size: 2.6rem;
    font-weight: var(--weightB);
    letter-spacing: var(--lsWide);
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.menu__listTitle {
    position: relative;
    width: 160px;
    z-index: 1;
}

.menu__listTitle img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s;
}

.menu__listTitle img:last-of-type {
    opacity: 0;
}

@media (hover: hover) {
    .menu__list a:hover::before {
        opacity: 0.7;
    }

    .menu__list a:hover .menu__listTitle img:first-child {
        opacity: 0;
    }

    .menu__list a:hover .menu__listTitle img:last-child {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .menu__list li {
        height: 35vw;
    }

    .menu__listTitle {
        width: 15.63vw;
    }
}

@media (max-width: 575px) {
    .menu {
        margin-top: -32px;
        padding-bottom: 96px;
    }

    .menu__title {
        width: 61.6vw;
    }

    .menu__list {
        display: flex;
        flex-direction: column;
        gap: 35px 0;
        margin-top: 48px;
    }

    .menu__list li {
        height: 60vw;
    }

    .menu__listTitle {
        width: 32vw;
    }
}


/* BLOG
-------------------------------------- */
.blog {
    padding: 160px 0;
    background-color: var(--yellow);
}

.blog__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog__title {
    width: 322px;
}

.blog__list {
    display: flex;
    gap: 0 64px;
}

.blog__list li {
    width: 320px;
    height: 320px;
    aspect-ratio: 1 / 1;
    clip-path: polygon(15% 0, 85% 0, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0 85%, 0 15%);
    overflow: hidden;
}

.blog__list li a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: var(--yellow);
}

.blog__list li:nth-of-type(1) a {
    background: url(../img/blog-bg-staff.jpg ) no-repeat left top / cover;
}

.blog__list li:nth-of-type(2) a {
    background: url(../img/blog-bg-president.jpg ) no-repeat left top / cover;
}

.blog__list a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #2E791C;
    mix-blend-mode: multiply;
    transition: all 0.5s;
}

.blog__listTitle {
    z-index: 1;
    width: 210px;
}

.blog__listTitle span {
    display: block;
    margin-top: 24px;
    font-size: 1.8rem;
    font-weight: var(--weightB);
    letter-spacing: var(--lsWide);
    text-align: center;
}

@media (hover: hover) {
    .blog__list a:hover::before {
        background-color: #960000;
    }
}

@media (max-width: 1200px) {
    .blog__list {
        gap: 0 48px;
    }

    .blog__list li {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 1100px) {
    .blog__inner {
        display: block;
    }

    .blog__title {
        margin: auto;
    }

    .blog__list {
        gap: 0 64px;
        justify-content: center;
        margin-top: 56px;
    }

    .blog__list li {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 767px) {
    .blog__list {
        flex-direction: column;
        align-items: center;
        gap: 48px 0;
        margin-top: 56px;
    }
}

@media (max-width: 575px) {
    .blog {
        padding: 96px 0;
    }

    .blog__title {
        width: 51.47vw;
        /* 60% */
    }

    .blog__list li {
        width: 65vw;
        height: 65vw;
    }

    .blog__listTitle {
        width: 41.87vw;
    }
}


/* GALLERY
-------------------------------------- */
.gallery {
    padding: 160px 0;
    text-align: right;
    background: url(../img/gallery-bg.jpg ) no-repeat center top / cover;
}

.gallery__title {
    display: inline-block;
    width: 316px;
}

.gallery__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 72px;
}

.gallery__list li {
    width: 250px;
}

.lum-lightbox {
    z-index: 1000;
}

@media (hover: hover) {
    .gallery__list a:hover {
        opacity: 0.7;
    }
}

@media (max-width: 1248px) {
    .gallery__list {
        gap: 2.86vw;
    }

    .gallery__list li {
        width: 22.3%;
    }
}

@media (max-width: 575px) {
    .gallery {
        padding: 96px 0;
    }

    .gallery__title {
        width: 50.67vw;
    }

    .gallery__list {
        gap: 2.86vw;
    }

    .gallery__list li {
        width: 48%;
    }
}

@media (max-width: 460px) {
    .lum-lightbox-inner img {
        max-width: 160vw !important;
        max-height: 85vh !important;
    }
}


/* MAP
-------------------------------------- */
.map {
    padding: 160px 0;
}

.map__title {
    width: 362px;
}

.map__gmap {
    margin-top: 32px;
    width: 100%;
    height: 420px;
    border: 10px solid var(--yellow);
}

iframe {
    filter: hue-rotate(330deg) grayscale(30%) contrast(90%);
    -webkit-filter: hue-rotate(330deg) grayscale(30%) contrast(90%);
}

@media (max-width: 575px) {
    .map {
        padding: 96px 0;
    }

    .map__title {
        width: 57.87vw;
    }

    .map__gmap {
        height: 380px;
    }
}


/* FOOTER
-------------------------------------- */
footer {
    position: relative;
    margin-bottom: 32px;
    padding: 80px 0;
    color: var(--red);
    background-color: var(--yellow);
}

footer::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    right: 64px;
    width: 391px;
    height: 125px;
    background: url(../img/footer-bg.png ) no-repeat center center / contain;
}

.footer__inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0 64px;
    margin: 0 64px;
}

.footer__logo {
    width: 180px;
}

.footer__text1 {
    font-size: 2rem;
    font-weight: var(--weightB);
    letter-spacing: var(--lsWide);
}

.footer__text2 {
    margin-top: 8px;
    font-size: 1.4rem;
    letter-spacing: var(--lsWide);
    line-height: 1.8;
}

.footer__tel {
    margin-top: 8px;
    font-family: var(--enText);
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: var(--lsWide);
}

.footer__tel::before {
    content: '';
    display: inline-block;
    margin-right: 8px;
    width: 20px;
    height: 20px;
    background: url(../img/footer-tel.png ) no-repeat center center / contain;
}

.footer__naviIcon {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0 40px;
}

.footer__naviIcon li:nth-of-type(1) {
    width: 22px;
}

.footer__naviIcon li:nth-of-type(2) {
    width: 21px;
}

.footer__naviIcon li:nth-of-type(3) {
    width: 25px;
}

.footer__naviIcon li:nth-of-type(4) {
    width: 29px;
}

.footer__copyright {
    position: absolute;
    bottom: 0;
    right: 80px;
    font-family: var(--enText);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: var(--lsWide);
}

@media (hover: hover) {
    .footer__naviIcon a:hover {
        opacity: 0.7;
    }
}

@media (max-width: 1023px) {
    .footer__inner {
        gap: 0 40px;
        margin: 0 40px;
    }

    footer::after {
        right: 40px;
        width: 391px;
        height: 125px;
    }
}

@media (max-width: 860px) {
    footer {
        padding: 80px 0 136px;
    }

    .footer__copyright {
        bottom: -56px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 96px 0 136px;
    }

    .footer__naviIcon {
        top: -56px;
    }
}

@media (max-width: 575px) {
    footer::after {
        position: absolute;
        bottom: -1px;
        left: 50%;
        transform: translateX(-50%);
        width: 320px;
        height: 103px;
    }

    .footer__logo {
        width: 120px;
    }

    .footer__inner {
        flex-direction: column;
        gap: 32px 0;
        margin: 0 28px;
    }

    .footer__copyright {
        right: auto;
        left: 54%;
        transform: translateX(-50%);
        white-space: nowrap;
    }
}


/* BALLOON
-------------------------------------- */
.balloon {
    position: absolute;
    opacity: 0;
    top: 100%;
    left: 50%;
    display: block;
    margin-left: -46px;
    width: 92px;
    white-space: nowrap;
    padding: 10px 5px;
    background: #fff;
    border-radius: 2px;
    color: #000;
    font-size: 12px;
    line-height: 1;
    transition: .3s;
    text-align: center;
}

.balloon::after {
    content: "";
    position: absolute;
    top: -11px;
    left: 50%;
    margin-left: -6px;
    height: 0;
    width: 0;
    border: 6px solid transparent;
    border-top: 6px solid #fff;
    transform: rotate(180deg);
}

@media (hover: hover) {

    .header__naviIcon a:hover .balloon,
    .footer__naviIcon a:hover .balloon {
        opacity: 1 !important;
        top: 35px;
    }
}