/* 採用エントリーボタン - 画面右下固定配置 */
.recruit-entry-buttons {
    position: fixed;
    right: 0;
    bottom: 100px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0;
    font-family: 'Noto Sans JP', sans-serif;
}

.recruit-entry-button {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white !important;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    padding: 0;
    box-shadow: -2px 2px 8px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.recruit-entry-button:hover {
    text-decoration: none;
    color: white !important;
}

.recruit-entry-button p {
    margin: 0;
    padding: 0;
    line-height: 1.2;
    color: white !important;
}

/* PC版とスマートフォン版で改行位置を制御 */
.recruit-entry-button .intern-br-pc {
    display: inline;
}

/* 最初のボタン：左上を角丸 */
.recruit-entry-button:first-child {
    border-top-left-radius: 5px;
}

/* 最後のボタン：左下を角丸 */
.recruit-entry-button:last-child {
    border-bottom-left-radius: 5px;
}

/* 新卒採用ボタン */
.recruit-entry-button.graduate {
    background-color: #41b5ff;
}

.recruit-entry-button.graduate:hover {
    background-color: #5bc3ff;
}

/* インターンボタン */
.recruit-entry-button.intern {
    background-color: #009fe8;
}

.recruit-entry-button.intern:hover {
    background-color: #1aafff;
}

/* キャリア採用ボタン */
.recruit-entry-button.career {
    background-color: #4cb944;
}

.recruit-entry-button.career:hover {
    background-color: #5cc954;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .recruit-entry-buttons {
        right: 0;
        bottom: 10px;
        flex-direction: row;
        width: 100%;
        position: fixed;
        left: 0;
        right: 0;
    }
    
    .recruit-entry-button {
        flex: 1;
        width: auto;
        height: auto;
        font-size: 11px;
        padding: 8px 0;
        border-radius: 0;
        box-shadow: none;
    }
    
    /* PC版とスマートフォン版で改行位置を制御 */
    .recruit-entry-button .intern-br-pc {
        display: none;
    }
    
    /* 最初のボタン：左上を角丸 */
    .recruit-entry-button:first-child {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    
    /* 最後のボタン：右下を角丸 */
    .recruit-entry-button:last-child {
        border-bottom-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
}

@media (max-width: 480px) {
    .recruit-entry-buttons {
        right: 0;
        bottom: 0;
        flex-direction: row;
        width: 100%;
        position: fixed;
        left: 0;
        right: 0;
    }
    
    .recruit-entry-button {
        flex: 1;
        width: auto;
        height: auto;
        font-size: 11px;
        padding: 8px 0;
        border-radius: 0;
        box-shadow: none;
    }
    
    /* PC版とスマートフォン版で改行位置を制御 */
    .recruit-entry-button .intern-br-pc {
        display: none;
    }
    
    /* 最初のボタン：左上を角丸 */
    .recruit-entry-button:first-child {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    
    /* 最後のボタン：右下を角丸 */
    .recruit-entry-button:last-child {
        border-bottom-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
}

/* 印刷時は非表示 */
@media print {
    .recruit-entry-buttons {
        display: none;
    }
}
