@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@500;600&family=Noto+Sans+JP:wght@400;500;700&display=swap');

/* =========================
   リセット & 基本設定
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #2f2f2f;
  background: #faf8f4;
  line-height: 1.8;
}

/* =========================
   ヘッダー
========================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ロゴ */
.logo {
  font-family: 'Shippori Mincho', serif;
  font-size: 26px;
  letter-spacing: 0.08em;
  color: #2f2f2f;
}

/* =========================
   ハンバーガーボタン
========================= */
.hamburger {
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #333;
  transition: 0.3s;
}

/* =========================
   ナビゲーション（全画面オーバーレイ）
========================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 40, 35, 0.97);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nav.open {
  opacity: 1;
  visibility: visible;
}

/* ✕ボタン */
.close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.close-btn span {
  position: absolute;
  width: 28px;
  height: 2px;
  background: #fff;
}

.close-btn span:first-child {
  transform: rotate(45deg);
}

.close-btn span:last-child {
  transform: rotate(-45deg);
}

.close-btn:hover {
  opacity: 0.7;
}

/* ナビゲーションリスト */
.nav-list {
  list-style: none;
  text-align: center;
  padding: 0;
}

.nav-list li {
  margin: 32px 0;
}

.nav-list a {
  color: #fff;
  font-size: 1.8rem;
  text-decoration: none;
  letter-spacing: 0.12em;
  transition: opacity 0.3s ease;
  display: inline-block;
}

.nav-list a:hover {
  opacity: 0.6;
}

/* =========================
   ヒーロー
========================= */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-overlay {
  background: rgba(0,0,0,0.35);
  padding: 40px;
  color: #fff;
  text-align: center;
}

.hero h1 {
  font-family: 'Shippori Mincho', serif;
  font-size: 32px;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}

.hero p {
  font-size: 16px;
}

/* =========================
   共通セクション
========================= */
section {
  padding: 100px 20px;
}

h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 26px;
  margin-bottom: 24px;
  letter-spacing: 0.08em;
}

/* =========================
   コンセプト
========================= */
.concept {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.concept p {
  margin: 20px 0;
  line-height: 2;
}

/* =========================
   モーニング・ストーリー・Instagram
========================= */
.morning,
.story,
.instagram {
  background-size: cover;
  background-position: center;
  color: #fff;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.morning-text,
.story-text {
  background: rgba(0,0,0,0.5);
  padding: 50px;
  max-width: 600px;
  backdrop-filter: blur(4px);
}

.instagram {
  text-align: center;
  flex-direction: column;
  padding: 60px 20px;
}

/* =========================
   大切にしていること
========================= */
.values {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-item {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.value-item h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  margin-bottom: 16px;
  color: #2f2f2f;
}

/* =========================
   ボタン
========================= */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 32px;
  border: 1px solid currentColor;
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.08em;
}

.btn:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

/* =========================
   フッター
========================= */
.footer {
  padding: 60px 20px 20px;
  text-align: center;
  font-size: 14px;
  background: #222;
  color: #eee;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: left;
}

.footer-brand h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 24px;
  color: #fff;
  margin-bottom: 16px;
}

.footer h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 16px;
}

.footer a {
  color: #eee;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 0.7;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav li {
  margin: 10px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
}

/* =========================
   ふわっと出る演出
========================= */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   Galleryページ専用スタイル
========================= */

/* ギャラリーヒーロー */
.gallery-hero {
  background: linear-gradient(135deg, #8b7355 0%, #6a5745 100%);
  height: 50vh;
  min-height: 350px;
}

/* ギャラリー導入 */
.gallery-intro {
  padding: 80px 20px;
  background: #faf8f4;
  text-align: center;
}

.gallery-content {
  max-width: 900px;
  margin: 0 auto;
}

.gallery-intro h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 28px;
  margin-bottom: 30px;
  letter-spacing: 0.08em;
}

.gallery-intro p {
  line-height: 2.2;
  color: #4a4a4a;
  margin: 20px 0;
}

/* 写真ギャラリーグリッド */
.gallery-grid-section {
  padding: 80px 20px;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ギャラリーアイテム */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.gallery-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

/* ギャラリーオーバーレイ */
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  padding: 30px 20px 20px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}

.gallery-overlay p {
  font-size: 13px;
  opacity: 0.9;
}

/* カテゴリーセクション */
.gallery-categories {
  padding: 80px 20px;
  background: #f5f3ef;
}

.gallery-categories h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 28px;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 0.08em;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.category-card {
  text-align: center;
  padding: 40px 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.category-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.category-card h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  margin-bottom: 16px;
  color: #2f2f2f;
  letter-spacing: 0.05em;
}

.category-card p {
  line-height: 1.9;
  color: #4a4a4a;
  font-size: 14px;
}

/* Instagram案内 */
.gallery-instagram {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #8b7355 0%, #5a4a3a 100%);
  color: #fff;
}

.gallery-instagram h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 28px;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}

.gallery-instagram p {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.9;
}

.gallery-instagram .btn-large {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.gallery-instagram .btn-large:hover {
  background: #fff;
  color: #8b7355;
}

/* メッセージセクション */
.gallery-message {
  padding: 100px 20px;
  background: #faf8f4;
}

.message-block {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.message-block h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 28px;
  margin-bottom: 40px;
  letter-spacing: 0.08em;
  color: #2f2f2f;
}

.message-block p {
  line-height: 2.2;
  color: #4a4a4a;
  margin: 24px 0;
}

/* ギャラリーCTA */
.gallery-cta {
  padding: 80px 20px;
  text-align: center;
  background: #fff;
}

.gallery-cta h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 28px;
  margin-bottom: 40px;
  letter-spacing: 0.08em;
}

.gallery-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* =========================
   Scheduleページ専用スタイル
========================= */

/* スケジュールヒーロー */
.schedule-hero {
  background: linear-gradient(135deg, #5a4a3a 0%, #3a2a1a 100%);
  height: 50vh;
  min-height: 350px;
}

/* スケジュール導入 */
.schedule-intro {
  padding: 80px 20px;
  background: #faf8f4;
  text-align: center;
}

.schedule-content {
  max-width: 900px;
  margin: 0 auto;
}

.schedule-intro h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 28px;
  margin-bottom: 30px;
  letter-spacing: 0.08em;
}

.schedule-intro p {
  line-height: 2;
  color: #4a4a4a;
  margin: 20px 0;
}

.schedule-note {
  font-size: 13px;
  color: #777;
  margin-top: 40px;
}

/* 今週の出店 */
.schedule-this-week {
  padding: 80px 20px;
  background: #fff;
}

.week-header {
  text-align: center;
  margin-bottom: 50px;
}

.week-header h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 32px;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}

.week-date {
  font-size: 16px;
  color: #777;
  letter-spacing: 0.05em;
}

/* 来週以降の予定 */
.schedule-upcoming {
  padding: 80px 20px;
  background: #f5f3ef;
}

.schedule-upcoming h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 28px;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 0.08em;
}

/* スケジュールリスト */
.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.schedule-item {
  display: flex;
  gap: 30px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #e0e0e0;
}

.schedule-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.schedule-item.today {
  border-left-color: #8b7355;
  background: linear-gradient(to right, #faf8f4 0%, #fff 100%);
}

/* スケジュール日付 */
.schedule-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  padding: 15px;
  background: #fafafa;
  border-radius: 8px;
  position: relative;
}

.schedule-item.today .schedule-date {
  background: #8b7355;
  color: #fff;
}

.date-number {
  font-family: 'Shippori Mincho', serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

.date-day {
  font-size: 14px;
  margin-top: 5px;
  letter-spacing: 0.05em;
}

.today-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #d64545;
  color: #fff;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 10px;
  letter-spacing: 0.05em;
}

/* スケジュール詳細 */
.schedule-details {
  flex: 1;
}

.schedule-details h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  margin-bottom: 10px;
  color: #2f2f2f;
  letter-spacing: 0.05em;
}

.schedule-time,
.schedule-location {
  font-size: 14px;
  color: #666;
  margin: 5px 0;
  line-height: 1.6;
}

.schedule-desc {
  font-size: 14px;
  color: #888;
  margin-top: 10px;
  font-style: italic;
}

/* もっとスケジュール */
.more-schedule {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  color: #666;
}

/* 定期出店 */
.schedule-regular {
  padding: 80px 20px;
  background: #fff;
}

.schedule-regular h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 28px;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 0.08em;
}

.regular-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.regular-card {
  background: #faf8f4;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.regular-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #2f2f2f;
}

.regular-location {
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  color: #8b7355;
  margin-bottom: 10px;
  font-weight: 600;
}

.regular-time {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.regular-note {
  font-size: 14px;
  line-height: 1.9;
  color: #4a4a4a;
}

/* お知らせ */
.schedule-notice {
  padding: 80px 20px;
  background: #f5f3ef;
}

.schedule-notice h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.08em;
}

.notice-list {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.notice-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.3s ease;
}

.notice-item:last-child {
  border-bottom: none;
}

.notice-item:hover {
  background: #fafafa;
}

.notice-date {
  font-family: 'Shippori Mincho', serif;
  font-size: 14px;
  color: #8b7355;
  min-width: 100px;
  font-weight: 500;
}

.notice-item p {
  color: #4a4a4a;
  line-height: 1.6;
}

/* Instagram案内 */
.schedule-instagram {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #8b7355 0%, #5a4a3a 100%);
  color: #fff;
}

.schedule-instagram h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 28px;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}

.schedule-instagram p {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.9;
}

.schedule-instagram .btn-large {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.schedule-instagram .btn-large:hover {
  background: #fff;
  color: #8b7355;
}

/* =========================
   Menuページ専用スタイル
========================= */

/* メニュー導入 */
.menu-intro {
  padding: 80px 20px;
  background: #faf8f4;
  text-align: center;
}

.menu-content {
  max-width: 1000px;
  margin: 0 auto;
}

.menu-intro h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 28px;
  margin-bottom: 30px;
  letter-spacing: 0.08em;
}

.menu-intro p {
  line-height: 2;
  color: #4a4a4a;
  margin: 20px 0;
}

.menu-note {
  font-size: 13px;
  color: #777;
  margin-top: 40px;
}

/* メニューセクション */
.menu-section {
  padding: 80px 20px;
}

.morning-menu {
  background: #fff;
}

.drink-menu {
  background: #f5f3ef;
}

.snack-menu {
  background: #fff;
}

/* カテゴリーヘッダー */
.menu-category-header {
  text-align: center;
  margin-bottom: 50px;
}

.menu-category-header h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 32px;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
  color: #2f2f2f;
}

.category-subtitle {
  font-size: 15px;
  color: #777;
  letter-spacing: 0.05em;
}

/* メニューグリッド */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

/* メニューアイテム */
.menu-item {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1px solid #f0f0f0;
}

.drink-menu .menu-item {
  background: #fafafa;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8e8e8;
}

.menu-item h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 19px;
  color: #2f2f2f;
  letter-spacing: 0.05em;
}

.menu-price {
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  color: #8b7355;
  font-weight: 600;
}

.menu-description {
  line-height: 1.8;
  color: #666;
  font-size: 14px;
}

/* メニュータグ */
.menu-tag {
  display: inline-block;
  background: #8b7355;
  color: #fff;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 12px;
  position: absolute;
  top: 15px;
  right: 15px;
  letter-spacing: 0.05em;
}

/* メニューに関する補足 */
.menu-notes {
  padding: 80px 20px;
  background: #faf8f4;
}

.menu-notes h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 28px;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 0.08em;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.note-card {
  text-align: center;
  padding: 40px 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.note-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.note-card h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  margin-bottom: 16px;
  color: #2f2f2f;
}

.note-card p {
  line-height: 1.9;
  color: #4a4a4a;
  font-size: 14px;
}

/* メニューCTA */
.menu-cta {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #8b7355 0%, #5a4a3a 100%);
  color: #fff;
}

.menu-cta h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 28px;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}

.menu-cta p {
  font-size: 16px;
  margin-bottom: 30px;
}

.menu-cta .btn-large {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.menu-cta .btn-large:hover {
  background: #fff;
  color: #8b7355;
}

/* =========================
   Contactページ専用スタイル
========================= */

/* コンタクトヒーロー */
.contact-hero {
  background: linear-gradient(135deg, #8b7355 0%, #5a4a3a 100%);
  height: 50vh;
  min-height: 350px;
}

/* コンタクト導入 */
.contact-intro {
  padding: 80px 20px;
  background: #faf8f4;
  text-align: center;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-intro h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 28px;
  margin-bottom: 30px;
  letter-spacing: 0.08em;
}

.contact-intro p {
  line-height: 2;
  color: #4a4a4a;
  margin: 20px 0;
}

.contact-note {
  font-size: 14px;
  color: #777;
  margin-top: 30px;
}

/* フォームセクション */
.contact-form-section {
  padding: 80px 20px;
  background: #fff;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 30px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 10px;
  color: #2f2f2f;
  font-size: 15px;
}

.required {
  color: #d64545;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #8b7355;
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* 送信ボタン */
.form-submit {
  text-align: center;
  margin-top: 40px;
}

.submit-btn {
  background: #2f2f2f;
  color: #fff;
  border: none;
  padding: 16px 60px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.08em;
  font-family: 'Noto Sans JP', sans-serif;
}

.submit-btn:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.submit-btn:active {
  transform: translateY(0);
}

/* フォームメッセージ */
.form-message {
  margin-top: 20px;
  padding: 16px;
  border-radius: 6px;
  text-align: center;
  display: none;
  font-size: 15px;
}

.form-message.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* その他の連絡方法 */
.contact-other {
  padding: 80px 20px;
  background: #f5f3ef;
}

.contact-other h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 28px;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 0.08em;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-method-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.method-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.contact-method-card h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  margin-bottom: 16px;
  color: #2f2f2f;
}

.contact-method-card p {
  line-height: 1.8;
  color: #4a4a4a;
  font-size: 14px;
  margin-bottom: 20px;
}

.method-link {
  display: inline-block;
  color: #8b7355;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #8b7355;
  transition: opacity 0.3s ease;
}

.method-link:hover {
  opacity: 0.7;
}

/* FAQ セクション */
.faq-section {
  padding: 80px 20px;
  background: #fff;
}

.faq-section h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 28px;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 0.08em;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: 18px;
  color: #2f2f2f;
  margin-bottom: 12px;
  font-weight: 600;
}

.faq-answer {
  line-height: 1.9;
  color: #4a4a4a;
  padding-left: 20px;
}

/* =========================
   Aboutページ専用スタイル
========================= */

/* ページヒーロー */
.page-hero {
  height: 60vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 58px;
}

.page-hero-overlay {
  background: rgba(0,0,0,0.45);
  padding: 60px 40px;
  color: #fff;
  text-align: center;
  backdrop-filter: blur(2px);
}

.page-hero h1 {
  font-family: 'Shippori Mincho', serif;
  font-size: 36px;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}

.page-hero p {
  font-size: 16px;
  letter-spacing: 0.08em;
}

/* ストーリーセクション */
.about-story {
  padding: 100px 20px;
  background: #faf8f4;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 32px;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 0.08em;
}

.story-block {
  margin: 60px 0;
  line-height: 2.2;
}

.story-block h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 22px;
  margin-bottom: 24px;
  color: #2f2f2f;
  letter-spacing: 0.08em;
}

.story-block p {
  margin: 20px 0;
  color: #4a4a4a;
}

/* ビジュアル区切り */
.about-visual {
  height: 400px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.about-visual-text {
  background: rgba(0,0,0,0.5);
  padding: 50px;
  color: #fff;
  text-align: center;
  backdrop-filter: blur(4px);
}

.about-visual-text p {
  font-size: 20px;
  line-height: 2;
  letter-spacing: 0.08em;
}

/* コンセプトセクション */
.about-concept {
  padding: 100px 20px;
  background: #fff;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.concept-card {
  text-align: center;
  padding: 40px 20px;
  background: #faf8f4;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.concept-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.concept-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.concept-card h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  margin-bottom: 16px;
  color: #2f2f2f;
}

.concept-card p {
  line-height: 1.9;
  color: #4a4a4a;
  font-size: 14px;
}

/* オーナーメッセージ */
.owner-message {
  padding: 100px 20px;
  background: #f5f3ef;
}

.message-box {
  background: #fff;
  padding: 60px 50px;
  border-left: 4px solid #8b7355;
  margin-top: 40px;
  line-height: 2.2;
}

.message-box p {
  margin: 24px 0;
  color: #4a4a4a;
}

.signature {
  text-align: right;
  margin-top: 40px;
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  color: #2f2f2f;
}

/* CTAセクション */
.about-cta {
  padding: 100px 20px;
  text-align: center;
  background: #fff;
}

.about-cta h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 28px;
  margin-bottom: 50px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-large {
  display: inline-block;
  padding: 16px 40px;
  border: 2px solid #2f2f2f;
  color: #2f2f2f;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  background: #fff;
}

.btn-large:hover {
  background: #2f2f2f;
  color: #fff;
  transform: translateY(-2px);
}

/* ロゴをリンク化 */
.logo {
  text-decoration: none;
  color: inherit;
}

/* =========================
   レスポンシブ対応
========================= */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 24px;
  }
  
  .nav-list a {
    font-size: 1.4rem;
  }
  
  .morning-text,
  .story-text {
    padding: 30px;
  }
  
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  /* Aboutページのレスポンシブ */
  .page-hero {
    height: 50vh;
    min-height: 300px;
  }
  
  .page-hero h1 {
    font-size: 28px;
  }
  
  .about-content h2 {
    font-size: 26px;
  }
  
  .story-block h3 {
    font-size: 20px;
  }
  
  .about-visual {
    height: 300px;
    background-attachment: scroll;
  }
  
  .about-visual-text {
    padding: 30px;
  }
  
  .about-visual-text p {
    font-size: 16px;
  }
  
  .concept-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .message-box {
    padding: 40px 30px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-large {
    width: 100%;
    max-width: 300px;
  }
  
  /* Contactページのレスポンシブ */
  .contact-hero {
    height: 40vh;
    min-height: 280px;
  }
  
  .contact-intro h2,
  .contact-other h2,
  .faq-section h2 {
    font-size: 24px;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
  }
  
  .submit-btn {
    width: 100%;
    padding: 16px 30px;
  }
  
  /* Menuページのレスポンシブ */
  .menu-category-header h2 {
    font-size: 26px;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .menu-item {
    padding: 25px;
  }
  
  .menu-item h3 {
    font-size: 17px;
  }
  
  .menu-price {
    font-size: 18px;
  }
  
  .notes-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .menu-cta h2 {
    font-size: 24px;
  }
  
  /* Scheduleページのレスポンシブ */
  .schedule-hero {
    height: 40vh;
    min-height: 280px;
  }
  
  .week-header h2,
  .schedule-regular h2,
  .schedule-notice h2,
  .schedule-instagram h2 {
    font-size: 24px;
  }
  
  .schedule-item {
    flex-direction: column;
    gap: 20px;
    padding: 25px;
  }
  
  .schedule-date {
    min-width: auto;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    padding: 15px;
  }
  
  .date-number {
    font-size: 28px;
  }
  
  .date-day {
    margin-top: 0;
    font-size: 16px;
  }
  
  .schedule-details h3 {
    font-size: 18px;
  }
  
  .regular-grid {
    grid-template-columns: 1fr;
  }
  
  .notice-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px;
  }
  
  .notice-date {
    min-width: auto;
  }
  
  /* Galleryページのレスポンシブ */
  .gallery-hero {
    height: 40vh;
    min-height: 280px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
  }
  
  .gallery-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
  }
  
  .category-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .gallery-instagram h2,
  .gallery-categories h2,
  .message-block h2,
  .gallery-cta h2 {
    font-size: 24px;
  }
  
  .gallery-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .gallery-cta .btn-large {
    width: 100%;
    max-width: 300px;
  }
}