@charset "UTF-8";

/* =========================================
   ベースリセットと変数
========================================= */
:root {
    --bg-color: #0d0d12;
    --text-color: #e0e0e0;
    --accent-color: #00e5ff; /* 音楽機材のLEDのようなアクセントカラー */
    --border-color: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

*::-webkit-scrollbar {
  display: none;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   ヘッダー
========================================= */
.header {
    background-color: rgba(13, 13, 18, 0.85);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(8px); /* 背景を少しぼかす（すりガラス効果） */
    -webkit-backdrop-filter: blur(8px);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
}

/* =========================================
   ヒーローセクション（Apple TV風 固定エフェクト）
========================================= */
.hero {
    position: sticky; /* スクロール時に画面に固定 */
    top: 0;
    z-index: 1; /* 後から来るコンテンツより下に配置 */
    height: 100vh; /* 画面いっぱいの高さ */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a2e 0%, #0d0d12 100%);
    overflow: hidden;
}

/* 動く音波アニメーション（疑似要素） */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 200vw;
    height: 300px;
    border-radius: 40%;
    filter: blur(10px);
    opacity: 0.3;
    z-index: 1;
}

.hero::before {
    background-color: var(--accent-color);
    animation: wave-animation 15s infinite linear;
}

.hero::after {
    background-color: #80f2ff;
    animation: wave-animation 10s infinite linear reverse;
}

@keyframes wave-animation {
    0% { transform: translateX(-50%) rotate(0deg); }
    100% { transform: translateX(-50%) rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
    animation: text-slide-in 1s ease-out forwards;
    animation-delay: 0.3s;
}

/* 見出しのグラデーション（対応ブラウザのみ） */
@supports (-webkit-background-clip: text) {
    .hero-content h2 {
        background: linear-gradient(135deg, #fff 30%, var(--accent-color) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

.hero-content p {
    font-size: 1.2rem;
    color: #ccc;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
    animation: text-slide-in 1s ease-out forwards;
    animation-delay: 0.8s;
}

@keyframes text-slide-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   コンテンツラッパー（上に被さる黒い幕）
========================================= */
.content-wrapper {
    position: relative;
    z-index: 10;
    background-color: var(--bg-color);
    padding-top: 40px;
    padding-bottom: 60px;
    box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.7); /* 境目の影で浮遊感を演出 */
}

/* =========================================
   共通セクション設定
========================================= */
.section {
    padding: 60px 0;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* About Us (説明) */
.description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #bbb;
    line-height: 2;
}

/* リンク */
a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: #80f2ff;
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
}

/* =========================================
　　記事の表示
========================================= */
ul {
    height: 300px;
    overflow-y: auto;
}

ul.article li {
    width: 100%;
    font-size: 24px;
    margin: 5px 0;
    overflow-x: auto;
    overflow-y: hidden;
}

ul.article li a {
    display: block;
    padding: 10px 10px;
    border-left: 3px solid var(--accent-color);
    background: #ffffff10;
    white-space: nowrap; /* ← 横スクロールさせたいなら重要 */
}

/* =========================================
   会社概要テーブル
========================================= */
.profile-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #14141c;
    border-radius: 8px;
    overflow: hidden;
}

.profile-table th, 
.profile-table td {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.profile-table th {
    width: 25%;
    text-align: left;
    color: #fff;
    font-weight: 400;
    background-color: #1a1a24;
}

.profile-table td {
    color: #ccc;
}

.en-name {
    font-size: 0.85rem;
    color: #888;
}

.profile-table tr:last-child th,
.profile-table tr:last-child td {
    border-bottom: none;
}

/* フッター */
.footer {
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid var(--border-color);
    margin-top: 40px;
}

/* =========================================
   アニメーション用クラス（リッチなスライドアップ）
========================================= */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 順番に表示させるためのディレイ（遅延）クラス */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* =========================================
   レスポンシブ対応
========================================= */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    
    .profile-table th, .profile-table td {
        display: block;
        width: 100%;
    }
    .profile-table th {
        border-bottom: none;
        padding-bottom: 5px;
    }
    .profile-table td {
        padding-top: 5px;
        margin-bottom: 10px;
    }
}
