@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Georgia", "Yu Mincho", "游明朝", "Hiragino Mincho ProN", serif;
  line-height: 1.9;
  background-color: #ffffff;
  color: #222222;
}

/* ヘッダー（黒背景・白文字） */
.header {
  background-color:#000000;
  position: fixed;
  color: #ffffff;
  padding: 0 30px;
  position: sticky;
  top: 0;
  left: 0;
  height: 80px;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
/* おしゃれで高級感のある店名テキスト */
.site-title {
  color: #ffffff !important;
  font-family: 'Cormorant Garamond', 'Baskerville', 'Bodoni MT', 'Didot', serif;
  font-size: 34px; /* 文字サイズを大きく設定 */
  font-weight: 500;
  letter-spacing: 3px; /* 字間を広げて優雅な印象に */
  text-decoration: none !important; /* 下線を完全に消去 */
  border-bottom: none !important;  /* 下線枠を消去 */
  display: inline-block;
  transition: opacity 0.3s;
}

.site-title:hover {
  opacity: 0.7;
}





.header-nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.header-nav a {
  text-decoration: none;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 1.5px;
  transition: opacity 0.3s;
}

.header-nav a:hover {
  opacity: 0.7;
}

/* ヒーローエリア */
.hero {
  height: 360px;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/photo18.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
}
/* メインビジュアルエリア */
.hero {
  /* 既存の .hero の記述 */
}

/* 以下を追加 */
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: #f3ece0;
  margin-bottom: 10px;
}

.hero-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  border: 1px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 2px;
  transition: all 0.3s;
}

.hero-btn:hover {
  background-color: #ffffff;
  color: #000000;
}

.hero-content h2 {
  font-size: 28px;
  font-weight: normal;
  letter-spacing: 4px;
}

/* セクション共通 */
.concept-section,
.gallery-section {
  padding: 70px 20px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: normal;
  letter-spacing: 0.12em;
  margin-bottom: 2rem;
}
/* 1. 全体の外枠：幅の制限を1100pxまで一気に広げる */
.concept-container {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  max-width: 1100px; /* 狭かった部屋（枠）を大きく広げます */
  width: 90%;
  margin: 0 auto;
}

/* 2. 写真エリア全体 */
.concept-photo {
  flex: 1.2; /* 写真エリアの幅を文章より広く確保 */
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* 3. 上の自己紹介写真 */
.concept-main-photo img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* 4. 下の店舗写真2枚の枠 */
.concept-sub-photos {
  display: flex;
  gap: 15px;
}

/* 5. 下の店舗写真2枚 */
.concept-sub-photos img {
  width: calc(50% - 7.5px);
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

/* 6. 文章エリア */
.concept-text {
  flex: 1;
}




.concept-catch {
  font-size: 1.3re;
  font-weight: normal;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: #111111;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 10px;
}

.concept-desc {
  font-size: 1.1rem;
  line-height: 1.3;
  color: #333333;
  margin-bottom: 1.5rem;
  text-align: justify;
}
/* フッターバナー設定（横幅一杯に写真を表示） */
.footer-banner {
  width: 100%;
  height: 300px;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('images/footer-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

.footer-content {
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
/* GALLERY セクション（新しいグリッド表示） */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* 各画像カードのスタイル */
.gallery-item {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ホバー時のカード少し浮き上がる演出（追加） */
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* 画像サイズの固定とトリミング */
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* 英語キャプション */
.gallery-item .caption {
  font-weight: bold;
  font-size: 0.95rem;
  margin: 12px 16px 4px;
  color: #333333;
}

/* 日本語コメント */
.gallery-item .comment {
  font-size: 0.85rem;
  color: #666666;
  margin: 0 16px 16px;
  line-height: 1.5;
}


/* ボタン */
.more-btn-container {
  text-align: center;
  margin-top: 50px;
}

.more-btn {
  display: inline-block;
  padding: 14px 40px;
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 2px;
  font-size: 13px;
  letter-spacing: 2px;
  transition: background-color 0.3s;
}

.more-btn:hover {
  background-color: #333333;
}

/* タブレット対応（768px以下：2列） */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    text-align: center;
  }
  .concept-container {
    flex-direction: column;
  }
  .gallery-item {
    flex: 0 0 calc(50% - 7.5px);
  }
}

/* スマホ対応（480px以下：1列） */
@media (max-width: 480px) {
  .gallery-container {
    gap: 10px;
  }
  .gallery-item {
    flex: 0 0 100%;
  }
  .gallery-item img {
    height: 210px;
  }
  .gallery-item .comment {
  font-size: 0.85rem;
  color: #666;
  margin-top: 4px;
  line-height: 1.4;
}
}
/* ATMOSPHERE セクション */
.atmosphere-section {
  padding: 80px 20px;
  background-color: #fcfbf9; /* 温かみのあるオフホワイト */
  text-align: center;
}

.atmosphere-section .container {
  max-width: 1100px; /* ★コンテナの幅を制限して、写真がページいっぱいに広がらないようにします */
  margin: 0 auto;
}

.atmosphere-section .section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  letter-spacing: 2px;
  color: #222222;
  margin-bottom: 5px;
}

.atmosphere-section .section-sub {
  font-size: 14px;
  color: #777777;
  margin-bottom: 45px;
}

/* 3列カードレイアウト（スマホでは自動で1列になります） */
.atmosphere-grid {
  display: grid; /* ★ここが重要です。グリッドレイアウトを強制します。 */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* ★ここが重要です。3カラム（自動調整）にします。 */
  gap: 30px;
}

.atmosphere-card {
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.atmosphere-card:hover {
  transform: translateY(-5px);
}

.atmosphere-card .img-wrapper {
  width: 100%;
  height: 280px; /* ★ここが最も重要です。スクリーンショットのような巨大な高さを防ぐため、固定高さを強制します。 */
  overflow: hidden;
}

.atmosphere-card img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ★ここが重要です。画像を枠（img-wrapper）に収め、崩れないようにします。 */
  transition: transform 0.5s ease;
}

.atmosphere-card:hover img {
  transform: scale(1.05); /* ホバー時にうっすら拡大 */
}

.atmosphere-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  margin: 20px 0 8px;
  color: #333333;
}

.atmosphere-card p {
  font-size: 13px;
  color: #666666;
  padding: 0 20px 25px;
  line-height: 1.6;
}

/* ギャラリー全体を中央寄せ・縦並びに補正 */
.gallery-section {
  display: block; /* 縦並びに固定 */
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

/* タイトルの位置と大きさ */
.gallery-title {
  text-align: center; /* タイトルを中央に配置 */
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 25px;
}

/* 日本語サブタイトル */
.gallery-title span {
  display: inline-block;
  font-size: 1.1rem;
  margin-left: 15px;
  font-weight: normal;
  color: #666;
}

/* 写真枠の幅調整 */
.gallery-grid {
  width: 100%;
}
