@charset "UTF-8";

*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, ul, ol, li, dl, dt, dd, figure, blockquote {
  margin: 0; padding: 0;
}
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; vertical-align: bottom; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
table { border-collapse: collapse; }

:root {
  --color-bg:          #181818;
  --color-fg:          #ffffff;
  --color-bg-invert:   #ffffff;
  --color-fg-invert:   #131313;
  --color-sub:         #cfcfcf;
  --color-gray:        #919191;
  --color-gray-dark:   #787878;
  --color-line:        rgba(255, 255, 255, 0.55);
  --color-line-invert: rgba(19, 19, 19, 0.35);

  --font-body: "游明朝", YuMincho, "Hiragino Mincho ProN", "HGS明朝E",
               "Noto Serif JP", "ＭＳ Ｐ明朝", serif;
  --font-head: "Shippori Mincho", var(--font-body);
  --font-latin: "Bodoni Moda", "Times New Roman", serif;

  --wrap: 1000px;
  --header-h: 96px;
}

html[lang="zh-Hans"] { --font-body: "Noto Serif SC", "Source Han Serif SC", "SimSun", serif; }
html[lang="zh-Hant"] { --font-body: "Noto Serif TC", "Source Han Serif TC", "PMingLiU", serif; }
html[lang="ko"]      { --font-body: "Noto Serif KR", "Source Han Serif K", "Batang", serif; }
html[lang="en"]      { --font-body: "Bodoni Moda", "Times New Roman", serif; }

body {
  background: var(--color-bg);
  color: var(--color-fg);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 34px;
  letter-spacing: 3px;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

html[lang="en"] body { letter-spacing: 1px; }

main { display: block; width: 100%; position: relative; overflow: hidden; }

.wrap { width: auto; max-width: 100%; padding: 0 11%; margin: 0 auto; position: relative; }

.fnt-latin { font-family: var(--font-latin); }
.fnt-head  { font-family: var(--font-head); }

.txt { text-align: justify; }
.text-sh { text-shadow: 0 0 20px #000, 0 0 20px #000, 0 0 20px #000; }
.box-sh  { box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); }

.pc-only { display: none !important; }
.sp-only { display: block !important; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

.ttl {
  margin-bottom: 11vw;
}
.ttl .ttl-main {
  display: block;
  font-family: var(--font-head);
  font-size: 7vw;
  line-height: 1.5;
  letter-spacing: 0.3em;
  margin-bottom: 4vw;
}
.ttl .ttl-sub {
  display: block;
  font-family: var(--font-latin);
  font-size: 3.5vw;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.15em;
  color: var(--color-sub);
}

.btn-cus {
  position: relative;
  width: 400px;
  max-width: 100%;
  margin-bottom: 22px;
}
.btn-cus::before {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid var(--color-fg);
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.btn-cus > a {
  display: block;
  position: relative;
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding-left: 10%;
  padding-right: 24%;
  font-family: var(--font-head);
  font-size: 16px;
  letter-spacing: 1.5px;
  color: var(--color-fg);
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.btn-cus > a > span { position: relative; z-index: 2; }
.btn-cus > a::after,
.btn-cus > a > i { z-index: 2; }
.btn-cus > a .streak {
  position: absolute; display: block; z-index: 1; pointer-events: none;
}
.btn-cus > a .streak1 {
  top: 0; left: -100%; width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-fg));
}
.btn-cus > a:hover .streak1 { left: 100%; transition: 0.75s; }
.btn-cus > a .streak2 {
  top: -100%; right: 0; width: 2px; height: 100%;
  background: linear-gradient(180deg, transparent, var(--color-fg));
}
.btn-cus > a:hover .streak2 { top: 100%; transition: 1s; transition-delay: 0.25s; }
.btn-cus > a .streak3 {
  bottom: 0; right: -100%; width: 100%; height: 2px;
  background: linear-gradient(270deg, transparent, var(--color-fg));
}
.btn-cus > a:hover .streak3 { right: 100%; transition: 0.5s; transition-delay: 0.6s; }
.btn-cus > a .streak4 {
  bottom: -100%; left: 0; width: 2px; height: 100%;
  background: linear-gradient(45deg, transparent, var(--color-fg));
}
.btn-cus > a:hover .streak4 { bottom: 100%; transition: 0.5s; transition-delay: 0.75s; }

.btn-cus:hover::before { opacity: 0; }
.btn-cus > a:hover {
  color: var(--color-bg);
  background: var(--color-fg);
  box-shadow: 0 0 10px var(--color-fg), 0 0 40px var(--color-fg), 0 0 80px var(--color-fg);
  transition-delay: 0.9s;
}
.btn-cus > a:hover::after,
.btn-cus > a:hover > i { transition-delay: 0.9s; }

.btn-cus > a::after {
  content: "";
  position: absolute; top: 50%; right: 8%;
  width: 40px; height: 1px;
  background: currentColor;
  transform: translateY(-50%);
  transition: background 0.3s ease;
}
.btn-cus > a > i {
  position: absolute; top: 50%; right: 8%;
  width: 9px; height: 9px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.3s ease;
}

.invert .btn-cus::before { border-color: var(--color-fg-invert); }
.invert .btn-cus > a { color: var(--color-fg-invert); }
.invert .btn-cus > a .streak1 { background: linear-gradient(90deg, transparent, var(--color-fg-invert)); }
.invert .btn-cus > a .streak2 { background: linear-gradient(180deg, transparent, var(--color-fg-invert)); }
.invert .btn-cus > a .streak3 { background: linear-gradient(270deg, transparent, var(--color-fg-invert)); }
.invert .btn-cus > a .streak4 { background: linear-gradient(45deg, transparent, var(--color-fg-invert)); }
.invert .btn-cus > a:hover {
  color: var(--color-bg-invert);
  background: var(--color-fg-invert);
  box-shadow: 0 0 10px rgba(19, 19, 19, 0.45),
              0 0 40px rgba(19, 19, 19, 0.28),
              0 0 80px rgba(19, 19, 19, 0.18);
}

.btn-reserve { width: 340px; }
.btn-reserve > a { font-family: var(--font-latin); }

.site-header {
  position: relative;

  z-index: 130;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.site-header .logo {
  display: block;
  width: 45%;
  max-width: 210px;
  margin: 0 auto;
  padding: 30px 0 34px;
  text-align: center;
}
.site-header .logo-name {
  display: block;
  font-family: var(--font-head);
  font-size: 19px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.site-header .logo-sub {
  display: block;
  font-family: var(--font-latin);
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.34em;
  color: var(--color-sub);
  margin-top: 6px;
}
.site-header .head-note {
  display: none;
  order: 3;
  width: 100%;
  padding: 0 11% 20px;
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 1px;
  color: var(--color-gray);
  text-align: center;
  font-weight: normal;
}

.head-nav { display: none; }

.hamburger {
  position: relative;
  width: 50px; height: 50px;
  flex-shrink: 0;
  z-index: 201;
}
.hamburger span,
.hamburger span::before,
.hamburger span::after {
  position: absolute;
  width: 35px; height: 2px;
  background: var(--color-fg);
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.hamburger span {
  top: 39%; left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.hamburger span::before { content: ""; left: 0; top: 8px; }
.hamburger span::after  { content: ""; left: 0; top: -8px; }
.hamburger::after {
  content: "menu";
  position: absolute; left: 0; bottom: 0; width: 100%;
  font-family: var(--font-latin);
  font-size: 15px; line-height: 20px; letter-spacing: 1px;
  text-align: center;
}
.hamburger.is-open span { transform: translate3d(-50%, -50%, 0) rotate(135deg); }
.hamburger.is-open span::before { opacity: 0; }
.hamburger.is-open span::after  { transform: rotate(-90deg); top: 0; }
.hamburger.is-open::after { content: "close"; }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--color-bg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.drawer.is-open { opacity: 1; visibility: visible; }
.drawer-inner { display: flex; min-height: 100%; }
.drawer-photo { display: none; }
.drawer-menu {
  width: 100%;
  padding: 96px 11% 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.drawer .nav { margin: 0 auto 21px; }
.drawer .nav li { text-align: center; }
.drawer .nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 2px 22px;
  font-family: var(--font-latin);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  min-height: 44px;
}
.drawer .nav a::after {
  content: "";
  position: absolute; bottom: 8px; left: 6px;
  width: 0; height: 1px;
  background: var(--color-fg);
  transition: width 0.4s ease;
}
.drawer .nav a.is-current::after,
.drawer .nav a:hover::after { width: 20px; }

.drawer .sub-links {
  display: flex; justify-content: center; gap: 18px;
  font-family: var(--font-latin);
  font-size: 13px; font-weight: 500; letter-spacing: 1px;
  color: var(--color-gray);
  margin: 0 auto 16px;
}
.drawer .sub-links a { min-height: 44px; display: inline-flex; align-items: center; }
.drawer .reserve-block { display: flex; justify-content: center; margin: 10px 0 20px; }
.drawer .reserve-block .btn-cus { margin-bottom: 0; }
.drawer .tel-block { text-align: center; margin-bottom: 22px; line-height: 1.9; }
.drawer .tel-block .tel-label { display: block; font-size: 13px; color: var(--color-sub); }
.drawer .tel-block .tel-num {
  font-family: var(--font-latin);
  font-size: 24px; letter-spacing: 2px;
  display: inline-flex; align-items: center; min-height: 44px;
}

.sns { display: flex; justify-content: center; gap: 14px; margin: 0 auto 30px; }
.sns a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  color: var(--color-fg);
}
.sns a:hover { opacity: 0.7; }

.lang-list {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 14px;
}
.lang-list a {
  display: inline-flex; align-items: center;
  min-height: 44px;
  font-size: 12px; letter-spacing: 1px;
  color: var(--color-gray);
}
.lang-list a.is-current, .lang-list a:hover { color: var(--color-fg); }

.header-fix {
  position: absolute;
  top: 17px; right: 4%;

  z-index: 210;
}
.header-fix .row { display: flex; align-items: center; }

.header-fix .btn-reserve { display: none; }

body.menu-open .header-fix {
  position: fixed;
  top: 17px; right: 4%;
  background: none;
  padding: 0;
}
body.menu-open .header-fix .btn-reserve { display: none !important; }

.hero { position: relative; }
.hero-box {
  position: relative;
  width: 90%;
  margin: 5vw auto;
  aspect-ratio: 1800 / 1013;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slides li {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero-slides li.is-active { opacity: 1; }

.hero-box::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 62%;
  z-index: 3;
  background: linear-gradient(to top, rgba(0, 0, 0, .78), rgba(0, 0, 0, 0));
  pointer-events: none;
}
.hero-ttl {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 7%;
  z-index: 4;
  margin: 0;
  color: #fff;
  font-family: var(--font-head);
  font-size: 5.6vw;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.12em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .55);
}
.hero-slides img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.scroll-badge {
  position: absolute;
  right: 8%; bottom: -14vw;
  width: 96px; height: 96px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-fg);
}
.scroll-badge-orbit {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  animation: spin 22s linear infinite;
}
.scroll-badge-orbit circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.65);
  stroke-width: 1;
  stroke-dasharray: 2 9;
  stroke-linecap: round;
}
.scroll-badge-arrow { width: 14px; height: 22px; }
.scroll-badge-label {
  position: absolute;
  top: 100%; left: 0; right: 0;
  margin-top: 10px;
  font-family: var(--font-latin);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 3.5px;
  text-indent: 3.5px;
  text-align: center;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.85);
}
@keyframes spin { to { transform: rotate(360deg); } }

.head-info { display: none; }

.section { position: relative; }

.sec-concept {
  position: relative;
  padding: 15vw 0 0;
  margin-top: 20vw;
  margin-bottom: -32vw;
}
.sec-concept .ttl { text-align: left; }

.sec-concept .ttl,
.sec-concept .txt { text-shadow: 0 0 20px #000, 0 0 20px #000, 0 0 20px #000; }
.sec-concept .bg {
  margin: -37vw -50% 0;
  position: relative;
  z-index: -1;
  opacity: 0.5;
}
.sec-concept .bg::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(24, 24, 24, 0.35);
}
.sec-concept .bg img { width: 100%; }

.sec-greeting { position: relative; padding: 15vw 0; }
.sec-greeting .photo { width: 73%; margin: 0 auto 17vw; }
.sec-greeting .lead li { margin-bottom: 13vw; }
.sec-greeting .lead li:last-child { margin-bottom: 8vw; }

.invert {
  position: relative;
  background: var(--color-bg-invert);
  color: var(--color-fg-invert);
  padding: 22vw 0 20vw;
  margin-top: 54vw;
}
.invert .ttl .ttl-sub { color: var(--color-gray-dark); }
.invert::before, .invert::after {
  content: "";
  position: absolute; left: 0; right: 0; height: 10vw;
  background: var(--color-bg-invert);
}
.invert::before { top: -9.5vw; clip-path: polygon(0 100%, 100% 0, 100% 100%); }
.invert::after  { bottom: -9.5vw; clip-path: polygon(0 0, 100% 0, 0 100%); }
.invert .time {
  font-family: var(--font-head);
  font-size: 5vw; line-height: 1.9; letter-spacing: 0.12em;
  margin-bottom: 6vw;
}
.invert .note-box {
  border: 1px solid var(--color-line-invert);
  padding: 7vw 6vw;
  margin: 8vw 0;
}
.invert .note-box li { position: relative; padding-left: 1.1em; margin-bottom: 1em; }
.invert .note-box li:last-child { margin-bottom: 0; }
.invert .note-box li::before { content: "・"; position: absolute; left: 0; }
.invert .reserve-head {
  font-family: var(--font-latin);
  font-size: 22px; letter-spacing: 0.2em;
  margin-bottom: 5vw;
}
.invert .reserve-block { display: flex; flex-direction: column; align-items: center; }

.sec-info { padding: 18vw 0 12vw; }
.sec-info .brand { text-align: center; margin-bottom: 8vw; }
.sec-info .brand-name {
  font-family: var(--font-head);
  font-size: 6.4vw; line-height: 1.6; letter-spacing: 0.22em;
}
.sec-info .brand-sub {
  font-family: var(--font-latin);
  font-size: 3.2vw; letter-spacing: 0.3em; color: var(--color-sub);
  margin-top: 3vw;
}
.sec-info .tel-block { text-align: center; margin-bottom: 7vw; line-height: 2; }
.sec-info .tel-label { display: block; font-size: 13px; color: var(--color-sub); }
.sec-info .tel-num {
  font-family: var(--font-latin);
  font-size: 26px; letter-spacing: 2px;
  display: inline-flex; align-items: center; min-height: 44px;
}
.sec-info .reserve-block { display: flex; justify-content: center; margin-bottom: 6vw; }
.sec-info .sns { margin-bottom: 10vw; }

.info-list dl {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 5vw 0;
}
.info-list dl:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
.info-list dt {
  width: 34%;
  font-family: var(--font-head);
  color: var(--color-sub);
  letter-spacing: 0.1em;
}
.info-list dd { width: 66%; }
.info-list .note-sm {
  display: block;
  font-size: 12px; line-height: 1.9;
  color: var(--color-gray);
  margin-top: 6px;
}

.gmap { margin-top: 14vw; }
.gmap .map-frame { position: relative; width: 100%; height: 70vw; max-height: 450px; }
.gmap .map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.gmap .map-actions { display: flex; justify-content: center; margin-top: 8vw; }

.sec-instagram { padding: 16vw 0 4vw; }
.sec-instagram[hidden] { display: none !important; }
.insta-embed { min-height: 1px; }
.insta-foot { display: flex; justify-content: center; margin-top: 8vw; }

.page-head { padding: 12vw 0 0; }
.page-head .ttl { margin-bottom: 8vw; }
.page-hero { width: 90%; margin: 0 auto 14vw; aspect-ratio: 1800 / 1013; overflow: hidden; }
.page-hero img { width: 100%; height: 100%; object-fit: cover; }

.course-list { padding-bottom: 6vw; }
.course-item {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 10vw 0;
}
.course-list .course-item:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
.course-meal {
  font-family: var(--font-latin);
  font-size: 12px; letter-spacing: 0.24em; color: var(--color-gray);
  display: block; margin-bottom: 3vw;
}
.course-name {
  font-family: var(--font-head);
  font-size: 5.4vw; line-height: 1.8; letter-spacing: 0.08em;
  margin-bottom: 4vw;
}
.course-price {
  font-family: var(--font-latin);
  font-size: 6vw; letter-spacing: 0.06em;
  margin-bottom: 5vw;
}
.course-desc { margin-bottom: 5vw; }
.course-dishes li {
  border-bottom: 1px dotted rgba(255, 255, 255, 0.22);
  padding: 2vw 0;
}
.course-note { margin-top: 5vw; font-size: 12px; line-height: 2; color: var(--color-gray); }
.course-foot { margin-top: 10vw; font-size: 12px; line-height: 2.2; color: var(--color-gray); }
.course-foot li { margin-bottom: 4px; }

.duo { padding: 14vw 0; }
.duo .photo { width: 90%; margin: 0 auto 8vw; }
.duo .duo-body { margin-bottom: 4vw; }
.duo .duo-ttl {
  font-family: var(--font-head);
  font-size: 5.6vw; line-height: 1.8; letter-spacing: 0.16em;
  margin-bottom: 5vw;
}
.duo .duo-en {
  display: block;
  font-family: var(--font-latin);
  font-size: 3.2vw; letter-spacing: 0.2em; color: var(--color-sub);
  margin-bottom: 3vw;
}

.site-footer {
  padding: 16vw 0 30vw;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}
.site-footer .footer-brand {
  font-family: var(--font-head);
  font-size: 5.6vw; letter-spacing: 0.22em;
}
.site-footer .footer-sub {
  font-family: var(--font-latin);
  font-size: 3vw; letter-spacing: 0.3em; color: var(--color-sub);
  margin: 3vw 0 8vw;
}
.site-footer .footer-list { text-align: left; margin-bottom: 8vw; }
.site-footer .footer-list dl { margin-bottom: 5vw; line-height: 2; }
.site-footer .footer-list dt {
  font-family: var(--font-head);
  font-size: 12px; letter-spacing: 0.14em; color: var(--color-sub);
}
.site-footer .footer-nav {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0 20px;
  font-family: var(--font-latin);
  font-size: 13px; letter-spacing: 0.16em;
  margin-bottom: 10px;
}
.site-footer .footer-nav a { display: inline-flex; align-items: center; min-height: 44px; }
.site-footer .footer-tel { margin-bottom: 6px; }
.site-footer .footer-tel a {
  font-family: var(--font-latin);
  font-size: 20px; letter-spacing: 2px;
  display: inline-flex; align-items: center; min-height: 44px;
}
.site-footer .footer-copy {
  font-size: 11px; letter-spacing: 1px; color: var(--color-gray);
  margin-top: 18px;
}

.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 120;
  display: flex;
  background: rgba(24, 24, 24, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.sticky-cta > div { flex: 1; }
.sticky-cta a {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  height: 56px;
  font-family: var(--font-latin);
  font-size: 14px; letter-spacing: 0.12em;
}
.sticky-cta .btn-web a { background: var(--color-fg); color: var(--color-fg-invert); }

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-in.is-in { opacity: 1; transform: none; }

.img-change img { filter: grayscale(100%); }
.img-change.is-in img {
  animation: grayscale-off 3s ease 1s forwards;
}
@keyframes grayscale-off {
  from { filter: grayscale(100%); }
  to   { filter: grayscale(0); }
}

@media only screen and (min-width: 768px) {
  body { font-size: 16px; line-height: 45px; }

  .wrap { width: var(--wrap); max-width: calc(100% - 80px); padding: 0; }

  .pc-only { display: block !important; }
  .sp-only { display: none !important; }

  .ttl { margin-bottom: 50px; }
  .ttl .ttl-main { font-size: 32px; margin-bottom: 14px; }
  .ttl .ttl-sub  { font-size: 16px; letter-spacing: 1.5px; }

  .btn-cus { width: 421px; }
  .btn-cus > a {
    height: 78px; line-height: 78px;
    font-size: 20px;
    padding-left: 60px; padding-right: 120px;
  }
  .btn-cus > a::after { width: 44px; right: 9%; }
  .btn-cus > a > i { right: 9%; width: 11px; height: 11px; }

  .btn-reserve { width: 340px; }
  .btn-reserve > a { padding-left: 30px; padding-right: 76px; }
  .btn-reserve > a::after { width: 30px; right: 20px; }
  .btn-reserve > a > i { right: 20px; }

  .site-header {
    height: var(--header-h);
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0 26px 0 24px;
    border-bottom: 0;
  }
  .site-header .logo {
    width: auto; max-width: none;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    text-align: left;
  }
  .site-header .logo-name { font-size: 20px; }
  .site-header .logo-sub {
    font-size: 9px;
    letter-spacing: 0.24em;
    margin-top: 3px;
    white-space: nowrap;
  }

  .site-header .head-note {
    display: block;
    position: absolute;
    top: 156px; left: 34px;
    width: 22px; height: 560px; padding: 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 12px;
    letter-spacing: 2px;
    line-height: 1.8;
    text-align: left;
    color: var(--color-fg);
  }

  body:not([data-page="home"]) .site-header .head-note { display: none; }

  .head-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
    min-width: 0;
  }
  .head-nav .nav { display: flex; gap: 0; }
  .head-nav .nav a {
    position: relative;
    display: inline-flex; align-items: center;
    min-height: 44px;
    padding: 0 11px;
    font-family: var(--font-latin);
    font-size: 14px; letter-spacing: 1.6px;
    white-space: nowrap;
  }
  .head-nav .nav a::after {
    content: "";
    position: absolute; bottom: 8px; left: 4px;
    width: 0; height: 1px; background: var(--color-fg);
    transition: width 0.4s ease;
  }
  .head-nav .nav a.is-current::after,
  .head-nav .nav a:hover::after { width: 20px; }
  .head-nav .sns { margin: 0; gap: 0; }
  .head-nav .sns a { width: 36px; height: 36px; }
  .head-nav .lang-list { gap: 0 9px; flex-wrap: nowrap; }
  .head-nav .lang-list a { min-height: 36px; font-size: 11px; white-space: nowrap; }

  .hamburger {
    margin-left: 18px;
    width: 36px; height: 30px;
    flex-shrink: 0;
  }
  .hamburger::after { display: none; }

  body.menu-open .hamburger::after {
    display: block;
    bottom: -20px;
    font-size: 13px;
  }
  body.menu-open .header-fix { top: 20px; right: 26px; }

  .header-fix {
    position: static;
    margin-left: 16px;
    flex-shrink: 0;
  }
  .header-fix .btn-reserve {
    display: block;
    width: 224px; margin: 0;
  }
  .header-fix .btn-reserve > a {
    height: 46px; line-height: 46px; font-size: 13px;
    padding-left: 18px; padding-right: 48px;
  }
  .header-fix .btn-reserve > a::after { width: 20px; right: 14px; }
  .header-fix .btn-reserve > a > i { right: 14px; }
  .is-fixed .header-fix {
    position: fixed;
    top: 0; right: 0;
    background: rgba(24, 24, 24, 0.92);
    padding: 8px 16px;
  }

  .drawer-inner { min-height: 100vh; }
  .drawer-photo {
    display: block;
    width: 50%;
    background-size: cover;
    background-position: center bottom;
    filter: grayscale(35%) brightness(0.62);
  }
  .drawer-menu {
    width: 50%;

    padding: 90px 40px 60px 120px;
    justify-content: center;
  }
  .drawer .btn-cus { width: 100%; max-width: 340px; }
  .drawer .nav { margin: 0 0 24px; }
  .drawer .nav li { text-align: left; }
  .drawer .nav a { font-size: 16px; padding: 1px 11px; margin: 0 12px; }
  .drawer .nav a::after { bottom: 12px; left: -20px; }
  .drawer .sub-links { justify-content: flex-start; margin-left: 23px; }
  .drawer .tel-block { text-align: left; margin-left: 23px; }
  .drawer .tel-block .tel-num { font-size: 26px; }
  .drawer .reserve-block { justify-content: flex-start; margin-left: 23px; }
  .drawer .sns { justify-content: flex-start; margin: 0 0 30px 15px; }
  .drawer .lang-list { justify-content: flex-start; margin-left: 23px; }

  .hero-box {
    width: 100%;
    height: 698px;
    aspect-ratio: auto;
    margin: 0 auto;
    padding-left: 100px;
    background: var(--color-bg);
  }
  .hero-box .hero-slides { left: 100px; }
  .hero-box::after { height: 48%; }
  .hero-ttl {
    left: 5%;
    right: auto;
    bottom: 8%;
    font-size: 32px;
    letter-spacing: 0.16em;
  }
  .scroll-badge { width: 145px; height: 145px; right: 71px; bottom: -90px; }
  .scroll-badge-arrow { width: 18px; height: 28px; }
  .scroll-badge-label { margin-top: 14px; font-size: 12px; }

  .sec-concept {
    padding: 105px 0 490px;
    margin-top: 200px;
    margin-bottom: -100px;
  }
  .sec-concept .ttl { margin-left: 140px; }
  .sec-concept .txt { width: 440px; margin-left: auto; }
  .sec-concept .bg {
    position: absolute;
    top: 190px; left: 0;
    width: 100%;
    margin: 0;
  }

  .sec-greeting { padding: 126px 0 150px; }
  .sec-greeting .photo {
    position: absolute;
    right: 8px; top: 200px;
    width: 428px;
    margin: 0;
  }
  .sec-greeting .lead { width: 550px; }
  .sec-greeting .lead li { margin-bottom: 43px; }
  .sec-greeting .lead li:last-child { margin-bottom: 60px; }

  .invert { padding: 170px 0 150px; margin-top: 170px; }
  .invert::before, .invert::after { height: 90px; }
  .invert::before { top: -89px; }
  .invert::after  { bottom: -89px; }
  .invert .time { font-size: 26px; margin-bottom: 30px; }
  .invert .note-box { padding: 36px 44px; margin: 44px 0; max-width: 720px; }
  .invert .reserve-head { margin-bottom: 26px; }
  .invert .reserve-row { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
  .invert .reserve-block { flex-direction: row; gap: 24px; }

  .sec-info { padding: 150px 0 110px; }
  .sec-info .brand { margin-bottom: 40px; }
  .sec-info .brand-name { font-size: 34px; }
  .sec-info .brand-sub { font-size: 13px; margin-top: 12px; }
  .sec-info .tel-block { margin-bottom: 26px; }
  .sec-info .reserve-block { margin-bottom: 40px; }
  .sec-info .sns { margin-bottom: 60px; }

  .info-list { display: flex; flex-wrap: wrap; gap: 0 60px; }
  .info-list dl { width: calc(50% - 30px); padding: 20px 0; }
  .info-list dt { width: 30%; }
  .info-list dd { width: 70%; }

  .gmap { margin-top: 90px; }
  .gmap .map-frame { height: 450px; }
  .gmap .map-actions { margin-top: 40px; }

  .sec-instagram { padding: 140px 0 20px; }
  .insta-foot { margin-top: 40px; }

  .page-head { padding: 90px 0 0; }
  .page-head .ttl { margin-bottom: 50px; }
  .page-hero { width: 100%; height: 505px; aspect-ratio: auto; margin-bottom: 120px; }
  .course-item { padding: 60px 0; display: flex; flex-wrap: wrap; gap: 0 60px; }
  .course-head { width: 340px; }
  .course-body { width: calc(100% - 400px); }
  .course-name { font-size: 24px; margin-bottom: 18px; }
  .course-price { font-size: 30px; margin-bottom: 0; }
  .course-desc { margin-bottom: 24px; }
  .course-dishes li { padding: 6px 0; }
  .course-note { margin-top: 24px; }
  .course-foot { margin-top: 80px; }

  .duo { padding: 120px 0; }
  .duo .duo-set { display: flex; align-items: center; gap: 60px; }
  .duo .duo-set.is-reverse { flex-direction: row-reverse; }
  .duo .photo { width: 500px; margin: 0; flex-shrink: 0; }
  .duo .duo-body { flex: 1; margin: 0; }
  .duo .duo-ttl { font-size: 26px; margin-bottom: 24px; }
  .duo .duo-en { font-size: 14px; margin-bottom: 10px; }

  .site-footer { padding: 108px 0 90px; }
  .site-footer .footer-brand { font-size: 30px; }
  .site-footer .footer-sub { font-size: 12px; margin: 12px 0 44px; }
  .site-footer .footer-list {
    display: flex; flex-wrap: wrap; gap: 0 60px;
    max-width: 860px; margin: 0 auto 44px;
  }
  .site-footer .footer-list dl { width: calc(50% - 30px); margin-bottom: 18px; }
  .site-footer .footer-nav { margin-bottom: 14px; }
  .site-footer .footer-copy { margin-top: 24px; }

  .sticky-cta { display: none; }
}

@media only screen and (min-width: 768px) and (max-width: 1259px) {
  .head-nav .lang-list { display: none; }
}
@media only screen and (min-width: 768px) and (max-width: 1059px) {
  .head-nav .sns { display: none; }
}
@media only screen and (min-width: 768px) and (max-width: 899px) {
  .head-nav .nav { display: none; }
}

@media only screen and (min-width: 768px) and (max-width: 1039px) {
  .sec-concept { padding: 90px 0 300px; margin-top: 120px; margin-bottom: -60px; }
  .sec-concept .ttl { margin-left: 0; }
  .sec-concept .txt { width: 100%; margin-left: 0; }
  .sec-concept .bg { top: 150px; }

  .sec-greeting { padding: 100px 0 110px; }
  .sec-greeting .photo {
    position: static;
    width: 60%; max-width: 428px;
    margin: 0 0 40px auto;
  }
  .sec-greeting .lead { width: 100%; }

  .duo .duo-set { gap: 40px; }
  .duo .photo { width: 44%; }

  .course-head { width: 260px; }
  .course-body { width: calc(100% - 300px); }

  .site-footer .footer-list { max-width: 100%; }

  .drawer-menu { padding: 90px 24px 60px 32px; }
  .drawer .nav a { margin: 0; }
  .drawer .sub-links,
  .drawer .tel-block,
  .drawer .reserve-block,
  .drawer .lang-list { margin-left: 0; }
  .drawer .sns { margin-left: 0; }
}

@media only screen and (min-width: 1600px) {
  .hero-box { max-width: 1600px; }
}

@media only screen and (max-width: 380px) {
  .ttl .ttl-main { font-size: 26px; }
  .btn-cus > a { padding-left: 8%; padding-right: 26%; font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in { opacity: 1; transform: none; }
  .img-change img { filter: none; }
  .scroll-badge-orbit { animation: none; }
  .hero-slides li { transition: none; }
}
