@charset "UTF-8";

/* ==================================================
   ローディング画面
================================================== */
.loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #143d31;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease, visibility 1s ease;
}

.loading.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loading-logo {
  display: block;
  width: 300px;
  max-width: 70vw;
  height: auto;
  opacity: 0;
  animation: loadingLogo 1.2s ease forwards;
}

.loading-line {
  position: relative;
  display: block;
  width: 120px;
  height: 1px;
  margin-top: 32px;
  overflow: hidden;
  background: rgba(198, 168, 99, .25);
}

.loading-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #b89a59;
  animation: loadingLine 1.8s ease-in-out infinite;
}

@keyframes loadingLogo {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }

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

@keyframes loadingLine {
  0% {
    left: -100%
  }

  50% {
    left: 0
  }

  100% {
    left: 100%
  }
}

@media(max-width:600px) {
  .loading-logo {
    width: 230px;
  }

  .loading-line {
    width: 90px;
    margin-top: 25px;
  }
}

:root {
  --green: #173c31;
  --dark: #0d2921;
  --gold: #a98a49;
  --ivory: #f6f3eb;
  --text: #30332f;
  --line: #ddd8ca;
  --serif:"Yu Mincho","Hiragino Mincho ProN",serif;
  --sans:"Yu Mincho","Hiragino Mincho ProN",serif;
}

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

html {
  scroll-behavior: smooth
}
body{
    color:var(--text);
    background:#fffdfa;
}

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

img {
  display: block;
  width: 100%
}

button {
  font: inherit
}

.wrap {
  width: min(1160px, calc(100% - 80px));
  margin: auto
}

.section {
  padding: 115px 0
}

.en {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .28em;
  margin-bottom: 12px
}

.title {
  text-align: center;
  margin-bottom: 65px
}

.title h2 {
  font: 500 clamp(34px, 4vw, 53px)/1.4 var(--serif);
  color: var(--green);
  letter-spacing: .12em;
  margin-bottom: 20px
}

.title>p:last-child {
  color: #74766f
}

.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  height: 88px;
  padding: 0 38px;
  display: flex;
  align-items: center;
  color: #fff;
  transition: .4s
}

.header.scrolled {
  height: 74px;
  color: var(--dark);
  background: #fffffff2;
  box-shadow: 0 5px 25px #0001
}

.logo {
  display: flex;
  flex-direction: column;
  font-family: var(--serif);
  min-width: 180px
}

.logo small {
  font-size: 10px;
  letter-spacing: .28em
}

.logo strong {
  font-size: 25px;
  letter-spacing: .18em
}

.header nav {
  display: flex;
  gap: 27px;
  margin-left: auto;
  font: 14px var(--serif)
}

.header nav a {
  padding: 30px 0;
  position: relative
}

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

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

.hours-link {
  margin-left: 28px;
  border: 1px solid;
  padding: 11px 22px;
  font-size: 13px
}

.nav-btn {
  display: none;
  background: none;
  border: 0;
  color: inherit;
  margin-left: auto
}

.nav-btn i {
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
  margin: 7px
}

.hero {
  height: 100vh;
  min-height: 690px;
  position: relative;
  color: #fff;
  overflow: hidden
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.6s, transform 8s
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1)
}
.hero h1 ruby{
    ruby-position: over;
}

.hero h1 rt{
    font-size: 12px;
    color: #d9c496;
    letter-spacing: .15em;
    line-height: 1;
    font-weight: 400;
}

.shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #081d17a8, #081d1725), linear-gradient(0deg, #081d1766, transparent 50%)
}

.hero-copy {
  position: absolute;
  top: 50%;
  left: 9vw;
  transform: translateY(-45%)
}

.hero-copy>p {
  color: #d9c496;
  font-size: 12px;
  letter-spacing: .4em
}

.hero h1 {
  font: 400 clamp(48px, 7vw, 88px)/1.4 var(--serif);
  letter-spacing: .13em
}

.hero h1 em {
  color: #d9c496;
  font-style: normal
}

.hero h2 {
  font: 400 clamp(18px, 2vw, 27px) var(--serif);
  letter-spacing: .18em;
  margin-top: 18px
}

.dots {
  position: absolute;
  right: 45px;
  top: 50%;
  display: grid;
  gap: 15px
}

.dots button {
  width: 8px;
  height: 8px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: none
}

.dots button.active {
  background: #fff
}

.bread {
  padding: 20px 0;
  color: #777;
  font-size: 12px
}

.bread span {
  margin: 0 10px
}

.intro {
  background: radial-gradient(circle at 15% 20%, #a98a4914, transparent 28%)
}
.intro-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:70px;
  align-items:center;
}
.intro h2{
  font:500 clamp(28px,3vw,43px)/1.65 var(--serif);
  color:var(--green);
  letter-spacing:.06em;
  margin-bottom:30px;
  white-space:nowrap;
}

.intro p:not(.en) {
  color: #575a54;
  margin-bottom: 18px
}

.points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 38px
}

.points span {
  text-align: center;
  padding: 18px 6px;
  border-block: 1px solid #d2bd8f;
  color: var(--green);
  font: 14px var(--serif)
}

.intro-img {
  position: relative;
  padding: 0 0 35px 35px
}

.intro-img:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70%;
  height: 70%;
  background: var(--green)
}

.intro-img img {
  position: relative;
  aspect-ratio: 4/5;
  object-fit: cover
}

.intro-img figcaption {
  position: absolute;
  right: -15px;
  bottom: 55px;
  background: #fffffff0;
  padding: 15px 20px;
  color: var(--green);
  font: 13px var(--serif)
}

.recommend {
  background: var(--dark);
  color: #fff
}

.recommend .title h2 {
  color: #fff
}

.recommend .title>p:last-child {
  color: #ffffffaa
}

.feature {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 75px;
  align-items: center;
  margin-bottom: 120px
}

.feature.reverse {
  grid-template-columns: .85fr 1.15fr
}

.feature.reverse img {
  order: 2
}

.feature img {
  aspect-ratio: 16/10;
  object-fit: cover
}

.feature small {
  color: #d9c496;
  letter-spacing: .18em
}

.feature h3 {
  font: 500 clamp(31px, 4vw, 48px)/1.5 var(--serif);
  margin: 10px 0
}

.feature strong {
  display: block;
  color: #d9c496;
  font: 23px/1.7 var(--serif);
  margin-bottom: 20px
}

.feature strong span {
  font-size: 13px
}

.feature p {
  color: #ffffffb5
}

.menu-area {
  background: var(--ivory)
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-bottom: 45px
}

.tabs button {
  min-width: 165px;
  padding: 14px;
  border: 1px solid var(--green);
  background: none;
  color: var(--green);
  cursor: pointer
}

.tabs button.active,
.tabs button:hover {
  background: var(--green);
  color: #fff
}

.panel {
  display: none
}

.panel.active {
  display: block;
  animation: fade .5s
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px)
  }
}

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

.cards.three {
  grid-template-columns: repeat(3, 1fr)
}

.cards article {
  background: #fff;
  box-shadow: 0 10px 28px #173c3112;
  overflow: hidden
}

.cards img {
  height: 215px;
  object-fit: cover
}

.cards h3 {
  font: 500 19px/1.55 var(--serif);
  color: var(--green);
  padding: 20px 20px 8px
}

.cards h3 b {
  display: block;
  color: var(--gold);
  font-size: 16px
}

.cards p {
  color: #777;
  font-size: 12px;
  padding: 0 20px 22px
}

.note {
  text-align: center;
  color: #777;
  font-size: 20px;
  margin-top: 30px
}

.lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px
}

.lists section {
  background: #fff;
  padding: 35px;
  box-shadow: 0 10px 28px #173c3110
}

.lists h3 {
  font: 500 24px var(--serif);
  color: var(--green);
  border-bottom: 1px solid #d2bd8f;
  padding-bottom: 13px;
  margin-bottom: 20px
}

.lists dl>div {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  margin-bottom: 13px
}

.lists dl>div:after {
  content: "";
  border-bottom: 1px dotted #aaa;
  flex: 1;
  order: 2;
  transform: translateY(-7px)
}

.lists dt {
  order: 1;
  font-family: var(--serif)
}

.lists dd {
  order: 3;
  color: var(--gold);
  font-family: var(--serif)
}

.lists small {
  display: block;
  color: #777;
  font: 10px var(--sans)
}

.lists p {
  font-size: 11px;
  color: #777;
  margin-top: 15px
}

.rice {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  background: var(--green);
  color: #fff;
  min-height: 610px
}

.rice>div {
  background-size: cover;
  background-position: center
}

.rice article {
  padding: 75px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.rice h2 {
  font: 500 clamp(33px, 4vw, 50px) var(--serif);
  letter-spacing: .1em;
  margin-bottom: 25px
}

.rice article>p:last-child {
  color: #ffffffba
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px
}

.info-card {
  border: 1px solid var(--line);
  padding: 50px;
  background: #fff
}

.info-card h3 {
  text-align: center;
  font: 500 27px var(--serif);
  color: var(--green);
  margin-bottom: 30px
}

.time {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 0;
  border-top: 1px solid var(--line)
}

.time:nth-of-type(2) {
  border-bottom: 1px solid var(--line)
}

.time>b {
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font: 18px var(--serif)
}

.time strong {
  display: block;
  color: var(--green);
  font: 24px var(--serif)
}

.time small {
  color: #777
}

.info-card>small {
  display: block;
  color: #777;
  margin-top: 18px
}

.guide>div {
  display: grid;
  grid-template-columns: 120px 1fr;
  border-bottom: 1px solid var(--line);
  padding: 18px
}

.guide dt {
  color: var(--green);
  font-weight: 500
}

.guide a {
  color: var(--gold);
  font: 18px var(--serif)
}

.notice {
  padding-top: 0
}

.notice-box {
  max-width: 980px;
  padding: 55px 65px;
  border: 1px solid #d2bd8f;
  background: #fcfaf4
}

.notice-box>h2 {
  text-align: center;
  color: var(--green);
  font: 500 39px var(--serif);
  margin-bottom: 38px
}

.notice-box section+section {
  border-top: 1px solid var(--line);
  margin-top: 35px;
  padding-top: 35px
}

.notice h3 {
  text-align: center;
  color: var(--gold);
  font: 500 24px var(--serif);
  margin-bottom: 15px
}

.notice p {
  font-size: 17px;
  line-height: 2.1;
  margin-bottom: 8px
}

.cta {
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center
}

.cta:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #09251db0
}

.cta>div {
  position: relative;
  padding: 40px
}

.cta p {
  color: #d9c496;
  font-family: var(--serif)
}

.cta h2 {
  font: 500 clamp(33px, 5vw, 56px)/1.6 var(--serif);
  letter-spacing: .1em;
  margin: 15px 0 35px
}

.cta a {
  display: inline-block;
  border: 1px solid #ffffffaa;
  min-width: 300px;
  padding: 13px
}

.cta a strong {
  font: 24px var(--serif)
}

footer {
  background: #0c251e;
  color: #ffffffc9;
  padding: 75px 0 22px
}

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

.footer-grid h2 {
  font: 500 31px var(--serif);
  letter-spacing: .15em
}

.footer-grid p {
  font-size: 12px;
  margin: 16px 0
}

.footer-grid>div>a {
  color: #d9c496
}

.footer-grid nav {
  display: grid;
  grid-template-columns: repeat(2, 140px);
  gap: 13px;
  font-size: 12px
}

.copy {
  text-align: center;
  border-top: 1px solid #ffffff18;
  margin-top: 60px;
  padding-top: 20px;
  font-size: 9px;
  color: #ffffff55
}

#top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--green);
  background: #fffffff0;
  color: var(--green);
  opacity: 0;
  visibility: hidden;
  transition: .3s
}

#top.show {
  opacity: 1;
  visibility: visible
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: .85s
}

.reveal.show {
  opacity: 1;
  transform: none
}

@media(max-width:950px) {
  .header {
    height: 72px;
    padding: 0 20px
  }

  .nav-btn {
    display: block;
    z-index: 2
  }

  .header nav {
    position: fixed;
    inset: 0;
    background: #0d2921fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    color: #fff;
    transition: .4s
  }

  .header nav.open {
    opacity: 1;
    visibility: visible
  }

  .header nav a {
    padding: 12px;
    font-size: 18px
  }

  .hours-link {
    display: none
  }

  .intro-grid,
  .feature,
  .feature.reverse,
  .rice,
  .info-grid {
    grid-template-columns: 1fr
  }

  .feature.reverse img {
    order: 0
  }

  .feature {
    gap: 35px;
    margin-bottom: 85px
  }

  .rice>div {
    min-height: 420px
  }

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

@media(max-width:600px) {
  .wrap {
    width: calc(100% - 30px)
  }

  .section {
    padding: 72px 0
  }

  .hero {
    height: 84vh;
    min-height: 560px
  }

  .hero-copy {
    left: 24px;
    right: 24px
  }

  .dots {
    right: 17px
  }

  .intro h2 {
    font-size: 30px
  }

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

  .intro-img {
    padding: 0 0 22px 22px
  }

  .tabs {
    display: grid;
    grid-template-columns: 1fr 1fr
  }

  .tabs button {
    min-width: 0;
    font-size: 12px
  }

  .cards,
  .cards.three,
  .lists {
    grid-template-columns: 1fr
  }

  .cards img {
    height: 230px
  }

  .rice article {
    padding: 50px 25px
  }

  .info-card {
    padding: 34px 22px
  }

  .notice-box {
    padding: 40px 21px
  }

  .notice-box>h2 {
    font-size: 31px
  }

  .notice h3 {
    font-size: 21px
  }

  .notice p {
    font-size: 16px
  }

  .cta {
    background-attachment: scroll
  }

  .footer-grid {
    flex-direction: column;
    gap: 45px
  }

  .footer-grid nav {
    grid-template-columns: 1fr 1fr
  }
}

/* 定食メニュー：2段目の3品を中央寄せ */
@media (min-width: 951px) {
  #set .cards article:nth-child(5) {
    grid-column: 1;
    transform: translateX(calc(50% + 12px));
  }

  #set .cards article:nth-child(6) {
    grid-column: 2;
    transform: translateX(calc(50% + 12px));
  }

  #set .cards article:nth-child(7) {
    grid-column: 3;
    transform: translateX(calc(50% + 12px));
  }
}