/*
Theme Name: OSAKA Plus
Theme URI: https://osaka-plus.jp
Author: OSAKA Plus
Author URI: https://osaka-plus.jp
Description: OSAKA Plus ビジネスマッチング交流会 オリジナルテーマ
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: osakaplus
Tags: business, japanese, custom-menu, custom-logo, featured-images
*/

/* ============================================
   CSS Custom Properties
============================================ */
:root {
  --primary: #ed7d15;
  --primary-dark: #d46a08;
  --primary-light: #f5a858;
  --primary-bg: #fef7f0;
  --primary-bg-subtle: #fff9f3;
  --dark: #1a1a1a;
  --dark-medium: #2d2d2d;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --text-lighter: #aaaaaa;
  --border: #e5e5e5;
  --border-light: #f0f0f0;
  --bg-white: #ffffff;
  --bg-light: #f8f8f8;
  --bg-section: #fafafa;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --font-ja: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-en: "Inter", "Noto Sans JP", sans-serif;
  --max-width: 1200px;
  --section-padding: 120px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: var(--font-ja);
  color: var(--text);
  line-height: 1.8;
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Header
============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  width: auto;
  height: 36px;
}

.logo-img--footer {
  height: 32px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.03em;
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.nav-desktop a:hover {
  color: var(--primary);
}

/* メンバー特典 — 目立つバッジ（header-actions 内） */
a.nav-member-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 18px;
  background: var(--primary-bg);
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 100px;
  border: 1px solid rgba(237, 125, 21, 0.3);
  transition: var(--transition);
}

a.nav-member-badge svg {
  flex-shrink: 0;
}

a.nav-member-badge:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(237, 125, 21, 0.3);
}

a.nav-member-badge:hover svg {
  stroke: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-ja);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff !important;
  text-align: center;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(237, 125, 21, 0.35);
}

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

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

.btn-white {
  background: #fff;
  color: var(--primary);
}

.btn-white:hover {
  background: var(--primary-bg);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.header-cta {
  padding: 10px 24px;
  font-size: 0.8125rem;
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  padding: 40px 24px;
  z-index: 999;
  overflow-y: auto;
}

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

.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav a.mobile-nav-member {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
}

.mobile-nav a.mobile-nav-member svg {
  flex-shrink: 0;
}

.mobile-nav .btn {
  margin-top: 24px;
  width: 100%;
}

/* ============================================
   Hero Section
============================================ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #f7f6f4;
  padding-top: 80px;
  overflow: hidden;
}

.hero-inner {
  flex: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px 40px 0;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 10px 40px;
  align-items: center;
}

/* Left: text */
.hero-text {
  position: relative;
  z-index: 2;
}

.hero-title {
  margin-bottom: 24px;
  line-height: 1;
}

.hero-logo {
  width: 100%;
  max-width: 480px;
  height: auto;
}

/* 英語サブタイトル */
.hero-sub {
  font-family: var(--font-en);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* 日本語キャッチ */
.hero-catchcopy {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.18em;
  margin-bottom: 20px;
  padding-left: 4px;
}

/* リード文 */
.hero-lead {
  font-size: 0.9375rem;
  line-height: 2.2;
  color: var(--text-light);
  font-weight: 400;
  letter-spacing: 0.03em;
  padding-left: 4px;
}

/* 参加案内 */
.hero-welcome {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--primary);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 100px;
  grid-column: 1;
}

.hero-welcome svg {
  flex-shrink: 0;
}

/* 禁止事項 */
.hero-notice {
  margin-top: 8px;
  padding: 10px 16px;
  background: rgba(237, 125, 21, 0.08);
  border-left: 3px solid var(--primary);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  grid-column: 1;
}

/* Right: collage */
.hero-collage {
  position: relative;
  height: 420px;
  margin-right: -40px;
  grid-column: 2;
  grid-row: 1 / -1;
  top: 90px;
}

/* Decorative accent — orange circle */
.hero-collage__accent {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.10;
  top: -24px;
  right: 8%;
  z-index: 0;
}

/* Decorative dots */
.hero-collage__dot {
  position: absolute;
  width: 72px;
  height: 72px;
  bottom: 24px;
  left: 18%;
  z-index: 0;
  background-image: radial-gradient(var(--primary) 2px, transparent 2px);
  background-size: 12px 12px;
  opacity: 0.2;
}

.hero-collage__item {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}

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

/* Photo 1 — main, top-right (交流風景) */
.hero-collage__item--1 {
  width: 60%;
  aspect-ratio: 4 / 3;
  top: 0;
  right: 0;
  z-index: 1;
}

/* Photo 2 — medium, bottom-left (交流会全体) */
.hero-collage__item--2 {
  width: 50%;
  aspect-ratio: 3 / 2;
  bottom: 0;
  left: 6%;
  z-index: 2;
}

/* Photo 3 — small square, top-left (名刺交換) */
.hero-collage__item--3 {
  width: 28%;
  aspect-ratio: 1 / 1;
  top: 2%;
  left: 0;
  z-index: 3;
}

/* Photo 4 — small square, bottom-right (握手) */
.hero-collage__item--4 {
  width: 26%;
  aspect-ratio: 1 / 1;
  bottom: 6%;
  right: 4%;
  z-index: 4;
}

/* 下部エリア */
.hero-bottom {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 40px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* お知らせ */
.hero-news {
  max-width: 640px;
}

.hero-news-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-decoration: none;
  color: var(--text);
}

.hero-news-inner:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.hero-news-badge {
  flex-shrink: 0;
  display: inline-block;
  padding: 4px 10px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-en);
  font-size: 0.5625rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-news-date {
  flex-shrink: 0;
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.hero-news-text {
  flex: 1;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-news-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: var(--transition);
}

.hero-news-arrow svg {
  width: 14px;
  height: 14px;
}

.hero-news-inner:hover .hero-news-arrow {
  color: var(--primary);
  transform: translateX(3px);
}

/* お知らせスライダー */
.hero-news-slider {
  position: relative;
  max-width: 640px;
}

.hero-news-slide {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: opacity 0.5s ease, border-color 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: var(--text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
}

.hero-news-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.hero-news-slide:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.hero-news-slide:hover .hero-news-arrow {
  color: var(--primary);
  transform: translateX(3px);
}

.hero-news-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.hero-news-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.hero-news-dot.active {
  background: var(--primary);
  transform: scale(1.25);
}

.hero-news-dot:hover {
  background: var(--primary-light, var(--primary));
}

/* スクロール */
.hero-scroll {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-scroll-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--text-muted);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { opacity: 0; transform: scaleX(0); transform-origin: left; }
  30% { opacity: 1; transform: scaleX(1); transform-origin: left; }
  70% { opacity: 1; transform: scaleX(1); transform-origin: right; }
  100% { opacity: 0; transform: scaleX(0); transform-origin: right; }
}

.hero-scroll-text {
  font-family: var(--font-en);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   Schedule Section
============================================ */
.schedule {
  position: relative;
  padding: 100px 0;
  background: var(--bg-white);
}

.schedule::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

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

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 32px;
  }
}

.section-label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.9;
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto 48px;
}

a.schedule-card {
  text-decoration: none;
  color: inherit;
}

.schedule-card {
  display: grid;
  grid-template-columns: 200px 140px 1fr;
  align-items: center;
  gap: 32px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 36px 20px 20px;
  transition: var(--transition);
}

/* Schedule Thumbnail */
.schedule-thumb {
  width: 200px;
  aspect-ratio: 659 / 438;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-light);
  position: relative;
}

.schedule-category {
  position: absolute;
  top: 8px;
  left: 8px;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  z-index: 1;
}

.schedule-card--closed,
.schedule-card--past {
  opacity: 0.6;
}

.schedule-card--closed .schedule-thumb::after,
.schedule-card--past .schedule-thumb::after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius-md);
}

.schedule-card--closed .schedule-thumb::after {
  content: "受付終了";
  font-size: 0.875rem;
}

.schedule-card--past .schedule-thumb::after {
  content: "ご来場ありがとうございました";
  font-size: 0.75rem;
  padding: 0 8px;
  text-align: center;
}

.schedule-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.schedule-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(237,125,21,0.1);
  transform: translateY(-2px);
}

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

.schedule-year {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.schedule-monthday {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.schedule-month {
  font-family: var(--font-en);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}

.schedule-sep {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-muted);
  margin: 0 2px;
}

.schedule-day {
  font-family: var(--font-en);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}

.schedule-weekday {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

.schedule-info .schedule-status {
  margin-bottom: 8px;
}

.schedule-info h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .schedule-info h3 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
} 

.schedule-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .schedule-meta {
    gap: 8px;
  }
}

.schedule-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--text-light);
}

.schedule-meta svg {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
}

.schedule-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.status-open {
  background: var(--primary);
  color: #fff;
}

.status-open::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: status-pulse 1.5s ease-in-out infinite;
}

@keyframes status-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.status-few {
  background: #c0392b;
  color: #fff;
}

.status-few::before {
  content: "!";
  font-weight: 800;
  font-size: 0.75rem;
}

.status-closed {
  background: var(--bg-light);
  color: var(--text-muted);
}

.status-past {
  background: var(--bg-light);
  color: var(--text-muted);
}

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

/* ============================================
   About Section
============================================ */
.about {
  padding: var(--section-padding) 0;
  background: var(--bg-section);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  aspect-ratio: 4/3;
}

.about-image__main {
  position: relative;
  width: 85%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 1;
}

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

.about-image__sub {
  position: absolute;
  bottom: -24px;
  right: -16px;
  width: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--bg-section);
  z-index: 2;
}

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

.about-content .section-label {
  text-align: left;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.about-text {
  font-size: 1rem;
  line-height: 2;
  color: var(--text-light);
  margin-bottom: 32px;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-point-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.about-point-icon svg {
  width: 12px;
  height: 12px;
  color: #fff;
}

.about-point p {
  font-size: 0.9375rem;
  color: var(--text);
  font-weight: 500;
}

/* ============================================
   Message Section（代表・顧問挨拶）
============================================ */
.message {
  padding: var(--section-padding) 0;
  background: var(--bg-section);
}

.message-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.message-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-section);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.message-card__photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--border-light);
}

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

.message-card__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.message-card__body {
  padding: 32px;
}

.message-card__role {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.message-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.message-card__text {
  font-size: 0.9375rem;
  line-height: 2;
  color: var(--text-light);
}

/* ============================================
   Features Section
============================================ */
.features {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  padding: 48px 36px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  text-align: center;
}



.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  background: var(--primary-bg);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.85;
}

/* ============================================
   Numbers Section
============================================ */
.numbers {
  padding: 80px 0;
  background: linear-gradient(160deg, #1a1a1a 0%, #2d2d2d 100%);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.number-item {
  text-align: center;
  color: #fff;
}

.number-value {
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 8px;
}

.number-value span {
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}

.number-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

/* ============================================
   Voice Section
============================================ */
.voice {
  padding: var(--section-padding) 0;
  background: var(--bg-section);
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.voice-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}


.voice-rating {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
}

.voice-rating svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  fill: var(--primary);
}

.voice-text {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 24px;
}

.voice-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.voice-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.875rem;
}

.voice-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
}

.voice-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================
   Flow Section
============================================ */
.flow {
  padding: var(--section-padding) 0;
  background: var(--bg-section);
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.flow-step {
  text-align: center;
  position: relative;
}

.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 36px;
  right: -12px;
  width: 24px;
  height: 2px;
  background: var(--border);
}

.flow-number {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  border: 2px solid rgba(237,125,21,0.2);
  transition: var(--transition);
}

.flow-step:hover .flow-number {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.flow-step h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.flow-step p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ============================================
   Pricing Section
============================================ */
.pricing {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}

.pricing-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-section);
}

.pricing-main {
  padding: 48px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pricing-main__label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.pricing-main__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-main__number {
  font-family: var(--font-en);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.pricing-main__unit {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

.pricing-main__unit small {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-main__line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 24px;
  background: #06c755;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 100px;
}

.pricing-main__line svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.pricing-main__line strong {
  font-size: 1.125rem;
}

.pricing-includes {
  padding: 48px 40px;
  background: var(--bg-white);
  border-left: 1px solid var(--border);
}

.pricing-includes__title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.pricing-includes__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  font-size: 0.9375rem;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
}

.pricing-includes__list li:last-child {
  border-bottom: none;
}

.pricing-includes__list svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.pricing-cta {
  text-align: center;
  margin-top: 40px;
}

/* ============================================
   FAQ Section
============================================ */
.faq {
  padding: var(--section-padding) 0;
  background: var(--bg-section);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-ja);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  line-height: 1.6;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-light);
  margin-left: 16px;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 0 28px;
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--text-light);
}

/* ============================================
   CTA Section
============================================ */
.cta {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.cta-text {
  font-size: 1rem;
  line-height: 1.9;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   Company Section
============================================ */
.company {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}

.company-table {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-white);
}

.company-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--border-light);
}

.company-row:last-child {
  border-bottom: none;
}

.company-row dt {
  padding: 20px 32px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  background: var(--bg-section);
  display: flex;
  align-items: center;
}

.company-row dd {
  padding: 20px 32px;
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.8;
}

.company-row--action {
  border-bottom: none;
}

.company-row--action dt {
  background: transparent;
}

.company-row--action dd {
  padding-top: 12px;
  padding-bottom: 28px;
}

/* ============================================
   Fixed CTA
============================================ */
.fixed-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  gap: 12px;
  align-items: center;
}

.fixed-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--primary);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(237, 125, 21, 0.4);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.fixed-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.fixed-cta:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 28px rgba(237, 125, 21, 0.5);
}

.fixed-cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.fixed-member {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 14px 24px;
  background: var(--bg-white);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 100px;
  text-decoration: none;
  border: 2px solid var(--primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.fixed-member.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.fixed-member:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 28px rgba(237, 125, 21, 0.3);
}

.fixed-member svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ============================================
   Footer
============================================ */
.footer {
  background: var(--bg-white);
  color: var(--text-light);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-light);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--text-light);
}

.footer-heading {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-light);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  font-size: 0.8125rem;
  color: var(--text-lighter);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8125rem;
  color: var(--text-lighter);
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ============================================
   Responsive
============================================ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .hero-inner {
    gap: 28px;
    padding: 40px 32px 0;
  }

  .hero-logo {
    max-width: 340px;
  }

  .hero-collage {
    height: 360px;
    margin-right: -20px;
    top: 0px;
  }

  .hero-collage__accent {
    width: 120px;
    height: 120px;
    top: -16px;
  }

  .hero-collage__dot {
    width: 56px;
    height: 56px;
  }

  .hero-bottom {
    padding: 24px 32px 28px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }

  .voice-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .flow-step::after {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
  }

  .nav-desktop {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .header-inner {
    height: 64px;
  }

  .mobile-nav {
    top: 64px;
    height: 100vh;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 20px 0;
  }

  .hero-logo {
    max-width: 260px;
  }

  .hero-sub {
    font-size: 0.5625rem;
    letter-spacing: 0.18em;
    margin-bottom: 12px;
  }

  .hero-catchcopy {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
  }

  .hero-lead {
    font-size: 0.8125rem;
    line-height: 2;
  }

  .hero-lead br {
    display: none;
  }

  .hero-collage {
    height: auto;
    aspect-ratio: 16 / 10;
    margin-right: 0;
    margin-left: 0;
    grid-column: auto;
    grid-row: auto;
  }

  .hero-welcome {
    grid-column: auto;
    margin-top: 0;
    font-size: 0.8125rem;
  }

  .hero-notice {
    grid-column: auto;
    margin-top: 0;
    font-size: 0.75rem;
  }

  .hero-collage__accent {
    width: 100px;
    height: 100px;
    top: -12px;
    right: 5%;
  }

  .hero-collage__dot {
    width: 44px;
    height: 44px;
    bottom: 16px;
    left: 16%;
  }

  .hero-collage__item--1 {
    width: 58%;
    top: 0;
    right: 0;
  }

  .hero-collage__item--2 {
    width: 48%;
    bottom: 0;
    left: 4%;
  }

  .hero-collage__item--3 {
    width: 26%;
    top: 2%;
    left: 0;
  }

  .hero-collage__item--4 {
    width: 24%;
    bottom: 5%;
    right: 3%;
  }

  .hero-bottom {
    padding: 20px 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-news {
    max-width: 100%;
  }

  .hero-news-inner {
    flex-wrap: wrap;
    gap: 8px;
  }

  .hero-news-date {
    display: none;
  }

  .hero-news-text {
    flex: 1 1 100%;
    order: 3;
    white-space: normal;
    font-size: 0.75rem;
  }

  .hero-news-arrow {
    order: 2;
    margin-left: auto;
  }

  .hero-scroll {
    display: none;
  }

  .fixed-buttons {
    bottom: 16px;
    right: 16px;
    left: 16px;
    gap: 8px;
  }

  .fixed-cta {
    padding: 12px 16px;
    font-size: 0.8125rem;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    flex: 1;
    justify-content: center;
  }

  .fixed-member {
    display: inline-flex;
    padding: 12px 16px;
    font-size: 0.8125rem;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    flex: 1;
    justify-content: center;
  }

  .schedule-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }

  .schedule-thumb {
    width: 100%;
  }

  .schedule-date {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 12px;
  }

  .schedule-monthday {
    gap: 2px;
  }

  .schedule-month,
  .schedule-day {
    font-size: 1.75rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    max-width: 480px;
    margin: 0 auto;
  }

  .about-image__sub {
    bottom: -16px;
    right: -8px;
  }

  .message-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .message-card__body {
    padding: 24px;
  }

  .message-card__name {
    font-size: 1.125rem;
    margin-bottom: 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .voice-grid {
    grid-template-columns: 1fr;
  }

  .flow-steps {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .pricing-block {
    grid-template-columns: 1fr;
  }

  .pricing-includes {
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .pricing-main {
    padding: 40px 24px;
  }

  .pricing-includes {
    padding: 32px 24px;
  }

  .pricing-main__number {
    font-size: 3rem;
  }

  .company-row {
    grid-template-columns: 1fr;
  }

  .company-row dt {
    padding: 16px 24px 8px;
  }

  .company-row dd {
    padding: 8px 24px 16px;
  }

  .section-title {
    font-size: 1.625rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ============================================
   Utility Classes
============================================ */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }

/* ============================================
   Event Detail Page
============================================ */

/* Breadcrumb */
.breadcrumb {
  padding-top: 96px;
  padding-bottom: 16px;
  background: var(--bg-section);
  border-bottom: 1px solid var(--border-light);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  list-style: none;
}

.breadcrumb-list li:not(:last-child)::after {
  content: '>';
  margin-left: 8px;
  color: var(--text-muted);
}

.breadcrumb-list a {
  color: var(--text-light);
}

.breadcrumb-list a:hover {
  color: var(--primary);
}

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

/* Event Detail Header */
.ed-header {
  padding: 48px 0 56px;
  background: var(--bg-section);
  text-align: center;
}

.ed-header .schedule-status {
  margin-bottom: 20px;
}

.ed-header__eyecatch {
  max-width: 800px;
  margin: 32px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.ed-header__eyecatch img {
  width: 100%;
  height: auto;
  display: block;
}

.ed-header__action {
  text-align: center;
  margin-top: 32px;
}

.ed-header__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin-bottom: 28px;
}

.ed-header__date {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.ed-header__date-year {
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.ed-header__date-main {
  font-family: var(--font-en);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.ed-header__date-weekday {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

/* Event Detail Section */
.ed-section {
  padding: 80px 0;
  background: var(--bg-section);
}

.ed-section--white {
  background: var(--bg-white);
}

/* Event Detail Table (reuses .company-row) */
.ed-table {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-white);
}

/* Event Content */
.ed-content {
  max-width: 800px;
  margin: 0 auto;
}

.ed-content p {
  font-size: 1rem;
  line-height: 2;
  color: var(--text-light);
  margin-bottom: 20px;
}

.ed-content p:last-child {
  margin-bottom: 0;
}

/* Timetable */
.ed-timetable {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.ed-timetable__item {
  display: flex;
  gap: 28px;
  padding-bottom: 36px;
  position: relative;
}

.ed-timetable__item::before {
  content: '';
  position: absolute;
  left: 39px;
  top: 28px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.ed-timetable__item--last::before {
  display: none;
}

.ed-timetable__time {
  flex-shrink: 0;
  width: 80px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-en);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 100px;
  position: relative;
  z-index: 1;
}

.ed-timetable__body h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
  padding-top: 6px;
}

.ed-timetable__body p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* Pricing Cards (Event Detail) */
/* LINE badge in overview table */
.ed-line-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 12px;
  padding: 5px 14px;
  background: #06c755;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 100px;
  vertical-align: middle;
}

.ed-line-badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.ed-line-badge strong {
  font-size: 0.9375rem;
}

/* Venue */
.ed-venue {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

.ed-venue__info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.ed-venue__address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 24px;
}

.ed-venue__address svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--primary);
  margin-top: 2px;
}

.ed-venue__access h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.ed-venue__access ul {
  list-style: none;
}

.ed-venue__access li {
  position: relative;
  padding-left: 16px;
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.8;
}

.ed-venue__access li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.ed-venue__map-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg-light);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.ed-venue__map-placeholder svg {
  width: 32px;
  height: 32px;
}

/* Notes */
.ed-notes {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ed-notes__item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--bg-section);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.ed-notes__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-bg);
  border-radius: var(--radius-md);
}

.ed-notes__icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.ed-notes__item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.ed-notes__item p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.8;
}

.ed-notes__item ul {
  list-style: none;
}

.ed-notes__item li {
  position: relative;
  padding-left: 16px;
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.8;
}

.ed-notes__item li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  background: var(--text-muted);
  border-radius: 50%;
}

/* CTA */
.ed-cta {
  padding: 80px 0;
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.ed-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.ed-cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.ed-cta__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.ed-cta__text {
  font-size: 1rem;
  line-height: 1.9;
  opacity: 0.9;
  margin-bottom: 32px;
}

.ed-cta__sub {
  margin-top: 16px;
  font-size: 0.8125rem;
  opacity: 0.7;
}

/* Highlight variant — bigger padding, pulsing button */
.ed-cta--highlight {
  padding: 100px 0;
}

.ed-cta--highlight .ed-cta__title {
  font-size: 2rem;
}

.ed-cta__btn {
  padding: 20px 56px;
  font-size: 1.125rem;
  border-radius: var(--radius-lg);
  animation: cta-pulse 2s ease-in-out infinite;
}

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2); }
  50% { box-shadow: 0 8px 40px rgba(255, 255, 255, 0.45); transform: translateY(-2px); }
}

/* Overview action button */
.ed-overview-action {
  text-align: center;
  margin-top: 40px;
}

/* Back Link */
.ed-back {
  padding: 48px 0;
  background: var(--bg-white);
}

.ed-back__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-light);
}

.ed-back__link svg {
  width: 18px;
  height: 18px;
  transition: var(--transition);
}

.ed-back__link:hover {
  color: var(--primary);
}

.ed-back__link:hover svg {
  transform: translateX(-4px);
}

/* ============================================
   Event Detail Responsive
============================================ */
@media (max-width: 768px) {
  .breadcrumb {
    padding-top: 80px;
    padding-bottom: 12px;
  }

  .breadcrumb-list {
    font-size: 0.75rem;
    flex-wrap: wrap;
  }

  .ed-header {
    padding: 32px 0 40px;
  }

  .ed-header__title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .ed-header__date-main {
    font-size: 2.5rem;
  }

  .ed-section {
    padding: 56px 0;
  }

  .ed-timetable__item {
    gap: 16px;
  }

  .ed-timetable__time {
    width: 64px;
    font-size: 0.8125rem;
  }

  .ed-timetable__item::before {
    left: 31px;
  }

  .ed-line-badge {
    display: flex;
    margin-left: 0;
    margin-top: 8px;
    width: fit-content;
  }

  .ed-venue {
    grid-template-columns: 1fr;
  }

  .ed-cta__title {
    font-size: 1.375rem;
  }

  .ed-cta--highlight {
    padding: 64px 0;
  }

  .ed-cta__btn {
    padding: 16px 36px;
    font-size: 1rem;
  }

  .ed-notes__item {
    flex-direction: column;
    gap: 12px;
  }
}

/* ============================================
   Event List Page
============================================ */

/* Page Header */
.el-page-header {
  padding: 48px 0 56px;
  background: var(--bg-section);
  text-align: center;
}

.el-page-header .section-desc br {
  display: none;
}

/* Section */
.el-section {
  padding: 64px 0 100px;
  background: var(--bg-white);
}

/* Grid */
.el-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Card */
.el-card {
  display: block;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.el-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 28px rgba(237, 125, 21, 0.12);
  transform: translateY(-4px);
}

/* Card Image */
.el-card__image {
  position: relative;
  aspect-ratio: 659 / 438;
  overflow: hidden;
  background: var(--bg-light);
}

.el-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

/* Category Badge */
.el-card__category {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 14px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
  z-index: 1;
}

/* Card Date Block */
.el-card__date {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px 0;
  color: var(--dark);
}

.el-card__date-main {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.el-card__date-month,
.el-card__date-day {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
}

.el-card__date-month small,
.el-card__date-day small {
  font-family: var(--font-ja);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  margin-left: 1px;
}

.el-card__date-sep {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--border);
  margin: 0 2px;
}

.el-card__date-sub {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.el-card__date-year {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.2;
}

.el-card__date-weekday {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.2;
}

/* Card Body */
.el-card__body {
  padding: 12px 24px 24px;
}

/* Status on Card */
.el-card__status {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 0.6875rem;
  padding: 4px 12px;
}

/* Closed / Past card overlay */
.el-card--closed,
.el-card--past {
  opacity: 0.65;
}

.el-card--closed .el-card__image::after,
.el-card--past .el-card__image::after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
  z-index: 2;
}

.el-card--closed .el-card__image::after {
  content: "受付終了";
  font-size: 1.25rem;
}

.el-card--past .el-card__image::after {
  content: "ご来場ありがとうございました";
  font-size: 0.9375rem;
  padding: 0 16px;
  text-align: center;
}

/* Title */
.el-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 16px;
}

/* Meta */
.el-card__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.el-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--text-light);
}

.el-card__meta svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  color: var(--text-muted);
}

/* Link */
.el-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}

.el-card__link svg {
  width: 16px;
  height: 16px;
  transition: var(--transition);
}

.el-card:hover .el-card__link svg {
  transform: translateX(4px);
}

/* ============================================
   Event List Responsive
============================================ */
@media (max-width: 1024px) {
  .el-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .el-page-header {
    padding: 32px 0 40px;
  }

  .el-section {
    padding: 40px 0 64px;
  }

  .el-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ============================================
   News Detail Page (nd)
============================================ */
.nd {
  padding: 48px 0 80px;
  background: var(--bg-white);
}

.nd-wrap {
  max-width: 800px;
  margin: 0 auto;
}

/* Header */
.nd-header {
  margin-bottom: 32px;
}

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

.nd-header__date {
  font-family: var(--font-en);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.nd-header__category {
  display: inline-block;
  padding: 4px 14px;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
}

.nd-header__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* Body — rich text area */
.nd-body {
  margin-bottom: 48px;
}

.nd-body p {
  font-size: 1rem;
  line-height: 2;
  color: var(--text);
  margin-bottom: 24px;
}

.nd-body p:last-child {
  margin-bottom: 0;
}

.nd-body strong {
  font-weight: 600;
  color: var(--dark);
}

.nd-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 48px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  letter-spacing: 0.02em;
}

.nd-body h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark);
  margin-top: 36px;
  margin-bottom: 16px;
}

.nd-body ul,
.nd-body ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.nd-body ul {
  list-style: disc;
}

.nd-body ol {
  list-style: decimal;
}

.nd-body li {
  font-size: 1rem;
  line-height: 2;
  color: var(--text);
  margin-bottom: 4px;
}

.nd-body img {
  border-radius: var(--radius-md);
  margin: 32px 0;
}

/* Table inside body */
.nd-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.nd-table th,
.nd-table td {
  padding: 16px 20px;
  font-size: 0.9375rem;
  line-height: 1.7;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.nd-table th {
  width: 140px;
  font-weight: 600;
  color: var(--dark);
  background: var(--bg-section);
  white-space: nowrap;
}

.nd-table td {
  color: var(--text);
}

.nd-table tr:last-child th,
.nd-table tr:last-child td {
  border-bottom: none;
}

/* Notice box */
.nd-notice {
  padding: 24px;
  background: var(--primary-bg);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 32px 0;
}

.nd-notice p {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 0;
}

/* CTA box inside body */
.nd-cta-box {
  text-align: center;
  padding: 40px 0;
}

/* Share */
.nd-share {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}

.nd-share__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-light);
  white-space: nowrap;
}

.nd-share__buttons {
  display: flex;
  gap: 10px;
}

.nd-share__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  transition: var(--transition);
}

.nd-share__btn:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.nd-share__btn svg {
  width: 18px;
  height: 18px;
}

.nd-share__btn--x {
  background: #000;
}

.nd-share__btn--facebook {
  background: #1877f2;
}

.nd-share__btn--line {
  background: #06c755;
}

/* Back */
.nd-back {
  padding-top: 0;
}

/* ============================================
   News Detail Responsive
============================================ */
@media (max-width: 768px) {
  .nd {
    padding: 32px 0 56px;
  }

  .nd-header__title {
    font-size: 1.375rem;
  }

  .nd-body h2 {
    font-size: 1.125rem;
    margin-top: 36px;
  }

  .nd-table th {
    width: 100px;
    padding: 12px 14px;
    font-size: 0.8125rem;
  }

  .nd-table td {
    padding: 12px 14px;
    font-size: 0.875rem;
  }

  .nd-share {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ============================================
   News / Blog Section (Top Page)
============================================ */
.news-blog {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}

.news-blog-list {
  max-width: 900px;
  margin: 0 auto 48px;
  border-top: 1px solid var(--border);
}

.news-blog-item {
  display: grid;
  grid-template-columns: 100px auto 1fr 24px;
  align-items: center;
  gap: 16px;
  padding: 24px 16px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
}

.news-blog-item__date {
  font-family: var(--font-en);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.news-blog-item__category {
  display: inline-block;
  padding: 3px 12px;
  background: var(--primary);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-align: center;
}

.news-blog-item__category--report {
  background: #3b82f6;
}

.news-blog-item__category--important {
  background: #c0392b;
}

.news-blog-item__title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.6;
}

.news-blog-item__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.news-blog-item__arrow svg {
  width: 16px;
  height: 16px;
}

.news-blog-bottom {
  text-align: center;
}

/* News / Blog Section Responsive */
@media (max-width: 768px) {
  .news-blog-item {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 8px 12px;
    padding: 20px 12px;
  }

  .news-blog-item__date {
    font-size: 0.8125rem;
    grid-row: 1;
    grid-column: 1;
  }

  .news-blog-item__category {
    grid-row: 1;
    grid-column: 2;
    font-size: 0.625rem;
  }

  .news-blog-item__title {
    grid-row: 2;
    grid-column: 1 / -1;
    font-size: 0.875rem;
  }

  .news-blog-item__arrow {
    display: none;
  }
}

/* ============================================
   News List Page (nl)
============================================ */
.nl-section {
  padding: 64px 0 100px;
  background: var(--bg-white);
}

.nl-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.nl-item {
  display: grid;
  grid-template-columns: 100px auto 1fr 24px;
  align-items: center;
  gap: 16px;
  padding: 24px 16px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.nl-item:hover {
  background: var(--primary-bg-subtle);
}

.nl-item__date {
  font-family: var(--font-en);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.nl-item__category {
  display: inline-block;
  padding: 3px 12px;
  background: var(--primary);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-align: center;
}

.nl-item__category--report {
  background: #3b82f6;
}

.nl-item__category--important {
  background: #c0392b;
}

.nl-item__title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.6;
  transition: var(--transition);
}

.nl-item:hover .nl-item__title {
  color: var(--primary);
}

.nl-item__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.nl-item__arrow svg {
  width: 16px;
  height: 16px;
}

.nl-item:hover .nl-item__arrow {
  color: var(--primary);
  transform: translateX(3px);
}

/* ピン留め記事 */
.nl-item--pinned {
  position: relative;
  background: rgba(237, 125, 21, 0.04);
}

.nl-item--pinned::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 12px;
  right: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ed7d15' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m21.44 11.05-9.19 9.19a6 6 0 0 1-8.49-8.49l8.57-8.57A4 4 0 1 1 18 8.84l-8.59 8.57a2 2 0 0 1-2.83-2.83l8.49-8.48'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.7;
}

.nl-item--pinned:hover {
  background: rgba(237, 125, 21, 0.08);
}

/* ============================================
   News List Responsive
============================================ */
@media (max-width: 768px) {
  .nl-section {
    padding: 40px 0 64px;
  }

  .nl-item {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 8px 12px;
    padding: 20px 12px;
  }

  .nl-item__date {
    font-size: 0.8125rem;
    grid-row: 1;
    grid-column: 1;
  }

  .nl-item__category {
    grid-row: 1;
    grid-column: 2;
    font-size: 0.625rem;
  }

  .nl-item__title {
    grid-row: 2;
    grid-column: 1 / -1;
    font-size: 0.875rem;
  }

  .nl-item__arrow {
    display: none;
  }
}

/* ============================================
   Member Page (mb)
============================================ */

/* Category filter nav */
.mb-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.mb-filter__item {
  display: inline-block;
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: var(--transition);
  text-decoration: none;
}

.mb-filter__item:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.mb-filter__item--active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.mb-filter__item--active:hover {
  background: var(--primary-dark);
  color: #fff;
}

/* Member Benefits Intro */
.mb-intro {
  padding: var(--section-padding) 0;
  background: var(--bg-section);
}

.mb-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.mb-intro-item {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.mb-intro-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-bg);
  color: var(--primary);
  margin-bottom: 16px;
}

.mb-intro-item h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.mb-intro-item p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .mb-intro-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .mb-intro-item {
    padding: 24px 20px;
  }
}

/* Archive list — 1 column */
.mb-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

/* Row card */
.mb-card-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.mb-card-row:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(237, 125, 21, 0.1);
  transform: translateY(-2px);
}

.mb-card-row__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-light);
}

.mb-card-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.mb-card-row:hover .mb-card-row__image img {
  transform: scale(1.05);
}

.mb-card-row__body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mb-card-row__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 12px;
}

.mb-company {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.mb-company__name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
}

.mb-company__person {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Price block on card */
.mb-price-block {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.mb-price {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.mb-member-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
}

.mb-discount {
  display: inline-block;
  padding: 2px 10px;
  background: var(--primary);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

/* Login hint — archive card */
.mb-login-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Login box — detail page */
.mb-login-box {
  text-align: center;
  padding: 48px 32px;
  background: var(--bg-section);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  max-width: 500px;
  margin: 0 auto;
}

.mb-login-box__icon {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.mb-login-box__text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 24px;
}

/* Detail page — company info */
.mb-detail-badge {
  display: inline-block;
  padding: 5px 16px;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.mb-detail-company {
  margin-bottom: 12px;
}

.mb-detail-company__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-right: 12px;
}

.mb-detail-company__person {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Detail page — pricing comparison */
.mb-pricing-compare {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
}

.mb-pricing-card {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 40px 32px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.mb-pricing-card--member {
  background: var(--primary-bg);
  border-color: var(--primary);
  position: relative;
}

.mb-pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
  white-space: nowrap;
}

.mb-pricing-card__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 12px;
}

.mb-pricing-card__price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
}

.mb-pricing-card--member .mb-pricing-card__price {
  color: var(--primary);
}

.mb-pricing-arrow {
  flex-shrink: 0;
  color: var(--text-muted);
}

.mb-pricing-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 20px;
}

/* Detail page — actions */
.mb-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.mb-contact {
  min-width: 280px;
}

/* ============================================
   Member Page Responsive
============================================ */
@media (max-width: 768px) {
  .mb-filter {
    gap: 8px;
    margin-top: 24px;
  }

  .mb-filter__item {
    padding: 6px 16px;
    font-size: 0.8125rem;
  }

  .mb-card-row {
    grid-template-columns: 1fr;
  }

  .mb-card-row__image {
    aspect-ratio: 16 / 9;
  }

  .mb-card-row__body {
    padding: 20px;
  }

  .mb-card-row__title {
    font-size: 1rem;
  }

  .mb-pricing-compare {
    flex-direction: column;
    gap: 16px;
  }

  .mb-pricing-card {
    max-width: 100%;
    width: 100%;
    padding: 32px 24px;
  }

  .mb-pricing-arrow {
    transform: rotate(90deg);
  }

  .mb-pricing-card__price {
    font-size: 1.5rem;
  }

  .mb-actions {
    flex-direction: column;
  }

  .mb-actions .btn {
    width: 100%;
  }

  .mb-contact {
    min-width: auto;
  }

  .mb-login-box {
    padding: 36px 24px;
  }
}

/* ============================================
   Header — login / user
============================================ */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-user {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-light);
}

.header-user svg {
  color: var(--primary);
}

.header-login-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-light);
}

.header-login-link:hover {
  color: var(--primary);
}

.header-login-link svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .header-actions .header-user,
  .header-actions .header-login-link,
  .header-actions .nav-member-badge,
  .header-actions .header-cta {
    display: none;
  }
}

/* ============================================
   Login Page
============================================ */
.login-section {
  padding: 0 0 80px;
  background: var(--bg-section);
}

.login-card {
  max-width: 440px;
  margin: 0 auto;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
}

.login-card__header {
  text-align: center;
  margin-bottom: 32px;
}

.login-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--primary-bg);
  border-radius: 50%;
  color: var(--primary);
}

.login-card__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.login-card__desc {
  font-size: 0.875rem;
  color: var(--text-light);
}

.login-card__error {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: #c0392b;
  margin-bottom: 24px;
}

.login-card__error svg {
  flex-shrink: 0;
  color: #c0392b;
}

.login-form__field {
  margin-bottom: 20px;
}

.login-form__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.login-form__input {
  display: block;
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-ja);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  outline: none;
}

.login-form__input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(237, 125, 21, 0.12);
}

.login-form__remember {
  margin-bottom: 24px;
}

.login-form__remember label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-light);
  cursor: pointer;
}

.login-form__remember input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  cursor: pointer;
}

.login-form__submit {
  width: 100%;
}

.login-card__note {
  margin-top: 24px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================
   Login Page Responsive
============================================ */
@media (max-width: 768px) {
  .login-section {
    padding: 40px 0 80px;
  }

  .login-card {
    padding: 36px 24px;
  }

  .login-card__title {
    font-size: 1.25rem;
  }
}
