/* ------------------------------
   Reset & Base
------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

/* Google Fontsを使う場合の例 */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300&display=swap');

body {
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  color: #fff;
  background: #000;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  height: auto; /* 縦横比を保つなら推奨 */
}

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

main {
  padding: 2rem 1rem;
}

/* ------------------------------
   Header (Glass style)
------------------------------ */
header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1002;

  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 2rem;
}

.header-left img {
  height: 60px;
}

.header-center {
  text-align: left;
  font-size: 0.9rem;
}

.header-right nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}


/* Visually-hidden */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}



/* 光るアンダーライン */
header nav ul li a {
  position: relative;
  font-weight: 500;
  padding-bottom: 4px;
}

header nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, #aaaaaa);
  transition: width 0.3s ease-in-out;
}

header nav ul li a:hover::after,
header nav ul li a:focus::after {
  width: 100%;
}

/* ------------------------------
   Hamburger Menu (Mobile)
------------------------------ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background-color: transparent;
  border: none;
}

.hamburger span {
  width: 36px;
  height: 3px;
  background: #fff;
  transition: 0.3s;
}

/* ------------------------------
   ハンバーガーメニュー下に "MENU"
------------------------------ */
.hamburger::after {
  content: "MENU";
  font-size: 0.73rem;
  color: #fff;
  text-align: center;
  margin-top: 4px;
}

/* ------------------------------
   ハンバーガーメニュー → × に変化
------------------------------ */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5.5px, 5.5px);
  width: 34px;
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
  transition: opacity 0.3s, width 0.3s;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5.5px, -5.5px);
  width: 34px;
}

/* 開閉アニメーションをスムーズに */
.hamburger span {
  transition: 0.3s;
}



/* Overlay (Glass style) */
.overlay {
  position: fixed;
  top: 80px;
  inset: 0 auto auto 0;
  width: 100%;
  height: calc(100%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
  z-index: 1000;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Nav (Glass style) */
.mobile-nav {
  position: fixed;
  top: 80px;
  right: -100%;
  width: 75%;
  height: calc(100% - 60px);
  background: rgba(0, 0, 0, 0.4); /* ヘッダーと同じ */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: right 0.3s ease-in-out;
  z-index: 1001;
  padding: 2rem;
  color: #fff;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.mobile-nav ul li a {
  color: #fff;
}


/* ------------------------------
   Footer
------------------------------ */
footer {
  text-align: center;
  padding: 1rem;
  font-family:Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
}

/* ------------------------------
   TOP Page
------------------------------ */
#splash {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

#splash img {
  width: 500px;
  animation: splash-zoom 3s forwards;
}
@keyframes splash-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.1); }
}

/* メインビジュアル */
.top-visual {
  position: relative;
  overflow: hidden;
}

.top-visual img {
  width: 100%;
  height: calc(100vh - 80px);
  object-fit: cover;
}

.top-message {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  background: rgba(0,0,0,0.3);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  /* font-weight: bold; */
}


/* ------------------------------
   DRINK / FOOD Grid
------------------------------ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}

.grid-item {
  text-align: center;
}

.grid-item img {
  border-radius: 8px;
}

.grid-item p {
  margin-top: 0.5rem;
}

/* ------------------------------
   Responsive
------------------------------ */
@media (max-width: 768px) {
  .header-right nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hamburger, header {
    z-index: 1002;
  }  

}


/* ------------------------------
   ACCESS Page 改善版
------------------------------ */
.access {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.access-header {
  text-align: center;
  margin-bottom: 3rem;
}

.access-header h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #fff, #ccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.access-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #fff, #aaa);
}

.access-info {
  color: #ddd;
}

.address {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.access-guide {
  font-size: 1.1rem;
  opacity: 0.9;
}

.access-content {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-top: 2rem;
}

.access-photos.grid {
  flex-shrink: 0;
  max-width: 320px;
}

.access-photos .grid-item img {
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.access-photos .grid-item img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255,255,255,0.1);
}

.access-map {
  flex: 1;
  height: 500px !important;  /* !importantで強制 */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  /* 青い背景は削除 */
}

.access-map iframe {
  filter: grayscale(30%) brightness(0.95) contrast(1.1);
  border-radius: 16px;
}

/* ------------------------------
   Responsive
------------------------------ */
@media (max-width: 768px) {
  .access {
    padding: 2rem 1rem;
  }
  
  .access-header h2 {
    font-size: 2.2rem;
  }
  
  .access-content {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;       /* ← 中央寄せ */
    padding: 0 1rem;      /* ← 左右余白 */
  }
  
  .access-photos.grid {
    max-width: none;
    width: 100%;
    display: grid;        /* gridを明示 */
    justify-items: center;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
  }
  
  .access-map {
    height: 350px;
    width: 100%;
  }
}


/* ABOUTセクション */
.about {
  max-width: 400px;
  margin: 4rem auto;
  padding: 0;
  line-height: 1.8;
  background: none;
  border: none;
}

/* 見出し（PC時は中央、スマホも中央なので共通で指定） */
.about h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #fff;
  text-align: center;
}

/* 本文（PCは左寄せ） */
.about p {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: #ddd;
  text-align: left;   /* PC時は左揃え */
}

/* ------------------------------
   スマホのみ中央寄せ
------------------------------ */
@media (max-width: 768px) {
  .about p {
    text-align: center; /* スマホでは本文も中央に */
  }
}

/* ------------------------------
   DRINK Page
------------------------------ */
.drink-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.drink-page h2 {
  text-align: center;
  margin: 2rem 0;
  font-size: 1.2rem;
}

.drink-overlay {
  position: fixed;
  inset: 0;
  background: url('images/drink_bg.webp') center/cover no-repeat fixed;
  z-index: -1;
  filter: brightness(0.4);
}

.drink-columns {
  display: flex;
  height: calc(100vh - 160px);
}

.drink-column {
  flex: 1;
  overflow-y: scroll;
  padding: 1rem 2rem;
}

.drink-column h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.drink-column ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.drink-column ul li {
  margin-left: 0.5rem;
  color: #ddd;
  font-size: 0.95rem;
}

/* スマホ時：縦並び一体スクロール */
@media (max-width: 768px) {
  .drink-columns {
    flex-direction: column;
    height: auto;
  }
  .drink-column {
    overflow: visible;
  }
}



/* ------------------------------
   FOOD Page
------------------------------ */
.food-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.food-overlay {
  position: fixed;
  inset: 0;
  background: url('images/food_bg.webp') center/cover no-repeat fixed;
  z-index: -1;
  filter: brightness(0.3);
}

.food-text {
  color: #fff;
  font-size: 1rem;
  line-height: 2;
}

.food-text ul {
  list-style: none;
  margin-top: 1.5rem;
}

.food-text ul li {
  font-size: 1.1rem;
}


