:root {
    --color-main: #FF8EA9;
    --color-cv-button: #981F8C;
    --color-cv-background: #e9eaf3;
}

/* ナビゲーションリンクを黒色に設定 */
.nav .nav__item a {
    color: #000000 !important;
}

.nav .nav__item a span {
    color: #000000 !important;
}

/* メリットセクションのレイアウト調整 */
.merit {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 100%;
}

.merit__item {
    width: 90%;
    max-width: 900px;
    min-width: 48%;
    flex: 0 1 auto;
}

.merit__item:first-child {
    margin-left: 0;
}

.merit__item:last-child {
    margin-right: 0;
}

@media (max-width: 768px) {
    .merit__item {
        width: 90%;
        max-width: none;
    }
}

/* WEB応募モーダル用CSS - スクロールバー非表示 */
.web_apply_modal .modal__content-body {
    background: transparent !important;
    border: none !important;
    
    /* スクロールバーを非表示にする（クロスブラウザ対応） */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

/* WebKit系ブラウザ（Chrome, Safari）のスクロールバー非表示 */
.web_apply_modal .modal__content-body::-webkit-scrollbar {
    display: none;
}

.web_apply_modal .modal__content-buttons {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .web_apply_modal .modal__content-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .web_apply_modal .modal__content-buttons button {
        width: 100%;
        padding: 15px 20px;
        font-size: 16px;
    }
}
