/* =====================================================
   KOKOROMi LP — デザインCSS（fluminal-site移植版）
   移植元：homepage/kokoromi-base/swell-kokoromi-child/style.css
   ===================================================== */

/* ===== 変数 ===== */
:root {
  --kkrm-orange: #d4713a;
  --kkrm-dark:   #1e1815;
  --kkrm-light:  #f8f7f5;
  --kkrm-green:  #2e7d5e;
  --kkrm-line:   #06C755;
  --kkrm-gray:   #666;
  --kkrm-border: #e5e3df;
}

/* ===== 共通ヘッダー（KOKOROMi BASEと同じ見た目） ===== */
.kkrm-nav {
  background: white;
  border-bottom: 1px solid var(--kkrm-border);
  padding: 0 56px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.kkrm-nav-logo { display: inline-flex; align-items: center; text-decoration: none !important; }
.kkrm-nav-logo img { height: 28px; width: auto; display: block; }
.kkrm-nav-links { display: flex; gap: 8px; align-items: center; }
.kkrm-nav-links a {
  font-size: 12px;
  color: var(--kkrm-gray);
  text-decoration: none !important;
  padding: 6px 16px;
  border-radius: 20px;
  transition: all 0.2s;
}
.kkrm-nav-links a:hover { color: var(--kkrm-dark); background: var(--kkrm-light); }
.kkrm-nav-links a.cta {
  background: var(--kkrm-orange);
  color: white !important;
  font-weight: 700;
}
.kkrm-nav-links a.cta:hover { background: #b85f30; }
@media (max-width: 768px) {
  .kkrm-nav { padding: 0 20px; }
  .kkrm-nav-links a:not(.cta) { display: none; }
}

/* ===== はじめてページ専用ヘッダー (hajimete-only — do NOT merge with .kkrm-nav / root's header) ===== */
.hjmt-header {
  background: white;
  border-bottom: 1px solid var(--kkrm-border);
  padding: 0 56px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.hjmt-header-logo { display: inline-flex; align-items: center; text-decoration: none !important; }
.hjmt-header-logo img { height: 28px; width: auto; display: block; }

@media (max-width: 768px) {
  .hjmt-header { padding: 0 20px; }
}

/* compact LINE CTA sized for the 64px header bar (.kkrm-btn-line/-lg はhero用サイズなので流用しない) */
.kkrm-btn-line-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--kkrm-line);
  color: white !important;
  font-size: 13px;
  font-weight: bold;
  padding: 9px 20px;
  border-radius: 100px;
  text-decoration: none !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 2px 12px rgba(6,199,85,0.30);
}
.kkrm-btn-line-sm:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 18px rgba(6,199,85,0.45);
  color: white !important;
}

/* ===== 全幅ブレークアウト ===== */
.kkrm-section-full {
  position: relative;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  overflow: hidden;
}

/* ===== HERO ===== */
.kkrm-hero {
  background: linear-gradient(150deg, #fdecd8 0%, #fef5ec 55%, #fbe8d4 100%);
  padding: 56px 40px 80px;
  border-bottom: 4px solid var(--kkrm-orange);
  position: relative;
  overflow: hidden;
}
.kkrm-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(212,113,58,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.kkrm-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.kkrm-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--kkrm-orange);
  font-weight: bold;
  margin-bottom: 10px;
}
.kkrm-hero-inner-split {
  max-width: 1760px;
  display: flex;
  align-items: stretch;
  gap: 28px;
  margin-bottom: 40px;
}
.kkrm-hero-copy {
  flex: 0 0 auto;
  display: flex;
}
.kkrm-hero-vertical {
  display: flex;
  gap: 8px;
  margin: 0;
}
.kkrm-hero-vertical-main,
.kkrm-hero-vertical-sub {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  line-height: 1.15;
}
.kkrm-hero-vertical-main {
  font-size: 60px;
  color: var(--kkrm-dark);
}
.kkrm-hero-vertical-sub {
  font-size: 42px;
  color: var(--kkrm-orange);
}
.kkrm-hero-photos {
  flex: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-width: 0;
  min-height: 540px;
}
.kkrm-hero-photo {
  background-color: var(--kkrm-border);
  background-size: cover;
  background-position: center;
  border-radius: 12px;
}
.kkrm-hero-photo-a { grid-column: 1; grid-row: 1 / 3; }
.kkrm-hero-photo-b { grid-column: 2; grid-row: 1; }
.kkrm-hero-photo-c { grid-column: 2; grid-row: 2; }
.kkrm-hero-photo-d { grid-column: 3; grid-row: 1 / 3; }
.kkrm-hero-sub {
  font-size: 15px;
  color: rgba(30,24,21,0.62);
  max-width: 520px;
  line-height: 2.1;
  margin-bottom: 44px;
}
.kkrm-hero-sub strong {
  color: rgba(30,24,21,0.88);
  font-weight: normal;
}

/* ===== ボタン ===== */
.kkrm-btn-group {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.kkrm-btn-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--kkrm-line);
  color: white !important;
  font-size: 15px;
  font-weight: bold;
  padding: 16px 40px;
  border-radius: 100px;
  text-decoration: none !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 4px 20px rgba(6,199,85,0.35);
}
.kkrm-btn-line:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 32px rgba(6,199,85,0.50);
  color: white !important;
}

.kkrm-btn-line-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--kkrm-line);
  color: white !important;
  font-size: 17px;
  font-weight: bold;
  padding: 20px 56px;
  border-radius: 100px;
  text-decoration: none !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 4px 24px rgba(6,199,85,0.38);
}
.kkrm-btn-line-lg:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 36px rgba(6,199,85,0.52);
  color: white !important;
}

.kkrm-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(30,24,21,0.65) !important;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none !important;
  border: 1.5px solid rgba(30,24,21,0.22);
  transition: all 0.18s ease;
}
.kkrm-btn-secondary:hover {
  color: var(--kkrm-dark) !important;
  border-color: rgba(30,24,21,0.5);
}

.kkrm-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: bold;
  color: var(--kkrm-orange) !important;
  text-decoration: none !important;
  border: 1.5px solid rgba(212,113,58,0.4);
  padding: 8px 20px;
  border-radius: 100px;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.kkrm-btn-outline:hover {
  background: rgba(212,113,58,0.1);
  border-color: var(--kkrm-orange);
}

/* ===== バッジ ===== */
.kkrm-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.kkrm-badge {
  font-size: 11px;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(30,24,21,0.06);
  color: rgba(30,24,21,0.55);
  border: 1px solid rgba(30,24,21,0.14);
}
.kkrm-badge.accent {
  background: rgba(6,199,85,0.14);
  color: #1a7a44;
  border-color: rgba(6,199,85,0.32);
}

/* ===== セクション共通 ===== */
.kkrm-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 72px 48px;
}
.kkrm-section h1,
.kkrm-section h2 {
  font-family: 'Zen Maru Gothic', 'Zen Kaku Gothic New', sans-serif;
  font-size: 32px;
  font-weight: 300;
  line-height: 1.45;
  margin-top: 0;
  margin-bottom: 16px;
}
.kkrm-section-lead {
  font-size: 15px;
  color: var(--kkrm-gray);
  line-height: 2.0;
  max-width: 600px;
  margin-bottom: 52px;
}

/* ===== はじめてのKOKOROMi（ミッション） ===== */
.kkrm-mission-wrap {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.kkrm-mission-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(30,24,21,0.88) 0%, rgba(30,24,21,0.62) 45%, rgba(212,113,58,0.45) 100%);
}
.kkrm-mission-watermark {
  position: absolute;
  left: 0;
  bottom: -0.12em;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 200px;
  line-height: 1;
  color: rgba(255,255,255,0.08);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.kkrm-mission-content {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  padding: 88px 48px;
}
.kkrm-mission-eyebrow {
  color: rgba(255,255,255,0.7) !important;
}
.kkrm-mission-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 28px;
}
.kkrm-mission-body p {
  font-size: 15px;
  line-height: 2.0;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin-bottom: 14px;
}
/* ===== 開催の想い（YouTube） ===== */
.kkrm-story-wrap {
  background: white;
  border-top: 1px solid var(--kkrm-border);
  border-bottom: 1px solid var(--kkrm-border);
}
.kkrm-video-wrap {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.kkrm-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.kkrm-story-video-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  font-size: 14px;
  font-weight: bold;
  color: var(--kkrm-orange) !important;
  text-decoration: none !important;
  border: 1.5px solid rgba(212,113,58,0.35);
  padding: 12px 24px;
  border-radius: 100px;
  transition: all 0.18s ease;
}
.kkrm-story-video-link:hover {
  background: rgba(212,113,58,0.07);
  border-color: var(--kkrm-orange);
}

/* ===== なぜはじめたのか ===== */
.kkrm-why-wrap {
  background: var(--kkrm-light);
  border-top: 1px solid var(--kkrm-border);
  border-bottom: 1px solid var(--kkrm-border);
}
.kkrm-story-grid {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 48px;
}
.kkrm-story-grid .kkrm-why-lead {
  flex: 1.5;
  margin-bottom: 0;
}
.kkrm-story-founder {
  flex: 1;
  min-width: 0;
  position: sticky;
  top: 96px;
}
.kkrm-story-founder img {
  width: 100%;
  border-radius: 12px;
  display: block;
}
.kkrm-story-founder-name {
  font-size: 14px;
  font-weight: bold;
  color: var(--kkrm-dark);
  margin: 14px 0 0;
  line-height: 1.6;
}
.kkrm-story-founder-name span {
  display: block;
  font-size: 11px;
  font-weight: normal;
  color: var(--kkrm-gray);
  margin-top: 2px;
}
.kkrm-why-lead {
  max-width: 640px;
  margin-bottom: 48px;
}
.kkrm-why-lead p {
  font-size: 15px;
  color: rgba(30,24,21,0.7);
  line-height: 2.0;
  margin-bottom: 16px;
}
.kkrm-why-emphasis {
  font-size: 17px !important;
  color: var(--kkrm-dark) !important;
  font-weight: bold;
  border-left: 3px solid var(--kkrm-orange);
  padding-left: 16px;
  margin: 28px 0 !important;
}
.kkrm-why-list {
  background: white;
  border-radius: 12px;
  border: 1px solid var(--kkrm-border);
  padding: 32px 36px;
  margin-bottom: 32px;
  max-width: 640px;
}
.kkrm-why-list-head {
  font-size: 14px;
  font-weight: bold;
  color: var(--kkrm-dark);
  margin: 0 0 18px;
}
.kkrm-why-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.kkrm-why-list li {
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  color: rgba(30,24,21,0.75);
  line-height: 1.9;
}
.kkrm-why-list li + li {
  margin-top: 14px;
}
.kkrm-why-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(212,113,58,0.14);
  color: var(--kkrm-orange);
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}
.kkrm-why-footer {
  font-size: 15px;
  font-weight: bold;
  color: var(--kkrm-dark);
}

/* ===== 3つの安心 ===== */
.kkrm-anshin-wrap {
  background: white;
}
.kkrm-anshin-head {
  text-align: center;
  margin-bottom: 44px;
}
.kkrm-anshin-head h2 {
  margin-bottom: 0;
}
.kkrm-anshin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.kkrm-anshin-item {
  text-align: center;
}
.kkrm-anshin-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--kkrm-orange);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Zen Maru Gothic', 'Zen Kaku Gothic New', sans-serif;
  font-size: 20px;
  font-weight: 400;
}
.kkrm-anshin-item h3 {
  font-size: 15px;
  font-weight: bold;
  color: var(--kkrm-dark);
  margin: 0 0 8px;
}
.kkrm-anshin-item p {
  font-size: 13px;
  color: var(--kkrm-gray);
  line-height: 1.8;
  margin: 0;
}

/* ===== サービスの流れ ===== */
.kkrm-flow-wrap {
  position: relative;
  background: var(--kkrm-light);
  overflow: hidden;
}
.kkrm-flow-watermark {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 150px;
  line-height: 1;
  color: rgba(212,113,58,0.07);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.kkrm-flow-section {
  position: relative;
  z-index: 1;
}
.kkrm-flow-eyebrow {
  color: var(--kkrm-orange);
  text-align: center;
}
.kkrm-flow-title {
  text-align: center;
  color: var(--kkrm-orange);
}
.kkrm-flow-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}
.kkrm-flow-row-3 { margin-top: 40px; }
.kkrm-flow-step {
  width: 200px;
  text-align: center;
}
.kkrm-flow-step-label {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--kkrm-orange);
  margin-bottom: 12px;
}
.kkrm-flow-step-label span {
  font-size: 20px;
  margin-left: 2px;
}
.kkrm-flow-step-circle {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--kkrm-border);
  overflow: hidden;
  margin: 0 auto 16px;
}
.kkrm-flow-step-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kkrm-flow-step h3 {
  font-size: 13px;
  font-weight: bold;
  line-height: 1.6;
  color: var(--kkrm-dark);
  margin: 0;
}
.kkrm-flow-step-sub {
  font-size: 11px;
  color: var(--kkrm-gray);
  margin-top: 6px;
  line-height: 1.5;
}
.kkrm-flow-step-highlight .kkrm-flow-step-circle {
  border: 4px solid var(--kkrm-orange);
}
.kkrm-flow-arrow {
  font-size: 22px;
  color: rgba(30,24,21,0.25);
  margin-top: 62px;
  flex-shrink: 0;
}

/* ===== 体験カード：サムネイル画像 ===== */
.kkrm-exp-img {
  margin: -32px -32px 24px -32px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 9px 9px 0 0;
  position: relative;
}

.kkrm-exp-status-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(212,113,58,0.92);
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.08em;
  padding: 5px 13px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.kkrm-exp-status-badge.closed {
  background: rgba(20,20,20,0.72);
}

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

/* ===== 体験一覧 ===== */
.kkrm-exp-wrap {
  background: var(--kkrm-light);
}
/* 体験一覧セクションだけ横幅を広く使う（他セクションは960pxのまま） */
.kkrm-exp-wrap .kkrm-section { max-width: 1200px; }
.kkrm-exp-wrap .kkrm-eyebrow { color: var(--kkrm-orange); }
.kkrm-exp-wrap h2             { color: var(--kkrm-dark); }
.kkrm-exp-wrap .kkrm-section-lead { color: rgba(30,24,21,0.55); }

/* ===== 体験一覧フィルタ ===== */
.kkrm-exp-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.kkrm-exp-filter {
  font-family: inherit;
  font-size: 13px;
  font-weight: bold;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--kkrm-border);
  background: white;
  color: var(--kkrm-gray);
  cursor: pointer;
  transition: all 0.18s ease;
}
.kkrm-exp-filter:hover {
  border-color: rgba(212,113,58,0.5);
  color: var(--kkrm-dark);
}
.kkrm-exp-filter.active {
  background: var(--kkrm-orange);
  border-color: var(--kkrm-orange);
  color: white;
}
.kkrm-exp-card-link.kkrm-hidden {
  display: none;
}

.kkrm-exp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* デスクトップでは.kkrm-exp-trackはレイアウトに影響を与えない（gridの子として直接カードが並ぶ） */
.kkrm-exp-track { display: contents; }
.kkrm-exp-card-link {
  text-decoration: none !important;
  color: inherit !important;
  display: block;
}
/* モバイル自動スクロール用の複製カードはデスクトップでは非表示（.kkrm-exp-card-linkのdisplay:blockより後・詳細度も高くして確実に勝たせる） */
.kkrm-exp-card-link.kkrm-exp-dup { display: none; }

/* ===== インタビューカード（準備中プレースホルダー） ===== */
.kkrm-interview-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--kkrm-light);
  border-radius: 10px;
  padding: 32px;
  margin-top: 32px;
  border: 1.5px dashed rgba(212,113,58,0.35);
}
.kkrm-interview-photo-placeholder {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(212,113,58,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--kkrm-orange);
  font-weight: bold;
  flex-shrink: 0;
  text-align: center;
  line-height: 1.4;
}
.kkrm-interview-text {
  font-size: 14px;
  color: var(--kkrm-gray);
  line-height: 1.9;
  margin: 0;
}

.kkrm-exp-card {
  background: white;
  border: 1px solid var(--kkrm-border);
  border-radius: 10px;
  padding: 32px 32px 36px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  height: 100%;
}
.kkrm-exp-card-link:hover .kkrm-exp-card:not(.closed) {
  transform: translateY(-6px);
  border-color: rgba(212,113,58,0.55);
  box-shadow: 0 20px 48px rgba(0,0,0,0.12);
}
.kkrm-exp-card h3       { font-size: 15px; font-weight: bold; color: var(--kkrm-dark); margin-top: 0 !important; margin-bottom: 10px; line-height: 1.55; }
.kkrm-exp-card.closed   { opacity: 0.4; }

.kkrm-exp-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.kkrm-exp-meta-item {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--kkrm-light);
  color: var(--kkrm-gray);
  border: 1px solid var(--kkrm-border);
}
.kkrm-exp-meta-item.hl {
  background: rgba(46,125,94,0.08);
  color: #1a7a44;
  border-color: rgba(46,125,94,0.25);
}

/* ===== 体験追加予告 ===== */
.kkrm-exp-coming {
  margin-top: 40px;
  border: 1.5px dashed rgba(212,113,58,0.35);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  background: rgba(212,113,58,0.04);
}
.kkrm-exp-coming-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.15em;
  color: var(--kkrm-orange);
  border: 1px solid rgba(212,113,58,0.3);
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.kkrm-exp-coming-text {
  font-size: 16px;
  font-weight: bold;
  color: var(--kkrm-dark);
  margin-bottom: 6px;
}
.kkrm-exp-coming-sub {
  font-size: 13px;
  color: var(--kkrm-gray);
  margin: 0;
}

/* ===== CTA ===== */
.kkrm-cta-wrap {
  background: white;
  border-top: 1px solid var(--kkrm-border);
  text-align: center;
}
.kkrm-cta-wrap h2 {
  font-family: 'Zen Maru Gothic', 'Zen Kaku Gothic New', sans-serif;
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 16px;
}
.kkrm-cta-wrap p {
  font-size: 14px;
  color: var(--kkrm-gray);
  line-height: 2.0;
  max-width: 480px;
  margin: 0 auto 40px;
}
.kkrm-cta-note { font-size: 12px; color: #aaa; margin-top: 16px; }

/* ===== SNSリンク ===== */
.kkrm-sns-bar {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}
.kkrm-sns-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--kkrm-gray) !important;
  text-decoration: none !important;
  border: 1.5px solid var(--kkrm-border);
  padding: 8px 18px;
  border-radius: 100px;
  transition: all 0.18s ease;
  background: white;
}
.kkrm-sns-link:hover {
  border-color: var(--kkrm-orange);
  color: var(--kkrm-dark) !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

/* ===== KOKOROMi BASE（準備中） ===== */
.kkrm-base-section-wrap {
  background: #f0eee9;
  border-top: 1px solid var(--kkrm-border);
}
.kkrm-base-section-wrap h2 { color: #aaa; }
.kkrm-base-section-wrap .kkrm-section-lead { color: #bbb; }

.kkrm-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.kkrm-coming-soon-card {
  background: white;
  border-radius: 10px;
  padding: 32px;
  border-left: 3px solid #ddd;
  opacity: 0.65;
}
.kkrm-coming-soon-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.12em;
  background: #f0f0f0;
  color: #999;
  border: 1px solid #ddd;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

/* ===== KOKOROMiトップ：特徴（FEATURE） ===== */
.kkrm-feature-wrap { background: var(--kkrm-light); }
.kkrm-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.kkrm-feature-card {
  background: white;
  border-radius: 10px;
  padding: 32px 24px;
  border: 1px solid var(--kkrm-border);
}
.kkrm-feature-num {
  font-family: 'Zen Maru Gothic', 'Zen Kaku Gothic New', sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--kkrm-orange);
  line-height: 1;
  margin-bottom: 16px;
}
.kkrm-feature-card h3 { font-size: 16px; font-weight: bold; color: var(--kkrm-dark); margin: 0 0 12px; }
.kkrm-feature-card p { font-size: 13px; color: var(--kkrm-gray); line-height: 1.85; margin: 0; }

/* ===== KOKOROMiトップ：コース選択 ===== */
.kkrm-course-wrap { background: white; }
.kkrm-course-header {
  display: flex;
  align-items: baseline;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.kkrm-course-title {
  font-family: 'Zen Maru Gothic', 'Zen Kaku Gothic New', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--kkrm-orange);
  letter-spacing: 0.04em;
  line-height: 1;
}
.kkrm-course-lead {
  font-size: 14px;
  color: var(--kkrm-gray);
  line-height: 1.9;
}
.kkrm-course-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.kkrm-course-card {
  position: relative;
  display: block;
  background: var(--kkrm-light);
  border-radius: 10px;
  padding: 36px;
  padding-right: 56px;
  text-decoration: none !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.kkrm-course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.kkrm-course-vertical {
  position: absolute;
  top: 36px;
  right: 18px;
  bottom: 36px;
  writing-mode: vertical-rl;
  font-size: 12px;
  color: var(--kkrm-gray);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kkrm-course-name {
  font-family: 'Zen Maru Gothic', 'Zen Kaku Gothic New', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--kkrm-dark);
  margin-bottom: 6px;
}
.kkrm-course-subtitle {
  font-size: 12px;
  color: var(--kkrm-orange);
  font-weight: bold;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.kkrm-course-desc {
  font-size: 13px;
  color: var(--kkrm-gray);
  line-height: 1.9;
  margin-bottom: 20px;
}
.kkrm-course-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--kkrm-orange);
  color: var(--kkrm-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin-bottom: 24px;
}
.kkrm-course-features {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--kkrm-border);
}
.kkrm-course-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--kkrm-border);
  font-size: 12px;
  color: var(--kkrm-gray);
  line-height: 1.7;
}
.kkrm-course-features .num {
  font-family: 'Zen Maru Gothic', 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--kkrm-orange);
  flex-shrink: 0;
}

/* ===== 流れる問い（マーキー） ===== */
.kkrm-marquee-caption {
  font-size: 13px;
  color: var(--kkrm-gray);
  margin-top: 24px;
}
.kkrm-marquee-outer {
  padding: 24px 0 40px;
  overflow: hidden;
}
.kkrm-marquee-row {
  overflow: hidden;
  margin-bottom: 14px;
}
.kkrm-marquee-row:last-child { margin-bottom: 0; }
.kkrm-marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: kkrm-marquee-l 38s linear infinite;
}
.kkrm-marquee-row.reverse .kkrm-marquee-track {
  animation-name: kkrm-marquee-r;
}
.kkrm-marquee-item {
  flex: 0 0 auto;
  background: var(--kkrm-light);
  border: 1px solid var(--kkrm-border);
  border-radius: 100px;
  padding: 14px 28px;
  font-size: 14px;
  color: var(--kkrm-dark);
  white-space: nowrap;
}
@keyframes kkrm-marquee-l {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes kkrm-marquee-r {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .kkrm-marquee-track { animation: none; }
  .kkrm-exp-track { animation: none; }
}

/* ===== 最後のCTA ===== */
.kkrm-final-cta {
  background: linear-gradient(150deg, #fdecd8 0%, #fef5ec 55%, #fbe8d4 100%);
  border-top: 1px solid var(--kkrm-border);
}
.kkrm-final-cta-inner {
  text-align: center;
  padding-top: 88px;
  padding-bottom: 88px;
}
.kkrm-final-cta-inner h2 {
  margin-bottom: 14px;
}
.kkrm-final-cta-lead {
  font-size: 14px;
  color: var(--kkrm-gray);
  line-height: 1.9;
  margin: 0 0 36px;
}
.kkrm-final-cta-sub {
  display: inline-block;
  margin-top: 24px;
  font-size: 13px;
  color: var(--kkrm-gray) !important;
  text-decoration: underline !important;
}
.kkrm-final-cta-sub:hover {
  color: var(--kkrm-dark) !important;
}

/* ===== サイト内フッターリンク ===== */
.kkrm-footer-link-wrap {
  padding: 24px 48px;
  text-align: center;
  background: white;
  border-top: 1px solid var(--kkrm-border);
}
.kkrm-footer-link-wrap .kkrm-footer-link + .kkrm-footer-link { margin-left: 20px; }
.kkrm-footer-link {
  font-size: 12px;
  color: var(--kkrm-gray) !important;
  text-decoration: none !important;
}
.kkrm-footer-link:hover { color: var(--kkrm-dark) !important; }

/* ===== レスポンシブ ===== */
@media (max-width: 700px) {
  .kkrm-hero          { padding: 48px 20px 44px; }
  .kkrm-hero-inner-split { gap: 14px; margin-bottom: 28px; }
  .kkrm-hero-photos   {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
  }
  .kkrm-hero-photo-a  { grid-column: 1 / 3; grid-row: 1; aspect-ratio: 16 / 10; }
  .kkrm-hero-photo-b  { grid-column: 1; grid-row: 2; aspect-ratio: 4 / 3; }
  .kkrm-hero-photo-c  { grid-column: 2; grid-row: 2; aspect-ratio: 4 / 3; }
  .kkrm-hero-photo-d  { display: none; }
  .kkrm-hero-vertical-main { font-size: 36px; }
  .kkrm-hero-vertical-sub  { font-size: 26px; }
  .kkrm-section       { padding: 52px 24px; }
  .kkrm-section h2    { font-size: 24px; }
  .kkrm-mission-wrap     { min-height: 0; }
  .kkrm-mission-content  { padding: 56px 24px; }
  .kkrm-mission-title    { font-size: 26px; }
  .kkrm-mission-watermark { font-size: 90px; }
  .kkrm-flow-watermark { font-size: 70px; left: 12px; }
  .kkrm-flow-row      { flex-direction: column; align-items: center; gap: 16px; }
  .kkrm-flow-arrow     { transform: rotate(90deg); margin-top: 0; }
  .kkrm-flow-step      { width: 100%; max-width: 260px; }
  .kkrm-flow-step-circle { width: 120px; height: 120px; }
  .kkrm-grid-2        { grid-template-columns: 1fr; }
  .kkrm-story-grid    { flex-direction: column; gap: 28px; }
  .kkrm-story-founder { position: static; width: 100%; }
  .kkrm-why-list      { padding: 24px 20px; }
  .kkrm-feature-grid  { grid-template-columns: 1fr; }
  .kkrm-course-header { flex-direction: column; gap: 12px; }
  .kkrm-course-title  { font-size: 36px; }
  .kkrm-course-grid   { grid-template-columns: 1fr; }
  .kkrm-course-card   { padding: 28px; padding-right: 48px; }
  .kkrm-course-vertical { top: 28px; bottom: 28px; right: 14px; font-size: 11px; }
  .kkrm-btn-line,
  .kkrm-btn-line-lg   { width: 100%; justify-content: center; }

  .kkrm-exp-cards {
    overflow: hidden;
    margin: 0 -24px;
    padding: 0 24px 12px;
  }
  .kkrm-exp-track {
    display: flex;
    width: max-content;
    gap: 16px;
    animation: kkrm-exp-scroll 34s linear infinite;
  }
  .kkrm-exp-track.kkrm-exp-paused { animation-play-state: paused; }
  .kkrm-exp-card-link {
    flex: 0 0 82vw;
  }
  .kkrm-exp-card-link.kkrm-exp-dup { display: block; }
}

@keyframes kkrm-exp-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== ステージング識別リボン（本番デプロイでは出力されない） ===== */
.staging-ribbon {
  position: fixed;
  top: 22px;
  left: -58px;
  width: 200px;
  transform: rotate(-45deg);
  background: #d63a3a;
  color: #fff;
  text-align: center;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  line-height: 26px;
  z-index: 99999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.28);
  pointer-events: none;
  user-select: none;
}


/* ===== ホスト募集ページ（/hajimete/host/） ===== */
/* メリット */
.kkrm-host-benefits { position: relative; overflow: hidden; background: #fff; }
.kkrm-host-watermark {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 900;
  font-size: 160px; line-height: 1; color: rgba(212,113,58,0.06);
  white-space: nowrap; pointer-events: none; user-select: none;
}
.kkrm-host-benefit-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px;
}
.kkrm-host-benefit-card {
  background: var(--kkrm-light); border: 1px solid var(--kkrm-border);
  border-radius: 14px; padding: 28px 22px;
}
.kkrm-host-benefit-num {
  font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 900;
  font-size: 26px; color: var(--kkrm-orange); line-height: 1; margin-bottom: 14px;
}
.kkrm-host-benefit-card h3 {
  font-size: 16px; font-weight: bold; color: var(--kkrm-dark); margin: 0 0 10px;
}
.kkrm-host-benefit-card p {
  font-size: 13px; color: var(--kkrm-gray); line-height: 1.85; margin: 0;
}
.kkrm-host-benefit-note {
  font-size: 12px; color: var(--kkrm-gray); line-height: 1.8;
  margin-top: 28px; padding-left: 14px; border-left: 3px solid var(--kkrm-border);
}

/* 対話→つながりのフロー */
.kkrm-host-valueflow {
  display: flex; align-items: stretch; justify-content: center;
  gap: 14px; margin-top: 44px; flex-wrap: nowrap;
}
.kkrm-host-vf-node {
  flex: 1; background: #fff; border: 1px solid var(--kkrm-border);
  border-radius: 12px; padding: 22px 16px; text-align: center;
  font-size: 13.5px; line-height: 1.7; color: var(--kkrm-dark);
  display: flex; align-items: center; justify-content: center;
}
.kkrm-host-vf-node-soft { color: var(--kkrm-gray); border-style: dashed; }
.kkrm-host-vf-arrow {
  align-self: center; font-size: 20px; color: rgba(30,24,21,0.28); flex-shrink: 0;
}

/* STEP円（画像なし・文字） */
.kkrm-host-flow-circle { display: flex; align-items: center; justify-content: center; }
.kkrm-host-flow-circle span {
  font-family: 'Zen Maru Gothic', 'Zen Kaku Gothic New', sans-serif;
  font-size: 20px; font-weight: 500; color: var(--kkrm-orange);
}

/* 料金：受け入れ無料 */
.kkrm-host-price { background: linear-gradient(150deg, #fdecd8 0%, #fef5ec 55%, #fbe8d4 100%); }
.kkrm-host-price-inner { text-align: center; }
.kkrm-host-price-figure {
  display: flex; align-items: baseline; justify-content: center;
  gap: 6px; margin: 8px 0 20px;
}
.kkrm-host-price-num {
  font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 900;
  font-size: 120px; line-height: 1; color: var(--kkrm-orange);
}
.kkrm-host-price-yen {
  font-family: 'Zen Maru Gothic', sans-serif; font-weight: 700;
  font-size: 40px; color: var(--kkrm-orange);
}
.kkrm-host-price-lead {
  font-size: 15px; line-height: 1.95; color: var(--kkrm-dark);
  max-width: 560px; margin: 0 auto;
}
.kkrm-host-price-note { font-size: 12px; color: var(--kkrm-gray); margin-top: 14px; }

/* 事例 */
.kkrm-host-case-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px;
}
.kkrm-host-case-card {
  background: var(--kkrm-light); border: 1px solid var(--kkrm-border);
  border-radius: 14px; padding: 26px 22px;
}
.kkrm-host-case-tag {
  display: inline-block; font-size: 11px; color: var(--kkrm-orange);
  background: rgba(212,113,58,0.1); border-radius: 100px;
  padding: 4px 12px; margin-bottom: 14px;
}
.kkrm-host-case-card h3 {
  font-size: 16px; font-weight: bold; color: var(--kkrm-dark); margin: 0 0 8px;
}
.kkrm-host-case-card p {
  font-size: 13px; color: var(--kkrm-gray); line-height: 1.8; margin: 0;
}
.kkrm-host-case-note { font-size: 13px; color: var(--kkrm-gray); margin-top: 28px; text-align: center; }

/* FAQ */
.kkrm-host-faq { margin-top: 32px; border-top: 1px solid var(--kkrm-border); }
.kkrm-host-faq details { border-bottom: 1px solid var(--kkrm-border); }
.kkrm-host-faq summary {
  list-style: none; cursor: pointer; padding: 20px 40px 20px 0; position: relative;
  font-size: 15px; font-weight: bold; color: var(--kkrm-dark);
}
.kkrm-host-faq summary::-webkit-details-marker { display: none; }
.kkrm-host-faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 22px; font-weight: 400; color: var(--kkrm-orange);
}
.kkrm-host-faq details[open] summary::after { content: "−"; }
.kkrm-host-faq details p {
  font-size: 14px; color: var(--kkrm-gray); line-height: 1.9;
  margin: 0; padding: 0 0 22px;
}

/* ホスト募集ページ レスポンシブ */
@media (max-width: 700px) {
  .kkrm-host-watermark { font-size: 80px; right: 4px; }
  .kkrm-host-benefit-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .kkrm-host-benefit-card { padding: 20px 16px; }
  .kkrm-host-valueflow { flex-direction: column; align-items: stretch; gap: 10px; }
  .kkrm-host-vf-arrow { transform: rotate(90deg); align-self: center; }
  .kkrm-host-flow-circle span { font-size: 17px; }
  .kkrm-host-price-num { font-size: 84px; }
  .kkrm-host-price-yen { font-size: 30px; }
  .kkrm-host-case-grid { grid-template-columns: 1fr; }
}

/* ===== ホスト募集ページ 追補（実績ストリップ・企業ブロック・なぜ無料） ===== */
.kkrm-host-proofstrip {
  text-align: center; padding: 20px 24px;
  background: var(--kkrm-light); border-bottom: 1px solid var(--kkrm-border);
  font-size: 13px; color: var(--kkrm-gray); line-height: 1.7;
}
.kkrm-host-proofstrip strong { color: var(--kkrm-orange); font-weight: 700; }

.kkrm-host-forbiz {
  background: rgba(212,113,58,0.06);
  border: 1px solid rgba(212,113,58,0.28);
  border-radius: 14px; padding: 30px 30px;
}
.kkrm-host-forbiz-label {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  color: #fff; background: var(--kkrm-orange);
  border-radius: 100px; padding: 4px 14px; margin-bottom: 16px;
}
.kkrm-host-forbiz h3 {
  font-family: 'Zen Maru Gothic', 'Zen Kaku Gothic New', sans-serif;
  font-size: 22px; font-weight: 500; color: var(--kkrm-dark); margin: 0 0 12px;
}
.kkrm-host-forbiz p {
  font-size: 14px; color: var(--kkrm-gray); line-height: 1.95; margin: 0;
}

.kkrm-host-why-free {
  margin: 28px auto 0; max-width: 620px;
  background: #fff; border: 1px solid var(--kkrm-border);
  border-radius: 12px; padding: 24px 26px; text-align: left;
}
.kkrm-host-why-free h3 {
  font-size: 15px; font-weight: bold; color: var(--kkrm-dark); margin: 0 0 10px;
}
.kkrm-host-why-free p {
  font-size: 13.5px; color: var(--kkrm-gray); line-height: 1.95; margin: 0;
}

@media (max-width: 700px) {
  .kkrm-host-forbiz { padding: 24px 20px; }
  .kkrm-host-forbiz h3 { font-size: 18px; }
}

/* ===== ホスト用オレンジCTAボタン（LINE緑と区別） ===== */
.kkrm-btn-primary-sm {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--kkrm-orange); color: #fff !important;
  font-size: 13px; font-weight: 700; padding: 9px 18px;
  border-radius: 100px; text-decoration: none !important; white-space: nowrap;
}
.kkrm-btn-primary-sm:hover { opacity: 0.9; }
.kkrm-btn-primary-lg {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--kkrm-orange); color: #fff !important;
  font-size: 16px; font-weight: 700; padding: 16px 40px;
  border-radius: 100px; text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(212,113,58,0.3);
}
.kkrm-btn-primary-lg:hover { opacity: 0.92; }
@media (max-width: 700px) {
  .kkrm-btn-primary-lg { width: 100%; justify-content: center; }
}

/* ===== 料金：立ち上げフェーズ限定バッジ ===== */
.kkrm-host-price-badge {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  color: #fff; background: var(--kkrm-orange);
  border-radius: 100px; padding: 5px 16px; margin-bottom: 14px;
}
