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

/*********************************
  base
**********************************/
html {
    font-size: 62.5%;
}

body {
    font-family: "游明朝", "YuMincho", "Noto Serif JP", serif;
    font-feature-settings: "palt"1;
    color: var(--txt_color);
    background-color: var(--main_bg_color);
    /* min-width: 1040px; */
    position: relative;
    font-size: 1.6em;
    line-height: 1.6;
}

body * {
    box-sizing: border-box;
}

.f_go {
    font-family: "游明朝", "YuMincho", "Noto Serif JP", serif;
}

@media screen and (min-width: 768px) {
    a {
        transition: 0.5s;
        color: var(--link_color);
        cursor: pointer;
        text-decoration: none;
    }
}

@media screen and (max-width: 767px) {
    a {
        transition: 0.5s;
        color: var(--link_color);
        cursor: pointer;
        text-decoration: underline;
    }
}

a:hover {
    opacity: 0.8;
}

p {
    margin: 0;
}

.privacy {
    width: auto;
    margin: 0px auto 8rem;
    border: 2px solid #000000;
    padding: 20px;
    height: 500px;
    overflow: auto;
}

p.privacy_notes {
    padding: 30px 0 40px;
}

.privacy span,
.privacy-takeout span {
    font-weight: bold;
}

@media screen and (max-width: 1024px) {
    body {
        font-size: 1.4em;
    }
}

@media screen and (max-width: 768px) {
    body {
        font-size: 1.6em;
        min-width: 0;
    }
}

@media screen and (max-width: 414px) {
    body {
        font-size: 1.4em;
    }
}

/************************
 material
*************************/

.modalWindow {
    display: none;
}

.btnCta {
    background: var(--cta_bg_color);
    color: var(--cta_txt_color);
}

a.btnBasic {
    position: relative;
    display: inline-block;
    padding: 0.5em 2em 0.5em 1em;
    border-radius: 30px;
    font-size: 1em;
    font-family: "游明朝", "YuMincho", "Noto Serif JP", serif;
    background-color: #000;
    color: var(--btn_txt_color);
}

#contact a.btnBasic {
    display: block;
    width: 160px;
    margin: auto;
}

a.btnBasic:after {
    content: "\f054";
    font: normal normal normal 14px/1 FontAwesome;
    position: absolute;
    top: 50%;
    right: 1rem;
    margin: auto;
    transform: translateY(-50%);
}

.cautionBox {
    background: var(--sub_bg_color2);
    padding: 1.5em;
    border: var(--border_color);
    margin: 2em auto 0;
}

.caption {
    font-size: 0.8em;
}

/************************
 layout
*************************/
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
}

.wrapper:not(#topPage) {
    padding-top: 152px;
}

main {
    /* padding-bottom: 120px; */
}

.wrapper:not(#topPage) main {
    padding-bottom: 0;
}

.contentsInner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 2rem;
}

.wrapper:not(#topPage) main section > .contentsInner {
    padding-top: 80px;
}

.sec_h2 {
    min-height: 110px;
    margin: 0 auto 3.75em;
    text-align: center;
    position: relative;
    z-index: 1;
    color: var(--tit_txt_color);
}

.sec_h2 .EnTit {
    font-family: "游明朝", "YuMincho", "Noto Serif JP", serif;
    display: block;
    font-size: 3.75em;
}

.sec_h2 .RubyTit {
    position: relative;
    display: inline-block;
    padding: 0.6em 2em 0;
    line-height: 1;
    font-size: 1.25em;
}

.sec_h2 .RubyTit:before,
.sec_h2 .RubyTit:after {
    content: "";
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 32px;
    height: 1px;
    background-color: black;
    transform: rotate(-60deg);
}

.sec_h2 .RubyTit:before {
    left: 0;
}

.sec_h2 .RubyTit:after {
    right: 0;
}

.subTit {
    font-size: 1.75em;
    font-weight: 600;
    color: var(--tit_txt_color);
}

.sech3 {
    font-size: 1.5em;
    line-height: 1.5;
    position: relative;
    margin-bottom: 1.5em;
    padding-bottom: 1em;
    font-weight: 600;
    text-align: center;
    border-bottom: solid 2px #333;
    color: var(--tit_txt_color);
}

.sech3:after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #333;
}

.sech3 span {
    font-size: 0.7em;
    display: block;
    margin: 0.5em auto;
}

@media screen and (max-width: 768px) {
    .wrapper:not(#topPage) {
        padding-top: 100px;
    }

    .wrapper:not(#topPage) main section > .contentsInner {
        padding-top: 40px;
    }

    .contentsInner {
        width: 100%;
        padding: 0 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .sec_h2 .EnTit {
        font-size: 2.5em;
    }

    .sec_h2 .RubyTit {
        font-size: 1em;
    }
}

/************************
 header
*************************/

.headerFixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header {
    background: var(--key_color);
}

.header > .contentsInner {
    display: flex;
    justify-content: space-between;
    min-height: 90px;
    padding: 2rem 4rem;
}

.shopLogo {
    display: flex;
    align-items: center;
    width: 48%;
    padding-right: 2%;
}

.shopLogo_img {
    text-align: center;
    margin-right: 1.5rem;
    border-radius: 3px;
    overflow: hidden;
    width: 150px;
    height: auto;
}

.shopLogo_img img {
    vertical-align: middle;
    max-width: 100%;
    max-height: 50px;
    margin: auto;
}

.shopLogo_txt {
    font-size: 1.25em;
    font-weight: 600;
    line-height: 1.2;
    color: var(--darkbg_txt_color);
}

.headerItem {
    display: flex;
    align-items: center;
}

.headerItem .reserve_txt {
    text-align: justify;
    font-size: 0.75em;
    line-height: 1;
    color: var(--sub_key_color);
    letter-spacing: 0.09em;
}

.headerItem .phone_txt {
    font-size: 1.25em;
    margin: 0.5em 0 0 0;
    font-weight: 600;
    line-height: 1;
    text-align: left;
    color: var(--sub_key_color);
}

.headerItem .reserveBtnArea .btnCta {
    display: block;
    font-size: 1em;
    line-height: 1;
    transition: 0.3s;
    padding: 1.4rem 1rem;
    text-align: center;
    border-radius: 3px;
    margin: 0 0 0 1em;
}

.google_translate {
    margin-left: 30px;
}

.goog-te-gadget-simple {
    min-width: 105px;
}

.goog-te-gadget-icon,
.goog-te-menu-value img {
    display: inline;
}

@media screen and (max-width: 768px) {
    .header > .contentsInner {
        min-height: 0;
        height: 60px;
        padding: 1rem 2rem;
    }

    .shopLogo {
        width: calc(100% - 60px);
    }

    .shopLogo_img {
        width: 80px;
    }

    .shopLogo_txt {
        font-size: 1em;
    }

    .navBtn {
        position: absolute;
        right: 0;
        top: 0;
        width: 60px;
        height: 60px;
        transition: 0.3s;
    }

    .navBtn a {
        display: block;
    }

    .navBtn a .breadLine {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        background: #fff;
        width: 32px;
        height: 2px;
        opacity: 1;
    }

    .navBtn a:before,
    .navBtn a:after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        width: 32px;
        height: 2px;
        background: #fff;
        transition: 0.3s;
    }

    .navBtn a:before {
        transform: translate(0, -10px);
    }

    .navBtn a:after {
        transform: translate(0, 10px);
    }

    .navBtn.isActive a .breadLine {
        display: none;
    }

    .navBtn.isActive a:before {
        transform: translate(0, 0) rotate(45deg);
    }

    .navBtn.isActive a:after {
        transform: translate(0, 0) rotate(-45deg);
    }

    .google_translate {
        margin-right: 40px;
    }

    .goog-te-gadget-simple {
        font-size: 8pt !important;
    }
}

.VIpgJd-ZVi9od-xl07Ob-lTBxed img {
    display: none;
}

.goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed span {
    padding-right: 3px;
}

/**gnav**/

.gnav {
    background-color: var(--main_bg_color);
}

.gnavItem {
    display: flex;
    justify-content: center;
    padding: 0 4rem;
}

.gnavItem li {
    width: calc(100% / 7);
}

.gnavItem li a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    font-size: 1.4rem;
    line-height: 1.2;
    padding: 1.2rem 0;
    width: 100%;
    text-align: center;
    color: #333;
}

.gnavItem li a span {
    font-size: 0.71em;
    margin-top: 0.5em;
    display: inline-block;
}

.gnavItem li.active a {
    color: var(--nav_current_color);
}

@media screen and (max-width: 768px) {
    .gnav {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        z-index: 101;
        width: 100%;
        height: calc(100% - 60px);
        overflow-y: auto;
        background-color: var(--spnav_bg_color);
    }

    .gnavItem {
        display: block;
        padding: 0 20px 120px;
        font-size: 1.15em;
        line-height: 1.6;
    }

    .gnavItem li {
        width: 100%;
        border-bottom: solid 1px var(--spnav_border_color);
    }

    .gnavItem li a {
        width: 100%;
        align-items: flex-start;
        padding: 1em 0.5em;
    }
}

/************************
 フローターバナー
*************************/

.fixedBnWrap {
    position: fixed;
    z-index: 99;
    transition: 0.5s;
    left: 20px;
    bottom: 20px;
}

.bnPickupBox {
    position: relative;
    width: 360px;
    line-height: 1;
    height: 90px;
    border-radius: 5px;
    transition: 0.5s;
    opacity: 1;
    box-shadow: 0 2px 2.5px 2px rgb(0 0 0 / 33%);
    text-size-adjust: none;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.8);
}

.bnPickupBox:after {
    content: "\f054";
    font: normal normal normal 16px/1 FontAwesome;
    position: absolute;
    top: 50%;
    right: 1rem;
    margin: auto;
    transform: translateY(-50%);
}

.bnPickup {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 1rem 3rem 1rem 2rem;
    height: 100%;
    color: var(--darkbg_txt_color);
}

.bnPickup img {
    width: 20%;
    margin-right: 2rem;
    height: auto;
}

h1.bnPickup_tit {
    position: relative;
    display: inline-block;
    padding: 0 2rem;
    font-size: 17px;
    font-weight: 800;
}

h1.bnPickup_tit:before,
h1.bnPickup_tit:after {
    content: "";
    position: absolute;
    width: 17px;
    border-top: 2px solid;
    border-radius: 1px;
}

h1.bnPickup_tit:before {
    top: 7px;
    left: -5px;
    transform: rotate(70deg);
}

h1.bnPickup_tit:after {
    top: 7px;
    right: -3px;
    transform: rotate(-70deg);
}

.bnPickup_tit + p {
    margin-top: 1rem;
    font-size: 13px;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .fixedBnWrap {
        bottom: 70px;
    }

    .bnPickupBox {
        width: 280px;
        height: 64px;
    }

    .bnPickup {
        padding: 1rem 2rem 1rem 1rem;
    }

    .bnPickup img {
        width: 15%;
        margin-right: 1rem;
    }

    h1.bnPickup_tit {
        font-size: 14px;
        padding: 0 1rem;
    }

    .bnPickup_tit + p {
        font-size: 11px;
    }
}

/************************
 スマホ　フッター固定エリア
*************************/
.fReserveArea {
    display: flex;
    justify-content: center;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 99;
    width: 100%;
    padding: 1rem;
    transition: animationSpeed;
    backdrop-filter: blur(2px);
}

.fReserveArea:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
    background: linear-gradient(-180deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.9) 100%);
}

.fixedBtn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.5em;
    text-align: center;
    cursor: pointer;
    font-size: 0.9em;
    border-radius: 2px;
}

.fixedBtn a {
    display: block;
}

.btnSns {
    width: 16%;
    border: 1px solid #969696;
    background-color: #f3f3f3;
    color: #747474;
}

.btnTel {
    min-width: 22%;
    margin-left: 2%;
    font-weight: bold;
    background-color: var(--subkey_bg_color);
    border: solid 1px var(--sub_key_color);
    font-size: 1.2em;
}

.btnReserve {
    width: 58%;
    margin-left: 2%;
    border-radius: 2px;
    border: solid 1px var(--cta_bg_color);
    background-color: var(--cta_bg_color);
}

.btnReserve a {
    color: var(--cta_txt_color);
}

.snsModalBody {
    padding: 0;
    line-height: 1;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
}

.snsModalBody h3 {
    text-align: center;
    margin: 0 auto 1em;
    font-weight: 600;
    font-size: 1.2em;
}

.snsModalBody .ShopData {
    position: relative;
    z-index: 1;
    padding: 1em 0;
    color: #7d7d7d;
    background-color: #ededed;
    border-top: 1px solid #979797;
    border-bottom: 1px solid #979797;
    margin: 0 -30px;
    text-align: center;
}

.snsModalShopName {
    margin-bottom: 1em;
    font-size: 1.1em;
}

.snsModalList {
    display: flex;
    justify-content: center;
    margin-top: 1em;
}

.snsModalList li {
    width: 46px;
    margin: 0 1em;
}

/************************
 パンクズ
*************************/
.breadCrumb {
    border-top: solid 1px var(--border_color2);
    border-bottom: solid 1px var(--border_color2);
    background: linear-gradient(0deg,
            rgba(216, 216, 216, 0.7) 0%,
            rgba(255, 255, 255, 0) 25%,
            rgba(255, 255, 255, 0) 75%,
            rgba(216, 216, 216, 0.7) 100%);
    background-size: 25px;
    background-color: #efefef;
    width: 100%;
    height: 36px;
}

.breadCrumbList {
    font-size: 0.8em;
    line-height: 36px;
}

.breadCrumbList > li {
    display: inline;
}

.breadCrumbList > li + li:before {
    content: " > ";
    margin: 0 4px;
    color: var(--txt_color);
}

@media screen and (max-width: 768px) {
    .breadCrumb {
        display: none;
    }
}

/************************
 TOP
*************************/
/**MV**/
.mvWrap {
    position: relative;
}

.mvWrap .mv {
    background-color: var(--dark_bg_color);
    position: relative;
    overflow: hidden;
    width: 100%;
    /* height: 65vh; */
    height: 48vw;
    margin-top: 120px;
}

.mv-swiper {
    position: relative;
    width: 100%;
    /* height: 100%; */
    height: 48vw;
}

.mv-swiper .mvItems {
    position: relative;
    /* height: 100%; */
    height: 48vw;
}

.mv-swiper .mvItems .mvItem {
    display: inline-block;
    position: relative;
    /* height: 100%; */
    height: 48vw;
    vertical-align: top;
}

.mv-swiper .mvItems .mvItem .Item_img {
    position: relative;
    width: 100%;
    /* height: 100%; */
    height: 48vw;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.mv-swiper .mvItems .mvItem .Item_img > img {
    /* width: auto;
  max-width: none; */
    /* height: 100%; */
    vertical-align: middle;
    width: 100%;
    height: auto;
}

.mv-swiper .mvItems .mvItem .Item_img:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: all 0.5s;
    z-index: 1;
}

.mv-swiper .mvItems .mvItem .Item_img:after {
    content: "";
    display: inline-block;
    width: 0;
    height: 100%;
    vertical-align: middle;
}

.mv-swiper .mvItems .mvItem .Item_img:before {
    background-color: rgba(0, 0, 0, 0.5);
}

.mv-swiper .mvItems .mvItem.swiper-slide-active .Item_img:before {
    background-color: rgba(0, 0, 0, 0);
}

.slick-slide.moving {
    -webkit-animation-name: scale;
    animation-name: scale;
    -webkit-animation-duration: 8s;
    animation-duration: 8s;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

@media screen and (max-width: 768px) {
    .mvWrap .mv {
        height: auto;
        margin-top: 60px;
    }

    .mv-swiper .mvItems {
        height: auto;
    }

    .mv-swiper .mvItems .mvItem .Item_img > img {
        width: 100%;
        height: auto;
    }
}

/*スクロールボタン*/

.toMainScrollBtn {
    position: absolute;
    right: 0;
    bottom: -80px;
    left: 0;
    z-index: 1;
    width: 50px;
    margin: auto;
    padding-top: 2em;
    text-align: center;
    font-size: 1rem;
    font-family: "游明朝", "YuMincho", "Noto Serif JP", serif;
    line-height: 1;
    cursor: pointer;
}

.toMainScrollBtn:before,
.toMainScrollBtn:after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
}

.toMainScrollBtn:before {
    bottom: 50px;
    height: 60px;
    width: 1px;
    background-color: #555;
}

.toMainScrollBtn:after {
    bottom: -130px;
    height: 120px;
    width: 8px;
    background: url("../img/heading_decoration.png") no-repeat;
    background-size: contain;
}

.toMainScrollBtn span:after {
    content: "▼";
    position: absolute;
    top: -6px;
    right: 0;
    left: -3px;
    width: 6px;
    height: 6px;
    margin: auto;
    color: #e37402;
    border-radius: 100%;
    animation: sdb 2s infinite;
    box-sizing: border-box;
}

@-webkit-keyframes sdb {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    80% {
        transform: translate(0, 8px);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes sdb {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    80% {
        transform: translate(0, 8px);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/**main**/
#topPage main section {
    position: relative;
}

#topPage main > section:not(:first-child):not(:last-child) {
    padding: 120px 0;
}

#topPage main > section:nth-of-type(2n) {
    background-color: var(--sub_bg_color);
}

#topPage main section:first-child > .contentsInner {
    padding-top: 80px;
    padding-bottom: 130px;
}

#topPage main > section:not(:first-child):not(:last-child):before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    z-index: 1;
    margin: auto;
    width: 8px;
    height: 180px;
    background: url(../img/heading_decoration.png) no-repeat;
    background-size: contain;
}

@media screen and (max-width: 768px) {
    #topPage main > section:not(:first-child):not(:last-child) {
        padding: 120px 0 80px;
    }
}

/**calendar**/

.calendarWrap {
    display: flex;
    justify-content: space-between;
    font-size: 0.9em;
    line-height: 2;
    font-family: "游明朝", "YuMincho", "Noto Serif JP", serif;
    position: relative;
    margin: 2em 0;
    padding: 2em;
    box-shadow: 0 0 10px 3px #909090 inset;
    background: rgba(0, 0, 0, 0.25);
}

.calendarWrap .LeftArea {
    width: 64%;
    padding: 0;
    background: #fff;
    display: flex;
    text-align: center;
}

.calendarWrap .LeftArea table {
    width: 100%;
    height: 100%;
}

.calendarWrap .LeftArea table td,
.calendarWrap .LeftArea table th {
    border: 1px solid var(--fc-border-color, #ddd);
    text-align: center;
}

.calendarWrap .LeftArea table td.hyde {
    color: #999;
    background: #eee;
}

.calendarWrap .LeftArea table td.active span,
.calendarWrap .LeftArea table td.selected span {
    color: red;
}

.calendarWrap .LeftArea table td.selected {
    background-color: var(--fc-today-bg-color, rgba(255, 220, 40, 0.15));
}

.calendarWrap .LeftArea table th {
    font-weight: 600;
}

.calendarWrap .LeftArea td:last-child {
    color: dodgerblue;
}

.calendarWrap .LeftArea td:first-child {
    color: orangered;
}

.calendarWrap .RightArea {
    width: 32%;
    padding: 1rem 2rem;
    position: relative;
    background: #fff;
}

.calendarWrap .RightArea .restyCalSelect dt {
    margin-bottom: 0.5em;
    font-size: 0.9em;
}

.calendarWrap .RightArea .restyCalSelect #restyDay {
    text-align: center;
    font-size: 1.2em;
    line-height: 1.2;
}

.calendarWrap .RightArea .restyCalSelect dd {
    margin-bottom: 1em;
}

.calendarWrap .RightArea .restyCalSelect dd select,
.calendarWrap .RightArea .restyCalSelect dd input {
    width: 100%;
    padding: 0.5em;
}

.calendarWrap .RightArea .btnBox {
    text-align: center;
}

.calendarWrap .RightArea .btnBox input {
    padding: 0.5em;
    display: block;
    border: none;
    background: var(--cta_bg_color);
    color: var(--cta_txt_color);
    text-align: center;
    width: 100%;
    border-radius: 4px;
    font-size: 1.2em;
}

.calendarWrap .RightArea .btnBox input[disabled] {
    background: #ccc;
    color: #eee;
}

.calListInfo {
    font-size: 0.8em;
    margin: 1em 0 0 0;
}

.calIcon {
    color: orangered;
}

@media screen and (max-width: 768px) {
    .calendarWrap {
        display: block;
    }

    .calendarWrap .LeftArea,
    .calendarWrap .RightArea {
        width: 100%;
    }

    .calendarWrap .LeftArea {
        margin-bottom: 2em;
    }
}

/**food_special**/

.FoodListWrap li {
    height: 440px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.FoodListWrap li:nth-of-type(2n) {
    flex-flow: row-reverse;
}

.FoodList_img {
    width: 440px;
    height: 440px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

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

.FoodList_img + .FoodList_txt {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-flow: column;
    height: 360px;
    padding: 2.5em 0;
}

.FoodList_txt .scrlBox {
    max-height: 90%;
}

.FoodList_txt .name {
    font-size: 1.75em;
    font-weight: 600;
    line-height: 1.6;
    color: var(--tit_txt_color);
}

.FoodList_txt .price {
    font-size: 1.2em;
    color: var(--tit_txt_color);
    font-weight: 600;
    margin: 0.5em 0;
}

.FoodList_txt .spec {
    font-size: 0.9em;
}

.FoodList_txt .btnBasic {
    margin-top: 1em;
    width: 240px;
    text-align: center;
}

@media screen and (max-width: 1000px) {
    .FoodList_img + .FoodList_txt {
        width: 40%;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-flow: column;
        height: 360px;
        padding: 2.5em 0;
    }

    .contentsInner {
        width: 95%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }
}

@media screen and (max-width: 768px) {
    .contentsInner {
        width: 100%;
    }

    .FoodListWrap li {
        display: block;
        height: auto;
    }

    .FoodList_img {
        width: 300px;
        height: 300px;
        border-radius: 50%;
        position: relative;
        overflow: hidden;
        transform: translateZ(0);
        margin: auto;
    }

    .FoodList_img + .FoodList_txt {
        width: 100%;
        margin: 0 auto 20px;
        justify-content: flex-start;
        height: auto;
    }

    .FoodList_txt .name {
        text-align: center;
    }
}

/**mood_slide**/

.MoodSlideWrap {
    padding: 2em;
    border: solid 1px #fff;
    box-shadow: 0 0 10px 3px #909090 inset;
    background: rgba(0, 0, 0, 0.25);
}

.mood_item {
    height: 550px;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.mood_item img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
}

.mood_item .caption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    z-index: 2;
}

@media screen and (max-width: 768px) {
    .FoodList_txt .scrlBox {
        margin: auto;
    }

    .MoodSlideWrap {
        padding: 0;
        border: solid 1px #fff;
        box-shadow: none;
        background: none;
    }

    .mood-swiper .swiper-wrapper {
        display: block;
    }

    .mood_item {
        padding: 1em;
        border: solid 1px #dedede;
        background-color: rgba(255, 255, 255, 0.8);
        margin: 0 auto 20px;
        width: 100%;
        height: auto;
    }

    .mood_item img {
        width: 100%;
        height: auto;
        position: static;
        transform: none;
    }

    .mood_item p.caption {
        position: static;
    }
}

/**access**/

.mapBox + .subTit {
    margin-top: 1em;
}

.item {
    display: flex;
    width: 100%;
    border-bottom: 1px dotted var(--border_color2);
    padding: 1em 0.5em;
    font-family: "游明朝", "YuMincho", "Noto Serif JP", serif;
}

.item > dt {
    width: 25%;
    padding-right: 1em;
    font-weight: 600;
    color: var(--strong_txt_color);
}

.item dd {
    width: 75%;
}

/**detailInfoList**/

.detailInfoList .item {
    font-size: 1em;
    padding: 0 0 1em;
    border-bottom: none;
}

.footerInfoWrap {
    background-color: var(--sub_bg_color);
    color: var(--sub_txt_color2);
}

.footerInfoWrap .contentsInner {
    padding: 60px 40px;
}

.footerInfoWrap h3 {
    margin-bottom: 1em;
    font-size: 20px;
}

/**footer**/

footer {
    color: var(--darkbg_txt_color);
    background: var(--key_color);
    padding: 1em 0;
    font-size: 0.75em;
    text-align: center;
}

/**sns**/

main .snsBox {
    padding: 4em 0;
}

.snsBox .snsList {
    text-align: center;
    display: flex;
    justify-content: center;
}

.snsList > li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 1em;
}

.snsBtn {
    display: block;
    width: 46px;
    height: 46px;
}

/**ModalContents**/

.modalInner {
    display: flex;
}

.modalImg {
    display: inline-block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    max-height: 100%;
    text-align: center;
}

.modalImg > img {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
}

.modalImg + .modalInfo {
    width: 48%;
    margin-left: 1em;
    padding: 1em 0 1em 1em;
    border-left: 1px solid #ccc;
}

.modalTitle {
    font-size: 1.15em;
    font-weight: 600;
}

.modalPrice {
    margin-top: 3px;
    font-size: 1em;
}

.modalTxt {
    margin-top: 1em;
    font-size: 0.8em;
}

@media screen and (max-width: 768px) {
    .modalImg + .modalInfo {
        width: 100%;
        margin-left: 0;
        padding: 1em;
        border-left: none;
    }

    .modalInner {
        display: block;
    }

    .subTit img {
        margin: auto;
    }
}

/* add */
.top-concept h3 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.top-concept p {
    text-align: center;
}

@media screen and (max-width: 767px) {
    .top-concept p {
        text-align: left;
    }
}

.top-video video {
    width: 60%;
    margin: 0 auto;
    display: block;
}

@media screen and (max-width: 767px) {
    .top-video video {
        width: 100%;
    }
}

#access .btnBasic {
    margin: 40px auto 0 auto;
    display: block;
    text-align: center;
    width: 240px;
}

#detael_info .contentsInner {
    padding: 60px 0;
}

#loopslider {
    margin: 0 auto 40px auto;
    width: 100%;
    height: 240px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

#loopslider ul {
    height: 240px;
    float: left;
    display: inline;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
}

#loopslider ul li {
    width: 350px;
    height: 240px;
    float: left;
    display: inline;
    overflow: hidden;
}

#loopslider ul:after {
    content: ".";
    height: 0;
    clear: both;
    display: block;
    visibility: hidden;
}

#loopslider ul {
    display: inline-block;
    overflow: hidden;
}

#loopslider img {
    width: 100%;
    height: auto;
}





.top-news .btnBasic {
    margin: 0 auto;
    display: block;
    width: 240px;
    text-align: center;
}

.top-gallery .btnBasic {
    margin: 0 auto;
    display: block;
    width: 240px;
    text-align: center;
}

.top-sns {
    padding: 60px 0 0 0;
    max-width: 980px;
    margin: 50px auto 0;
    display: flex;
    justify-content: space-around;
}

.top-sns > * {
    width: 300px;
}

.top-sns h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 28px;
}

@media screen and (max-width: 767px) {
    .top-sns {
        padding: 60px 0;
        display: block;
    }

    .top-sns > * {
        margin: 0 auto;
    }

    .top-sns > *:first-of-type {
        margin-bottom: 40px;
    }
}

.mb80 {
    margin-bottom: 80px;
}

@media screen and (min-width: 768px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}

.gallery_content_sec {
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.gallery_content_sec_item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: 25%;
}

.gallery_content_sec_item img {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    display: block;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    padding: 4%;
}

@media screen and (max-width: 767px) {
    .gallery_content_sec_item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 100%;
        position: relative;
        overflow: hidden;
        padding-top: 50%;
    }

    .gallery_content_sec_item img {
        position: absolute;
        top: 0;
        left: 0;
        overflow: hidden;
        display: block;
        max-width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
        height: 100%;
        padding: 4%;
    }
}

.ttl {
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
    font-size: 2.4rem;
    line-height: 1.4;
    margin-bottom: 3rem;
    padding: 1rem 0 1.4rem 0;
    position: relative;
}

.ttl:after {
    border-bottom: solid 3px #000;
    bottom: -3px;
    content: " ";
    display: block;
    position: absolute;
    width: 25%;
}

@media screen and (max-width: 767px) {
    .ttl:after {
        width: 40%;
    }
}

.policy-wrap .inner {
    display: flex;
    justify-content: space-between;
}

.policy-wrap .inner > div {
    width: 40%;
}

.policy-wrap .inner > p {
    width: 55%;
}

@media screen and (max-width: 767px) {
    .policy-wrap .inner {
        display: block;
    }

    .policy-wrap .inner > div {
        width: 100%;
        margin-bottom: 20px;
    }

    .policy-wrap .inner > p {
        width: 100%;
    }

    .FoodList_txt .btnBasic {
        margin-right: auto;
        margin-left: auto;
    }
}

.FoodList_txt .btnBasic {
    position: relative;
    z-index: 999;
}

/*TOP予約カレンダー*/

.CMS-RESERVATION-CALENDAR {
    max-width: 960px;
    margin: 50px auto 40px;
    width: 90vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.cms_reservation__calendar {
    margin: auto;
}

.CSS.cms_reservation__calendar-options {
    width: 100%;
}

.CMS-RESERVATION-CALENDAR button {
    margin-top: 0px;
}

@media screen and (min-width: 768px) {
    .cms_reservation__calendar-date-list {
        width: 49% !important;
    }

    .cms_reservation__calendar-options {
        width: 300px !important;
    }
}

@media screen and (max-width: 767px) {
    .CMS-RESERVATION-CALENDAR {
        width: 100%;
        margin: 50px auto 40px;
        display: flex;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 374px) {
    .cms_reservation__calendar-date-list--cell {
        padding: 10px 1px !important;
    }

    .cms_reservation__calendar-date-list--date {
        font-size: 0.7em !important;
    }

    .js-resty-reservation-select-date {
        padding-left: 6px;
        padding-right: 6px;
    }
}

/* iPhone12用 */
@media only screen and (max-width: 450px) and (-webkit-device-pixel-ratio: 3) {
    .cms_reservation__calendar-date-list--cell {
        padding: 10px 2px !important;
    }

    .cms_reservation__calendar-date-list--date {
        font-size: 1em !important;
    }

    .js-resty-reservation-select-date {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* iPhone11用 */
@media only screen and (max-width: 380px) {
    .cms_reservation__calendar-date-list--cell {
        padding: 10px 1px !important;
    }

    .cms_reservation__calendar-date-list--date {
        font-size: 0.8em !important;
    }

    .js-resty-reservation-select-date {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.fade_t {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
    -webkit-transition: 1s 0.1s;
    transition: 1s 0.1s;
}

.swiper-button-prev {
    margin-top: 0;
    top: 50%;
}

.swiper-button-next {
    margin-top: 0;
    top: 50%;
}

@media screen and (max-width: 767px) {
    .swiper-button-prev {
        margin-top: 0;
        top: 40%;
    }

    .swiper-button-next {
        margin-top: 0;
        top: 40%;
    }
}

/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Noto+Serif+JP:wght@400;700&display=swap');

/************
 local_menu
****************/
.menubarList {
    font-size: 0.9em;
    line-height: 1;
    background-color: var(--sub_bg_color2);
    border: solid 1px var(--border_color2);
    border-top: none;
}

.menubarList ul {
    display: flex;
    justify-content: center;
    padding: 0 20px;
    text-align: center;
}

.menubarList ul li {
    position: relative;
    z-index: 1;
    display: flex;
    width: calc(100% / 4);
    text-align: center;
}

.menubarList ul li + li {
    border-right: solid 1px var(--border_color2);
}

.menubarList ul li:first-child {
    border-left: solid 1px var(--border_color2);
    border-right: solid 1px var(--border_color2);
}

.menubarList ul li > a {
    display: flex;
    flex-flow: column;
    width: 100%;
    padding: 1em 0.75em 0.75em;
    border: solid 1px #fff;
    color: var(--strong_txt_color);
}

.menubarList ul li.current a {
    background: #fff;
    color: var(--strong_txt_color);
}

.menubarList ul li span {
    display: inline-block;
    font-size: 0.75em;
    margin-bottom: 0.5em;
    color: var(--nav_current_color);
}

.menubarList ul li.current span {
    color: var(--strong_txt_color);
}

.menubarList ul li:after {
    content: '';
    position: absolute;
    top: 1px;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 2px;
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background: var(--sub_key_color);
}

.menubarList ul li:hover:after {
    opacity: 1;
}

.menubarList ul li:hover {
    color: var(--strong_txt_color);
}

.menubarList ul li.current:after {
    opacity: 1;
}

.menubarList ul li.current:before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
}

/**レイアウト**/

.wrapper:not(#topPage) .section .contentsInner {
    padding-top: 60px;
}

/* ------------------------------
　食べログメニュー
------------------------------ */



/******************
  retty用
**********************/
/* 共通 */


/******************
  retty用
**********************/

/******************
  takeout
**********************/
.menuCategoryBlock {
    margin-top: 4em;
}

.menuCategoryBlock:first-child {
    margin-top: 0;
}

.menuItemsList li {
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
}

.menuTitle,
.menuPrice {
    font-weight: 600;
    color: var(--strong_txt_color);
}

.menuTitle {
    font-size: 1.25em;
}

.menuPrice {
    font-size: 1em;
}

.menuDescription {
    width: 100%;
    margin-top: 1em;
    font-size: 0.9em;
}

.menuItemsList > li:first-child {
    border-top: 1px solid var(--border_color2);
    border-bottom: 1px solid var(--border_color2);
}

.menuContents .menuItemsList > li:first-child {
    padding-bottom: 40px;
}

.wrapper:not(#topPage) .menuItemsList > li {
    border-top: none;
}

.menuItemsList > li + li {
    border-bottom: 1px solid var(--border_color2);
    padding: 40px 0;
}

.FoodListWrap {
    max-width: 980px;
    margin: 0 auto;
}

.mapBox {
    margin-bottom: 3.75rem;
    /*  height: 600px;*/
    /*    height: 800px;*/
}

.gnavItem li::marker {
    display: none;
}

@media screen and (max-width: 767px) {

    .mapBox {
        /*        height: 800px;*/
    }

    .item {
        flex-direction: column;
    }

    .item > dt {
        margin-bottom: 10px;
        width: 60%;
        font-size: 14px;
    }

    .item dd {
        width: 100%;
    }

    .footerInfo > .detailInfoList > .item {
        flex-direction: row;
    }
}

.thanks_width {
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
}

/* インスタ連携用CSS */

.top_insta {
    padding: 60px 0;
}

.insta_wrap {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 20px;
}

.CMS-INSTAGRAM-LIST {
    display: flex;
    flex-wrap: wrap;
}

.CMS-INSTAGRAM-LIST a {
    display: inline-block;

    /* calc(100/横に並べたい枚数% - 左右の余白　*　余白の数) */

    /* ↓2枚並び */
    /* width: calc(50% - 10px * 1/2); */

    /* ↓3枚並び */
    width: calc(33.33333333333% - 10px * 2/3);

    /* ↓4枚並び */
    /* width: calc(25% - 10px * 3/4); */

    margin-right: 10px;
    margin-top: 10px;
}

/* nth-child(横並びの枚数) */

/* ↓2枚並びの時 */
/* .CMS-INSTAGRAM-LIST a:nth-child(2n) {
    margin-right: 0;
  }
  .CMS-INSTAGRAM-LIST a:nth-child(-n+2) {
    margin-right: 0;
  } */

/* ↓3枚並び */
.CMS-INSTAGRAM-LIST a:nth-child(3n) {
    margin-right: 0;
}

.CMS-INSTAGRAM-LIST a:nth-child(-n+3) {
    margin-top: 0;
}

/* ↓4枚並びの時 */
/* .CMS-INSTAGRAM-LIST a:nth-child(4n) {
    margin-right: 0;
  }
  .CMS-INSTAGRAM-LIST a:nth-child(-n+4) {
    margin-right: 0;
  } */

.CMS-INSTAGRAM-LIST a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.CMS-INSTAGRAM-LIST a:nth-of-type(7),
.CMS-INSTAGRAM-LIST a:nth-of-type(8),
.CMS-INSTAGRAM-LIST a:nth-of-type(9) {
    display: none;
}

/* インスタ連携用CSS */



.fixbtn {
    position: fixed;
    top: 50%;
    right: 0;
    width: 50px;
    z-index: 999999;
}

.fixbtn a {
    display: inline-block;
    width: 100%;
    padding: 15px 0;
    line-height: 50px;
    color: #fff;
    writing-mode: vertical-rl;
    background-color: #000;
}


@media screen and (max-width: 767px) {
    .fixbtn {
        top: initial;
        right: initial;
        left: 0;
        bottom: 0;
        width: 100%;
    }

    .fixbtn a {
        line-height: 1;
        writing-mode: initial;
        text-align: center;
        padding: 20px 0;
    }
}
