@charset "utf-8";
/* CSS Document */
/* --- ベースの設定 --- */
:root {
    --color-bg: #000000;
    --color-silver: linear-gradient(135deg, #8e9eab 0%, #eef2f3 50%, #8e9eab 100%);
    --color-neon-green: #39FF14;
    --color-purple: #9d50bb;
    --font-main: 'Shippori Mincho', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg);
    color: #ffffff;
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* 動画の基本設定 */
.video-bg-container {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* コンテンツの背後に配置 */
    overflow: hidden;
    background-color: #000;
}

/* 動画のスタイル */
.pc-only-video {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) contrast(1.5);
}

/* 動画の上に重ねる暗い幕 */
.video-overlay {
position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 0; /* 動画より上で、コンテンツより下の階層 */
}

 /* 装飾用の心電図 */
.ecg-line-container {
  width: 100%;
  height: 80px; /* 波形の高低差を出すために少し高く設定 */
  overflow: hidden;
  position: relative;
}

.ecg-line {
  position: absolute;
  width: 200%; 
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="80" viewBox="0 0 400 80"><path d="M0 40 L30 40 L35 20 L45 60 L50 40 L80 40 L85 10 L95 70 L100 40 L130 40 L135 35 L145 45 L150 40 L180 40 L185 5 L195 75 L200 40 L230 40 L232 38 L234 42 L236 38 L238 42 L240 40 L280 40 L285 25 L295 55 L300 40 L330 40 L335 15 L345 65 L350 40 L400 40" stroke="%23ff0000" stroke-width="2" fill="none"/></svg>');
  background-repeat: repeat-x;
  background-size: 400px 80px; /* 400pxごとに1周する */
  animation: move-ecg-simple 8s linear infinite;
}

/* --- ヘッダー --- */

/* メニュー以外の場所を暗くする幕 */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.2);
    z-index: 9998; 
    cursor: pointer;
}

/* メニューが開いた時だけ表示 */
.menu-overlay.active {
    display: block;
}

/* --- 爆弾メニューの基本設定（PCでは非表示） --- */
.bomb-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    width: 50px;
    height: 50px;
    z-index: 10000 !important; /* 常に一番上に */
}

.cyber-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(157, 80, 187, 0.3);
    padding: 10px 0;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.header-logo img {
    height: 50px;
    filter: drop-shadow(0 0 5px var(--color-purple));
}

.header-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.header-nav a {
    text-decoration: none;
    color: #fff;
    font-size: 1.0rem;
    font-family: var(--font-main);
    letter-spacing: 1px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-num {
    font-size: 0.8rem;
    color: var(--color-neon-green);
    margin-bottom: 2px;
}

.header-nav a:hover {
    color: var(--color-neon-green);
    text-shadow: 0 0 8px var(--color-neon-green);
}

/* ヘッダーのボタン */
.header-cta {
    background: #ce0505;
    padding: 8px 15px;
    border-radius: 2px;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(206, 5, 5, 0.5);
}

.header-cta:hover {
    background: #fff !important;
    color: #ce0505 !important;
}

/* --- ヒーローセクション --- */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh; 
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: #000;
    overflow: hidden;
    padding: 60px 20px;
}

/* 鼓動する赤い光 */
.pulse-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%; 
    height: 120%;
    background: radial-gradient(
        circle at center, 
        rgba(180, 0, 0, 0.5) 0%, 
        rgba(50, 0, 0, 0.2) 40%, 
        transparent 70%
    );
    z-index: 0;
    animation: heartBeat 5s ease-in-out infinite;
    pointer-events: none;
}

/* チープさを防ぐための背景テクスチャ */
.hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

/* コンテンツ（ロゴ、テキストなど）が光の下に隠れないように z-index を上げる */
.org-logo-container,
.logo-zero,
.copy-container,
.cta-area,
.hero-overlay {
    position: relative;
    z-index: 2;
}

/* ロゴ画像のサイズと演出 */
.org-logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(157, 80, 187, 0.5));
    transition: transform 0.3s ease;
}

.org-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(157, 80, 187, 0.8));
}

/* 背景のステータステキスト（進捗率など） */
.hero-overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    color: var(--color-neon-green); 
    letter-spacing: 0.1em;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.6); /* ぼんやり光らせる */
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 録画中や稼働中をイメージしたインジケーター */
.hero-overlay::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--color-neon-green);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--color-neon-green);
    animation: pulse-dot 2s infinite;
}

/* 巨大な「0」ロゴ */
.logo-zero {
    font-size: clamp(150px, 20vw, 300px); 
    font-weight: 800;
    background: var(--color-silver);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    filter: blur(15px);
    animation: revealLogo 3.5s forwards cubic-bezier(0.22, 1, 0.36, 1);
    line-height: 1;
    margin: 0;
    padding-top: 70px;
    padding-bottom: 50px;
    text-align: center;
}

/* キャッチコピー */
.copy-container {
    text-align: center;
    z-index: 10;
    margin-top: -2vw;
}

.main-copy {
    font-size: 2.2rem;
	text-shadow: 0 0 7px #ff0000;
    letter-spacing: 0.25em;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 2s forwards 1.8s ease-out;
}

.sub-copy {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.2em;
    opacity: 0;
    animation: fadeIn 2s forwards 2.8s ease-out;
}

/* 募集要項を見るボタン（CTA） */
.cta-area {
    margin-top: 60px;
    opacity: 0;
    animation: fadeIn 2s forwards 3.5s ease-out;
}

/* 募集要項ボタンのベース */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.2em;
    background: transparent;/* 境界線をネオングリーンの発光 */
    border: 1px solid var(--color-neon-green);
    position: relative;
    transition: all 0.4s ease; /* ボタン自体もわずかに光らせる */
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.2), inset 0 0 5px rgba(57, 255, 20, 0.2);
    overflow: hidden;
    z-index: 2;
}

/* ホバー時の演出：背景が塗りつぶされ、より強く光る */
.cta-button:hover {
    background: var(--color-neon-green);
    color: #000; /* 文字を反転させて読みやすく */
    box-shadow: 0 0 30px var(--color-neon-green);
    transform: translateY(-3px);
}

/* ボタンの中を光が走るエフェクト（::before） */
.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: all 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

/* --- 組織概要セクション --- */
.about-section {
    padding: 50px 0;
    position: relative;
    background-color: #050505;
    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: 50px 50px;
}

/*装飾用*/
.about-content span {
    font-weight: bold;
    color: #ff3131;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title-area {
    margin-bottom: 80px;
    border-left: 4px solid var(--color-purple);
    padding-left: 20px;
}

.en-title {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 0.5em;
    color: var(--color-purple);
    margin-bottom: 10px;
}

.jp-title {
    font-size: 2rem;
    letter-spacing: 0.2em;
    font-weight: 800;
}

.about-content {
    display: flex;
    justify-content: flex-end;
}

.about-text-box {
    width: 100%;
    max-width: 700px;
}

.mission-statement {
    font-size: 1.9rem;
    color: var(--color-neon-green);
    margin-bottom: 40px;
    line-height: 1.4;
    font-weight: 800;
}

.description {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
}

.purpose-box {
    margin-top: 60px;
    padding: 40px;
    background: rgba(157, 80, 187, 0.05); /* 紫のうっすらした背景 */
    border: 1px solid rgba(157, 80, 187, 0.2);
    position: relative;
}

.purpose-box h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #fff;
    display: flex;
    align-items: center;
}

.purpose-box h3::before {
    content: "■";
    font-size: 0.8rem;
    margin-right: 10px;
    color: var(--color-neon-green);
}

.purpose-box p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

/* --- 職場環境セクション --- */
.env-section {
    padding: 50px 0;
    background-color: #000;
    position: relative;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.data-card {
    background: #000;
    border: 1px solid rgba(157, 80, 187, 0.3);
    box-shadow: inset 0 0 5px rgb(193 47 250 / 31%);
    padding: 40px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.data-card:hover {
    background: rgba(157, 80, 187, 0.05);
    border-color: var(--color-purple);
    transform: translateY(-5px);
}

/* メーターのデザイン */
/* --- 前職別比率グラフ--- */
.chart-container {
    width: 100%;
    height: 150px; /* メーターと高さを合わせる */
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.chart-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chart-label {
    width: 80px;
    font-size: 0.7rem;
    text-align: right;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.chart-bar-bg {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.chart-bar-fill {
    height: 100%;
    background: var(--color-purple);
    border-radius: 3px;
    box-shadow: 0 0 10px var(--color-purple);
}

/* 元勇者枠の強調 */
.hero-row .chart-label {
    color: var(--color-neon-green);
    font-weight: bold;
}

.hero-bar {
    background: var(--color-neon-green);
    box-shadow: 0 0 10px var(--color-neon-green);
    animation: pulse-bar 2s infinite;
}

.highlight-text {
    color: var(--color-neon-green);
    font-weight: bold;
}

.meter-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.meter-svg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    transform: rotate(-90deg);
}

.meter-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.15);
    stroke-width: 4;
}

.meter-bar {
    fill: none;
    stroke-width: 6;
    stroke-linecap: square;
    stroke-dasharray: 283; /* 2 * PI * r */
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 2s ease-out;
}

/* 各メーターの色と値 */
.safety-bar {
	stroke: var(--color-neon-green); stroke-dashoffset: 282.9; /* 0.02% (ほぼ一周) */
}

.data-value {
    font-family: monospace;
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.data-label {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    color: var(--color-neon-green);
}

.data-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    padding: 0 10px;
}

/* 六角形装飾（平均寿命用） */
.hex-bg {
    position: absolute;
    width: 100%; height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50 1 95 25 95 75 50 99 5 75 5 25" fill="none" stroke="rgba(157, 80, 187, 0.3)" stroke-width="2"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    animation: pulse 3s infinite;
}

/* 施設案内セクション */
.base-facilities {
    margin-top: 100px;
}

.sub-title {
    text-align: center;
    font-size: 1.7rem;
    color: var(--color-purple);
    margin-bottom: 40px;
    letter-spacing: 0.2em;
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.facility-item {
    text-align: left;
}

.facility-img {
    width: 100%;
    height: 300px;
    background: #111;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.facility-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

/* ホバー時の演出（任意） */
.facility-item:hover .facility-img img {
    transform: scale(1.05);
}

.facility-item h4 {
    color: var(--color-neon-green);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.facility-item p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.facility-item p {
    font-size: 0.99rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* --- 募集職種セクション --- */
.jobs-section {
    padding: 50px 0;
    background: linear-gradient(to bottom, #000, #0a0a0a);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* デフォルト（PC）は3列 */
    gap: 30px;
    margin-top: 50px;
}

.job-card {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
}

/* 給与・時間エリア */
.job-details {
    margin: 20px 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border-left: 3px solid #ce0505;
}

.detail-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item span {
    font-weight: bold;
    color: #ce0505;
    margin-bottom: 2px;
    letter-spacing: 0.1em;
}

.detail-item strong {
    font-size: 0.95rem;
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

/* 画像を表示するエリア */
.job-image {
    width: 100%;
    aspect-ratio: 1 / 1;  
    overflow: hidden;
    margin-bottom: 20px;
}

.job-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
    background-color: #000; 
}

.job-code, 
.job-title, 
.job-desc, 
.job-tag {
    padding: 0 25px;
}

.job-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: var(--color-purple);
    transform: scaleY(0);
    transition: transform 0.3s;
    z-index: 2;
}

.job-card:hover {
    border-color: var(--color-purple);
    transform: translateY(-5px);
    background: #161616;
}

.job-card:hover::before {
    transform: scaleY(1);
}

.job-code {
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--color-purple);
    margin-bottom: 10px;
}

.job-title {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.job-desc {
    font-size: 0.99rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.job-tag {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 15px;
}

.job-tag span {
    font-size: 0.9rem; 
    padding: 4px 12px;
    border: 1px solid rgba(57, 255, 20, 0.3);
    color: var(--color-neon-green);
    background: rgba(57, 255, 20, 0.05);
    white-space: nowrap;
    display: inline-block;
}

/* アコーディオン全体 */
.jobs-accordion {
    max-width: 1100px;
    margin: 0 auto;
}

/* カテゴリーの枠組み */
.job-category {
    border: 1px solid rgba(206, 5, 5, 0.3);
    background: rgba(15, 0, 0, 0.8);
    margin-bottom: 15px;
    transition: 0.3s;
}

.job-category:hover {
    border-color: #ce0505;
}

/* クリックする見出し部分 */
.category-title {
    padding: 25px 35px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(206, 5, 5, 0.2) 0%, transparent 100%);
    transition: 0.3s;
}

.category-title::-webkit-details-marker {
    display: none; /* Safari用の三角消し */
}

/* 左側の数字 */
.cat-num {
    font-family: 'Oswald', sans-serif;
    color: #ce0505;
    margin-right: 20px;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

/* 右側の開閉アイコン（プラス・マイナス） */
.category-title .icon {
    margin-left: auto;
    width: 20px;
    height: 2px;
    background: #ce0505;
    position: relative;
    transition: 0.4s;
}

.category-title .icon::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ce0505;
    transform: rotate(90deg);
    transition: 0.4s;
}

/* 開いている時は横棒（マイナス）にする */
.job-category[open] .category-title .icon::before {
    transform: rotate(0deg);
}

/* 中身の表示設定（以前のものにアニメーションを追加） */
.job-category[open] .jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 30px;
    animation: accordionFade 0.6s ease;
}

/* --- 福利厚生 --- */
.benefits-section {
    padding: 70px 0 50px; /* アイコンの突き抜け分、上パディングを広めに確保 */
    background: #000;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px; /* 上下の間隔を広めに設定 */
    margin-top: 80px;
}

/* 赤い丸（アイコンの外枠） */
.benefit-icon {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: #000;
    border: 3px solid #ce0505;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(206, 5, 5, 0.8), 
                inset 0 0 10px rgba(206, 5, 5, 0.4);
    z-index: 10;
}

/* アイコン画像 */
.benefit-icon img {
    width: 65%;
    height: auto;
    object-fit: contain;
}

/* カード本体の設定 */
.benefit-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    padding: 65px 25px 30px;
    border-top: 2px solid var(--color-neon-green);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 50px;
}

.benefit-card h3 {
    color: var(--color-neon-green);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.benefit-card p {
    font-size: 1.0rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

/* ホバー時の装飾：枠線も光らせる */
.benefit-card:hover {
    border-top: 2px solid #fff; /* ホバーでラインを白熱させる演出 */
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
/* --- 研修制度 --- */
.training-section {
    padding: 50px 0;
    background: #050505;
}

.training-box {
    border: 1px solid var(--color-purple);
    padding: 60px 50px;
    position: relative;
}

.program-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.step {
    position: relative;
}

.step-num {
    color: var(--color-purple);
    font-family: monospace;
    font-weight: bold;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.step h3 {
    margin: 10px 0 15px 0;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.4;
}

.step p {
    font-size: 0.99rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* 最後のインストールステップだけ少し強調 */
.highlight-step h3 {
    color: var(--color-neon-green);
}

/* --- インタビュー --- */
.interview-profile {
    display: flex;
    align-items: center;
}

.interview-section {
    padding: 50px 0;
    background: #000;
}

.interview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.interview-card {
    background: #111;
    padding: 40px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.05);
	margin-bottom: 15px;
}

.interview-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

/* 顔写真の円形枠 */
.interview-thumb {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-purple);
    background: #222;
    flex-shrink: 0;
}

.interview-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-role {
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1.2;
}

/* 元・職種 */
.career-before {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    padding-left: 12px;
}

.career-before::before {
    position: absolute;
    left: 0;
    font-size: 0.6rem;
    color: #666;
}

/* 矢印 */
.career-arrow {
    display: none;
}

/* 現・職種 */
.career-after {
    font-size: 1rem;
    font-weight: bold;
    color: #ff3131;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

/* 年齢部分だけ少し細くする */
.career-after {
    letter-spacing: 0.05em;
}

.interview-title {
    color: var(--color-neon-green);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.4;
    border-left: 4px solid var(--color-purple);
    padding-left: 10px;
}

.answer {
    color: #ccc;
    line-height: 1.8;
    font-size: 1.0rem;
}

/* --- 代表挨拶セクション --- */
.boss-section {
    padding: 50px 0;
    background: radial-gradient(circle at 30% 50%, #15051a 0%, #000 70%);
    overflow: hidden;
}

.boss-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.boss-visual {
    flex: 0 0 400px;
    max-width: 100%;
}

.boss-glitch-img {
    aspect-ratio: 3 / 4;
    background-color: #000;
    border: 1px solid var(--color-purple);
    position: relative;
    overflow: hidden;
    z-index: 1;
	box-shadow: inset 0 0 50px rgba(128, 0, 128, 0.5);
}

.boss-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(1.0) contrast(1.0);
}

/* ノイズレイヤーは画像の上に重ねる */
.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.2;
    pointer-events: none;
    z-index: 2;
}

/* 走査線（横線）エフェクト */
.boss-glitch-img::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(
        rgba(0, 0, 0, 0) 0px,
        rgba(0, 0, 0, 0) 2px,
        rgba(0, 0, 0, 0.4) 3px,
        rgba(0, 0, 0, 0.4) 4px
    );
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 11;
}

/* --- 砂嵐（チリチリ）エフェクト --- */
.noise-overlay {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
    background-color: rgba(255, 255, 255, 0.05);
    opacity: 0.8;
    pointer-events: none;
    z-index: 10;
    animation: grain 0.8s steps(1) infinite, flicker 0.15s infinite;
    display: block !important;
}

.message-lead {
    font-size: 1.8rem;
    color: var(--color-neon-green);
    margin-bottom: 30px;
    font-weight: 800;
}

.message-body p {
    margin-bottom: 20px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.9);
}

.final-word {
    font-size: 1.5rem;
    margin-top: 40px;
    letter-spacing: 0.3em;
}

.boss-name {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.boss-name .role {
    display: block;
    font-size: 0.8rem;
    color: var(--color-purple);
}

.boss-name .name {
    font-size: 1.5rem;
    letter-spacing: 0.5em;
}

/* --- 代表挨拶：グリッチ演出 --- */

.glitch-text {
    position: relative;
    display: inline-block;
    color: #ce0505;
    font-weight: bold;
    z-index: 1;
	animation: text-warning-shake 4s infinite;
}

/* 裏の文字（兵器・地獄）：点滅しつつ、一瞬「静止」して読ませる */
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9); 
    color: #ff1100;
    opacity: 0;
    z-index: 2;
    animation: horror-read-glitch 4s infinite;
}

/* --- よくある質問セクション --- */
.faq-section {
    padding: 50px 0;
    background-color: #000;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(157, 80, 187, 0.3);
    margin-bottom: 10px;
}

.faq-item h3 {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: normal;
}

.faq-question {
    width: 100%;
    padding: 25px 0;
    background: none;
    border: none;
    color: var(--color-neon-green);
    font-size: 1.1rem;
    font-family: var(--font-main);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    color: #fff;
    padding-left: 10px;
}

/* 擬似的な開閉アイコン */
.faq-question::after {
    content: "＋";
    font-size: 1.2rem;
    color: var(--color-purple);
    transition: transform 0.4s ease;
}

/* クリック時にスッと開くための設定 */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.95rem;
}

.faq-answer p {
    border-left: 2px solid var(--color-purple);
    padding-left: 20px;
    margin-bottom: 25px;
}

/* 回答を表示する */
.faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
}

/* アイコンを「×」に回転させる */
.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    color: var(--color-neon-green);
}

/* --- 選考フローセクション --- */
.process-section {
    padding: 50px 0;
    background: #050505;
}

.process-flow {
    max-width: 900px;
    margin: 50px auto 0;
    position: relative;
}

/* 縦のライン */
.process-flow::before {
    content: "";
    position: absolute;
    top: 0;
    left: 40px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-purple), var(--color-neon-green));
}

.process-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    opacity: 0.9;
    transition: transform 0.3s;
}

.process-item:hover {
    transform: translateX(10px);
    opacity: 1;
}

.step-num {
    flex: 0 0 80px;
    height: 80px;
    background: #000;
    border: 2px solid var(--color-purple);
    color: var(--color-neon-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 0 15px rgba(157, 80, 187, 0.4);
}

.step-content {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-left: 4px solid var(--color-purple);
    width: 100%;
}

.step-content h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
}

.step-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 1.0rem;
}

/* --- エントリーフォームセクション --- */
.entry-section {
    padding: 50px 0;
    background: radial-gradient(circle at center, #1a0515 0%, #000 100%);
}

/* 警告文の装飾 */
.form-caution {
    color: #ce0505;
    background: rgba(206, 5, 5, 0.1);
    padding: 10px 20px;
    border-left: 3px solid #ce0505;
    display: inline-block;
    font-size: 0.9rem;
    margin-top: 15px;
    letter-spacing: 0.1em;
}

/* フォーム本体 */
.dark-form {
    max-width: 700px;
    margin: 50px auto 0;
    position: relative;
    overflow: hidden; 
    background: rgba(10, 10, 10, 0.95);
    padding: 50px 40px;
    border: 1px solid #333;
    box-shadow: inset 0 0 30px rgba(206, 5, 5, 0.1), 0 0 40px rgba(0, 0, 0, 1);
}

/* フォームの四隅にL字の装飾を追加 */
.dark-form::before, .dark-form::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #ce0505;
    pointer-events: none;
}
.dark-form::before { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.dark-form::after { bottom: 0; right: 0; border-left: 0; border-top: 0; }

/* 常に流れるスキャンライン */
.form-scanner {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(206, 5, 5, 0) 40%,
        rgba(206, 5, 5, 0.4) 50%, /* ここがメインの光 */
        rgba(206, 5, 5, 0) 60%,
        transparent 100%
    );
    z-index: 1;
    pointer-events: none;
    animation: scanning 3s linear infinite;
}

.form-group {
    margin-bottom: 30px;
    position: relative;
    z-index: 2; /* スキャンラインより上に配置 */
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

/* ラベルのデザイン */
.dark-form label {
    display: flex;
    align-items: center;
    color: #39ff14;
    margin-bottom: 12px;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.dark-form label::before {
    content: "▶";
    font-size: 0.7rem;
    margin-right: 8px;
}

/* 入力欄のデザイン */
.dark-form input, 
.dark-form select, 
.dark-form textarea {
    width: 100%;
    padding: 15px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid #444;
    color: #fff;
    font-family: inherit;
    transition: all 0.3s;
    border-radius: 0; /* 角を丸めない */
}

.dark-form select:invalid {
    color: #666;
}

.dark-form option {
    background: #111;
    color: #fff;
}

/* 入力中のフォーカス演出：赤く光る */
.dark-form input:focus, 
.dark-form textarea:focus,
.dark-form select:focus {
    outline: none;
    border-color: #ce0505;
    box-shadow: 0 0 15px rgba(206, 5, 5, 0.4);
    background: rgba(30, 0, 0, 0.3);
}

.dark-form textarea {
    height: 150px;
    resize: none;
}

/* 送信ボタンのエリア */
.form-submit {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.submit-btn {
    font-family: 'Shippori Mincho', serif;
    background: #ce0505;
    color: #fff;
    border: 1px solid #ff0000;
    padding: 20px 80px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    letter-spacing: 0.3em;
    box-shadow: 0 0 20px rgba(206, 5, 5, 0.2);
}

.submit-btn:hover {
    background: #ff0000;
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.6);
    transform: scale(1.05);
}

/* 送信ボタンをクリックした瞬間の演出*/
.submit-btn:active {
    transform: scale(0.95);
    filter: hue-rotate(90deg);
}

.agreement {
    font-size: 0.8rem;
    color: #666;
    margin-top: 20px;
    font-style: italic;
}

/* 完了メッセージ（初期状態は非表示） */
.complete-message {
    display: none; /* 最初は隠す */
    text-align: center;
    padding: 60px 20px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid #ce0505;
    box-shadow: 0 0 30px rgba(206, 5, 5, 0.2);
    animation: glitchedShow 0.4s ease-out;
}

.complete-icon {
    font-family: 'Oswald', sans-serif;
    color: #ce0505;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.3em;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(206, 5, 5, 0.8);
}

.complete-message h3 {
    color: #fff;
    margin-bottom: 20px;
}

.complete-message p {
    color: #ccc;
    line-height: 1.8;
}

.complete-footer {
    margin-top: 30px;
    color: #666;
    font-size: 0.8rem;
    letter-spacing: 0.5em;
}

.serial-number {
    font-family: 'Oswald', sans-serif;
    color: #ce0505;
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    border: 1px solid rgba(206, 5, 5, 0.3);
    display: inline-block;
    padding: 5px 15px;
    background: rgba(206, 5, 5, 0.05);
}

/* --- フッターセクション --- */
.dark-footer {
    padding: 60px 0 30px;
    background-color: #000;
    border-top: 1px solid rgba(157, 80, 187, 0.2);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.footer-logo {
    text-align: center;
}

.footer-logo .logo-sub {
    font-size: 0.7rem;
    color: var(--color-purple);
    letter-spacing: 0.3em;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-neon-green);
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    text-align: center;
    padding-top: 20px;
}

.copyright {
    font-size: 0.7rem;
    color: #444;
    letter-spacing: 0.1em;
}

/* --- 評価制度セクション --- */
.evaluation-section {
    padding: 50px 0;
    background-color: #050505;
    position: relative;
    overflow: hidden;
}

/* 評価指標のグリッドレイアウト */
.evaluation-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

/* --- レーダーチャート --- */
.evaluation-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px;
}

.radar-chart-mock {
    position: relative;
    width: 240px;
    height: 240px;
    background: repeating-radial-gradient(
        circle,
        rgba(157, 80, 187, 0.1) 0,
        rgba(157, 80, 187, 0.1) 20px,
        transparent 21px,
        transparent 40px
    );
    border: 1px solid rgba(157, 80, 187, 0.3);
    transform: rotate(45deg);
}

.radar-area {
    position: absolute;
    top: 15%;
    left: 10%;
    right: 15%;
    bottom: 25%;
    background: rgba(57, 255, 20, 0.4);
    clip-path: polygon(50% 0%, 100% 40%, 60% 100%, 0% 60%);
    animation: radar-pulse 4s infinite ease-in-out;
}

.radar-chart-mock .label {
    position: absolute;
    transform: rotate(-45deg);
    font-size: 0.75rem;
    color: var(--color-neon-green);
    font-weight: bold;
    text-shadow: 0 0 5px var(--color-neon-green);
}

.label.top { top: -30px; left: 50%; transform: translateX(-50%) rotate(-45deg); }
.label.right { right: -40px; top: 50%; transform: translateY(-50%) rotate(-45deg); }
.label.bottom { bottom: -30px; left: 50%; transform: translateX(-50%) rotate(-45deg); }
.label.left { left: -40px; top: 50%; transform: translateY(-50%) rotate(-45deg); }

/* --- 指標テキスト --- */
.eval-item {
    margin-bottom: 40px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 20px;
    transition: 0.3s;
}

.eval-item:hover {
    border-left: 2px solid var(--color-neon-green);
    background: rgba(57, 255, 20, 0.02);
}

.eval-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    color: var(--color-purple);
    margin-right: 10px;
}

.eval-item h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.eval-item p {
    font-size: 1.0rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* --- 報酬システム（テーブル） --- */
.reward-system {
    margin-top: 50px;
}

.table-wrapper {
    overflow-x: auto;
}

.reward-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    font-size: 0.95rem;
}

.reward-table th {
    padding: 15px;
    text-align: left;
    color: var(--color-purple);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    border-bottom: 1px solid rgba(157, 80, 187, 0.3);
}

.reward-table td {
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rank-name {
    font-weight: bold;
    color: var(--color-neon-green);
}

/* ランク別装飾 */
.rank-s { background: rgba(57, 255, 20, 0.05); }
.rank-s td { border-color: rgba(57, 255, 20, 0.2); }

.rank-c { 
    background: rgba(206, 5, 5, 0.1); 
    animation: danger-pulse 2s infinite;
}
.rank-c .rank-name, .danger-text {
    color: #ff3131;
    font-weight: bold;
}

/* 報酬システムの説明文 */
.reward-intro {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
}

.reward-intro p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    background: rgba(206, 5, 5, 0.05); 
    padding: 20px;
    border-top: 1px solid rgba(206, 5, 5, 0.3);
    border-bottom: 1px solid rgba(206, 5, 5, 0.3);
}

/* GO TOPボタンの基本スタイル */
.go-top-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1000;
    text-decoration: none;
    opacity: 0; 
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

/* ボタンがアクティブな時 */
.go-top-btn.is-show {
    opacity: 0.7; 
    visibility: visible;
}

.go-top-btn:hover {
    opacity: 1; /* ホバーで目がはっきり見える */
    transform: translateY(-5px);
}

/* 目のアイコン（画像）のサイズ */
.go-top-btn img {
    width: 60px; /* PCでのサイズ */
    height: auto;
    filter: drop-shadow(0 0 10px rgba(206, 5, 5, 0.5));
}

/* アイコン下のテキスト */
.btn-text {
    color: #ce0505;
    font-size: 0.7rem;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.2em;
}


/* --- アニメーション --- */
@keyframes move-ecg-simple {
  from { transform: translateX(0); }
  to { transform: translateX(-400px); }
}

@keyframes revealLogo {
    0% { opacity: 0; filter: blur(15px); transform: scale(0.95); }
    100% { opacity: 0.7; filter: blur(0); transform: scale(1); }
}

@keyframes heartBeat {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.9);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1); /* 膨らませる */
    }
}

@keyframes pulse-dot {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.6; }
    100% { transform: scale(1); opacity: 0.3; }
}

@keyframes pulse-bar {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

@keyframes noise-anim {
    0% { clip: rect(20px, 9999px, 40px, 0); }
    20% { clip: rect(60px, 9999px, 10px, 0); }
    40% { clip: rect(10px, 9999px, 80px, 0); }
    60% { clip: rect(40px, 9999px, 30px, 0); }
    80% { clip: rect(70px, 9999px, 60px, 0); }
    100% { clip: rect(10px, 9999px, 50px, 0); }
}

@keyframes grain {
    0% { background-position: 0 0; }
    10% { background-position: -5% -10%; }
    20% { background-position: -15% 5%; }
    30% { background-position: 7% -25%; }
    40% { background-position: -5% 25%; }
    50% { background-position: -25% 10%; }
    60% { background-position: 15% 0%; }
    70% { background-position: 0% 15%; }
    80% { background-position: -15% 0%; }
    90% { background-position: 10% 5%; }
    100% { background-position: 5% 25%; }
}

@keyframes flicker {
    0% { opacity: 0.7; }
    50% { opacity: 0.4; }
    100% { opacity: 0.7; }
}

@keyframes spark-burn {
        from { transform: translateX(-50%) scale(1); opacity: 1; }
        to { transform: translateX(-50%) scale(1.5); opacity: 0.8; }
    }

@keyframes bomb-blink {
        0% { opacity: 1; }
        50% { opacity: 0.5; }
        100% { opacity: 1; }
    }

@keyframes radar-pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

@keyframes danger-pulse {
    0%, 100% { background: rgba(206, 5, 5, 0.1); }
    50% { background: rgba(206, 5, 5, 0.2); }
}

@keyframes accordionFade {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes scanning {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* 志願完了メッセージが表示された時のアニメーション */
@keyframes glitchedShow {
    0% { opacity: 0; transform: scale(0.9); filter: hue-rotate(90deg); }
    50% { opacity: 0.5; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); filter: hue-rotate(0deg); }
}

@keyframes horror-read-glitch {
    0%, 82%, 100% {
        opacity: 0;
        transform: none;
    }
    
    /* 83%〜85%：予兆（高速点滅） */
    83% { opacity: 1; transform: translateX(-3px); }
    84% { opacity: 0; }
    
    /* 85%〜93%：★ここが「読ませる」メイン時間（約0.3秒間、静止・膨張） */
    85% { 
        opacity: 1; 
        transform: scale(1.05); 
        color: #ff0000;
        filter: contrast(1.5) brightness(1.2);
        text-shadow: 2px 2px 0 #300000;
    }
    93% { 
        opacity: 1; 
        transform: scale(1.02); 
    }

    /* 94%〜96%：残像（再度ガガッとなって消える） */
    94% { opacity: 1; transform: skewX(15deg); color: #800000; }
    95% { opacity: 0; }
}

@keyframes text-warning-shake {
    0%, 82%, 100% { transform: none; filter: none; }
    83% { transform: translateX(2px); filter: blur(1px); }
    85%, 95% { transform: none; }
}


/* --- レスポンシブ：タブレット --- */
@media (max-width: 960px) {
    .main-copy {
		font-size: 1.8rem;
	}
	
	.mission-statement {
		font-size: 1.6rem;
	}
    
	.about-text-box {
		max-width: 100%;
	}
	
	.data-grid {
		grid-template-columns: 1fr; gap: 20px;
	}
    
	.data-card {
		padding: 30px;
	}
	.hero {
        padding: 40px 20px;
    }
    
	.logo-zero {
        font-size: clamp(120px, 30vw, 200px);
    }
	
    .program-steps {
        grid-template-columns: repeat(2, 1fr); /* 2列 */
        gap: 40px;
    }
	
    .training-box {
        padding: 40px 30px;
    }
	
	.jobs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
	
	.benefits-grid, .program-steps, .interview-grid { grid-template-columns: 1fr; }
	.interview-grid {
        gap: 30px;
    }
	
    .interview-card {
        padding: 30px;
    }
	
	.interview-grid {
        grid-template-columns: 1fr;
    }
	
    .interview-header {
        flex-direction: column; /* 写真と名前を縦並びに */
        text-align: center;
        gap: 15px;
    }
	
    .boss-layout {
        flex-direction: column;
        gap: 30px;
    }
	
    .boss-visual {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
    }
	
	.process-flow {
        max-width: 90%;
    }
	
	.job-category[open] .jobs-grid {
        grid-template-columns: repeat(2, 1fr); /* 2列 */
    }

}

/* タブレット用：3列だと窮屈なので2列にする */
@media (max-width: 768px) {
    .facility-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
	
	.dark-form input,
    .dark-form select,
    .dark-form textarea {
        font-size: 16px !important;
    }
	
    .evaluation-grid {
        grid-template-columns: 1fr;
    }
    .evaluation-visual {
        min-height: 300px;
        order: -1;
    }
	
	.bomb-menu {
        display: block; /* 爆弾出現 */
    }
	
	.header-nav {
        position: fixed;
        top: 0;
        right: -100%; /* 最初は画面外 */
        width: 70%;
        height: 100vh;
        background: rgba(10, 0, 0, 0.95);
        backdrop-filter: blur(15px);
        transition: 0.4s cubic-bezier(0.7, 0, 0.3, 1);
        padding-top: 80px;
        border-left: 1px solid #ce0505;
		z-index: 9999 !important; /* 幕(9998)よりもさらに上に配置 */
    }

    .header-nav.active {
        right: 0; /* メニュー展開 */
    }

    .header-nav ul {
        flex-direction: column;
        gap: 30px;
    }

    /* --- 爆弾アイコンの作成 --- */
    .bomb-body {
        width: 30px;
        height: 30px;
        background: #675e69;
        border-radius: 50%;
        position: absolute;
        bottom: 10px;
        left: 10px;
        border: 2px solid #000;
        box-shadow: inset -5px -5px 10px rgba(0,0,0,0.5), 0 0 15px rgba(206, 5, 5, 0.2);
    }

    /* 爆弾の導火線 */
    .bomb-body::before {
        content: "";
        position: absolute;
        top: -8px;
        left: 50%;
        width: 4px;
        height: 10px;
        background: #444;
        transform: translateX(-50%);
    }

    /* 火花アニメーション */
    .bomb-spark {
        position: absolute;
        top: -15px;
        left: 50%;
        width: 8px;
        height: 8px;
        background: #ffec00;
        border-radius: 50%;
        box-shadow: 0 0 10px #ff3300, 0 0 20px #ffec00;
        animation: spark-burn 0.2s infinite alternate;
    }
	
	/* メニューが開いている時の爆弾（赤く点滅） */
    .bomb-menu.active .bomb-body {
        background: #ce0505;
        box-shadow: 0 0 20px #ce0505;
        animation: bomb-blink 0.5s infinite;
    }
	
	.go-top-btn {
        right: 15px;
        bottom: 15px;
        opacity: 0.5;
    }
    
    .go-top-btn img {
        width: 45px;  /* スマホでは一回り小さく */
    }
    
    .btn-text {
        display: none;
    }

}

/* --- レスポンシブ：SP --- */
@media (max-width: 600px) {

    .org-logo-container {
        top: 20px;
        left: 20px;
    }
	
    .org-logo-img {
        height: 40px;
    }
	
    .logo-zero {
        font-size: clamp(100px, 40vw, 150px);
        padding-top: 40px;
        padding-bottom: 30px;
    }
	
    .main-copy {
		font-size: 1.3rem; padding: 0 15px; letter-spacing: 0.15em;
	}
	
    .sub-copy {
		font-size: 0.9rem; padding: 0 15px;
	}
	
    .cta-button {
		padding: 12px 30px; font-size: 0.8rem;
	}
	
	.about-section {
		padding: 50px 0;
	}
	
    .container {
		padding: 0 20px;
	}
	
    .section-title-area {
		margin-bottom: 50px;
	}
	
    .jp-title {
        font-size: 1.5rem;
        letter-spacing: 0.1em;
    }
	
    .mission-statement {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }
	
    .description {
        font-size: 1rem;
        line-height: 1.8;
    }
	
    .purpose-box {
        padding: 25px;
        margin-top: 40px;
    }
	
    .purpose-box h3 {
        font-size: 1.1rem;
    }
	
	.data-value {
		font-size: 1.5rem;
	}
	
    .meter-container {
		width: 120px; height: 120px;
	}
	
	.facility-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
	
	.hero {
        height: auto; 
        min-height: calc(100vh - 20px); 
    }

    .main-copy {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    .cta-area {
        margin-top: 40px;
    }
	
    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
	

    .jobs-section { 
		padding: 50px 0;
	}
	
	.interview-grid {
        grid-template-columns: 1fr;
    }
	
	.program-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
	
    .training-box {
        padding: 40px 20px;
    }
	
    .step h3 {
        font-size: 1.2rem;
    }
	
    .interview-header {
        flex-direction: column; /* 写真と名前を縦並びにする */
        text-align: center;
        gap: 15px;
    }
	
    .process-flow::before {
        left: 40px; 
    }

    .process-item {
        gap: 20px;
        margin-bottom: 40px;
    }
	
	.jp-title {
        font-size: 1.8rem;
    }

    .message-lead {
        font-size: 1.4rem;
    }

    .boss-visual {
        width: 100%;
    }

    .step-num {
        flex: 0 0 40px; 
        height: 40px;
        font-size: 1rem;
    }

    .step-content {
        padding: 20px;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }
	
	.form-row {
        flex-direction: column;
        gap: 0;
    }
	
	.reward-intro p {
        font-size: 1.0rem;
        text-align: left;
    }
	
	.job-category[open] .jobs-grid {
        grid-template-columns: 1fr; /* 1列 */
        padding: 20px;
    }
    .category-title {
        font-size: 1.1rem;
        padding: 20px;
    }
}

/* PCサイズ（1024px以上）の時だけ動画を表示 */
@media screen and (min-width: 1024px) {
    .pc-only-video {
        display: block;
    }
	
/* PCの時だけ、各セクションの背景を透明にして動画を見せる */
    section {
        background: transparent !important;
    }
}
