/* ==========================================================
   News
   ========================================================== */

.p-news {
    padding: 80rem 0 100rem;
}

.p-news__inner {
    max-width: 1200rem;
    margin: 0 auto;
    padding: 0 40rem;
}

/* ヘッダー（Column と同じ構成） */
.p-news__header {
    display: flex;
    align-items: flex-start;
    gap: 40rem;
}

.p-news__title-vertical {
    writing-mode: vertical-rl;
    font-size: var(--fs-32);
    font-weight: 100;
    letter-spacing: 0.7em;
    color: #333;
    line-height: 1;
}

.p-news__heading {
    display: flex;
    align-items: center;
    gap: 24rem;
    padding-top: 8rem;
}

.p-news__heading-line {
    display: block;
    width: 120rem;
    height: 1rem;
    background-color: #333;
}

.p-news__heading-en {
    font-family: var(--font-bask-old);
    font-size: var(--fs-40);
    letter-spacing: 0.3em;
    color: #333;
}

/* カードリスト（3カラム） */
.p-news__list {
    display: flex;
    gap: 40rem;
    padding-left: 50rem;
    justify-content: center;
}

/* カード */
.p-news__card {
    width: 260rem;
    flex-shrink: 0;
}

.p-news__card-cat {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-bottom: 8rem;
    font-size: var(--fs-12);
    letter-spacing: 0.15em;
    color: #333;
    background-color: transparent;
    padding: 4rem 16rem;
}

.p-news__card-photo {
    overflow: hidden;
    width: 100%;
    aspect-ratio: 3 / 4;
}

.p-news__card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.p-news__card-date {
    display: block;
    font-family: var(--font-bask-old);
    font-size: var(--fs-13);
    color: #666;
    margin-top: 12rem;
    letter-spacing: 0.05em;
}

.p-news__card-title {
    font-size: var(--fs-14);
    font-weight: 700;
    color: #333;
    margin-top: 6rem;
}

.p-news__card-desc {
    font-size: var(--fs-14);
    line-height: 1.8;
    color: #333;
    margin-top: 4rem;
}

/* View more リンク（Works と同じデザイン） */
.p-news__more-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 60rem;
}

.p-news__more-link {
    position: relative;
    display: block;
    width: 325rem;
    height: 40rem;
}

.p-news__more-link-circle {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50rem;
    height: 50rem;
    border: 1rem solid #333;
    border-radius: 50%;
}

.p-news__more-link-line {
    position: absolute;
    left: 25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 300rem;
    height: 1rem;
    background-color: #333;
}

.p-news__more-link-label {
    position: absolute;
    right: 30rem;
    bottom: 50%;
    font-family: var(--font-bask-old);
    font-weight: 700;
    font-size: var(--fs-18);
    color: #333;
    white-space: nowrap;
}

/* ==========================================================
   News SP
   ========================================================== */
@media (max-width: 768px) {
    .p-news {
        padding: 60rem 0 80rem;
        background-color: #f2f0ec;
    }

    .p-news__inner {
        padding: 0 30rem;
    }

    /* ヘッダー（Column SP と統一） */
    .p-news__header {
        justify-content: space-between;
        margin-bottom: 50rem;
    }

    .p-news__title-vertical {
        font-size: var(--fs-18);
        letter-spacing: 0.07em;
    }

    .p-news__heading {
        align-items: center;
        justify-content: center;
        align-self: center;
        gap: 6rem;
    }

    .p-news__heading-line {
        width: 30rem;
    }

    .p-news__heading-en {
        font-size: var(--fs-18);
    }

    /* カードリスト（3枚横並びを維持） */
    .p-news__list {
        gap: 12rem;
        padding-left: 0;
    }

    /* カード */
    .p-news__card {
        width: auto;
        flex: 1;
        min-width: 0;
    }

    .p-news__card-cat {
        font-size: var(--fs-8);
        padding: 0 10rem;
        margin-bottom: 6rem;
        display: block;
        width: fit-content;
        margin-left: auto;
    }

    .p-news__card-date {
        font-size: var(--fs-11);
        margin-top: 8rem;
    }

    .p-news__card-title {
        font-size: var(--fs-9);
    }

    .p-news__card-desc {
        font-size: var(--fs-8);
    }

    /* View more（Column SP と統一） */
    .p-news__more-wrap {
        margin-top: 40rem;
    }

    .p-news__more-link {
        width: 130rem;
        height: 20rem;
    }

    .p-news__more-link-circle {
        width: 24rem;
        height: 24rem;
    }

    .p-news__more-link-line {
        left: 12rem;
        width: 118rem;
    }

    .p-news__more-link-label {
        font-size: var(--fs-10);
        right: 12rem;
    }
}
