/* ヘッダーメニューの調整 */
.l-header__list-nav {
    max-width: 1200px; /* 少し広げて余白を確保 */
    padding: 0 60px;  /* 左右の余白を増やす */
}

.l-header__item-nav a {
    font-size: 20px; /* フォントサイズを統一 */
    letter-spacing: 0.05em; /* 読みやすさのための文字間隔 */
    padding: 0 24px; /* メニュー項目間の間隔を広げる */
}

/* カラーの調整 */
:root {
    --primary-blue: rgba(60, 58, 147, 0.9);    /* 青を少し透過させて柔らかく */
    --primary-gold: rgba(203, 176, 114, 0.9);  /* ゴールドも同様に */
    --text-dark: #333333;                      /* 基本テキストカラー */
}

/* メインビジュアルの調整 */
.l-mv__box-blue p {
    background: linear-gradient(to right, 
        rgba(60, 58, 147, 0.9), 
        rgba(2, 92, 178, 0.9)
    );
}

/* フォントサイズの統一 */
.common-h2 {
    font-size: 28px; /* やや小さく */
    background-color: rgba(203, 176, 114, 0.9);
}

.common-h3 {
    font-size: 24px;
    color: var(--text-dark);
}

.l-mv__h3 {
    font-size: 24px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .l-header__item-nav a {
        font-size: 18px;
        padding: 0 16px;
    }
    
    .common-h2 {
        font-size: 24px;
    }
    
    .common-h3 {
        font-size: 20px;
    }
}

/* CTAボタンの調整 */
.l-cta__link-btn {
    background: linear-gradient(to right,
        rgba(0, 93, 178, 0.9),
        rgba(59, 58, 147, 0.9)
    );
}

/* その他のテキスト要素 */
body {
    color: var(--text-dark);
    line-height: 1.7;
    letter-spacing: 0.03em;
}

/* ナビゲーションのホバーエフェクト改善 */
.l-header__item-nav a {
    position: relative;
    transition: color 0.3s ease;
}

.l-header__item-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.l-header__item-nav a:hover::after {
    width: 100%;
}
