@charset "UTF-8";
/* ==========================================================================
   1. VARIABLES & SETTINGS (変数定義)
   ========================================================================== */ :root {
  /* --- Colors --- */
  --c-main-red: #9b0809;
  --c-sub-red: #EBD6CC;
  --c-dark-red: #600000;
  --c-beige: #f4eee3;
  --c-white: #ffffff;
  --c-text: #333333;
  --c-text-gray: #999999;
  --c-border: #eeeeee;
  /* --- Layout & Sizes --- */
  --w-inner: 1100px; /* コンテンツ幅の基準 */
  --h-header: 100px; /* ヘッダーの高さ */
  /* --- Typography (Clamp) --- */
  --fz-title-l: clamp(32px, 5vw, 52px); /* Aboutタイトル等 */
  --fz-title-m: clamp(24px, 1.93vw + 16.8px, 38px); /* セクション見出し */
  --fz-title-s: clamp(18px, 1.14vw + 14.4px, 28px); /* 中見出し */
  --fz-text: clamp(15px, 0.57vw + 13.2px, 20px); /* 本文 */
  --font-sans: "Noto Sans JP", sans-serif; /* ゴシック体 */
  --font-serif: "Shippori Mincho", serif; /* 明朝体 */
  /* --- Z-Index Layer Management --- */
  --z-header: 100;
  --z-nav: 150;
  --z-menu: 200;
}
/* ==========================================================================
   2. RESET & BASE (リセット・基本設定)
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}
html, body, h1, h2, h3, p, ul, li, figure {
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border: none;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
body {
  font-family: var(--font-sans);
  background-color: var(--c-beige);
  color: var(--c-text);
  padding-top: var(--h-header);
  line-height: 1.6;
}
html {
  scroll-padding-top: var(--h-header); /* ヘッダーの高さ分ずらす */
  scroll-behavior: smooth; /* スルッと動く */
}
h1, h2, h3, h4, h5, h6, .c-heading-line, .c-heading-bg, .p-about-intro__title {
  font-family: var(--font-serif);
}
/* ==========================================================================
   3. SHARED LAYOUT (共通レイアウト・構造)
   ========================================================================== */
/* コンテンツ幅を制限して中央に寄せる「器」 */
.l-container {
  width: 90%;
  max-width: var(--w-inner);
  margin: 0 auto;
}
/* セクション間の縦の余白を作る「枠」 */
.l-section {
  margin-bottom: clamp(80px, 10vw, 120px);
}
.l-section:last-of-type {
  margin-bottom: clamp(40px, 5vw, 60px);
}
/* 汎用グリッド */
.l-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 20px;
  margin-bottom: 40px;
}
.l-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.l-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 30px;
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .l-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .l-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .l-grid-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media screen and (max-width: 600px) {
  .l-grid-3 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
/* ==========================================================================
   4. UTILITY (便利クラス)
   ========================================================================== */
.u-text-center {
  text-align: center !important;
}
.u-mt-20 {
  margin-top: 20px !important;
}
.u-mt-30 {
  margin-top: 30px !important;
}
.u-mt-40 {
  margin-top: 40px !important;
}
.u-mt-60 {
  margin-top: 60px !important;
}
.u-mt-80 {
  margin-top: 80px !important;
}
.u-mw800 {
  max-width: 800px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100%;
}
.u-mw600 {
  max-width: 600px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100%;
}
/* 赤い文字リンク */
.u-link-red {
  color: var(--c-main-red);
  font-weight: 700;
  margin-left: 0.5em;
  text-decoration: none;
  transition: opacity 0.3s;
}
.u-link-red:hover {
  opacity: 0.7;
  text-decoration: underline;
}
/* アスペクト比関連 */
.u-aspect-16-9, .u-aspect-map {
  position: relative;
  width: 100%;
}
.u-aspect-16-9 {
  padding-top: 56.25%;
}
.u-aspect-map {
  padding-top: 35%;
}
.u-aspect-16-9 iframe, .u-aspect-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Utility Responsive */
@media screen and (max-width: 1000px) {
  .sp-no {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .u-sp-mt-20 {
    margin-top: 20px !important;
  }
  .u-sp-mt-40 {
    margin-top: 40px !important;
  }
  .u-aspect-map {
    padding-top: 60%;
  }
}
/* ==========================================================================
   5. COMMON COMPONENTS (共通コンポーネント)
   ========================================================================== */
/* --- Breadcrumb (パンくずリスト) --- */
.c-breadcrumb .l-container {
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c-main-red);
}
.c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  font-size: 13px;
  gap: 10px;
  padding-left: 0;
}
.c-breadcrumb__item {
  display: flex;
  align-items: center;
  overflow-wrap: anywhere; /* ← これを追加：長い英数字もはみ出さずに折り返す */
}
.c-breadcrumb__item a, .c-breadcrumb__item span {
  color: var(--c-main-red);
  text-decoration: none;
}
.c-breadcrumb__item a:hover {
  opacity: 0.7;
}
.c-breadcrumb__item:not(:last-child)::after {
  content: ">";
  margin-left: 10px;
  color: var(--c-main-red);
  font-weight: normal;
}
/* --- Heading (見出し) --- */
.c-heading-line {
  font-size: 32px;
  color: var(--c-main-red);
  font-weight: bold;
  border-bottom: 1px solid var(--c-main-red);
  padding-bottom: 15px;
  margin-bottom: 50px;
  letter-spacing: 0.05em;
}
.c-heading-bg {
  background-color: var(--c-sub-red);
  color: var(--c-main-red);
  font-size: 20px;
  font-weight: bold;
  padding: 15px 25px;
  margin-bottom: 30px;
}
.c-heading-sub {
  font-size: var(--fz-title-s);
  color: var(--c-main-red);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1em;
  letter-spacing: 0.05em;
  display: block;
}
* + .c-heading-sub {
  margin-top: 2.5em;
}
.c-page-title {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--c-main-red);
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding: 60px 0 30px;
  margin-bottom: 40px;
}
.c-page-title__sub {
  font-size: 14px;
  font-family: serif;
  text-transform: uppercase;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .c-heading-line {
    font-size: 24px;
    margin-bottom: 30px;
    padding-bottom: 10px;
  }
  .c-page-title {
    font-size: 24px;
  }
}
/* --- Button (共通メインボタン) --- */
.c-btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--c-main-red);
  color: var(--c-white);
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  padding: 22px 80px;
  border-radius: 100px;
  transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
}
.c-btn-main:hover {
  background-color: var(--c-dark-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--c-white);
}
.c-btn-main:active {
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .c-btn-main {
    padding: 18px 40px;
    font-size: 16px;
    width: 100%;
    max-width: 320px;
  }
}
/* 共通ボタン（モーダル内など） */
.c-btn {
  flex: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 14px;
  transition: opacity 0.3s;
}
.c-btn:hover {
  opacity: 0.8;
}
.c-btn i {
  margin-right: 8px;
}
.c-btn--google {
  background-color: #34A853;
}
.c-btn--amap {
  background-color: #1E88E5;
}
/* --- Text link --- */
.c-more-link {
  text-align: right;
  margin-top: 15px;
}
.c-more-link a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--c-main-red);
  ;
  font-weight: bold;
  transition: opacity 0.3s ease;
}
.c-more-link a:hover {
  opacity: 0.7;
}
.c-more-link a i {
  margin-left: 0.5em;
}
/* --- Card (汎用サムネイルカード) --- */
.c-card-thumb {
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s;
  height: 100%;
}
.c-card-thumb a {
  cursor: pointer;
}
.c-card-thumb a:hover {
  opacity: 0.7;
}
.c-card-thumb__img {
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
}
.c-card-thumb__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.c-card-thumb__title {
  color: var(--c-main-red);
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.4;
  position: relative;
  display: flex;
  min-height: 24px;
}
.c-card-thumb a .c-card-thumb__title {
  padding-left: 34px;
}
.c-card-thumb a .c-card-thumb__title::before {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  background-color: var(--c-main-red);
  border-radius: 50%;
  flex-shrink: 0;
}
.c-card-thumb a .c-card-thumb__title::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.c-card-thumb__text {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}
/* ガイドブック用バリエーション */
.c-card-thumb--guide {
  cursor: pointer;
  transition: transform 0.3s;
}
.c-card-thumb--guide:hover {
  transform: translateY(-5px);
}
.c-card-thumb__guide-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.4;
  background-color: #eee;
  overflow: hidden;
}
.c-card-thumb__guide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-card-thumb__label {
  display: block;
  width: 100%;
  background-color: var(--c-main-red);
  color: #fff;
  text-align: center;
  padding: 12px 0;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.05em;
}
/* --- Media (汎用 文章&画像) --- */
.c-media-text {
  width: 100%;
  margin-bottom: 80px;
}
.c-media-text:last-child {
  margin-bottom: 0;
}
.c-media-text__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.c-media-text__content {
  flex: 1;
}
.c-media-text__figure {
  flex: 0 0 45%;
  margin: 0;
}
.c-media-text__figure img {
  width: 100%;
  height: auto;
  display: block;
}
.c-media-text.-reverse .c-media-text__inner {
  flex-direction: row-reverse;
}
.c-media-text__title {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--c-main-red);
  margin-bottom: 20px;
  padding-left: 0.5em;
  border-left: 2px solid var(--c-main-red);
  font-weight: 700;
}
.c-media-text__text p {
  font-size: 15px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .c-media-text__inner {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .c-media-text.-reverse .c-media-text__inner {
    flex-direction: column-reverse;
  }
  .c-media-text__figure {
    width: 100%;
  }
}
/* --- Grid Navigation (共通格子状ナビ) --- */
.c-grid-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  border-top: 1px solid var(--c-main-red);
  border-left: 1px solid var(--c-main-red);
}
.c-grid-nav__item {
  border-right: 1px solid var(--c-main-red);
  border-bottom: 1px solid var(--c-main-red);
}
.c-grid-nav__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  width: 100%;
  padding: 10px;
  text-decoration: none;
  transition: background-color 0.3s;
}
.c-grid-nav__icon {
  width: 100%;
  max-width: 120px;
  margin-bottom: 15px;
  position: relative;
}
.c-grid-nav__icon img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s;
}
.c-grid-nav__icon img.is-active {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.c-grid-nav__name {
  font-size: var(--fz-text);
  color: var(--c-main-red);
  font-family: var(--font-serif);
  font-weight: bold;
  transition: color 0.3s;
  text-align: center;
}
/* Grid Nav Hover */
.c-grid-nav__item a:hover {
  background-color: var(--c-main-red);
}
.c-grid-nav__item a:hover .c-grid-nav__name {
  color: var(--c-beige);
}
.c-grid-nav__item a:hover .is-default {
  opacity: 0;
}
.c-grid-nav__item a:hover .is-active {
  opacity: 1;
}
@media screen and (max-width: 1000px) {
  .c-grid-nav {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-grid-nav__icon {
    max-width: 100px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 600px) {
  .c-grid-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* --- Modal (モーダル・ポップアップ) --- */
.c-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.c-modal.is-active {
  display: block;
}
.c-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}
.c-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  background-color: var(--c-beige);
  border: 5px solid var(--c-main-red);
  padding: 30px;
  overflow-y: auto;
  box-sizing: border-box;
}
.c-modal__close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 30px;
  color: var(--c-main-red);
  cursor: pointer;
  line-height: 1;
}
.c-modal__title {
  color: var(--c-main-red);
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.c-modal__image {
  width: 100%;
  margin-bottom: 30px;
}
.c-modal__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-modal__desc {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 30px;
}
.c-modal__info {
  margin-bottom: 30px;
  font-size: 14px;
}
.c-modal__info dt {
  font-weight: bold;
  margin-top: 15px;
}
.c-modal__info dd {
  margin-left: 0;
  margin-bottom: 5px;
}
.c-modal__map {
  width: 100%;
  height: 200px;
  background: #eee;
  margin-bottom: 20px;
}
.c-modal__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.c-modal__actions {
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 600px) {
  .c-modal__content {
    padding: 20px;
    width: 95%;
  }
  .c-modal__actions {
    flex-direction: column;
  }
}
/* --- Misc Components (注釈・バナー・マップ等) --- */
.c-note-box {
  width: 100%;
  margin: 40px 0;
  padding: 25px 30px;
  border: 1px solid var(--c-text-gray);
  background-color: transparent;
  text-align: center;
}
.c-contents-row + .c-note-box {
  margin-top: 60px;
}
.c-note-box__text {
  display: inline-block;
  text-align: left;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  letter-spacing: 0.05em;
}
.c-aspect-box {
  position: relative;
  width: 100%;
  background-color: #eee;
  overflow: hidden;
}
.c-aspect-box > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.c-banner {
  margin: 30px 0;
  text-align: center;
}
.c-banner a {
  display: inline-block;
  transition: opacity 0.3s;
}
.c-banner a:hover {
  opacity: 0.8;
}
.c-banner img {
  width: 100%;
  max-width: 800px;
  height: auto;
}
.c-map-container {
  margin: 30px 0;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background-color: #eee;
}
.c-map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}
.c-lead-text {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .c-note-box {
    padding: 20px 15px;
    margin: 30px 0;
  }
  .c-note-box__text {
    font-size: 13px;
    line-height: 1.6;
  }
}
/* ==========================================================================
   6. SITE STRUCTURE (ヘッダー・フッター)
   ========================================================================== */
/* --- HEADER (ヘッダー) --- */
.header {
  width: 100%;
  height: var(--h-header);
  background: var(--c-white);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-header);
  border-bottom: 1px solid var(--c-border);
}
.header-inner {
  width: 94%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logo img {
  height: 72px;
}
/* Navigation (Common) */
.nav-list {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-list li {
  position: relative;
}
.nav-list a, .nav-label, .lang-label {
  font-size: 15px;
  font-weight: bold;
  white-space: nowrap;
  color: var(--c-text);
  cursor: pointer;
  transition: 0.3s;
}
.nav-list a:hover, .nav-label:hover, .lang-label:hover {
  color: var(--c-main-red);
}
/* Dropdown Common (Base styles) */
.nav-dropdown, .lang-dropdown {
  background: var(--c-white);
  padding: 10px 0;
  min-width: 200px;
  border-radius: 4px;
  z-index: 10;
}
.lang-dropdown {
  min-width: 120px;
}
.nav-dropdown li a, .lang-dropdown li a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: normal;
  text-align: left;
}
/* Hamburger Menu Button (Default Hidden) */
.menu-btn {
  display: none;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: var(--z-menu);
}
.menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: #333;
  position: absolute;
  transition: 0.3s;
}
.menu-btn span:nth-child(1) {
  top: 0;
}
.menu-btn span:nth-child(2) {
  top: 11px;
}
.menu-btn span:nth-child(3) {
  bottom: 0;
}
/* Header: PC Styles (1001px~) */
@media screen and (min-width: 1001px) {
  .nav-dropdown, .lang-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  .has-child:hover .nav-dropdown, .nav-lang:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  /* Arrow Icon */
  .nav-label, .lang-label {
    display: flex;
    align-items: center;
  }
  .nav-label::after, .lang-label::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s;
  }
  .has-child:hover .nav-label::after, .nav-lang:hover .lang-label::after {
    transform: rotate(-135deg);
  }
}
/* Header: SP Styles (~1000px) */
@media screen and (max-width: 1000px) {
  .header-logo img {
    height: 60px;
  }
  .menu-btn {
    display: block;
  }
  .menu-btn.is-open span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  .menu-btn.is-open span:nth-child(2) {
    opacity: 0;
  }
  .menu-btn.is-open span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--c-white);
    transition: 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: var(--z-nav);
    padding: 100px 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .header-nav.is-open {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    text-align: left;
    gap: 0;
    width: 100%;
    max-width: none;
  }
  .nav-list > li {
    width: 100%;
    border-bottom: 1px solid var(--c-border);
  }
  .nav-list > li:first-child {
    border-top: 1px solid var(--c-border);
  }
  .nav-list a, .nav-label, .lang-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
    font-size: 16px;
    width: 100%;
  }
  .nav-label::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
    transform: rotate(45deg);
    transition: 0.3s;
  }
  .has-child.is-active .nav-label::after {
    transform: rotate(-135deg);
  }
  .has-child .nav-dropdown {
    display: block;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
    opacity: 0;
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    padding: 0;
  }
  .has-child.is-active .nav-dropdown {
    max-height: 500px;
    opacity: 1;
    padding: 10px 0;
  }
  .nav-lang {
    margin-top: 40px;
    padding: 20px 10px;
    background: #fcfaf5;
    border-radius: 8px;
    border-bottom: none !important;
    width: 100%;
  }
  .lang-label {
    display: block;
    font-size: 13px;
    color: var(--c-text-gray);
    margin-bottom: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    pointer-events: none;
    text-align: center;
  }
  .lang-label::after {
    display: none;
  }
  .lang-dropdown {
    position: static;
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0;
    background: transparent;
    min-width: auto;
  }
  .lang-dropdown li a {
    font-size: 14px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: var(--c-white);
    min-width: 85px;
    font-weight: normal;
    text-align: center;
  }
  .lang-dropdown li a:active {
    border-color: var(--c-main-red);
    color: var(--c-main-red);
  }
}
/* --- FOOTER (フッター) --- */
.footer {
  background-color: var(--c-dark-red);
  color: var(--c-beige);
  padding: 60px 0 20px;
}
.footer-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.footer-brand {
  flex: 1;
}
.footer-logo {
  max-width: 300px;
  margin-bottom: 25px;
}
.footer-sns {
  display: flex;
  gap: 12px;
}
.footer-sns li a {
  display: block;
  width: 32px;
  transition: opacity 0.3s;
}
.footer-sns li a:hover {
  opacity: 0.7;
}
.footer-nav {
  flex: 1;
}
.footer-nav li {
  margin-bottom: 15px;
}
.footer-nav a {
  color: var(--c-beige);
  font-size: 15px;
  font-weight: bold;
}
.footer-nav a:hover {
  text-decoration: underline;
}
.footer-banners {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 280px;
}
.footer-banner-item {
  display: block;
  transition: transform 0.3s;
}
.footer-banner-item:hover {
  transform: scale(1.03);
}
.footer-banner-item img {
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-copy {
  width: 90%;
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
}
@media screen and (max-width: 900px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-sns {
    justify-content: center;
    margin-bottom: 30px;
  }
  .footer-banners {
    width: 100%;
    max-width: 320px;
  }
  .footer-copy {
    text-align: center;
  }
}
/* ==========================================================================
   7. TOP PAGE SECTIONS (トップページ)
   ========================================================================== */
/* --- MAIN VISUAL --- */
.main-visual {
  width: 100%;
  background-color: var(--c-beige);
}
.main-visual img {
  width: 100%;
  display: block;
  margin: 0 auto;
}
/* --- INTRO SECTION (商店街とは & トピックス) --- */
.intro-section {
  width: 100%;
  padding: 100px 0;
  color: var(--c-beige);
  background-color: var(--c-main-red);
  background-image: url("../images/top-bg-01.png"), url("../images/top-bg-02.png");
  background-repeat: no-repeat;
  background-position: right top, left 30% bottom 10%;
  background-size: 600px auto, 350px auto;
  background-blend-mode: multiply;
}
.intro-inner {
  width: 90%;
  max-width: var(--w-inner);
  margin: 0 auto;
}
/* About Block */
.about-block {
  text-align: center;
  margin-bottom: 100px;
}
.about-title {
  font-size: var(--fz-title-l);
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}
.about-lead {
  font-size: var(--fz-title-s);
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 2;
}
.about-text {
  font-size: var(--fz-text);
  line-height: 2.2;
}
/* Topics Block */
.topics-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.topics-info {
  width: 38%;
}
.topics-title {
  font-size: var(--fz-title-m);
  margin-bottom: 20px;
}
.topics-lead {
  font-size: 15px;
  margin-bottom: 30px;
}
.btn-beige {
  display: inline-block;
  padding: 22px 80px;
  border-radius: 100px;
  background: var(--c-beige);
  color: var(--c-main-red);
  font-size: 15px;
  font-weight: bold;
}
.topics-list {
  width: 57%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.topic-item {
  display: flex;
  gap: 20px;
}
.topic-img {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  background: #ccc;
}
.topic-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.topic-content time {
  font-size: 12px;
  display: block;
  margin-bottom: 8px;
}
.topic-content h3 {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.topic-content h3:hover {
  text-decoration: underline;
}
.topic-content p {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.9;
}
@media screen and (max-width: 1000px) {
  .intro-section {
    background-size: 400px auto, 250px auto;
    background-position: right top, right 5% bottom 5%;
    padding: 60px 0;
  }
  .topics-block {
    flex-direction: column;
    align-items: center;
  }
  .topics-info {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }
  .topics-list {
    width: 100%;
  }
  .topic-item {
    align-items: center;
  }
}
/* --- SHOP LIST SECTION (店舗一覧) --- */
.shop-list-section {
  width: 100%;
  background-color: var(--c-beige);
  padding: clamp(60px, 8vw, 100px) 0;
}
.shop-list-inner {
  width: 90%;
  max-width: var(--w-inner);
  margin: 0 auto;
}
.shop-list-title {
  font-size: var(--fz-title-m);
  color: var(--c-main-red);
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 60px);
  letter-spacing: 0.1em;
}
/* --- FEATURES SECTION (商店街の魅力) --- */
.features-section {
  padding-bottom: clamp(60px, 8vw, 100px);
}
.features-inner {
  width: 90%;
  max-width: var(--w-inner);
  margin: 0 auto;
}
.features-main-title {
  font-size: var(--fz-title-m);
  color: var(--c-main-red);
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 60px);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 30px);
}
.feature-card {
  background-color: transparent;
  border: 1px solid var(--c-main-red);
  border-radius: 8px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  transition: background-color 0.3s, border-color 0.3s;
}
.feature-card-img {
  width: 100%;
  height: 220px;
  margin-bottom: 10px;
  position: relative;
}
.feature-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s;
}
.feature-card-img img.is-active {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.feature-card-title {
  font-size: 28px;
  color: var(--c-main-red);
  margin-bottom: 15px;
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}
.feature-card-text {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.8;
  color: var(--c-main-red);
  text-align: left;
  transition: color 0.3s;
}
/* Feature Card Hover */
.feature-card:hover {
  background-color: var(--c-main-red);
}
.feature-card:hover .is-default {
  opacity: 0;
}
.feature-card:hover .is-active {
  opacity: 1;
}
.feature-card:hover .feature-card-title, .feature-card:hover .feature-card-text {
  color: var(--c-beige);
}
@media screen and (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card-img {
    height: auto;
  }
}
/* --- BANNERS SECTION (絆具 & ChatGPT) --- */
.banner-tsunagu-section {
  padding: clamp(40px, 6vw, 80px) 0;
}
.banner-inner {
  width: 90%;
  max-width: var(--w-inner);
  margin: 0 auto;
}
.tsunagu-link {
  display: block;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  line-height: 0;
}
.tsunagu-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.tsunagu-desc-area {
  margin-top: clamp(30px, 5vw, 50px);
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tsunagu-text {
  font-size: var(--fz-text);
  color: var(--c-text);
  line-height: 2;
  max-width: 800px;
  text-align: left;
}
.chatgpt-banner-area {
  margin-top: clamp(40px, 8vw, 80px);
  text-align: center;
}
.chatgpt-banner-area img {
  max-width: 800px;
  width: 100%;
  height: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  line-height: 0;
}
.chatgpt-banner-area img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .tsunagu-text {
    line-height: 1.8;
  }
}
/* --- ENJOY SECTION (Top Page Teaser) --- */
.enjoy-section {
  background-color: var(--c-main-red);
  background-image: url('../images/top-bg-03.png');
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
  background-blend-mode: multiply;
  padding: clamp(60px, 8vw, 100px) 0;
  color: var(--c-white);
}
.enjoy-inner {
  width: 90%;
  max-width: var(--w-inner);
  margin: 0 auto;
}
.enjoy-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 30px;
}
.enjoy-en-title {
  font-family: serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--c-beige);
}
.enjoy-en-title span {
  display: block;
  font-size: 1.3em;
  font-weight: bold;
}
.enjoy-sub-title {
  margin-top: 20px;
  color: var(--c-beige);
}
.enjoy-nav {
  display: flex;
  gap: 15px;
}
.enjoy-nav-item {
  background-color: var(--c-beige);
  width: clamp(100px, 12vw, 160px);
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  color: var(--c-main-red);
  font-weight: bold;
  padding: 18px 5px 10px;
  transition: 0.3s;
  position: relative;
}
.enjoy-nav-item::after {
  content: '\f061';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 14px;
  transition: 0.3s;
}
.enjoy-nav-item:hover::after {
  transform: translateX(4px);
}
.enjoy-nav-item img {
  height: 70px;
  width: auto;
  object-fit: contain;
  margin-bottom: 10px;
  display: block;
}
.enjoy-nav-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(1.3em * 2);
  line-height: 1.3;
  width: 100%;
  flex-grow: 1;
  font-size: clamp(12px, 0.41vw + 10.4px, 15px);
}
.enjoy-nav-item:hover {
  background-color: var(--c-white);
  transform: translateY(-3px);
}
@media screen and (max-width: 768px) {
  .enjoy-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .enjoy-nav-item img {
    width: 50px;
  }
  .enjoy-nav {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
  }
  .enjoy-nav-item {
    padding-bottom: 18px;
    width: calc((100% - (var(--gap, 10px) * 2)) / 3);
  }
}
/* --- INSTAGRAM SECTION --- */
.instagram-section {
  background-color: var(--c-main-red);
  padding: clamp(40px, 6vw, 80px) 0;
  color: var(--c-beige);
}
.instagram-inner {
  width: 90%;
  max-width: var(--w-inner);
  margin: 0 auto;
}
.instagram-title {
  font-family: serif;
  font-size: clamp(32px, 4vw, 42px);
  text-align: center;
  margin-bottom: 40px;
}
.insta-widget-placeholder {
  width: 100%;
  min-height: 400px;
}
/* ==========================================================================
   8. PAGE: HOW TO ENJOY
   ========================================================================== */
/* --- MV (メインビジュアル) --- */
.howto-mv {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 60px 0 140px;
  min-height: 600px;
}
.howto-mv__inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.howto-mv__content {
  text-align: center;
  z-index: 2;
}
.howto-mv__title img {
  width: 100%;
  max-width: 580px;
  height: auto;
}
.howto-mv__lead {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 700;
  color: var(--c-main-red);
  letter-spacing: 0.1em;
}
.howto-mv__description {
  margin: 40px auto;
  max-width: 800px;
  text-align: center;
}
.howto-mv__description p {
  color: var(--c-main-red);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
}
/* 背景装飾イラスト */
.howto-mv__bg img {
  position: absolute;
  z-index: 1;
  opacity: 0.8;
  pointer-events: none;
}
.howto-mv__bg .bg-item-01 {
  top: 0;
  left: 2%;
  width: 150px;
}
.howto-mv__bg .bg-item-02 {
  top: -30px;
  left: 18%;
  width: 130px;
}
.howto-mv__bg .bg-item-03 {
  top: 200px;
  left: 2%;
  width: 260px;
}
.howto-mv__bg .bg-item-04 {
  top: 0;
  right: 2%;
  width: 260px;
}
@media screen and (max-width: 768px) {
  .howto-mv {
    padding: 60px 0 40px;
    min-height: auto;
  }
  .howto-mv__title img {
    max-width: 280px;
  }
  .howto-mv__lead {
    font-size: 14px;
  }
  .howto-mv__bg .bg-item-01, .howto-mv__bg .bg-item-02 {
    display: none;
  }
  .howto-mv__bg .bg-item-03 {
    width: 160px;
    top: 50px;
    left: -60px;
  }
  .howto-mv__bg .bg-item-04 {
    width: 160px;
    top: -40px;
    right: -40px;
  }
}
/* --- Journey (大型カード) --- */
.journey-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.journey-card {
  background-color: var(--c-main-red);
  border-radius: 10px;
  overflow: hidden;
}
.journey-card__inner {
  display: flex;
  padding: 10px;
}
.journey-card__content {
  flex: 1;
  padding: 40px;
  color: var(--c-beige);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.journey-card__title {
  font-family: serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.1;
}
.journey-card__desc {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 30px;
}
.journey-card__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 10px;
  list-style: none;
}
.journey-card__links a {
  color: var(--c-beige);
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.journey-card__links a:hover {
  text-decoration: underline;
}
.journey-card__links a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  vertical-align: middle;
  margin-top: -2px;
}
.journey-card__image {
  flex: 1;
  background-color: #fff;
  border: 10px solid var(--c-main-red);
  border-radius: 15px;
  overflow: hidden;
}
.journey-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 900px) {
  .journey-card__inner {
    flex-direction: column;
    padding: 10px;
  }
  .journey-card__image {
    order: -1;
    width: 100%;
    aspect-ratio: 16 / 10;
  }
  .journey-card__content {
    padding: 30px 15px;
  }
  .journey-card__links {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* --- Sightseeing Information --- */
.sightseeing-section .c-card-thumb {
  cursor: pointer;
}
.sightseeing-section .c-card-thumb:hover {
  opacity: 0.7;
}
/* --- Message (マナーとキャラクター) --- */
.message-flex {
  display: flex;
  align-items: flex-end;
  gap: 40px;
}
.message-content {
  flex: 1;
}
.message-item {
  margin-bottom: 40px;
}
.message-item:last-child {
  margin-bottom: 0;
}
.message-item__title {
  color: var(--c-main-red);
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.message-item__text {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  padding-left: 1.5em;
}
.message-character {
  flex-basis: 300px;
  text-align: center;
}
.message-character img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
}
@media screen and (max-width: 900px) {
  .message-flex {
    flex-direction: column;
    align-items: center;
  }
  .message-character {
    order: 1;
    flex-basis: auto;
    width: 60%;
    margin-top: 20px;
  }
  .message-item__title {
    font-size: 16px;
  }
}
/* ==========================================================================
   9. PAGE: お店一覧
   ========================================================================== */
/* --- 表示制御・アニメーション --- */
.js-shop-content {
  display: none;
  animation: fadeIn 0.5s ease;
}
.js-shop-content.is-active {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* --- カテゴリーナビ (タブ) --- */
.c-grid-nav__item a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--c-beige);
  color: var(--c-main-red);
  transition: background-color 0.3s, color 0.3s;
}
.c-grid-nav__item a:hover, .c-grid-nav__item.is-active a {
  background-color: var(--c-main-red);
  color: var(--c-beige);
}
.c-grid-nav__item a:hover .is-default, .c-grid-nav__item.is-active a .is-default {
  opacity: 0;
}
.c-grid-nav__item a:hover .is-active, .c-grid-nav__item.is-active a .is-active {
  opacity: 1;
}
.c-grid-nav__item.is-active .c-grid-nav__name {
  color: var(--c-beige);
}
/* --- カテゴリータイトルバー --- */
.c-category-bar {
  position: relative;
  display: flex;
  align-items: center;
  height: 62px;
  padding-left: 160px;
  margin: 60px 0 30px;
  background-color: var(--c-sub-red);
}
.c-category-bar__ill {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 110px;
  z-index: 10;
}
.c-category-bar__ill img {
  width: 100%;
  height: auto;
  display: block;
}
.c-category-bar__title {
  color: var(--c-main-red);
  font-size: var(--fz-title-s);
  font-weight: bold;
}
.c-shop-notice {
  font-size: 15px;
  margin-bottom: 40px;
}
/* --- 店舗アイテムリスト --- */
.shop-item {
  border-bottom: 1px solid var(--c-main-red);
  padding: 40px 0;
  transition: background-color 0.3s ease;
}
.shop-item__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.shop-item__inner {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 30px;
}
.shop-item__img {
  width: 320px;
  flex-shrink: 0;
}
.shop-item__img img {
  width: 100%;
  object-fit: cover;
}
.shop-item__name {
  font-size: 22px;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 15px;
}
.shop-item__desc {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media (hover: hover) {
  .shop-item:hover {
    background-color: rgba(155, 8, 9, 0.03);
  }
  .shop-item:hover .shop-item__name {
    text-decoration: underline;
  }
}
/* --- サービスアイコンタグ --- */
.shop-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}
.c-tag {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 18px 0 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: var(--c-beige);
}
.c-tag.is-red {
  background-color: var(--c-main-red);
}
.c-tag.is-gray {
  background-color: #ECD7CE;
  color: var(--c-white);
}
.c-tag__icon {
  width: 26px;
  height: auto;
  margin-right: 6px;
}
/* Shop List Responsive */
@media screen and (max-width: 768px) {
  .shop-item {
    padding: 30px 0;
  }
  .shop-item__inner {
    flex-direction: column;
    gap: 20px;
  }
  .shop-item__img {
    width: 100%;
  }
  .c-category-bar {
    padding-left: 120px;
  }
}
@media screen and (max-width: 480px) {
  .shop-item__inner {
    padding: 0;
  }
  .c-category-bar__ill img {
    width: 80px;
  }
  .shop-item__tags {
    gap: 6px;
  }
  .c-tag {
    padding: 0 10px 0 6px;
    height: 28px;
    font-size: 10px;
  }
  .c-tag__icon {
    width: 18px;
  }
}
/* ==========================================================================
   10. PAGE: お店詳細
   ========================================================================== */
/* --- メインセクション (上部) --- */
.p-shop-detail-main {
  padding-top: 80px;
}
.p-shop-detail-main__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 40px;
}
.p-shop-detail-main__info {
  flex: 1;
}
.p-shop-detail-main__cat {
  font-size: 16px;
  margin-bottom: 10px;
}
.p-shop-detail-main__name {
  font-size: var(--fz-title-m);
  font-weight: bold;
  margin-bottom: 25px;
  line-height: 1.2;
}
.p-shop-detail-main__catch {
  font-family: var(--font-serif);
  font-size: var(--fz-title-s);
  margin-bottom: 40px;
  line-height: 1.5;
}
.p-shop-detail-main__visual {
  width: 50%;
  max-width: 600px;
}
.p-shop-detail-main__desc {
  font-size: var(--fz-text);
  line-height: 1.8;
  padding-top: 30px;
}
/* Swiperリセット */
.swiper {
  width: 100%;
  margin: 0;
}
.swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.swiper-pagination-lock {
  display: none;
}
/* --- 店舗基本情報 (テーブル) --- */
.p-shop-detail-info {
  background-color: var(--c-beige);
}
.p-shop-detail-info__table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
}
.p-shop-detail-info__table th, .p-shop-detail-info__table td {
  padding: 25px 0;
  border-bottom: 1px solid #444;
  font-size: 16px;
  text-align: left;
}
.p-shop-detail-info__table th {
  width: 25%;
  font-weight: normal;
  color: var(--c-text);
  vertical-align: top;
}
.p-shop-detail-info__table td {
  color: var(--c-text);
  line-height: 1.6;
}
.p-shop-detail-info__table a {
  color: inherit;
  text-decoration: none;
}
.p-shop-detail-info__table a:hover {
  color: var(--c-main-red);
}
.p-shop-detail-info__sns {
  display: flex;
  gap: 15px;
}
/* --- 動画・マップ周辺 --- */
.p-shop-detail-pr-video {
  margin-top: clamp(40px, 5vw, 60px);
  display: flex;
  justify-content: center;
}
.p-shop-detail-pr-video__inner {
  width: 100%;
  max-width: 800px;
}
.p-shop-detail-access__map {
  margin-bottom: 30px;
}
/* Shop Detail Responsive */
@media screen and (max-width: 768px) {
  .p-shop-detail-main {
    padding-top: 30px;
  }
  .p-shop-detail-main__inner {
    flex-direction: column-reverse;
    gap: 30px;
  }
  .p-shop-detail-main__visual {
    width: 100%;
    max-width: none;
  }
  .p-shop-detail-main__name {
    margin-bottom: 15px;
  }
  .p-shop-detail-info__table th, .p-shop-detail-info__table td {
    display: block;
    width: 100%;
    padding: 10px 0;
  }
  .p-shop-detail-info__table th {
    border-bottom: none;
    font-weight: bold;
    font-size: 14px;
  }
  .p-shop-detail-info__table td {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 600px) {
  .p-shop-detail-access__actions .l-grid-2 {
    gap: 15px;
  }
}
/* ==========================================================================
   11. PAGE: 道具屋筋商店街について (About)
   ========================================================================== */
/* --- Intro & Message --- */
.p-about-intro__title {
  color: var(--c-main-red);
  font-size: var(--fz-title-l);
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 40px;
}
.p-about-intro__title span {
  display: block;
}
.p-about-intro__body {
  max-width: 800px;
  margin-bottom: 60px;
  color: var(--c-text);
}
.p-about-intro__body p {
  font-size: var(--fz-text);
  line-height: 2;
  margin-bottom: 2em;
}
.p-about-message__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px 60px;
}
.p-about-message__content {
  flex: 1;
}
.p-about-message__text {
  line-height: 2;
  margin-bottom: 2em;
  text-align: justify;
}
.p-about-message__sign {
  font-family: var(--font-serif);
  margin-top: 40px;
  text-align: right;
  font-size: var(--fz-text);
  font-weight: 500;
}
.p-about-message__sign .name {
  font-size: 1.4em;
  font-weight: 700;
  margin-left: 1em;
}
.p-about-message__img {
  width: 35%;
  max-width: 400px;
  flex-shrink: 0;
}
/* --- Event (イベント情報) --- */
.p-about-event .c-card-thumb__title {
  padding-left: 0;
}
.p-about-event .c-card-thumb__title::before {
  display: none;
}
/* --- Maido-kun & Song (キャラ・歌) --- */
.p-about-maido__inner {
  display: flex;
  align-items: flex-start;
  gap: 40px 60px;
}
.p-about-maido__img {
  width: 46%;
  max-width: 600px;
  flex-shrink: 0;
}
.p-about-maido__profile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 20px;
  line-height: 1.6;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.p-about-maido__profile dt {
  font-weight: bold;
  color: var(--c-main-red);
}
.p-about-maido__profile dt::after {
  content: "：";
}
.p-about-maido__description {
  font-size: 14px;
  line-height: 1.8;
}
.p-about-song__credit {
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
}
.p-about-song__player {
  max-width: 500px;
  margin: 0 auto 30px;
  text-align: center;
}
.p-about-song__audio {
  width: 100%;
  height: 40px;
}
.p-about-song__lyrics {
  line-height: 2.2;
  text-align: center;
}
/* --- History & Timeline (歴史・年表) --- */
.p-about-history {
  padding-bottom: 80px;
}
.p-about-history__gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.p-about-history__gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.p-history-list {
  max-width: 900px;
  margin: 40px auto 0;
  padding: 0 15px;
}
.p-history-list__item {
  display: flex;
  gap: 20px;
}
.p-history-list__line-area {
  position: relative;
  width: 20px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}
.p-history-list__line-area::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: #ccc;
  transform: translateX(-50%);
}
.p-history-list__dot {
  position: relative;
  z-index: 2;
  width: 12px;
  height: 12px;
  background-color: #a31111;
  border-radius: 50%;
  margin-top: 10px;
}
.p-history-list__content {
  flex: 1;
  padding-bottom: 50px;
}
.p-history-list__year {
  font-weight: bold;
  font-size: 18px;
  color: #333;
}
.p-history-list__year span {
  font-size: 14px;
  font-weight: normal;
  margin-left: 5px;
}
.p-history-list__sub-title {
  font-weight: bold;
  font-size: 16px;
  color: #333;
  margin-top: 4px;
}
.p-history-list__text {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}
/* About Responsive */
@media (max-width: 768px) {
  .p-about-intro__title span {
    display: contents;
  }
  .p-about-message__inner {
    flex-direction: column-reverse;
    gap: 30px;
  }
  .p-about-message__img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .p-about-maido__inner {
    flex-direction: column;
    align-items: center;
  }
  .p-about-maido__img {
    width: 80%;
    margin-bottom: 20px;
  }
  .p-history-list__item {
    gap: 15px;
  }
  .p-history-list__year {
    font-size: 16px;
  }
  .p-history-list__sub-title {
    font-size: 15px;
  }
  .p-history-list__text {
    font-size: 14px;
  }
}
/* ==========================================================================
   12. PAGE: アクセス (Access)
   ========================================================================== */
.p-access__lead {
  font-family: var(--font-sans);
  margin-bottom: 60px;
  line-height: 2;
}
.p-access-detail__flex {
  display: flex;
  align-items: flex-start;
  gap: 40px 60px;
}
.p-access-detail__info {
  flex: 1;
}
.p-access-detail__title {
  color: var(--c-main-red);
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 25px;
}
.p-access-detail__list {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 2;
}
.p-access-detail__list li {
  margin-bottom: 0.8em;
  position: relative;
}
@media screen and (max-width: 900px) {
  .p-access-detail__flex {
    flex-direction: column;
  }
  .p-access-detail__figure {
    width: 100%;
    max-width: 100%;
  }
}
/* ==========================================================================
   13. PAGE: お問合せ (Contact)
   ========================================================================== */
/* --- 注意喚起セクション --- */
.p-contact-notice__box {
  border: 4px solid var(--c-main-red);
  padding: 40px 30px;
  text-align: center;
}
.p-contact-notice__icon {
  font-size: 40px;
  line-height: 1.0;
  margin-bottom: 20px;
  color: var(--c-main-red);
}
.p-contact-notice__main-text {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--c-main-red);
  line-height: 1.8;
  font-size: clamp(16px, 2.5vw, 22px);
}
.p-contact-notice__sub-text {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 2;
}
/* AIバナー */
.p-contact-notice__ai-banner a {
  display: block;
  transition: transform 0.3s, box-shadow 0.3s;
}
.p-contact-notice__ai-banner a:hover {
  transform: translateY(-5px);
}
.p-contact-notice__ai-banner img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
/* --- 入力フォーム --- */
.p-contact-form__table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--c-main-red);
}
.p-contact-form__table th, .p-contact-form__table td {
  border: 1px solid var(--c-main-red);
  padding: 25px;
}
.p-contact-form__table th {
  width: 30%;
  background-color: #ebd6cc;
  font-family: var(--font-serif);
  font-weight: bold;
  text-align: center;
  color: var(--c-text);
}
.p-contact-form__table td {
  background-color: #fff;
}
.p-contact-form__radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-family: var(--font-sans);
}
.p-contact-form__radio-group label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.c-form-input, .c-form-textarea {
  width: 100%;
  border: 1px solid #ccc;
  padding: 12px;
  font-family: var(--font-sans);
  font-size: 16px;
  border-radius: 4px;
}
.c-form-textarea {
  height: 200px;
  resize: vertical;
}
.p-contact-form__submit {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-contact-notice__box {
    padding: 30px 15px;
    border-width: 3px;
  }
  .p-contact-notice__main-text {
    text-align: left;
    display: inline-block;
  }
  .p-contact-form__table th, .p-contact-form__table td {
    display: block;
    width: 100%;
    text-align: left;
  }
  .p-contact-form__table th {
    padding: 15px;
    border-bottom: none;
  }
}
/* ==========================================================================
   14. PAGE: AIチャット案内
   ========================================================================== */
.c-box-question {
  background-color: #fff;
  border-radius: 50px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 80px;
}
.c-list-note {
  font-family: var(--font-sans);
  font-size: 14px;
  color: #666;
  list-style: none;
}
.c-list-note li {
  margin-bottom: 5px;
}
.p-ai-chat__banner a {
  display: block;
  transition: opacity 0.3s;
}
.p-ai-chat__banner a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .c-box-question {
    padding: 15px 20px;
    font-size: 14px;
    min-height: 60px;
  }
}
/* ==========================================================================
   15. BLOG & ARTICLE (記事共通)
   ========================================================================== */
/* --- 背景・全体の文字色制御 --- */
body.is-article-page {
  background-color: var(--c-main-red);
}
/* 赤背景時のタイトル・パンくず調整 */
.is-article-page .c-page-title, .is-article-page .c-page-title .u-en, .is-article-page .c-breadcrumb__item, .is-article-page .c-breadcrumb__item a, .is-article-page .c-breadcrumb__item span {
  color: var(--c-beige);
  border-color: var(--c-beige);
}
.is-article-page .c-breadcrumb .l-container {
  border-bottom: 1px solid var(--c-beige);
}
.is-article-page .c-breadcrumb__item:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  color: var(--c-beige);
}
/* --- 記事カード全体 --- */
.c-post-card {
  background-color: var(--c-beige);
  border-radius: 12px;
  margin-bottom: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.c-post-card:last-child {
  margin-bottom: 0;
}
.c-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.c-post-card__link {
  display: flex;
  align-items: center;
  padding: 30px;
  gap: 40px;
  text-decoration: none;
}
.post-card + .u-text-center {
  margin-bottom: 100px;
}
/* 画像エリア */
.c-post-card__img {
  width: 200px;
  flex-shrink: 0;
  margin: 0;
  overflow: hidden;
}
.c-post-card__img img {
  width: 100%;
  aspect-ratio: 1254 / 774;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.c-post-card:hover .c-post-card__img img {
  transform: scale(1.05);
}
/* テキストエリア */
.c-post-card__body {
  flex: 1;
}
.c-post-card__date {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: #888;
  letter-spacing: 0.05em;
}
.c-post-card__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 10px;
  margin-bottom: 20px;
  overflow-wrap: anywhere;
}
.c-post-card__excerpt {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
}
/* --- ページネーション --- */
.c-pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  list-style: none;
}
.c-pagination__num, .c-pagination__arrow {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: bold;
  color: var(--c-beige);
  text-decoration: none;
  padding: 5px 10px;
}
.c-pagination__num.is-current {
  border-bottom: 2px solid var(--c-beige);
}
@media screen and (max-width: 900px) {
  .c-post-card__link {
    gap: 25px;
  }
}
@media screen and (max-width: 640px) {
  .c-post-card__link {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }
  .c-post-card__img {
    width: 100%;
  }
  .c-post-card__title {
    font-size: 18px;
  }
}
/* ページネーション全体のコンテナ */
.pagination {
  width: 100%;
  text-align: center;
}
/* フレックスボックスで横並び・中央寄せ */
.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px; /* ボタン同士の隙間 */
}
/* 各ページ番号・「＜」「＞」の基本スタイル */
.pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  text-decoration: none;
  background-color: var(--c-beige);
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: all 0.3s ease;
}
/* 現在いるページのスタイル */
.pagination .current {
  color: #fff;
  background-color: var(--c-dark-red);
  pointer-events: none;
}
/* マウスホバー時のスタイル */
.pagination a.page-numbers:hover {
  color: #fff;
  background-color: var(--c-dark-red);
  opacity: 0.8;
}
/* 省略記号「…」のスタイル */
.pagination .dots {
  border: none;
  background-color: transparent;
  width: auto;
  padding: 0 5px;
  color: var(--c-beige);
}
@media screen and (max-width: 768px) {
  .pagination .page-numbers {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}
/* ==========================================================================
   16. WORDPRESS CONTENT STYLES
   ========================================================================== */
.post-card {
  background-color: var(--c-beige);
  border-radius: 24px;
  padding: 100px min(8%, 80px);
  max-width: var(--w-inner);
  margin: 60px auto 120px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}
.post-header {
  margin-bottom: 60px;
}
.post-date {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--c-text);
  margin-bottom: 20px;
  display: block;
}
.post-title {
  font-size: var(--fz-title-m);
  line-height: 1.5;
  color: var(--c-text);
  font-weight: 700;
  overflow-wrap: anywhere;
}
.post-content {
  color: var(--c-text);
  line-height: 2.2;
}
.wp-block-heading {
  line-height: 1.5;
  margin: 30px 0 20px;
}
.post-content figure.wp-block-image, .post-content .wp-block-image, .post-content figure {
  margin-top: 30px;
  margin-bottom: 60px;
  display: block;
}
.wp-block-embed :where(figcaption) {
  font-size: 14px;
  line-height: 1.5;
}
.post-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.8;
  background: #fff;
  overflow: hidden;
}
/* 行 */
.post-content table tr {
  border-bottom: 1px solid #eee;
}
.post-content table tr:last-child {
  border-bottom: none;
}
/* 見出し */
.post-content table th {
  width: 28%;
  background: #f7f4ef; /* ベージュ系に寄せる */
  padding: 16px 18px;
  text-align: left;
  font-weight: 700;
  color: #333;
  white-space: nowrap;
  vertical-align: top;
}
/* 内容 */
.post-content table td {
  padding: 16px 18px;
  word-break: break-word;
  color: #444;
}
.post-content img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.post-content p {
  margin-top: 0;
  margin-bottom: 30px;
  letter-spacing: 0.03em;
}
.post-content ul, .post-content ol {
  margin-bottom: 80px;
  padding-left: 1.5em;
}
.post-content ul {
  list-style: none;
}
.post-content ul li {
  position: relative;
  margin-bottom: 15px;
}
.post-content ul li::before {
  content: "";
  position: absolute;
  left: -1.5em;
  top: 0.9em;
  width: 7px;
  height: 7px;
  background-color: var(--c-main-red);
  transform: rotate(45deg);
}
/* WordPressのYouTubeブロックをレスポンシブ対応にする */
.wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .post-card {
    padding: 60px 20px;
  }
  .post-header {
    margin-bottom: 40px;
  }
  .post-content figure.wp-block-image, .post-content .wp-block-image, .post-content figure {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .post-content h2 {
    margin-top: 60px;
    margin-bottom: 30px;
  }
  .post-content ul, .post-content ol, .post-content table {
    margin-bottom: 60px;
  }
  .post-content table th {
    width: 35%;
    padding: 12px;
    font-size: 14px;
  }
  .post-content table td {
    padding: 12px;
    font-size: 14px;
  }
}
/* ==========================================================================
   17. FEATURE PAGES (特集ページ共通・個別)
   ========================================================================== */
/* --- Main Visual (MV) Base --- */
.feature-mv .l-container {
  position: relative;
  padding: 60px 0;
}
.feature-mv__content {
  position: relative;
  z-index: 10;
  text-align: center;
}
.feature-mv__title-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}
.feature-mv__title {
  position: relative;
  z-index: 2;
  font-family: var(--font-serif);
  color: var(--c-main-red);
  font-weight: 700;
  margin: 0;
  font-size: clamp(40px, 6vw, 70px);
}
.feature-mv__brush {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  z-index: 1;
}
.feature-mv__description {
  color: var(--c-main-red);
  margin: 40px auto;
  max-width: 800px;
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
}
/* --- Fixed Background Visual --- */
.feature-visual-fix {
  width: 100%;
  height: clamp(300px, 50vw, 500px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 60px;
}
.p-feature--tools.feature-visual-fix {
  background-image: url('../images/tools-main-visual.jpg');
}
.p-feature--experience.feature-visual-fix {
  background-image: url('../images/experience-main-visual.jpg');
}
.p-feature--food.feature-visual-fix {
  background-image: url('../images/food-main-visual.jpg');
}
/* --- MV Background Illustrations --- */
.feature-mv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.feature-mv__bg img {
  position: absolute;
  height: auto;
  opacity: 0.7;
}
/* 道具 (Tools) */
.p-feature--tools .bg-item-01 {
  bottom: 0;
  left: -2%;
  width: clamp(200px, 25vw, 220px);
}
.p-feature--tools .bg-item-02 {
  top: 20px;
  right: -2%;
  width: clamp(250px, 30vw, 360px);
}
/* 体験 (Experience) */
.p-feature--experience .bg-item-01 {
  bottom: 0;
  left: -2%;
  width: clamp(200px, 25vw, 260px);
}
.p-feature--experience .bg-item-02 {
  top: 20px;
  right: -2%;
  width: clamp(250px, 30vw, 360px);
}
/* 食 (Food) */
.p-feature--food .bg-item-01 {
  bottom: 0;
  left: -2%;
  width: clamp(200px, 25vw, 380px);
}
.p-feature--food .bg-item-02 {
  top: 20px;
  right: -4%;
  width: clamp(250px, 30vw, 360px);
}
/* --- Feature Page Responsive Overrides --- */
@media screen and (max-width: 1024px) {
  /* 固定背景解除 */
  .feature-visual-fix {
    background-attachment: scroll;
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .feature-mv__description {
    text-align: left;
  }
  /* 道具 */
  .p-feature--tools .bg-item-01 {
    width: 160px;
    bottom: 0;
    left: -60px;
  }
  .p-feature--tools .bg-item-02 {
    width: 220px;
    top: 20px;
    right: -80px;
  }
  /* 体験 */
  .p-feature--experience .bg-item-01 {
    width: 200px;
    bottom: 0;
    left: -60px;
  }
  .p-feature--experience .bg-item-02 {
    width: 220px;
    top: 20px;
    right: -80px;
  }
  /* 食 */
  .p-feature--food .bg-item-01 {
    width: 300px;
    bottom: 0;
    left: -60px;
  }
  .p-feature--food .bg-item-02 {
    width: 220px;
    top: 20px;
    right: -80px;
  }
}