@charset "UTF-8";

/* =========================================================
   M's CLUB - Static Site Styles
   ========================================================= */

:root {
  --bg: #21262A;
  --gold: #C19D4C;
  --gold-btn: #CF8F42;
  --gold-glow: rgba(193, 157, 76, 0.70);
  --white: #ffffff;
  --text-dark: #222222;
  --text-gray: #666666;
  --border-light: #DDDDDD;
  --font-jp: "Zen Kaku Gothic Antique", "Noto Sans JP", sans-serif;
  --font-noto: "Noto Sans JP", sans-serif;
  --shadow-gold: 0 0 20px 3px var(--gold-glow);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-jp);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* SPメニュー展開中は背景スクロールを固定 */
body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

/* ---------- Logo ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  height: 40px;
}

.logo img {
  height: 100%;
}

.logo__eq {
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 1em;
}
.logo__eq span {
  width: 3px;
  background: currentColor;
  border-radius: 1px;
}
.logo__eq span:nth-child(1) { height: 42%; }
.logo__eq span:nth-child(2) { height: 68%; }
.logo__eq span:nth-child(3) { height: 100%; }
.logo__eq span:nth-child(4) { height: 55%; }
.logo__eq span:nth-child(5) { height: 82%; }
.logo__text {
  font-family: "Times New Roman", "Georgia", serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
}
.logo__text b { font-weight: 600; }
.logo__text sup {
  font-size: 0.5em;
  vertical-align: 0.5em;
  margin: 0 0.02em;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  transition: background .3s ease, padding .3s ease;
}
.header.is-scrolled {
  background: rgba(33, 38, 42, 0.92);
  backdrop-filter: blur(6px);
  padding: 16px 32px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.header .logo { font-size: 26px; }
.header__logo { display: inline-flex; align-items: center; line-height: 0; }
.header__logo img { height: 34px; width: auto; transition: height .3s ease; }
.header.is-scrolled .header__logo img { height: 28px; }
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color .2s;
}
.nav a:hover { color: var(--gold); }

/* SPメニュー内のCTA・店舗情報（PCでは非表示） */
.nav__bottom { display: none; }

.header-right {
  display: none;
  align-items: center;
  gap: 10px;
}
.header-right p {
  font-size: 13px;
  letter-spacing: 0.04em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--white);
  transform-origin: center;
  transition: transform .3s ease, opacity .2s ease;
}
/* 展開時は「✕」に変化 */
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Side CTA ---------- */
.side-cta {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 90;
  background: var(--gold-btn);
  color: var(--white);
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 16px 24px;
  border-radius: 10px 0 0 10px;
  box-shadow: -2px 0 14px rgba(0,0,0,0.35);
  transition: filter .2s;
}
.side-cta:hover { filter: brightness(1.08); }

/* ---------- Hero ---------- */
.hero {
  padding: 90px 20px 0;
}
.hero__inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  height: 720px;
  border-radius: 60px 60px 4px 4px;
  overflow: hidden;
  outline: 2px solid var(--white);
  outline-offset: -2px;
  box-shadow: var(--shadow-gold);
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.42);
}
.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  text-align: center;
  padding: 24px;
}
.hero__logo {
  width: 510px;
  max-width: 80%;
  line-height: 0;
}
.hero__logo img {
  width: 100%;
  height: auto;
}
.hero__sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.hero__catch {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-shadow: 0 0 14px var(--gold-glow);
}
.hero__icons {
  display: inline-flex;
  filter: drop-shadow(0 0 10px var(--gold-glow));
}
.hero__icons img { height: 68px; width: auto; }

/* ---------- Section base ---------- */
.section { padding: 100px 0; }
.section--pad { padding: 132px 80px; }

.sec-label {
  flex-shrink: 0;
  font-size: 52px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  writing-mode: vertical-rl;
  text-orientation: sideways;
  font-family: "Times New Roman", serif;
  transform: rotate(180deg);
  align-self: flex-start;
  padding-top: 4px;
}

.sec-row {
  display: flex;
  align-items: flex-start;
  gap: 38px;
  padding: 0 80px;
}

/* ---------- Intro ---------- */
.intro {
  display: flex;
  justify-content: center;
  gap: 140px;
  padding: 0 180px 20px;
}
.intro__head {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.intro__body {
  flex: 1 1 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.4;
  letter-spacing: 0.04em;
}

/* ---------- Service ---------- */
.service__scroll {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.service__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.3) transparent;
}
.service__track::-webkit-scrollbar { height: 6px; }
.service__track::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.25);
  border-radius: 9999px;
}
.svc-card {
  position: relative;
  flex: 0 0 auto;
  width: 570px;
  height: 380px;
  border-radius: 8px;
  overflow: hidden;
  scroll-snap-align: start;
}
.svc-card img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.svc-card__cap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.9) 90%);
}
.svc-card__cap h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.svc-card__cap p {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.service__bar { width: 200px; height: 2px; background: rgba(255,255,255,0.2); position: relative; }
.service__bar::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 50px; height: 2px;
  background: var(--white);
}

/* ---------- Plan ---------- */
.plan {
  background: rgba(255,255,255,0.10);
}
.plan .sec-row { align-items: stretch; }
.plan__grid {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  gap: 24px;
}
.plan-card {
  flex: 1 1 0;
  min-width: 0;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 12px 2px var(--gold-glow);
  display: flex;
  flex-direction: column;
}
.plan-card__img {
  width: 100%;
  height: 198px;
  overflow: hidden;
}
.plan-card__img img { width: 100%; height: 100%; object-fit: cover; }
.plan-card__body {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.plan-card__head {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}
.plan-card__no {
  color: var(--text-gray);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.plan-card__name {
  color: var(--text-dark);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.plan-card__price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  color: var(--text-dark);
}
.plan-card__price .num { font-size: 36px; font-weight: 500; letter-spacing: 0.04em; }
.plan-card__price .yen { font-size: 20px; font-weight: 500; }
.plan-card__price .per { color: var(--text-gray); font-size: 13px; font-weight: 400; }
.plan-card__desc {
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ---------- Menu ---------- */
.menu__content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.menu__top {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.menu__lead {
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.menu__lead p:first-child { font-size: 15px; font-weight: 500; letter-spacing: 0.04em; }
.menu__note { font-size: 13px; font-weight: 400; letter-spacing: 0.04em; }
.menu__images {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  gap: 4px;
}
.menu__images img {
  flex: 1 1 0;
  min-width: 0;
  height: 256px;
  object-fit: cover;
}
.drink-box {
  padding: 20px;
  border-radius: 10px;
  outline: 1px solid var(--text-gray);
  outline-offset: -1px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.drink-box__head {
  align-items: flex-end;
}
.drink-box__head h3 { font-size: 20px; font-weight: 500; letter-spacing: 0.04em; }
.drink-box__head span { font-size: 13px; font-weight: 400; letter-spacing: 0.04em; }
.drink-cols {
  display: flex;
  gap: 28px;
}
.drink-col { flex: 1 1 0; display: flex; flex-direction: column; gap: 12px; }
.drink-col__tag {
  background: var(--gold);
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 5px 12px;
}
.drink-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.drink-list span {
  width: calc(50% - 6px);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ---------- Gallery strip ---------- */
.gallery {
  display: flex;
  gap: 8px;
  padding: 0;
}
.gallery img {
  flex: 1 1 0;
  min-width: 0;
  height: 280px;
  object-fit: cover;
}

/* ---------- Access ---------- */
.access {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.access__left {
  flex: 1 1 0;
  min-width: 0;
  padding: 0 80px;
  display: flex;
  align-items: center;
}
.access__row {
  display: flex;
  gap: 38px;
  width: 100%;
}
.access__info {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.access__info p {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
}
.access__photo {
  width: 100%;
  max-width: 364px;
  height: 273px;
  object-fit: cover;
  border-radius: 4px;
}
.access__map {
  width: 800px;
  max-width: 55%;
  flex-shrink: 0;
}
.access__map iframe {
  width: 100%;
  height: 600px;
  border: 0;
  display: block;
}

/* ---------- Contact ---------- */
.contact {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.contact__box {
  align-self: stretch;
  display: flex;
  gap: 80px;
  padding: 80px;
  background: rgba(255,255,255,0.10);
  border-radius: 10px;
  outline: 1px solid var(--white);
  outline-offset: -1px;
  box-shadow: var(--shadow-gold);
}
.contact__left {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 38px;
}
.contact__left h2 { font-size: 36px; font-weight: 500; letter-spacing: 0.04em; }
.contact__tel-block { display: flex; flex-direction: column; gap: 16px; }
.contact__tel-block > p { font-size: 22px; font-weight: 500; letter-spacing: 0.04em; }
.contact__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 19px 24px;
  outline: 1px solid var(--white);
  outline-offset: -1px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.contact__tel svg { width: 28px; height: 28px; fill: var(--white); flex-shrink: 0; }

.form {
  width: 640px;
  max-width: 50%;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.form__title { color: var(--text-dark); font-size: 22px; font-weight: 500; letter-spacing: 0.04em; }
.form__fields { align-self: stretch; display: flex; flex-direction: column; gap: 12px; }
.form__field { display: flex; flex-direction: column; gap: 8px; }
.form__label { display: flex; align-items: center; gap: 8px; }
.form__label span { color: var(--text-dark); font-size: 15px; font-weight: 500; letter-spacing: 0.04em; }
.badge {
  background: #959595;
  color: var(--white);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 2px;
}
.form__field input,
.form__field textarea {
  width: 100%;
  background: #F5F5F5;
  border: 0;
  border-radius: 6px;
  padding: 10px 12px;
  font-family: var(--font-jp);
  font-size: 15px;
  color: var(--text-dark);
}
.form__field input { height: 46px; }
.form__field textarea { min-height: 92px; resize: vertical; }
.form__actions { display: flex; gap: 16px; }
.btn {
  width: 180px;
  padding: 16px 24px;
  border-radius: 8px;
  font-family: var(--font-noto);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  cursor: pointer;
  border: 0;
  transition: filter .2s, background .2s, color .2s;
}
.btn--outline {
  background: transparent;
  color: var(--gold-btn);
  outline: 1px solid var(--gold-btn);
  outline-offset: -1px;
}
.btn--outline:hover { background: rgba(207,143,66,0.08); }
.btn--fill { background: var(--gold-btn); color: var(--white); }
.btn--fill:hover { filter: brightness(1.08); }

/* ---------- Footer ---------- */
.footer {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 52px;
  flex-wrap: wrap;
}
.footer__brand { display: flex; flex-direction: column; gap: 8px; }
.footer__brand .logo { font-size: 28px; }
.footer__copy { font-size: 13px; font-weight: 400; letter-spacing: 0.04em; }
.footer__ig {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 8px;
  outline: 1px solid var(--white);
  outline-offset: -1px;
  font-family: var(--font-noto);
  font-size: 15px;
  letter-spacing: 0.04em;
  transition: background .2s;
}
.footer__ig:hover { background: rgba(255,255,255,0.08); }
.footer__ig svg { width: 18px; height: 18px; fill: var(--white); }
.footer__addr {
  flex: 1 1 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 52px;
  flex-wrap: wrap;
}
.footer__addr p { font-size: 14px; font-weight: 500; line-height: 1.7; letter-spacing: 0.04em; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1200px) {
  .intro { padding: 0 60px 20px; gap: 60px; }
  .contact__box { flex-direction: column; gap: 40px; }
  .form { width: 100%; max-width: 100%; }
  .access { flex-direction: column; }
  .access__map { width: 100%; max-width: 100%; }
}

@media (max-width: 900px) {

  .header-right {
      display: flex;
    }

  .nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    height: 100dvh;
    width: 100vw;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 30px;
    padding: 104px 20px 32px;
    background: rgba(8, 9, 10, 0.97);
    backdrop-filter: blur(8px);
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav a {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.06em;
  }
  .nav-toggle { display: flex; z-index: 110; }
  .header__logo,
  .header-right { position: relative; z-index: 110; }

  .nav__bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: auto;
    padding-top: 24px;
  }
  .nav__cta {
    display: block;
    background: var(--gold-btn);
    border-radius: 8px;
    padding: 18px 24px;
    font-family: var(--font-noto);
    text-align: center;
  }
  .nav__ig {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 8px;
    outline: 1px solid var(--white);
    outline-offset: -1px;
    font-family: var(--font-noto);
  }
  .nav__ig svg { width: 20px; height: 20px; fill: var(--white); }
  .nav__addr {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .nav__addr p {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.04em;
  }

  .hero__inner { height: 560px; border-radius: 32px 32px 4px 4px; }
  .hero__catch { font-size: 19px; }

  .section { padding: 70px 0; }
  .sec-row { flex-direction: column; align-items: stretch; gap: 20px; padding: 0 32px; }
  .section--pad { padding: 80px 32px; }
  .sec-label {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 40px;
    padding: 0;
  }
  .intro { flex-direction: column; gap: 24px; padding: 0 32px 20px; }
  .intro__head { font-size: 24px; }

  .svc-card { width: 78vw; height: 300px; }

  .plan__grid { flex-direction: column; }
  .plan-card { flex: 0 0 auto; }
  .plan-card__img { height: 220px; }

  .menu__top { flex-direction: column; }
  .menu__lead { width: 100%; }
  .menu__images img { height: 180px; }
  .drink-cols { flex-direction: column; gap: 20px; }

  .gallery { flex-wrap: wrap; }
  .gallery img { flex: 1 1 40%; height: 180px; }

  .access__row { flex-direction: column; gap: 20px; }
  .access__left { padding: 0 32px; }
  .access__map iframe { height: 360px; }

  .contact { padding: 70px 32px; }
  .contact__box { padding: 40px 28px; }
  .contact__left h2 { font-size: 28px; }

  .footer { flex-direction: column; align-items: flex-start; gap: 28px; }
  .footer__addr { justify-content: flex-start; gap: 24px; }

  .side-cta { writing-mode: vertical-rl; padding: 20px 12px; top: auto; bottom: 20px; transform: none; }
}

@media (max-width: 520px) {
  .header { padding: 16px 20px; }
  .hero { padding: 76px 12px 0; }
  .hero__catch { font-size: 16px; }
  .menu__images { flex-wrap: wrap; }
  .menu__images img { flex: 1 1 45%; }
  .form__actions { flex-direction: column; width: 100%; }
  .btn { width: 100%; }
}
