/* ================================================================
   募集要項詳細ページ (description_detail_page)
   Figma: node-id=1306:4655
   ※ dd-table / dd-row / dd-label / dd-value 等の共通スタイルは
     career-components.css に移動済み
================================================================ */

/* ---- ページ全体 ---- */
.dd-page {
    padding: 40px 0 160px;
}

/* ---- エントリーボタン ---- */
.dd-entry-wrap {
    display: flex;
    justify-content: center;
    margin-top: 64px;
}

.dd-entry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 64px;
    border: 3px solid #ff0024;
    border-radius: 100px;
    background: #ffffff;
    font-size: 18px;
    font-weight: 700;
    color: #191919;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s, color 0.2s;
    opacity: 1;
}

.dd-entry-btn:hover {
    background: #ff0024;
    color: #ffffff;
    opacity: 1;
}

/* ================================================================
   レスポンシブ
================================================================ */
@media screen and (max-width: 768px) {
    .dd-page {
        padding: 24px 0 80px;
    }

    .dd-entry-wrap {
        margin-top: 40px;
    }

    .dd-entry-btn {
        width: 100%;
        max-width: 300px;
        height: 56px;
        font-size: 16px;
    }
}
