/* ===========================================
   Place News 詳細ページ
   ※ place-news.css の末尾に追記
   Figma基準: 1280px
=========================================== */

/* -------------------------------------------
   記事エリア全体
------------------------------------------- */
.place-news-single {
    padding: 11.1vw 2.34vw;  /* 一覧ページと同じ余白 */
}

/* -------------------------------------------
   メタ（日付・カテゴリー）
------------------------------------------- */
.place-news-single__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2vw;        /* 20px */
}

.place-news-single__date {
    font-size: 1.5625vw;          /* 20px / 1280 */
    font-weight: 500;
    color: #8AB0A5;
    font-family: '游ゴシック体', 'Yu Gothic', YuGothic, sans-serif;
    letter-spacing: 0.03em;
}

.place-news-single__cat {
    font-size: 1.17vw;            /* 15px / 1280 */
    font-weight: 500;
    color: #999999;
    font-family: '游ゴシック体', 'Yu Gothic', YuGothic, sans-serif;
    word-wrap: break-word;
}

/* -------------------------------------------
   タイトル
------------------------------------------- */
.place-news-single__title {
    font-size: 2.34vw;            /* 30px / 1280 */
    font-weight: 700;
    color: #333333;
    font-family: '游ゴシック体', 'Yu Gothic', YuGothic, sans-serif;
    line-height: 1.4;
    margin: 0 0 3.91vw;           /* 50px */
}

/* -------------------------------------------
   本文
------------------------------------------- */
.place-news-single__content {
    font-size: 1.25vw;            /* 16px / 1280 */
    font-weight: 400;
    color: #333333;
    font-family: '游ゴシック体', 'Yu Gothic', YuGothic, sans-serif;
    line-height: 1.8;
}

.place-news-single__content p {
    margin: 0 0 2.34vw;
}

.place-news-single__content p:last-child {
    margin-bottom: 0;
}

/* -------------------------------------------
   Prev / Next ナビゲーション
------------------------------------------- */
.place-news-single__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 7.81vw;           /* 100px */
    padding-top: 3.91vw;          /* 50px */
}

.place-news-single__nav-link {
    font-size: 2.34vw;            /* 30px / 1280 */
    font-weight: 500;
    color: #000000;
    font-family: 'Inter', sans-serif;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    transition: opacity 0.2s;
}

.place-news-single__nav-link:hover {
    opacity: 0.6;
}

.place-news-single__nav-empty {
    display: block;
    width: 1px;
}

@media (max-width: 767px) {

    /* ロゴ切り替え */
    .place-news-page-header .place-news-page-logo .place-logo-black {
        display: none;
    }

    .place-news-page-header .place-news-page-logo .place-logo-white {
        display: block;
    }

    /* 記事エリア
    ---------------------------------------- */
    .place-news-single {
        padding: 21.86vw 4vw;
        /* top: 81.96px / 375 | side: 24.30px / 375 */
    }

    /* 日付・カテゴリー */
    .place-news-single__meta {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 5.8vw;
        /* 44.33px / 375 */
    }

    .place-news-single__date {
        font-size: 5.33vw;
        /* 20px / 375 */
    }

    .place-news-single__cat {
        font-size: 4vw;
        /* 15px / 375 */
        padding-top: 1.33vw;
        /* 5px / 375 - 縦位置調整 */
    }

    /* タイトル */
    .place-news-single__title {
        font-size: 5.33vw;
        /* 20px / 375 */
        line-height: 1.5;
        margin-bottom: 6.2vw;
        /* 19.45px / 375 */
    }

    /* 本文 */
    .place-news-single__content {
        font-size: 4.27vw;
        /* 16px / 375 */
        line-height: 1.2;
    }

    .place-news-single__content p {
        margin-bottom: 10.24vw;
        /* 38.4px / 375 */
    }

    /* Prev / Next */
    .place-news-single__nav {
        display: flex;
        justify-content: space-between;
        margin-top: 22vw;
        margin-bottom: 0;
        padding-top: 0;
    }

    .place-news-single__nav-link {
        font-size: 6.4vw;
        /* 24px / 375 */
        font-weight: 500;
        color: #333333;
        text-decoration: underline;
    }
}