/* ================================
   基本設定
================================ */
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@500&display=swap');

html, body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Shippori Mincho', serif;
  background-color: #111;
  color: #f5f5f5;
  line-height: 1.6;
}

/* ================================
   ヒーロー & ロゴ
================================ */
.hero {
  height: 70vh;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.logo-img {
  max-width: 200px;
  width: 20%;
  height: auto;
  position: relative;
  z-index: 2;
}

/* ================================
   ナビゲーション
================================ */
.section-nav {
  background-color: #111;
  border-bottom: 1px solid #333;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.section-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2em;
  margin: 0;
  padding: 1em;
  overflow-x: auto;
  white-space: nowrap;
}

.section-nav a {
  color: #bfa46f;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s;
}

.section-nav a:hover {
  color: #fff;
}

/* ================================
   セクション共通
================================ */
section {
  padding: 4em 2em;
  max-width: 1000px;
  margin: 0 auto;
  border-bottom: 1px solid #333;
}

section h2 {
  color: #bfa46f;
  border-left: 5px solid #bfa46f;
  padding-left: 0.5em;
  margin-bottom: 1.5em;
  letter-spacing: 0.1em;
}

/* ================================
   ギャラリー・アイテム
================================ */
.menu-gallery {
  display: flex;
  gap: 2em;
  justify-content: center;
  flex-wrap: wrap;
}

.menu-item {
  width: 300px;
  background-color: #1a1a1a;
  padding: 1em;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}

.menu-item:hover { transform: scale(1.03); }

.menu-item img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #bfa46f;
}

.space-gallery {
  display: flex;
  flex-direction: column;
  gap: 3em;
}

.space-item {
  display: flex;
  gap: 2em;
  align-items: center;
  flex-wrap: wrap;
}

.space-item img {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
}

.space-text { flex: 1; min-width: 280px; }

/* ================================
   Googleマップ レスポンシブ
================================ */
.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  margin-top: 1.5em;
}

.map-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ================================
   ボタン
================================ */
.reserve-button, .instagram-button {
  display: inline-block;
  padding: 0.8em 2em;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1em;
}

.reserve-button { background-color: #bfa46f; color: #111; }
.instagram-button { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }

/* ================================
   スマホ対応
================================ */
@media screen and (max-width: 768px) {
  .logo-img { width: 150px; }
  .section-nav ul { justify-content: flex-start; padding-left: 1.5em; }
  section { padding: 3em 1em; }
  .space-item { flex-direction: column; text-align: center; }
  .space-item img { max-width: 100%; }
}

footer {
  text-align: center;
  padding: 2em;
  color: #666;
  font-size: 0.8em;
}
footer p {
  letter-spacing: 0.05em; 
  color: #888;           
  font-size: 0.85em;    
}
/* Instagramフィードのコンテナ設定 */
.instagram-feed-container {
  max-width: 800px; /* 広がりすぎないように制限 */
  margin: 1.5em auto; /* 中央寄せ */
  background-color: #1a1a1a; /* 読み込み前の背景色 */
  border-radius: 8px;
  padding: 10px;
}

/* スマホでは横幅いっぱいに使う */
@media screen and (max-width: 768px) {
  .instagram-feed-container {
    padding: 5px;
  }
}