:root {
  --bg: #111212;
  --panel: #1b1d1c;
  --text: #eeeae2;
  --muted: #c7c5bd;
  --gold: #c8aa71;
  --button: #c98c45;
  --line: #514839;
  --nav: 210px;
}

/* =========================
   基本設定
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    "Book Antiqua",
    "Palatino Linotype",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;
  letter-spacing: 0.06em;
  line-height: 1.8;
  font-size: 17px;
}

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

button {
  font: inherit;
  cursor: pointer;
}

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

p {
  margin: 0 0 1.2em;
}

h1,
h2,
h3 {
  font-weight: 400;
  margin: 0;
}

h2 {
  font-size: clamp(25px, 2.5vw, 36px);
  line-height: 1.65;
  margin-bottom: 24px;
  text-wrap: balance;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid #edcc8e;
  outline-offset: 6px;
}

/* =========================
   アクセシビリティ
========================= */

.skip {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: white;
  color: black;
  padding: 12px;
}

.skip:focus {
  top: 10px;
}

/* =========================
   サイドバー
========================= */

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--nav);
  background: #090a0a;
  padding: 35px 27px;
  z-index: 20;
  overflow-y: auto;
  text-align: center;
}

.brand {
  display: block;
  width: 156px;
  margin: 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.area {
  color: var(--gold);
  font-size: 14px;
  margin: 20px 0 70px;
  text-align: center;
}

.sidebar nav {
  text-align: center;
}

nav>a {
  display: block;
  margin: 0 0 24px;
  font-size: 16px;
  transition: color 0.3s;
}

nav>a:hover {
  color: var(--button);
}

.nav-toggle {
  display: none;
}

/* =========================
   サイドバー お問い合わせ
========================= */

.side-contact {
  border-top: 1px solid var(--line);
  margin-top: 55px;
  padding-top: 22px;
  text-align: center;
}

.side-contact>span {
  font-size: 13px;
  color: var(--gold);
}

.side-phone-list {
  margin: 10px 0 28px;
}

.side-phone {
  display: block;
  white-space: nowrap;
  letter-spacing: 0;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.side-phone:last-child {
  margin-bottom: 0;
}

.side-phone small {
  display: block;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.side-phone:hover {
  color: var(--button);
}

.instagram {
  display: flex;
  gap: 15px;
  align-items: center;
}

.instagram img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
}

.instagram:hover img {
  opacity: 0.7;
}

.side-contact .instagram {
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--gold);
  text-align: center;
}

/* =========================
   メイン・共通
========================= */

main,
footer {
  margin-left: var(--nav);
}

.hero-copy,
.welcome,
.section,
.owner-heading,
.owner-text,
.gallery,
.access-grid,
.access-info,
footer {
  text-align: center;
}

.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 75px 60px 0;
}

.eyebrow {
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 22px;
}

.muted {
  color: var(--muted);
}

/* =========================
   ヒーロー
========================= */

.hero {
  display: grid;
  grid-template-columns: 47% 53%;
  min-height: 710px;
  background: #161817;
}

.hero-copy {
  padding: 65px 45px 45px 60px;
}

.hero h1 {
  font-size: clamp(33px, 3.5vw, 52px);
  line-height: 1.7;
  letter-spacing: 0.06em;
  margin: 65px 0 35px;
  white-space: nowrap;
}

.lead {
  font-size: 21px;
  line-height: 1.9;
}

.shop-name {
  color: var(--gold);
  font-size: 25px;
  margin: 35px 0;
}

.hours {
  font-size: 14px;
  color: var(--muted);
  margin-top: 38px;
}

/* =========================
   ボタン
========================= */

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  width: 260px;
  max-width: 100%;
  padding: 8px 16px;
  background: transparent;
  color: #fff;
  border: 1px solid var(--button);
  border-radius: 26px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.button:hover {
  background: var(--button);
  color: #000;
}

.hero .button {
  width: 300px;
}

/* =========================
   ヒーロー カルーセル
========================= */

.carousel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #111;
}

.slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg,
      transparent 60%,
      rgba(0, 0, 0, 0.42) 100%);
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.4s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
  animation: heroZoom 5s linear forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.045);
  }
}

/* =========================
   カルーセル操作
========================= */

.carousel-controls {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 14px;
  transform: translateX(-50%);
  background: rgba(10, 10, 10, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.dots button {
  position: relative;
  width: 24px;
  height: 20px;
  padding: 0;
  border: 0;
  background: transparent;
}

.dots button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  transform: translateY(-50%);
  transition:
    background-color 0.4s ease,
    width 0.4s ease;
}

.dots button[aria-current="true"] {
  width: 40px;
}

.dots button[aria-current="true"]::after {
  background: var(--gold);
}

/* =========================
   再生・一時停止
========================= */

.pause {
  position: relative;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: #fff;
  opacity: 0.8;
}

.pause:hover {
  color: var(--gold);
  opacity: 1;
}

.pause.is-playing::before,
.pause.is-playing::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2px;
  height: 12px;
  border-radius: 2px;
  background: currentColor;
  transform: translateY(-50%);
}

.pause.is-playing::before {
  left: 12px;
}

.pause.is-playing::after {
  right: 10px;
}

.pause:not(.is-playing)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 13px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
  transform: translateY(-50%);
}

/* =========================
   ウェルカム
========================= */

.welcome {
  background: #222420;
  padding: 25px 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  font-size: 20px;
}

.welcome p {
  margin: 0;
}

.welcome a {
  color: var(--gold);
}

.welcome span {
  white-space: nowrap;
}

/* =========================
   料金システム
========================= */

.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin: 45px 0 24px;
}

.plan {
  background: var(--panel);
  padding: 28px 30px;
  text-align: center;
}

.plan.first {
  background: #25241f;
}

.plan h3 {
  color: var(--gold);
  font-size: 22px;
}

.plan p {
  margin: 12px 0;
}

.price {
  font-size: clamp(32px, 3.4vw, 48px);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.price span {
  font-size: 0.67em;
}

.gold {
  color: var(--gold);
  font-size: 22px;
}

.included {
  font-size: 16px;
  color: var(--muted);
  white-space: nowrap;
}

.system-notes p {
  margin-bottom: 8px;
  font-size: 16px;
}

.system-notes p:last-child {
  color: var(--muted);
}

/* =========================
   ドリンク
========================= */

.drinks {
  padding-top: 55px;
  scroll-margin-top: 30px;
}

.drink-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  text-align: left;
}

.drink-columns dl {
  margin: 0;
}

.drink-columns dl>div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  text-align: left;
}

.drink-columns dt {
  min-width: 0;
}

.drink-columns dd {
  margin: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.mixer-title {
  display: block;
}

.mixer {
  display: block;
  font-size: 14px;
  letter-spacing: 0;
  white-space: nowrap;
}

.more-drinks {
  color: var(--gold);
  margin: 30px 0 0;
}

/* =========================
   ご挨拶
========================= */

.owner {
  padding-top: 100px;
  display: grid;
  grid-template-columns: 39% 1fr;
  grid-template-rows: auto 1fr;
  gap: 0 55px;
}

.owner>img {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 100%;
  height: 100%;
  max-height: 570px;
  object-fit: cover;
}

.owner-heading {
  grid-column: 2;
}

.owner h2 {
  font-size: clamp(25px, 2.1vw, 34px);
}

.owner-text {
  grid-column: 2;
  font-size: 17px;
}

.owner-text p {
  margin-bottom: 25px;
}

.staff {
  color: var(--gold);
  font-size: 16px;
}

/* =========================
   店内ギャラリー
========================= */

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

figure {
  margin: 0;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
}

figcaption {
  font-size: 16px;
  margin-top: 15px;
}

/* =========================
   アクセス
========================= */

.access-grid {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 50px;
  align-items: center;
}

.access-grid>img {
  width: 100%;
  height: 380px;
  object-fit: contain;
  object-position: center center;
  background: #0d0e0e;
}

.access-info {
  min-width: 0;
}

.access-lead {
  color: var(--muted);
  margin-top: -8px;
  margin-bottom: 28px;
}

address {
  font-style: normal;
  font-size: 20px;
  margin-bottom: 26px;
}

.access-hours {
  margin-bottom: 24px;
  color: var(--muted);
}

.access-phone-list {
  display: flex;
  justify-content: center;
  gap: 45px;
  margin: 0 0 28px;
}

.phone {
  display: block;
  color: var(--gold);
  font-size: 32px;
  line-height: 1.45;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.phone small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.phone:hover {
  color: var(--button);
}

.access-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.access-buttons .button:last-child {
  width: 300px;
}

/* =========================
   フッター
========================= */

footer {
  border-top: 1px solid var(--line);
  padding: 35px 60px 25px;
  margin-top: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
  flex-wrap: wrap;
}

footer>.brand {
  width: 156px;
  margin: 0;
  flex-shrink: 0;
}

.footer-contact {
  width: auto;
  text-align: center;
}

.footer-contact-title {
  color: var(--gold);
  font-size: 14px;
  margin: 0 0 12px;
}

.footer-phone-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 22px;
}

.footer-phone-list a {
  color: var(--text);
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.footer-phone-list small {
  display: block;
  color: var(--gold);
  font-size: 12px;
}

.footer-phone-list a:hover {
  color: var(--button);
}

.footer-social {
  justify-content: center;
}

footer p {
  color: var(--gold);
  font-size: 15px;
  margin: 14px 0 0;
}

footer>small {
  width: 100%;
  flex-basis: 100%;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

/* =========================
   スマホ固定ボタン
========================= */

.mobile-actions {
  display: none;
}

/* =========================
   タブレット
========================= */

@media (max-width: 1150px) and (min-width: 801px) {

  :root {
    --nav: 180px;
  }

  .sidebar {
    padding: 30px 17px;
  }

  .brand {
    width: 132px;
    margin: 0;
  }

  .hero {
    min-height: 650px;
  }

  .hero-copy {
    padding: 40px 25px;
  }

  .hero h1 {
    font-size: 32px;
    margin-top: 45px;
  }

  .lead {
    font-size: 18px;
  }

  .section {
    padding-left: 35px;
    padding-right: 35px;
  }

  .welcome {
    padding: 24px 35px;
    font-size: 17px;
  }

  .owner {
    gap: 0 30px;
  }

  .drink-columns {
    gap: 30px;
  }

  .plan {
    padding: 24px 20px;
  }

  .price {
    font-size: 32px;
  }

  .side-phone {
    font-size: 18px;
  }

  footer {
    padding: 30px 35px;
  }
}

/* =========================
   大画面
========================= */

@media (min-width: 1600px) {

  .hero {
    min-height: 780px;
  }

  .hero-copy {
    padding-left: 80px;
  }

  .hero h1 {
    margin-top: 80px;
  }
}

/* =========================
   スマホ 800px以下
========================= */

@media (max-width: 800px) {

  :root {
    --nav: 0px;
  }

  html {
    scroll-padding-top: 110px;
  }

  body {
    font-size: 16px;
    padding-bottom: 78px;
  }

  /* =========================
     ヘッダー
  ========================= */

  .sidebar {
    position: sticky;
    top: 0;
    width: 100%;
    height: auto;
    overflow: visible;
    padding: 15px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
  }

  .brand {
    width: 132px;
    padding: 7px;
  }

  .area {
    display: none;
  }

  .nav-toggle {
    display: block;
    background: none;
    color: var(--gold);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 8px 14px;
    font-size: 14px;
  }

  .sidebar nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #090a0a;
    padding: 25px;
    max-height: calc(100dvh - 90px);
    overflow: auto;
    border-top: 1px solid var(--line);
  }

  .sidebar.open nav {
    display: block;
  }

  .side-contact {
    margin-top: 20px;
  }

  .side-contact .instagram {
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    color: var(--gold);
    text-align: center;
  }

  /* =========================
     ヒーロー
  ========================= */

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .carousel {
    order: -1;
    height: 350px;
  }

  .hero-copy {
    padding: 30px 25px 35px;
  }

  .hero h1 {
    font-size: clamp(32px, 8.5vw, 45px);
    margin: 25px 0;
    line-height: 1.6;
    white-space: normal;
  }

  .lead {
    font-size: 19px;
  }

  .shop-name {
    font-size: 22px;
    margin: 22px 0;
  }

  .hero .button {
    width: 100%;
  }

  .hours {
    margin: 24px 0 0;
  }

  .eyebrow {
    font-size: 14px;
    margin-bottom: 15px;
  }

  /* =========================
     カルーセル
  ========================= */

  .carousel-controls {
    left: 50%;
    right: auto;
    bottom: 15px;
    max-width: calc(100% - 30px);
    transform: translateX(-50%);
  }

  .dots {
    gap: 5px;
  }

  .dots button {
    width: 18px;
  }

  .dots button[aria-current="true"] {
    width: 30px;
  }

  /* =========================
     ウェルカム
  ========================= */

  .welcome {
    padding: 20px 25px;
    display: block;
    font-size: 16px;
  }

  .welcome a {
    display: block;
    margin-top: 8px;
  }

  /* =========================
     セクション
  ========================= */

  .section {
    padding: 60px 25px 0;
  }

  h2 {
    font-size: clamp(23px, 5.7vw, 30px);
  }

  /* =========================
     料金
  ========================= */

  .plans {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
  }

  .plan {
    padding: 25px;
  }

  .plan h3 {
    font-size: 20px;
  }

  .price {
    font-size: 42px;
  }

  .gold {
    font-size: 20px;
  }

  .included {
    font-size: 13px;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  .system-notes p {
    font-size: 15px;
  }

  /* =========================
     ドリンク
  ========================= */

  .drink-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .drinks {
    padding-top: 40px;
  }

  .drink-columns dl>div {
    align-items: center;
  }

  .drink-columns dd {
    margin-left: 15px;
  }

  .mixer-title {
    display: block;
  }

  .mixer {
    display: block;
    font-size: 13px;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .more-drinks {
    font-size: 16px;
  }

  /* =========================
     ご挨拶
  ========================= */

  .owner {
    display: flex;
    flex-direction: column;
    padding-top: 70px;
    gap: 0;
  }

  .owner-heading {
    order: 0;
  }

  .owner h2 {
    font-size: clamp(18px, 5vw, 27px);
    letter-spacing: 0.02em;
  }

  .owner>img {
    order: 1;
    width: 100%;
    aspect-ratio: 4 / 5;
    height: auto;
    max-height: none;
    object-fit: cover;
    margin-top: 5px;
  }

  .owner-text {
    order: 2;
    margin-top: 28px;
    font-size: 16px;
  }

  .owner-text br {
    display: none;
  }

  /* =========================
     ギャラリー
  ========================= */

  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 25px 18px;
  }

  .gallery figure:first-child {
    grid-column: 1 / -1;
  }

  .gallery img {
    aspect-ratio: 1.2;
  }

  .gallery figure:first-child img {
    aspect-ratio: 1.65;
  }

  .gallery figcaption {
    font-size: 13px;
    white-space: nowrap;
  }

  /* =========================
     アクセス・お問い合わせ
  ========================= */

  #access {
    padding-top: 65px;
  }

  #access .eyebrow {
    margin-bottom: 12px;
  }

  #access h2 {
    font-size: 21px;
    line-height: 1.6;
    white-space: nowrap;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
  }

  .access-lead {
    font-size: 15px;
    margin-bottom: 24px;
  }

  /*
    スマホでは

    見出し
      ↓
    今夜は〜
      ↓
    写真
      ↓
    住所・電話番号

    の順番
  */

  .access-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .access-grid>img {
    order: 1;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center center;
    background: transparent;
    margin: 0 auto 30px;
  }

  .access-info {
    order: 2;
    width: 100%;
  }

  address {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 22px;
  }

  .access-hours {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .access-phone-list {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
  }

  .phone {
    font-size: 30px;
  }

  .phone small {
    font-size: 12px;
  }

  .access-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .access-buttons .button,
  .access-buttons .button:last-child {
    width: 100%;
  }

  /* =========================
     フッター
  ========================= */

  footer {
    margin-top: 55px;
    padding: 30px 25px;
    align-items: center;
    flex-direction: column;
    gap: 25px;
  }

  footer>.brand {
    width: 132px;
  }

  .footer-contact {
    width: 100%;
  }

  .footer-phone-list {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer-phone-list a {
    font-size: 19px;
  }

  .footer-social {
    gap: 13px;
    font-size: 15px;
    letter-spacing: 0;
  }

  footer p {
    font-size: 14px;
  }

  /* =========================
     スマホ固定ボタン
  ========================= */

  .mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #090a0af5;
    padding: 12px 15px calc(12px + env(safe-area-inset-bottom));
    z-index: 30;
  }

  .mobile-actions a {
    border: 1px solid var(--button);
    border-radius: 26px;
    text-align: center;
    padding: 9px;
    font-size: 15px;
  }

  .mobile-actions a:hover {
    background: var(--button);
    color: black;
  }

  /* =========================
     スマホ専用改行
  ========================= */

  .mobile-break {
    display: inline;
  }
}

/* =========================
   通常時はスマホ専用改行を非表示
========================= */

.mobile-break {
  display: none;
}

/* =========================
   動きを減らす設定
========================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }

  .slide.active {
    animation: none;
  }
}