@charset "UTF-8";

/* 関連記事セクション */
.related_section {
    margin: 60px 0;
}

.related_title {
    position: relative;
    font-size: 2rem;
    font-weight: bold;
    padding-bottom: 0.5em;
    border-bottom: 3px solid #ad8b2f;
    color: #333;
}

/* ボックス全体 */
.related_box {
    background: #fff8e6; /* #ad8b2fの淡色トーン */
    border: 2px solid #ad8b2f;
    border-radius: 8px;
    padding: 20px 30px;
    margin-top: 20px;
}

/* リスト内のリンク */
.related_box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.related_box li {
    margin-bottom: 10px;
}

.related_box a {
    color: #ad8b2f;
    font-weight: 500;
    text-decoration: underline;
    transition: color 0.2s ease;
}

/*.related_box a:hover {
    color: #8c6d1d;
    text-decoration: underline;
}*/