/* CSS Document */

/* =====================================
   Core Variables
   ===================================== */
:root {

  /* ---------- Color ---------- */
  --color-bg-base: #333333;
  --color-bg-sub: #0d0d0d;
  --color-bg-panel: #141414;

  --color-text-main: #eaeaea;
  --color-text-sub: #b0b0b0;
  --color-text-muted: #7a7a7a;

  --color-accent-primary: #5af54a;/*メイングリーン*/
  --color-accent-secondary: #ff2a6d;

  --color-border-light: rgba(255,255,255,0.08);
  --color-border-strong: rgba(255,255,255,0.2);
	
 


  /* ---------- Typography ---------- */
  --font-base: "Noto Sans JP", system-ui, sans-serif;
  --font-heading:"Noto Sans JP", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: clamp(1.5rem, 4.67vw, 24px);
  --font-size-xxl: clamp(1.75rem, 2.5vw, 2.5rem);
  --font-size-xxxl: clamp(2rem, 2.5vw, 3.5rem);

  --line-height-base: 1.7;
  --line-height-heading: 1.3;


  /* ---------- Spacing ---------- */
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 120px;


  /* ---------- Layout ---------- */
  --content-width: 1200px;
  --content-width-narrow: 900px;

  /* ---------- Motion ---------- */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
}

/* =====================================
   Base
   ===================================== */
body {
/*  background: var(--color-bg-base);*/
  color: var(--color-text-main);
  font-family: var(--font-base);
  font-size: var(--font-size-md);
  line-height: var(--line-height-base);
}

.mt-2xs {
	margin-top: var(--space-2xs);
}
.mt-sm {
	margin-top: var(--space-sm);
}
.mt-md {
	margin-top: var(--space-md);
}
.mt-lg {
	margin-top: var(--space-lg);
}
.mt-xl {
	margin-top: var(--space-xl);
}

.font-color-green1 {
	color: var(--color-accent-primary) !important;
}

.font-size-xxl {
	font-size: var(--font-size-xxl);
}
.font-size-xxxl {
	font-size: var(--font-size-xxxl);
}
/* =====================================
   Layout (SWELL Override)
   ===================================== */
.l-header {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .8);
}
.l-footer__foot, .l-footer__widgetArea {
    box-shadow: 0px -6px 8px rgb(90 245 74);
}
.l-container {
/*  max-width: var(--content-width);
  padding-left: var(--space-md);
  padding-right: var(--space-md);*/
}
.c-fixBtn {
	background: #303030;
	color: var(--color-accent-primary) !important;
}

/* =====================================
   Headings
   ===================================== */
.c-heading,
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: var(--line-height-heading);
  color: var(--color-text-main);
}

h1 {
  font-size: var(--font-size-xxl);
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}

/* =====================================
   Text
   ===================================== */
p {
  margin-bottom: var(--space-md);
  color: var(--color-text-sub);
}

a {
  color: var(--color-accent-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent-secondary);
}

/* =====================================
   Section Spacing
   ===================================== */
section {
/*  margin-bottom: var(--space-xl);*/
}

/* =====================================
   Divider
   ===================================== */
hr {
  border: none;
  border-top: 1px solid var(--color-border-light);
  margin: var(--space-lg) 0;
}

/* =====================================
   Theme Modifier
   ===================================== */
[data-theme="dark"] {
  --color-bg-base: #000;
  --color-text-main: #eaeaea;
}

[data-theme="light"] {
  --color-bg-base: #ffffff;
  --color-text-main: #111;
}


/* =====================================
   Custamize
   ===================================== */
/*
   top page
   ===================================== */
/*三つのリンク*/
.link-block a {
    display: block;
    padding: 25px 0;
}

/*ニュース*/
.top-news-list .u-thin {
    min-width: 100px;
}
.top-news-list .p-postList__item a{
	border: none;
}
.top-news-list .p-postList__body {
	display: flex;
}

:root{
  --neon:#8BFF6A;
  --line:rgba(139,255,106,.45);
  --gap:24px;
  --lineH:4px;
}

/* タイムライン */
.era-line{
  list-style:none;
  margin:0;
  padding:0;
  font-weight:700;
  letter-spacing:.02em;
  color:var(--neon);
  text-shadow:0 0 8px rgba(139,255,106,.35);
}
.era-line li{
  display:flex;
  align-items:center;
  gap:var(--gap);
}
.era-line li::after{
  content:"";
  height:var(--lineH);
  background:linear-gradient(90deg, var(--line), rgba(139,255,106,0));
  box-shadow:0 0 6px rgba(139,255,106,.25);
}

/* PC：横一列、各項目の後ろに罫線（最後は罫線なし） */
@media (min-width: 769px){
  .era-line{
    display:flex;
    align-items:center;
    width:100%;
  }

  .era-line li{
    flex: 1 1 0;        /* これで全体がちゃんと広がる */
    min-width: 0;
    justify-content: flex-start;
  }

  .era-line li span{
    flex: 0 0 auto;     /* 文字は縮めない */
    white-space: nowrap;/* 改行しない */
  }

  .era-line li::after{
    flex: 1 1 auto;     /* 罫線が余白を吸う */
    min-width: 24px;    /* 罫線の最低幅 */
  }

  .era-line li:last-child{
    flex: 0 0 auto;     /* 最後は文字だけでOK */
  }
  .era-line li:last-child::after{
    display:none;
  }
}

/* SP：縦並び、各行の右方向へ罫線 */
@media (max-width: 768px){
  .era-line{
    display:flex;
    flex-direction:column;
    gap:22px;
  }
  .era-line li::after{
    flex:1;
  }
}

/*下の装飾*/
:root{
  --neon:#8BFF6A;
  --line:rgba(139,255,106,.55);
  --bg:#0a0a0a;
}

/* レール全体 */
.neo-rail{
  display:flex;
  align-items:center;
  gap:14px;
  width:100%;
  padding:14px 16px;
  background: transparent; /* 必要なら var(--bg) */
}

/* 左の円 */
.neo-rail__dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background: var(--neon);
  box-shadow: 0 0 10px rgba(139,255,106,.65);
  flex: 0 0 auto;
}

/* 真ん中の罫線：ここが伸びる */
.neo-rail__line{
  height:2px;
  background: linear-gradient(90deg, var(--line), rgba(139,255,106,.15));
  box-shadow: 0 0 8px rgba(139,255,106,.25);
  flex: 1 1 auto;      /* これで右タグまで繋がる */
  min-width: 24px;
}

/* 右の矩形ラベル */
.neo-rail__tag{
  flex: 0 0 auto;
  padding: 10px 26px;
  border: 2px solid var(--line);
  color: var(--neon);
  text-transform: lowercase;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1;
  background: rgba(0,0,0,.35);
  box-shadow:
    0 0 0 2px rgba(139,255,106,.08) inset,
    0 0 10px rgba(139,255,106,.25);
}
