/* ==========================================================================
   合同会社オリジン ORIGIN HEALTH SUPPORT — 共通スタイルシート
   ========================================================================== */

:root {
  --primary: #123F5A;
  --primary-dark: #0D2E42;
  --secondary: #426676;
  --accent: #48A96B;
  --accent-dark: #368256;
  --accent-soft: #DDF2E4;
  --bg-0: #FFFFFF;
  --bg-1: #F4F8F7;
  --border: #DCE7E5;
  --text-main: #1E2F36;
  --text-sub: #55686E;
  --font-jp: 'Zen Kaku Gothic New', 'Hiragino Sans', 'Noto Sans JP', sans-serif;
  --font-en: 'Outfit', 'Zen Kaku Gothic New', sans-serif;
  --max-width: 1120px;
  --radius-s: 6px;
  --radius-m: 14px;
  --radius-l: 28px;
  --shadow-card: 0 10px 30px -18px rgba(18, 63, 90, 0.28);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-jp);
  color: var(--text-main);
  background: var(--bg-0);
  line-height: 1.85;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: 0.01em; }

p { margin: 0; }

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

button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

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

.wrap-narrow {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- 汎用セクション ---------- */

section { padding: 96px 0; }

@media (max-width: 720px) {
  section { padding: 64px 0; }
}

.section-bg-alt { background: var(--bg-1); }

.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-head .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 14px;
}
.section-head .kicker::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

.section-head h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.5;
  color: var(--primary);
}

.section-head .lead {
  margin-top: 18px;
  color: var(--text-sub);
  font-size: 16px;
}

/* ---------- ボタン ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  border: 1.5px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px -14px rgba(72, 169, 107, 0.6);
}
.btn-primary:hover { background: var(--accent-dark); }

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

.btn-block { width: 100%; }

.cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ==========================================================================
   ヘッダー
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { width: 40px; height: 40px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text .brand-en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
  letter-spacing: 0.02em;
}
.brand-text .brand-sub {
  font-family: var(--font-en);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--accent-dark);
  font-weight: 600;
  margin-top: 1px;
}
.brand-text .brand-jp {
  font-size: 10.5px;
  color: var(--text-sub);
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.main-nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--secondary);
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-cta .btn { padding: 11px 24px; font-size: 14px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: none;
  background: none;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: '';
  position: absolute;
  left: 11px; right: 11px;
  height: 2px;
  background: var(--primary);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle span { top: 21px; }
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  display: none;
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-cta .btn-outline { display: none; }
  .nav-toggle { display: block; }

  .mobile-nav {
    display: flex;
    position: fixed;
    inset: 84px 0 0 0;
    background: #fff;
    z-index: 400;
    padding: 32px 24px;
    flex-direction: column;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .mobile-nav.open { transform: translateX(0); }
  .mobile-nav a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
    font-size: 16px;
    color: var(--primary);
  }
  .mobile-nav .btn { margin-top: 24px; }
}

/* ==========================================================================
   ヒーロー
   ========================================================================== */

.hero {
  position: relative;
  padding: 72px 0 100px;
  overflow: hidden;
  background: linear-gradient(180deg, #F7FBF9 0%, #FFFFFF 60%);
}

.hero-canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#hero-canvas { width: 100%; height: 100%; display: block; }

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-copy .eyebrow {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent-dark);
  margin-bottom: 20px;
}

.hero-copy h1 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.55;
  color: var(--primary);
  margin-bottom: 24px;
}

.hero-copy .sub {
  color: var(--text-sub);
  font-size: 16px;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 44px;
}
.hero-point {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 18px 14px;
  text-align: center;
}
.hero-point .num {
  font-family: var(--font-en);
  font-size: 11px;
  color: var(--accent-dark);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.hero-point .label {
  font-weight: 700;
  color: var(--primary);
  margin: 6px 0 4px;
  font-size: 15px;
}
.hero-point .desc { font-size: 12px; color: var(--text-sub); line-height: 1.6; }

.hero-visual {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 3 / 2;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-points { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   ページヒーロー（下層ページ用）
   ========================================================================== */

.page-hero {
  padding: 64px 0 56px;
  background: linear-gradient(180deg, var(--bg-1) 0%, #fff 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero .kicker {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--accent-dark);
  font-weight: 700;
  margin-bottom: 14px;
}
.page-hero h1 {
  font-size: clamp(26px, 3.6vw, 38px);
  color: var(--primary);
  line-height: 1.5;
}
.page-hero p {
  margin-top: 16px;
  color: var(--text-sub);
  max-width: 620px;
}
.breadcrumb {
  font-size: 13px;
  color: var(--text-sub);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--secondary); }
.breadcrumb a:hover { color: var(--accent-dark); }

/* ==========================================================================
   課題提示（HOME）
   ========================================================================== */

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.problem-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.problem-card .mark {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.problem-card p { color: var(--text-main); font-size: 15px; line-height: 1.75; }

.problem-note {
  margin-top: 44px;
  text-align: center;
  font-size: clamp(18px, 2.4vw, 22px);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.8;
}

@media (max-width: 860px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   ORIGINについて
   ========================================================================== */

.about-block {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.about-figure {
  border-radius: var(--radius-l);
  overflow: hidden;
  background: var(--bg-1);
  aspect-ratio: 3 / 2;
  border: 1px solid var(--border);
  position: relative;
}
.about-figure img { width: 100%; height: 100%; object-fit: cover; }
.about-text p { color: var(--text-sub); margin-bottom: 18px; }
.about-text p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .about-block { grid-template-columns: 1fr; }
  .about-figure { aspect-ratio: 3/2; }
}

/* ==========================================================================
   サービスカード
   ========================================================================== */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card .idx {
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 700;
  color: var(--accent-soft);
  -webkit-text-stroke: 1.5px var(--accent);
}
.service-card h3 { font-size: 19px; color: var(--primary); line-height: 1.5; }
.service-card p { color: var(--text-sub); font-size: 14.5px; }
.service-card .tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: auto;
  padding-top: 12px;
}
.service-card .tags span {
  font-size: 11.5px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  color: var(--secondary);
  padding: 6px 12px;
  border-radius: 999px;
}

@media (max-width: 900px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* サービス詳細（service.html） */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse .service-detail-figure { order: 2; }
.service-detail-figure {
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 3/2;
  background: var(--bg-1);
}
.service-detail-figure img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-body .idx {
  font-family: var(--font-en);
  color: var(--accent-dark);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 13px;
  margin-bottom: 10px;
  display: block;
}
.service-detail-body h3 {
  font-size: clamp(20px, 2.6vw, 25px);
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.5;
}
.service-detail-body p { color: var(--text-sub); margin-bottom: 14px; }
.service-detail-list { margin-top: 18px; display: grid; gap: 10px; }
.service-detail-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px; color: var(--text-main);
}
.service-detail-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
  flex-shrink: 0;
}
.detail-note {
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--text-sub);
  background: var(--bg-1);
  border-left: 3px solid var(--accent);
  padding: 12px 16px;
  border-radius: var(--radius-s);
}

@media (max-width: 860px) {
  .service-detail, .service-detail.reverse { grid-template-columns: 1fr; }
  .service-detail.reverse .service-detail-figure { order: 0; }
}

/* ==========================================================================
   漫画風サービス紹介
   ========================================================================== */

.comic-section .section-head { max-width: 720px; }

.comic-block {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 56px;
}
.comic-block:last-child { margin-bottom: 0; }
.comic-block.reverse .comic-figure { order: 2; }

.comic-figure {
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-1);
  cursor: zoom-in;
  position: relative;
}
.comic-figure img { width: 100%; height: auto; object-fit: contain; display: block; }
.comic-figure .zoom-hint {
  position: absolute;
  right: 14px; bottom: 14px;
  background: rgba(18, 63, 90, 0.82);
  color: #fff;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 999px;
}

.comic-caption .tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--accent-dark);
  font-weight: 700;
  margin-bottom: 12px;
}
.comic-caption h3 { color: var(--primary); font-size: 20px; margin-bottom: 12px; line-height: 1.6; }
.comic-caption p { color: var(--text-sub); font-size: 14.5px; }

@media (max-width: 860px) {
  .comic-block, .comic-block.reverse { grid-template-columns: 1fr; }
  .comic-block.reverse .comic-figure { order: 0; }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(14, 26, 30, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 32px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(920px, 100%);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 10px;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 20px;
}

/* ==========================================================================
   サポートの考え方（5ステップ）
   ========================================================================== */

.flow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.flow-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 26px 18px;
  text-align: center;
  position: relative;
}
.flow-step .num {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}
.flow-step .tag {
  font-family: var(--font-en);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--accent-dark);
  font-weight: 700;
  margin: 2px 0 14px;
}
.flow-step h4 { font-size: 15.5px; color: var(--primary); margin-bottom: 8px; }
.flow-step p { font-size: 12.5px; color: var(--text-sub); line-height: 1.7; }
.flow-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .flow-steps { grid-template-columns: repeat(2, 1fr); }
  .flow-step:not(:last-child)::after { display: none; }
}
@media (max-width: 560px) {
  .flow-steps { grid-template-columns: 1fr; }
}

/* ==========================================================================
   ご利用の流れ
   ========================================================================== */

.timeline { display: grid; gap: 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  position: relative;
  padding-bottom: 40px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline-marker .dot {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.timeline-marker .line {
  flex: 1;
  width: 2px;
  background: var(--border);
  margin-top: 8px;
}
.timeline-item:last-child .timeline-marker .line { display: none; }
.timeline-body { padding-top: 6px; }
.timeline-body h4 { color: var(--primary); font-size: 17px; margin-bottom: 8px; }
.timeline-body p { color: var(--text-sub); font-size: 14.5px; }

/* ==========================================================================
   料金
   ========================================================================== */

.price-note-top {
  text-align: center;
  color: var(--text-sub);
  font-size: 14px;
  margin-bottom: 40px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-card);
}
.price-card .badge {
  position: absolute;
  top: -14px; left: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
}
.price-card .badge.badge-sale { background: var(--primary); }
.price-card h3 { font-size: 17px; color: var(--primary); margin-bottom: 14px; }
.price-card .price {
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}
.price-card .price .unit { font-size: 13px; font-weight: 500; color: var(--text-sub); margin-left: 4px; }
.price-card .price-was {
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-sub);
  text-decoration: line-through;
  margin-right: 10px;
}
.price-card .price-sub { font-size: 12.5px; color: var(--text-sub); margin-bottom: 20px; }
.price-card ul { display: grid; gap: 10px; margin-bottom: 24px; }
.price-card li {
  font-size: 13.5px;
  color: var(--text-main);
  display: flex; gap: 8px; align-items: flex-start;
}
.price-card li::before {
  content: '✓';
  color: var(--accent-dark);
  font-weight: 700;
  flex-shrink: 0;
}
.price-card .btn { margin-top: auto; }

@media (max-width: 980px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .price-grid { grid-template-columns: 1fr; }
}

.price-table-wrap { overflow-x: auto; margin-top: 56px; }
table.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: #fff;
}
table.compare th, table.compare td {
  border: 1px solid var(--border);
  padding: 14px 16px;
  text-align: left;
  font-size: 14px;
}
table.compare thead th {
  background: var(--bg-1);
  color: var(--primary);
  font-weight: 700;
}
table.compare tbody th { color: var(--primary); font-weight: 600; width: 26%; }
table.compare td { color: var(--text-sub); }

/* ==========================================================================
   代表者紹介
   ========================================================================== */

.profile-block {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}
.profile-figure {
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-1);
  aspect-ratio: 3 / 2;
}
.profile-figure img { width: 100%; height: 100%; object-fit: cover; }
.profile-role {
  font-family: var(--font-en);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  color: var(--accent-dark);
  font-weight: 700;
  margin-bottom: 10px;
}
.profile-name { font-size: 24px; color: var(--primary); margin-bottom: 4px; }
.profile-kana { font-size: 13px; color: var(--text-sub); margin-bottom: 22px; }
.profile-block p { color: var(--text-sub); margin-bottom: 16px; }
.profile-cred {
  margin-top: 20px;
  display: grid;
  gap: 8px;
}
.profile-cred li {
  font-size: 13.5px;
  color: var(--text-main);
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  padding: 10px 14px;
}

@media (max-width: 860px) {
  .profile-block { grid-template-columns: 1fr; }
  .profile-figure { aspect-ratio: 3/2; max-width: 100%; }
}

/* ==========================================================================
   SPORTS & HEALTH
   ========================================================================== */

.sports-topics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.sports-topic {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 24px;
}
.sports-topic h4 { color: var(--primary); font-size: 15.5px; margin-bottom: 8px; }
.sports-topic p { color: var(--text-sub); font-size: 13.5px; }
.sports-disclaimer {
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-sub);
}

@media (max-width: 860px) {
  .sports-topics { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .sports-topics { grid-template-columns: 1fr; }
}

/* ==========================================================================
   MVV
   ========================================================================== */

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mvv-card {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-l);
  padding: 36px 30px;
}
.mvv-card:nth-child(2) { background: var(--secondary); }
.mvv-card:nth-child(3) { background: var(--accent-dark); }
.mvv-card .label {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.16em;
  opacity: 0.75;
  margin-bottom: 14px;
}
.mvv-card h3 { font-size: 19px; line-height: 1.6; margin-bottom: 14px; }
.mvv-card p { font-size: 13.5px; opacity: 0.88; line-height: 1.8; }

@media (max-width: 860px) {
  .mvv-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   会社概要テーブル
   ========================================================================== */

/* ---------- アイコンパネル（写真の代わりに使用する装飾パネル） ---------- */

.icon-panel {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: linear-gradient(160deg, var(--accent-soft) 0%, var(--bg-1) 100%);
  padding: 24px;
  text-align: center;
}
.icon-panel svg { width: 84px; height: 84px; flex-shrink: 0; }
.icon-panel .icon-caption {
  font-family: var(--font-en);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: var(--primary);
  font-weight: 700;
}

.avatar-panel {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: linear-gradient(165deg, var(--primary) 0%, var(--secondary) 100%);
}
.avatar-panel .monogram {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 34px;
  letter-spacing: 0.02em;
}
.avatar-panel .avatar-caption {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  letter-spacing: 0.06em;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table tr:last-child { border-bottom: none; }
.info-table th, .info-table td {
  text-align: left;
  padding: 20px 12px;
  font-size: 14.5px;
  vertical-align: top;
}
.info-table th {
  width: 180px;
  color: var(--primary);
  font-weight: 600;
}
.info-table td { color: var(--text-sub); }
.info-table td a { color: var(--accent-dark); text-decoration: underline; }

@media (max-width: 640px) {
  .info-table, .info-table tbody, .info-table tr, .info-table th, .info-table td {
    display: block;
    width: auto;
  }
  .info-table th { padding-bottom: 4px; }
  .info-table td { padding-top: 0; padding-bottom: 20px; }
}

.map-embed {
  margin-top: 40px;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/7;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ==========================================================================
   注意事項ボックス
   ========================================================================== */

.disclaimer-box {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-m);
  padding: 28px 30px;
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.9;
}
.disclaimer-box strong { color: var(--primary); }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 24px;
  font-weight: 700;
  color: var(--primary);
  position: relative;
  font-size: 15.5px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: 'Q';
  font-family: var(--font-en);
  color: var(--accent);
  margin-right: 10px;
}
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--accent-dark);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item .faq-a {
  padding: 0 24px 24px 24px;
  color: var(--text-sub);
  font-size: 14.5px;
}
.faq-item .faq-a::before {
  content: 'A';
  font-family: var(--font-en);
  color: var(--secondary);
  font-weight: 700;
  margin-right: 10px;
}

/* ==========================================================================
   CTA バンド
   ========================================================================== */

.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, #1A4E6D 100%);
  color: #fff;
  border-radius: var(--radius-l);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h3 { font-size: clamp(20px, 2.6vw, 26px); line-height: 1.6; max-width: 480px; }
.cta-band p { color: rgba(255,255,255,0.78); margin-top: 10px; font-size: 14px; }
.cta-band .btn-primary { background: #fff; color: var(--primary); box-shadow: none; }
.cta-band .btn-primary:hover { background: var(--accent-soft); }

@media (max-width: 720px) {
  .cta-band { padding: 40px 28px; flex-direction: column; text-align: center; }
  .cta-band .cta-row { justify-content: center; }
}

/* ==========================================================================
   お問い合わせフォーム
   ========================================================================== */

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: flex-start;
}
.contact-side h2 { color: var(--primary); font-size: 22px; margin-bottom: 16px; }
.contact-side p { color: var(--text-sub); margin-bottom: 14px; font-size: 14.5px; }
.contact-info-list { margin-top: 24px; display: grid; gap: 16px; }
.contact-info-list .item {
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 18px 20px;
  background: #fff;
}
.contact-info-list .item .label { font-size: 12px; color: var(--accent-dark); font-weight: 700; letter-spacing: 0.06em; margin-bottom: 6px; }
.contact-info-list .item a, .contact-info-list .item span { font-size: 15px; color: var(--primary); font-weight: 600; }

.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 40px;
}
.form-row { margin-bottom: 22px; }
.form-row label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.form-row label .req {
  color: #fff;
  background: #C15B4A;
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}
.form-row label .opt {
  color: var(--text-sub);
  background: var(--bg-1);
  border: 1px solid var(--border);
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-s);
  font-size: 15px;
  font-family: inherit;
  color: var(--text-main);
  background: #fff;
  transition: border-color 0.18s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  border-color: var(--accent);
}
.form-row textarea { resize: vertical; min-height: 130px; }
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-sub);
  margin-bottom: 26px;
}
.checkbox-row input { margin-top: 4px; }
.checkbox-row a { color: var(--accent-dark); text-decoration: underline; }

.form-note { font-size: 12.5px; color: var(--text-sub); margin-top: 14px; }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .form-two { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
}

/* ==========================================================================
   フッター
   ========================================================================== */

.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.82);
  padding: 64px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.footer-brand .brand-en { color: #fff; font-family: var(--font-en); font-size: 19px; font-weight: 700; }
.footer-brand .brand-sub { font-family: var(--font-en); font-size: 10px; letter-spacing: 0.16em; color: var(--accent-soft); margin: 4px 0 14px; }
.footer-brand p { font-size: 13px; line-height: 1.9; color: rgba(255,255,255,0.65); max-width: 280px; }
.footer-col h5 { font-size: 13px; color: #fff; margin-bottom: 16px; letter-spacing: 0.04em; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: #fff; }
.footer-contact p { font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 10px; line-height: 1.8; }
.footer-contact a { color: #fff; font-weight: 600; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ==========================================================================
   プライバシーポリシー / テキストページ
   ========================================================================== */

.policy-section { padding: 40px 0; border-bottom: 1px solid var(--border); }
.policy-section:last-child { border-bottom: none; }
.policy-section h2 {
  font-size: 19px;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.policy-section h2 .no { font-family: var(--font-en); color: var(--accent-dark); font-size: 15px; }
.policy-section p, .policy-section li { color: var(--text-sub); font-size: 14.5px; margin-bottom: 10px; }
.policy-section ul { display: grid; gap: 8px; margin: 14px 0; }
.policy-section li { padding-left: 18px; position: relative; }
.policy-section li::before {
  content: '';
  position: absolute; left: 0; top: 9px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.policy-updated { text-align: right; font-size: 13px; color: var(--text-sub); margin-top: 32px; }

/* ==========================================================================
   Thank You ページ
   ========================================================================== */

.thanks-hero {
  padding: 120px 0;
  text-align: center;
}
.thanks-icon {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 32px;
  font-size: 38px;
}
.thanks-hero h1 { color: var(--primary); font-size: clamp(24px, 3.4vw, 32px); margin-bottom: 20px; line-height: 1.6; }
.thanks-hero p { color: var(--text-sub); max-width: 520px; margin: 0 auto 40px; }

/* ==========================================================================
   汎用ユーティリティ
   ========================================================================== */

.text-center { text-align: center; }
.mt-48 { margin-top: 48px; }
.small-print { font-size: 12.5px; color: var(--text-sub); }
