/* ========================================
   なんでも呑んじゃうオオカミさんの酒場
   Top Page Style
======================================== */

/* -------------------------
   Reset / Base
-------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg-main: #050505;
  --bg-deep: #0b0b0b;
  --bg-card: #121212;
  --bg-card-soft: #181818;
  --text-main: #f5f5f5;
  --text-sub: #cfcfcf;
  --text-muted: #8e8e8e;
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);
  --accent: #d8b56d;
  --accent-soft: rgba(216, 181, 109, 0.15);
  --blue-link: #1d9bf0;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Segoe UI',
    'Yu Gothic', 'YuGothic', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(255, 255, 255, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 10%,
      rgba(216, 181, 109, 0.13),
      transparent 28%
    ),
    var(--bg-main);
  line-height: 1.7;
}

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

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* -------------------------
   Layout
-------------------------- */
.l-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}

/* -------------------------
   Header
-------------------------- */
.site-header {
  background: #050505;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 24px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
}

.site-header__logo-mark {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.04);
}

.site-header__logo-mark img {
  width: 52px;
  height: 52px;
  display: block;
  border-radius: 50%;
}

.site-header__logo-text {
  font-weight: 700;
  letter-spacing: 0.06em;
}

.site-header__nav {
  display: none;
}

.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-header__nav-link {
  position: relative;
  display: inline-block;
  padding: 6px 0;
  font-size: 13px;
  color: var(--text-sub);
  transition: color 0.2s ease;
}

.site-header__nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.site-header__nav-link:hover {
  color: #fff;
}

.site-header__nav-link:hover::after {
  width: 100%;
}

/* -------------------------
   Buttons
-------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease,
    border-color 0.16s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  color: #111;
  background: linear-gradient(135deg, #f4dfaa, var(--accent));
  box-shadow: 0 12px 28px rgba(216, 181, 109, 0.22);
}

.btn--primary:hover {
  box-shadow: 0 16px 34px rgba(216, 181, 109, 0.32);
}

.btn--outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.36);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.09);
}

.btn--ghost {
  color: #fff;
  background: rgba(29, 155, 240, 0.12);
  border-color: rgba(29, 155, 240, 0.55);
}

/* -------------------------
   Hero
-------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 76px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 38%),
    radial-gradient(
      circle at 80% 20%,
      rgba(216, 181, 109, 0.17),
      transparent 32%
    ),
    radial-gradient(
      circle at 8% 86%,
      rgba(255, 255, 255, 0.08),
      transparent 30%
    ),
    var(--bg-deep);
  border-bottom: 1px solid var(--line-soft);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
  pointer-events: none;
}

.hero::after {
  content: '酒';
  position: absolute;
  right: -36px;
  bottom: -80px;
  font-size: 240px;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.035);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.hero__content {
  max-width: 720px;
}

.section__label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero__title {
  margin: 0;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.12;
  letter-spacing: 0.04em;
  font-weight: 900;
}

.hero__subtitle {
  margin: 22px 0 0;
  max-width: 680px;
  color: var(--text-sub);
  font-size: 15px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 28px;
  background:
    linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.03)
    ),
    var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero__panel::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(216, 181, 109, 0.16);
  filter: blur(4px);
}

.hero__emblem {
  width: 132px;
  height: 132px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.05),
    0 22px 40px rgba(0, 0, 0, 0.35);
  margin: 0 auto 18px;
}

.hero__emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__panel-kicker {
  margin: 0 0 4px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__panel-title {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: 0.05em;
}

.hero__panel-text {
  margin: 0;
  color: var(--text-sub);
  font-size: 14px;
}

.hero__banner {
  margin-bottom: 28px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  background: #000;
}

.hero__banner img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* -------------------------
   Section Common
-------------------------- */
.section {
  padding: 64px 0;
  background: var(--bg-main);
}

.section--alt {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.035),
      rgba(255, 255, 255, 0.015)
    ),
    #080808;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.section__header {
  margin-bottom: 22px;
}

.section__title {
  margin: 0;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.35;
  letter-spacing: 0.04em;
  font-weight: 850;
}

.section__description {
  margin: 10px 0 0;
  max-width: 720px;
  color: var(--text-muted);
  font-size: 14px;
}

/* -------------------------
   Feature Card
-------------------------- */
.feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 40px;
  align-items: center;

  width: min(100%, 1120px);
  margin: 0 auto;

  padding: 32px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      135deg,
      rgba(216, 181, 109, 0.12),
      rgba(255, 255, 255, 0.04)
    ),
    var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-card__body {
  width: 100%;
  max-width: 560px;
}

.feature-card__eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-card__title {
  margin: 0 0 14px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.feature-card__text {
  margin: 0;
  color: var(--text-sub);
  font-size: 14px;
  line-height: 1.9;
}

.feature-card__note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.9;
}

.feature-card .btn {
  margin-top: 24px;
  align-self: flex-start;
}

.drink-photo {
  margin: 0;
  width: 100%;
}

.drink-photo__caption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.9;
}

.feature-card .btn {
  margin-top: 24px;
  align-self: flex-start;
}

.drink-photo {
  margin: 24px 0 0;
  width: 100%;
}

.drink-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;

  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.drink-photo__caption {
  margin-top: 14px;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.9;
}

/* -------------------------
   Category Cards
-------------------------- */
.quick-menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.quick-menu-card {
  position: relative;
  overflow: hidden;
  min-height: 160px;
  padding: 22px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.025)
    ),
    var(--bg-card);
  border: 1px solid var(--line-soft);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.quick-menu-card::after {
  content: '';
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--accent-soft);
}

.quick-menu-card:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 181, 109, 0.48);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32);
}

.quick-menu-card__meta {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.quick-menu-card__title {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: 0.04em;
}

.quick-menu-card__text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text-sub);
  font-size: 13px;
}

/* -------------------------
   Pairing
-------------------------- */
.pairing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pairing-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  padding: 16px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.025)
    ),
    var(--bg-card-soft);
  border: 1px solid var(--line-soft);
  color: var(--text-main);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* -------------------------
   Profile
-------------------------- */
.profile-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
  padding-top: 4px;
  padding-bottom: 4px;
}

.profile-card__icon {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.05),
    0 20px 34px rgba(0, 0, 0, 0.34);
}

.profile-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.profile-card__body {
  max-width: 720px;
}

.profile-card__text {
  margin: 12px 0 20px;
  color: var(--text-sub);
  font-size: 14px;
}

/* -------------------------
   News
-------------------------- */
.news-list {
  display: grid;
  gap: 12px;
}

.news-item {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
}

.news-item__meta {
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.news-item__title {
  margin: 0;
  color: var(--text-main);
  font-size: 15px;
  line-height: 1.6;
}

/* -------------------------
   Footer
-------------------------- */
.site-footer {
  margin: 0;
  padding: 36px 0 44px;
  background: #020202;
  border-top: 1px solid var(--line-soft);
  color: var(--text-muted);
  text-align: center;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.site-footer__brand {
  color: var(--text-main);
  font-weight: 900;
  letter-spacing: 0.05em;
}

.site-footer__text {
  margin: 6px 0 0;
  font-size: 13px;
}

.site-disclosure {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.9;
  text-align: center;
}

.site-disclosure p {
  margin: 0;
}

.site-disclosure p + p {
  margin-top: 8px;
}

.site-footer__bottom {
  margin-top: 20px;
  font-size: 12px;
  text-align: center;
}

/* -------------------------
   Responsive
-------------------------- */
@media (min-width: 640px) {
  .quick-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pairing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .profile-card {
    grid-template-columns: auto 1fr;
  }
}

@media (min-width: 860px) {
  .site-header__nav {
    display: block;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.75fr);
  }

  .quick-menu-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .site-footer__inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

@media (max-width: 520px) {
  .site-header__inner {
    min-height: 68px;
  }

  .site-header__logo-mark {
    width: 46px;
    height: 46px;
  }

  .site-header__logo-text {
    font-size: 13px;
  }

  .hero {
    padding: 52px 0 58px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero__panel,
  .feature-card {
    padding: 22px;
  }

  .pairing-grid {
    grid-template-columns: 1fr;
  }

  .hero__banner {
    margin-bottom: 20px;
    border-radius: 18px;
  }

  .site-header__logo-mark {
    width: 46px;
    height: 46px;
  }
}

.feature-card__note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.9;
}

@media (max-width: 760px) {
  .feature-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .drink-photo img {
    aspect-ratio: 16 / 9;
  }
}
/* -------------------------
   あの日呑んだ一杯
-------------------------- */

#memory-drink .feature-card {
  display: block;
  grid-template-columns: none;

  width: 100%;
  max-width: none;
  margin: 0;

  padding: 0;
}

#memory-drink .feature-card__body {
  width: 100%;
  max-width: none;
  padding: 34px 40px;
}

#memory-drink .feature-card__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: center;
  gap: 56px;
}

#memory-drink .feature-card__text {
  min-width: 0;
  margin: 0;
  color: var(--text-sub);
  font-size: 14px;
  line-height: 1.9;
}

#memory-drink .feature-card__note {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.95;
  letter-spacing: 0.03em;
}

#memory-drink .drink-meta {
  margin: 0;
  color: var(--text-sub);
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

#memory-drink .drink-photo {
  width: 100%;
  max-width: 300px;
  margin: 0;
  justify-self: end;
}

#memory-drink .drink-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;

  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.memory-drink__actions {
  width: 100%;
  max-width: none;
  margin: 18px 0 0;
}

/* スマホ表示 */

@media (max-width: 768px) {
  #memory-drink .feature-card__body {
    padding: 24px;
  }

  #memory-drink .feature-card__content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #memory-drink .drink-photo {
    max-width: 320px;
    justify-self: center;
  }

  .memory-drink__actions {
    margin-top: 16px;
  }
}
/* スマホ表示 */

@media (max-width: 768px) {
  #memory-drink .feature-card {
    width: 100%;
    max-width: none;
  }

  #memory-drink .feature-card__body {
    padding: 24px;
  }

  #memory-drink .feature-card__content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #memory-drink .drink-photo {
    max-width: 320px;
    justify-self: center;
  }

  .memory-drink__actions {
    width: 100%;
    max-width: none;
    margin-top: 16px;
  }
}

.quick-menu-card {
  display: block;
  color: inherit;
  text-decoration: none;
}
/* -------------------------
   Static Pages
-------------------------- */
.page-main {
  background: #050505;
  color: var(--text-main);
}

.page-hero {
  padding: 72px 0 36px;
  background:
    radial-gradient(circle at top, rgba(177, 139, 74, 0.16), transparent 42%),
    linear-gradient(180deg, #090909 0%, #050505 100%);
  border-bottom: 1px solid var(--line-soft);
}

.page-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-hero h1 {
  margin: 0;
  color: var(--text-main);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.08em;
}

.page-lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--text-muted);
  line-height: 2;
}

.page-content {
  padding: 48px 0 72px;
}

.page-content__inner {
  max-width: 880px;
}

.text-page {
  padding: 34px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
}

.text-page h2 {
  margin: 34px 0 12px;
  padding-bottom: 8px;
  color: var(--text-main);
  font-size: 1.18rem;
  border-bottom: 1px solid var(--line-soft);
}

.text-page h2:first-child {
  margin-top: 0;
}

.text-page p {
  margin: 0 0 16px;
  color: var(--text-muted);
  line-height: 2;
}

.text-page a {
  color: var(--accent);
  text-decoration: none;
}

.text-page a:hover {
  text-decoration: underline;
}

.page-date {
  margin-top: 36px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.contact-box {
  margin: 18px 0 28px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
}

.contact-box iframe {
  width: 100%;
  min-height: 760px;
  border: 0;
  border-radius: 14px;
  background: #fff;
}

.contact-box__note {
  margin-top: 18px;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: #050505 !important;
  background: var(--accent);
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none !important;
}

.button-link:hover {
  opacity: 0.86;
}

.site-notice-section {
  padding: 18px 0 0;
  background: #050505;
}

.site-notice {
  margin: 0;
  padding: 14px 18px;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.8;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text-main);
  text-decoration: underline;
}

.site-footer__notice {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.8;
}

.site-footer__copy {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 56px 0 28px;
  }

  .page-content {
    padding: 32px 0 56px;
  }

  .text-page {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}
