/* 株式会社ネットクルー Navibookサイト共通CSS - PageSpeed最適化版 */

/* グラデーション背景 - 企業ブルー系統一 */
.gradient-bg {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

/* 会社リンク */
.company-link {
    text-decoration: none;
    transition: all 0.3s ease;
}
.company-link:hover { text-decoration: underline; }

/* SNSアイコン */
.sns-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.sns-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
    .sns-icon { width: 40px; height: 40px; }
}

/* フォーム要素の調整 */
.form-group { margin-bottom: 1.5rem; }
.form-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}
.form-label.required::after {
    content: " *";
    color: #ef4444;
}
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
    transition: all 0.3s ease;
    background-color: #ffffff;
}
.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.form-textarea {
    min-height: 120px;
    resize: vertical;
}
.form-input::placeholder { color: #9ca3af; }

/* ボタンのホバー効果 */
.btn-primary { transition: all 0.3s ease; }
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* カスタムオレンジボタン */
.btn-orange {
    background-color: #f97316 !important;
    color: white !important;
    border: none !important;
    transition: all 0.3s ease !important;
}
.btn-orange:hover {
    background-color: #ea580c !important;
    color: white !important;
}

/* アニメーション */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn 0.6s ease-out; }

/* カードのホバー効果 */
.card-hover { transition: all 0.3s ease; }
.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* スクロールバーのカスタマイズ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: #a8a8a8; }

/* 最適化されたリンクスタイル - 重複削除済み */
header nav a, .nav-white-link {
    color: #ffffff !important;
}
header nav a:visited, .nav-white-link:visited {
    color: #ffffff !important;
}
footer a, footer a:visited {
    color: #ffffff !important;
}
.btn-orange:visited {
    background-color: #f97316 !important;
    color: white !important;
}

/* 一般的なvisitedリンク - 読みやすいダークグレー */
a:visited:not(.nav-white-link):not(.btn-orange):not(footer a):not(header a) {
    color: #374151 !important;
}