
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Parisienne&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&family=Parisienne&display=swap');

:root {
    --sub-color: #e7e6e0;
    --main-color: #220000;
    --mainfont:'Noto Serif JP', serif;
    /* --subfont:'EB Garamond', serif; */
}

.sp {
    display: none;
}

@media screen and (max-width:768px) {
    .sp {
        display: block;
    }
    .pc {
        display: none;
    }
    a[href^="tel:"] {
        text-decoration: underline;
    }
}

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


html {
    font-family: var(--mainfont);
    background: url(../img/bg.jpg) center center / 100% repeat;
    color: #562b08;
}


html.is-fixed {
    overflow: hidden;
}

main {
    overflow: hidden;
}
 
.inner {
    padding: 0 25px;
    height: 100%;
    max-width: calc(68.75rem + 50px);
    margin-inline:auto;
}

@media screen and (max-width:768px) {
    .inner {
        padding: 0 20px;
    }
}

img {
    display: inline-block;
    max-width: 100%;
}

a {
    transition: all 0.3s;
    color: #562b08;
}

a:hover {
    opacity: 0.8;
}

/*  ----------------------------------------------------------
btn
----------------------------------------------------------  */
.btn {
    display: block;
    width: 13.625rem;
    margin: 0 auto;
}
.btn.left {
    margin-left: 0;
}
@media screen and (max-width:768px) {
    .btn {
        margin: 0 auto;
    }
    .btn.left {
        margin: 0 auto;
    }
    .btn.left-sp {
        margin-left: 0;
    }

}


/*  ----------------------------------------------------------
title
----------------------------------------------------------  */
.title {
    text-align: center;
    font-size: 4.2rem;
    color: #542b14;
    font-family: "Parisienne", cursive;
    line-height: 1.05;
}
.title.wt {
    color: #fff;
}
.title span {
    display: block;
    font-size: 1.135rem;
    font-weight: bold;
    font-family: "Noto Serif JP", serif;
    letter-spacing: 0.15rem;
}
.title.insta {
    line-height: 1.45;
}

/*  ----------------------------------------------------------
header
----------------------------------------------------------  */
.header {
    position: absolute;
    width: 100%;
    height: 5rem;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: #fff;
}

.header__inner {
    height: 100%;
    max-width: 76.875rem;
    padding-inline: 3.125rem;
    display: flex;
    align-items: center;
}

.header__logo {
    position: absolute;
    max-width: 15.7rem;
    top: 1.8rem;
    left: 2.875rem;
}

.header__logo a {
    display: block;
}

.header__nav {
    margin-left: auto;
}

.header__hamburger {
    display: none;
}

.header__drawer {
    display: none;
}

@media screen and (max-width:768px) {
    .header {
        background: none;
        height: 5rem;
        z-index: 11;
    }
    .header__inner {
        padding: 0 20px 0 10px;
        max-width: inherit;
    }
    .header__nav.globalNav {
        display: none;
    }
    .header__logo {
        width: 25rem;
        margin: 0;
        top: 2.5rem;
        left: 0;
        right: 0;
        margin: 0 auto;
        left: 1.5rem;
        filter: grayscale(100%) brightness(0) invert(100%);  /* 白 */

    }
    .header__hamburger {
        position: relative;
        display: block;
        width: 2rem;
        height: 100%;
        margin-left: auto;
        z-index: 1;
    }
    .header__hamburger span {
        display: inline-block;
        width: 100%;
        height: 2px;
        position: absolute;
        background-color: white;
        transition: all 0.3s;
        box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
    }
    .header__hamburger span:nth-child(1) {
        top: 35%;
    }
    .header__hamburger span:nth-child(2) {
        top: 50%;
        
    }
    .header__hamburger span:nth-child(3) {
        top: 65%;
    }
    .header__hamburger.is-active span {
        background-color: black;
    }
    .header__hamburger.is-active span:nth-child(1) {
        top: 50%;
        transform: rotate(45deg);
    }
    .header__hamburger.is-active span:nth-child(2) {
        opacity: 0;
    }
    .header__hamburger.is-active span:nth-child(3) {
        top: 50%;
        transform: rotate(-45deg);
    }
}
@media screen and (max-width:640px) {
    .header__inner {
        padding: 0 20px 0 10px;
    }
    .header__logo {
        width: 12rem;
        margin: 0;
        top: 2.5rem;
        left: 1.5rem;
        filter: grayscale(100%) brightness(0) invert(100%);  /* 白 */

    }
}

/*  ----------------------------------------------------------
globalNav
----------------------------------------------------------  */

.globalNav {
    display: flex;
    align-items: center;
    gap: 2.125rem;
}

.globalNav ul {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.globalNav ul li {
    
}

.globalNav ul li a {
    position: relative;
    color: var(--sub-color);
    color: #000;
    font-size: 1rem;
    font-weight: bold;
    
    letter-spacing: 0.1em;
}

.globalNav ul li span {
    text-align: center;
    display: block;
    font-family: 500;
    font-size: 0.875rem;
    color: #693300;
    /* font-family: 'Lato', sans-serif; */
    text-transform: uppercase;
    padding-top: 0.5rem;
}

.globalNav ul li a::before {
    position: absolute;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    width: 0.625rem;
    height: 0.625rem;
    bottom: -1.5rem;
    opacity: 0;
    transition: all 0.3s;
    background-color: var(--sub-color);
}

.globalNav ul li a:hover::before {
    opacity: 1;
}

.globalNav__instagram {
    width: 1.5rem;
    filter: grayscale(100%) brightness(0);  /* 黒 */

}

/*  ----------------------------------------------------------
drawer
----------------------------------------------------------  */
.drawer__inner {
    min-height: 400px;
}
.drawer__nav ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.drawer__nav ul li a {
    display: block;
    text-align: center;
    font-size: 1.25rem;
}

@media screen and (max-width:768px) {
    .drawer {
        overflow-y: scroll;
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        background: url(../img/bg.jpg) center center / cover no-repeat;
        right: 0;
    }
    .drawer__inner {
        position: relative;
        width: 100%;
        height: 100%;
        min-height: 550px;
    }
    .drawer__nav {
        position: absolute;
        width: fit-content;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
    .drawer .globalNav ul {
        flex-direction: column;
        gap: 2.5rem;
    }
    .drawer .globalNav li {
        text-align: center;
    }
    .globalNav__instagram {
        filter: grayscale(100%) brightness(0);  /* 黒 */
        width: 1.9rem;
        margin: 2rem auto 0;
    }
}


/*  ----------------------------------------------------------
page-ttl
----------------------------------------------------------  */
.page-ttl {
    background: url(../img/mv2.jpg) center center / cover no-repeat;
    position: relative;
}

.page-ttl > div {
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25rem;
    padding-top: 5.5rem;
}

.page-ttl h2 {
    color: #fff;
    font-size: 2.25rem;
    font-weight: 500;
    
    line-height: 1;
}

/*  ----------------------------------------------------------

local menu

----------------------------------------------------------  */
ul.lcmenu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    margin-bottom: 4rem;
    gap: 1rem;
}

ul.lcmenu li {
    text-align: center;
}

ul.lcmenu li a {
    display: block;
    padding: 1.25rem 0 1.25rem 0;
    background: #999;
    white-space: nowrap;
    color: white;
}

ul.lcmenu li.current a {
    color: black;
    color: #fff;
    background: #af7222;
}

@media screen and (max-width: 400px) {
    ul.lcmenu {
        gap: 0.5rem;
    }
    ul.lcmenu li {
        width: 100%;
        margin-bottom: 5px;
    }

    ul.lcmenu li a {
        padding: 1.2rem 0 1.3rem 0;
    }

    ul.lcmenu {
        justify-content: center;
    }
}

/*  ----------------------------------------------------------
layout
----------------------------------------------------------  */
/* map */
.gmap iframe {
    width: 100%;
    height: 25rem;
}

.sub {
    /* background-color: #121212; */
}

.container {
    margin: 5rem auto 7rem auto;
    width: 53.5rem;
}

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

.wrap.reverse {
    flex-direction: row-reverse;
}

.wrap > figure {
    width: 35%;
}

.wrap > div {
    width: 60%;
}

@media screen and (max-width: 768px) {
    .container {
        margin: 6rem 3rem 8rem 3rem;
        width: auto;
    }

    .wrap {
        display: block;
    }

    .wrap > figure {
        width: 100%;
        margin-bottom: 2rem;
    }

    .wrap > div {
        width: 100%;
    }
}

/* margin */


.mb-80 {
    margin-bottom: 5rem !important;
}

/*  ----------------------------------------------------------
style
----------------------------------------------------------  */

/* article */
.article {
    padding-block: 6.25rem;
}

.article--gallery {
    padding-block: 0;
}

.article__inner.inner {
    /* max-width: 950px; */
}

/* heading */
.heading-1 {
    line-height: 1;
    margin-bottom: 4rem;
    font-size: 2.8rem;
    letter-spacing: 0.15em;
    font-weight: normal;
}

.heading-1 span {
    display: flex;
    flex-direction: column;
    /* font-family: var(--font-lora); */
    color: var(--sub-color);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

.heading-1 span::before {
    content: "";
    width: 28rem;
    height: 1px;
    background: var(--sub-color);
    margin: 1.2rem 0;
}

@media screen and (max-width: 768px) {
    .heading-1 {
        display: flex;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }
}

/* more */
.more {
    text-align: center;
    line-height: 1;
    display: block;
    color: #fff;
    width: 22rem;
    padding: 1.8rem 0 1.9rem 0;
    /* font-family: var(--font-lora); */
    letter-spacing: 0.1em;
    border: solid 1px #fff;
    position: relative;
}

.more::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 1.4rem solid transparent;
    border-top: 1.4rem solid transparent;
    border-bottom: 1.4rem solid var(--sub-color);
    position: absolute;
    right: 0.4rem;
    bottom: 0.4rem;
}

.more:hover {
    opacity: 1;
    background: #fff;
    color: #000;
}

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

/* ttl */
.ttl {
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
    font-size: 1.5rem;
    margin-bottom: 1.875rem;
    padding: 1rem 0 1.5rem 0;
    position: relative;
    font-weight: bold;
    line-height: 1.25;
}

.ttl.wt {
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
}

.ttl:after {
    border-bottom: solid 4px var(--sub-color);
    bottom: -4px;
    content: " ";
    display: block;
    position: absolute;
    width: 25%;
}

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

/* p */
.sub p {
    font-size: 1rem;
    line-height: 1.9;
}

/* detail */
dl.detail {
	display: flex;
	flex-wrap: wrap;
	/* border-top: solid 1px var(--sub-color); */
	/* border-bottom: solid 1px var(--sub-color); */
    margin-top: 4rem;
}
dl.detail dt {
	font-weight: bold;
	padding: 1.5rem;
	width: 30%;
	white-space: nowrap;
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: flex-start;
    line-height: 1.5;
}
dl.detail dd {
	padding: 1.5rem;
	width: 70%;
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
	/* border-bottom: solid 1px var(--sub-color); */
    line-height: 1.5;
}
dl.detail dt:last-of-type,
dl.detail dd:last-of-type {
	border-bottom: none;
}
@media screen and (max-width: 768px) {
	dl.detail {
		display: block;
		border-top: none;
	}
	dl.detail dt {
		font-weight: bold;
		padding: 1.2rem;
		width: 100%;
		border-top: solid 1px #91a9c1;
        border-bottom: 0;
	}
	dl.detail dd {
		padding: 1.5rem;
		width: 100%;
		border-bottom: none;
	}
}


/*  ----------------------------------------------------------
gallery
----------------------------------------------------------  */
.gallery-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    justify-content: center;
    width: 100%;
    margin: 4rem auto;
    max-width: 64rem;
}

.gallery-list li {
    list-style: none;
    margin: 0 1rem 2rem 1rem;
}

.gallery-list img {
    border-radius: 50%;
    height: 11vw;
    width: 11vw;
    object-fit: cover;
}

.gallery-list span {
    display: block;
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 1.2rem 0 0 0;
    text-align: center;
    width: 14vw;
}

.object-fit-img {
    object-fit: contain;
    font-family: 'object-fit: contain;'
}

@media screen and (max-width: 768px) {
    .gallery-list {
        margin: 4rem auto;
        width: 95%;
    }

    .gallery-list li {
        margin: 0 .5rem 1.5rem .5rem;
    }

    .gallery-list img {
        width: 17vw;
        height: 17vw;
    }

    .gallery-list span {
        font-size: 1rem;
        line-height: 1.6;
        margin: 1rem auto 0 auto;
        width: 20vw;
    }
}


/*  ----------------------------------------------------------
footer
----------------------------------------------------------  */

.footer {
    background: var(--sub-color);
    background-color: #f0f0ed;
    /* color: #fff; */
    padding-top: 2.5rem;
    padding-bottom: 1rem;
}

.footer__inner.inner {
    max-width: 1110px;
}

.footer__content {
    max-width: 33.5625rem;
    padding-bottom: 1.375rem;
}

.footer__logo {
    max-width: 22.2rem;
    margin-inline: auto;
    margin-top: 7.5rem;
    margin-bottom: 8rem;
}

.footer__nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__nav ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer__nav li {
    position: relative;
}

.footer__nav li a {
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    letter-spacing: 0.1em;
    transition: all 0.3s;
}

.footer__nav li a:hover {
    opacity: 0.5;
}

.footer__instagram {
    margin-left: 3rem;
    width: 1.5rem;
    filter: grayscale(100%) brightness(0);  /* 黒 */

}

.footer__address {
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    line-height: calc(28/16);
    letter-spacing: 0.1em;
    margin-top: 0.875rem;
}

.footer__contact {
    text-align: center;
    margin-top: 0.5rem;
}

.footer__text {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.1em;
}

.footer__tel {
    font-size: 2.25rem;
    
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

.footer__tel img {
    width: 0.75rem;
    vertical-align: middle;
}

.footer__copy {
    text-align: center;
    
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-top: 2rem;

    color: #000;
}

@media screen and (max-width:768px) {
    .footer {
        padding-top: 1rem;
        padding-bottom: 10rem;
    }

    /* .footer__inner.inner {
        display: block;
    } */

    .footer__logo {
        /* width: 12rem;
        margin: 0 auto;
        margin-top: 2rem; */
    }

    .footer__nav {
        /* flex-direction: column;
        max-width: 100%;
        margin-inline: auto; */
        margin-top: 2.5rem;
    }

    .footer__nav ul {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 2rem;
    }

    .footer__instagram {
        /* margin: 0 auto;
        margin-top: 2rem;
        width: 2.5rem; */
    }

    .footer__contact {
        text-align: center;
    }

    .footer__copy {
        margin-top: 5rem;
    }
}
@media screen and (max-width:640px) {
    .footer {
        padding-top: 1rem;
        padding-bottom: 7rem;
    }
    .footer__logo {
        width: 15rem;
        margin: 0 auto;
        margin-top: 5rem;
    }
    .footer__nav {
        flex-direction: column;
        max-width: 20.625rem;
        margin-inline: auto;
        margin-top: 2.5rem;
    }
    .footer__instagram {
        margin: 0 auto;
        margin-top: 2rem;
        width: 2.5rem;
    }
}

/*  ----------------------------------------------------------
float
----------------------------------------------------------  */

.float {
    width: 4.5rem;
    height: 20.375rem;
    position: fixed;
    top: 35%;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    background-color: #220000;
    color: #fff;
        
    font-size: 1.25rem;
}
@media screen and (min-width:769px) {
.float {
    -ms-writing-mode: tb-rl;
writing-mode: vertical-rl;
text-orientation: sideways;
    color: #fff;
    display: flex;
}
.float a {
    position: relative;
    right: 1.5rem;
    top: 3rem;
}
    .float img{
        position: relative;
        width: 50%;
        transform: rotate( 90deg );
        right: 0.75rem;
        top: 6.25rem;
    }
}
@media screen and (max-width:768px) {
    .float {
        width: 100%;
        height: 50px;
        bottom: 0;
        right: 0;
        transform: translate(0,0);
        top: initial;
        box-shadow: 0 0 5px black;
    }
    .float a {
        display: block;
        height: 100%;
        width: 100%;
        text-align: center;
        color: white;
        background-color: #220000;
        line-height: 50px;
    }
    .float img{
        display: none;
    }
}

/*  ----------------------------------------------------------

page-top

----------------------------------------------------------  */
#page-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 999;
}
#page-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.5rem;
    height: 3.5rem;
    padding-left: .1rem;
    border-radius: 50%;
    background: #af7222;
    color: #ffffff;
    font-size: 1.4rem;
    line-height: 1;
}
@media screen and (max-width: 768px) {
    #page-top {
        bottom: 7.4rem;
        right: 0.7rem;
    }
}
@media screen and (max-width: 640px) {
    #page-top {
        bottom: 5rem;
    }
    #page-top a {
        width: 3rem;
        height: 3rem;
    }
}

/*  ----------------------------------------------------------

fade

----------------------------------------------------------  */
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes fadeInUp {
    0% {
        opacity: 0;
        -moz-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@-ms-keyframes fadeInUp {
    0% {
        opacity: 0;
        -ms-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    -webkit-animation: fadeInUp 0.6s ease;
    -moz-animation: fadeInUp 0.6s ease;
    -ms-animation: fadeInUp 0.6s ease;
    animation: fadeInUp 0.6s ease;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    animation-fill-mode: both
}

.fade {
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
    -o-animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.35s;
    -moz-animation-delay: 0.35s;
    -webkit-animation-delay: 0.35s;
    -o-animation-delay: 0.35s;
}

.delay-3 {
    animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
    -o-animation-delay: 0.5s;
}

.delay-4 {
    animation-delay: 0.65s;
    -moz-animation-delay: 0.65s;
    -webkit-animation-delay: 0.65s;
    -o-animation-delay: 0.65s;
}

.delay-5 {
    animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    -webkit-animation-delay: 0.8s;
    -o-animation-delay: 0.8s;
}

/* article */
.CMS-ARTICLE-INDEX {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2.375rem;
}

.article .CMS-ARTICLE-INDEX {
    padding-bottom: 8rem;
}

.CMS-ARTICLE-LINK-CONTENT {
    display: flex;
    height: 100%;
    flex-direction: column;
}

.CMS-ARTICLE-LINK-CONTENT img {
    aspect-ratio: 340/260;
    width: 100%;
    object-fit: cover;
}

.CMS-ARTICLE-LINK {
    font-size: 1.5rem;
    font-weight: bold;
    flex-grow: 1;
    color: var(--sub-color);
    line-height: calc(36/24);
    letter-spacing: 0.1em;
    font-feature-settings: "palt";
    margin-top: 1rem;
}

.CMS-ARTICLE-CONTENT {
    font-size: 1rem;
    line-height: calc(30/16);
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

.article .CMS-ARTICLE-MORE-READ {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background: var(--sub-color);
    border: none;
    text-align: center;
    padding: 1.5rem 0 1.7rem 0;
    font-size: 1.4rem;
    color: #fff;
    text-align: center;
    max-width: 28rem;
    width: 100%;
    display: block;
    transition: all .3s;
}

.CMS-ARTICLE-MORE-READ:hover {
    cursor: pointer;
    opacity: 0.6;
}

.article .CMS-ARTICLE-CONTENT * {
    margin-bottom: 2rem;
}

@media screen and (max-width:768px) {
    .CMS-ARTICLE-INDEX {
        grid-template-columns: repeat(1,1fr);
        gap:2rem;
    }
    .CMS-ARTICLE-LINK {
        text-align: justify;
        word-break: break-all;
        font-size: 1.25rem;
    }
    .CMS-ARTICLE-CONTENT {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/*  ----------------------------------------------------------

contact

----------------------------------------------------------  */
.CMS-FORM-GROUP label:first-child {
	font-size: 120%;
}

.CMS-FORM-GROUP:last-child {
	margin-bottom: 0px;
}

.contact {
	padding-bottom: 140px;
}

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

.caution {
	font-size: 12px;
	line-height: 1.5;
	text-align: center;
}

.contact-privacy {
	background-color: white;
	border: 1px solid gray;
	padding: 20px;
	height: 300px;
	overflow-y: scroll;
	overflow-x: hidden;
}

.contact-privacy p {
	margin: 0;
}

.contact-privacy p span {
	display: block;
	text-align: center;
	font-size: 120%;
}

.his {
	background: rgba(200, 0, 0, 1);
	border-radius: 2px;
	line-height: 1;
	color: #fff;
	font-size: 1.2rem;
	padding: 0.4rem 1rem 0.3rem 1rem;
	margin-left: 1rem;
	vertical-align: 0.3rem;
}

@media screen and (min-width: 769px) {
	form {
		max-width: 1000px;
		margin: 0 auto;
	}

	form div {
		margin-bottom: 50px;
	}

	form div label {
		display: block;
		font-weight: bold;
		margin-bottom: 10px;
	}

	form select {
		padding: 20px;
		background: #fff;
		border: #bbb solid 1px;
		border-radius: 3px;
	}

	form input,
	form textarea {
		max-width: 1000px;
		width: 100%;
		padding: 10px 20px;
		background: #fff;
		border: #bbbbbb solid 1px;
		border-radius: 4px;
		font-size: 1.5em;
		box-sizing: border-box;
	}

	form input[type="submit"] {
		border: 0px;
		width: 24rem;
		background: var(--sub-color);
		color: black;
		font-size: 2rem;
		font-weight: 600;
		padding: 2rem 0;
		margin: 0 auto;
		display: block;
	}

	.CMS-FORM-RADIO label {
		display: inline-block;
	}

	form input[type="radio"] {
		max-width: none !important;
		width: 30px !important;
		vertical-align: -1px;
	}
}

@media screen and (max-width: 768px) {
	form {
		padding: 0;
	}

	form div {
		margin-bottom: 50px;
	}

	form div label {
		display: block;
		font-weight: bold;
		margin-bottom: 10px;
	}

	form select {
		padding: 20px;
		background: #fff;
		border: #bbb solid 1px;
		border-radius: 3px;
	}

	form input,
	form textarea {
		width: 100%;
		padding: 10px 20px;
		background: #fff;
		border: #bbbbbb solid 1px;
		border-radius: 4px;
		font-size: 1.5em;
		box-sizing: border-box;
	}

	form input[type="submit"] {
		border: 0px;
		width: 60%;
		background: #746767;
		color: #fff;
		font-size: 2rem;
		font-weight: bold;
		padding: 2rem 0;
		margin: 0 auto;
		display: block;
	}

	.CMS-FORM-RADIO label {
		display: inline-block;
	}

	form input[type="radio"] {
		max-width: none !important;
		width: 30px !important;
		vertical-align: -1px;
	}
}

.CMS-FORM-EMAIL-LABEL span,
.CMS-FORM-INPUT-LABEL span {
    display: inline-block;
    margin-left: 0.5rem;
    color: red;
}

.CMS-FORM-TEXTAREA-LABEL span {
    color: red;
    display: inline-block;
    margin-left: 0.5rem;
}

.privacy {
	width: auto;
	margin: 0 auto 5rem;
	border: 2px solid #000000;
	padding: 20px;
	height: 500px;
	overflow: auto;
    background-color: white;
    color: black;
}

.privacy span {
	font-weight: bold;
}

.privacy span {
	font-weight: bold;
}

.privacy p {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.privacy_notes {
    text-align: center;
	padding: 30px 0;
}

.contact-text {
    margin-bottom: 50px;
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
}

.thanx__btn {
    text-align: center;
}

@media screen and (max-width: 768px) {
    .privacy {
        width: auto;
        margin: 0 auto 5rem;
        border: 2px solid #000000;
        padding: 20px;
        height: 500px;
        overflow: auto;
    }

	.privacy {
		width: 100%;
	}

    .privacy_notes {
        text-align: left;
    }
}

/* メニューページ */
.ttl_min{
    font-size: 1rem;
}

dl.menu-list {
    display: flex;
    flex-wrap: wrap;
}

.mb20 {
    margin-bottom: 2rem!important;
}

dl.menu-list dt {
    padding: 1.2rem 1.5rem;
    width: 65%;
    font-weight: bold;
    font-size: 1.3rem;
}

dl.menu-list dd {
    padding: 1.2rem 1.5rem 0 1.2rem;
    text-align: right;
    width: 35%;
    font-weight: bold;
}

dl.menu-list dt:first-child, dl.menu-list dt:first-child + dd {
    border-top: solid 1px rgba(0, 0, 0, 0.2);
}

dl.menu-list dt:nth-of-type(odd), dl.menu-list dt:nth-of-type(odd) + dd {
    background: rgba(255,255,255,0.1);
}

dl.menu-list dt, dl.menu-list dd, dl.menu-list dt.var, dl.menu-list dt.var + dd {
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
}

.dt_min{
    font-weight: normal;
    font-size: 1rem;
    line-height: 1.5;
   margin-top: 1.2rem;
}

.subttl {
    font-size: 1.3rem;
}

.subttl span {
    color: #693300;
}

.mb10 {
    margin-bottom: 1rem!important;
}

@media screen and (max-width: 768px) {
    dl.menu-list dt{
        font-size: 1rem;
    }
    .ttl_min{
        font-size: 0.8rem;
    }
    .dt_min{
        font-size: 0.8rem;
    }
}


/*  ----------------------------------------------------------

fixed btn

----------------------------------------------------------  */
.fixed-btn {
	position: fixed;
	top: 46%;
	right: 0;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	z-index: 999;
	width: 4.5rem;
}
.fixed-btn li:not(:last-child) {
	margin-bottom: 1.2rem;
}
.fixed-btn img {
  width: 100%;
  height: auto;
}
@media screen and (max-height: 860px) {
    .fixed-btn {
        width: 3.5rem;
    }
    .fixed-btn li:not(:last-child) {
        margin-bottom: 0.8rem;
    }
}
@media screen and (max-height: 700px) {
    .fixed-btn {
        width: 3rem;
    }
    .fixed-btn li:not(:last-child) {
        margin-bottom: 0.5rem;
    }
}
@media screen and (max-height: 610px) {
    .fixed-btn {
        width: 2.3rem;
    }
    .fixed-btn li:not(:last-child) {
        margin-bottom: 0.5rem;
    }
}
@media screen and (max-width: 768px) {
	.fixed-btn {
		top: auto;
		right: auto;
		bottom: 0;
		transform: none;
		-webkit-transform: none;
		width: 100%;
		display: flex;
	}
	.fixed-btn li {
		width: 50%;
        margin-top: 0;
        margin-bottom: 0 !important;
	}
	.fixed-btn li:not(:last-child) {
        border-right: 0.08rem solid #fff;
    }
	.fixed-btn a {
		width: 100%;
		padding: 0;
		height: 7rem;
		display: flex;
		align-items: center;
		justify-content: center;
		text-decoration: none !important;
        /* flex-direction: column; */
        gap: 1rem;
		line-height: 1;
        letter-spacing: 0;
        text-align: left;
	}
    .fixed-btn a.pc {
        display: none;
    }
	/* icon */
	.fixed-btn li img {
		width: 3.0rem;
		height: 3.0rem;
		/* margin-right: 1rem; */
	}	
	/* txt */
	.fixed-btn a > span {
		display: flex;
		flex-direction: column;
	}
	.fixed-btn a > span > span:nth-child(1) {
		margin-left: 0;
		margin-bottom: 0.6rem;
		font-size: 1.5rem;
	}
	.fixed-btn a > span > span:nth-child(2) {
		/* font-weight: bold; */
		font-size: 1.8rem;
        text-decoration: underline;
	}		
	.fixed-btn li.tel {
		margin-bottom: 0;
	}	
	.fixed-btn .tel a > span > span:nth-child(2) {
		font-size: 2.0rem;
	}	
	.fixed-btn a {
		background: #af7222;
		color: #fff;
	}	
}
@media screen and (max-width: 640px) {
 	.fixed-btn a {
		width: 100%;
		padding: 0;
		height: 4.5rem;
		display: flex;
		align-items: center;
		justify-content: center;
		text-decoration: none !important;
        /* flex-direction: column; */
        gap: 0.7rem;
		line-height: 1;
        letter-spacing: 0;
        text-align: left;
	}
 	.fixed-btn li img {
		width: 1.6rem;
		height: 1.6rem;
	}	
	.fixed-btn a > span > span:nth-child(1) {
		margin-bottom: 0.3rem;
		font-size: 1rem;
	}
	.fixed-btn a > span > span:nth-child(2) {
		font-size: 1.05rem;
	}		
	.fixed-btn .tel a > span > span:nth-child(2) {
		font-size: 1.25rem;
	}	
 
}




/*  ----------------------------------------------------------

Policy

----------------------------------------------------------  */
.ttl3 {
	border-bottom: solid 1px rgba(0,0,0,0.2);
	font-size: 1.5rem;
    font-weight: bold;
	line-height: 1.4;
	margin-bottom: 3rem;
	padding: 1rem 0 1.4rem 0;
	position: relative;
}
.ttl3:after {
	border-bottom: solid 5px #af7222;
	bottom: -5px;
	content: " ";
	display: block;
	position: absolute;
	width: 25%;
}
@media screen and (max-width: 768px) {
	.ttl3:after {
		width: 40%;
	}	
}

.policy-inner {
	display: flex;
	justify-content: space-between;
	margin-bottom: 6rem;
}
.policy-inner > div:first-of-type {
	width: 35%;
}
.policy-inner > div:last-of-type {
	width: 60%;
}
.policy-inner img {
    width: 100%;
    height: auto;
}
@media screen and (max-width: 768px) {
	.policy-inner {
		display: block;
	}
	.policy-inner > div:first-of-type {
		width: 100%;
		margin-bottom: 2rem;
	}
	.policy-inner > div:last-of-type {
		width: 100%;
	}
}







/* ------------------------------
pc-menu
------------------------------ */

@media screen and (min-width: 769px) {

/* ------------------------------
rstdtl-menu-lst
------------------------------ */
    .pttl {
        padding: 60px;
        text-align: center;
    }

    .pttl img {
        height: 36px;
        width: auto;
    }

    .rstdtl-menu-lst {
        max-width: 980px;
        margin: 0 auto 100px auto;
    }
    .rstdtl-menu-lst:last-of-type {
        margin-bottom: 0;
    }


/* ------------------------------
rstdtl-menu-lst
------------------------------ */
    .pttl {
        padding: 60px;
        text-align: center;
    }

    .pttl img {
        height: 36px;
        width: auto;
    }

    .rstdtl-menu-lst {
        margin: 60px auto 80px auto;
        max-width: 980px;
    }



/* ------------------------------
menu new
------------------------------ */
    .rstdtl-menu-lst__heading {
        margin-top: 50px;
        margin-bottom: 20px;
        font-size: 1.5rem;
        font-weight: bold;
    }

    .rstdtl-menu-lst__contents {
        display: table;
        padding: 0 10px;
        border-bottom: 1px dotted #333;
        width: 100%;
        box-sizing: border-box
    }

    .rstdtl-menu-lst__contents:last-of-type {
        border-bottom: none
    }


    .rstdtl-menu-lst__info {
        display: table-cell;
        padding: 10px 0;
        vertical-align: top
    }

    .rstdtl-menu-lst__info-inner {
        display: table;
        width: 100%
    }

    .rstdtl-menu-lst__menu-title {
        display: table-cell;
        /* color: #111; */
        font-weight: bold;
        font-size: 1.5rem
    }

    .rstdtl-menu-lst__price {
        display: table-cell;
        font-weight: bold;
        text-align: right;
        width: 9rem;
        font-size: 1.8rem
    }


    .rstdtl-menu-lst__desc {
        font-size: 15px;
        padding-bottom: 10px;
    }

    .rstdtl-menu-lst__desc p {
        font-size: 20px;
        padding: 12px 10px;
        line-height: 1.6;
        background: url('https://tblg.k-img.com/images/line/line_dot.gif?1547477344') repeat-x 0 100%
    }

    .rstdtl-menu-lst__img {
        display: table-cell;
        padding: 20px 15px 20px 0;
        width: 120px;
        text-align: center
    }


/* ------------------------------
course menu pc
------------------------------ */

    .course-list {
        margin: 20px 0 30px
    }

    .course-list__heading {
        display: block;
        position: relative
    }

    .course-list__hotpepper-logo {
        display: block;
        position: absolute;
        top: 3.2rem;
        right: 0.5rem
    }

    .course-list__heading-tax {
        position: absolute;
        right: 0;
        color: #949499;
        top: 2.8rem;
        font-size: 1.1rem;
        -webkit-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        transform: translate(0, -50%)
    }

    .course-list__items {
        margin: auto;
        width: 95%;
    }

    .course-list__tax-notice {
        margin-top: 5px;
        color: #949499;
        font-size: 1rem
    }

    .course-seatonly {
        padding: 12px 15px;
        background-color: #faf8f5;
        margin-bottom: 1.5rem;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        justify-content: space-between;
        -webkit-box-align: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center
    }

    .course-seatonly__title {
        /* color: #13131e; */
        font-weight: bold;
        font-size: 1.4rem
    }

    .course-seatonly__btn {
        width: 10rem
    }



    .rstdtl-course-list {
        display: table;
        position: relative;
        z-index: 1;
        border-top: 1px solid #e0dccc;
        border-bottom: 1px solid #e0dccc;
        width: 100%
    }

    .rstdtl-course-list + .rstdtl-course-list {
        border-top: none
    }

    .rstdtl-course-list__target {
        color: inherit;
        z-index: 1
    }

    .rstdtl-course-list__target:hover {
        color: inherit;
        text-decoration: none
    }

    .rstdtl-course-list.rstdtl-course-list--hotpepper:hover {
        cursor: default
    }

    .rstdtl-course-list__data {
        display: table-cell;
        position: relative;
        padding: 20px 0;
        /* width: 100%; */
        word-break: break-all;
        vertical-align: top
    }

    .rstdtl-course-list__tieup-mc ~ .rstdtl-course-list__img {
        padding-top: 6.5rem
    }

    .rstdtl-course-list__tieup-mc ~ .rstdtl-course-list__data {
        padding-top: 6.5rem
    }

    .rstdtl-course-list__data-header {
        display: table;
        width: 100%
    }

    .rstdtl-course-list__img + .rstdtl-course-list__data .rstdtl-course-list__data-header {
        min-height: 72px
    }

    .rstdtl-course-list__course-title {
        display: table-cell;
        word-break: break-all;
    }

    .rstdtl-course-list__course-title-text {
        margin-bottom: 0.5rem;
        /* color: #111; */
        font-weight: bold;
        line-height: 1.6;
        font-size: 1.2rem
    }

    .rstdtl-course-list__course-title-text .rstdtl-course-list__target:hover {
        color: #ff9600;
        text-decoration: underline
    }

    .rstdtl-course-list.rstdtl-course-list--hotpepper .rstdtl-course-list__course-title-text {
        /* color: #13131e */
    }

    .rstdtl-course-list__dish-count.rstdtl-course-list__dish-count {
        border: 1px solid #e0dccc;
        box-sizing: border-box;
        /* color: #463f2d; */
        background-color: #fff;
        margin-left: 0.5rem;
        padding: 0.1rem 0.3rem;
        font-size: 0.9rem
    }

    .rstdtl-course-list__price-wrap {
        display: table-cell;
        white-space: nowrap;
        vertical-align: top;
        padding-right: 0.8rem;
        width: 100%;
        display: inline-block;
    }

    .rstdtl-course-list__price-discount {
        display: inline-block
    }

    .rstdtl-course-list__price-before {
        /* color: #13131e; */
        text-align: left;
        margin-right: 0.5rem;
        margin-bottom: -0.2rem;
        font-size: 1.1rem
    }

    .rstdtl-course-list__price-hotpepper-discount {
        display: inline-block;
        position: relative;
        margin-bottom: 7px;
        border: solid 1px #333;
        border-radius: 2px;
        color: #949499;
        font-weight: bold;
        line-height: 1;
        background-color: #fff;
        padding: 0.4rem 0.5rem 0.3rem;
        font-size: 1rem
    }

    .rstdtl-course-list__price-hotpepper-discount::before,
    .rstdtl-course-list__price-hotpepper-discount::after {
        display: block;
        position: absolute;
        border: solid transparent;
        width: 0;
        height: 0;
        content: ''
    }

    .rstdtl-course-list__price-hotpepper-discount::before {
        bottom: -7px;
        border-width: 6px 6px 0;
        border-top-color: #333;
        right: 3rem
    }

    .rstdtl-course-list__price-hotpepper-discount::after {
        bottom: -5px;
        border-width: 5px 5px 0;
        border-top-color: #fff;
        right: 3.1rem
    }

    .rstdtl-course-list__price-num {
        /* color: #000; */
        font-weight: bold;
        font-size: 1rem
    }

    .rstdtl-course-list.rstdtl-course-list--hotpepper .rstdtl-course-list__price-num {
        display: block
    }

    .rstdtl-course-list__price-num > em {
        margin-right: 2px;
        /* font-family: Arial, sans-serif; */
        font-size: 1.8rem
    }

    .rstdtl-course-list__price-num-tax {
        font-weight: normal;
        font-size: 0.6rem;
    }

    .rstdtl-course-list__data-body {
        display: block;
        width: 100%;
        line-height: 1;
        padding-top: 0.5rem
    }

    .rstdtl-course-list__data-body:before,
    .rstdtl-course-list__data-body:after {
        display: block;
        overflow: hidden;
        content: ""
    }

    .rstdtl-course-list__data-body:after {
        clear: both
    }

    .rstdtl-course-list__inner {
      /* display: table;
      width: 100%; */
      /* justify-content: space-between; */
    }

    .rstdtl-course-list__img {
        display: table-cell;
        padding: 20px 15px 20px 0;
        width: 150px
    }

    .rstdtl-course-list__img .rstdtl-course-list__target:hover {
        opacity: 0.8
    }

    .rstdtl-course-list.rstdtl-course-list--hotpepper .rstdtl-course-list__img:hover {
        opacity: 1
    }

    .rstdtl-course-list__subinfo {
        display: table;
        position: relative;
        float: left;
        padding-top: 0.5rem
    }


    .rstdtl-course-list__desc {
        /* color: #fff; */
        line-height: 1.6;
        font-size: 1.2rem;
    }

    .rstdtl-course-list__data-footer {
        float: right
    }

    .rstdtl-course-list__label {
        margin-left: 5px
    }

    .rstdtl-course-list__label.rstdtl-course-list__label {
        background-color: #32a000;
        padding: 0.2rem 0.4rem;
        line-height: 1.1rem;
        font-size: 1.1rem;
		color: #fff;
    }

    .rstdtl-course-list__hotpepper-target::before {
        color: #999
    }

    .rstdtl-course-list__course-rule {
        display: table-cell;
        white-space: nowrap;
        vertical-align: bottom;
        padding: 0 0 0.3rem 1rem
    }

    .rstdtl-course-list__course-rule > dt,
    .rstdtl-course-list__course-rule > dd {
        display: inline-block
    }

    .rstdtl-course-list__course-rule > dd {
        margin-right: 0.5rem
    }

    .rstdtl-course-list__course-rule-title::before {
        display: inline-block;
        color: #bcb08a;
        vertical-align: -0.1rem
    }

    .rstdtl-course-list__course-rule-title.rstdtl-course-list__course-rule-title--member::before {
        /* font-family: "Tabelog Glyph"; */
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        -webkit-font-smoothing: antialiased;
        text-transform: none;
        speak: none;
        /* content: "\f663" */
        content: "※"
    }

    .rstdtl-course-list__course-rule-title.rstdtl-course-list__course-rule-title--time::before {
        /* font-family: "Tabelog Glyph"; */
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        -webkit-font-smoothing: antialiased;
        text-transform: none;
        speak: none;
        /* content: "\f677" */
		content: "※"
    }

    .rstdtl-course-list__course-rule-title > i {
        display: none
    }

    .rstdtl-course-list__action-btn {
        display: table-cell;
        width: 100px;
        text-align: right;

        padding-left: 1.5rem;
        color: #fff;
    }



    .rstdtl-course-list__action-btn-target {
        display: block;
        float: right;
        clear: right;
        cursor: pointer;
        white-space: nowrap;
        vertical-align: middle;
        width: 10rem;
        /* color: #000; */
    }

    .rstdtl-course-list__action-btn-target + .rstdtl-course-list__action-btn-target {
        margin-top: 0.6rem
    }

    .rstdtl-course-list__reserve-notice + .rstdtl-course-list__action-btn-target {
        margin-top: 0.6rem
    }

    .rstdtl-course-list__coupon {
        display: inline-block;
        float: right;
        margin-top: 0.5rem
    }

    .rstdtl-course-list__coupon-btn {
        float: right
    }

    .rstdtl-course-list__coupon-contents {
        width: auto;
        text-align: left;
        padding-top: 0.7rem
    }

    .rstdtl-course-rdimg {
        position: absolute;
        bottom: 0;
        left: 0
    }

    .rstdtl-course-list__tieup-mc {
        display: table-row;
        position: absolute;
        left: 0;
        z-index: 5;
        border-radius: 6px;
        vertical-align: middle;
        /* background-color: #221815; */
        top: 1.5rem
    }

    .rstdtl-course-list__tieup-mc:hover {
        opacity: 0.8
    }

    .rstdtl-course-list__tieup-mc-target {
        display: block;
        box-sizing: border-box;
        padding: 0.6rem 1.2rem 0.6rem 1.5rem
    }

    .rstdtl-course-list__tieup-mc-target::after {
        color: #fff;
        vertical-align: middle
    }

    .rstdtl-course-list__tieup-mc-target:hover {
        text-decoration: none
    }

    .rstdtl-course-list__tieup-mc-logo {
        display: inline-block;
        width: 123px;
        height: 22px;
        background: url('https://tblg.k-img.com/images/shared/tieup/mastercard_pricelessjapan/tieup_logo_mastercard.png?1547477503') no-repeat 0 0;
        background-size: 123px 22px;
        vertical-align: bottom
    }

    .rstdtl-course-list__tieup-mc-logo > i {
        display: none
    }

    .rstdtl-course-list__tieup-mc-text {
        display: inline-block;
        color: #fff;
        margin-left: 1rem;
        padding-bottom: 0.2rem;
        font-size: 1.1rem
    }

    .rstdtl-course-list__tieup-mc-text > em {
        color: #ff9600;
        font-weight: bold;
        margin-right: 0.7rem;
        font-size: 1.3rem
    }


}
.course-dtl__course-title {
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 1em;
}
.course-dtl__img {
  margin-bottom: 1em;
  max-width: 500px;
}

.course-dtl__contents table {
  width: 100%;
}
.course-dtl__contents th {
  width: 100%;
}
.c-table.c-table--form {
  border-collapse: separate;
  border-top: 1px solid #d6ceb4;
  color: #000;
}
.c-table tr {
    vertical-align: top;
}
.c-table tbody tr th {
  border-bottom: 1px solid #d6ceb4;
  color: #13131e;
  font-weight: bold;
  vertical-align: inherit;
  width: 5em;
  line-height: 1.5;
  padding: 1rem;
}
.c-table.c-table--form tbody tr th {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #d6ceb4;
  background-color: #faf8f5;
}
.c-table tbody tr td {
  border-bottom: 1px solid #d6ceb4;
  vertical-align: inherit;
  padding: .6rem;
}
.course-dtl__data-table tbody tr td {
  padding: 1.2rem 1.5rem;
}
.course-dtl__price-num {
  color: #e64c30;
  font-size: 1rem;
  font-weight: bold;
}
.course-dtl__price-num>em {
  margin-right: 2px;
  font-size: 1.8rem;
}

.rstdtl-course-list__img-target {
    pointer-events: none;
}

.course-dtl__info {
    padding-bottom: 3rem;
}
/* ------------------------------
sp-menu
------------------------------ */

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

/* ------------------------------
rstdtl-menu-lst
------------------------------ */
    .pttl {
        padding: 33px 0 40px 0;
        text-align: center;
    }

    .pttl img {
        height: 32px;
        width: auto;
    }

    .rstdtl-menu-lst {
        margin: 0 20px 60px 20px;
    }

/* ------------------------------
access
------------------------------ */
    dl.shop-info dt {
        clear: both;
        font-weight: bold;
        padding-top: 11px;
        padding-right: 10px;
        padding-bottom: 0;
        padding-left: 10px;
    }

    dl.shop-info dd {
        font-size: 0.9em;
        line-height: 1.6;
        padding-right: 10px;
        padding-left: 10px;
        padding-bottom: 10px;
    }

/* ------------------------------
rstdtl-menu-lst
------------------------------ */
    .pttl {
        padding: 33px 0 40px 0;
        text-align: center;
    }

    .pttl img {
        height: 32px;
        width: auto;
    }

    .rstdtl-menu-lst {
        margin: 40px 0px 0px 0px;
    }


    .rstdtl-menu-lst__heading {
        margin-top: 40px;
        margin-bottom: 20px;
        font-size: 1.6rem;
        font-weight: bold;
    }

    .rstdtl-menu-lst__contents {
        display: table;
        padding: 0 10px;
        border-bottom: 1px dotted #333;
        width: 100%;
        box-sizing: border-box
    }

    .rstdtl-menu-lst__contents:last-of-type {
        border-bottom: none;
        padding-top: 10px;
    }


    .rstdtl-menu-lst__info {
        display: table-cell;
        padding: 6px 0;
        vertical-align: top
    }


    .rstdtl-menu-lst__info-inner {
    /*        display: table;*/
        width: 100%;
    }

    .rstdtl-menu-lst__menu-title {
        display: table-cell;
        width: 100%;
        /* color: #111; */
        font-weight: bold;
        font-size: 1.4rem
    }


/*
    .rstdtl-menu-lst__price {
        display: table-cell;
        font-weight: bold;
        text-align: right;
        width: 7rem;
        font-size: 1.5rem
    }
*/


    .rstdtl-menu-lst__price {
        display: inline-block;
        width: 100% !important;
        font-weight: bold;
        text-align: right !important;
        font-size: 1.5rem
    }

    .rstdtl-menu-lst__desc {
        font-size: 12px;
        padding-bottom: 10px;
    }

    .rstdtl-menu-lst__desc p {
        font-size: 20px;
        padding: 12px 10px;
        line-height: 1.6;
        background: url('https://tblg.k-img.com/images/line/line_dot.gif?1547477344') repeat-x 0 100%
    }

    .rstdtl-menu-lst__img {
        display: table-cell;
        padding: 20px 15px 20px 0;
        width: 120px;
        text-align: center
    }


/* ------------------------------
course menu sp
------------------------------ */


    .course-list__items {
        margin: auto;
        width: 100%;
    }

    .rstdtl-course-list {
        display: table;
        position: relative;
        z-index: 1;
        border-top: 1px solid #e0dccc;
        border-bottom: 1px solid #e0dccc;
        width: 100%
    }

    .rstdtl-course-list + .rstdtl-course-list {
        border-top: none
    }

    .rstdtl-course-list__target {
        color: inherit;
        z-index: 1
    }

    .rstdtl-course-list__target:hover {
        color: inherit;
        text-decoration: none
    }

    .rstdtl-course-list.rstdtl-course-list--hotpepper:hover {
        cursor: default
    }


    .rstdtl-course-list__data {
        display: table-cell;
        position: relative;
        padding: 20px 0 40px;
        width: 100%;
        word-break: break-all;
        vertical-align: top
    }



    .rstdtl-course-list__tieup-mc ~ .rstdtl-course-list__img {
        padding-top: 6.5rem
    }

    .rstdtl-course-list__tieup-mc ~ .rstdtl-course-list__data {
        padding-top: 6.5rem
    }

    .rstdtl-course-list__data-header {
        display: table;
        width: 100%
    }

    .rstdtl-course-list__img + .rstdtl-course-list__data .rstdtl-course-list__data-header {
        min-height: 72px
    }

    .rstdtl-course-list__course-title {
        display: table-cell;
        word-break: break-all;

    }

    .rstdtl-course-list__course-title-text {
        margin-bottom: 0.5rem;
        /* color: #111; */
        font-weight: bold;
        line-height: 1.6;
        font-size: 1.2rem;
    }

    .rstdtl-course-list__course-title-text .rstdtl-course-list__target:hover {
        color: #ff9600;
        text-decoration: underline
    }

    .rstdtl-course-list.rstdtl-course-list--hotpepper .rstdtl-course-list__course-title-text {
        /* color: #13131e */
    }

    .rstdtl-course-list__dish-count.rstdtl-course-list__dish-count {
        border: 1px solid #e0dccc;
        box-sizing: border-box;
        /* color: #463f2d; */
        background-color: #fff;
        margin-left: 0.5rem;
        padding: 0.1rem 0.3rem
    }


    .rstdtl-course-list__price-wrap {
        display: table-cell;
        white-space: nowrap;
        vertical-align: top;
        padding-right: 0rem;
    }

    .rstdtl-course-list__price-wrap {
        display: block;
        width: 100%;
        white-space: nowrap;
        vertical-align: top;
        padding-right: 0rem;
		margin-bottom: 1rem;
    }

    .rstdtl-course-list__price-discount {
        display: inline-block
    }

    .rstdtl-course-list__price-before {
        /* color: #13131e; */
        text-align: left;
        margin-right: 0.5rem;
        margin-bottom: -0.2rem;
        font-size: .1rem
    }

    .rstdtl-course-list__price-hotpepper-discount {
        display: inline-block;
        position: relative;
        margin-bottom: 7px;
        border: solid 1px #333;
        border-radius: 2px;
        color: #949499;
        font-weight: bold;
        line-height: 1;
        background-color: #fff;
        padding: 0.4rem 0.5rem 0.3rem;
        font-size: 1rem
    }

    .rstdtl-course-list__price-hotpepper-discount::before,
    .rstdtl-course-list__price-hotpepper-discount::after {
        display: block;
        position: absolute;
        border: solid transparent;
        width: 0;
        height: 0;
        content: ''
    }

    .rstdtl-course-list__price-hotpepper-discount::before {
        bottom: -7px;
        border-width: 6px 6px 0;
        border-top-color: #333;
        right: 3rem
    }

    .rstdtl-course-list__price-hotpepper-discount::after {
        bottom: -5px;
        border-width: 5px 5px 0;
        border-top-color: #fff;
        right: 3.1rem
    }

    .rstdtl-course-list__price-num {
        /* color: #000; */
        font-weight: bold;
        font-size: 1.4rem
    }

    .rstdtl-course-list.rstdtl-course-list--hotpepper .rstdtl-course-list__price-num {
        display: block
    }

    .rstdtl-course-list__price-num > em {
        margin-right: 2px;
        /* font-family: Arial, sans-serif; */
        font-size: 2.0rem
    }

    .rstdtl-course-list__price-num-tax {
        font-weight: normal;
        font-size: 0.6rem;
    }

    .rstdtl-course-list__data-body {
        display: block;
        width: 100%;
        line-height: 1;
        padding-top: 0.5rem
    }

    .rstdtl-course-list__data-body:before,
    .rstdtl-course-list__data-body:after {
        display: block;
        overflow: hidden;
        content: ""
    }

    .rstdtl-course-list__data-body:after {
        clear: both
    }

    .rstdtl-course-list__img {
    /*        display: table-cell;*/
        padding: 20px 15px 20px 0;
        width: 200px;
        width: 100%;
    }

    .rstdtl-course-list__img img {
        width: 90%;
        height: auto;
        display: block;
        margin: 0 auto;
    }


    .rstdtl-course-list__img .rstdtl-course-list__target:hover {
        opacity: 0.8
    }

    .rstdtl-course-list.rstdtl-course-list--hotpepper .rstdtl-course-list__img:hover {
        opacity: 1
    }


    .rstdtl-course-list__subinfo {
    /*        display: table;*/
        position: relative;
    /*        float: left;*/
        padding-top: 0.5rem
    }



    .rstdtl-course-list__desc {
        /* color: #fff; */
        line-height: 1.6;
        font-size: 1.2rem;
    }

    .rstdtl-course-list__data-footer {
        float: right
    }

    .rstdtl-course-list__label {
        margin-left: 5px
    }

    .rstdtl-course-list__label.rstdtl-course-list__label {
        background-color: #32a000;
        padding: 0.2rem 0.4rem;
        line-height: 1.1rem;
        font-size: 1.1rem;
		color: #fff;
    }

    .rstdtl-course-list__hotpepper-target::before {
        color: #999
    }


    .rstdtl-course-list__course-rule {
        display: table-cell;
        white-space: nowrap;
        vertical-align: bottom;
        padding: 0 0 0.3rem 1rem
    }




    .rstdtl-course-list__course-rule > dt,
    .rstdtl-course-list__course-rule > dd {
        display: inline-block
    }

    .rstdtl-course-list__course-rule > dd {
        margin-right: 0.5rem
    }

    .rstdtl-course-list__course-rule-title::before {
        display: inline-block;
        color: #bcb08a;
        vertical-align: -0.1rem
    }



    .rstdtl-course-list__course-rule-title.rstdtl-course-list__course-rule-title--member::before {
        /* font-family: "Tabelog Glyph"; */
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        -webkit-font-smoothing: antialiased;
        text-transform: none;
        speak: none;
        content: "※"
    }

    .rstdtl-course-list__course-rule-title.rstdtl-course-list__course-rule-title--time::before {
        /* font-family: "Tabelog Glyph"; */
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        -webkit-font-smoothing: antialiased;
        text-transform: none;
        speak: none;
        content: "※"
    }

    .rstdtl-course-list__course-rule-title > i {
        display: none
    }

    .rstdtl-course-list__action-btn {
        display: table-cell;
        width: 100px;
        text-align: right;
        vertical-align: top;
        padding-left: 1.2rem;
        color: #fff;
    }

    .rstdtl-course-list__reserve-notice {
        display: block;
        color: #b4b4b4;
        text-indent: -1em;
        padding-left: 1em;
        text-align: left;
        white-space: nowrap;
        vertical-align: middle;
        line-height: 1.2;
        font-size: 0.8rem
    }

    .rstdtl-course-list__action-btn-target {
        display: block;
        float: right;
        clear: right;
        cursor: pointer;
        white-space: nowrap;
        vertical-align: middle;
    /*        width: 10rem;*/
        /* color: #111; */
    }

    .rstdtl-course-list__action-btn-target + .rstdtl-course-list__action-btn-target {
        margin-top: 0.6rem
    }

    .rstdtl-course-list__reserve-notice + .rstdtl-course-list__action-btn-target {
        margin-top: 0.6rem
    }

    .rstdtl-course-list__coupon {
        display: inline-block;
        float: right;
        margin-top: 0.5rem
    }

    .rstdtl-course-list__coupon-btn {
        float: right
    }

    .rstdtl-course-list__coupon-contents {
        width: auto;
        text-align: left;
        padding-top: 0.7rem
    }

    .rstdtl-course-rdimg {
        position: absolute;
        bottom: 0;
        left: 0
    }

    .rstdtl-course-list__tieup-mc {
        display: table-row;
        position: absolute;
        left: 0;
        z-index: 5;
        border-radius: 6px;
        vertical-align: middle;
        /* background-color: #221815; */
        top: 1.5rem
    }

    .rstdtl-course-list__tieup-mc:hover {
        opacity: 0.8
    }

    .rstdtl-course-list__tieup-mc-target {
        display: block;
        box-sizing: border-box;
        padding: 0.6rem 1.2rem 0.6rem 1.5rem
    }

    .rstdtl-course-list__tieup-mc-target::after {
        color: #fff;
        vertical-align: middle
    }

    .rstdtl-course-list__tieup-mc-target:hover {
        text-decoration: none
    }

    .rstdtl-course-list__tieup-mc-logo {
        display: inline-block;
        width: 123px;
        height: 22px;
        background: url('https://tblg.k-img.com/images/shared/tieup/mastercard_pricelessjapan/tieup_logo_mastercard.png?1547477503') no-repeat 0 0;
        background-size: 123px 22px;
        vertical-align: bottom
    }

    .rstdtl-course-list__tieup-mc-logo > i {
        display: none
    }

    .rstdtl-course-list__tieup-mc-text {
        display: inline-block;
        color: #fff;
        margin-left: 1rem;
        padding-bottom: 0.2rem;
        font-size: 1.1rem
    }

    .rstdtl-course-list__tieup-mc-text > em {
        color: #ff9600;
        font-weight: bold;
        margin-right: 0.7rem;
        font-size: 1.3rem
    }

	.cms_menu___modal--close {
		left: 10px;
	}
	

}

.tblg-coupon__main-title,
.tblg-coupon__main-contents,
.rstdtl-course-list__coupon,
.tblg-coupon-toggle-btn{
    visibility: hidden;
    display: none;
    width: 0;
    height: 0;
}

#cms_menu__modal {
    z-index: 99999999 !important;
}

.rstdtl-tax-alert {
    line-height: 1.6;
    padding: 2rem 0;
}


.link_underline {
    text-decoration: underline;
}


.sub p._reserve {
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
}








/*  ----------------------------------------------------------

Google翻訳

----------------------------------------------------------  */
#google_translate {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9999;
}
#google_translate img {
  height: auto;
  width: auto;
}
@media only screen and (max-width: 768px) {
  #google_translate {
    position: fixed;
    right: inherit;  /* ハンバーガーボタン分左へずらす */
    left: 0;
  }
}






.menu__pasteimg {
	display: flex;
	flex-direction: column;
	gap: 4rem;
}



.table_link {
    text-decoration: underline;
}
