@charset "UTF-8";
/* 除算math.divを使うのに必要な記述 */
/* ----------------------------------
   VARIABLES
---------------------------------- */
:root {
  --main-bg: #050505;
  --card-bg: #0e0e0e;
  --text-white: #ffffff;
  --accent-orange: #f39800;
  --gray-text: #888888;
  --font-en: Montserrat, sans-serif;
  --font-jp: Gen Interface JP, Zen Kaku Gothic New, sans-serif;
}

/* =========================================
   SUGOYOKU CYBER THEME - SCSS (FULL COMPILED)
   ========================================= */
/* ----------------------------------
   BASE (62.5% = 10px)
   ---------------------------------- */
html {
  font-size: 62.5%;
}

body {
  background-color: var(--main-bg);
  color: var(--text-white);
  font-family: var(--font-jp);
  font-size: 1.6rem;
  /* 16px base */
  line-height: 1.8;
  letter-spacing: 0.05em;
}

/* =========================================
   トップページ限定：ローディング完了後にヘッダー・フッター表示
   ========================================= */
/* トップページの場合 (bodyタグに .home または .front-page がある) */
body.home,
body.front-page {
  /* 対象：ヘッダーと固定フッター */
}
body.home #header,
body.home .cyber-fixed-footer,
body.front-page #header,
body.front-page .cyber-fixed-footer {
  /* ▼ 初期状態: 完全に隠しておく */
  opacity: 0;
  visibility: hidden;
}
body.home,
body.front-page {
  /* ▼▼▼ ローディング完了後（is-loading が外れたら）発火 ▼▼▼ */
}
body.home:not(.is-loading) #header,
body.home:not(.is-loading) .cyber-fixed-footer,
body.front-page:not(.is-loading) #header,
body.front-page:not(.is-loading) .cyber-fixed-footer {
  /* アニメーション定義: 名前 時間 イージング 遅延時間 完了後の状態 */
  -webkit-animation: delayedFadeIn 1s ease 0.5s forwards;
          animation: delayedFadeIn 1s ease 0.5s forwards;
}

/* フェードインアニメーションの定義 */
@-webkit-keyframes delayedFadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  1% {
    visibility: visible;
    /* 開始直後に存在させる */
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes delayedFadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  1% {
    visibility: visible;
    /* 開始直後に存在させる */
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
/* ----------------------------------
   COMMON COMPONENTS
   ---------------------------------- */
/* 背景に敷くグリッドアニメーション */
.cyber-bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  /* コンテンツの一番後ろ */
  background-image: -webkit-linear-gradient(rgba(50, 50, 50, 0.3) 1px, transparent 1px), -webkit-linear-gradient(left, rgba(50, 50, 50, 0.3) 1px, transparent 1px);
  background-image: linear-gradient(rgba(50, 50, 50, 0.3) 1px, transparent 1px), linear-gradient(90deg, rgba(50, 50, 50, 0.3) 1px, transparent 1px);
  background-size: 50px 50px;
  /* グリッドのサイズ */
  pointer-events: none;
  -webkit-perspective: 500px;
          perspective: 500px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.cyber-bg-grid::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 下から光が差しているようなグラデーション */
  background: -webkit-radial-gradient(center, circle, transparent 0%, #050505 80%);
  background: radial-gradient(circle at center, transparent 0%, #050505 80%);
}

.cyber-section {
  padding: 100px 0%;
}
@media screen and (min-width: 769px) {
  .cyber-section {
    padding: 200px 5%;
  }
}

.l-container {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .l-container {
    width: 90%;
  }
}

/* Section Title */
.cyber-section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}
.cyber-section-title .en {
  display: block;
  font-family: var(--font-en);
  font-size: 8rem;
  /* 80px */
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--text-white);
  opacity: 0.3;
}
@media (max-width: 768px) {
  .cyber-section-title .en {
    font-size: 10vw;
  }
}
.cyber-section-title .ja {
  display: block;
  font-size: 3.6rem;
  /* 36px */
  font-weight: 700;
  color: var(--text-white);
  margin-top: -30px;
  text-shadow: 0 0 20px rgba(255, 85, 0, 0.5);
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .cyber-section-title .ja {
    font-size: 6vw;
    margin-top: -20px;
  }
}

/* ----------------------------------
   HERO SECTION
   ---------------------------------- */
#hero-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #000;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.vanta-canvas {
  position: fixed !important;
}

#vanta-trunk {
  position: fixed;
  /* スクロールしても背景として固定 */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  /* 一番後ろ */
  pointer-events: none;
}

#vanta-trunk canvas {
  /* 通常時のプロパティ変化も滑らかにする（戻るとき用） */
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
  /* クラスが付与された時のスタイル */
}
#vanta-trunk canvas.is-fixed-vanta {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: -999;
  /* コンテンツの邪魔にならないよう最背面へ */
  opacity: 0.3;
  /* 指定の透明度 */
  pointer-events: none;
  /* クリック判定を無効化 */
  /* 出現時の滑らかなアニメーション */
  -webkit-animation: vantaFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
          animation: vantaFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ふわっと現れるアニメーション定義 */
@-webkit-keyframes vantaFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    /* 少し拡大した状態から */
  }
  100% {
    opacity: 0.3;
    /* 最終的な透明度 */
    -webkit-transform: scale(1);
            transform: scale(1);
    /* 元のサイズへ */
  }
}
@keyframes vantaFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    /* 少し拡大した状態から */
  }
  100% {
    opacity: 0.3;
    /* 最終的な透明度 */
    -webkit-transform: scale(1);
            transform: scale(1);
    /* 元のサイズへ */
  }
}
.noise-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 相対パス */
  opacity: 0.05;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  width: 100%;
  padding: 0 20px;
}

/* =========================================
   HERO TITLE ANIMATION (LOADER SYNC)
   ========================================= */
.mega-title {
  font-family: "Montserrat", sans-serif;
  font-size: 6vw;
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  /* ▼ 初期状態は透明で待機 */
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  /* 下に隠しておく */
}
@media (max-width: 768px) {
  .mega-title {
    font-size: 12vw;
    -webkit-text-stroke: 1px #fff;
  }
}
.mega-title {
  /* ▼▼▼ ローディング完了後に発火 ▼▼▼ */
}
body:not(.is-loading) .mega-title {
  /* 6sだと遅すぎるため、1.5sに変更して疾走感を出しています。
     元の6sが良い場合は '1.5s' を '6s' に戻してください。
  */
  -webkit-animation: slideUp 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
          animation: slideUp 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  /* ローディング画面がフェードアウトするのを少し待つ */
}

.highlight-text {
  color: #fff;
  -webkit-text-stroke: 0;
  text-shadow: 0 0 30px rgba(255, 85, 0, 0.6);
}

.mega-sub {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.2vw;
  margin-top: 30px;
  letter-spacing: 0.5em;
  font-weight: 500;
  /* ▼ 初期状態は透明 */
  opacity: 0;
}
@media (max-width: 768px) {
  .mega-sub {
    font-size: 4vw;
    letter-spacing: 0.2em;
  }
}
.mega-sub {
  /* ▼▼▼ ローディング完了後に発火 ▼▼▼ */
}
body:not(.is-loading) .mega-sub {
  /* タイトルの後に出るように遅延を設定 */
  -webkit-animation: fadeIn 2s ease forwards;
          animation: fadeIn 2s ease forwards;
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
  /* タイトル(1.5s) + 待機(0.3s) */
}

/* （念のため）キーフレーム定義 */
@-webkit-keyframes slideUp {
  from {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    /* 少し下からふわっと */
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    /* 少し下からふわっと */
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.scroll-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 10;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f39800;
  -webkit-animation: drop 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
          animation: drop 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

/* ----------------------------------
   01. ABOUT
   ---------------------------------- */
.cyber-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
}

.cyber-card {
  background: var(--card-bg);
  border: 1px solid #333;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cyber-card:hover {
  border-color: var(--accent-orange);
  -webkit-box-shadow: 0 0 20px rgba(255, 85, 0, 0.2);
          box-shadow: 0 0 20px rgba(255, 85, 0, 0.2);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.cyber-card:hover .card-deco {
  color: var(--accent-orange);
  opacity: 0.2;
}

.card-deco {
  position: absolute;
  top: -10px;
  right: -10px;
  font-family: var(--font-en);
  font-size: 8rem;
  /* 80px */
  font-weight: 900;
  color: #1a1a1a;
  z-index: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.TopAbout_inner_list_item {
  position: relative;
  z-index: 1;
}

.card-head {
  font-family: var(--font-en);
  font-size: 2.4rem;
  color: var(--accent-orange);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

.border h4 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  border-left: 3px solid var(--accent-orange);
  padding-left: 15px;
}
.border p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #ccc;
}

.cyber-text-center {
  text-align: center;
  margin: 100px 0 0;
  padding: 0 0px;
}
@media screen and (min-width: 769px) {
  .cyber-text-center {
    padding: 0 20px;
  }
}

.scrolly-text {
  font-size: 3.8vw;
  line-height: 2.2;
  color: #444;
}
@media screen and (min-width: 769px) {
  .scrolly-text {
    font-size: 2rem;
  }
}
.scrolly-text span {
  display: inline-block;
  opacity: 0.3;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: opacity 0.8s, color 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, color 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, color 0.8s;
  transition: opacity 0.8s, transform 0.8s, color 0.8s, -webkit-transform 0.8s;
  will-change: opacity, transform;
}
.scrolly-text span.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.strong-glitch {
  display: block !important;
  font-size: 3rem !important;
  font-weight: 900;
  margin: 30px 0;
  color: #f39800 !important;
  opacity: 1 !important;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  .strong-glitch {
    font-size: 4rem !important;
  }
}

/* ----------------------------------
   02. SERVICE (Immersive)
   ---------------------------------- */
.immersive-service-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.immersive-item {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 60px 40px;
  border: 1px solid #333;
  background: #0a0a0a;
  text-decoration: none;
  overflow: hidden;
  -webkit-transition: border-color 0.4s;
  transition: border-color 0.4s;
  cursor: pointer;
}
.immersive-item:hover {
  border-color: #f39800;
}
.immersive-item:hover .immersive-bg {
  opacity: 0.4;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.immersive-item:hover .immersive-overlay {
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.9)), to(rgba(0, 0, 0, 0.4)));
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%);
}
.immersive-item:hover .svc-num {
  color: #f39800;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.immersive-item:hover h3 {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}
.immersive-item:hover .svc-jp,
.immersive-item:hover .svc-desc {
  color: #ddd;
}
.immersive-item:hover .svc-btn-text {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.immersive-item:hover .svc-btn-arrow {
  background: #f39800;
  border-color: #f39800;
  color: #000;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media (max-width: 768px) {
  .immersive-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 40px 20px;
  }
  .immersive-item .immersive-content {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
  }
  .immersive-item .svc-action {
    width: 100%;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .immersive-item .svc-btn-text {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    font-size: 1.2rem;
  }
}

.immersive-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: opacity 0.6s, -webkit-transform 6s;
  transition: opacity 0.6s, -webkit-transform 6s;
  transition: opacity 0.6s, transform 6s;
  transition: opacity 0.6s, transform 6s, -webkit-transform 6s;
  z-index: 0;
}

.immersive-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.immersive-content {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 70%;
}

.svc-num {
  font-family: "Montserrat", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: #222;
  margin-right: 40px;
  line-height: 1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  white-space: nowrap;
}

.svc-text-group h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.svc-jp {
  color: #888;
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 15px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.svc-desc {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.6;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.svc-action {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.svc-btn-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  color: #f39800;
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  -webkit-transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-btn-arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  border: 1px solid #444;
  border-radius: 50%;
  color: #fff;
  font-size: 1.8rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: #000;
}

/* 詳細リンクのスタイル調整 */
.svc-tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px;
  /* ボタン同士の間隔 */
  margin-bottom: 20px;
  position: relative;
  z-index: 5;
  /* 背景より手前に表示 */
}

.svc-tags a {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 500;
  color: #ccc;
  /* 通常時の文字色 */
  text-decoration: none;
  padding: 6px 16px;
  border: 1px solid #444;
  /* 暗めの枠線 */
  background: rgba(0, 0, 0, 0.6);
  /* 半透明の黒背景 */
  border-radius: 2px;
  /* 少しだけ角を丸める（サイバー感維持のため小さく） */
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

/* ホバー時の挙動 */
.svc-tags a:hover {
  color: #000;
  /* 文字色を黒に */
  background: #f39800;
  /* 背景をアクセントカラーに */
  border-color: #f39800;
  -webkit-box-shadow: 0 0 10px rgba(243, 152, 0, 0.6);
          box-shadow: 0 0 10px rgba(243, 152, 0, 0.6);
  /* 発光表現 */
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  /* 少し浮き上がる */
}

/* スマホ対応 */
@media (max-width: 768px) {
  .svc-tags {
    gap: 8px;
  }
  .svc-tags a {
    font-size: 1.2rem;
    padding: 5px 12px;
  }
}
/* 親要素がdivになったため、VIEW DETAILボタンをブロックリンク化 */
.svc-action {
  text-decoration: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  cursor: pointer;
  z-index: 5;
}

/* =========================================
   Mid-Page CYBER CTA Section (Monochrome)
   ========================================= */
/* カラー定義：無彩色で統一 */
:root {
  --cyber-bg: #111111;
  /* 背景：ほぼ黒に近いグレー */
  --cyber-panel: rgba(255, 255, 255, 0.03);
  /* パネル：極薄い白 */
  --cyber-accent: #ffffff;
  /* アクセント：完全な白 */
  --cyber-dim: #888888;
  /* サブ：グレー */
  --cyber-text: #f0f0f0;
  /* テキスト：オフホワイト */
}

/* セクション背景 */
.section-cta {
  width: 100%;
  position: relative;
  padding: 80px 20px 120px;
  /* 余白調整 */
  overflow: hidden;
}

/* 背景グリッド線（白の薄い線に変更） */
.section-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), -webkit-linear-gradient(left, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.cta-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

/* === カード本体 === */
.cta-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  background: var(--cyber-panel);
  /* 枠線を薄いグレーに */
  border: 1px solid rgba(255, 255, 255, 0.15);
  /* 白い光の演出（控えめに） */
  -webkit-box-shadow: 0 0 15px rgba(255, 255, 255, 0.02);
          box-shadow: 0 0 15px rgba(255, 255, 255, 0.02);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 4px;
  /* 角を少し鋭角に */
  padding: 30px 25px;
  text-decoration: none;
  color: var(--cyber-text);
  -webkit-transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  position: relative;
}

/* ホバー時のアクション（白く発光） */
.cta-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  border-color: #f39800;
  background: rgba(255, 255, 255, 0.05);
  -webkit-box-shadow: 0 0 20px rgba(255, 255, 255, 0.2), inset 0 0 10px rgba(255, 255, 255, 0.05);
          box-shadow: 0 0 20px rgba(255, 255, 255, 0.2), inset 0 0 10px rgba(255, 255, 255, 0.05);
}

/* アイコン */
.cta-icon-box {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--cyber-accent);
  /* 白いドロップシャドウ */
  -webkit-filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
          filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

/* テキストエリア */
.cta-text-box {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/* ラベルバッジ（白枠） */
.cta-label {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border: 1px solid #f39800;
  color: var(--cyber-accent);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
}
@media screen and (min-width: 769px) {
  .cta-label {
    font-size: 1.6rem;
  }
}

/* 資料DL用のラベル（少しトーンを落とす場合はここを調整） */
.cta-label.is-gray {
  border-color: red;
  color: #ccc;
}

/* 見出し */
.cta-head {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 10px 0;
  color: #fff;
  letter-spacing: 0.05em;
}

/* 補足テキスト */
.cta-sub {
  font-size: 13px;
  color: #aaa;
  /* 普通のグレー */
  margin: 0;
  line-height: 1.6;
}

/* 矢印ボタン（シンプルに） */
.cta-btn-arrow {
  margin-top: 25px;
  -webkit-align-self: flex-end;
      -ms-flex-item-align: end;
          align-self: flex-end;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  /* 完全な円 */
  color: var(--cyber-accent);
  font-weight: bold;
  font-size: 18px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.cta-item:hover .cta-btn-arrow {
  background: var(--cyber-accent);
  border-color: var(--cyber-accent);
  color: #000;
  /* 反転して黒文字 */
  -webkit-box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
          box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  /* 回転させない（シンプルな動きに） */
}

/* --- スマホ対応 --- */
@media (max-width: 768px) {
  .section-cta {
    padding: 60px 16px;
  }
  .cta-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cta-head br {
    display: none;
  }
}
/* ----------------------------------
   03. WORKS (Elastic) - Responsive Updated
   ---------------------------------- */
:root {
  --grid-gap: 20px;
  --accent-color: #f39800;
  --text-color: #fff;
  --bg-card: #111;
  --row-height: 280px;
}

.works-bento-container {
  display: grid;
  /* PC: 3列グリッド */
  grid-template-columns: repeat(3, 1fr);
  /* 行の高さは自動調整だが、最低高さを決める */
  grid-auto-rows: var(--row-height);
  gap: var(--grid-gap);
  width: 100%;
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 0 20px;
  /* --- ここが魔法のスパイス（レイアウト操作） --- */
  /* 1つ目のアイテム（特大）：横2つ分、縦2つ分を占有 */
}
.works-bento-container .works-bento-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.works-bento-container {
  /* 2つ目・3つ目のアイテム：右側で縦に積まれる（自動配置） */
  /* 明示的に書くならこうですが、書かなくても自動で入ります */
}
.works-bento-container .works-bento-item:nth-child(2),
.works-bento-container .works-bento-item:nth-child(3) {
  grid-column: span 1;
  grid-row: span 1;
}
.works-bento-container {
  /* 4,5,6つ目：下の行に3つ並ぶ */
}
.works-bento-container .works-bento-item:nth-child(n+4) {
  grid-column: span 1;
  grid-row: span 1;
}
.works-bento-container {
  /* ------------------------------------------- */
  /* タブレット: 2列に変更 */
}
@media (max-width: 1024px) {
  .works-bento-container {
    grid-template-columns: repeat(2, 1fr);
    /* タブレット時のレイアウト変更 */
  }
  .works-bento-container .works-bento-item:nth-child(1) {
    grid-column: span 2;
    /* 横幅いっぱい */
    grid-row: span 1;
    /* 高さは1行分 */
  }
}
.works-bento-container {
  /* スマホ: 1列 */
}
@media (max-width: 768px) {
  .works-bento-container {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
    /* スマホは少し低く */
    gap: 15px;
    /* 全てリセットして縦積み */
  }
  .works-bento-container .works-bento-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* アイテム自体のスタイル（前回と同じサイバーテック風） */
.works-bento-item {
  position: relative;
  display: block;
  background: var(--bg-card);
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-transition: border-color 0.4s;
  transition: border-color 0.4s;
  /* 画像エリア */
}
.works-bento-item .works-bento-img {
  width: 100%;
  height: 100%;
}
.works-bento-item .works-bento-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.2, 0.6, 0.3, 1), -webkit-filter 0.6s;
  transition: -webkit-transform 0.6s cubic-bezier(0.2, 0.6, 0.3, 1), -webkit-filter 0.6s;
  transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.3, 1), filter 0.6s;
  transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.3, 1), filter 0.6s, -webkit-transform 0.6s cubic-bezier(0.2, 0.6, 0.3, 1), -webkit-filter 0.6s;
  -webkit-filter: grayscale(100%) brightness(0.6);
          filter: grayscale(100%) brightness(0.6);
}
.works-bento-item {
  /* テキストエリア */
}
.works-bento-item .works-bento-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  z-index: 2;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(10%, rgba(0, 0, 0, 0.95)), to(transparent));
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.95) 10%, transparent 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 10%, transparent 100%);
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.works-bento-item {
  /* 1つ目のアイテムだけ文字を大きく目立たせる */
}
.works-bento-item:nth-child(1) .works-bento-title {
  font-size: 2rem;
  /* 特大用サイズ */
}
.works-bento-item .works-bento-cat {
  display: block;
  color: var(--accent-color);
  font-family: monospace;
  font-size: 0.85rem;
  margin-bottom: 5px;
  letter-spacing: 0.1em;
}
.works-bento-item .works-bento-title {
  color: var(--text-color);
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0;
  line-height: 1.3;
}
.works-bento-item {
  /* ホバーエフェクト */
}
.works-bento-item:hover {
  border-color: rgba(255, 255, 255, 0.4);
}
.works-bento-item:hover .works-bento-img img {
  -webkit-filter: grayscale(0%) brightness(1);
          filter: grayscale(0%) brightness(1);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.works-bento-item:hover .works-bento-content {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.works-bento-item:hover {
  /* 四隅の装飾発光（前回と同じCSSを使用） */
}
.works-bento-item:hover .corner-deco {
  border-color: var(--accent-color);
  width: 15px;
  height: 15px;
  -webkit-box-shadow: 0 0 8px var(--accent-color);
          box-shadow: 0 0 8px var(--accent-color);
  /* さらに発光を追加 */
}
.works-bento-item {
  /* 装飾パーツ（前回と同じ） */
}
.works-bento-item .corner-deco {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid transparent;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 3;
  pointer-events: none;
}
.works-bento-item .corner-deco.top-left {
  top: 0;
  left: 0;
  border-top-color: rgba(255, 255, 255, 0.2);
  border-left-color: rgba(255, 255, 255, 0.2);
}
.works-bento-item .corner-deco.top-right {
  top: 0;
  right: 0;
  border-top-color: rgba(255, 255, 255, 0.2);
  border-right-color: rgba(255, 255, 255, 0.2);
}
.works-bento-item .corner-deco.bottom-left {
  bottom: 0;
  left: 0;
  border-bottom-color: rgba(255, 255, 255, 0.2);
  border-left-color: rgba(255, 255, 255, 0.2);
}
.works-bento-item .corner-deco.bottom-right {
  bottom: 0;
  right: 0;
  border-bottom-color: rgba(255, 255, 255, 0.2);
  border-right-color: rgba(255, 255, 255, 0.2);
}

/* ----------------------------------
   04. BUSINESS: ICON GRID
   ---------------------------------- */
/* 親要素（グリッドコンテナ）の設定 */
.cyber-business-grid {
  display: grid;
  /* PC: 自動調整（最低220px幅を確保して並べる） */
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1280px;
  margin: auto;
  /* スマホ・タブレット（768px以下）: 強制的に2列にする */
}
@media (max-width: 768px) {
  .cyber-business-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 1fr 1fr で等分2列 */
    gap: 10px;
    /* 隙間を少し狭く */
  }
}

/* 子要素（アイテム）の設定 */
.cyber-biz-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #0f0f0f;
  border: 1px solid #333;
  padding: 40px 10px;
  text-decoration: none;
  color: #fff;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  /* スマホ調整: 高さを少し抑えてコンパクトに */
}
@media (max-width: 768px) {
  .cyber-biz-item {
    padding: 25px 5px;
  }
}
.cyber-biz-item::before, .cyber-biz-item::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  -webkit-transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  border: 2px solid transparent;
}
.cyber-biz-item {
  /* 左上・右下 */
}
.cyber-biz-item::before {
  top: 0;
  left: 0;
  border-top: 0;
  border-left: 0;
}
.cyber-biz-item {
  /* 右上・左下 */
}
.cyber-biz-item::after {
  bottom: 0;
  right: 0;
  border-bottom: 0;
  border-right: 0;
}
.cyber-biz-item {
  /* ホバー時のアニメーション */
}
.cyber-biz-item:hover {
  background: rgba(243, 152, 0, 0.05);
  /* うっすらオレンジ背景 */
}
.cyber-biz-item:hover::before {
  width: 100%;
  height: 100%;
  border-top: 2px solid var(--accent-orange);
  border-left: 2px solid var(--accent-orange);
}
.cyber-biz-item:hover::after {
  width: 100%;
  height: 100%;
  border-bottom: 2px solid var(--accent-orange);
  border-right: 2px solid var(--accent-orange);
}
.cyber-biz-item:hover {
  /* アイコンにグリッチ風の揺れを追加 */
}
.cyber-biz-item:hover .biz-icon {
  -webkit-animation: icon-glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
          animation: icon-glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
  color: var(--accent-orange);
}

/* 微細な振動アニメーション */
@-webkit-keyframes icon-glitch {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
            transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
            transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
            transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@keyframes icon-glitch {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
            transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
            transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
            transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
.biz-icon {
  font-family: "Material Icons";
  font-size: 5rem;
  /* 50px */
  color: #555;
  margin-bottom: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  /* スマホ調整: アイコンを少し小さく */
}
@media (max-width: 768px) {
  .biz-icon {
    font-size: 4rem;
    /* 40px */
    margin-bottom: 10px;
  }
}

.biz-name {
  font-weight: bold;
  font-size: 1.5rem;
  /* 15px */
  z-index: 1;
  text-align: center;
  /* 2行になった時に中央揃え */
  /* スマホ調整: 文字サイズ微調整 */
}
@media (max-width: 768px) {
  .biz-name {
    font-size: 1.2rem;
    /* 12px */
  }
}

.biz-deco {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 15px;
  height: 15px;
  background: #333;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
          clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

/* ----------------------------------
   05. VOICE (Marquee)
   ---------------------------------- */
.voice-marquee-wrap {
  overflow: hidden;
  width: 100%;
  padding: 40px 0;
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(10%, #000), color-stop(90%, #000), to(transparent));
  -webkit-mask-image: -webkit-linear-gradient(left, transparent, #000 10%, #000 90%, transparent);
          mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(10%, #000), color-stop(90%, #000), to(transparent));
          mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.voice-marquee-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: marquee-scroll 50s linear infinite;
          animation: marquee-scroll 50s linear infinite;
}
.voice-marquee-inner:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@-webkit-keyframes marquee-scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes marquee-scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.voice-card-cyber {
  width: 400px;
  background: #0a0a0a;
  border: 1px solid #333;
  padding: 30px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.voice-card-cyber:hover {
  border-color: var(--accent-orange);
  background: #111;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.voice-card-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  border-bottom: 1px dashed #333;
  padding-bottom: 15px;
}

.voice-thumb {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid var(--accent-orange);
}

.voice-name {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  width: calc(100% - 60px - 20px);
}

.voice-txt {
  font-size: 1.4rem;
  color: #ccc;
  line-height: 1.8;
}

/* ----------------------------------
   06. BLOG (Hacker)(Monitor Grid 16:9)
   ---------------------------------- */
:root {
  --bg-card: #080808;
  --grid-gap: 24px;
}

.blog-bento-grid {
  display: grid;
  /* PC: 3列グリッド */
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
  width: 100%;
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 0 20px;
}
@media screen and (min-width: 769px) {
  .blog-bento-grid {
    gap: 10px;
  }
}
.blog-bento-grid {
  /* --- レイアウト定義 (1-2-3) --- */
  /* 1つ目：左側で [横2列] × [縦2行] を占有 */
}
.blog-bento-grid .blog-bento-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  /* 1つ目だけタイトルサイズを大きく */
}
.blog-bento-grid .blog-bento-item:nth-child(1) .bento-title {
  font-size: 1.6rem;
}
.blog-bento-grid {
  /* 2つ目・3つ目：右側で縦に並ぶ (それぞれ1列・1行) */
  /* 明示しなくても自動で入りますが、念のため */
}
.blog-bento-grid .blog-bento-item:nth-child(2),
.blog-bento-grid .blog-bento-item:nth-child(3) {
  grid-column: span 1;
  grid-row: span 1;
}
.blog-bento-grid {
  /* 4,5,6つ目：一番下の行に3つ並ぶ */
}
.blog-bento-grid .blog-bento-item:nth-child(n+4) {
  grid-column: span 1;
  grid-row: span 1;
}
.blog-bento-grid {
  /* --- レスポンシブ調整 --- */
  /* タブレット (2列に変更) -> 1(大), 2,3,4,5,6 */
}
@media (max-width: 1024px) {
  .blog-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-bento-grid .blog-bento-item:nth-child(1) {
    grid-column: span 2;
    /* 横幅いっぱい */
    grid-row: span 1;
    /* 高さは通常に戻す */
  }
  .blog-bento-grid .blog-bento-item:nth-child(2),
  .blog-bento-grid .blog-bento-item:nth-child(3) {
    grid-column: span 1;
    grid-row: span 1;
  }
}
.blog-bento-grid {
  /* スマホ (1列) */
}
@media (max-width: 768px) {
  .blog-bento-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    /* 全てリセットして縦積み */
  }
  .blog-bento-grid .blog-bento-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* カード全体 */
.blog-bento-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
  background: transparent;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  padding: 10px;
  /* ホバー枠のための余白 */
  /* マウスホバー時 */
}
.blog-bento-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.blog-bento-item:hover .bento-screen {
  border-color: var(--accent-orange);
  -webkit-box-shadow: 0 0 15px rgba(255, 87, 34, 0.3);
          box-shadow: 0 0 15px rgba(255, 87, 34, 0.3);
}
.blog-bento-item:hover .bento-screen img {
  -webkit-filter: grayscale(0%) brightness(1.1);
          filter: grayscale(0%) brightness(1.1);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.blog-bento-item:hover .bento-screen .screen-glitch {
  opacity: 0;
}
.blog-bento-item:hover .bento-title {
  color: var(--accent-orange);
}
.blog-bento-item:hover {
  /* 四隅の装飾 */
}
.blog-bento-item:hover .corner-deco {
  border-color: var(--accent-orange);
  width: 15px;
  height: 15px;
  -webkit-box-shadow: 0 0 5px var(--accent-orange);
          box-shadow: 0 0 5px var(--accent-orange);
}

/* --- 16:9 モニター画面 (絶対維持) --- */
.bento-screen {
  width: 100%;
  aspect-ratio: 16/9;
  /* 全アイテムで共通！ */
  position: relative;
  overflow: hidden;
  border: 1px solid #333;
  background: #000;
  margin-bottom: 12px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.bento-screen img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.6s cubic-bezier(0.2, 0.6, 0.3, 1);
  transition: 0.6s cubic-bezier(0.2, 0.6, 0.3, 1);
  -webkit-filter: grayscale(100%) brightness(0.8);
          filter: grayscale(100%) brightness(0.8);
}

/* ノイズエフェクト */
.screen-glitch {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-repeating-linear-gradient(bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1) 1px, transparent 1px, transparent 3px);
  background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1) 1px, transparent 1px, transparent 3px);
  z-index: 2;
  pointer-events: none;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.screen-label {
  font-family: "Courier New", monospace;
  /* 等幅フォント必須 */
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #444;
  color: #f39800;
  -webkit-animation: none;
          animation: none;
  letter-spacing: 0.1em;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 10px;
}

@-webkit-keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
/* --- テキスト情報 --- */
.bento-meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  font-family: monospace;
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 5px;
}
.bento-meta .sys-cat {
  color: var(--accent-orange);
}

.bento-title {
  color: #e0e0e0;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 0;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  /* 長文カット */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .bento-title {
    font-size: 1.4rem;
  }
}

/* --- 四隅の装飾 --- */
.corner-deco {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
}
.corner-deco.top-left {
  top: 0;
  left: 0;
  border-top-color: #333;
  border-left-color: #333;
}
.corner-deco.top-right {
  top: 0;
  right: 0;
  border-top-color: #333;
  border-right-color: #333;
}
.corner-deco.bottom-left {
  bottom: 0;
  left: 0;
  border-bottom-color: #333;
  border-left-color: #333;
}
.corner-deco.bottom-right {
  bottom: 0;
  right: 0;
  border-bottom-color: #333;
  border-right-color: #333;
}

/* ----------------------------------
   07. NEWS
   ---------------------------------- */
.cyber-news-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
}
.cyber-news-list li {
  border-bottom: 1px solid #222;
}
.cyber-news-list a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 10px;
  text-decoration: none;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cyber-news-list a:hover {
  background: rgba(255, 255, 255, 0.05);
  padding-left: 20px;
}
.cyber-news-list a:hover .news-arrow {
  color: var(--accent-orange);
  opacity: 1;
}

.news-date {
  font-family: var(--font-en);
  color: var(--accent-orange);
  margin-right: 40px;
  font-weight: bold;
  font-size: 1.6rem;
}

.news-title {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 500;
  font-size: 1.6rem;
}

.news-arrow {
  font-family: monospace;
  color: #444;
  font-size: 1.4rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* ----------------------------------
   08. ABOUT LINKS
   ---------------------------------- */
.cyber-nav-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 2px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #333;
  border: 2px solid #333;
}

.cyber-nav-item {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 200px;
      -ms-flex: 1 1 200px;
          flex: 1 1 200px;
  background: #000;
  text-decoration: none;
  color: #fff;
  padding: 50px 20px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.cyber-nav-item:hover {
  background: var(--accent-orange);
  color: #000;
}
.cyber-nav-item:hover .nav-ja {
  opacity: 1;
  font-weight: bold;
}

.nav-en {
  display: block;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.nav-ja {
  display: block;
  font-size: 1.3rem;
  opacity: 0.7;
}

/* Utility Overrides for Dark Theme */
.FontWhite {
  color: #fff !important;
}

.FontBlack {
  color: #000 !important;
}

.bgBlack {
  background-color: #000;
}

/* ----------------------------------
   ANIMATIONS (GLOBAL)
   ---------------------------------- */
@keyframes slideUp {
  from {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@-webkit-keyframes drop {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@keyframes drop {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}/*# sourceMappingURL=style.css.map */