/*
Theme Name: LaLaFeel
Theme URI: 
Author: Your Name
Description: 街の小さなお菓子屋さんの温かみと、パティシエのこだわりが伝わる上質な洋菓子店サイト
Version: 1.0.0
License: GPL-2.0+
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lalafeel
Domain Path: /languages
*/

/* ============================================
   フォント読み込み
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600;700&display=swap');

/* ============================================
   CSS VARIABLES - グローバルカラーパレット定義
   ============================================ */
:root {
  /* メインカラー */
  --main-orange: #FF9966;
  --dark-brown: #704020;
  --cream-ivory: #FFF8F0;
  --light-gray: #F5F5F5;
  
  /* テキストカラー */
  --text-primary: #2C2C2C;
  --text-secondary: #666666;
  --text-light: #999999;
  
  /* アクセントカラー */
  --accent-orange-light: #FFD4B3;
  --accent-brown-dark: #533011;
  
  /* 境界線 */
  --border-light: #E8E8E8;
  
  /* シャドウ */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ダークモード対応 */
@media (prefers-color-scheme: dark) {
  :root {
    --text-primary: #F5F5F5;
    --text-secondary: #B8B8B8;
    --text-light: #888888;
    --light-gray: #2A2A2A;
    --cream-ivory: #1F1F1F;
    --border-light: #404040;
  }
}

/* ============================================
   基本スタイル - リセット＆ベース設定
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Serif JP', serif;
  color: var(--text-primary);
    background-color: #FFFDF5;  /* クリーム色に変更 */
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #1A1A1A;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================
   ヘッダー
   ============================================ */
.site-header {
  background-color: rgba(255, 255, 255, 0.8);  /* 白 50%透明度 */
  border-bottom: none;                 /* 下線なし */
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

@media (prefers-color-scheme: dark) {
  .site-header {
    background-color: #1A1A1A;
  }
}

.site-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* ロゴ部分 */
.site-branding {
  flex-shrink: 0;
}

.site-logo-link {
  display: block;
  line-height: 1;
}

.site-logo {
  max-width: 180px;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.site-logo-link:hover .site-logo {
  opacity: 0.8;
}

.site-branding h1.site-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}

.site-branding h1.site-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-branding h1.site-title a:hover {
  color: var(--main-orange);
}

/* ナビゲーション */
.site-navigation {
  flex-grow: 0;
  margin-left: auto;
  text-align: right;
}

.primary-menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 50px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.primary-menu > li {
  position: relative;
  margin: 0;
  list-style: none;
}

.primary-menu > li > a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: color 0.3s ease;
  gap: 4px;
}

.primary-menu > li > a:hover {
  color: var(--main-orange);
}

.primary-menu > li > a:hover .menu-description {
  color: var(--main-orange);
}

/* メニュー説明（日本語サブテキスト） */
.menu-description {
  font-size: 11px;
  color: #000;
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

/* サブメニュー */
.primary-menu .sub-menu {
  list-style-type: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 2px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  min-width: 150px;
  z-index: 101;
}

.primary-menu .sub-menu li {
  list-style: none;
}

.primary-menu > li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.primary-menu .sub-menu a {
  display: block;
  padding: 10px 15px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.primary-menu .sub-menu a:hover {
  color: var(--main-orange);
  background-color: var(--cream-ivory);
}

/* ============================================
   ヒーロースライダーセクション（全幅）
   ============================================ */
.shop-hero-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 600px;
  overflow: hidden;
  background-color: var(--light-gray);
  background-size: cover;
  background-position: center;
}

.hero-slide-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

/* スライダーナビゲーション（ドット） */
.hero-slider-nav {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dot:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.slider-dot.active {
  background-color: white;
  width: 24px;
  border-radius: 6px;
}

.slider-dot:focus {
  outline: 2px solid var(--main-orange);
  outline-offset: 2px;
}

/* ============================================
   Aboutセクション
   ============================================ */
.shop-about-section {
  background-color: #FFFDF5;
  padding: 60px 0;
}

@media (prefers-color-scheme: dark) {
  .shop-about-section {
    background-color: #1A1A1A;
  }
}

.shop-about-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.shop-about-section .shop-about-content {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 60px !important;
  align-items: center !important;
  margin-top: 48px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 900px !important;
  width: 100% !important;
}

/* スマートフォン対応 */
@media (max-width: 480px) {
  .shop-about-section .shop-about-content {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    margin-top: 24px !important;
  }
}

/* 左側：画像 */
.shop-about-section .about-image-container {
  width: 100% !important;
  overflow: hidden !important;
  border-radius: 8px !important;
  box-shadow: var(--shadow-md) !important;
}

/* スマートフォン対応 - 画像を下に */
/* スマートフォン対応 - 画像幅を90%に */
@media (max-width: 480px) {
  .shop-about-section .about-image-container {
    order: 1 !important;
    width: 90% !important;
    margin: 0 auto !important;
  }
}

.shop-about-section .about-image {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: cover !important;
}

/* 右側：テキスト */
.shop-about-section .about-text-container {
  display: flex !important;
  flex-direction: row !important;
  gap: 42px !important;
  align-items: flex-start !important;
  width: 100% !important;
}

/* スマートフォン対応 - テキストを上に */
@media (max-width: 480px) {
  .shop-about-section .about-text-container {
    order: -1 !important;
    flex-direction: column-reverse !important;
    gap: 20px !important;
    align-items: center !important;
    text-align: start !important;
  }
}

.about-main-text {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--text-primary);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  order: 2;
}

.about-main-text p {
    margin: 0;
    font-family: 'Noto Serif JP', serif;
    font-size: 1.4rem;
    letter-spacing: 0.3rem;
    font-weight: 600;
}

.about-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  order: 1;
}

.about-description p {
    margin: 0;
    line-height: 2.3;
    font-family: 'Noto Serif JP', serif;
    font-size: 1.0rem;
    padding-top: 20px;
}


/* ============================================
   レスポンシブ対応 - About セクション
   ============================================ */

/* タブレット（1024px以下） */
@media (max-width: 1024px) {
  .shop-about-wrapper {
    padding: 0 20px;
    max-width: 95%;
  }

  .shop-about-content {
    gap: 40px;
  }
}

/* スマートフォン（768px以下） */
@media (max-width: 768px) {
  .shop-about-section {
    padding: 52px 0 0px;
  }

  .shop-about-wrapper {
    padding: 0 12px;
  }

  .shop-about-content {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 24px;
  }

  /* 画像を上に配置 */
  .about-image-container {
    order: -1;
    width: 100%;
  }

  /* テキストを下に配置（横並びから積み重ねに） */
  .about-text-container {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: start;
  }

  .about-main-text {
    font-size: 20px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    order: 2;
    line-height: 1.8;
  }

  .about-description {
    font-size: 14px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    order: 1;
  }
}

/* ============================================
   メインコンテンツセクション（1200px幅・センター）
   ============================================ */
.site-content {
  background-color: #FFFDF5;
  padding: 0;
}

@media (prefers-color-scheme: dark) {
  .site-content {
    background-color: #1A1A1A;
  }
}

.shop-content-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
}

/* セクションタイトル */
.shop-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.shop-section-title {
    font-size: 24px;
    font-weight: 300;
    color: #f08080;
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
    letter-spacing: 5.0px;
    font-family: Quicksand, sans-serif;
}

.shop-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--main-orange) 0%, var(--accent-orange-light) 100%);
  border-radius: 2px;
}

/* ============================================
   グリッドレイアウト - CSS Grid構成
   ============================================ */
.shop-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  grid-template-areas: 
    "custom-post cards-grid";
  align-items: stretch;
}

.shop-grid-item {
  display: flex;
  flex-direction: column;
}

/* 左カラム - フィーチャースライダー */
.shop-featured-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.shop-featured-slider .slider-container {
    position: relative;
    width: 100%;
    height: 760px;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--light-gray);
    box-shadow: var(--shadow-md);
    /* flex-grow: 1; */
}

.shop-featured-slider .slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* スライダーアイテム */
.shop-featured-slider .slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.shop-featured-slider .slide-item.active {
  opacity: 1;
  z-index: 2;
}

/* ナビゲーションドット */
.shop-featured-slider .slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.shop-featured-slider .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  margin: 0;
  font-size: 0;
}

.shop-featured-slider .dot:hover {
  background-color: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.shop-featured-slider .dot.active {
  background-color: var(--main-orange);
  border-color: var(--main-orange);
  box-shadow: 0 0 8px rgba(255, 153, 102, 0.6);
}

/* スライダーボタン（前・次） */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;  /* 44px → 40px に縮小 */
    height: 40px;  /* 44px → 40px に縮小 */
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.85);
    color: var(--main-orange);
    font-size: 18px;  /* 20px → 18px に縮小 */
    font-weight: bold;
    z-index: 20;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background-color: var(--main-orange);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 153, 102, 0.3);
    transform: translateY(-50%) scale(1.1);
}

/* 矢印をより細く、位置を上気味に */
.slider-btn span {
    font-size: 14px;  /* 16px → 14px に縮小 */
    font-weight: 300;
    letter-spacing: -2px;
    transform: translateY(-1px);
}

.slider-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.slider-btn-prev {
  left: 16px;
}

.slider-btn-next {
  right: 16px;
}

/* 右カラム - カード型グリッド */
.shop-cards-grid {
  grid-area: cards-grid;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  auto-rows: max-content;
  align-content: start;
}

/* ============================================
   カード型コンポーネント
   ============================================ */
.shop-card {
    background-color: #ffefd5;
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: var(--shadow-md); */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 369px;
}

.shop-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-thumbnail {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 15px 0px;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.shop-card:hover .card-image {
  transform: scale(1.02);
}

.card-content {
  padding: 10px 20px 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 17px;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  text-align: center;
  margin-bottom: 5px;
  color: #d2691e;
}

.card-excerpt {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.card-link {
  color: var(--main-orange);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  align-self: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  display: none;
}

.card-link:hover {
  color: var(--accent-brown-dark);
  border-bottom-color: var(--accent-brown-dark);
}

.card-link:focus {
  outline: 2px solid var(--main-orange);
  outline-offset: 2px;
}

/* ============================================
   フッター
   ============================================ */
.site-footer {
  background-color: #FFFFFF;
  border-top: 1px solid var(--border-light);
  padding: 40px 0;
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-primary);
}

@media (prefers-color-scheme: dark) {
  .site-footer {
    background-color: #1A1A1A;
    border-top-color: var(--border-light);
  }
}

.site-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* フッター上部：ロゴ＋ナビゲーション */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 20px;
}

/* フッターロゴ */
.footer-logo {
  flex-shrink: 0;
}

.footer-logo-text {
    font-size: 13px;
    color: #000;
    margin-bottom: 12px;
    letter-spacing: 0.1em;
    text-align: center;
    font-family: 'book antiqua', palatino, serif;
}

.footer-logo-img {
    max-width: 190px;
    height: auto;
    display: block;
}

/* フッターナビゲーション */
.footer-navigation {
  flex-grow: 1;
  text-align: right;
}

.footer-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
    justify-content: flex-end;
    flex-wrap: wrap;
    font-family: 'book antiqua', palatino, serif;
}

.footer-menu li {
  margin: 0;
  list-style: none;
}

.footer-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: var(--main-orange);
  text-decoration: underline;
}

/* フッター下部：コピーライト */
.footer-bottom {
  text-align: right;
}

.footer-credit {
  margin: 0;
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.05em;
  font-family: 'book antiqua', palatino, serif;
}

/* ============================================
   レスポンシブ対応 - ヘッダー
   ============================================ */

/* タブレット（768px以下） */
@media screen and (max-width: 768px) {
  .site-header {
    padding: 15px 0;
  }

  .site-header-inner {
    gap: 20px;
  }

  .primary-menu {
    gap: 25px;
  }

  .primary-menu > li > a {
    font-size: 14px;
  }

  .site-logo {
    max-width: 140px;
  }
}

/* スマートフォン（571px以下） */
@media screen and (max-width: 571px) {
  .site-header {
    padding: 20px 0;
  }

  .site-header-inner {
    flex-direction: column;
    gap: 15px;
    padding: 0 10px;
  }

  .site-branding {
    width: 100%;
    text-align: center;
  }

  .site-logo {
    max-width: 150px;
    margin: 0 auto;
  }

  .site-navigation {
    width: 100%;
    text-align: center;
  }

  .primary-menu {
    justify-content: center;
    gap: 15px;
  }

  .primary-menu > li > a {
    font-size: 12px;
  }

  .primary-menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    border: none;
    background-color: transparent;
    margin-top: 5px;
  }

  .primary-menu .sub-menu a {
    padding: 5px 0;
    font-size: 12px;
  }
}

/* スマートフォン（480px以下） */
@media screen and (max-width: 480px) {
  .site-header {
    padding: 20px 0;
  }

  .site-header-inner {
    flex-direction: column;
    gap: 15px;
    padding: 0 10px;
  }

  .site-navigation {
    width: 100%;
    text-align: center;
  }

  .primary-menu {
    justify-content: center;
    gap: 35px;
  }

  .primary-menu > li > a {
    font-size: 12px;
  }

  .site-logo {
    max-width: 150px;
  }

  .primary-menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    border: none;
    background-color: transparent;
    margin-top: 5px;
  }

  .primary-menu .sub-menu a {
    padding: 5px 0;
    font-size: 12px;
  }
}

/* ============================================
   レスポンシブ対応 - スライダー
   ============================================ */

/* タブレット（768px以下） */
@media (max-width: 768px) {
  .shop-hero-slider {
    height: 400px;
  }
}

/* スマートフォン（480px以下） */
@media (max-width: 480px) {
  .shop-hero-slider {
    height: 300px;
  }
  
  .hero-slider-nav {
    bottom: 16px;
  }
  
  .slider-dot {
    width: 10px;
    height: 10px;
  }
  
  .slider-dot.active {
    width: 20px;
  }
}

/* ============================================
   レスポンシブ対応 - メインコンテンツ
   ============================================ */

/* タブレット（1024px以下） */
@media (max-width: 1024px) {
  .site-header-inner,
  .shop-content-wrapper,
  .site-footer-inner {
    padding-left: 20px;
    padding-right: 20px;
    padding: 20px 24px 20px;
  }
  
  .shop-grid-layout {
    grid-template-columns: 1fr;
    grid-template-areas: 
      "custom-post"
      "cards-grid";
    gap: 40px;
  }
  
  .custom-post-content {
    padding: 24px;
  }
  
  .custom-post-title {
    font-size: 22px;
  }
	
  .shop-featured-slider .slider-container {
    height: auto;
    border-radius: 8px;
    full-width: 100%;
    aspect-ratio: 0.66 / 1;
  }
}

/* タブレット（768px以下） */
@media (max-width: 768px) {
  .site-header-inner {
    padding-left: 52px;
    padding-right: 52px;
	padding-bottom: 0px;
    padding-top: 0px;
  }
	
  .shop-content-wrapper,
  .site-footer-inner {
    padding-left: 52px;
    padding-right: 52px;
	padding-bottom: 0px;
    padding-top: 60px;
  }
  
  .shop-section-header {
    margin-bottom: 32px;
  }
  
  .shop-section-title {
    font-size: 28px;
  }
  
  .shop-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .custom-post-inner {
    border-radius: 12px;
  }
  
  .custom-post-thumbnail {
    aspect-ratio: 16 / 9;
  }
  
  .custom-post-content {
    padding: 20px;
  }
  
  .custom-post-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .custom-post-excerpt {
    font-size: 15px;
    margin-bottom: 16px;
  }
  
  .shop-featured-slider .slider-container {
    height: auto;
    border-radius: 8px;
    full-width: 100%;
    aspect-ratio: 0.66 / 1;
  }

  .shop-featured-slider .slider-dots {
    bottom: 15px;
    gap: 10px;
  }

  .shop-featured-slider .dot {
    width: 10px;
    height: 10px;
  }
  
  .shop-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .shop-card {
    height: auto;
  }
  
  .card-content {
    padding: 16px;
  }
  
  .card-title {
    font-size: 16px;
  }
  
  .card-excerpt {
    font-size: 13px;
  }
  
  .card-link {
    font-size: 13px;
  }
}

/* スマートフォン（480px以下） */
@media (max-width: 480px) {
  .site-header-inner, 
  .shop-content-wrapper,
  .site-footer-inner {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 0px;
}
	
  .shop-content-wrapper {
    padding-bottom: 0px;
    padding-top: 40px;
  }
 
  .card-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
	
  .shop-section-title {
    font-size: 24px;
  }
  
  .shop-section-title::after {
    width: 50px;
  }
  
  .shop-grid-layout {
    gap: 20px;
  }
  
  .shop-featured-slider .slider-container {
    height: auto;
    border-radius: 8px;
    full-width: 100%;
    aspect-ratio: 0.66 / 1;
  }

  .shop-featured-slider .slider-dots {
    bottom: 12px;
    gap: 8px;
  }

  .shop-featured-slider .dot {
    width: 8px;
    height: 8px;
    border-width: 1px;
  }
  
  .shop-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .shop-card {
    height: auto;
  }
  
  .custom-post-thumbnail {
    aspect-ratio: 16 / 10;
  }
  
  .custom-post-content {
    padding: 16px;
  }
  
  .custom-post-title {
    font-size: 18px;
  }
  
  .custom-post-excerpt {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .card-thumbnail {
    aspect-ratio: 1 / 1;
  }
  
  .card-content {
    padding: 14px;
  }
  
  .card-title {
    font-size: 15px;
    margin-bottom: 10px;
  }
  
  .card-excerpt {
    font-size: 14px;
    margin-bottom: 4px;
    text-align: justify;
  }
}

/* ============================================
   レスポンシブ対応 - フッター
   ============================================ */

/* タブレット（768px以下） */
@media screen and (max-width: 768px) {
  .site-footer {
        padding: 40px 0 0px;
        margin-top: 20px;
        text-align: center;
  }

  .site-footer-inner {
    padding: 0 15px;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
  }

  .footer-navigation {
    width: 100%;
    text-align: center;
  }

  .footer-menu {
    flex-direction: column;
    gap: 12px;
    justify-content: center;
  }

  .footer-bottom {
    text-align: left;
    padding-top: 15px;
  }

  .footer-logo-img {
    max-width: 120px;
  }
	
  .footer-credit {
    font-size: 12px;
    text-align: center;
  }	
	
}

/* スマートフォン（480px以下） */
@media screen and (max-width: 480px) {
  .site-footer {
        padding: 40px 0 0px;
        margin-top: 20px;
        text-align: center;
    }

  .site-footer-inner {
    padding: 0 10px;
  }

  .footer-top {
    margin-bottom: 20px;
    flex-direction: column;
    align-items: center;
  }

  .footer-navigation {
    width: 100%;
    text-align: center;
  }

  .footer-menu {
    flex-direction: column;
    gap: 12px;
    justify-content: center;
  }

  .footer-menu a {
    font-size: 13px;
  }

  .footer-credit {
    font-size: 12px;
    text-align: center;
  }

  .footer-logo-img {
    max-width: 200px;
  }
}

/* ============================================
   ダークモード調整
   ============================================ */
@media (prefers-color-scheme: dark) {
  .shop-custom-post .custom-post-inner,
  .shop-card {
    background-color: #2A2A2A;
    border: 1px solid #3A3A3A;
  }
  
  .custom-post-thumbnail,
  .card-thumbnail {
    background-color: #1F1F1F;
  }

  .primary-menu .sub-menu {
    background-color: #1A1A1A;
  }
}

/* ============================================
   ユーティリティ - プレースホルダー
   ============================================ */
.custom-post-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--main-orange) 0%, var(--accent-orange-light) 100%);
  color: white;
  font-size: 18px;
  font-weight: 600;
}

.card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--main-orange) 0%, var(--accent-orange-light) 100%);
  color: white;
  font-weight: 600;
  font-size: 16px;
}

/* ============================================
   印刷スタイル
   ============================================ */
@media print {
  .shop-hero-slider,
  .hero-slider-nav,
  .site-header,
  .site-footer {
    display: none;
  }
}

/* ============================================
   アクセシビリティ - スクリーンリーダー対応
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================
   店舗ページ専用スタイル
   ============================================ */

/* ============================================
   店舗情報セクション
   ============================================ */
.store-info-section {
    background-color: #FFFDF5;
    padding: 40px 0 20px;
}

@media (prefers-color-scheme: dark) {
  .store-info-section {
    background-color: #1A1A1A;
  }
}

.store-info-wrapper {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 30px;
  align-items: center;
}

/* 左側：店舗情報 */
.store-info-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}

.store-name {
  font-size: 24px;
  font-weight: 600;
  color: var(--main-orange);
  margin: 0;
  writing-mode: horizontal-tb;
  letter-spacing: 0.05em;
}

/* 電話ボタン */
.store-call-btn {
    display: inline-block;
    padding: 5px 25px;
    background-color: var(--main-orange);
    color: white;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    border-radius: 4px;
    border: 2px solid var(--main-orange);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 10px;
    font-family: Quicksand, sans-serif;
    letter-spacing: 0.1rem;
}

.store-call-btn:hover {
  background-color: transparent;
  color: var(--main-orange);
}

/* 右側：店舗画像 */
.store-info-right {
  width: 100%;
  max-width: 862.5px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.store-main-image {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   電話番号と住所のスタイル
   ============================================ */
/* 電話番号のスタイル */
.store-detail-item.phone-number .detail-value {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 20px;
}

.store-detail-item.phone-number {
  margin-bottom: 15px;
}

/* 住所のスタイル */
.store-detail-item.address .detail-value {
  color: #000;
  font-size: 16px;
}

/* ============================================
   Googleマップセクション
   ============================================ */
.store-map-section {
  background-color: #FFFDF5;
  padding: 40px 0;
}

@media (prefers-color-scheme: dark) {
  .store-map-section {
    background-color: #1A1A1A;
  }
}

.store-map-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.store-map-container {
  width: 700px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 0 auto;
}

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

/* スマートフォン対応 - Google マップ */
@media (max-width: 480px) {
  .store-map-wrapper {
    max-width: 100% !important;
    padding: 0 !important;
  }

  .store-map-container {
    width: 100% !important;
    height: 300px !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }
}

/* ============================================
   レスポンシブ対応 - 店舗情報
   ============================================ */

/* タブレット（1024px以下） */
@media (max-width: 1024px) {
  .store-info-wrapper {
    gap: 40px;
  }
}

/* タブレット（768px以下） */
@media (max-width: 768px) {
  .store-info-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* 💡 新規追加：以下2行を追加 */
  .store-info-left {
    order: 2;
  }

  .store-info-right {
    order: 1;
  }

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

  .store-call-btn {
    width: 100%;
    max-width: 60%;
  }

  .store-map-container {
    width: 100%;
  }
}

/* スマートフォン（480px以下） */
@media (max-width: 480px) {
  .store-info-section {
    padding: 30px 0;
  }

  .store-name {
    font-size: 24px;
  }

  .store-call-btn {
    padding: 10px 24px;
    font-size: 14px;
    width: 60%;
  }

  .store-map-container {
    width: 100%;
    height: 300px;
  }
}

/* ========================================
   Recruit Section Styles
   ======================================== */
.recruit {
    background-color: #FFFDF5;
    padding: 60px 20px;
    margin-top: 0px;
}

.recruit__content {
	max-width: 1200px;
	margin: 0 auto;
}

.recruit__title {
    font-family: 'Yomogi', cursive;
    font-size: 28px;
    color: #3C2A21;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

.recruit__body {
	background-color: #FFFDF5;
	border-radius: 12px;
}

/* 定義リスト */
.recruit__list {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 5px 30px;
	align-items: start;
	max-width: 500px;
	margin: 0 auto;
}

.recruit__dt {
    font-family: 'Yomogi', cursive;
    font-size: 16px;
    font-weight: 500;
    color: #3C2A21;
    text-align: right;
    padding: 5px 0;
}

.recruit__dd {
	font-size: 15px;
    font-family: 'Yomogi', cursive;
	color: #3C2A21;
	line-height: 1.8;
	margin: 0;
	padding: 5px 0;
	word-break: break-word;
	border-bottom: 1px solid #e8e3d8;
}

/* スマートフォン対応 */
@media (max-width: 768px) {
	.recruit {
		padding: 40px 0;
		margin-top: 30px;
	}

	.recruit__content {
		padding: 0 16px;
	}

	.recruit__title {
		font-size: 24px;
		margin-bottom: 30px;
	}

	.recruit__list {
		grid-template-columns: 1fr;
		gap: 8px 0;
		max-width: 100%;
		margin: 0 auto;
		padding: 0 12px;
	}

	.recruit__dt {
		font-size: 15px;
		font-weight: 700;
		margin-bottom: 5px;
		padding: 8px 16px;
		background-color: #f5ede1;
		border-radius: 4px;
		text-align: left;
	}

	.recruit__dd {
		font-size: 14px;
		padding: 0px 16px 15px 18px;
	}
}

/* ============================================
   カード型リンク - 追加CSS
   ============================================ */

/* カード全体をリンク化 */
.shop-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  height: 100%;
}

.shop-card-link:hover .shop-card {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.shop-card-link:hover .card-image {
  transform: scale(1.02);
}

.shop-card-link:focus {
  outline: 2px solid var(--main-orange);
  outline-offset: 4px;
  border-radius: 12px;
}

/* 詳しくリンク非表示（カード全体がリンク化されたため） */
.shop-card-link .card-link {
  display: none;
}


/* ============================================
   フィーチャースライダー - 終了しましたスタンプ
   ============================================ */

/* 半透明オーバーレイ（画像全体を少し暗く） */
.shop-featured-slider .slide-item.is-ended::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 3;
  pointer-events: none;
}

/* 終了しましたスタンプ本体 */
.shop-featured-slider .slide-ended-stamp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  z-index: 4;

  padding: 10px 24px;
  border: 3px solid #d32f2f;
  border-radius: 6px;

  background-color: rgba(255, 255, 255, 0.92);
  color: #d32f2f;

  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "ヒラギノ角ゴシック", "Yu Gothic", "游ゴシック", "Meiryo", "メイリオ", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.12em;
  white-space: nowrap;

  pointer-events: none;
  user-select: none;

  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* タブレット */
@media (max-width: 768px) {
  .shop-featured-slider .slide-ended-stamp {
    padding: 8px 20px;
    border-width: 3px;
    font-size: 17px;
  }
}

/* スマートフォン */
@media (max-width: 480px) {
  .shop-featured-slider .slide-ended-stamp {
    padding: 6px 16px;
    border-width: 2px;
    font-size: 14px;
    letter-spacing: 0.08em;
  }
}

/* ============================================================
   ヒーローカルーセル（フロントページ上部）
   - 中央メイン画像 + 左右チラ見え
   - モバイル（571px以下）はフル幅1枚表示に切替
   ============================================================ */

/* ========== カルーセルセクション全体 ========== */
.shop-hero-carousel {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background-color: var(--cream-ivory, #FFF8F0);
}

/* ========== ビューポート（可視領域） ========== */
.hero-carousel-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* ========== トラック（スライド格納） ========== */
.hero-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ========== 各スライド（デフォルトは非表示） ========== */
.hero-carousel-slide {
  position: absolute;
  top: 0;
  height: 100%;
  width: 60%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  z-index: 1;
}

/* ========== メインスライド（中央・大きく表示） ========== */
.hero-carousel-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 3;
  transform: translateX(-50%) scale(1);
}

/* ========== 左側チラ見え ========== */
.hero-carousel-slide.is-prev {
  opacity: 0.5;
  visibility: visible;
  z-index: 2;
  transform: translateX(-110%) scale(0.85);
}

/* ========== 右側チラ見え ========== */
.hero-carousel-slide.is-next {
  opacity: 0.5;
  visibility: visible;
  z-index: 2;
  transform: translateX(10%) scale(0.85);
}

/* ========== 画像 ========== */
.hero-carousel-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
}

/* ========== 左右ボタン ========== */
.hero-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--dark-brown, #704020);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background 0.3s, transform 0.3s;
}

.hero-carousel-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
}

.hero-carousel-btn-prev {
  left: 20px;
}

.hero-carousel-btn-next {
  right: 20px;
}

/* ========== ドットナビゲーション ========== */
.hero-carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.9);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.hero-carousel-dot.is-active {
  background: var(--main-orange, #FF9966);
  transform: scale(1.2);
}

.hero-carousel-dot:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* ============================================
   カルーセル レスポンシブ対応
   ============================================ */

/* タブレット（1024px以下） */
@media (max-width: 1024px) {
  .shop-hero-carousel {
    height: 500px;
  }
  
  .hero-carousel-slide {
    width: 70%;
  }
  
  .hero-carousel-slide.is-prev {
    transform: translateX(-105%) scale(0.85);
  }
  
  .hero-carousel-slide.is-next {
    transform: translateX(5%) scale(0.85);
  }
}

/* タブレット小（768px以下） */
@media (max-width: 768px) {
  .shop-hero-carousel {
    height: 400px;
  }
  
  .hero-carousel-slide {
    width: 80%;
  }
  
  .hero-carousel-slide.is-prev {
    transform: translateX(-100%) scale(0.85);
  }
  
  .hero-carousel-slide.is-next {
    transform: translateX(0%) scale(0.85);
  }
  
  .hero-carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* モバイル（571px以下）→ フル幅1枚表示 */
@media (max-width: 571px) {
  .shop-hero-carousel {
    height: 350px;
  }
  
  .hero-carousel-slide {
    width: 100% !important;
    left: 0 !important;
    transform: translateX(0) !important;
  }
  
  .hero-carousel-slide.is-active {
    transform: translateX(0) scale(1) !important;
  }
  
  /* チラ見えを非表示（モバイルではフル幅のみ） */
  .hero-carousel-slide.is-prev,
  .hero-carousel-slide.is-next {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateX(0) !important;
  }
  
  .hero-carousel-image {
    border-radius: 0;
  }
  
  .hero-carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .hero-carousel-btn-prev {
    left: 10px;
  }
  
  .hero-carousel-btn-next {
    right: 10px;
  }
  
  .hero-carousel-dots {
    bottom: 15px;
  }
  
  .hero-carousel-dot {
    width: 10px;
    height: 10px;
  }
}

/* モバイル小（480px以下） */
@media (max-width: 480px) {
  .shop-hero-carousel {
    height: 280px;
  }
}

/* ============================================
   タブレット（481〜768px）：About セクション
   テキスト上・画像下に縦並び変更
   ============================================ */
@media (min-width: 481px) and (max-width: 768px) {
  
  /* グリッドを縦1列に強制 */
  .shop-about-section .shop-about-content {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    padding: 0 10%;
  }
  
  /* テキストを上に */
  .shop-about-section .about-text-container {
    order: 1 !important;
    flex-direction: column-reverse !important;
    align-items: center !important;
    gap: 20px !important;
  }
  
  /* 画像を下に */
  .shop-about-section .about-image-container {
    order: 2 !important;
    width: 90% !important;
    margin: 0 auto !important;
  }
  
}