body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    -webkit-font-smoothing: antialiased;
}

/* トップメニュー専用の左白・右橙グラデーション */
.top-menu-gradient {
    background: linear-gradient(
        90deg,
        rgba(249, 115, 22, 0.92) 0%,
        rgba(249, 115, 22, 0.92) 40%,
        rgba(255, 255, 255, 0.95) 100%
    );
}

/* トップメニューのブランド文字を白影で少し浮かせる */
.top-brand-glow {
    display: inline-block;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65), 0 0 8px rgba(255, 255, 255, 0.55);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.12));
    transform: translateY(-1px);
}

/* スムーズスクロール */
html {
    scroll-behavior: smooth;
}

/* ヒーローエリアの画像プレースホルダー用背景 */
.hero-bg {
    background-color: #d1d5db;
    background-image: url('https://placehold.co/1920x800/d1d5db/a3a8b4?text=Main+Visual');
    background-size: cover;
    background-position: center;
}

/* セクションのタイトル装飾 */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}
.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #1d4ed8;
    border-radius: 2px;
}

/* カードのホバーエフェクト */
.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
