@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;
}

.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;
}
/* ==== CONCEPTエリア：文章を広げて高さを抑えたレイアウト ==== */
#concept {
    max-width: 950px; /* 全体の幅を少しだけ広げてゆとりを持たせる */
    width: 90%;
    margin: 70px auto;
}

/* 上段（写真と文章の横並びグループ） */
#concept .concept-top-group {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

/* 左側：自己紹介写真（少しスリムにして全体のバランスを取る） */
#concept .concept-main-photo {
    width: 30%; 
}
#concept .concept-main-photo img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* 右側：文章エリア（幅を広げて高さを抑える） */
#concept .concept-text {
    width: 66%; /* 横幅を広げることで、縦の高さが低くなり読みやすくなります */
}

/* 「季節を食べる」見出し */
#concept .concept-catch {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #2b3a42;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 6px;
    border-bottom: 1px solid #ddd;
}

/* 本文テキスト */
#concept .concept-text p,
#concept .concept-desc {
    font-size: 0.9rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 14px;
}
#concept .concept-text p:last-child {
    margin-bottom: 0;
}

/* 下段：店舗写真2枚のエリア */
#concept .concept-bottom-photos {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
#concept .concept-bottom-photos img {
    width: 48.5%; 
    height: auto;
    aspect-ratio: 16 / 9; 
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}





/* フッターバナー設定（横幅一杯に写真を表示） */
.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;
}
