@charset "UTF-8";

/* --------mv------------------------------- */
.mv {
    width: 100%;
    height: 100vh;
    background-image: url(../images/top-mv.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.mv::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 9.9vw;
    background: url(../images/bg-mv.png) no-repeat top center / cover;
    content: "";
    mix-blend-mode: multiply;
}

/* --------news------------------------------- */
.news {
    padding-top: 148px;
    padding-bottom: 135px;
    background-image: url(../images/bg-news.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.news .inner {
    max-width: 1052px;
}
@media screen and (max-width: 768px) {
    .news {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.CMS-NEWS-INDEX {
    margin-top: 62px;
    display: flex;
    flex-wrap: wrap;
    gap: 2.4%;
}

.CMS-NEWS-ITEM {
    width: 31.7%;
    display: flex;
}


.CMS-NEWS-ITEM a {
    display: flex;
    flex-direction: column;
}
@media screen and (max-width: 768px) {
    .CMS-NEWS-ITEM {
        width: 100%;
        margin-bottom: 3rem;
    }
    .CMS-NEWS-ITEM a {
        flex-direction: column;
        align-items: start;
    }
}

.CMS-NEWS-TIME {
    flex: 1;
    color: #FFF;
    font-size: 14px;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 0.5px solid #FFF;
    width: 100%;
}

.CMS-NEWS-LINK {
    flex: 2;
    color: #FFF;
}

.CMS-NEWS-MORE-READ {
    display: none;
}

.section__link.news__link {
    margin-top: 80px;
}

/* --------concept------------------------------- */
.concept {
    position: relative;
    padding-top: 90px;
    padding-bottom: 90px;
    background-image: url(../images/concept-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
    .concept {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.concept__inner {
    position: relative;
    z-index: 3;
}

.concept__content {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #ffffff;
}


.concept-content__inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    row-gap: 30px;
    width: 100%;
    margin: 0 auto;
    padding-top: 80px;
    padding-bottom: 80px;
    padding: 93px 112px;
    color: #ffffff;
    background: rgba(0, 0, 0, .9);
    box-shadow: inset 0 0 5px #be191f, inset 0 0 10px #be191f, inset 0 0 20px #be191f, inset 0 0 30px #be191f;
    border: 1.5px solid #ffffff;
}

.concept-content__text {
    line-height: calc(36/16);
    text-align: center;

}

.concept .section-title__text--main {
    color: #be191f;
}
@media screen and (max-width: 768px) {
    .concept-content__inner {
        padding: 30px 20px;
    }
}
/* --------menu------------------------------- */
.menu {
    padding-top: 150px;
    background-image: url(../images/bg-menu.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.menu .inner {
    max-width: 1440px;
    padding: 0;
}
@media screen and (max-width: 768px) {
    .menu {
        padding: 80px 20px;
        
    }
}

.menu__content {
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 768px) {
    .menu__content {
        flex-direction: column;
    }
}

.menu__body {
    display: flex;
    flex-direction: column;
    align-items: start;
    row-gap: 40px;
    width: 31.8%;
    margin-left: 11.806%;
    margin-top: 40px;
}
.menu__content--reverse .menu__body {
    margin-right: 11.806%;
    margin-left: auto;
}
@media screen and (max-width: 1400px) {
    .menu__body {
        margin-left: 3%;
        width: 43.8%;
    }
    .menu__content--reverse .menu__body {
        margin-right: 3%;
    }
}
@media screen and (max-width: 768px) {
    .menu__body {
        align-items: center;
        width: 100%;
        margin: 0 auto;
    }
}

.menu__heading {
    font-size: 24px;
    font-weight: 700;
    line-height: calc(40/24);
    letter-spacing: .1em;
}
@media screen and (max-width: 768px) {
    .menu__heading {
        font-size: 20px;
    }
}
@media screen and (max-width: 450px) {
    .menu__heading {
        font-size: 4.2vw;
    }
}
.menu__text {
    line-height: calc(36/16);
}
.cast .menu__text {
    text-align: center;
}

.menu__img {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 48.6114%;
}

.menu__img::before {
    content: "";
    width: 100%;
    height: 100%;
    border: 1px solid #be191f;
    position: absolute;
    top: 20px;
    left: -20px;
}
.menu__content--reverse .menu__img::before {
    left: initial;
    right: -20px;
}
@media screen and (max-width: 768px) {
    .menu__img {
        width: 100%;
        margin-top: 30px;
    }
    .menu__img::before {
        top: 10px;
        left: -10px;
    }
    .menu__content--reverse .menu__img::before {
        left: initial;
        right: -10px;
    }
}

.menu__img img {
    display: block;
    width: 100%;
    height: 100%;

    -o-object-fit: cover;
       object-fit: cover;
}

.menu__content--reverse {
    display: flex;
    flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
    .menu__content--reverse {
        flex-direction: column;
    }
}

/* --------food------------------------------- */
.food {
    margin-top: 80px;
}

/* --------cast------------------------------- */
.cast {
    position: relative;
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    margin-top: 138px;
    padding-top: 100px;
    padding-bottom: 110px;
    background-image: url(../images/bg-cast.jpg);
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
    .cast {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.menu__content.menu__content--cast {
    align-items: center;
    justify-content: center;
    row-gap: 30px;
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
@media screen and (max-width: 768px) {
    .menu__content.menu__content--cast {
        flex-direction: column;
    }
}

.menu__content.menu__content--cast .menu__body {
    align-items: center;
    row-gap: 15px;
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
}

.menu__content.menu__content--cast .menu__body {
    align-items: center;
    row-gap: 50px;
}

.menu__content.menu__content--cast .section__title--illumi.section__title--illumi--flex {
    flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
    .menu__content.menu__content--cast .section__title--illumi.section__title--illumi--flex {
        flex-direction: column;
    }
}

.menu__content.menu__content--cast .menu__img img {
    height: 400px;
}

/* --------gallery------------------------------- */
.gallery {
    padding-top: 140px;
    padding-bottom: 140px;
    background:#be191f;
}
.gallery__slider {
  height: 13.7rem;
  margin: 60px 0 90px;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 18.8rem;
  margin: 0;
}
@media screen and (max-width: 768px) {
    .gallery {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.gallery__content {
    display: flex;
    justify-content: space-between;
         column-gap: 2.94vw;
    margin-top: 40px;
    padding: 0 20px;

    -moz-column-gap: 2.94vw;
}
@media screen and (max-width: 768px) {
    .gallery__content {
        flex-wrap: wrap;
        justify-content: center;
        column-gap: 0;

        gap: 20px;
    }
}
.gallery-content__img:nth-child(even) {
    margin-top: 80px;
}
@media screen and (max-width: 768px) {
    .gallery-content__img {
        width: 25%;
    }
    .gallery-content__img img {
        height: 31.55vw;
    }
}

@media screen and (max-width: 768px) {
    .gallery-content__img:nth-child(even) {
        margin-top: 0;
    }
}

.gallery__link {
    margin-top: 80px;
}

/* --------access------------------------------- */
.access {
    position: relative;
    padding-top: 120px;
    padding-bottom: 140px;
    background-image: url(../images/access-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
    .access {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.access .section__title--illumi {
    text-align: center;
}
.access .inner {
    position: relative;
    z-index: 2;
}

.access__content {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    margin-top: 95px;
}
@media screen and (max-width: 768px) {
    .access__content {
        flex-direction: column;
        margin-top: 35px;
    }
}

.access-content__body {
    width: 44.27%;
}
@media screen and (max-width: 768px) {
    .access-content__body {
        width: 100%;
        margin-top: 40px;
    }
}

.access-content__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Montserrat", sans-serif;
}

.access-content__title--main {
    font-size: 30px;
    text-transform: uppercase;
}

.access-content__title--sub {
    font-size: 20px;
}

.section__link.access__link {
    margin-top: 124px;
}
@media screen and (max-width: 768px) {
    .section__link.access__link {
        margin-top: 60px;
    }
}

.access__list {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 50.28%;
}
@media screen and (max-width: 768px) {
    .access__list {
        width: 100%;
    }
}

.access-item {
    display: flex;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 25px 17px;
}

.access-item:not(:nth-last-of-type(2)) {
    border-bottom: 0.5px solid #FFF;
}
.access .section__link {
    margin: 4rem auto 0 0;
    width: max-content;
}
@media screen and (max-width: 768px) {
    .access-item {
        flex-direction: column;
    }
    .access .section__link {
        margin: 4rem auto 0;
    }
}

.access-item {
    margin-top: 23px;
}

.access-item__title, .access-item__content {
    line-height: calc(28.4/16);
}

.access-item__title {
    flex: 1;
    text-transform: uppercase;
}

.access-item__content {
    flex: 2;
}

.section-link.access-content__link {
    margin-top: 80px;
}

.access-item__content a {
    color: #ffffff;
}

.access__map {
    width: 100%;
    height: 450px;
}

@media screen and (max-width: 768px) {
    .access__map {
        height: 300px;
    }
}
.access__map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(1);
}


.recruit {
    padding: 125px 0 100px;
    background: url(../images/bg-recruit.jpg) no-repeat top center / cover;
}
.recruit .menu__text {
    text-align: center;
}

/* --------instagram------------------------------- */
.instagram {
    padding-top: 154px;
    padding-bottom: 180px;
    background-image: url(../images/bg-instagram.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
    .instagram {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.top_sns_share {
    margin-top: 0;
}


/* --------共通------------------------------- */
.inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --------タイトル----------- */
.section__title {
    position: relative;
    text-align: center;
}

.section-title__text--main {
    position: relative;
    color: #000000;
    font-weight: bold;
    font-size: 40px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
}
@media screen and (max-width: 768px) {
    .section-title__text--main {
        font-size: 30px;
    }
}

.section-title__text--sub {
    color: #000000;
}

.section-title__text-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
         column-gap: 20px;

    -moz-column-gap: 20px;
}

.section-title__text-wrapper span {
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #000000;
}

.section__link {
    text-align: center;
}

/* --------タイトルイルミ----------- */
.section__title--illumi--main {
    position: relative;
    color: #ffffff;
    font-weight: bold;
    font-size: 40px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    text-shadow: 0 0 5px #be191f, 0 0 10px #be191f, 0 0 20px #be191f, 0 0 30px #be191f;
    text-align: center;
    letter-spacing: 0.18em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.section__title--illumi--main span {
    font-size: 16px;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.14em;
}
.section__title--illumi--sub {
    text-shadow: 0 0 5px #be191f, 0 0 10px #be191f, 0 0 20px #be191f, 0 0 30px #be191f;
    font-weight: 700;
    margin-top: 0.5rem;
}
.section__title--illumi--main.--wh {
    text-shadow: 0 0 30px #FFF, 0 0 0px #FFF, 0 0 0px #FFF, 0 0 12px #FFF;
}
@media screen and (max-width: 768px) {
    .section__title--illumi--main {
        font-size: 30px;
    }
}

.section__title--illumi.section__title--illumi--flex {
    display: flex;
    align-items: center;
         column-gap: 35px;

    -moz-column-gap: 35px;
}
@media screen and (max-width: 1024px) {
    .section__title--illumi.section__title--illumi--flex {
        flex-direction: column;
        margin: 0 auto;
    }
}

/* --------heading----------- */
.section__heading {
    font-weight: bold;
    font-size: 26px;
    font-weight: 500;
    line-height: calc(40/26);
    letter-spacing: .12em;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .section__heading {
        font-size: 20px;
    }
}
@media screen and (max-width: 450px) {
    .section__heading {
        font-size: 4.2vw;
    }
}

/* --------ボタン----------- */
.section__link {
    width: 100%;
}

.section__link.section__link--left {
    display: flex;
}
@media screen and (max-width: 768px) {
    .section__link.section__link--left {
        justify-content: center;
    }
}

.section__link a {
    display: inline-block;
    position: relative;
    width: 15.36vw;
    min-width: 215px;
    max-width: 370px;
    padding: 12px 23px;
    background-color: #000000;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #FFF;
    background: #780000;
    background: linear-gradient(90deg,rgba(180, 0, 0, 1) 0%, rgba(120, 0, 0, 1) 25%);
}
.section__link.--bk a {
    background: #000;
}
@media screen and (max-width: 768px) {
    .section__link a {
        min-width: 230px;
    }
}

.section__link.section__link--white a {
    border: 1px solid #ffffff;
    background-color: transparent;
}

.section__link.section__link--white a::after {
    background: linear-gradient(to left, #ffffff 50%, #ffffff 50%);
}
@media screen and (max-width: 1024px) {
    .section__link.section__link--white a::after {
        right: -10%;
        width: 25%;
    }
}