.link_button {
    display: inline-block;
    width: 146px;
    height: 22px;
    padding: 12px 15px 8px 45px;
    /* 左側はアイコン分を多めに */
    color: #ffffff !important;
    font-size: 18px;
    line-height: 1;
    text-decoration: none;
    text-align: center;
    letter-spacing: 5px;
    border-radius: 9px;
    border: 1px solid #d1cfbe;
    /* 外枠のベージュ (#d1cfbe) */
    background: linear-gradient(to bottom,
            #71c530 0%,
            /* 上部の明るい黄緑 */
            /* #70a94d 50%, */
            /* 中央付近のやや暗い緑 */
            #3d8e24 70%
            /* 下部の濃い緑 */
        );
    /* 上側のハイライト */
    /* box-shadow:
        0 1px 0 #ffffff inset,
        0 0 3px rgba(0, 0, 0, 0.3); */
    /* 全体の薄い影 */
    position: relative;
}

/* 左の丸い「再生ボタン」風アイコンが欲しい場合 */
.link_button::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f5f5f5;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
    opacity: 0.8;
}

.link_button::after {
    content: "";
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 6px 0 6px 9px;
    border-color: transparent transparent transparent #59a023;
}

/* --- ページヘッダのボタン --- */
/* --- 横並び用 --- */
#header_link .btn-row {
    display: flex;
    gap: 20px;
    /* ボタン間のすき間。必要に応じて調整 */
    justify-content: center;
    /* 中央揃え */
    flex-wrap: wrap;
    /* 画面が狭いと折り返す（レスポンシブ対応） */
}

#header_link .btn-box {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 104px;
    /* ボタンの横幅 */
    height: 104px;
    /* ボタンの高さ */
    background-image: url('/assets/images/header_button_bg.png');
    background-size: cover;
    background-position: center;
    text-decoration: none;

    color: white;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);

    margin: reset;
    padding: reset;
}

#header_link .line1,
#header_link .line2 {
    width: 75px;
    text-align: justify;
    text-align-last: justify;
    margin: 5px auto;
}

#header_link .text-narrow-word {
    text-align: center !important;
    text-align-last: center !important;
    transform: scale(0.85, 1);
    width: 92px !important;
}

/* --- ページタイトル --- */
.page-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    font-size: 50px;
    letter-spacing: 0.25em;
    text-align: center;
    line-height: 1.2;
    color: #04764a;
    padding: 10px 0 28px;

    background-image: url('/assets/images/page_title_bg.png');
    /* background-size: cover; */
    /* background-position: center; */
    background-repeat: no-repeat;

    /* stroke は完全にオフ（白縁を消すため） */
    -webkit-text-stroke: 0;

    /* 下方向だけに白の光を入れる（外側だけ見える） */
    text-shadow:
        0 2px 2px #ffffff,
        0 4px 4px rgba(0, 0, 0, 0.2);
}

.page-subtitle {
    position: relative;
    width: 100%;
    height: 56px;
    font-weight: 400;
    font-size: 28px;
    letter-spacing: 0.1em;
    line-height: 1.2;
    color: #8a601e;
    margin-bottom: 20px;
    background-image: url('/assets/images/subtitle_bg_long.png');
    background-repeat: no-repeat;
}

.page-subtitle_text {
    position: absolute;
    left: 25px;
    top: 12px;
}

.page-short-subtitle {
    margin-bottom: 0;
    padding-bottom: 0;
}