@charset "utf-8";

/* ==========================================================
   特集一覧ページ専用スタイル
   body.dt-feature 配下のみに適用（top.css を併読する前提）
   ========================================================== */

.dt-feature {
    background: #08070a;
}

.dt-feature .ft-main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 64px 16px 80px;
}

/* ---------- ヒーロー ---------- */
.dt-feature .ft-hero {
    text-align: center;
    margin-bottom: 46px;
}

.dt-feature .ft-hero__label {
    font-family: "Shippori Mincho", "Yu Mincho", serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .34em;
    color: #c6a054;
    margin: 0 0 14px;
}

.dt-feature .ft-hero__label span {
    padding-left: .34em;
}

.dt-feature .ft-hero__title {
    font-family: "Shippori Mincho", "Yu Mincho", serif;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: .1em;
    color: #f2ede2;
    margin: 0 0 20px;
}

.dt-feature .ft-hero__lead {
    font-size: 14px;
    line-height: 2;
    color: #a8a29a;
    margin: 0;
}

/* ---------- 特集カード ---------- */
.dt-feature .ft-list {
    display: grid;
    gap: 24px;
}

.dt-feature .ft-card {
    display: block;
    position: relative;
    border: 1px solid #3a2a1e;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 1000 / 260;
}

.dt-feature .ft-card:hover {
    opacity: 1;
    border-color: #a4161a;
}

.dt-feature .ft-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    display: block;
    filter: brightness(1.35);
}

.dt-feature .ft-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 7, 10, 0) 0%, rgba(8, 7, 10, .35) 30%, rgba(8, 7, 10, .8) 55%, rgba(8, 7, 10, .9) 100%);
}

.dt-feature .ft-card__status {
    position: absolute;
    z-index: 2;
    left: 16px;
    top: 16px;
    padding: 5px 14px;
    background: rgba(8, 7, 10, .7);
    border: 1px solid #c6a054;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    color: #c6a054;
}

.dt-feature .ft-card__body {
    position: absolute;
    z-index: 1;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    width: 58%;
    text-align: center;
}

.dt-feature .ft-card__label {
    display: inline-block;
    font-family: "Shippori Mincho", "Yu Mincho", serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .3em;
    color: #d0161f;
    text-shadow: 0 0 14px rgba(208, 22, 31, .55);
    margin-bottom: 8px;
    padding-left: .3em;
}

.dt-feature .ft-card__title {
    display: block;
    font-family: "Shippori Mincho", "Yu Mincho", serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: .05em;
    color: #fbf8f3;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .9);
    margin-bottom: 10px;
}

.dt-feature .ft-card__sub {
    display: block;
    font-size: 12px;
    color: #cfc8be;
    margin-bottom: 14px;
}

.dt-feature .ft-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 9px 24px;
    background: linear-gradient(180deg, #b8151e, #8c0f16);
    border: 1px solid #d0454b;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    color: #fff;
}

@media screen and (max-width: 680px) {
    .dt-feature .ft-hero__title {
        font-size: 27px;
    }

    .dt-feature .ft-card {
        aspect-ratio: 16 / 9;
    }

    .dt-feature .ft-card__body {
        right: 0;
        left: 0;
        width: auto;
        padding: 0 14px;
    }

    .dt-feature .ft-card::after {
        background: linear-gradient(180deg, rgba(8, 7, 10, .35) 0%, rgba(8, 7, 10, .82) 55%, rgba(8, 7, 10, .92) 100%);
    }

    .dt-feature .ft-card__title {
        font-size: 18px;
    }

    .dt-feature .ft-card__sub {
        font-size: 11px;
    }

    .dt-feature .ft-card__status {
        left: 10px;
        top: 10px;
        font-size: 10px;
        padding: 4px 10px;
    }
}
