/* フォント設定 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

/* Tailwind CSS の設定をここに移動 */
/* Tailwind CDN が読み込まれた後で実行されるため、カスタム設定は不要 */

body {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
}

/* アニメーション設定 */
.page-section {
    display: none;
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

.page-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* デザインパーツ設定 */
.nav-link.active {
    color: #DC2626; /* red-600 */
    font-weight: 700;
}
.nav-link.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #DC2626;
    margin-top: 4px;
}

.hero-gradient {
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(20,20,20,0.4) 100%);
}

.glass-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* ロゴ画像のサイズ設定 */
.logo-img {
    height: 60px; 
    width: auto;
    object-fit: contain;
}

/* テーブル等のスタイル */
.company-table th {
    background-color: #e2e8f0; /* 背景色を濃く変更 */
    border-bottom: 1px solid #cbd5e1; /* 枠線を調整 */
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    color: #334155; /* 文字色を濃く変更 */
    width: 30%;
}
.company-table td {
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem;
    color: #1e293b;
}

/* 各ページのヘッダー設定 */
.page-header {
    background-color: #111827; /* フッターと同じ濃紺 (gray-900) */
    color: #ffffff;            /* 文字色を白 */
    padding: 4rem 0 2rem;
    border-bottom: 4px solid #DC2626; /* 【修正】フッターと同じ赤(#DC2626)で太さ4pxに変更 */
    margin-bottom: 3rem;
}