
/* ===== 書体の統一 (2026-07-29) =====
   旧: 見出しに trajan-pro-3 / dnp-shuei-mincho-pr6n (Adobe Fonts) を指定していたが
       読み込みタグが存在せず、実際にはOS既定のセリフ/ゴシックにフォールバックしていた。
       さらに Arial / Helvetica Neue / Noto Sans JP / Hiragino など計28か所で書体がバラバラ。
   新: 日本語=Noto Sans JP(本文500・見出し700)、英語見出し=Cinzel(元の Trajan の意図を踏襲)。
       いずれも functions.php で Google Fonts から読み込む。 */

:root {
	--rishiri-jp: "Noto Sans JP", "BIZ UDPGothic", "Hiragino Sans", "ヒラギノ角ゴシック", Meiryo, sans-serif;
	--rishiri-en: "Cinzel", Georgia, "Times New Roman", serif;
}

body, p, li, dl, dt, dd, table, th, td, blockquote, figcaption, label,
input, select, textarea, button, h1, h2, h3, h4, h5, h6 {
	font-family: var(--rishiri-jp) !important;
}

/* 高齢の方にも読みやすいよう本文をやや太めに
   （テーマ側 style.css / museum.css に body.page{font-weight:400 !important} があるため
   !important に加えて body[class] で詳細度を合わせる必要がある） */
body, body[class], p, li, dd, td, label, input, select, textarea, button {
	font-weight: 500 !important;
}
strong, b, th, dt {
	font-weight: 700 !important;
}

/* 英語の飾り見出し（Information / Navigation / Sightseeing / Access to Rishiri） */
.topno1 h2, .topno2 h2, .flex-item3 h2, .w800 h2, .oshirase h2, .oshirase-top h2, .navigation h2, .navi-area h2 {
	font-family: var(--rishiri-en) !important;
	font-weight: 600 !important;
	font-size: 40px;
	letter-spacing: .06em;
}
/* その下の日本語小見出し */
.topno1 h4, .topno2 h4, .flex-item3 h4, .w800 h4, .oshirase h4, .navigation h4, .navi-area h4 {
	font-family: var(--rishiri-jp) !important;
	font-weight: 700 !important;
	letter-spacing: .12em;
	color: #5b6470;
}

/* 個別パーツの太さ */
a.news-title {
	font-weight: 500 !important;
}
.news-date, .announcement-item-left time {
	font-weight: 500;
}
.navi-label, .stat-label {
	font-weight: 700;
}
.stat-value {
	font-weight: 700;
}
.footer-office h2 {
	font-family: var(--rishiri-jp) !important;
	font-weight: 700 !important;
	font-size: 1.05rem;
	letter-spacing: .04em;
	color: #fff;
}
.footer-office p, .footer-hours, .footer-links a, .footer-copyright {
	font-weight: 500;
}

@media (max-width: 600px) {
	.topno1 h2, .topno2 h2, .flex-item3 h2, .w800 h2, .oshirase h2, .navigation h2, .navi-area h2 {
		font-size: 30px;
	}
}
