/* 合格戦略ページへの関連記事カード */

.pass-pr-strategy-card-link {
    position: relative;
    display: block;
    padding: 15px 15px 12px 15px;
    border: 1px solid #ff6338;
    border-radius: 5px;
    background-color: #fffaf9;
    color: #4b4038;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(70, 90, 55, 0.08);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

/* カード上部の小ラベル */
.pass-pr-strategy-card-label {
    display: inline-block;
    margin-bottom: 7px;
    padding: 4px 13px;
    border-radius: 20px;
    background-color: #ff6338;
    color: #fff;
    font-weight: bold;
    line-height: 1.5;
}

/* メインタイトル */
.pass-pr-strategy-card-title {
    margin: 0 0 5px;
    color: #6e5645;
    font-weight: bold;
    line-height: 1.5;
}

/* 説明文 */
.pass-pr-strategy-card-text {
    color: #645d58;
    line-height: 1.8;
}

/* 下部リンク部分 */
.pass-pr-strategy-card-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding-top: 10px;
    border-top: 1px dashed #ff6338;
    color: #ff6338;
    font-weight: bold;
    line-height: 1.5;
}

.pass-pr-strategy-card-button span {
    margin-left: 10px;
    font-size: 20px;
    font-weight: normal;
    line-height: 1;
}

/* hover */
.pass-pr-strategy-card-link:hover {
    background-color: #fff8f6;
    box-shadow: 0 6px 16px rgba(70, 90, 55, 0.14);
    transform: translateY(-2px);
}

/* キーボード操作時 */
.pass-pr-strategy-card-link:focus-visible {
    outline: 3px solid rgba(99, 189, 62, 0.35);
    outline-offset: 3px;
}

/* pc */

@media screen and (min-width: 521px) {
    .pass-pr-strategy-card-link {
        padding: 22px 28px 18px;
    }

    .pass-pr-strategy-card-button {
        padding-top: 12px;
    }

    .pass-pr-strategy-card-button span {
        margin-left: 10px;
        font-size: 23px;
    }
}