:root {
  --bg-primary: #FFFFFF;
  --bg-secondary: #FF6600;
  /* Friendly Orange */
  --bg-soft: #FFF9F5;
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-inverse: #FFFFFF;
  --accent: #FF6600;
  --border: #FFE0CC;
  --container-width: 1100px;
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.outfit {
  font-family: 'Outfit', 'Noto Sans JP', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
}

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

.text-white {
  color: #ffffff !important;
}

.text-accent {
  color: var(--accent) !important;
}

.mt-6 {
  margin-top: 3rem;
}

/* Navbar */
.navbar {
  height: 80px;
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.navbar .container {
  width: 100%;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
}

.nav-logo {
  height: 32px;
}

.nav-partner {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  border-left: 1px solid var(--border);
  padding-left: 12px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-nav {
  background: var(--bg-secondary);
  color: var(--text-inverse);
  padding: 10px 24px;
  font-size: 14px;
}

.btn-hero {
  background: var(--bg-secondary);
  color: var(--text-inverse);
  font-size: 18px;
  padding: 18px 40px;
  box-shadow: 0 10px 20px rgba(255, 102, 0, 0.2);
}

.btn-large {
  background: #FFFFFF;
  color: var(--accent);
  font-size: 20px;
  padding: 22px 48px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Hero Badge */
.hero-badge-wrap {
  margin-bottom: 20px;
}

.achievement-badge {
  background: #FFF5CC;
  color: #B28B00;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 900;
  display: inline-block;
  border: 1px solid #FFD700;
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text-content {
  flex: 1.2;
}

.hero-title {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 30px;
}

.hero-title .highlight {
  color: var(--accent);
  display: inline-block;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.hero-tagline {
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

.hero-image-wrap {
  flex: 1;
  position: relative;
}

.hero-image {
  width: 100%;
  border-radius: 40px;
  box-shadow: none;
  transition: var(--transition);
}

.hero-image:hover {
  transform: scale(1.05) rotate(1deg);
}

/* Empathy Section */
.empathy {
  padding: 100px 0;
  background: #1A1A1A;
  color: #FFFFFF;
}

.empathy-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.empathy-image-wrap {
  flex: 1;
}

.empathy-image {
  width: 100%;
  border-radius: 30px;
  opacity: 0.8;
}

.empathy-text {
  flex: 1.2;
}

.empathy-q {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 30px;
}

.pain-list {
  list-style: none;
  margin-bottom: 30px;
}

.pain-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
  font-size: 17px;
  color: #CCCCCC;
}

.pain-list li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: #FF4444;
  font-weight: 900;
  font-size: 20px;
}

.empathy-message {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

/* Solution Section */
.solution {
  padding: 120px 0;
  background: var(--bg-soft);
}

.solution-header {
  text-align: center;
  margin-bottom: 60px;
}

.solution-badge {
  background: var(--accent);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 12px;
}

.solution-intro {
  margin-top: 20px;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: #fff;
  padding: 50px 30px;
  border-radius: 30px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

.feature-card:hover {
  border-color: var(--border);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 16px;
}

/* Feature Grid Highlight */
.is-highlight {
  border: 2px solid var(--accent) !important;
  box-shadow: 0 20px 40px rgba(255, 102, 0, 0.1) !important;
}

.is-highlight h3 {
  color: var(--accent);
}

/* Comparison Table */
.comparison {
  padding: 120px 0;
}

.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 60px;
}

.comparison-table-wrap {
  overflow-x: auto;
  background: #fff;
  border-radius: 30px;
  border: 1px solid var(--border);
}

.reward .comparison-table-wrap {
  background: rgba(255, 255, 255, 0.03) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.comparison-table th,
.comparison-table td {
  padding: 25px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  background: #F9F9F9;
  font-weight: 700;
  color: #999;
}

.comparison-table .is-rocket {
  background: #FFF9F5;
  color: var(--accent);
  font-weight: 900;
}

/* Scroll Hint for Mobile Tables */
.scroll-hint {
  display: none;
  text-align: right;
  font-size: 24px;
  font-weight: 900;
  color: var(--text-secondary);
  line-height: 1;
  margin-bottom: 4px;
  animation: scroll-pulse 2s infinite;
}

.reward .scroll-hint {
  color: rgba(255, 255, 255, 0.6);
}

@keyframes scroll-pulse {
  0% { opacity: 0.6; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(5px); }
  100% { opacity: 0.6; transform: translateX(0); }
}

@media (max-width: 768px) {
  .scroll-hint {
    display: block;
  }
}

/* Reward Section */
/* Reward Formula (Basic Reward) */
.reward-formula-wrapper {
  margin-top: 50px;
}

.formula-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.formula-item {
  flex: 1;
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 140px;
}

.formula-item .label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 15px;
  opacity: 0.8;
}

.formula-item .icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.formula-item .desc {
  font-size: 12px;
  opacity: 0.5;
  margin-top: 5px;
}

.plus {
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
}

.formula-item.is-highlight {
  background: rgba(255, 102, 0, 0.1);
  border: 2px solid var(--accent);
  box-shadow: 0 10px 20px rgba(255, 102, 0, 0.1);
}

.formula-item.is-highlight .label {
  color: var(--accent);
  opacity: 1;
}

.formula-item.is-accent {
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid #FFD700;
}

.formula-item.is-accent .label {
  color: #FFD700;
  opacity: 1;
}

.formula-summary {
  font-size: 16px;
  opacity: 0.8;
}

/* Reward Details Table Overrides */
#reward-details .comparison-table th {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-bottom: 2px solid var(--accent);
}

#reward-details .comparison-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.reward-conditions {
  max-width: 800px;
  margin: 40px auto;
  text-align: left;
}

.condition-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.condition-note {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 10px;
  line-height: 1.6;
}

.reward-model-summary {
  font-size: 20px;
  font-weight: 700;
  color: #FFD700;
}

/* Quest Card (Incentive) */
.quest-card {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid #FFD700;
  /* Gold border for Quest */
  border-radius: 40px;
  padding: 60px 40px;
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.quest-card.is-premium {
  border-color: #00FFCC;
  box-shadow: 0 20px 50px rgba(0, 255, 204, 0.15);
}

.quest-card.is-premium .quest-label {
  background: #00FFCC;
  color: #000;
}

.quest-card.is-premium .reward-icon {
  text-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
}

.quest-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.quest-label {
  background: #FFD700;
  color: #000;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 20px;
}

.quest-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
}

.quest-target,
.quest-reward {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}

.target-icon,
.reward-icon {
  font-size: 48px;
}

.target-txt .small,
.reward-txt .small {
  display: block;
  font-size: 13px;
  opacity: 0.6;
  margin-bottom: 5px;
}

.target-txt strong,
.reward-txt strong {
  display: block;
  font-size: 24px;
  color: #fff;
}

.reward-txt strong {
  color: #FFD700;
  font-size: 36px;
  font-family: 'Outfit';
}

.quest-arrow {
  font-size: 32px;
  color: #FFD700;
  font-weight: 900;
}

.mt-6 {
  margin-top: 3rem;
}

/* Reward Simulation */
.sim-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: 50px auto 0;
}

.sim-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  padding: 50px;
  text-align: left;
  transition: transform 0.3s ease;
}

.sim-card:hover {
  transform: translateY(-10px);
}

.sim-card.is-primary {
  background: rgba(255, 102, 0, 0.05);
  border: 2px solid var(--accent);
  box-shadow: 0 20px 40px rgba(255, 102, 0, 0.1);
}

.sim-header .type {
  font-size: 13px;
  font-weight: 700;
  opacity: 0.6;
  display: block;
  margin-bottom: 10px;
}

.sim-header h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 30px;
  color: #fff;
}

.sim-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sim-row strong {
  color: var(--accent);
}

.sim-main-reward {
  background: rgba(0, 0, 0, 0.2);
  padding: 30px;
  border-radius: 30px;
  margin-bottom: 25px;
}

.day-val,
.month-val {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.day-val {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
}

.sim-main-reward .lbl {
  font-size: 14px;
  opacity: 0.7;
}

.sim-main-reward strong {
  font-size: 42px;
  font-family: 'Outfit';
  color: #FFD700;
  line-height: 1;
}

.sim-main-reward .unit {
  font-size: 16px;
  margin-left: 5px;
  opacity: 0.8;
}

.sim-desc {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.6;
}

/* Reward Timeline (Off-hours) */
.reward {
  padding: 120px 0;
  background: #1A1A1A;
  /* Dark background for premium feel */
  color: #fff;
  text-align: center;
}

.section-subtitle {
  margin-top: -40px;
  margin-bottom: 60px;
  opacity: 0.8;
  font-size: 18px;
}

.reward-timeline-wrapper {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  text-align: left;
}

.timeline-column {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.timeline-column:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.bonus-model {
  border: 2px solid #007AFF;
  /* Apple Blue inspired for "Trust" */
  box-shadow: 0 20px 40px rgba(0, 122, 255, 0.15);
}

.regular-model {
  border: 1px solid rgba(255, 68, 68, 0.3);
  /* Reddish for "Regular" */
}

.timeline-header {
  margin-bottom: 40px;
  position: relative;
}

.timeline-header h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.timeline-header .badge {
  background: #007AFF;
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 900;
  display: inline-block;
  margin-bottom: 10px;
}

.header-desc {
  font-size: 14px;
  opacity: 0.6;
}

.timeline-body {
  position: relative;
  padding-left: 40px;
  flex-grow: 1;
}

.timeline-line {
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item::before {
  content: attr(data-time);
  position: absolute;
  left: -40px;
  top: -25px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(26, 26, 26, 1);
  padding: 2px 8px;
  border-radius: 4px;
}

.time-node {
  position: absolute;
  left: -34px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: #333;
  border: 3px solid #fff;
  border-radius: 50%;
  z-index: 2;
}

.is-shift .time-node {
  background: #fff;
}

.is-bonus .time-node {
  background: #FFD700;
  border-color: #FFD700;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.item-content {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.item-header {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 5px;
}

.reward-tag {
  font-size: 13px;
  color: #007AFF;
  font-weight: 700;
}

.reward-amount {
  font-size: 20px;
  font-weight: 900;
  margin: 10px 0;
  font-family: 'Outfit';
}

.reward-amount .val {
  font-size: 32px;
}

/* Standard Reward (Normal Design) */
.reward-amount.standard {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  display: inline-block;
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 16px;
}

.reward-amount.standard .val {
  font-size: 24px;
}

/* Premium Reward Highlight (Reference Match) */
.reward-amount.premium {
  background: linear-gradient(135deg, #FFE066 0%, #FFCC00 100%);
  color: #000;
  display: inline-block;
  padding: 8px 18px;
  border-radius: 8px;
  text-shadow: none;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.8);
  transform: rotate(-1deg);
  font-size: 22px;
}

.reward-amount.premium .val {
  font-size: 36px;
}

.item-note {
  font-size: 12px;
  opacity: 0.5;
}

.timeline-footer {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.total-income .label {
  display: block;
  font-size: 14px;
  opacity: 0.6;
  margin-bottom: 5px;
}

.total-income .amount {
  font-size: 28px;
  font-weight: 900;
  color: #FFD700;
  font-family: 'Outfit';
}

.total-income .amount .val {
  font-size: 44px;
}

/* Appendix */
.reward-appendix {
  margin-top: 60px;
}

.appendix-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.appendix-card h4 {
  font-size: 20px;
  margin-bottom: 25px;
}

.appendix-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}

.appendix-item span {
  display: block;
  font-size: 14px;
  opacity: 0.6;
  margin-bottom: 5px;
}

.appendix-item strong {
  font-size: 28px;
  color: var(--accent);
  font-family: 'Outfit';
}

.appendix-note {
  font-size: 13px;
  opacity: 0.5;
}

/* Area Section */
.area {
  padding: 100px 0;
}

.area-wrap {
  background: var(--bg-soft);
  border-radius: 40px;
  padding: 80px 40px;
}

.area-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.area-box {
  background: #fff;
  padding: 40px 20px;
  border-radius: 30px;
  text-align: center;
  border: 2px solid #fff;
  transition: var(--transition);
}

.area-box:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
}

.area-header {
  font-family: 'Outfit';
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 20px;
}

.station-list {
  list-style: none;
  font-size: 14px;
  color: var(--text-secondary);
}

/* Steps Section */
.steps {
  padding: 120px 0;
}

.step-app-wrap {
  display: flex;
  align-items: center;
  gap: 60px;
}

.line-mockup {
  width: 320px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.step-content {
  flex: 1;
}

.step-row {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.step-circle {
  background: var(--accent);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
}

.step-txt strong {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
}

.step-txt p {
  color: var(--text-secondary);
  font-size: 15px;
}

/* SVG Illustrations Styling */
.hero-svg, .empathy-svg {
  width: 100%;
  height: auto;
  max-width: 500px;
  display: block;
  margin: 0 auto;
}

.hero-svg {
  filter: drop-shadow(0 20px 40px rgba(255, 102, 0, 0.1));
}

.empathy-svg {
  filter: drop-shadow(0 0 30px rgba(0, 255, 204, 0.1));
}

.hero-svg path, .hero-svg circle, .hero-svg rect {
  transition: all 0.3s ease;
}

.hero-svg:hover rect[fill="#FF6600"] {
  fill: #00FFCC;
}

.hero-svg:hover path[stroke="#00FFCC"] {
  stroke: #FF6600;
  stroke-width: 6;
}

/* Reward Section Enhancements */
.shift-info {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.shift-box {
  background: rgba(255, 255, 255, 0.2);
  padding: 15px 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 18px;
}

.shift-box strong {
  display: block;
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 5px;
}

.shift-note {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.8;
  width: 100%;
}

/* Requirements Section */
.requirements {
  padding: 120px 0;
  background: #fff;
}

.req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.req-box {
  background: var(--bg-soft);
  padding: 40px;
  border-radius: 30px;
}

.req-box h3 {
  margin-bottom: 20px;
  color: var(--accent);
}

.req-list {
  list-style: none;
}

.req-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-weight: 700;
}

.req-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.docs-detail h3 {
  text-align: center;
  margin-bottom: 40px;
}

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

.doc-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: 20px;
  transition: var(--transition);
}

.doc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.doc-card h4 {
  margin-bottom: 15px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
  padding-bottom: 5px;
}

.doc-card ul {
  list-style: none;
  color: var(--text-secondary);
  font-size: 14px;
}

.doc-card li {
  margin-bottom: 8px;
}

/* Appendix Rules */
.appendix-rules {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 20px;
  margin-top: 30px;
}

.rule-list {
  list-style: none;
  padding: 0;
}

.rule-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.rule-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.rule-list li strong {
  color: #fff;
}

.mt-4 {
  margin-top: 2rem;
}

.text-left {
  text-align: left;
}

/* FAQ Section */
.faq {
  padding: 120px 0;
  background: var(--bg-soft);
}

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

.faq-genre {
  margin-bottom: 80px;
}

.faq-genre:last-child {
  margin-bottom: 0;
}

.genre-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 4px solid var(--accent);
  font-family: 'Outfit', 'Noto Sans JP', sans-serif;
  display: inline-block;
  letter-spacing: 0.05em;
}

/* .faq-list styles handled by container */

.faq-item {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.4s, box-shadow 0.4s;
}

.faq-question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #fafafa;
}

.faq-icon {
  font-style: normal;
  font-size: 24px;
  color: var(--accent);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  min-height: 0;
  padding: 0 30px;
  overflow: hidden;
  color: var(--text-secondary);
  line-height: 1.8;
  transition: padding 0.4s;
}

.faq-item.is-open {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.05);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer-inner {
  padding-bottom: 25px;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

/* Documents Section */
.documents {
  padding: 120px 0;
  background: #fff;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.doc-card {
  background: var(--bg-soft);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.doc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.doc-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--border);
}

.doc-card h3::before {
  content: "";
  width: 8px;
  height: 24px;
  background: var(--accent);
  border-radius: 4px;
}

.doc-list {
  list-style: none;
  padding: 0;
}

.doc-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.doc-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.doc-note {
  font-size: 0.85rem;
  color: #777;
  display: block;
  margin-top: 4px;
  line-height: 1.4;
}

.qualification-list {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.qualification-list .full-width {
  grid-column: span 2;
}

/* Notes Section */
.notes {
  padding: 100px 0;
}

.notes-wrap {
  background: var(--bg-soft);
  border-radius: 40px;
  padding: 80px 40px;
}

.notes-content {
  max-width: 800px;
  margin: 0 auto;
}

.notes-list {
  list-style: none;
  background: transparent;
}

.notes-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #000;
}

.notes-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #000;
}

.notes-subtext {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: #666;
  margin-top: 4px;
}

@media (max-width: 600px) {
  .qualification-list {
    grid-template-columns: 1fr;
  }
  .qualification-list .full-width {
    grid-column: span 1;
  }
}

/* CTA Section */
.cta-section {
  padding-bottom: 120px;
}

.cta-box {
  background: linear-gradient(135deg, #FF6600 0%, #FF9933 100%);
  color: #fff;
  padding: 120px 40px;
  border-radius: 60px;
  text-align: center;
  box-shadow: 0 40px 80px rgba(255, 102, 0, 0.3);
}

.cta-box h2 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 25px;
}

.cta-box p {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 40px;
}

.cta-badge {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
  display: inline-block;
}

/* Footer */
.site-footer {
  padding: 80px 0;
  background: #f9f9f9;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-info {
  margin-bottom: 40px;
}

.footer-info h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.footer-info p {
  color: var(--text-secondary);
  font-weight: 700;
}

.footer-bottom {
  color: var(--text-secondary);
  font-size: 13px;
  border-top: 1px solid var(--border);
  padding-top: 30px;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .nav-partner {
    display: none;
  }

  .empathy-content {
    flex-direction: column;
    text-align: center;
  }

  .empathy-q {
    font-size: 24px;
  }

  .reward-timeline-wrapper,
  .reward-formula-wrapper,
  .quest-body,
  .sim-grid,
  .feature-grid,
  .area-visual-grid,
  .req-grid,
  .doc-grid,
  .docs-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sim-card {
    padding: 30px 20px;
  }

  .sim-main-reward strong {
    font-size: 32px;
  }

  .quest-body {
    flex-direction: column;
    gap: 20px;
  }

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

  .quest-card {
    padding: 40px 20px;
  }

  .quest-target,
  .quest-reward {
    width: 100%;
  }

  .formula-card {
    flex-direction: column;
    gap: 15px;
  }

  .plus {
    transform: rotate(90deg);
  }

  .reward-timeline-wrapper {
    flex-direction: column;
  }

  .comparison-table-wrap {
    margin: 0 -20px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 15px 10px;
    font-size: 13px;
  }

  .reward-timeline-wrapper {
    padding: 0 10px;
  }

  .timeline-column {
    padding: 30px 20px;
  }

  .req-box {
    padding: 30px 20px;
  }

  .step-app-wrap {
    flex-direction: column;
    text-align: center;
  }

  .line-mockup {
    width: 200px;
    margin: 0 auto 30px;
  }

  .step-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step-circle {
    margin-bottom: 15px;
  }

  .faq {
    padding: 80px 0;
  }

  .faq-question {
    padding: 20px;
    font-size: 15px;
  }

  .cta-box {
    border-radius: 40px;
    padding: 60px 20px;
  }

  .cta-box h2 {
    font-size: 28px;
  }

  .btn-large {
    width: 100%;
    padding: 18px 20px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 28px;
  }

  .total-income .amount .val {
    font-size: 32px;
  }
}