@charset "UTF-8";
/* ========================================
   VINO PREGIO ワインバー - スタイルシート
======================================== */ :root {
  /* Colors */
  --color-primary: #1a1a1a;
  --color-secondary: #2d2d2d;
  --color-accent: #8b1538;
  --color-gold: #c9a962;
  --color-gold-light: #e5d4a1;
  --color-white: #ffffff;
  --color-gray-light: #f5f5f5;
  --color-gray: #888888;
  /* Typography */
  --font-primary: 'Noto Serif JP', 'Georgia', serif;
  --font-secondary: 'Noto Sans JP', 'Helvetica Neue', sans-serif;
  /* Spacing */
  --section-padding: 120px;
  --container-max: 1200px;
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  /* FIX: ヘッダー高さ（ヒーロー押し出しに使用） */
  --header-h: 100px;
}
@media (max-width: 768px) {
  :root {
    --header-h: 72px;
  }
}
/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-secondary);
  background-color: var(--color-primary);
  color: var(--color-white);
  line-height: 1.8;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}
/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
/* Section Styling */
section {
  padding: var(--section-padding) 0;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-subtitle {
  font-family: var(--font-secondary);
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
  display: block;
}
.section-title {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--color-white);
}
.gold-line {
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 24px auto;
}
/* ========================================
   Header / Navigation
======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h); /* FIX: 変数化 */
  z-index: 1000;
  transition: var(--transition-smooth);
}
.header.scrolled {
  background: rgba(26, 26, 26, .95);
  backdrop-filter: blur(10px);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  letter-spacing: 3px;
  color: var(--color-gold);
}

.nav-links{
  display:flex;
  align-items:center;         /* 縦位置を中央に */
  gap:32px;                   /* 項目間の等間隔 */
  list-style:none;
  margin:0;
  padding:0;
  white-space:nowrap;         /* 折り返し防止 */
}

/* 各項目のクリック面を一定に（上下の見た目が揃う） */
.nav-links > li > a{
  display:inline-block;
  padding:10px 0;            /* 上下は同じ値にして高さを統一 */
  line-height:1;             /* ベースラインのズレ防止 */
  text-decoration:none;
}

/* 最後の「お問い合わせ」だけ少し左に空きを作る（任意） */
.nav-links > li:last-child{
  margin-left:12px;          /* 16〜24pxでもOK。全体のバランスで調整 */
}

/* お問い合わせボタン（既存の.btn-contactに合わせる場合） */
.nav-links > li:last-child > a{
  padding:10px 16px;         /* 他より左右だけ厚めにしてボタン感を出す */
  border-radius:999px;
  background:linear-gradient(135deg,#CFAF6E,#B48A3A);
  color:#FFFFFF;
  font-weight:700;
  border:1px solid rgba(255,255,255,.15);
  box-shadow:0 8px 20px rgba(0,0,0,.15);
}

/* ホバー（任意） */
.nav-links > li:last-child > a:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition-smooth);
}
/* ========================================
   Hero Section
======================================== */
.hero {
  position: relative;
  height: auto;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* FIX: 固定ヘッダーとの重なり回避（常に押し出す） */
  padding-top: calc(var(--header-h) + clamp(8px, 2vw, 16px));
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/counter.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(.5);
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1.15);
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26, 26, 26, .3) 0%, rgba(26, 26, 26, .6) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-inline: auto;
  width: min(92vw, 980px);
  padding: clamp(16px, 6vw, 64px) 24px; /* 上下可変余白 */
  text-wrap: balance; /* 改行最適化（対応ブラウザ） */
  animation: fadeInUp 1.2s ease-out;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-badge {
  display: inline-block;
  border: 1px solid var(--color-gold);
  text-transform: uppercase;
  color: var(--color-gold);
  font-size: clamp(10px, 1.8vw, 12px);
  padding: clamp(6px, .8vw, 8px) clamp(14px, 2.2vw, 24px);
  letter-spacing: .2em;
  margin-bottom: clamp(12px, 2.5vw, 24px);
}
.hero-title {
  font-family: var(--font-primary);
  font-weight: 400;
  color: var(--color-white);
  font-size: clamp(28px, 6vw, 64px);
  letter-spacing: clamp(1px, .6vw, 8px);
  line-height: 1.15;
  margin-bottom: clamp(12px, 2.5vw, 24px);
  text-shadow: 0 2px 20px rgba(0, 0, 0, .5);
  word-break: keep-all;
}
.hero-subtitle {
  font-family: var(--font-primary);
  font-weight: 300;
  color: var(--color-gold-light);
  font-size: clamp(14px, 2.8vw, 24px);
  letter-spacing: clamp(.5px, .25vw, 2px);
  margin-bottom: clamp(8px, 2vw, 16px);
}
.hero-description {
  color: rgba(255, 255, 255, .8);
  font-size: clamp(12px, 2.1vw, 16px);
  max-width: 60ch;
  margin: 0 auto clamp(20px, 5vw, 40px);
  line-height: 1.9;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}
.hero-scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid var(--color-gold);
  border-radius: 12px;
  position: relative;
}
.hero-scroll span::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 2px;
  animation: scrollDown 1.5s infinite;
}
@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}
@keyframes scrollDown {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}
/* ========================================
   Concept Section
======================================== */
.concept {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  position: relative;
}
.concept::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}
.concept-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.concept-text {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  line-height: 2.5;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 40px;
}
.concept-highlight {
  display: inline-block;
  padding: 24px 48px;
  background: rgba(139, 21, 56, .2);
  border-left: 3px solid var(--color-accent);
  margin-top: 40px;
}
.concept-highlight p {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-gold-light);
}
/* ========================================
   Wine Section
======================================== */
.wine {
  background-color: #1A1A1A;
  position: relative;
}
.wine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.wine-image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.wine-image img {
  width: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.wine-image:hover img {
  transform: scale(1.05);
}
.wine-content h3 {
  font-family: var(--font-primary);
  font-size: clamp(18px, 3.2vw, 28px);
  color: var(--color-white);
  letter-spacing: clamp(.5px, .25vw, 2px);
  line-height: 1.35;
  text-align: left;
  margin: 0 0 clamp(12px, 2.2vw, 24px);
  text-wrap: balance;
}
.wine-content p {
  color: rgba(255, 255, 255, .8);
  margin-bottom: 16px;
  line-height: 2;
}
/* ドリンク表（整形済） */
.drink-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.menu-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  gap: 0;
}
.menu-item::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  transform: rotate(45deg);
  margin-right: 6px;
  flex: 0 0 auto;
}
.menu-name {
  color: #fff;
  margin-right: 12px;
  text-align: left;
}
.menu-price {
  margin-left: auto;
  white-space: nowrap;
  text-align: right;
}
/* ========================================
   Atmosphere Section
======================================== */
.atmosphere-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.atmosphere-text {
  max-width: 500px;
  margin-inline: auto;
  text-align: center;
}
.atmosphere-text h2 {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  color: var(--color-white);
  margin-bottom: 24px;
  letter-spacing: 2px;
}
.atmosphere-text p {
  color: rgba(255, 255, 255, .85);
  font-size: 1.1rem;
  line-height: 2;
}
.atmosphere-text .gold-line {
  margin-inline: auto;
  display: block;
} /* 中央固定（構造差の保険） */
/* 背景＆オーバーレイ（固定高さを撤廃） */
.atmosphere {
  position: relative;
}
.atmosphere-bg {
  min-height: 600px;
  background-image: url('images/room.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  position: relative;
}
.atmosphere-overlay {
  position: relative;
  inset: auto;
  padding: clamp(48px, 10vw, 96px) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, rgba(26, 26, 26, .9) 0%, rgba(26, 26, 26, .5) 50%, rgba(26, 26, 26, .9) 100%);
}
.atmosphere {
  padding-bottom: clamp(40px, 8vw, 96px);
}
/* Atmosphere 画像：PC=3 → 900px=2 → 600px=1 */
.image-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: center;
  justify-items: center;
}
.image-container img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
@media (max-width:900px) {
  .image-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
@media (max-width:600px) {
  .image-container {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
/* Wine：小さくなったら 画像→テキスト */
.wine-grid {
  grid-template-areas: "img text";
}
.wine-image {
  grid-area: img;
}
.wine-content {
  grid-area: text;
}
.wine-image img {
  aspect-ratio: 4/3;
  object-fit: cover;
}
@media (max-width:900px) {
  .wine-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    grid-template-areas: "img""text";
  }
}
@media (max-width:600px) {
  .wine-grid {
    gap: 24px;
  }
  .wine-content h3 {
    text-align: center;
  }
}
/* ========================================
   Info Section
======================================== */
.info {
  padding: var(--section-padding) 0;
}
.info .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.info .section-subtitle {
  font-family: var(--font-secondary);
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
  display: inline-block;
}
.info .section-title {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--color-white);
  margin: 0;
}
.info .gold-line {
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 24px auto 0;
}
.info-grid {
  display: grid;
  gap: clamp(16px, 2vw, 36px);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1080px;
  margin: 0 auto;
}
/* FIX: Infoカードの“通常時”の四角（背景＋枠）とレイアウトを定義 */
section.info .info-card{
  display: grid;                   /* アイコン, 見出し, 本文を縦並び */
  grid-template-rows: auto auto 1fr;
  justify-items: center;           /* 横方向は中央に */
  text-align: center;              /* テキストも中央 */
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 40px 32px;              /* 既存のモバイル用@mediaで上書きされます */
}
.info-card:hover {
  border-color: rgba(255, 255, 255, .25);
  transform: translateY(-2px);
}
.info-icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}
.info-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.info-title {
  margin: 8px 0 12px;
  font-family: var(--font-primary);
  font-size: 1.25rem;
  letter-spacing: 1px;
  color: var(--color-white);
}
.info-body {
  max-width: 30ch;
}
.info-body p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, .85);
  line-height: 1.9;
}
.info-body p:last-child {
  margin-bottom: 0;
}
.info-body .info-list {
  display: grid;
  column-gap: 12px;
  row-gap: 8px;
  justify-content: center;
  text-align: left;
  max-width: 28ch;
  margin: 0 auto;
}
.info-list .label {
  color: var(--color-gray);
  white-space: nowrap;
}
.info-list .value {
  white-space: nowrap;
}
/* Focus visible */ :focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}
/* Responsive tweeks */
@media (max-width:900px) {
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
  .info-card {
    padding: 32px 24px;
  }
}
@media (max-width:600px) {
  .info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .info-card {
    padding: 28px 20px;
  }
  .info-body, .info-body .info-list {
    max-width: 100%;
  }
}
/* ========================================
   FAQ / CTA / Footer
======================================== */
.faq {
  background: var(--color-primary);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(201, 169, 98, .2);
  padding: 32px 0;
}
.faq-question {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  color: var(--color-gold);
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
}
.faq-question::before {
  content: 'Q.';
  margin-right: 12px;
  font-weight: 600;
}
.faq-answer {
  color: rgba(255, 255, 255, .85);
  padding-left: 28px;
  line-height: 2;
}
.faq-answer::before {
  content: 'A.';
  margin-right: 12px;
  color: var(--color-white);
  font-weight: 600;
}
.cta {
  background: linear-gradient(135deg, var(--color-accent) 0%, #5a0f25 100%);
  text-align: center;
  padding: 80px 0;
}
.cta h2 {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  color: var(--color-white);
  margin-bottom: 24px;
  letter-spacing: 2px;
}
.cta p {
  color: rgba(255, 255, 255, .9);
  margin-bottom: 32px;
}
.cta-button {
  display: inline-block;
  padding: 16px 48px;
  background: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
  font-size: .9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}
.cta-button:hover {
  background: var(--color-white);
  color: var(--color-accent);
}
.footer {
  background: var(--color-primary);
  padding: 60px 0 100px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  letter-spacing: 3px;
  color: var(--color-gold);
  margin-bottom: 24px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: .85rem;
  color: rgba(255, 255, 255, .7);
}
.footer-links a:hover {
  color: var(--color-gold);
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(201, 169, 98, .2);
}
.footer-bottom p {
  font-size: .75rem;
  color: rgba(255, 255, 255, .5);
}
/* ========================================
   Animations
======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ========================================
   Responsive Design
======================================== */
@media screen and (max-width:1024px) {
  :root {
    --section-padding: 80px;
  }
  .wine-grid {
    gap: 40px;
  }
  .info-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(16px, 2vw, 28px);
  }
}
@media screen and (max-width:768px) {
  :root {
    --section-padding: 60px;
  }
  .nav-links {
    display: none;
  }
  .section-title {
    font-size: 1.3rem;
  }
  .wine-grid {
    gap: 32px;
  }
  .wine-image::before {
    display: none;
  }
  .atmosphere-text h2 {
    font-size: 1.3rem;
  }
  .concept-text {
    font-size: 1rem;
    line-height: 2.2;
  }
  .footer-links {
    flex-direction: column;
    gap: 16px;
  }
}

/* Hero タイトルを常に 1 行表示に（末尾に追記） */
.hero-title{
  white-space: nowrap;
  overflow: visible;         /* 省略記号を使わない場合 */
  text-overflow: clip;
}
@media (max-width: 480px){
  .hero-title{ font-size: clamp(20px, 5vw, 56px); }
}
@media (max-width: 600px){
  .hero-title{ letter-spacing: clamp(0px, 0.3vw, 4px); }
}
/* NOTE: 以前 480px 以下で .hero-title を 1rem に固定していた指定は削除しています */
/* 目立つCTAスタイル（サイトのゴールド基調に寄せた例） */
.btn-contact{
  display:inline-block;
  padding:10px 16px;
  border-radius:999px;
  background:linear-gradient(135deg,#CFAF6E,#B48A3A);
  color:#111;
  font-weight:700;
  letter-spacing:.04em;
  border:1px solid rgba(255,255,255,.15);
  box-shadow:0 8px 20px rgba(0,0,0,.15);
}
.btn-contact:hover{ transform: translateY(-1px); filter:brightness(1.05); }
/* モバイルの下部固定バー（768px以下で表示） */
.contact-bar{
  position:fixed; left:0; right:0; bottom:0;
  display:none;
  gap:8px; padding:10px env(safe-area-inset-right,16px) calc(10px + env(safe-area-inset-bottom,8px)) env(safe-area-inset-left,16px);
  
	
backdrop-filter: blur(8px);
  z-index:1200;
margin:10px 10px 0;
}
.contact-bar__item{
  flex:1; text-align:center; padding:12px 8px;
  border-radius:10px; background:#2a2a2a; color:#fff; font-weight:600;
}
.contact-bar__cta{
  background:linear-gradient(135deg,#E7C888,#B48A3A); color:#111; font-weight:800;
}
@media (max-width: 768px){ 
.contact-bar{ display:flex; } }

