@charset "utf8";
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p&family=Noto+Sans+JP:wght@600;800&family=Noto+Serif+JP:wght@200..900&family=Oswald&family=Sawarabi+Mincho&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@400;500;700;800&family=Noto+Sans+JP:wght@300;400;500&display=swap');

:root{
    --text: #efedea;
    --link: #8c761f;
    --lightgray: #efedea;
    --gold-bright: #E4C878;
    --gold: #C9A24B;
    --gold-dark: #8c761f;
    --black: rgb(20, 17, 13);
    --shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.35);
    --goldshadow: 0px 0 20px 5px rgba(255, 196, 0, 0.35);
    --radius: 8px;
}
*{
    font-family: "Shippori Mincho B1", "Noto Sans JP","游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
body{
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    background-color: var(--black);
    color: var(--text);
}
/* 共通パーツ */
a,
label,
a img{
    text-decoration: none;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}
a:hover img{
    opacity: 0.7;
}
.img{
    display: block;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    border-radius: var(--radius);
}
.a__link{
    color: var(--gold);
    text-decoration: underline;
}
.a__link:hover{
    text-decoration: none;
}
.btn{
    display: inline-block;
    padding: 15px 30px;
    border-radius: 999px;
    text-align: center;
    text-decoration: none;
    font-size: 1.5rem;
    background: linear-gradient(rgba(126,109,78,0.7),rgba(126,109,78,0));
    border: 1px solid var(--gold);
    color: #FFFFFF;
    margin: 10px;
}
.btn:hover{
    background: linear-gradient(rgba(126,109,78,1),rgba(126,109,78,0.3));
}
.caption{
    padding: 15px;
    line-height: 1.8rem;
}
.caption__center{
    text-align: center;
}
.caption__img{
    display: block;
    font-size: 0.9rem;
    padding: 2px;
}
.section{
    margin: 0 auto;
    padding: 100px 15px;
}
.contents{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}
.box-shadow{
    box-shadow: var(--shadow);
}
.box-goldshadow{
    box-shadow: var(--goldshadow);
}
.title__2nd{
    display: block;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.5rem;
    line-height: 1.5;
    color: var(--text);
    padding: 15px 0;
    margin: 30px 0;
}
.title__gold{
    background: var(--CTA--, linear-gradient(180deg, #ffe659 0%, #ad6818 100%));
    -webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
h3.title__3rd{
    font-size: 18px;
    color: var(--gold-bright);
    margin-bottom: 10px;
    font-weight: 500;
    font-size: clamp(26px, 4vw, 36px);
    margin-bottom: 34px;
}

/* flex box */
.flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}
.flex__reverse{
    flex-direction: row-reverse;
}
.flex__2clmn{
    width: calc(50% - 30px);
    margin: 15px;
    position: relative;
}
.flex__3clmn{
    width: calc(33.33% - 30px);
    margin: 15px;
    position: relative;
}
@media screen and (max-width:960px) {
    .flex__2clmn{
        width: calc(100% - 30px);
        margin: 15px;
        position: relative;
    }
    .flex__3clmn{
        width: calc(50% - 30px);
        margin: 15px;
        position: relative;
    }
}
/* Header */
.header{
    width: 100%;
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    position: fixed;
    z-index: 100;
    color: var(--text);
    background: rgba(0,0,0,0.8);
    justify-content: space-between;
    border-bottom: 1px solid var(--gold);
}
.header.js-global-nav{
    transform: translateY(-100%); opacity: 0;
    transition: transform .28s ease, opacity .28s ease;
    will-change: transform, opacity;
}
.header.is-visible {
    transform: translateY(0); opacity: 1;
}
.header__logo img{
    display: inline-block;
    width: 160px;
    padding: 15px;
}
.header__tel{
    display: inline-block;
    font-size: 21px;
    font-weight: 800;
    color: var(--text);
    padding: 15px 0 0 0;
    pointer-events: none;
    position: relative;
}
.header__tel::after{
    content: "営業時間：9:00～18:00";
    position: absolute;
    color: var(--text);
    font-size: 10px;
    text-align: center;
    display: inline-block;
    width: 100%;
    top: -5px;
    left: 0;
}
.header__contact{
    display: inline-block;
    padding: 8px 30px;
    border-radius: 999px;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(rgba(126,109,78,0.7),rgba(126,109,78,0));
    border: 1px solid var(--gold);
    color: #FFFFFF;
    margin: 20px 20px 0 0;
    font-size: 0.9rem;
}
.header__contact:hover{
    background: linear-gradient(rgba(126,109,78,1),rgba(126,109,78,0.3));
}
.navigation{
    display: table;
}
.navigation__link{
    display: table-cell;
    color: var(--text);
    text-decoration: none;
    font-size: 1rem;
    padding: 25px 12px 0 12px;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}
.navigation__link:hover{
    color: var(--gold);
    cursor: pointer;
    text-decoration: underline;
}
/* Header-ここまで */
/* Footer */
footer{
    text-align: right;
    padding: 30px;
}
.footer__logo{
    display: inline-block;
    width: 100px;
    margin: 10px AUTO;
}
.copyright{
    display: block;
    padding: 5px;
    font-size: 12px;
    color: #EFEFEF;
    font-family: "Noto Sans JP","游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
/* Footer-ここまで */
.eyecatch{
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}
h1{
    display: block;
    width: 100%;
    color: #FFFFFF;
    font-size: 16px;
    text-align: center;
    padding: 5px;
}
.eyecatch__logo{
    display: block;
    width: 150px;
    position: absolute;
    top: 50px;
    left: 200px;
    z-index: 10;
}
.eyecatch__list{
    display: flex;
    height: 300px;
    margin: 30px 130px 0 auto;
}
.eyecatch__list li{
    writing-mode: vertical-rl;
    text-orientation: mixed;
    list-style: none;
    color: var(--text);
    padding: 0;
}
.eyecatch__list li label{
    display: block;
    padding: 15px;
    width: 100%;
    height: 100%;
    margin: 0;
    border-right: 1px solid transparent;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;   font-size: 1.2rem;
}
.eyecatch__list li label:hover{
    cursor: pointer;
    color: var(--gold-bright);
    border-right: 1px solid var(--gold-bright);
    background: linear-gradient(rgba(126,109,78,0.9),rgba(126,109,78,0));
}

/* slideshow */
.slideshow {
    position: relative;
    width: calc(100% - 100px);
    height: 600px;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin: 0 50px;
}
.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}
.slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slide.active {
    opacity: 1;
}
.dots {
    position: absolute;
    right: 16px;
    bottom: 16px;
    display: flex;
    gap: 8px;
    z-index: 10;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
}
.dot.active {
    background: #fff;
}
/* slideshow */


/* メニュー */
.menu__main{
    padding: 0 20px;
}
.menu__title-main{
    display: block;
    font-size: 2.6rem;
    color: var(--gold-bright);
    padding: 15px;
    margin-bottom: 20px;
    font-weight: 500;
    border-bottom: 1px solid var(--gold);
    line-height: 1.5;
}
.menu__img{
    box-shadow: var(--goldshadow);

}
.menu__pickup{
    padding: 15px;
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    box-shadow: var(--goldshadow);
    margin: 30px 0;
}
.menu__pickup--point{
    color: var(--gold);
    font-size: 1.2rem;
}
/* 以下、メインコンテンツ */

.section__bg--lead{
    background-image: url(../img/bg_lead.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.lead{
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.lead__figure{
    width: 30%;
    padding: 30px;
}
.lead__text{
    color: var(--text);
    width: 70%;
    padding: 30px;
    font-size: 1.2rem;
    line-height: 1.8;
}
.message{
    background-color: var(--black);
    border-radius: var(--radius);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    box-shadow: var(--shadow);
    margin: 50px AUTO;
}
.message__title{
    display: block;
    width: 100%;
    font-size: 1.5rem;
    text-align: center;
    padding: 10px 0 0 0;
}
.message__figure{
    width: 30%;
    padding: 30px;
}
.message__figure img{
    display: block;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
}
.message__text{
    width: 70%;
    padding: 30px;
}

/* メニュー */
.flex--menu{
    margin-bottom: 100px;
}

.flex--menu p{
    color: #FFFFFF;
    padding: 15px;
}
.dl--menu{
    display: table;
    width: 100%;
    border-bottom: 1px solid #C9A24B;
}
.dl--menu dt{
    display: table-cell;
    width: 70%;
    padding: 15px ;
    font-size: 1.2rem;
    position: relative;
}
/*
.dl--menu dt.symbol::before{
    content: "直伝";
    font-size: 14px;
    line-height: 1rem;
    padding: 5px;
    border-radius: 3px;
    display: inline-block;
    color: var(--gold);
    border: 1px solid var(--gold);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    position: absolute;
    left: 3px;
}*/
.dl--menu dd{
    display: table-cell;
    padding: 15px;
    font-size: 1rem;
}
.dl--menu small{
    font-size: 0.8rem;
    color: #CCCCCC;
    font-family: notosans, sans-serif;
}
.menu__price{
    display: block;
    text-align: right;
    font-size: 1.2rem;
    color: var(--gold);
}
.circle{
    display: grid;
    align-items: center;
    margin: 30px 10px;
    border-radius: 999px;
    padding: 15px 15px;
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
    width: 200px;
    height: 200px;
    font-size: 2.0rem;
    background: linear-gradient(90deg,rgba(126,109,78,1),rgba(126,109,78,0.3));
    border: 1px solid var(--gold);
    float: left;
}

.section__bg--usecase{
    background-image: url(../img/bg_Interior.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* 予約ボタン */
.section__reserve{
    padding: 20px!important;
}
.btn__cta{
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 30px auto;
    border-radius: 999px;
    padding: 20px 50px;
    border: 1px solid var(--link);
    color: var(--gold-bright);
    text-align: center;
    text-decoration: none;
    font-size: 1.5rem;
    background: linear-gradient(rgba(126,109,78,0.7),rgba(126,109,78,0));
}
.btn__cta:hover{
    font-size: 1.6rem;
    background: linear-gradient(rgba(126,109,78,1),rgba(126,109,78,0.3));
}
.btn__cta svg{
    display: inline-block;
    width: 20px;
    height: 20px;
    fill: var(--gold-bright);
}
/* 店舗情報 */
.section__bg--store{
    background: linear-gradient(rgb(20,17,13,1),rgba(0,0,0,1));
}
.store{
    position: relative;
    margin-top: 100px;
    margin-bottom: 100px;
}
.store__title{
    margin: 10px 0!important;
}
.store__img{
    display: block;
    width: 100%;
    margin: 10px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.store__content{
    max-width: 100%;
    color: var(--text);
    background-color: var(--gold-dark);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-top: 100px;
}
.store__table{
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border-top: 1px solid var(--text);
}
.store__table th,
.store__table td{
    border-bottom: 1px solid var(--text);
    padding: 15px;
    text-align: left;
}
.store__table th{
    width: 20%;
}
.store__link{
    color: var(--text);
}
.store__googlemap{
    display: inline-block;
    margin: 15px 0;
    padding: 5px 30px;
    border: 1px solid var(--text);
    color: var(--text);
    border-radius: 999px}
.store__googlemap:hover{
    background-color: var(--text);
    color: var(--gold-dark);
}
.store__slide{
    padding: 10px;
}
/* スライドショーのボタン*/
.slide__btn{
    position: absolute;
    z-index: 10;
}
.slide__btn:hover{
    cursor: pointer;
    opacity: 0.6;
}
.slide__prev{
    left: 10px;
    top: 40%;
}
.slide__next{
    right: 10px;
    top: 40%;
}
.slide__btn svg{
    width: 30px;
    height: 30px;
}
.slick-dots{
    display: block;
    text-align: center;
}
.eyecatch .slick-dots{
    position: absolute;
    width: 200px;
    bottom: 50px;
    left: 50px;
    z-index: 10;
}
.slick-dots li{
    display: inline-block;
    background-color: #222222;
    border: 1px solid #CCCCCC;
    width: 15px;
    height: 15px;
    text-indent: -9999px;
    margin: 10px;
    cursor: pointer;
    border-radius: 999px;
}
.slick-dots li.slick-active{
    background-color: var(--gold);
}
.br__sp--show{
    display: none;
}

@media screen and (max-width:960px) {
    body{
        font-size: 14px;
    }
    .header{
        display: none;
    }
    h1{
        margin: 0 auto;
        width: 248px;
        font-size: 10px;
        padding: 5px;
    }
    .title__2nd{
        font-size: 1.4rem;
        margin: 15px 0;
    }
    .menu__title-main{
        font-size: 1.4rem;
    }
    .eyecatch__list{
        display: none;
    }
    .eyecatch__logo {
        width: 80px;
        top: 15%;
        left: 10%;
        z-index: 10;
    }
    .slideshow{
        width: calc(100% - 50px);
        height: 300px;
        margin: 150px 25px 0 25px;
    }
    .lead{
        font-size: 1rem;
        padding: 20px;
    }
    .br__sp--none{
        display: none;
    }
    .br__sp--show{
        display: inline;
    }
    .message__figure{
        width: 100%;
    }
    .message__text{
        width: 100%;
    }
    .lead__figure{
        width: 100%;
    }
    .lead__text{
        width: 100%;
    }

    .store__img{
        margin: 0;
    }
    .store__content{
        margin: 0;
        padding: 20px;
    }

    .dl--menu{
        display: block;
        width: 100%;
        border-bottom: 1px solid #C9A24B;
    }
    .dl--menu dt{
        display: block;
        width: 100%;
        padding: 15px 10px 15px 10px;
        font-size: 1rem;
    }
    .dl--menu dd{
        display: block;
        width: 100%;
        padding: 15px 10px;
        font-size: 0.9rem;
    }
    .store__table{
        display: block;
    }
    .store__table th{
        display: block;
        width: 100%;
        padding: 5px 10px;
        text-align: left;
    }
    .store__table td{
        display: block;
        width: 100%;
        padding: 10px 10px 10px 15px;
        text-align: left;
    }
    .btn__cta{
        margin: 15px auto;
        padding: 10px 30px;
        font-size: 1.2rem;
    }
}
