/*
Theme Name: Hello Elementor Child
Theme URI: https://boulangerie-atsushi.net
Description: Hello Elementor Child Theme for Boulangerie Atsushi
Author: Boulangerie Atsushi
Author URI: https://boulangerie-atsushi.net
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
*/

/* Google Fonts 読み込み */
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500&display=swap');

/* =============================================
   CSS変数
   ============================================= */
:root {
  --color-cream: #fef2e0;
  --color-brown: #7f3f20;
  --color-beige: #fbdeaf;
  --color-text: #333;
  --font-base: 'Zen Maru Gothic', sans-serif;
}

/* ========================================
   ティザーオーバーレイ
======================================== */
.teaser-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fef2e0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: opacity 1.2s ease;
}

.teaser-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.teaser-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.teaser-text {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-shadow: 0 0 20px rgba(255,255,255,0.9), 0 0 40px rgba(255,255,255,0.7);
}

.teaser-line {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 22px;
  color: #7f3f20;
  margin: 0;
  line-height: 2;
  opacity: 0;
  animation: fadeInLine 2s ease forwards;
}

.teaser-line-1 { animation-delay: 0.8s; }
.teaser-line-2 { animation-delay: 3s; }
.teaser-line-3 { animation-delay: 6s; }

@keyframes fadeInLine {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.teaser-illust {
  opacity: 0;
  animation: fadeInIllust 1s ease forwards;
  animation-delay: 0s;
}

.teaser-illust img {
  max-width: 550px;
  width: 90vw;
  height: auto;
}

@keyframes fadeInIllust {
  from { opacity: 0; }
  to { opacity: 1; }
}

.teaser-skip {
  position: absolute;
  bottom: 30px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 12px;
  color: #999;
  opacity: 0;
  animation: fadeInSkip 0.5s ease forwards;
  animation-delay: 4.5s;
}

@keyframes fadeInSkip {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ティザーロゴ（テキスト後に表示） */
.teaser-logo {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 2.5s ease;
  z-index: 20;
}

.teaser-logo.show {
  opacity: 1;
}

.teaser-logo img {
  max-width: 400px;
  width: 80vw;
  height: auto;
  filter: brightness(0) saturate(100%) invert(25%) sepia(30%) saturate(1200%) hue-rotate(350deg) brightness(95%) contrast(90%);
}

/* テキストとイラストのフェードアウト */
.teaser-text.fade-out,
.teaser-illust.fade-out {
  opacity: 0 !important;
  transition: opacity 0.8s ease;
}

/* スマホ対応 */
@media (max-width: 767px) {
  .teaser-line { font-size: 18px; }
  .teaser-illust img { max-width: 300px; }
}

/* ページ全体の背景色 */
body {
  background-color: var(--color-cream) !important;
  font-family: var(--font-base);
  color: var(--color-text);
  line-height: 1.8;
}

/* ページタイトルを非表示 */
.entry-title,
.site-title,
h1.entry-title,
header h1 {
  display: none !important;
}

/* ========================================
   右固定サイドバー（共通スタイル）
======================================== */
@media (min-width: 768px) {
  .right-sidebar-nav {
    width: 280px;
    height: 100vh;
    background: #7f3f20;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px 0 20px;
    box-sizing: border-box;
    z-index: 1000;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 1.5s ease;
    /* スクロールバー非表示 */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE, Edge */
  }

  .right-sidebar-nav::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }

  .right-sidebar-nav.slide-in {
    transform: translateX(0);
  }

  /* 下層ページ（ティザーなし）はアニメーションなしで最初から表示 */
  .right-sidebar-nav.no-animation {
    transform: translateX(0);
    transition: none;
  }

  .right-sidebar-nav .sidebar-logo { margin-top: 0; }

  .right-sidebar-nav .menu {
    list-style: none;
    padding: 0;
    margin: 40px 0 0 0;
    text-align: center;
  }

  .right-sidebar-nav .menu li { margin-bottom: 15px; }

  .right-sidebar-nav .menu a {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    color: #fef2e0;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
  }

  .right-sidebar-nav .menu a:hover { opacity: 0.7; }

  .right-sidebar-nav .sidebar-illust-wrap {
    margin-top: auto;
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    text-align: center;
  }

  .right-sidebar-nav .sidebar-illust {
    position: relative;
    z-index: 2;
  }

  .right-sidebar-nav .sidebar-illust img {
    max-width: 220px;
    height: auto;
    margin-bottom: -15px;
  }

  .right-sidebar-nav .sidebar-band {
    width: 100%;
    height: 65px;
    background: #fbdeaf;
    margin-top: -50px;
  }

  .right-sidebar-nav .sidebar-band-bottom {
    width: 100%;
    height: 60px;
    background: #7f3f20;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 15px;
  }

  .right-sidebar-nav .copyright {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 11px;
    color: #fef2e0;
    margin: 0;
    text-align: center;
    line-height: 1.4;
  }
}

/* 768px以上: サイドバー右端固定 */
@media (min-width: 768px) {
  .right-sidebar-nav {
    position: fixed;
    top: 0;
    right: 0;
  }

  body {
    margin-right: 280px !important;
  }
}

@media (max-width: 767px) {
  .right-sidebar-nav { display: none; }
}

/* ========================================
   サイドバー カレンダー
======================================== */
.sidebar-calendar {
  width: 100%;
  margin-top: 30px;
  padding: 0 5px;
  box-sizing: border-box;
}

.sidebar-calendar .simcal-calendar {
  background: #7f3f20;
  border-radius: 8px;
  padding: 12px 8px 8px 8px;
  color: #fef2e0;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.sidebar-calendar .simcal-ajax-loader,
.sidebar-calendar .simcal-calendar-admin-links,
.sidebar-calendar a[href*="post.php?post="],
.sidebar-calendar .edit-link {
  display: none !important;
}

.sidebar-calendar .simcal-calendar a { color: #fef2e0; }

.sidebar-calendar table,
.sidebar-calendar th,
.sidebar-calendar td { border: none !important; }

.sidebar-calendar td,
.sidebar-calendar th {
  padding: 0 !important;
  height: 24px !important;
  line-height: 24px !important;
}

.sidebar-calendar .simcal-calendar-head,
.sidebar-calendar .simcal-nav,
.sidebar-calendar .simcal-default-calendar-grid,
.sidebar-calendar .simcal-current,
.sidebar-calendar h3,
.sidebar-calendar h4 {
  padding: 0 !important;
  margin: 0 !important;
}

.sidebar-calendar .simcal-current-year,
.sidebar-calendar .simcal-current-month {
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 2 !important;
}

.sidebar-calendar .simcal-current-year::after { content: '年'; }

.sidebar-calendar th {
  font-size: 14px !important;
  font-weight: 400 !important;
}

.sidebar-calendar .simcal-icon-left,
.sidebar-calendar .simcal-icon-right { color: #fef2e0 !important; }

.sidebar-calendar .simcal-nav {
  vertical-align: middle !important;
  height: 30px !important;
  line-height: 30px !important;
}

.sidebar-calendar .simcal-nav-button { vertical-align: middle !important; }

.sidebar-calendar button[disabled] .simcal-icon-left,
.sidebar-calendar button[disabled] .simcal-icon-right { color: #7f3f20 !important; }

.sidebar-calendar .simcal-day-number {
  display: inline-block !important;
  width: 24px !important;
  height: 24px !important;
  line-height: 19px !important;
  text-align: center !important;
  vertical-align: middle !important;
  border-radius: 50% !important;
  background-color: #fef2e0 !important;
  color: #7f3f20 !important;
  font-weight: 700 !important;
}

/* 休業日（イベントあり）は太字解除 */
.sidebar-calendar .simcal-day-has-events .simcal-day-number {
  background-color: transparent !important;
  color: #fef2e0 !important;
  font-weight: 400 !important;
}

/* 今日の日付（バッジのみ表示） */
.sidebar-calendar .simcal-today .simcal-day-number {
  position: relative !important;
}

.sidebar-calendar .simcal-today .simcal-day-number::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 8px !important;
  height: 8px !important;
  background-color: #ff9f43 !important;
  border-radius: 50% !important;
  z-index: 10 !important;
}

.sidebar-calendar .simcal-today > div { border: none !important; }

.sidebar-calendar tr { background-color: #7f3f20 !important; }

.sidebar-calendar tbody tr:nth-child(odd) td,
.sidebar-calendar tbody tr:nth-child(odd) th { background-color: #7f3f20 !important; }

.sidebar-calendar tr:hover,
.sidebar-calendar tr:hover td,
.sidebar-calendar tr:hover th,
.sidebar-calendar td:hover,
.sidebar-calendar th:hover { background-color: #7f3f20 !important; }

.sidebar-calendar .simcal-events,
.sidebar-calendar .simcal-event,
.sidebar-calendar .simcal-no-events,
.sidebar-calendar .simcal-events-dots { display: none !important; }

.sidebar-calendar td > div { min-height: 0 !important; }

.shop-status {
  text-align: center;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px;
  color: #fef2e0;
  margin-top: 0;
  margin-bottom: 20px;
}

.sidebar-info {
  text-align: center;
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #fef2e0;
  margin-bottom: 30px;
}

.sidebar-info .sidebar-hours {
  font-size: 14px;
  margin: 0 0 5px;
}

.sidebar-info .sidebar-tel {
  font-size: 14px;
  margin: 0;
}

.sidebar-info .sidebar-tel a {
  color: #fef2e0;
  text-decoration: none;
}

.sidebar-info .sidebar-tel a:hover { opacity: 0.7; }

.calendar-legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 12px;
  color: #fef2e0;
}

.calendar-legend .legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.calendar-legend .legend-open {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: #fef2e0;
  border-radius: 50%;
}

/* =============================================
   共通ユーティリティ
   ============================================= */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-4 { margin-bottom: 2rem; }

/* =============================================
   メインコンテンツ
   ============================================= */
#main-content {
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.site-main {
  font-family: var(--font-base);
  color: var(--color-text);
  line-height: 1.8;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.site-main.show {
  opacity: 1;
}

/* 下層ページ（ティザーなし）は最初から表示 */
.page-concept,
.page-menu,
.page-owner,
.page-shop-info,
.page-single,
.page-archive,
.page-news {
  opacity: 1;
}

/* =============================================
   個別記事ページ
   ============================================= */
.page-single {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .page-single {
    padding: 80px 40px;
  }
}

.single-article {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.article-thumbnail {
  margin: -40px -40px 30px -40px;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.article-thumbnail img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.article-thumbnail-default {
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-thumbnail-default img {
  width: auto;
  height: 200px;
  object-fit: contain;
}

.article-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-beige);
}

.article-date {
  display: block;
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}

.article-title {
  font-size: 24px;
  color: var(--color-brown);
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

.article-content {
  font-size: 16px;
  line-height: 2;
}

.article-content p {
  margin-bottom: 1.5em;
}

.article-content ul,
.article-content ol {
  margin: 1.5em 0;
  padding-left: 1.5em;
}

.article-content li {
  margin-bottom: 0.5em;
}

.article-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--color-beige);
  font-size: 14px;
  color: #666;
}

.article-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding: 20px 0;
}

.article-nav a {
  color: var(--color-brown);
  text-decoration: none;
  font-size: 14px;
}

.article-nav a:hover {
  text-decoration: underline;
}

.back-to-list {
  text-align: center;
  margin-top: 40px;
}

.btn-back {
  display: inline-block;
  padding: 12px 30px;
  background: var(--color-brown);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.btn-back:hover {
  opacity: 0.8;
}

/* =============================================
   NEWS一覧ページ
   ============================================= */
.page-news {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .page-news {
    margin-right: 280px;
    padding: 80px 40px;
  }
}

.news-archive {
  margin-top: 40px;
}

.news-list-full {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-article {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.news-article .news-date {
  display: block;
  font-size: 14px;
  color: #999;
  margin-bottom: 8px;
}

.news-article .news-title {
  font-size: 18px;
  margin: 0 0 15px 0;
  font-weight: 500;
}

.news-article .news-title a {
  color: var(--color-brown);
  text-decoration: none;
}

.news-article .news-title a:hover {
  text-decoration: underline;
}

.news-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

.news-excerpt p {
  margin: 0;
}

.news-pagination {
  margin-top: 40px;
  text-align: center;
}

.news-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.news-pagination a,
.news-pagination span {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 14px;
  text-decoration: none;
}

.news-pagination a {
  background: #fff;
  color: var(--color-brown);
  border: 1px solid var(--color-beige);
}

.news-pagination a:hover {
  background: var(--color-beige);
}

.news-pagination .current {
  background: var(--color-brown);
  color: #fff;
}

.no-news {
  text-align: center;
  color: #999;
  padding: 60px 0;
}

/* セクション共通 */
.section {
  padding: 80px 0;
}

.section-header {
  margin-bottom: 50px;
}

.section-title {
  font-size: 28px;
  color: var(--color-brown);
  letter-spacing: 0.1em;
  margin: 0;
  font-weight: 500;
}

.section-subtitle {
  font-size: 14px;
  color: #888;
  letter-spacing: 0.05em;
  margin-top: 5px;
}

/* ボタン共通 */
.btn-text {
  display: inline-block;
  color: var(--color-brown);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
  border-bottom: 1px solid transparent;
}

.btn-text:hover {
  opacity: 0.7;
  border-bottom-color: var(--color-brown);
}

.btn-primary {
  display: inline-block;
  background-color: var(--color-brown);
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #5e2d15;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(127, 63, 32, 0.2);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--color-brown);
  color: var(--color-brown);
}

.btn-outline:hover {
  background-color: var(--color-brown);
  color: #fff;
}

/* =============================================
   1. ヒーローセクション（スライドショー）
   ============================================= */
.hero-section {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 500px;
  overflow: hidden;
  margin-bottom: 60px;
  border-radius: 0 0 20px 20px;
}

/* スライドショーコンテナ */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* 各スライド */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.2);
}

/* ヒーロータグライン */
.hero-tagline {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 24px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  letter-spacing: 0.15em;
  margin: 0;
  font-weight: 400;
}

.hero-scrolldown {
  position: absolute;
  bottom: 30px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.2em;
  animation: bounce 2s infinite;
}

.hero-scrolldown::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: #fff;
  margin: 10px auto 0;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 0.8; }
  50% { transform: translateY(10px); opacity: 0.4; }
}

/* =============================================
   2. NEWSセクション
   ============================================= */
.news-section .news-list {
  border-top: 1px solid rgba(127, 63, 32, 0.2);
}

.news-section .news-item {
  border-bottom: 1px solid rgba(127, 63, 32, 0.2);
}

.news-section .news-link {
  display: flex;
  align-items: center;
  padding: 20px 0;
  text-decoration: none;
  color: var(--color-text);
  transition: background 0.3s;
}

.news-section .news-link:hover {
  background-color: rgba(255,255,255,0.4);
}

.news-section .news-date {
  font-size: 14px;
  color: #777;
  font-family: 'Times New Roman', serif;
  margin-right: 30px;
  white-space: nowrap;
}

.news-section .news-title {
  font-size: 15px;
  line-height: 1.6;
}

/* =============================================
   3. 金賞受賞セクション
   ============================================= */
.award-section {
  padding: 80px 0;
  background-color: #fff;
  border-radius: 20px;
  margin: 0 20px 60px;
}

/* カード全体レイアウト */
.award-simple-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}

/* 画像エリア */
.award-img-area {
  position: relative;
  flex: 1;
  max-width: 450px;
}

.award-img-area img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 20px 20px 0 var(--color-beige);
}

/* シンプルなバッジ */
.award-badge-simple {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background: #d4af37;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 10;
}

.award-badge-simple .badge-year {
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
}

.award-badge-simple .badge-title {
  font-size: 10px;
  margin-top: 4px;
}

/* テキストエリア */
.award-text-area {
  flex: 1;
}

.award-label {
  color: #d4af37;
  font-size: 13px;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-bottom: 15px;
}

.award-name {
  font-size: 26px;
  line-height: 1.5;
  color: var(--color-brown);
  margin: 0 0 25px;
  font-feature-settings: "palt";
}

.award-description {
  font-size: 15px;
  line-height: 2;
  color: #666;
  margin-bottom: 30px;
}

/* =============================================
   4. ABOUTセクション
   ============================================= */
.about-section {
  background-color: var(--color-cream);
}

.about-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 20px 0 20px 0;
  box-shadow: 10px 10px 0 var(--color-beige);
}

.about-text-area {
  flex: 1;
}

.about-lead {
  font-size: 20px;
  color: var(--color-brown);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-desc {
  font-size: 15px;
  line-height: 2;
  color: #555;
}

.feature-icons {
  display: flex;
  gap: 20px;
  margin: 30px 0;
}

.f-icon {
  text-align: center;
  background: #fff;
  padding: 15px 10px;
  border-radius: 8px;
  width: 80px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.f-icon .icon {
  display: block;
  font-size: 24px;
  margin-bottom: 5px;
}

.f-icon .label {
  font-size: 11px;
  line-height: 1.3;
  display: block;
  color: var(--color-brown);
}

/* =============================================
   5. MENUセクション
   ============================================= */
.menu-section .menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.menu-card {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--color-text);
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  transition: transform 0.3s, box-shadow 0.3s;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(127, 63, 32, 0.15);
}

.menu-img {
  width: 100%;
  height: 180px;
  background-color: #eee;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.menu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.menu-card:hover .menu-img img {
  transform: scale(1.05);
}

.menu-info {
  padding: 20px;
  text-align: center;
}

.menu-info h4 {
  font-size: 18px;
  color: var(--color-brown);
  margin: 0 0 8px;
}

.menu-info p {
  font-size: 12px;
  color: #888;
  margin: 0;
}

/* =============================================
   6. SHOP INFOセクション
   ============================================= */
.shop-section .shop-box {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.shop-section .shop-info {
  flex: 1;
  padding: 50px;
}

.shop-dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 15px 0;
  margin-bottom: 30px;
}

.shop-dl dt {
  color: var(--color-brown);
  font-weight: 500;
  border-left: 3px solid var(--color-beige);
  padding-left: 10px;
}

.shop-dl dd {
  margin: 0;
  font-size: 15px;
}

.shop-map {
  flex: 1;
  min-height: 400px;
}

.tel-link {
  color: var(--color-brown);
  text-decoration: none;
}

/* =============================================
   レスポンシブ (スマホ対応)
   ============================================= */
@media (max-width: 768px) {
  .hero-section {
    height: 60vh;
  }

  /* 金賞受賞セクション スマホ対応 */
  .award-section {
    padding: 60px 20px;
  }

  .award-simple-card {
    flex-direction: column;
    gap: 40px;
  }

  .award-img-area {
    width: 100%;
    margin-left: 0;
  }

  .award-img-area img {
    box-shadow: 10px 10px 0 var(--color-beige);
  }

  .award-text-area {
    text-align: center;
  }

  .award-name {
    font-size: 22px;
  }

  .award-description {
    text-align: justify;
  }

  .about-layout {
    flex-direction: column;
  }

  .menu-section .menu-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .shop-section .shop-box {
    flex-direction: column;
  }

  .shop-section .shop-info {
    padding: 30px 20px;
  }

  .shop-map {
    height: 300px;
    min-height: auto;
  }

  .shop-dl {
    display: block;
  }

  .shop-dl dt {
    margin-top: 15px;
    margin-bottom: 5px;
  }
}

@media (max-width: 480px) {
  .menu-section .menu-grid {
    grid-template-columns: 1fr;
  }

  .award-name {
    font-size: 20px;
  }
}

/* =============================================
   CONCEPTページ スタイル
   ============================================= */

/* ページヘッダー共通 */
.page-header {
  text-align: center;
  padding: 80px 20px 60px;
}

.page-title {
  font-size: 32px;
  color: var(--color-brown);
  letter-spacing: 0.15em;
  margin: 0;
  font-weight: 500;
}

.page-subtitle {
  font-size: 14px;
  color: #888;
  letter-spacing: 0.05em;
  margin-top: 10px;
}

/* リード文 */
.concept-lead-section {
  padding: 0 0 80px;
}

.concept-lead-text {
  font-size: 18px;
  line-height: 2.2;
  color: var(--color-brown);
  margin-bottom: 30px;
  font-weight: 500;
}

.concept-lead-sub {
  font-size: 15px;
  line-height: 2;
  color: #666;
}

/* 交互レイアウト コンテナ */
.concept-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

/* 各セクション（アイテム） */
.concept-item {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 120px;
}

/* 最後のアイテムは余白なし */
.concept-item:last-child {
  margin-bottom: 0;
}

/* 逆方向レイアウト（画像右、テキスト左） */
.concept-item.reverse {
  flex-direction: row-reverse;
}

/* 画像ボックス */
.concept-img-box {
  flex: 1;
  position: relative;
}

.concept-img-box img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 15px 15px 0 var(--color-beige);
  transition: transform 0.3s;
}

.concept-item:hover .concept-img-box img {
  transform: scale(1.02);
}

/* 逆レイアウト時の影の向き調整 */
.concept-item.reverse .concept-img-box img {
  box-shadow: -15px 15px 0 var(--color-beige);
}

/* テキストボックス */
.concept-text-box {
  flex: 1;
}

.concept-heading {
  margin-bottom: 25px;
  color: var(--color-brown);
}

.concept-heading .en {
  display: block;
  font-size: 14px;
  color: #b8860b;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  font-family: serif;
  font-style: italic;
}

.concept-heading .jp {
  display: block;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.concept-desc {
  font-size: 15px;
  line-height: 2;
  color: #555;
  text-align: justify;
}

.concept-footer {
  padding-bottom: 80px;
}

/* CONCEPTページ レスポンシブ対応 */
@media (max-width: 768px) {
  .page-header {
    padding: 60px 20px 40px;
  }

  .page-title {
    font-size: 26px;
  }

  .concept-lead-text {
    font-size: 16px;
    text-align: left;
  }

  .concept-lead-sub {
    text-align: left;
  }

  .concept-item {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
  }

  .concept-item.reverse {
    flex-direction: column;
  }

  .concept-img-box {
    width: 100%;
    padding: 0 10px;
  }

  .concept-img-box img,
  .concept-item.reverse .concept-img-box img {
    box-shadow: 10px 10px 0 var(--color-beige);
  }

  .concept-heading .jp {
    font-size: 20px;
  }
}

/* =============================================
   MENUページ スタイル
   ============================================= */
.page-menu {
  padding: 0 20px 80px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .page-menu {
    margin-right: 280px;
    padding: 0 40px 80px;
  }
}

.menu-lead {
  text-align: center;
  margin-bottom: 60px;
}

.menu-lead .lead-text {
  font-size: 16px;
  color: #555;
  line-height: 2;
}

.menu-category {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.menu-category-award {
  background: linear-gradient(135deg, #fffaf0 0%, #fff 100%);
  border: 2px solid #d4af37;
  position: relative;
}

.award-badge-inline {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37 0%, #f5d780 50%, #d4af37 100%);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.category-title {
  font-size: 22px;
  color: var(--color-brown);
  margin: 0 0 15px;
  font-weight: 500;
}

.category-desc {
  font-size: 15px;
  color: #555;
  line-height: 2;
  margin: 0;
}

.menu-items {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.menu-item-card {
  background: var(--color-cream);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.menu-item-card h4 {
  font-size: 16px;
  color: var(--color-brown);
  margin: 0 0 8px;
}

.menu-item-card p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.menu-notice {
  background: var(--color-cream);
  border-radius: 12px;
  padding: 30px 40px;
  margin-bottom: 40px;
}

.menu-notice ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-notice li {
  font-size: 14px;
  color: #666;
  padding-left: 1.5em;
  position: relative;
  margin-bottom: 10px;
}

.menu-notice li::before {
  content: "※";
  position: absolute;
  left: 0;
  color: var(--color-brown);
}

.menu-notice li:last-child {
  margin-bottom: 0;
}

.menu-shop-link {
  text-align: center;
  padding: 40px 0;
}

.btn-shop {
  display: inline-block;
  background: var(--color-brown);
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.btn-shop:hover {
  background: #5e2d15;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(127, 63, 32, 0.3);
}

/* MENUページ レスポンシブ */
@media (max-width: 768px) {
  .menu-category {
    padding: 30px 20px;
  }

  .category-title {
    font-size: 20px;
  }

  .menu-notice {
    padding: 20px;
  }
}

/* =============================================
   OWNERページ スタイル
   ============================================= */
.page-owner {
  padding: 0 20px 80px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .page-owner {
    margin-right: 280px;
    padding: 0 40px 80px;
  }
}

.owner-intro {
  background: #fff;
  border-radius: 12px;
  padding: 50px 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  text-align: center;
}

.owner-lead {
  font-size: 20px;
  color: var(--color-brown);
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
}

.owner-section {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.owner-heading {
  font-size: 20px;
  color: var(--color-brown);
  margin: 0 0 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--color-beige);
  font-weight: 500;
}

.owner-text p {
  font-size: 15px;
  line-height: 2;
  color: #555;
  margin: 0 0 1.5em;
}

.owner-text p:last-child {
  margin-bottom: 0;
}

.owner-philosophy {
  font-size: 22px !important;
  color: var(--color-brown) !important;
  font-weight: 500;
  text-align: center;
  padding: 20px 0;
}

.owner-signature {
  text-align: center;
  padding: 40px 0 0;
}

.signature-text {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
}

.signature-name {
  display: block;
  font-size: 24px;
  color: var(--color-brown);
  margin-top: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

/* OWNERページ レスポンシブ */
@media (max-width: 768px) {
  .owner-intro {
    padding: 30px 20px;
  }

  .owner-section {
    padding: 30px 20px;
  }

  .owner-lead {
    font-size: 18px;
  }

  .owner-philosophy {
    font-size: 18px !important;
  }
}

/* =============================================
   SHOP INFOページ スタイル
   ============================================= */
.page-shop-info {
  padding: 0 20px 80px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .page-shop-info {
    margin-right: 280px;
    padding: 0 40px 80px;
  }
}

.shopinfo-section {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.shopinfo-heading {
  font-size: 20px;
  color: var(--color-brown);
  margin: 0 0 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--color-beige);
  font-weight: 500;
}

.shopinfo-content {
  font-size: 15px;
  line-height: 2;
  color: #555;
}

.shopinfo-content p {
  margin: 0 0 1em;
}

.info-list {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px 30px;
  margin: 0;
}

.info-list dt {
  color: var(--color-brown);
  font-weight: 500;
}

.info-list dd {
  margin: 0;
}

.info-list .note {
  font-size: 13px;
  color: #888;
}

.map-container {
  margin-top: 30px;
}

.map-container iframe {
  border-radius: 12px;
}

.garden-info {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.garden-info li {
  padding-left: 1.5em;
  position: relative;
  margin-bottom: 8px;
}

.garden-info li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-brown);
}

.pet-info {
  background: var(--color-cream);
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  font-size: 14px;
}

.pet-info strong {
  color: var(--color-brown);
  display: block;
  margin-bottom: 10px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: var(--color-cream);
  padding: 25px;
  border-radius: 8px;
}

.faq-question {
  font-size: 16px;
  color: var(--color-brown);
  margin: 0 0 12px;
  font-weight: 500;
}

.faq-answer {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.8;
}

.shopinfo-contact {
  text-align: center;
  padding: 40px 0;
}

.shopinfo-contact p {
  margin-bottom: 20px;
  color: #555;
}

.btn-contact {
  display: inline-block;
  background: var(--color-brown);
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background: #5e2d15;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(127, 63, 32, 0.3);
}

/* SHOP INFOページ レスポンシブ */
@media (max-width: 768px) {
  .shopinfo-section {
    padding: 30px 20px;
  }

  .info-list {
    display: block;
  }

  .info-list dt {
    margin-bottom: 5px;
  }

  .info-list dd {
    margin-bottom: 20px;
  }

  .faq-item {
    padding: 20px;
  }
}
