@charset "utf-8";

:root {
    --green: #445044;
    --lightgreen: #D7D5C4;
    --beige: #EFE9DB;
    --red: #BC5138;
    --grey: #4E4E4E;
    --white: #FFF;
    --navy: #2F455F;
}

html,
body {
    font-family: "sawarabi-mincho", sans-serif;
    font-weight: normal;
    font-style: normal;
    font-optical-sizing: auto;
    line-height: 1.5;
    font-style: normal;
    letter-spacing: 0.1em;
    overflow-x: clip;
    color: var(--grey);
}

.bg-fix {
    background-image: url("../images/bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "rocknroll-one", sans-serif;
    font-weight: 500;
    font-style: normal;
}

a {
    color: var(--beige);
    text-decoration: none !important;
}

a:hover {
    color: var(--red);
    cursor: pointer;
}


/* フォント */
.rock {
    font-family: "rocknroll-one", sans-serif;
}

.sawa {
    font-family: "sawarabi-mincho", sans-serif;
}

.fc-green {
    color: var(--green) !important;
}

.fc-red {
    color: var(--red) !important;
}

.fc-white {
    color: var(--white) !important;
}

.fc-beige {
    color: var(--beige) !important;
}

.fc-navy {
    color: var(--navy) !important;
}

.v-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: nowrap;
}

.text-shadow {
    text-shadow: 2px 2px 5px black;
}

.text-shadow-white {
    text-shadow: 2px 2px 5px white;
}

.has-shadow {
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.15);
}

/* 背景 */
.bg-white {
    background-color: var(--white);
}

.bg-navy {
    background-color: var(--navy);
}

.bg-red {
    background-color: var(--red);
}

.bg-beige {
    background-color: var(--beige);
}

.bg-green {
    background-color: var(--green);
}

.bg-lightgreen {
    background-color: var(--lightgreen);
}

.bg-green-grade {
    background: linear-gradient(180deg, #D7D5C4 78.37%, rgba(215, 213, 196, 0) 100%);
}

.bg-grey {
    background-color: var(--grey);
}


/*罫線*/
.b-beige {
    border: 1px solid var(--beige);
}

.b-beige2 {
    border: 2px solid var(--beige);
}

.b-beige3 {
    border: 3px solid var(--beige);
}

.b-beige4 {
    border: 4px solid var(--beige);
}
.b-navy {
    border: 1px solid var(--navy);
}

.r-10 {
    border-radius: 10px;
}

.r-15 {
    border-radius: 15px;
}

.r-20 {
    border-radius: 20px;
}

.r-25 {
    border-radius: 25px;
}

.r-30 {
    border-radius: 30px;
}

/* ボタン */
.button {
    position: relative;
    display: inline-flex !important;
    font-family: "rocknroll-one", sans-serif;
    background-color: var(--navy);
    color: var(--beige);
    width: 250px;
    border-radius: 32px;
    font-size: 16px;
    padding: 10px 28px !important;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.button::after {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url(../images/arrow.svg);
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    transition: all 0.3s;
}

.button:hover {
    background-color: var(--red);
}

.button:hover::after {
    transform: translateX(2px);
}

.button p {
    color: var(--beige);
    margin: 0 !important;
    padding: 0 !important;
    letter-spacing: 0.2rem;
}


/* ナビ */

.a-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 900;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    background-color: var(--green);
}

.a-nav a p {
    color: var(--beige);
    transition: all 0.3s ease;
    font-family: "rocknroll-one", sans-serif;
}

.a-nav a,
.a-nav-menu a {
    transform-origin: center;
    transition: all 0.3s;
}

.a-nav a:hover,
.a-nav-menu a:hover {
    transform: scale(1.05);
}

.a-nav a:hover p {
    color: var(--red);
}

.a-nav .shop-logo {
    height: 56px;
    width: auto;
}

.top-logo {
    max-width: 180px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-shop-box {
    display: flex;
    gap: 10px;
    align-items: center;
}

@media (min-width:768px) {
    .nav-shop-box {
        gap: 20px;
    }
}

.a-nav-menu {
    display: none;
    opacity: 0;
    z-index: 800;
    background-color: var(--navy);
    height: calc(100vh - 92px);
    margin-top: 92px;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 800;

}

@media (min-width:992px) {
    .a-nav-menu {
        height: calc(100vh - 106px);
        margin-top: 106px;

    }
}

.a-nav-menu.is-active {
    opacity: 1;
    display: flex;
}

.reserve-button {
    position: fixed;
    bottom: 30px;
    right: 0;
    width: 210px;
    transition: all 0.3s;
    transform-origin: right;
    z-index: 700;
    opacity: 0;
    transform: translate(30px, 50px);
    pointer-events: none;
}

.reserve-button:hover {
    transform: scale(1.05);
}

.reserve-button.is-visible {
    opacity: 1;
    transform: translate(0, 0);
    pointer-events: auto;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.a-burger {
    position: relative;
    cursor: pointer;
    width: 40px;
    height: 24px;
    margin: 0;
    padding: 0;
}

.a-burger div {
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--beige);
    border-radius: 3px;
    left: 0px;
    transform-origin: center;
    transition: all 0.3s;
    padding: 0;
    margin: 0;
    min-height: 2px !important;
}

.a-burger div:nth-child(1) {
    top: 0px;
}

.a-burger div:nth-child(2),
.a-burger div:nth-child(3) {
    top: 11px;
}

.a-burger div:nth-child(4) {
    bottom: 0px;
}

.a-burger.is-active div:nth-child(1),
.a-burger.is-active div:nth-child(4) {
    opacity: 0;
}

.a-burger.is-active div:nth-child(2) {
    transform: rotate(45deg);
}

.a-burger.is-active div:nth-child(3) {
    transform: rotate(-45deg);
}

@media (min-width: 992px) {
    .reserve-button {
        width: 186px;
    }
}

.nav-tel-link {
    max-width: 200px;
}

/* フッター */

.foot-logo {
    max-width: 220px;
}

.foot-insta {
    width: 26px;
}

.foot-shop-logo {
    max-height: 120px;
    width: auto;
}

.foot-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

@media (min-width: 768px) {
    .foot-logo {
        max-width: 250px;
    }
}

/* News表示 */
.index-news .webgene-blog,
.news-page .webgene-blog {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}

.index-news .webgene-item,
.news-page .webgene-item {
    width: 100%;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {

    .index-news .webgene-item,
    .news-page .webgene-item {
        width: 48%;
    }
}

@media (min-width: 992px) {
    .index-news .webgene-item {
        width: 24%;
    }
}


.webgene-pagination {
    width: 100%;
}

.webgene-pagination ul,
.pagelink {
    display: flex;
    justify-content: center;
    margin-top: 5rem;
}

.webgene-pagination ul li,
.pagelink p {
    padding: 0 1rem;
}

.webgene-pagination ul li a,
.pagelink p a {
    padding: 0.5rem 2rem !important;
    min-height: 0 !important;
    line-height: 1 !important;
    font-size: 1rem;
    background-color: #E43905;
    color: #FFF;
    font-family: "Yuji Syuku", serif;
}

.webgene-pagination ul li a:hover,
.pagelink p a:hover {
    cursor: pointer;
    transform-origin: center;
    transition-duration: 0.3s;
    transition-property: background-color, color, opacity, transform;
    background-color: #5E3505;
}

.webgene-pagination ul li,
.pagelink p {
    margin: 0;
    position: relative;
    display: inline-block;
}

.webgene-item-prevPageLink {
    margin-left: 1rem;
}

.news-list .webgene-blog {
    display: flex;
    flex-wrap: wrap;
}

.news-list .webgene-blog .webgene-item {
    width: 45%;
    margin: 2rem 2.5%;
}

/* フォーム */
.formInput,
.formTextArea {
    width: 100%;
    padding: 0.5rem;
    border: none;
    border-radius: 0;
    border: 1px solid #CBC3B0;
    background-color: #FFFCF5;
    margin-bottom: 2rem;
}

.formTextArea {
    height: 8rem;
}

.formInput:focus,
.formInput:focus-visible,
.formTextArea:focus,
.formTextArea:focus-visible,
.form-button:focus,
.form-button:focus-visible {
    border: 1px solid #CBC3B0;
    background-color: #FFFCF5;

}

.zipInput {
    width: 6rem;
}

@media (min-width:768px) {
    .formTh {
        padding-left: 2rem;
    }
}

.requiredText {
    background-color: #A3987C;
    color: #FFF;
    padding: 4px 8px;
    font-size: 0.8rem;
    margin-left: 1rem;
}

.privacyformError {
    padding-top: 25px;
}

@media (min-width:768px) {
    .privacyformError {
        padding-top: 0;
    }
}

/* ページ共通設定 */

.fv {
    height: calc(100vh - 92px);
    margin-top: 92px;
}

@media (min-width:992px) {
    .fv {
        height: calc(100vh - 106px);
        margin-top: 106px;
    }
}

.fv-sub {
    height: calc(80vh - 92px);
    margin-top: 92px;
}

@media (min-width:992px) {
    .fv-sub {
        height: calc(80vh - 106px);
        margin-top: 106px;
    }
}

/* TOPページ */
.top-hito-left,
.top-hito-right {
    position: fixed;
    bottom: 0;
    z-index: 20;
}

.top-hito-left {
    left: 0;
    width: 51%;
}

.top-hito-right {
    right: 0;
    width: 59%;
}

.hito-md {
    display: none;
}

@media (min-width:992px) {
    .top-hito-left {
        left: 0;
        width: 42%;
    }

    .top-hito-right {
        right: 0;
        width: 49%;
    }

    .hito-sp {
        display: none;
    }

    .hito-md {
        display: block;
    }
}

@media (min-width:1200px) {
    .top-hito-left {
        left: 0;
        width: 30%;
    }

    .top-hito-right {
        right: 0;
        width: 38%;
    }
}

.fv-box {
    overflow: visible;
    height: calc(150vh - 92px);
    margin-top: 92px;
}

@media (min-width:992px) {
    .fv-box {
        height: calc(200vh - 106px);
        margin-top: 106px;
    }
}

.top-bg {
    position: sticky;
    top: 92px;
    left: 0;
    z-index: 10;
    width: 100%;
    height: calc(100vh - 92px);
}

@media (min-width:992px) {
    .top-bg {
        top: 106px;
        height: calc(100vh - 106px);
    }
}

.policy-box {
    overflow-y: scroll;
    height: 400px;
    border-radius: 30px;
}

.title-sq {
    display: inline-block;
    position: relative;
    padding: 1rem 3rem;
    border-top: 2px solid var(--navy);
    border-bottom: 2px solid var(--navy);
    color: var(--navy);
}

.title-sq::before,
.title-sq::after {
    content: "";
    position: absolute;
    top: -10px;
    bottom: -10px;
    width: 2px;
    background-color: var(--navy);
}

.title-sq::before {
    left: 10px;
}

.title-sq::after {
    right: 10px;
}

.title-sq-beige {
    border-top: 2px solid var(--beige);
    border-bottom: 2px solid var(--beige);
    color: var(--beige);
}

.title-sq-beige::before,
.title-sq-beige::after {
    background-color: var(--beige);
}

.link-zoom {
    transition: all 0.3s;
    transform-origin: center;
}

.link-zoom:hover {
    transform: scale(1.03);
}

.subtitle-neko {
    width: 55px;
}

@media (min-width:768px) {
    .subtitle-neko {
        width: 86px;
    }
}

.subpage-bg {
    flex-grow: 1;
}

.fit-height {
    height: fit-content;
}


.concept-img1 {
    width: 593px;
    margin-top: 50px;
    }

@media (min-width:768px) {
    .concept-img1 {
        width: 593px;
        margin-top: 150px;
    }
}

@media (min-width:992px) {
    .concept-img1 {
        width: 593px;
        margin-top: 150px;
    }
}

.concept-img2 {
    width: 593px;
    margin-right: -70px;
}

@media (min-width:768px) {
.concept-img2 {
    width: 355px;
    margin-right: 0px;
}
}

@media (min-width:992px) {
.concept-img2 {
    width: 422px;
}
}

.concept-img3 {
    margin-left: -70px;
}

@media (min-width:768px) {
    .concept-img3 {
        margin-left: 0px;
    }
}

.concept-neko {
    width: 324px;
}


.concept-hito1 {
    width: 200px;
    align-items: center;
    padding-top: 20px;
}


.concept-hito1,
.concept-hito2 {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}



.concept-subtitle1-sp {
    padding-top: 20px;
    display: block;
}


@media (min-width:768px) {
.concept-hito1 {
    width: 343px;
}

.concept-subtitle1-sp {
    margin-left: -30px;
}

.concept-text1 {
    padding-right: 30px;
    margin-left: -30px;
}
}

@media (min-width:992px) {
.concept-hito1 {
    width: 343px;
    margin-left: 0;
    margin-bottom: 0;
}

.concept-subtitle1-sp {
    margin-left: -50px;
    display: none;
}

.concept-text1 {
    padding-right: 70px;
    margin-left: -50px;
}
}



.concept-subtitle1 {
    padding-top: 20px;
    display: none;
}


@media (min-width:768px) {
.concept-subtitle1 {
    margin-left: -30px;
    display: none;
}
}

@media (min-width:992px) {
.concept-subtitle1 {
    display: block;
    margin-left: -50px;
}
}




.unei-title1 {
    font-family: "sawarabi-mincho", sans-serif;
    margin-bottom: -70px;
}

.unei-title2 {
    font-family: "rocknroll-one", sans-serif;
}

@media (min-width:769px) {
.unei-title2 {
    font-family: "rocknroll-one", sans-serif;
    margin-right: 120px;
    margin-left: 120px;
}
}

@media (min-width:1200px) {
.unei-title2 {
    font-family: "rocknroll-one", sans-serif;
    margin-right: 220px;
    margin-left: 220px;
}
}
.shop-img {
    height: 400px;
    position: relative;
}
.shop-img-area {
    position: relative;
    top: -20px;
    left: -20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: 2px solid var(--navy);
}

.shop-img-area-red {
    position: relative;
    top: -20px;
    left: -20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: 2px solid var(--red);
}

.shop1 {
    padding-left: 48px;
    padding-bottom: 50px;
}

.shop2 {
    padding-right: 48px;
    margin-bottom: -45px;
    
}

.shop3 {
    padding-left: 48px;
    padding-bottom: 50px;
}

.shop4 {
    padding-right: 48px;   
}

@media (min-width:769px) {
.shop1 {
    padding-left: 0px;
    padding-bottom: 0px;
    }

.shop2 {
    padding-right: 0px;
    margin-bottom: 0px;
    }

.shop3 {
    padding-left: 0px;
    padding-bottom: 0px;
    }

.shop4 {
    padding-right: 0px;   
    }

}



.concept-subtitle2-sp {
    padding-top: 20px;
    display: block;
}

@media (min-width:768px) {
.concept-subtitle2-sp {
    margin-left: 0px;
    padding-left: 40px;
}
}

@media (min-width:992px) {
.concept-subtitle2-sp {
    padding-left: 100px;
    margin-right: 0px;
    margin-left: 0px;
}
}

@media (min-width:1200px) {
.concept-subtitle2-sp {
    display: none;
}
}



.concept-hito2 {
    width: 200px;
    align-items: center;
}

.concept-subtitle2 {
    padding-top: 20px;
    display: none;
}

.concept-hito2 {
    text-align: center;
    margin-top: -20px;
}


@media (min-width:768px) {
.concept-hito2 {
    width: 343px;
}

.concept-subtitle2 {
    margin-left: 0px;
    padding-left: 40px;
}

.concept-text2 {
    padding-right: 0px;
    margin-left: 0px;
    padding-left: 40px;
}
}

@media (min-width:992px) {
.concept-hito2 {
    width: 343px;
    margin-top: 0px;
    margin-right: 0;
    margin-bottom: 0;
}

.concept-subtitle2 {
    padding-left: 100px;
    margin-right: 0px;
    margin-left: 0px;
}

.concept-text2 {
    padding-right: 0px;
    margin-right: -20px;
    padding-left: 100px;
    margin-left: 0px;
}
}

@media (min-width:1200px) {
.concept-subtitle2 {
    display: block;
}
}

.kodawari-img1 {
    margin-top: 0px;
}


.kodawari-neko1 {
    width: 160px;
    margin-right: 80px;
}

@media (min-width:768px) {
.kodawari-neko1 {
    width: 210px;
    margin-right: 0px;
}
}

.kodawari-img3 {
    margin-bottom: -25px;
}

@media (min-width:768px) {
    .kodawari-img3 {
    margin-bottom: 0px;
}
}

.kodawari-neko2 {
    width: 230px;
    margin-top: -100px;
    margin-right: 135px;
}

@media (min-width:768px) {
    .kodawari-neko2 {
    width: 378px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: -30px;
}
}

.bb-b {
    color: #BC5138;
    border-bottom: 2px solid #BC5138;
}
.bb-black {
    border-bottom: 1px solid #000;
}
.link-black a {
    color: var(--grey);
}
.job-tab-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.job-tab {
    min-height: 0 !important;
    padding: 8px 16px !important;
    height: 46px;
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--navy);
    border-radius: 100px;
    transition: all 0.3s;
}
.job-tab p {
    min-height: 0px !important;
    font-family: "rocknroll-one", sans-serif;
    color: var(--navy);
    padding: 0;
    margin: 0;
    text-align: center;
    transition: all 0.3s;

}
.job-tab:hover,
.job-tab.is-active {
    background-color: var(--navy);
}
.job-tab:hover p,
.job-tab.is-active p {
    color: var(--beige);
}
.job-cont {
    display: none;
    opacity: 0;
    transition: all 0.3s;
}
.job-cont.is-active {
    display: block;
    opacity: 1;
}

.profile-logo-mark {
    width: 84px;
}

.honten-hito {
    width: 230px;
    align-items: center;
    padding-top: 20px;
    padding-left: 30px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

@media (min-width:768px) {
.honten-hito {
    width: 343px;
    margin-left: 0;
    margin-bottom: 0;
    padding-left: 0px;
}
}

.kushikatsu-title2 {
    font-size: 12px;
}

.top-h1 {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    text-shadow: 0 0 3px #fff;
}

.reserve-text {
    line-height: 25px;
}





.oden-title-sp {
    display: block;
    line-height: 35px;
}

.oden-title-pc {
    display: none;
}


@media (min-width:992px) {

.oden-title-sp {
    display: none;
}

.oden-title-pc {
    display: block;
}

}



.kushiyaki-title-sp {
    display: block;
    line-height: 35px;
}

.kushiyaki-title-pc {
    display: none;
}


@media (min-width:768px) {

.kushiyaki-title-sp {
    display: none;
}

.kushiyaki-title-pc {
    display: block;
}

}


