@charset "UTF-8";
:root {
  --brand-red: #C1272D;
  --brand-red-dark: #A81E24;
  --text-main: #222222;
  --text-sub: #555555;
  --text-caption: #777777;
  --bg-beige: #F6F0E8;
  --bg-white: #FFFFFF;
  --footer-black: #1A1A1A;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text-sub);
  line-height: 1.8;
  background-color: #fff;
  margin: 0 !important;
}

article {
  padding: 0 15px 10px;
}
article.store-card {
  padding: 0;
}

h1 {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-main);
}

h2 {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-main);
}

h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  line-height: 1.6;
  color: #333;
}

p {
  font-size: 16px;
  line-height: 1.8;
}

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

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

a:visited {
  color: #222;
}

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

.post,
.page {
  margin: 0;
}

/* 動画中はスクロール禁止 */
body.is-locked {
  overflow: hidden;
  touch-action: none;
  /* iOS対策 */
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  background: #000;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.intro.is-show {
  opacity: 1;
  display: block;
  pointer-events: auto;
}

/* 動画は背景全面 */
.intro__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ロゴposterレイヤー */
.intro__poster {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: transparent;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.intro__poster img {
  width: min(300px, 70vw);
  height: auto;
}

.intro__poster.is-hide {
  opacity: 0;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .intro {
    display: none;
    opacity: 0;
  }
  body.is-locked {
    overflow: auto;
  }
}
.hero-swiper.is-intro-hidden {
  opacity: 0;
  visibility: hidden;
}

.off1105 {
  display: block !important;
}

.on1105 {
  display: none !important;
}

@media (max-width: 1105px) {
  .off1105 {
    display: none !important;
  }
  .on1105 {
    display: block !important;
  }
}
.off991 {
  display: block !important;
}

.on991 {
  display: none !important;
}

@media (max-width: 991px) {
  .off991 {
    display: none !important;
  }
  .on991 {
    display: block !important;
  }
}
.off850 {
  display: block !important;
}

.on850 {
  display: none !important;
}

@media (max-width: 850px) {
  .off850 {
    display: none !important;
  }
  .on850 {
    display: block !important;
  }
}
.off767 {
  display: block !important;
}

.on767 {
  display: none !important;
}

@media (max-width: 767px) {
  .off767 {
    display: none !important;
  }
  .on767 {
    display: block !important;
  }
}
.off640 {
  display: block !important;
}

.on640 {
  display: none !important;
}

@media (max-width: 640px) {
  .off640 {
    display: none !important;
  }
  .on640 {
    display: block !important;
  }
}
.off480 {
  display: block !important;
}

.on480 {
  display: none !important;
}

@media (max-width: 480px) {
  .off480 {
    display: none !important;
  }
  .on480 {
    display: block !important;
  }
}
.off375 {
  display: block !important;
}

.on375 {
  display: none !important;
}

@media (max-width: 375px) {
  .off375 {
    display: none !important;
  }
  .on375 {
    display: block !important;
  }
}
.off360 {
  display: block !important;
}

.on360 {
  display: none !important;
}

@media (max-width: 360px) {
  .off360 {
    display: none !important;
  }
  .on360 {
    display: block !important;
  }
}
.off320 {
  display: block !important;
}

.on320 {
  display: none !important;
}

@media (max-width: 320px) {
  .off320 {
    display: none !important;
  }
  .on320 {
    display: block !important;
  }
}
.home main {
  overflow: hidden;
  background: linear-gradient(180deg, rgb(56, 56, 56) 0%, rgb(56, 56, 56) 50%, rgb(40, 40, 40) 100%);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-logo-circle {
  width: 48px;
  height: 48px;
  background-color: var(--brand-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
}

.header-logo-text {
  font-size: 24px;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  color: var(--text-main);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  color: var(--text-sub);
  font-size: 14px;
  transition: color 0.3s;
}

.header-nav a:hover {
  color: var(--brand-red);
}

.header-cta {
  padding: 12px 32px;
  background-color: var(--brand-red);
  color: white;
  border-radius: 6px;
  font-weight: 700;
  transition: background-color 0.3s;
}

.header-cta:hover {
  background-color: var(--brand-red-dark);
}

.mobile-menu-btn {
  display: none;
  padding: 8px;
  color: var(--text-main);
}

.mobile-menu {
  display: none;
  padding: 16px 0;
  border-top: 1px solid #e5e5e5;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu a {
  padding: 8px 0;
  color: var(--text-sub);
}

/* ヘッダー土台：追従・透明→スクロールで白半透明 */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.site-header.is-scrolled,
html.nav-open .site-header {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(120%) blur(8px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  /* 左ロゴ | 中央ナビ | 右CTA */
  align-items: center;
  gap: 16px;
  padding: 12px min(5vw, 32px);
}

.site-branding {
  max-width: 120px;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-branding .site-title,
.site-branding .site-description {
  margin: 0;
  font-size: 14px;
  line-height: 1;
}

.main-navigation {
  justify-self: center;
}

#primary-menu {
  display: flex;
  gap: 24px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

#primary-menu a {
  text-decoration: none;
  color: inherit;
}

.header__cta {
  justify-self: end;
}

.store-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
}

.store-menu > li > a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 9999px;
  border: 1px solid currentColor;
  text-decoration: none;
  line-height: 1;
}

/* ハンバーガー：PCは非表示、SPで表示 */
.hamburger {
  display: none;
  position: relative;
  width: 45px;
  height: 45px;
  border: none;
  background: transparent;
  padding: 0;
  z-index: 11000;
}

.hamburger__bar {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
}

.hamburger__bar:nth-child(1) {
  top: 12px;
}

.hamburger__bar:nth-child(2) {
  top: 20px;
}

.hamburger__bar:nth-child(3) {
  top: 28px;
}

.hamburger span.sr-only {
  position: absolute;
  width: 100%;
  font-size: 10px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

/* くるっと回って✕印 */
.hamburger.is-active .hamburger__bar:nth-child(1) {
  transform: rotate(45deg);
  top: 19px;
  background: #fff;
}

.hamburger.is-active .hamburger__bar:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active .hamburger__bar:nth-child(3) {
  transform: rotate(-45deg);
  top: 19px;
  background: #fff;
}

.hamburger.is-active span.sr-only {
  color: #fff;
}

/* ドロワー（全画面オーバーレイ） */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  padding: 16px 24px 32px;
  /* ご指定グラデーション + 約80%透過 */
  background: linear-gradient(180deg, rgb(56, 56, 56) 0%, rgba(56, 56, 56, 0.9) 50%, rgb(40, 40, 40) 100%);
  color: #fff;
  /* ふわっとアニメ */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  height: 100vh;
}

html.nav-open .drawer {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.drawer .site-branding {
  margin-bottom: 8px;
  max-width: 200px;
  margin: 0 auto;
  width: 100%;
}
.drawer .site-branding .site-title {
  display: block;
  width: 100%;
  position: relative;
  color: #fff;
}

.drawer__nav {
  margin-top: 24px;
}

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

.drawer__nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.site-header .drawer__nav a {
  display: block;
  padding: 14px 4px;
  text-decoration: none;
  color: #fff !important;
}

#menu-store-1.drawer__store {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
#menu-store-1.drawer__store > li > a {
  display: block;
  text-align: center;
  border-radius: 10px;
  border: 1px solid currentColor;
  padding: 14px 20px;
}

/* 1024px以下：グロナビは隠してハンバーガー表示。通販ボタンは残す */
@media (max-width: 1024px) {
  .header__inner {
    grid-template-columns: 1fr auto auto;
  }
  .main-navigation {
    display: none;
  }
  .hamburger {
    display: inline-block;
  }
}
/* 1024px以下：グロナビは隠してハンバーガー表示。通販ボタンは残す */
@media (max-width: 1024px) {
  .header__inner {
    grid-template-columns: 1fr auto auto;
  }
  .main-navigation {
    display: none;
  }
  .hamburger {
    display: inline-block;
  }
}
/* お好みで色 */
.site-header,
.site-header a {
  color: #222;
}

.site-header.is-scrolled a {
  color: #111;
}

.store-menu > li > a:hover {
  background: rgba(0, 0, 0, 0.06);
}

.section {
  padding: 80px 24px;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  z-index: 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: clamp(20px, 4vw, 40px);
}

.section-title {
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: 0.15em;
}

/* 雲の共通 */
.cloud {
  flex: 0 0 auto;
  width: clamp(80px, 20vw, 400px);
  opacity: 0.9;
}

.cloud img {
  width: 100%;
  height: auto;
  display: block;
}

/* SP 調整 */
@media (max-width: 767px) {
  .section-title-wrap {
    gap: 20px;
  }
  .cloud {
    width: clamp(60px, 25vw, 110px);
  }
}
.section-badge {
  display: inline-block;
  padding: 4px 16px;
  background-color: var(--brand-red);
  color: white;
  font-size: 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header h2.vertical-rl {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-align: left;
  margin: 3vw auto 8vw;
  position: relative;
  letter-spacing: 0.15em;
  /* 縦書きタイトル（既にあると思うけど一応） */
  /* 1文字ずつアニメする用 */
  /* 表示エリアに入ったらクラスが付く → まとめて発火 */
}
.section-header h2.vertical-rl::after {
  content: "";
  background-image: url("../img/title.webp");
  display: block;
  position: absolute;
}
.section-header h2.vertical-rl.section-title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: 0.25em;
  line-height: 1.8;
  /* 背景が写真でも読みやすくする例 */
  color: #fff;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.7);
}
.section-header h2.vertical-rl.section-title span {
  display: inline-block;
  /* アニメさせるため */
  opacity: 0;
  transform: translateY(16px);
  /* 縦書きなのでY方向に */
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: calc(var(--i) * 0.2s);
  /* 文字ごとにちょっとずつ遅らせる */
}
.section-header h2.vertical-rl.section-title.is-show span {
  opacity: 1;
  transform: translateY(0);
}

.section-header p {
  color: var(--text-sub);
  max-width: 800px;
  margin: 0 auto;
}

.btn-outline-round {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  background-color: transparent;
  color: var(--brand-red);
  border: 2px solid var(--brand-red);
  border-radius: 50px;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(193, 39, 45, 0.2);
}

.btn-outline-round:hover {
  background-color: var(--brand-red);
  color: white;
  box-shadow: 0 6px 16px rgba(193, 39, 45, 0.3);
  transform: translateY(-2px);
}

.btn-outline:visited,
.btn-outline:focus,
.btn-outline:active,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  background-color: transparent;
  color: var(--brand-red);
  border: 2px solid var(--brand-red);
  border-radius: 6px;
  font-weight: 700;
  transition: all 0.3s;
}

.btn-outline:hover {
  background-color: var(--brand-red);
  color: white;
}

/* Menu Section */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.menu-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.menu-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.menu-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

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

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

.menu-rank {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 48px;
  height: 48px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.menu-content {
  padding: 20px;
}

.menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.menu-header h3 {
  font-size: 20px;
}

.menu-price {
  color: var(--brand-red);
  font-weight: 700;
  font-size: 18px;
}

.menu-content p {
  font-size: 14px;
  line-height: 1.6;
}

/* Store Section */
.page-template-default main,
.post-type-archive main,
.single main {
  overflow: hidden;
  background: linear-gradient(180deg, rgb(147, 147, 147) 0%, rgb(97, 97, 97) 50%, rgb(111, 111, 111) 100%);
  background: #fff8ec;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

/* ===== スライダーの高さ揃え ===== */
.swiper-wrapper {
  align-items: stretch;
  /* すべてのスライドを同じ高さに */
}

.swiper-slide {
  height: auto;
  /* 自動高さでカードを埋める */
}

/* ===== 店舗カード全体 ===== */
.store-card {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}
.store-card .store-map {
  position: relative;
  aspect-ratio: 5/3;
  overflow: hidden;
}
.store-card .store-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(1);
}
.store-card .store-badges {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  z-index: 1;
  padding: 0;
  margin: 0;
  list-style: none;
}
.store-card .store-badges li.badge {
  color: #fff;
  font-size: 16px;
  padding: 2px 15px;
  border-radius: 5rem;
}
.store-card .store-badges li.badge--fc-store {
  background-color: #FF9800;
}
.store-card .store-badges li.badge--company-store {
  background-color: #A81E24;
}

.store-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.store-image .store-thumb-ph {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.store-image .store-thumb-ph img {
  transition: transform 0.3s;
  object-fit: contain;
  padding: 2vw;
  background: #ffefd7;
}

.store-image img,
.store-image .store-map {
  transition: transform 0.3s;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
}

.store-image .store-map iframe {
  width: 100%;
  height: 100%;
}

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

.store-content h3 {
  margin-bottom: 16px;
  font-size: 20px;
}

.store-info {
  margin-bottom: 20px;
}

.store-info-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 14px;
}

.store-info-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--brand-red);
}

.store-delivery {
  border-top: 1px solid #e5e5e5;
  padding-top: 20px;
  margin-top: 20px;
}

.store-delivery-label {
  font-size: 12px;
  color: #777;
  margin-bottom: 12px;
}

.store-delivery-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.delivery-btn {
  padding: 8px 12px;
  border-radius: 4px;
  color: white;
  font-size: 12px;
  font-weight: 700;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.delivery-btn:hover {
  opacity: 0.9;
}

.store-link {
  margin-top: auto;
  text-align: right;
  border-top: 1px solid #e5e5e5;
  padding-top: 50px;
  margin-top: 20px;
}

.swiper-pagination-bullet-active {
  background-color: var(--brand-red);
}

/* セクション余白などは既存を継承 */
.stores-slider-section .stores-swiper {
  overflow: hidden;
  padding: 0 15px 30px;
}

.stores-slider-section .swiper-slide {
  height: auto;
}

.store-image,
.store-thumb-ph {
  position: relative;
  padding-top: 50%;
  background: #f3f5f7;
  display: block;
  overflow: hidden;
}

.store-title {
  font-size: 1.05rem;
  margin: 0 0 8px;
}

.store-title a {
  color: inherit;
  text-decoration: none;
}

.store-info {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.store-info-item a,
.store-info-item span {
  font-size: 0.92rem;
  color: #333;
  text-decoration: none;
  word-break: break-word;
}

.store-info-item a {
  text-decoration: underline;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 10px;
}
.store-links span.labels {
  font-size: 0.92rem;
}
.store-links span.labels:not(:last-child) {
  border-right: solid 1px #ddd;
  padding-right: 8px;
}
.store-links span.labels .line {
  color: #ddd;
}

.btn.chip {
  display: inline-block;
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f0f3f7;
  color: #254;
  text-decoration: none;
}

.store-link.tail a {
  font-size: 0.9rem;
  color: var(--brand-red);
  text-decoration: none;
  font-weight: 500;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  bottom: 0;
  margin: auto;
  display: flex;
  justify-content: end;
  align-items: center;
  margin-top: 8px;
  padding-right: 10px;
  border-radius: 5px;
}
.store-link.tail a:hover {
  text-decoration: underline;
  background: rgba(255, 248, 236, 0.5);
}

.stores-slider-section .swiper-button-prev,
.stores-slider-section .swiper-button-next {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stores-slider-section .swiper-button-prev:after,
.stores-slider-section .swiper-button-next:after {
  font-size: 16px;
}

.stores-slider-section .swiper-pagination {
  position: static;
  margin-top: 10px;
}

.stores-slider-section .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
}

.store-info-item .info-ico {
  flex-shrink: 0;
  color: var(--c-key, #0aa0df);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.store-info-item svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.icon {
  display: inline-block;
  vertical-align: middle;
}

/* ボタンにアイコン（ブランドロゴ） */
.btn.chip.has-icon {
  position: relative;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ダーク背景のボタンでも視認性をキープ */
.btn.chip {
  color: #234;
  background: #eef3f7;
}

.btn.chip:hover {
  filter: brightness(0.98);
}

/* ===== 店舗内容部 ===== */
.store-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  /* 高さを残りいっぱい使う */
  padding: 16px;
}

/* Online Shop Section */
.shop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.shop-image {
  aspect-ratio: 1;
  border-radius: 100%;
  overflow: hidden;
  box-shadow: 0 0 40px rgb(68, 65, 62);
}

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

.shop-content {
  max-width: 600px;
}

.shop-features {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.shop-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background-color: white;
  border-radius: 8px;
}

.shop-feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background-color: rgba(193, 39, 45, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-red);
}

.shop-feature h4 {
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
  font-size: 16px;
}

.shop-feature p {
  font-size: 14px;
}

.shop-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* News Section */
.news-list {
  max-width: 800px;
  margin: 0 auto 48px;
}

.news-item {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 32px;
  margin-bottom: 32px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.news-item:last-child {
  border-bottom: none;
}

.news-item:hover {
  opacity: 0.8;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.news-date {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #777;
}

.news-category {
  display: inline-block;
  padding: 4px 12px;
  background-color: var(--brand-red);
  color: white;
  font-size: 12px;
  border-radius: 4px;
}

.news-item h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.news-item p {
  line-height: 1.8;
}

/* Note Section */
.note-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.note-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.note-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.note-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

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

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

.note-content {
  padding: 24px;
}

.note-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #777;
  margin-bottom: 12px;
}

.note-content h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.5;
  transition: color 0.3s;
}

.note-card:hover h3 {
  color: var(--brand-red);
}

.note-description {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.note-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--brand-red);
  transition: color 0.3s;
}

.note-card:hover .note-link {
  color: var(--brand-red-dark);
}

/* Instagram Section */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 64px;
}

.instagram-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

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

.instagram-item:hover img {
  transform: scale(1.1);
}

.instagram-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram-item:hover .instagram-overlay {
  background-color: rgba(0, 0, 0, 0.2);
}

.instagram-icon {
  color: white;
  width: 48px;
  height: 48px;
  opacity: 0;
  transition: opacity 0.3s;
}

.instagram-item:hover .instagram-icon {
  opacity: 1;
}

.instagram-message {
  text-align: center;
  margin-top: 48px;
  font-size: 14px;
  color: #777;
}

.instagram-message a {
  color: var(--brand-red);
  text-decoration: underline;
  margin-left: 4px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #111;
  color: #ddd;
  /* top row -------------------------------------------------------------- */
  /* middle row ----------------------------------------------------------- */
  /* bottom row ----------------------------------------------------------- */
}
.site-footer a {
  color: inherit;
  text-decoration: none;
}
.site-footer .container {
  width: min(92vw, 1200px);
  margin-inline: auto;
}
.site-footer .is-off {
  opacity: 0.5;
  cursor: default;
}
.site-footer .footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  padding: 80px 0 40px;
}
@media (max-width: 900px) {
  .site-footer .footer__top {
    grid-template-columns: 1fr;
  }
}
.site-footer .footer__logo {
  margin-bottom: 20px;
}
.site-footer .footer__logo img {
  max-height: 48px;
  width: auto;
  filter: drop-shadow(3px 3px 0 #5e080b);
}
.site-footer .footer__logo .site-title {
  display: block;
  height: 48px;
  width: auto;
  font-weight: 800;
  font-size: 20px;
  z-index: 99999;
  position: relative;
}
.site-footer .footer__tagline {
  margin: 10px 0 20px;
  color: #bbb;
  line-height: 1.7;
}
.site-footer .footer__company {
  color: #bbb;
}
.site-footer .footer__company .company__name {
  margin-bottom: 6px;
}
.site-footer .footer__company .company__addr {
  white-space: pre-wrap;
}
.site-footer .footer__company .company__tel {
  margin-top: 6px;
}
.site-footer .footer__right .footer-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 600px) {
  .site-footer .footer__right .footer-menu {
    grid-template-columns: 1fr;
  }
}
.site-footer .footer__right .footer-menu__title {
  margin: 0 0 20px;
  font-weight: 800;
  font-size: 16px;
  font-size: 23px;
  color: #fff;
}
.site-footer .footer__right .footer-menu .footer-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.site-footer .footer__right .footer-menu .footer-nav__list a:hover {
  text-decoration: underline;
}
.site-footer .footer__middle {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 900px) {
  .site-footer .footer__middle {
    grid-template-columns: 1fr;
    justify-items: start;
    row-gap: 16px;
  }
}
.site-footer .footer__sns {
  display: flex;
  gap: 14px;
}
.site-footer .footer__sns .sns-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}
.site-footer .footer__sns .sns-link:hover {
  background: rgba(255, 255, 255, 0.12);
}
.site-footer .footer__sns .sns-link svg {
  display: block;
  fill: currentColor;
}
.site-footer .footer__sns .sns-link span {
  font-size: 14px;
}
.site-footer .footer__legal ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin: 0;
  padding: 0;
}
.site-footer .footer__legal ul a {
  text-decoration: underline;
}
.site-footer .footer__bottom {
  padding: 40px 0;
  text-align: center;
}
.site-footer .footer__bottom .copyright {
  margin: 0;
  font-size: 16px;
  color: #aaa;
}

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

/* Responsive */
@media (min-width: 640px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .header-nav {
    display: flex;
  }
  .mobile-menu-btn {
    display: none;
  }
  .message-grid {
    grid-template-columns: 1fr 1fr;
  }
  .shop-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (max-width: 1023px) {
  .header-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .footer-brand {
    grid-column: span 1;
  }
}
/* Icons (using Unicode symbols) */
.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
}

/* ===== 店舗一覧（archive-store）カードのサイズ統一 ===== */
.archive-store .store-grid {
  /* カードの基準サイズ */
  --card-w: 374px;
  /* 幅：変えたければここだけ */
  --gap: 48px 24px;
  display: grid;
  /* 幅を固定（min=max）にしたカラムを自動段組み。余白は中央で均す */
  grid-template-columns: repeat(auto-fill, minmax(var(--card-w), var(--card-w)));
  gap: var(--gap);
  justify-content: center;
  /* 1枚や2枚のときも中央寄せ */
  align-items: stretch;
}

/* タブレットで少し広めにしたければ（任意） */
@media (max-width: 1024px) {
  .archive-store .store-grid {
    --card-w: 340px;
  }
}
/* スマホは1列（でも“カード幅”は維持して中央寄せ） */
@media (max-width: 640px) {
  .archive-store .store-grid {
    --card-w: min(92vw, 360px);
    gap: 16px;
  }
}
.archive-store .store-card .store-link.tail {
  margin-top: auto;
  position: relative;
}

/* カード内のアイコン付きボタン類の折返し対策（任意） */
.store-card .store-links {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.store-card .store-links .group {
  width: 100%;
  position: relative;
  padding-left: 30px;
}
.store-card .store-links .group span.icon {
  position: absolute;
  left: 0;
  top: 4px;
}
.store-card .store-links .group span.icon svg {
  color: var(--brand-red);
}

/* ==========================================================================
   ニュース一覧
   ========================================================================== */
#news-archive {
  padding-bottom: 20px;
}
#news-archive h2 {
  font-family: inherit;
  font-size: 20px;
  margin-bottom: 12px;
}

.news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding-bottom: 30px;
  border-bottom: dashed 1px #ddd;
  margin: 0 0 30px;
}
.news-filter__btn {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid #ddd;
  border-radius: 999px;
  background: #fff;
  color: #333;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  transition: 0.2s;
}
.news-filter__btn:hover {
  border-color: #aaa;
}
.news-filter__btn.is-active {
  background: #111;
  color: #fff;
  border-color: #111;
  pointer-events: none;
}

/* ==========================================================================
  News Single: A4紙束スタイル
   ========================================================================== */
.news-single {
  padding: 80px 24px 80px;
}
@media (max-width: 767px) {
  .news-single {
    padding: 60px 14px 40px;
  }
}

.paper-stack {
  margin-top: -50px;
  position: relative;
  width: min(900px, 92vw);
  margin-inline: auto;
  padding: 40px 0 64px;
}
.paper-stack::before, .paper-stack::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: 24px auto 0;
  width: min(880px, 90vw);
  height: 97%;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
  transform-origin: center top;
  z-index: 0;
}
.paper-stack::before {
  transform: rotate(-2.5deg) translateY(6px);
  opacity: 0.9;
  left: -80px;
}
.paper-stack::after {
  transform: rotate(2.25deg) translateY(14px);
  opacity: 0.9;
  right: -80px;
}

.paper-sheet {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: min(900px, 90vw);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: clip;
  display: block;
  padding: clamp(24px, 3.5vw, 40px);
}

/* マージン（紙の余白） */
.paper-head,
.paper-body,
.paper-foot {
  padding-inline: clamp(0px, 0vw, 20px);
}

.paper-head {
  padding-top: clamp(18px, 3.5vw, 32px);
}

.paper-body {
  padding-block: clamp(10px, 2.6vw, 24px);
}

.paper-foot {
  padding-bottom: clamp(16px, 3.5vw, 28px);
}

/* タイトル・メタ */
.paper-title {
  margin: 8px 0 14px;
  font-size: clamp(20px, 1.9vw, 24px);
  line-height: 1.35;
  font-weight: 800;
}

.news-meta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.news-meta .news-date {
  font-size: 16px;
  color: #666;
}
.news-meta .news-date time {
  display: flex;
  align-items: center;
  gap: 4px;
}
.news-meta .news-category {
  font-size: 12px;
  color: #fff;
  padding: 0.2em 0.6em;
  border-radius: 999px;
}

/* ヒーロー画像（紙の中で余白と角丸） */
.paper-hero {
  margin: 10px 0 0;
  border-radius: 6px;
  overflow: hidden;
}
.paper-hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* 本文タイポグラフィ（紙の上で読みやすく） */
.paper-body {
  color: #222;
  line-height: 1.9;
  font-size: clamp(15px, 1.05vw, 17px);
}
.paper-body p {
  margin: 0 0 1.1em;
}
.paper-body h2,
.paper-body h3,
.paper-body h4 {
  margin: 1.4em 0 0.6em;
  line-height: 1.4;
  font-weight: 800;
}
.paper-body h2 {
  font-size: clamp(20px, 1.8vw, 26px);
}
.paper-body h3 {
  font-size: clamp(18px, 1.6vw, 22px);
}
.paper-body h4 {
  font-size: clamp(16px, 1.4vw, 20px);
}
.paper-body ul,
.paper-body ol {
  padding-left: 1.2em;
  margin: 0 0 1.1em;
}
.paper-body blockquote {
  margin: 1.2em 0;
  padding: 0.8em 1em;
  background: #f6f7f8;
  border-left: 4px solid #cfd4d9;
}
.paper-body img,
.paper-body figure {
  max-width: 100%;
  height: auto;
}
.paper-body figure {
  margin: 1.2em 0;
}
.paper-body figcaption {
  font-size: 12px;
  color: #666;
  text-align: center;
  margin-top: 0.4em;
}
.paper-body a {
  color: #0b73d9;
  text-decoration: underline;
}

/* フッターのナビ */
.paper-foot .paper-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}
.paper-foot .paper-nav .paper-nav__prev,
.paper-foot .paper-nav .paper-nav__next {
  font-size: 14px;
}
.paper-foot .paper-nav .paper-nav__next {
  text-align: right;
}
.paper-foot .paper-nav .paper-nav__prev a,
.paper-foot .paper-nav .paper-nav__next a {
  text-decoration: none;
}
.paper-foot .paper-nav .paper-nav__archive {
  padding: 8px 14px;
  border: 1px solid #ddd;
  border-radius: 999px;
  background: #fff;
  text-decoration: none;
  color: #333;
}

/* 小さめ画面では紙比率を緩める */
@media (max-width: 560px) {
  .paper-sheet {
    aspect-ratio: auto;
    min-height: 0;
  }
}
/* 印刷用（紙の影は消す／余白タイポ維持） */
@media print {
  .paper-stack::before,
  .paper-stack::after {
    display: none !important;
  }
  .paper-sheet {
    box-shadow: none !important;
    border: 1px solid #ddd;
  }
}
/* ====== ページネーション（円形・センター配置） ====== */
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
}
.nav-links .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--brand-red);
  color: var(--brand-red);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s ease;
  background: #fff;
}
.nav-links .page-numbers:hover {
  background: var(--brand-red);
  color: #fff;
}
.nav-links .page-numbers.current {
  background: var(--brand-red);
  color: #fff;
  pointer-events: none;
}
.nav-links .page-numbers.next, .nav-links .page-numbers.prev {
  width: auto;
  padding: 0 14px;
  border-radius: 999px;
}

/*--------------------------------------------------------------
# ページタイトル
-------------------------------------------------------------- */
.page header.entry-header {
  text-align: center;
}

/*--------------------------------------------------------------
# アーカイブタイトル
-------------------------------------------------------------- */
.archive header.page-header {
  text-align: center;
}

/*--------------------------------------------------------------
# コンテンツに動きをつける
-------------------------------------------------------------- */
.off {
  opacity: 0;
  transform: translate(0, 0);
  transition: 0.5s all ease;
}

.off.up {
  opacity: 0;
  transform: translate(0, 30px);
  transition: 0.5s all ease;
}

.off.up2 {
  opacity: 0;
  transform: translate(0, 50px);
  transition: 1s all ease;
}

.off.down {
  opacity: 0;
  transform: translate(0, -30px);
  transition: 0.5s all ease;
}

.off.left {
  opacity: 0;
  transform: translate(-30px, 0);
  transition: 0.5s all ease;
}

.off.right {
  opacity: 0;
  transform: translate(30px, 0);
  transition: 0.5 all ease;
}

.off.on {
  opacity: 1;
  transform: translate(0, 0);
}

/* ==============================
   アーカイブ用ヒーロー
   ============================== */
.archive-hero {
  width: 100%;
  margin-bottom: 40px;
}

.archive-hero__inner {
  position: relative;
  width: 100%;
  aspect-ratio: auto;
  height: 100%;
  max-height: 400px;
  aspect-ratio: 6/3;
  overflow: hidden;
}

.archive-hero__inner {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.archive-hero__overlay {
  position: absolute;
  inset: 0;
  /* ちょっと暗くするオーバーレイ（好みで調整） */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
}

.archive-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
}

.archive-hero__body {
  width: 100%;
  max-width: 1200px;
  /* セクション幅に合わせて */
  margin: 0 auto;
  padding: 32px 20px 40px;
  color: #fff;
}

.archive-hero__title {
  font-family: "Shippori Mincho", serif;
  /* テーマに合わせて */
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.4;
  margin: 0 0 8px;
  color: #fff;
}

.archive-hero__desc {
  font-size: 16px;
  line-height: 1.8;
  max-width: 640px;
  margin: 0;
}

/* SP 調整 */
@media (max-width: 767px) {
  .archive-hero {
    margin-bottom: 24px;
  }
  .archive-hero__body {
    padding: 20px 16px 24px;
  }
  .archive-hero__desc {
    font-size: 13px;
  }
}
.pref-block {
  display: flex;
  align-items: baseline;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: dashed 1px #607D8B;
}
.pref-block p.pref-count {
  margin: 0 13px;
}

/* ==============================
   固定ページ用ヒーロー
   ============================== */
.page-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 9/5;
  max-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
}
.page-hero__title {
  color: #fff;
  font-size: clamp(24px, 5vw, 38px);
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .page-hero {
    max-height: 280px;
    aspect-ratio: auto;
    height: 40vw;
  }
  .page-hero__title {
    font-size: clamp(22px, 6vw, 30px);
  }
}/*# sourceMappingURL=global.css.map */