:root {
  --forest: #1a3d2b;
  --forest-mid: #2d6045;
  --forest-light: #4a9068;
  --amber: #d4780a;
  --amber-light: #f0a030;
  --cream: #f7f3ec;
  --cream-dark: #ede8de;
  --earth: #5c3d1e;
  --sky: #6aadcc;
  --text-main: #1a1a18;
  --text-mid: #3d3d38;
  --text-muted: #7a7a72;
  --white: #ffffff;
  --section-gap: 5rem;
  --radius: 4px;
  --radius-lg: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-main);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26,61,43,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.nav-logo {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.nav-logo span { color: var(--amber-light); }
.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--amber-light); }
.nav-entry-btn {
  background: var(--amber);
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 3px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-entry-btn:hover { background: var(--amber-light) !important; color: var(--white) !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  transition: transform 0.3s;
}

/* HERO */
.hero {
  min-height: 100svh;
  background: linear-gradient(160deg, #0e2a1c 0%, #1a3d2b 55%, #2d5a3d 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-mountain {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  opacity: 0.18;
}

.hero-badge {
  display: inline-block;
  background: rgba(212,120,10,0.22);
  border: 1px solid rgba(240,160,48,0.5);
  color: var(--amber-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.35rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(2.6rem, 8vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0.6em auto 0.8rem;
}
.hero-title em {
  font-style: normal;
  color: var(--amber-light);
  display: block;
  font-size: 0.35em;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  color: rgba(255,255,255,0.78);
  max-width: 500px;
  margin: 0 auto 1.8rem;
}

.hero-date-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1.2rem;
  border-radius: 99px;
  margin-bottom: 2.2rem;
}
.hero-date-chip svg { width: 16px; height: 16px; flex-shrink: 0; }

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-primary {
  background: var(--amber);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.85rem 2.2rem;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover { background: var(--amber-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.85rem 2.2rem;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 0.04em;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.06); }

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
.hero-scroll-hint svg { width: 20px; height: 20px; }

/* COUNTDOWN */
.countdown-bar {
  background: var(--forest);
  padding: 1.5rem;
  text-align: center;
}
.countdown-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--amber-light);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.countdown-units {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.countdown-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  min-width: 2.5ch;
}
.countdown-name {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}
.countdown-sep {
  font-size: 2rem;
  color: rgba(255,255,255,0.2);
  align-self: flex-start;
  margin-top: 0.1rem;
  line-height: 2.2rem;
}

/* SECTIONS */
section { padding: var(--section-gap) 1.5rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-light);
  margin-bottom: 0.6rem;
}
.section-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--forest);
  line-height: 1.25;
  margin-bottom: 0.8rem;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.8;
}

/* NEWS */
.news-section { background: var(--white); }
.news-grid {
  display: grid;
  gap: 0;
  border: 1px solid #e0ddd4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 2.5rem;
}
.news-item {
  display: flex;
  gap: 1.2rem;
  align-items: baseline;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid #e0ddd4;
  text-decoration: none;
  color: var(--text-main);
  transition: background 0.15s;
}
.news-item:last-child { border-bottom: none; }
.news-item:hover { background: var(--cream); }
.news-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.news-tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.55rem;
  border-radius: 2px;
  flex-shrink: 0;
}
.tag-info{background:#fde8ee;color:#c0304f}
.tag-report{background:#e8f5f1;color:#2a8068}
.tag-entry{background:#fff0d8;color:#8a5800}
.tag-lookingfor{background:#fff0d8;color:#8a5800}
.tag-important { background: #fce8e8; color: #8a1a1a; }
.news-title { font-size: 0.9rem; line-height: 1.5; }

/* OVERVIEW */
.overview-section { background: var(--cream); }
.overview-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.overview-card {
  background: var(--white);
  border: 1px solid #ddd9ce;
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
}
.overview-card-icon {
  width: 40px; height: 40px;
  background: #e8f4ec;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.8rem;
}
.overview-card-icon svg { width: 22px; height: 22px; color: var(--forest-mid); }
.overview-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.overview-card-value {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.4;
}
.overview-card-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  line-height: 1.5;
}

/* EVENTS / PRICING */
.events-section { background: var(--forest); }
.events-section .section-eyebrow { color: var(--amber-light); }
.events-section .section-heading { color: var(--white); }
.events-section .section-lead { color: rgba(255,255,255,0.7); }

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.event-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: background 0.2s, transform 0.2s;
}
.event-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.event-card.featured {
  border-color: var(--amber-light);
  background: rgba(212,120,10,0.12);
}
.event-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 1rem;
  width: fit-content;
}
.badge-green { background: rgba(74,144,104,0.3); color: #7dd4a4; }
.badge-amber { background: rgba(212,120,10,0.3); color: var(--amber-light); }
.badge-sky { background: rgba(106,173,204,0.3); color: #8ec8e4; }
.badge-pink { background: rgba(200,100,140,0.3); color: #e8a0c0; }

.event-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.event-dist {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}
.event-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.4rem;
}
.event-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.event-price {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}
.event-price-unit { font-size: 0.58rem; color: rgba(255,255,255,0.55); }
.event-cta {
  display: block;
  text-align: center;
  background: var(--amber);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.event-cta:hover { background: var(--amber-light); }

.event-stop {
  display: block;
  text-align: center;
  background: var(--cream-dark);
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}

/* COURSE */
.course-section { background: var(--white); }
.course-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.course-tab {
  padding: 0.5rem 1.1rem;
  border: 1.5px solid #ccc9be;
  border-radius: 3px;
  background: transparent;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
  color: var(--text-mid);
  transition: all 0.2s;
}
.course-tab.active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}
.course-tab:hover:not(.active) { border-color: var(--forest-mid); color: var(--forest); }
.course-panel { display: none; }
.course-panel.active { display: block; }
.course-img-wrap {
	border-radius: var(--radius-lg);
/*  max-width: 100%;
  overflow: hidden;
  border: 1px solid #e0ddd4; */
	margin-bottom: 1.5rem;
}
.course-img-wrap img {
	border-radius:8px;
	max-width: 100%;
	height: auto;
	display: block;
}
.course-steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.course-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  counter-increment: step;
}
.course-step-num {
  width: 26px; height: 26px;
  min-width: 26px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-top: 0.15rem;
}
.course-step-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; }

/* GALLERY */
.gallery-section { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.6rem;
  margin-top: 2rem;
}
.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.06); }

/* FAQ */
.faq-section { background: var(--white); }
.faq-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 760px;
}
details {
  border: 1px solid #e0ddd4;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
details summary {
  padding: 1rem 1.2rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  color: var(--text-main);
  transition: background 0.15s;
  gap: 1rem;
}
details summary::-webkit-details-marker { display: none; }
details summary:hover { background: var(--cream); }
details summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--forest-mid);
  flex-shrink: 0;
  transition: transform 0.2s;
}
details[open] summary::after { transform: rotate(45deg); }
details[open] summary { background: var(--cream); }
.faq-answer {
  padding: 0.8rem 1.2rem 1.2rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  border-top: 1px solid #e0ddd4;
}

/* ACCESS */
.access-section { background: var(--cream); }
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
  align-items: start;
}
.access-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #ddd9ce;
}
.access-map iframe { display: block; width: 100%; height: 340px; }
.access-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.access-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.access-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--white);
  border: 1px solid #ddd9ce;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.access-icon svg { width: 20px; height: 20px; color: var(--forest-mid); }
.access-info-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.access-info-val {
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.6;
}

/* SPONSORS */
.sponsors-section { background: var(--white); }
.sponsors-eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; color: var(--text-muted); text-transform: uppercase; margin-bottom: 1rem; }
.sponsors-label {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 1rem;
}
.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 2rem;
}

.special-sponsor-item {
  height: 100px;
  display: flex; align-items: center;
}

.special-sponsor-item img {
  max-height: 100px;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: 0.85;
  transition: opacity 0.2s, filter 0.2s;
}

.sponsor-item {
  height: 44px;
  display: flex; align-items: center;
}

.sponsor-item img {
  max-height: 44px;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: 0.85;
  transition: opacity 0.2s, filter 0.2s;
}

.special-sponsor-item:hover img { opacity: 1; filter: none; }
.sponsor-item:hover img { opacity: 1; filter: none; }
.divider { height: 1px; background: #e0ddd4; margin: 2rem 0; }

/* PROJECT */
.project-section { background: var(--forest); }
.project-section .section-eyebrow { color: var(--amber-light); }
.project-section .section-heading { color: var(--white); }
.project-section .section-lead { color: rgba(255,255,255,0.65); }
.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}
.project-link-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 1rem 1.4rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: background 0.2s;
}
.project-link-item:hover { background: rgba(255,255,255,0.14); }
.project-link-item img { height: 32px; max-width: 120px; object-fit: contain; }
.project-link-text { font-size: 0.85rem; color: rgba(255,255,255,0.75); }

.social-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 2rem;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 3px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: border-color 0.2s, background 0.2s;
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.06); }

/* FOOTER */
footer {
  background: #0d1f15;
  padding: 2.5rem 1.5rem;
  text-align: center;
}
footer .footer-logo {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}
footer .footer-logo span { color: var(--amber-light); }
footer .footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin-top: 0.5rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 62px; left: 0; right: 0;
    background: var(--forest);
    padding: 1.5rem;
    gap: 1.2rem;
  }
  .nav-links.open a { font-size: 1rem; }
  .access-grid { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  section { padding: 3rem 1rem; }
  .hero { padding: 6rem 1rem 3.5rem; }
}

/* BACK TO TOP */
.back-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px; height: 44px;
  background: var(--forest);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s, background 0.2s;
  z-index: 90;
}
.back-top svg { width: 20px; height: 20px; color: var(--white); }
.back-top:hover { background: var(--forest-mid); }
.back-top.visible { opacity: 1; }

/* ENTRY CTA BANNER */
.entry-banner {
  background: var(--amber);
  padding: 1.4rem 1.5rem;
  text-align: center;
}
.entry-banner p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 0.8rem;
}
.entry-banner strong { color: var(--white); }
.entry-banner .btn-primary {
  background: var(--white);
  color: var(--amber);
  font-size: 0.95rem;
}
.entry-banner .btn-primary:hover { background: var(--cream); }

.table {
  width: 100%;
  margin-bottom: 1.5rem;
  color: #000; }
  .table th,
  .table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6; }
  .table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6; }
  .table tbody + tbody {
    border-top: 2px solid #dee2e6; }

.table-sm th,
.table-sm td {
  padding: 0.3rem; }

.table-bordered {
  border: 1px solid #dee2e6; }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6; }
  .table-bordered thead th,
  .table-bordered thead td {
    border-bottom-width: 2px; }

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0; }

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05); }

.table-hover tbody tr:hover {
  color: #000;
  background-color: rgba(0, 0, 0, 0.075); }

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #badbb8; }

.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #7fbd7a; }

.table-hover .table-primary:hover {
  background-color: #aad2a7; }
  .table-hover .table-primary:hover > td,
  .table-hover .table-primary:hover > th {
    background-color: #aad2a7; }

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #ced7f1; }

.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: #a3b5e6; }

.table-hover .table-secondary:hover {
  background-color: #bac7eb; }
  .table-hover .table-secondary:hover > td,
  .table-hover .table-secondary:hover > th {
    background-color: #bac7eb; }

.table-success,
.table-success > th,
.table-success > td {
  background-color: #c3e6cb; }

.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #8fd19e; }

.table-hover .table-success:hover {
  background-color: #b1dfbb; }
  .table-hover .table-success:hover > td,
  .table-hover .table-success:hover > th {
    background-color: #b1dfbb; }

.table-info,
.table-info > th,
.table-info > td {
  background-color: #f1f1f1; }

.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #e4e4e4; }

.table-hover .table-info:hover {
  background-color: #e4e4e4; }
  .table-hover .table-info:hover > td,
  .table-hover .table-info:hover > th {
    background-color: #e4e4e4; }

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffeeba; }

.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #ffdf7e; }

.table-hover .table-warning:hover {
  background-color: #ffe8a1; }
  .table-hover .table-warning:hover > td,
  .table-hover .table-warning:hover > th {
    background-color: #ffe8a1; }

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f5c6cb; }

.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #ed969e; }

.table-hover .table-danger:hover {
  background-color: #f1b0b7; }
  .table-hover .table-danger:hover > td,
  .table-hover .table-danger:hover > th {
    background-color: #f1b0b7; }

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fcfcfc; }

.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: #f9f9f9; }

.table-hover .table-light:hover {
  background-color: #efefef; }
  .table-hover .table-light:hover > td,
  .table-hover .table-light:hover > th {
    background-color: #efefef; }

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #bdbdbd; }

.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #858585; }

.table-hover .table-dark:hover {
  background-color: #b0b0b0; }
  .table-hover .table-dark:hover > td,
  .table-hover .table-dark:hover > th {
    background-color: #b0b0b0; }

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075); }

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075); }
  .table-hover .table-active:hover > td,
  .table-hover .table-active:hover > th {
    background-color: rgba(0, 0, 0, 0.075); }

.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55; }

.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6; }

.table-dark {
  color: #fff;
  background-color: #343a40; }
  .table-dark th,
  .table-dark td,
  .table-dark thead th {
    border-color: #454d55; }
  .table-dark.table-bordered {
    border: 0; }
  .table-dark.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.05); }
  .table-dark.table-hover tbody tr:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.075); }

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; }
    .table-responsive-sm > .table-bordered {
      border: 0; } }

@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; }
    .table-responsive-md > .table-bordered {
      border: 0; } }

@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; }
    .table-responsive-lg > .table-bordered {
      border: 0; } }

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; }
    .table-responsive-xl > .table-bordered {
      border: 0; } }

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; }
  .table-responsive > .table-bordered {
    border: 0; }
