@charset "UTF-8";

:root {
    --bg: #f6f1e8;
    --bg2: #fffaf1;
    --ink: #1f1b16;
    --sub: #6d6257;
    --gold: #b89554;
    --gold2: #d7bf83;
    --green: #17382c;
    --line: rgba(31, 27, 22, .14);
    --shadow: 0 24px 70px rgba(0, 0, 0, .16);
    --radius: 26px
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.9;
    letter-spacing: .05em;
    overflow-x: hidden
}

a {
    color: inherit;
    text-decoration: none
}

img {
    display: block;
    width: 100%;
    object-fit: cover
}

ul {
    list-style: none
}

button {
    font: inherit
}

.loading {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: var(--green);
    transition: opacity .8s, visibility .8s
}

.loading.hide {
    opacity: 0;
    visibility: hidden
}

.loading__logo {
    width: 420px;
    max-width: 80%;
    height: auto
}

.loading__line {
    display: block;
    width: 180px;
    height: 1px;
    margin: 28px auto 0;
    background: linear-gradient(90deg, transparent, var(--gold2), transparent);
    animation: loadLine 1.5s infinite
}

@keyframes loadLine {

    0%,
    100% {
        transform: scaleX(.1);
        opacity: .3
    }

    50% {
        transform: scaleX(1);
        opacity: 1
    }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    color: #fff;
    transition: .4s
}

.site-header.scrolled {
    background: rgba(23, 56, 44, .9);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, .18)
}

.header-inner {
    height: 86px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 36px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

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

.logo img {
    width: 260px;
    height: auto
}

.global-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 14px
}

.global-nav a {
    position: relative
}

.global-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: var(--gold2);
    transition: .3s
}

.global-nav a:hover::after,
.global-nav a.current::after {
    width: 100%
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: none
}

.menu-button span {
    display: block;
    height: 1px;
    margin: 8px 0;
    background: #fff
}

.fixed-reserve {
    position: fixed;
    right: 24px;
    top: 50%;
    z-index: 900;
    display: grid;
    gap: 10px;
    transform: translateY(-50%)
}

.fixed-reserve a {
    writing-mode: vertical-rl;
    padding: 18px 12px;
    border-radius: 999px;
    background: rgba(184, 149, 84, .92);
    color: #fff;
    font-size: 14px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .2)
}

.cuisine-hero {
    min-height: 740px;
    height: 100vh;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #fff
}

.cuisine-hero__slider,
.cuisine-hero__slide,
.cuisine-hero__overlay {
    position: absolute;
    inset: 0
}

.cuisine-hero__slide {
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 2s ease, transform 10s ease
}

.cuisine-hero__slide.active {
    opacity: 1;
    transform: scale(1)
}

.cuisine-hero__overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .18), rgba(0, 0, 0, .48))
}

.cuisine-hero__copy {
    position: relative;
    z-index: 2;
    width: min(900px, 90vw);
    text-align: center;
    padding: 60px 30px
}

.cuisine-hero__copy p {
    color: var(--gold2);
    font-size: 13px;
    letter-spacing: .28em;
    text-transform: uppercase
}

.cuisine-hero__copy h1 {
    margin: 16px 0 22px;
    font-size: clamp(38px, 6vw, 74px);
    font-weight: 400;
    line-height: 1.35;
    text-shadow: 0 8px 30px rgba(0, 0, 0, .5)
}

.cuisine-hero__copy span {
    font-size: clamp(15px, 1.8vw, 20px);
    text-shadow: 0 4px 18px rgba(0, 0, 0, .65)
}

.page-nav {
    position: sticky;
    top: 86px;
    z-index: 50;
    display: flex;
    justify-content: center;
    gap: 34px;
    padding: 18px 24px;
    background: rgba(255, 250, 241, .96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line)
}

.page-nav a {
    font-size: 14px;
    color: var(--sub)
}

.page-nav a:hover {
    color: var(--gold)
}

.section {
    padding: 110px 7vw
}

.section-kicker {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: .24em;
    text-transform: uppercase;
    margin-bottom: 14px
}

.section-heading {
    max-width: 900px;
    margin: 0 auto 58px;
    text-align: center
}

.section-heading h2,
.kaiseki-feature__body h2,
.breakfast__body h2,
.drinks__body h2,
.notice-box h2,
.reserve-box h2,
.course-list__inner h2 {
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.4
}

.section-heading p:last-child {
    margin-top: 16px;
    color: var(--sub)
}

.concept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.concept-card {
    padding: 38px 30px;
    border-radius: 24px;
    background: var(--bg2);
    border: 1px solid rgba(184, 149, 84, .2)
}

.concept-card span {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: .18em
}

.concept-card h3 {
    font-size: 24px;
    font-weight: 400;
    margin: 10px 0
}

.concept-card p {
    color: var(--sub)
}

.kaiseki-feature {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: stretch
}

.kaiseki-feature__slider {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    border-radius: 34px 0 0 34px;
    background: #000
}

.kaiseki-feature__slider img,
.breakfast__slider img,
.menu-card__slider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 2.4s ease, transform 12s ease
}

.kaiseki-feature__slider img.active,
.breakfast__slider img.active,
.menu-card__slider img.active {
    opacity: 1;
    transform: scale(1)
}

.kaiseki-feature__body {
    min-height: 620px;
    padding: 68px 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--green);
    color: #fff;
    border-radius: 0 34px 34px 0
}

.kaiseki-feature__body>p:not(.section-kicker) {
    margin: 24px 0;
    color: rgba(255, 255, 255, .82)
}

.kaiseki-feature__body li {
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .15)
}

.kaiseki-feature__body .btn {
    margin-top: 28px
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 50%;
    background: rgba(0, 0, 0, .25);
    color: #fff;
    font-size: 32px;
    cursor: pointer
}

.slider-arrow.prev {
    left: 20px
}

.slider-arrow.next {
    right: 20px
}

.slider-count {
    position: absolute;
    right: 24px;
    bottom: 22px;
    z-index: 4;
    padding: 6px 12px;
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 0, 0, .35);
    font-size: 12px
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px
}

.menu-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--bg2);
    box-shadow: 0 16px 45px rgba(0, 0, 0, .08)
}

.menu-card__slider {
    position: relative;
    height: 420px;
    background: #000
}

.menu-card__body {
    padding: 32px
}

.menu-label {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase
}

.menu-card h3 {
    font-size: 30px;
    font-weight: 400;
    margin: 6px 0 12px
}

.menu-card__body p:last-child {
    color: var(--sub)
}

.course-list {
    background: var(--green);
    color: #fff
}

.course-list__inner {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 60px;
    align-items: center
}

.course-list__inner>div:first-child p:last-child {
    color: rgba(255, 255, 255, .78);
    margin-top: 18px
}

.course-list__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.course-list__items span {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 18px;
    text-align: center;
    background: rgba(255, 255, 255, .04)
}

.breakfast__inner {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    background: var(--bg2);
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.breakfast__body {
    min-height: 520px;
    padding: 58px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.breakfast__body>p:not(.section-kicker) {
    margin: 22px 0;
    color: var(--sub)
}

.breakfast__body dt {
    color: var(--gold);
    margin-top: 12px
}

.breakfast__slider {
    position: relative;
    min-height: 520px;
    background: #000
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.ingredient-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--bg2);
    box-shadow: 0 16px 45px rgba(0, 0, 0, .08)
}

.ingredient-card img {
    height: 300px;
    transition: transform .7s
}

.ingredient-card:hover img {
    transform: scale(1.05)
}

.ingredient-card div {
    padding: 28px
}

.ingredient-card h3 {
    font-size: 26px;
    font-weight: 400;
    margin: 6px 0 10px
}

.ingredient-card div p:last-child {
    color: var(--sub)
}

.drinks__inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    background: var(--green);
    color: #fff;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.drinks__image img {
    height: 100%;
    min-height: 460px
}

.drinks__body {
    min-height: 460px;
    padding: 58px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.drinks__body p:last-child {
    margin-top: 20px;
    color: rgba(255, 255, 255, .82)
}

.notice-box {
    max-width: 1000px;
    margin: auto;
    padding: 54px;
    border: 1px solid rgba(184, 149, 84, .3);
    border-radius: 30px;
    background: var(--bg2);
    text-align: center
}

.notice-box p {
    max-width: 760px;
    margin: 18px auto 0;
    color: var(--sub)
}

.reserve-box {
    padding: 74px 30px;
    border-radius: 34px;
    background: var(--green);
    color: #fff;
    text-align: center
}

.reserve-box>p:not(.section-kicker) {
    max-width: 700px;
    margin: 16px auto 30px;
    color: rgba(255, 255, 255, .8)
}

.reserve-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    padding: 14px 24px;
    border-radius: 999px;
    border: 1px solid var(--gold);
    transition: .3s
}

.btn--gold {
    background: var(--gold);
    color: #fff
}

.btn--gold:hover {
    background: #9e7d42;
    transform: translateY(-2px)
}

.btn--outline-light {
    border-color: rgba(255, 255, 255, .55);
    color: #fff
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, .12)
}

/* フッター */
.site-footer{
  background:#f3e9b0;
  color:rgba(235, 82, 11, 0.699);
  padding:48px 7vw;
  display:flex;
  justify-content:space-between;
  gap:30px;
}
.footer-info{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.footer-logo{
    width:260px;
    height:auto;
    margin-bottom:20px;
}

.footer-info p{
    color:rgba(24, 18, 1, 0.9);
    line-height:1.9;
    margin:4px 0;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

@media(max-width:980px) {
    .global-nav {
        position: fixed;
        inset: 86px 0 auto 0;
        display: grid;
        gap: 0;
        padding: 20px 32px;
        background: rgba(23, 56, 44, .96);
        transform: translateY(-130%);
        transition: .35s
    }

    .global-nav.open {
        transform: translateY(0)
    }

    .global-nav a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .12)
    }

    .menu-button {
        display: block
    }

    .page-nav {
        overflow-x: auto;
        justify-content: flex-start;
        white-space: nowrap
    }

    .kaiseki-feature,
    .breakfast__inner,
    .drinks__inner,
    .course-list__inner {
        grid-template-columns: 1fr
    }

    .kaiseki-feature__slider,
    .kaiseki-feature__body,
    .breakfast__slider,
    .breakfast__body {
        min-height: 440px
    }

    .kaiseki-feature__slider {
        border-radius: 34px 34px 0 0
    }

    .kaiseki-feature__body {
        border-radius: 0 0 34px 34px
    }

    .concept-grid,
    .ingredients-grid {
        grid-template-columns: 1fr
    }

    .course-list__items {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:560px) {
    .header-inner {
        height: 74px;
        padding: 0 18px
    }

    .logo img {
        width: 190px
    }

    .global-nav {
        inset: 74px 0 auto 0
    }

    .cuisine-hero {
        min-height: 620px
    }

    .cuisine-hero__copy h1 {
        font-size: 34px
    }

    .section {
        padding: 78px 22px
    }

    .fixed-reserve {
        left: 0;
        right: 0;
        top: auto;
        bottom: 0;
        display: flex;
        transform: none
    }

    .fixed-reserve a {
        flex: 1;
        padding: 12px 8px;
        border-radius: 0;
        text-align: center;
        writing-mode: horizontal-tb
    }

    .kaiseki-feature__slider,
    .breakfast__slider {
        min-height: 300px
    }

    .kaiseki-feature__body,
    .breakfast__body {
        min-height: auto;
        padding: 34px 26px
    }

    .kaiseki-feature__body h2,
    .breakfast__body h2 {
        font-size: 30px
    }

    .menu-grid {
        grid-template-columns: 1fr
    }

    .menu-card__slider {
        height: 300px
    }

    .course-list__items {
        grid-template-columns: repeat(2, 1fr)
    }

    .drinks__image img {
        min-height: 300px
    }

    .drinks__body {
        min-height: auto;
        padding: 34px 26px
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 26px
    }

    .slider-arrow.prev {
        left: 12px
    }

    .slider-arrow.next {
        right: 12px
    }

    .notice-box {
        padding: 38px 24px
    }

    .site-footer {
        display: grid;
        padding-bottom: 90px
    }

    .footer-links {
        flex-direction: column;
        gap: 8px
    }
}
/* ==========================
   松会席 見出し調整
========================== */

.kaiseki-feature{
  grid-template-columns:1fr 1fr;
}

.kaiseki-feature__body h2{
  font-size:clamp(32px,2.8vw,46px) !important;
  white-space:nowrap !important;
  word-break:keep-all !important;
  overflow-wrap:normal !important;
}
@media(max-width:700px){
  .kaiseki-feature__body h2{
    white-space:normal !important;
    font-size:30px !important;
  }
}
/*=========================
   昼食メニュー
=========================*/

.lunch-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.lunch-card{

    overflow:hidden;

    border-radius:24px;

    background:#fff;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

}

.lunch-card img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:transform .8s;

}

.lunch-card:hover img{

    transform:scale(1.05);

}

.lunch-card h3{
    padding:20px 20px 8px;
    text-align:center;
    font-size:30px;
    font-weight:400;
    letter-spacing:.08em;
    margin:0;

}.lunch-card p{
    text-align: center;
    padding-bottom: 10px;
    line-height: 1.4;
}

@media(max-width:900px){

    .lunch-grid{

        grid-template-columns:1fr;

    }

}
/* ==========================
   松・竹・梅 お品書きタブ
========================== */

.course-tabs{
  background:var(--green);
  color:#fff;
}

.course-tabs .section-heading p:last-child{
  color:rgba(255,255,255,.76);
}

.course-tabs__box{
  max-width:1200px;
  margin:0 auto;
}

.course-tabs__buttons{
  display:flex;
  justify-content:center;
  gap:14px;
  margin-bottom:34px;
}

.course-tab{
  min-width:160px;
  padding:14px 24px;
  border:1px solid rgba(255,255,255,.35);
  border-radius:999px;
  background:transparent;
  color:#fff;
  font-family:inherit;
  font-size:17px;
  letter-spacing:.12em;
  cursor:pointer;
  transition:
    background .3s,
    color .3s,
    border-color .3s,
    transform .3s;
}

.course-tab:hover{
  transform:translateY(-2px);
  border-color:var(--gold2);
}

.course-tab.active{
  background:var(--gold);
  border-color:var(--gold);
  color:#fff;
}

.course-panels{
  position:relative;
}

.course-panel{
  display:none;
  grid-template-columns:.75fr 1.25fr;
  gap:60px;
  align-items:center;
  padding:58px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:30px;
  background:rgba(255,255,255,.04);
}

.course-panel.active{
  display:grid;
  animation:coursePanelFade .7s ease;
}

@keyframes coursePanelFade{
  from{
    opacity:0;
    transform:translateY(14px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}

.course-panel__heading h3{
  font-size:clamp(38px,4vw,58px);
  font-weight:400;
  line-height:1.3;
  margin-bottom:18px;
}

.course-panel__heading > p:last-child{
  color:rgba(255,255,255,.78);
}

.course-menu-list{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.course-menu-list li{
  min-height:66px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:18px;
  background:rgba(255,255,255,.035);
  text-align:left;
}

.course-menu-list span{
  color:#fff;
  font-size:16px;
}

.course-note{
  margin-top:22px;
  color:rgba(255,255,255,.65);
  font-size:13px;
  text-align:center;
}

@media(max-width:900px){

  .course-panel{
    grid-template-columns:1fr;
    gap:36px;
    padding:42px 34px;
    text-align:center;
  }

  .course-menu-list{
    grid-template-columns:repeat(3,1fr);
  }

}

@media(max-width:600px){

  .course-tabs__buttons{
    gap:8px;
  }

  .course-tab{
    min-width:0;
    flex:1;
    padding:12px 8px;
    font-size:15px;
  }

  .course-panel{
    padding:34px 20px;
  }

  .course-panel__heading h3{
    font-size:36px;
  }

  .course-menu-list{
    grid-template-columns:repeat(2,1fr);
    gap:10px;
  }

  .course-menu-list li{
    min-height:58px;
    padding:10px 6px;
  }

  .course-menu-list span{
    font-size:14px;
  }

}
.notice-box hr{
    margin:32px 0;
    border:none;
    border-top:1px solid #d8d0c3;
}

.notice-box h3{
    margin-bottom:14px;
    font-size:24px;
    font-weight:500;
    color:#234535;
}

.notice-box p{
    line-height:2;
}
.notice-box{
    text-align: center;
}

.notice-box p{
    text-align: left;
    max-width: 900px;
    margin: 0 auto 20px;
    line-height: 2;
}

.notice-box h2,
.notice-box h3{
    text-align: center;
}
/* ==========================
   お食事について
========================== */

.notice-box h2{
    font-size:48px;
    margin-bottom:30px;
}

.notice-box h3{
    font-size:30px;
    margin:40px 0 20px;
    color:var(--gold);
    font-weight:500;
    text-align:center;
}

.notice-box p{
    font-size:19px;
    line-height:2.2;
    text-align:left;
    max-width:900px;
    margin:0 auto 24px;
}

.notice-box hr{
    max-width:900px;
    margin:40px auto;
    border:none;
    border-top:1px solid #d8d0c3;
}
.kids-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:40px;
    margin-top:60px;
}

.kids-card{
    display:flex;
    flex-direction:column;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.kids-card:hover{
    transform:translateY(-8px);
}

/* 画像全体を表示する部分 */
.kids-card img{
    display:block;
    width:100%;
    height:320px;
    object-fit:contain;
    object-position:center;
    background:#fff;
}

/* 文章部分 */
.kids-content{
    flex:1;
    padding:30px;
}

.kids-content h3{
    font-size:28px;
    color:var(--gold);
    margin:0 0 15px;
    text-align:center;
}

.kids-content p{
    font-size:18px;
    line-height:2;
    color:#555;
    margin:0;
}

/* スマートフォン表示 */
@media(max-width:768px){

    .kids-grid{
        grid-template-columns:1fr;
        gap:30px;
        margin-top:40px;
    }

    .kids-card img{
        height:auto;
        max-height:320px;
        object-fit:contain;
    }

    .kids-content{
        padding:24px 20px;
    }

    .kids-content h3{
        font-size:24px;
    }

    .kids-content p{
        font-size:16px;
        line-height:1.8;
    }

}
.scroll-reveal{
    opacity:0;
    transform:translateY(50px);
    transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.22, 1, .36, 1);
}

.scroll-reveal.is-show{
    opacity:1;
    transform:translateY(0);
}