/*
 * page.css
 *
 */


/* page-inner（.single-inner 参考、フォントは .single-content 参考） */
.page-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 80px 40px 120px;
    font-size: 18px;
    line-height: 1.6;
}
.s .page-inner {
    padding: 30px 20px 100px;
    font-size: calc(14 * var(--scale-rem));
}

/* page-header（news-header から移植） */
.page-header {
    text-align: center;
    padding-top: 80px;
}

/* page-title._page（news-title._news から移植） */
.page-title._page {
    font-family: ta-fuga-fude, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 58px;
    line-height: 1.1;
}
.s .page-title._page {
    font-size: calc(28 / var(--design-width-sp) * 100vw);
}

/* h1 の下マージンは .page-list の上マージンに合わせる */
h1.page-title._page {
    margin-bottom: 52px;
}

/* h2 は .store-name に合わせる */
h2.page-title._page {
    margin-top: 40px;
    font-family: 'Shippori Mincho', serif;
    font-weight: 600;
    font-size: calc(32 * var(--scale-rem));
}
.s h2.page-title._page {
    font-size: calc(24 * var(--scale-rem));
}

/* page-item-label（page-item 内のリンクテキスト） */
.page-item-label {
    font-size: 16px;
    font-weight: 900;
}
.s .page-item-label {
    font-size: calc(18 / var(--root-font-size) * 1rem);
}

/* page-meta（news-meta から移植） */
.page-meta {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

/* page-list（news-list から移植） */
.page-list {
    list-style: none;
    padding: 0 40px;
    max-width: 980px;
    margin: 28px auto;
    background: #fff;
}

/* page-item（news-item から移植） */
.page-item {
    transition: opacity 0.2s ease;
    border-bottom: #8b1d24 1px solid;
}
.page-item:last-child {
    border-bottom: none;
}
.page-item:hover {
    opacity: 0.8;
}
.page-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    text-decoration: none;
    color: #000;
}
.s .page-item a {
    padding: 24px 0px;
}
.page-item .page-meta {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.page-item a::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('../img/text-arrow.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-left: 24px;
    vertical-align: middle;
}

/* 注意書きセクションの見出し */
.page-inner section h4 {
    font-size: calc(28 * var(--scale-rem));
    margin-block: 40px 20px;
}
.s .page-inner section h4 {
    font-size: calc(20 * var(--scale-rem));
}

/* 電話番号ブロック */
.tell-box {
    background: #fff;
    margin: 28px 0;
    padding: 30px 20px;
}

/* page-date（news-date から移植） */
.page-date {
    color: #828282;
    font-size: 14px;
    font-weight: bold;
}

/* top-btn（news-single.css から移植） */
.top-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin: 80px auto 0;
    width: -moz-fit-content;
    width: fit-content;
    padding: 20px 70px 20px 30px;
    background: #fff;
    text-decoration: none;
    color: #920b27;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.top-btn::before {
    content: '';
    display: block;
    width: 36px;
    height: 36px;
    background-image: url('../img/arrowPrev_red.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}