@charset "UTF-8";
/*
Theme Name: Vamos
Theme URI: https://vamos.local
Author: あなたの名前
Description: Vamos 公式サイト用の自作テーマ。
Version: 0.1
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: vamos
*/

/* base.css は functions.php 側で先に読み込んでいる。
   このファイルにはレイアウト・コンポーネント固有のスタイルを書く。 */

/* =========================================
   2 カラムレイアウト（メイン + 右サイドバー）
   ========================================= */
.l-content {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 0;
  padding-block: var(--space-16);
  display: grid;
  grid-template-columns: 1fr 304px;
  gap: 52px;
  align-items: start;
}

@media (max-width: 1240px) {
  .l-content {
    padding-inline: var(--container-px);
  }
}

.l-mainContent {
  min-width: 0; /* グリッドアイテムの幅オーバーフロー対策 */
}

/* メインカラム内では .container が二重に padding-inline を入れないようにする
   （既にグリッド側で幅が決まっているため、内側の余白は不要） */
.l-mainContent .container {
  max-width: none;
  padding-inline: 0;
}

.l-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  position: sticky;
  top: calc(var(--space-24) + 16px);
}

.sidebar-widget {
  /* カード背景や枠は付けず、本体背景に馴染ませる */
  padding: 0;
}

.sidebar-widget__title {
  /* 参考に合わせて、薄い下線スタイル（マゼンタの帯ではなくシンプルな見出し） */
  position: relative;
  font-size: var(--fz-base);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-text);
  padding-block: var(--space-2);
  margin: 0 0 var(--space-4);
  border-bottom: 1px solid var(--color-border);
}

.sidebar-widget__title::after {
  /* 40% 幅のキーカラー（マンダリン）強調線 */
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40%;
  height: 2px;
  background: var(--color-key);
}

.sidebar-widget__placeholder {
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--fz-xs);
  padding-block: var(--space-2);
  margin: 0;
}

/* Instagram プレビューグリッド（仮表示用、Smash Balloon 導入後は消える） */
.sidebar-widget__ig-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  margin-bottom: var(--space-2);
}

.sidebar-widget__ig-cell {
  display: block;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-color: var(--color-bg-elevated);
}

/* SNS リンク（黒丸枠アイコン横並び・参考の is-style-circle 風） */
.sidebar-widget__sns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: var(--space-3);
}

.sidebar-widget__sns li {
  display: inline-flex;
  align-items: center;
}

.sidebar-widget__sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-text);
  border-radius: 50%;
  background: transparent;
  color: var(--color-text);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.sidebar-widget__sns a:hover {
  opacity: 0.6;
  transform: translateY(-1px);
}

.sidebar-widget__sns svg {
  width: 14px;
  height: 14px;
  display: block;
}

/* 運営者プロフィール */
.sidebar-widget__profile {
  text-align: center;
}

.sidebar-widget__avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-4);
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-bg-elevated);
}

.sidebar-widget__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sidebar-widget__profile-name {
  font-weight: 700;
  font-size: var(--fz-base);
  margin: 0 0 var(--space-2);
}

.sidebar-widget__profile-bio {
  font-size: var(--fz-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-base);
  margin: 0 0 var(--space-4);
  text-align: left;
}

.sidebar-widget__profile-btn {
  display: inline-block;
  padding: var(--space-2) var(--space-6);
  background: var(--color-text-muted);
  color: #fff;
  border-radius: 40px;
  font-size: var(--fz-sm);
  letter-spacing: 0.05em;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: opacity var(--transition-base);
}

.sidebar-widget__profile-btn:hover {
  opacity: 0.85;
}

/* メイン側のセクションが上下に張り付かないよう、section の padding を抑える */
.l-mainContent .section {
  padding-block: 0 var(--space-12);
}

/* 埋め込みフレーム共通（Google Maps / Calendar など） */
.embed-frame {
  margin: var(--space-6) 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.embed-frame iframe {
  display: block;
  width: 100%;
}

/* マップ専用：Ref と同じく 600×450 で中央寄せ */
.embed-frame--map {
  max-width: 600px;
  margin-inline: auto;
}

/* l-content の前のヒーローは全幅維持。 padding-block を section が引き受けるので 0 で OK */

@media (max-width: 900px) {
  .l-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .l-sidebar {
    position: static;
  }
}


/* =========================================
   上部タグラインバー（マゼンタ全幅・キャッチ文言 + SNS）
   ========================================= */
.site-topbar {
  background: var(--color-key);
  color: #fff;
  padding-block: 0;
}

.site-topbar__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

@media (max-width: 1240px) {
  .site-topbar__inner {
    padding-inline: var(--container-px);
  }
}

.site-topbar__text {
  font-size: var(--fz-sm);
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin: 0;
  flex: 1;
}

.site-topbar__sns {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.site-topbar__sns li {
  display: inline-flex;
  align-items: center;
}

.site-topbar__sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #fff;
  transition: opacity var(--transition-base);
}

.site-topbar__sns a:hover {
  opacity: 0.75;
}

.site-topbar__sns svg {
  display: block;
  width: 18px;
  height: 18px;
}

/* =========================================
   サイトヘッダー
   ========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

/* SNS アイコン列（ヘッダー右側） */
.site-header__sns {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}

/* ハンバーガーボタン（モバイル時のみ表示） */
.site-header__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.site-header__menu-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

/* ドロワー本体（モバイル用） */
.site-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.site-drawer[hidden] { display: none; }

.site-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

.site-drawer.is-open .site-drawer__overlay {
  opacity: 1;
}

.site-drawer__panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(85%, 320px);
  background: var(--color-bg);
  padding: var(--space-12) var(--space-6) var(--space-6);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.25s ease-out;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.site-drawer.is-open .site-drawer__panel {
  transform: translateX(0);
}

.site-drawer__close {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 36px;
  height: 36px;
  font-size: 24px;
  line-height: 1;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--color-text);
}

.site-drawer__menu {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  font-size: var(--fz-base);
}

.site-drawer__menu a {
  display: block;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}

.site-drawer__sns {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.site-drawer__sns a {
  display: block;
  padding: var(--space-3);
  border: 1px solid var(--color-key);
  border-radius: var(--radius-sm);
  text-align: center;
  color: var(--color-key);
  letter-spacing: 0.05em;
}

body.is-drawer-open {
  overflow: hidden;
}

.site-header__sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-key);
  border-radius: 50%;
  color: var(--color-key);
  font-size: var(--fz-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: background var(--transition-base), color var(--transition-base);
}

.site-header__sns a:hover {
  background: var(--color-key);
  color: #fff;
  opacity: 1;
}

.site-header__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  min-height: 72px;
  box-sizing: border-box;
}

@media (max-width: 1240px) {
  .site-header__inner {
    padding-inline: var(--container-px);
  }
}

.site-header__logo {
  margin: 0;
  line-height: 1;
}

.site-header__logo-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.site-header__logo-main {
  font-family: "Pacifico", "Brush Script MT", cursive;
  font-size: 32px;
  color: var(--color-key);
  letter-spacing: 0.02em;
  font-weight: normal;
}

.site-header__logo-sub {
  font-size: 11px;
  color: var(--color-sub);
  letter-spacing: 0.2em;
  margin-top: 4px;
  font-weight: 700;
}

.site-header__logo a:hover {
  opacity: 1;
}

.site-header__logo a:hover .site-header__logo-main {
  opacity: 0.85;
}

.site-header__nav {
  align-self: stretch;
}

.site-header__nav .primary-menu {
  display: flex;
  gap: var(--space-6);
  height: 100%;
  font-size: var(--fz-sm);
  letter-spacing: 0.08em;
}

.site-header__nav .primary-menu li {
  display: flex;
}

.site-header__nav .primary-menu a {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
}

/* ホバー時にマゼンタの 2px 下線が左右に伸びる（参考サイトと同じ scaleX 演出）。
   バーはヘッダー底辺に貼り付く位置（a 要素の最下端 = ヘッダー底）に出る。
   現在ページではバーを出さない（参考サイトもそうしている）。 */
.site-header__nav .primary-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--color-sub);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.site-header__nav .primary-menu a:hover::after {
  transform: scaleX(1);
}

/* ナビ a の global opacity hover を打ち消す（下線演出と二重にならないように） */
.site-header__nav .primary-menu a:hover {
  opacity: 1;
}

.site-header__nav-placeholder {
  color: var(--color-text-muted);
  font-size: var(--fz-sm);
}

/* =========================================
   サイトフッター
   ========================================= */
.site-footer {
  padding-block: var(--space-6);
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  margin-top: var(--space-16);
}

.site-footer__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
  text-align: center;
}

.site-footer__copyright {
  font-size: var(--fz-sm);
  letter-spacing: 0.05em;
  color: var(--color-text);
  margin: 0;
}

/* =========================================
   ヒーロー（FV）
   ========================================= */
.hero {
  position: relative;
  aspect-ratio: 5 / 2;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.55)),
    var(--hero-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

/* ヒーロー画像スライダー（CSS のみで N 枚をクロスフェード） */
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: hero-cycle 25s infinite;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero__slide:nth-child(1) { animation-delay: 0s; }
.hero__slide:nth-child(2) { animation-delay: 5s; }
.hero__slide:nth-child(3) { animation-delay: 10s; }
.hero__slide:nth-child(4) { animation-delay: 15s; }
.hero__slide:nth-child(5) { animation-delay: 20s; }

.hero__slide-caption {
  width: 100%;
  max-width: var(--container-max);
  padding: 0 0 var(--space-6);
  color: #fff;
  font-size: var(--fz-sm);
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
  margin: 0;
  text-align: right;
}

/* 各スライド 5s 表示。前後 2s（全体の 8%）を重ねてクロスフェードさせる */
@keyframes hero-cycle {
  0% { opacity: 0; }
  8% { opacity: 1; }
  20% { opacity: 1; }
  28% { opacity: 0; }
  100% { opacity: 0; }
}

/* インフォバー（ヘッダー下の予約 CTA 帯） */
.site-infobar {
  background: #000;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.site-infobar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,0.06) 0 6px, transparent 6px 12px);
  pointer-events: none;
}

.site-infobar__text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  padding-block: var(--space-2);
  font-size: var(--fz-sm);
  font-weight: 700;
  text-align: center;
  margin: 0;
  position: relative;
  z-index: 1;
}

.site-infobar__button {
  display: inline-block;
  /* Ref のボタン高 23px に合わせるため padding-block を 2px に絞る */
  padding: 2px var(--space-4);
  background: var(--color-sub);
  color: #fff;
  border-radius: 40px;
  font-size: var(--fz-xs);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition:
    background var(--transition-base),
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.site-infobar__button:hover {
  background: var(--color-key);
  opacity: 1;
  transform: translateY(2px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* =========================================
   パンくずリスト（内部ページのみ）
   ========================================= */
.site-breadcrumb {
  font-size: var(--fz-xs);
  color: var(--color-text-muted);
}

.site-breadcrumb__list {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-block: var(--space-3);
  padding-inline: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  list-style: none;
}

@media (max-width: 1240px) {
  .site-breadcrumb__list {
    padding-inline: var(--container-px);
  }
}

.site-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.site-breadcrumb__item + .site-breadcrumb__item::before {
  content: '›';
  color: var(--color-text-muted);
  opacity: 0.6;
}

.site-breadcrumb__item a {
  color: var(--color-text-muted);
}

.site-breadcrumb__item a:hover {
  color: var(--color-key);
  opacity: 1;
}

.site-breadcrumb__item[aria-current="page"] {
  color: var(--color-text);
  font-weight: 500;
}

/* Hero コンテンツ（Vamos 仕様：中央寄せ） */
.hero__content {
  position: relative;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: var(--space-16) var(--container-px);
  color: #fff;
  width: 100%;
  text-align: center;
}

.hero__title {
  font-family: "Pacifico", "Brush Script MT", cursive;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 1;
  font-weight: normal;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  margin-bottom: var(--space-4);
}

.hero__title-sub {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: var(--space-3);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero__lead {
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.08em;
  margin: 0 auto var(--space-8);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.8;
  max-width: 580px;
}

.hero__cta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
}

/* Hero 内ボタンのゴースト系（Vamos プロトタイプ準拠） */
.hero__cta .button--ghost {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  backdrop-filter: blur(4px);
}

.hero__cta .button--ghost:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  opacity: 1;
}

/* =========================================
   ホーム特集（イベントカルーセル + Vamos 紹介ボックス）
   Hero 直下、l-mainContent の先頭に配置
   ========================================= */
.home-feature {
  margin-bottom: var(--space-12);
}

/* 横並びカルーセル: 1スライド = サムネ + 日時タイトル */
.home-events-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-3);
  margin-bottom: var(--space-6);
  scrollbar-width: thin;
  scrollbar-color: var(--color-key) transparent;
}

.home-events-carousel::-webkit-scrollbar {
  height: 6px;
}
.home-events-carousel::-webkit-scrollbar-thumb {
  background: var(--color-key);
  border-radius: 3px;
}
.home-events-carousel::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}

.home-events-carousel__track {
  display: flex;
  gap: var(--space-3);
  width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-events-carousel__slide {
  flex: 0 0 200px;
  scroll-snap-align: start;
}

.home-events-carousel__link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition-base);
}

.home-events-carousel__link:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.home-events-carousel__thumb {
  aspect-ratio: 16 / 9;
  background: var(--color-bg-elevated);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.home-events-carousel__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-events-carousel__title {
  font-size: var(--fz-xs);
  font-weight: 600;
  line-height: 1.4;
  margin: var(--space-2) 0 0;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Vamos 紹介ボックス（参考サイト .swell-block-capbox と同じ構造）
   タイトル帯（キーカラー塗り）+ 本文枠（薄グレー背景 + キーカラー枠線、タイトルと -2px で重ね接続） */
.home-feature-box {
  background: transparent;
  border: 0;
  border-radius: 0;
}

.home-feature-box__title {
  background: var(--color-sub);
  color: #fff;
  padding: 8px;
  font-size: var(--fz-base);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
  border-radius: 2px 2px 0 0;
  line-height: 1.5;
}

.home-feature-box__body {
  background: #F2F2F2;
  border: 1px solid var(--color-sub);
  border-radius: 0 0 2px 2px;
  padding: 24px;
  margin-top: -2px;
}

.home-feature-box__body p {
  margin: 0 0 var(--space-3);
  font-size: var(--fz-base);
  line-height: 1.8;
  color: var(--color-text);
}

.home-feature-box__body p:last-of-type {
  margin-bottom: var(--space-4);
}

.home-feature-box__actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.home-feature-box__actions a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px 4px 8px;
  background: var(--color-sub);
  color: #fff;
  border: 1px solid var(--color-sub);
  border-radius: 100px;
  font-size: var(--fz-sm);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition:
    background var(--transition-base),
    border-color var(--transition-base),
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

/* 矢印アイコン（参考サイトの swl-svg-arrowCircleRight 相当を SVG で再現） */
.home-feature-box__actions a::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='10.5' fill='none' stroke='white' stroke-width='1.6'/><path d='M10.5 8 L14.5 12 L10.5 16' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}

.home-feature-box__actions a:hover {
  background: var(--color-key);
  border-color: var(--color-key);
  color: #fff;
  opacity: 1;
  transform: translateY(2px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* =========================================
   イベントカードのグリッド
   ========================================= */
/* Ref と同じく 1列縦リスト、各行は thumb 左 + body 右の横並び */
.event-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.event-card {
  position: relative; /* stretched link（タイトル a::after）の基準 */
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--color-sub);
  background: transparent;
  transition: opacity var(--transition-base), background var(--transition-base);
}

.event-card:hover {
  opacity: 1;
  background: rgba(63, 184, 200, 0.08);  /* ターコイズの薄い tint */
}

.event-card__thumb {
  flex: 0 0 160px;
  width: 160px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-bg-elevated);
  border-radius: var(--radius-sm);
}

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

.event-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-top: var(--space-1);
}

.event-card__category {
  font-size: var(--fz-xs);
  letter-spacing: 0.1em;
  color: var(--color-sub);
  text-transform: uppercase;
}

.event-card__title {
  font-size: var(--fz-base);
  font-weight: 600;
  line-height: var(--lh-tight);
}

/* タイトルのリンクをカード全体に広げ、どこを押しても遷移できるようにする */
.event-card__title a::after {
  content: '';
  position: absolute;
  inset: 0;
}

.event-card__excerpt {
  font-size: var(--fz-sm);
  color: var(--color-text-muted);
  /* 1行に省略 */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* モバイル時は thumb を少し小さく */
@media (max-width: 600px) {
  .event-card__thumb {
    flex-basis: 96px;
    width: 96px;
  }
}

/* =========================================
   お問い合わせ（LINE / Instagram）
   ========================================= */
.contact {
  text-align: center;
}

.contact__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.contact__buttons .button {
  min-width: 220px;
  padding-block: var(--space-4);
  font-size: var(--fz-base);
}

/* 画像貼り方式のお問い合わせカード */
.contact__cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-top: var(--space-6);
}

.contact__card {
  display: block;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.contact__card:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.contact__card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

@media (min-width: 600px) {
  .contact__cards {
    /* 画面幅に応じて横並びも検討。デフォルトは縦並びで読みやすさ優先 */
    gap: var(--space-8);
  }
}

/* =========================================
   個別記事（single-event）
   ========================================= */
.event-single {
  max-width: 820px;
  margin-inline: auto;
  padding-inline: var(--container-px);
  padding-block: var(--space-20);
}

.event-single__thumb {
  aspect-ratio: 16 / 9;
  margin-bottom: var(--space-8);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.event-single__title {
  font-size: var(--fz-3xl);
  margin-bottom: var(--space-6);
}

.event-single__meta {
  font-size: var(--fz-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}

.event-single__content {
  font-size: var(--fz-base);
  line-height: var(--lh-loose);
}

.event-single__content p {
  margin-bottom: var(--space-4);
}

/* =========================================
   レスポンシブ調整
   ========================================= */
@media (max-width: 900px) {
  /* モバイル: ヘッダー横ナビ＆SNSを隠し、ハンバーガーを表示 */
  .site-header__nav--pc,
  .site-header__sns--pc {
    display: none;
  }

  .site-header__menu-toggle {
    display: inline-flex;
  }

  .site-header__inner {
    padding: var(--space-3) var(--container-px);
    gap: var(--space-3);
  }

  .section {
    padding-block: var(--space-12);
  }

  /* ヒーローはモバイルでアスペクト比を解除して高さで指定 */
  .hero {
    aspect-ratio: auto;
    min-height: 60vh;
  }

  .hero__title {
    font-size: var(--fz-2xl);
  }
}

@media (min-width: 901px) {
  /* PC: ドロワーは使わない（ハンバーガーは隠す） */
  .site-header__menu-toggle,
  .site-drawer {
    display: none !important;
  }
}
