@charset "utf-8";
/*
Theme Name:Veridium
Theme URI: https://
Author: minotch
Author URI: https://
Description: since.2025 Veritas（真実）＋Medium（媒体）。真実を導く未来のテクノロジーや知識媒体の印象。
Version： 1.0.0
*/
html {font-size: 100%;}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  margin: 0;
  padding: 0;
  color: #333;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}
img {max-width: 100%; height: auto;}
.copyright{text-align: center; padding:10px 0;}
.blue{color:#5f7cff}
.bgblue{background-color:#5f7cff}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: transparent;
  color: white;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.header.scrolled {
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
}

.header-nav li a {
  position: relative;
  color: inherit;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease;
}

/* 下線アニメーション */
.header-nav li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: width 0.3s ease;
}

.header-nav li a:hover::after {
  width: 100%;
}

/* スクロール後のヘッダーでも currentColor が適用されるので、色統一可能 */
.header.scrolled .header-nav li a {
  color: #fff;
}





.site-tagline {
  color: #5f7cff;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.header-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-logo {
  width: 120px;
  height: auto;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-nav {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-nav li a {
  text-decoration: none;
  font-weight: bold;
}

.header-cta {
  padding: 8px 16px;
  background-color: #9b6be9;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}







/* フッター */
.footer {
  background-color: #000;
  color: #fff;
  padding: 100px 20px 40px 20px;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #5f7cff;
}

.footer-logo img {
  width: 100px;
  height: auto;
}

.footer-sns {
  margin-bottom: 15px;
}

.footer-sns a {
  display: inline-block;
  margin: 0 10px;
  transition: opacity 0.3s ease;
}

.footer-sns a:hover {
  opacity: 0.7;
}

.footer-sns img {
  width: 24px;
  height: 24px;
}

/* コンテンツ */
.contents{
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
}
.contens,.company-detail{
  line-height: 2.5em;
}

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');

.sp-page-title-wrap {
  position: relative;
  display: inline-block;
  padding: 20px 40px;
  text-align: center;
  margin-bottom: 40px;
}

.sp-page-title {
    color: white;
    background: linear-gradient(90deg, #0ff, #f0f, #0ff);
    -webkit-background-clip: text;
    text-shadow: 0 0 5px #0ff, 0 0 10px #f0f;
    position: relative;
    z-index: 2;
}

/* 装飾線（上下） */
.sp-page-title-wrap::before,
.sp-page-title-wrap::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0ff, #f0f, transparent);
  box-shadow: 0 0 10px #0ff;
  animation: pulse 3s infinite linear;
}

.sp-page-title-wrap::before {
  top: 0;
}

.sp-page-title-wrap::after {
  bottom: 0;
}

/* ラインのアニメーション */
@keyframes pulse {
  0%, 100% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.2;
  }
}
