@charset "utf-8";
/* 記事本文 */
@import url("/ssi/css/detail.css");

/* ==================================================
PC
================================================== */

/* var() 関数 */
:root {
	/* コンテンツ幅 */
	--content-width: 1500px;
	/* sidebar1の幅 */
	--sidebar1-width: 300px;
	/* sidebar2の幅 */
	--sidebar2-width: 300px;

	/* フォントサイズ / 行間 / 文字間 */
	--fontsize-main-base: 62.5%;
	--fontsize-main: 1.6rem;
	--lineheight-main: 1.5;
	--letterspacing-main: 0em;
	/* 一段階小さいフォントサイズ（一覧をみるボタンなど） */
	--fontsize-main-small: 1.5rem;
	/* 本文（ #main ） */
	--fontsize-detail: 1.8rem;
	--lineheight-detail: 1.75;
	--letterspacing-detail: 0.05em;
	/* 本文の一段階小さいフォントサイズ（日付など） */
	--fontsize-detail-small: 1.6rem;
	/* 見出し */
	--lineheight-detail-midashi: 1.5;
	--letterspacing-detail-midashi: 0.1em;

	/* フォントファミリー */
	--fontfamily-normal:
		"Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Arial, "BIZ UDPGothic", Meiryo, メイリオ, Osaka, sans-serif;
	/* 見出し / 太字 */
	--fontfamily-bold:
		"Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Arial, "BIZ UDPGothic", Meiryo, メイリオ, Osaka, sans-serif;
}
/* var() 関数 ここまで */

/* ========== レイアウト ========== */

/* 全体 */
html {
	font-size: var(--fontsize-main-base, 62.5%);
	scroll-behavior: smooth;
}

body {
	margin: 0px;
	padding: 0px;
	border: 0px;
}

#container {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;
	overflow: hidden;
}

/* ヘッダ */
#header {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;
}

/* フッタ */
#footer {
	clear: both;
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;
	background: url("/img/sites/rekishi/footer-bg.png") no-repeat center;
	background-size: cover;
}

/* メイン */
#mymainback {
	clear: both;
	float: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	height: auto;
	margin: 0px auto;
	padding: 0px;
}

#main {
	float: none;
	-webkit-box-ordinal-group: 12;
	-ms-flex-order: 11;
	order: 11;
	width: 100%;
	margin: 0px;
	padding: 0px;
}

#main_a {
	margin: 0px;
	padding: 0px;
}

#main_body {
	margin: 0px;
	padding: 0px;
}

/* サイド */
#sidebar1 {
	float: none;
	-webkit-box-ordinal-group: 11;
	-ms-flex-order: 10;
	order: 10;
	width: var(--sidebar1-width, 300px);
	margin: 0px;
	padding: 0px;
}

#sidebar2 {
	float: none;
	-webkit-box-ordinal-group: 13;
	-ms-flex-order: 12;
	order: 12;
	width: var(--sidebar2-width, 300px);
	margin: 0px;
	padding: 0px;
}

.tpl_side1 #main {
	width: calc(100% - var(--sidebar1-width, 300px));
}
.tpl_side1 #main_a {
	padding-left: 40px;
}

.tpl_side2 #main {
	width: calc(100% - var(--sidebar2-width, 300px));
}
.tpl_side2 #main_a {
	padding-right: 40px;
}

.tpl_side1.tpl_side2 #main {
	width: calc(100% - var(--sidebar1-width, 300px) - var(--sidebar2-width, 300px));
}
.tpl_side1.tpl_side2 #main_a {
	padding-left: 40px;
	padding-right: 40px;
}

.tpl_side1 hr.hide,
.tpl_side2 hr.hide {
	display: none;
}

/* ========== 基本設定 ========== */

/* フォント */
body,
button,
input[type="button"],
input[type="submit"],
input[type="text"],
textarea,
select {
	font-family: var(--fontfamily-normal, sans-serif);
	font-size: var(--fontsize-main, 1.6rem);
	line-height: var(--lineheight-main, 1.5);
	letter-spacing: var(--letterspacing-main, 0em);
	overflow-wrap: break-word;
}

#main {
	width: 100%;
	max-width: 1500px;
	margin: 0 auto;
	font-size: var(--fontsize-detail, 1.8rem);
	line-height: var(--lineheight-detail, 1.75);
	letter-spacing: var(--letterspacing-detail, 0.05em);
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
.subsite_menu_ttl,
.site_name {
	font-family: var(--fontfamily-bold, sans-serif);
	line-height: var(--lineheight-detail-midashi, 1.5);
	letter-spacing: var(--letterspacing-detail-midashi, 0.1em);
	font-weight: bold;
}

/* JavaScript挿入箇所のフォントファミリー（webフォント使用時） */
/*
#pankuzu_wrap, #footstep_wrap, #keep_page, #count_down_area,
#important_noticest_area, #important_noticest_area h2,
#osusume_contents_area, #osusume_contents_area h2,
#recommend_tag, #recommend_tag h2,
#ai_recommend_tag, #ai_recommend_tag h2 {
	font-family: Arial, 'BIZ UDPGothic', Meiryo, メイリオ, Osaka, sans-serif;
}
*/

em {
	font-family:
		"Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Arial, "BIZ UDPGothic", Osaka, "MS PGothic", sans-serif;
}

.mincho {
	font-family:
		"Hiragino Mincho Pro", "HiraMinProN-W3", "ヒラギノ明朝 Pro W3", Century, "BIZ UDPMincho", "游明朝", "Yu Mincho",
		"游明朝体", "YuMincho", serif;
}

/* 文字色 */
body {
	color: #333333;
	background-color: #e8e4dc;
}

/* リンク */
a:link {
	color: #333333;
	text-decoration: none;
}
a:visited {
	color: #333333;
	text-decoration: underline;
}
a:active {
	color: #333333;
	text-decoration: underline;
}
a:hover,
a:focus {
	color: #333333;
	text-decoration: underline;
}

button:hover,
button:focus {
	color: #000000;
	text-decoration: underline;
}

a img {
	border: none;
	-webkit-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
}
a:hover img,
a:focus img {
	opacity: 0.75;
}

/* レスポンシブアコーディオン用 */
input[id*="acc_ttl_label"] {
	display: none;
}
.acc_icon {
	display: none;
}

/* レスポンシブアコーディオン用（class付与） */
.acc_title.accordion {
	pointer-events: none;
}
.acc_title.accordion:focus {
	outline: none;
}
.acc_title.accordion a {
	pointer-events: auto;
}

/* ========== ヘッダ ========== */

/* スマートフォン用 */
#spm_wrap {
	display: none;
}
#btn_spm_support {
	display: none;
}

/* ヘッダ */
#header2_box {
	width: 100%;
	max-width: 1500px;
	margin: 0px auto;
	padding: 20px 0px;
	padding-top: 30px;
	position: relative;
}

#he_left {
	width: 100%;
	max-width: 200px;
	position: absolute;
	top: 40px;
	left: 42px;
	z-index: 1;
}
#he_left #logo {
	margin: 0px;
}
#he_left #logo h1,
#he_left #logo p {
	margin: 0px;
}
#he_left #logo a {
	display: block;
}
#he_left #logo img {
	max-width: 100%;
	width: 100%;
	height: auto;
	vertical-align: top;
}

#he_right {
	margin-left: 200px;
	text-align: right;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-bottom: 28px;
}

/* ヘッダメニュー */
.header_nav ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: center;
}
.header_nav ul li[class^="h_"] {
	display: inline-block;
	vertical-align: top;
	margin: 0px 0px 0px 1rem;
	text-align: left;
}
.header_nav ul li[class^="h_"]:first-child {
	margin-left: 0px;
}

/* アクセシビリティ機能 */
.h_support {
	width: 100px;
	position: relative;
}

#support_menu_box {
	display: none;
	position: absolute;
	top: 4rem;
	right: -4.3rem;
	z-index: 100;
	border: 1px solid;
	border-radius: 0px;
	background: #ffffff;
	-webkit-box-shadow: 0px 3px 10px -2px rgba(0, 0, 0, 0.5);
	box-shadow: 0px 3px 10px -2px rgba(0, 0, 0, 0.5);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	min-width: max-content;
	margin: 0px;
	padding: 20px 5rem;
	text-align: center;
}
#support_menu_box.open {
	display: flex;
	gap: 30px;
	justify-content: center;
	width: 100%;
}

#btn_support_menu_close {
	border: none;
	background: #e6e6e6;
	font-size: 1.4rem;
	margin: 0px;
	padding: 0px 15px;
}

dl#moji_size,
dl#haikei_color {
	margin: 0px 0px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
dl#moji_size dt,
dl#haikei_color dt {
	display: inline-block;
	vertical-align: middle;
	min-width: 5em;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.8rem;
	margin: 0px 4px 0px 0px;
	padding: 6px 0px;
}
dl#moji_size dd,
dl#haikei_color dd {
	display: inline-block;
	vertical-align: middle;
	margin: 0px 0px 0px 4px;
	padding: 0px;
}
dl#moji_size dd a,
dl#haikei_color dd a {
	display: block;
	background: #ffffff;
	border: 1px solid #cccccc;
	border-radius: 0;
	color: #333333;
	font-size: 1.2rem;
	line-height: 1.8rem;
	padding: 5px 8px;
}
dl#moji_size dd a {
	padding: 5px 10px;
}
dl#moji_size dd a#moji_large {
	font-size: 1.4rem;
	font-weight: bold;
}
.font_size_limit_max dl#moji_size dd a#moji_large {
	background: #f6f6f6;
	color: #666666;
}

dl#haikei_color dd a#haikei_white {
	border-color: #cccccc;
	background: #ffffff !important;
	color: #333333 !important;
}
dl#haikei_color dd a#haikei_black {
	border-color: #000000;
	background: #000000 !important;
	color: #ffffff !important;
}
dl#haikei_color dd a#haikei_blue {
	border-color: #0000ff;
	background: #0000ff !important;
	color: #ffff00 !important;
}

/* 検索 */
.header_search {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

/* キーワード検索 */
#top_search_keyword {
	text-align: left;
}

#cse-search-box .search_ttl {
	display: block;
}
#cse-search-box .search_ipt {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	width: 30rem;
	border: 1px solid #8a2e31;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
#tmp_query {
	display: inline-block;
	vertical-align: middle;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: calc(100% - 6rem) !important;
	height: 3.8rem !important;
	border: none !important;
}
#submit {
	display: inline-block;
	vertical-align: middle;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	min-width: 6rem;
	height: 3.8rem;
	border: none;
	background: #8a2e31;
	color: #ffffff;
	margin: 0px;
	padding: 0px;
	font-size: 1.6rem;
	line-height: 3.8rem;
	letter-spacing: 0.1em;
	white-space: nowrap;
}

#cse_filetype {
	margin-top: 5px;
	text-align: right;
}
#cse_filetype fieldset {
	border: none;
	margin: 0px;
	padding: 0px;
}
#cse_filetype fieldset legend {
	display: none;
	margin: 0px;
	padding: 0px;
}
#cse_filetype fieldset span {
	font-size: 1.4rem;
	display: inline-block;
	vertical-align: middle;
}
#cse_filetype fieldset span input {
	margin: 3px 4px 5px 5px;
	vertical-align: middle;
}

/* ページID検索 */
#top_search_page_id {
	text-align: left;
	margin-left: 20px;
}

#open_page_id_box .search_ttl {
	display: block;
}
#open_page_id_box .search_ipt {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	width: 20rem;
	border: 1px solid #8a2e31;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
#open_page_id {
	display: inline-block;
	vertical-align: middle;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: calc(100% - 6rem);
	height: 3.8rem;
	border: none;
}
#open_page_id_submit {
	display: inline-block;
	vertical-align: middle;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	min-width: 6rem;
	height: 3.8rem;
	border: none;
	background: #8a2e31;
	color: #ffffff;
	margin: 0px;
	padding: 0px;
	font-size: 1.6rem;
	line-height: 3.8rem;
	letter-spacing: 0.1em;
	white-space: nowrap;
}

#open_page_id_message {
	margin-top: 5px;
	text-align: right;
	font-size: 1.4rem;
}
#open_page_id_message:empty {
	display: none;
}

/* グローバルナビ */
#top_search {
	background: transparent;
}

.gnav ul {
	width: var(--content-width, 1080px);
	margin: 0px auto;
	padding: 20px 0px;
	list-style: none;
	display: table;
	table-layout: fixed;
}
.gnav ul li {
	display: table-cell;
	vertical-align: middle;
	border-right: 1px solid;
}
.gnav ul li:first-child {
	border-left: 1px solid;
}
.gnav ul li a {
	display: block;
	background: transparent;
	color: #333333;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 2rem;
	letter-spacing: 0.1em;
	text-decoration: none;
	text-align: center;
	padding: 5px 10px;
	-webkit-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}
.gnav ul li a:hover,
.gnav ul li a:focus {
	background: rgba(255, 255, 255, 0.5);
}

/* サブサイト共通ヘッダ */
#mainimg {
	width: 100%;
	max-width: 1500px;
	margin: 12px auto 0px;
}

#mainimg_box {
	position: relative;
}
#mainimg_box a {
	display: block;
	color: inherit;
	text-decoration: none;
}
#mainimg_box img {
	width: 100%;
	height: auto;
	vertical-align: top;
}
#mainimg_box .site_name {
	display: block;
	width: 100%;
	margin: 0px;
	padding: 0px 30px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 3.2rem;
	text-shadow:
		0px 0px 3px #ffffff,
		0px 0px 3px #ffffff,
		0px 0px 3px #ffffff,
		0px 0px 3px #ffffff,
		0px 0px 3px #ffffff,
		0px 0px 3px #ffffff,
		0px 0px 3px #ffffff,
		0px 0px 3px #ffffff,
		0px 0px 3px #ffffff,
		0px 0px 3px #ffffff,
		0px 0px 3px #ffffff,
		0px 0px 3px #ffffff,
		0px 0px 3px #ffffff,
		0px 0px 3px #ffffff,
		0px 0px 3px #ffffff;
	position: absolute;
	top: 30px;
	left: 0px;
	z-index: 1;
}
#mainimg_box .site_name.noimage {
	position: static;
	padding: 30px;
	text-shadow: none;
	background: #f6f6f6;
	color: #333333;
}

/* メニューへのリンク（スマートフォン用） */
.link_to_subsitemenu {
	display: none;
}

/* ========== フッタ ========== */

/* フッタ */
#author_info {
	background-color: #000000bf;
}
#author_info_box {
	width: 100%;
	max-width: 1107px;
	margin: 0px auto;
	padding: 50px 0px 80px;
}

/* フッタメニュー */
.footer_navi {
	padding: 50px 0px 20px;
}
.footer_navi ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: center;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 40px;
}
.footer_navi ul li {
	display: inline-block;
	vertical-align: top;
	line-height: 1.25;
	font-size: 1.4rem;
}
.footer_navi ul li:last-child {
	margin-right: 0px;
	padding-right: 0px;
	border-right: none;
}

/* 管理者情報 */
#author_box {
	display: flex;
	justify-content: space-between;
	margin: 0px;
	padding: 0px;
}
#author_box p {
	margin: 0px 0px 0.5em;
}
#author_box p.f_author {
	font-size: 3.4rem;
	font-weight: bold;
	font-family:
		"游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3",
		serif;
}
#author_box p.f_number {
	font-size: var(--fontsize-main-small, 1.5rem);
}

/* コピーライト */
#copyright {
	margin: 0px;
	padding: 0px;
}
#copyright p {
	font-size: 1.2rem;
	letter-spacing: 0.1em;
	margin: 0px;
}

/* ページトップボタン */
#btn_pagetop {
	display: block;
	width: 74px;
	position: fixed;
	right: 10px;
	bottom: -180px;
	z-index: 70;
	-webkit-transition: bottom 0.5s ease-in-out;
	-o-transition: bottom 0.5s ease-in-out;
	transition: bottom 0.5s ease-in-out;
}
#btn_pagetop.fixed {
	bottom: 10px;
}
#btn_pagetop a {
	display: block;
}
#btn_pagetop img {
	width: 100%;
	height: auto;
	vertical-align: top;
}

/* サブサイト共通フッタ */
#site_footer {
	clear: both;
	float: none;
	width: 100%;
	max-width: 1500px;
	margin: 0px auto 41px;
	border: none;
	border-radius: 0;
	background: url("/img/sites/rekishi/footer-kyoutuu-bg.png") no-repeat center;
	background-size: cover;
	color: #333333;
}
#site_footer_box {
	padding: 64px 77px;
}
#site_footer_box p {
	margin: 0px 0px 2em;
}
#site_footer_box p:last-child {
	margin-bottom: 0px;
}
#site_footer_box img {
	max-width: 100%;
	height: auto !important;
	vertical-align: top;
}

/* ========== パンくず / 足あと ========== */

/* パンくず・足あと */
#pankuzu_wrap {
	background: transparent;
	color: #333333;
	padding: 36px 0px 5px;
	font-size: var(--fontsize-main-small, 1.5redm);
}
#pankuzu_wrap > div {
	width: 100%;
	max-width: 1500px;
	margin: 0px auto 31px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.pankuzu,
#footstep {
	position: relative;
	padding-left: 9rem;
}
.pankuzu .icon_current {
	display: none;
}
.pankuzu:first-child .icon_current,
#footstep_ttl {
	display: block;
	width: 7rem;
	height: auto;
	border: none;
	border-radius: 8px;
	background: #7f674a;
	color: #ffffff;
	font-size: 1.4rem;
	line-height: 1.6rem;
	padding: 0.8rem 0px;
	text-align: center;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: absolute;
	top: -4px;
	left: 0px;
}

#clear_footstep {
	width: 24px;
	height: 24px;
	border-radius: 100%;
	border: none;
	background: url("/img/common/icon_clear.png") no-repeat center center #ab272d;
	background-size: 10px 10px;
	color: #ffffff;
}

/* ========== 見出し / 表 ========== */

/* 見出し */
#main_header {
	margin-bottom: 50px;
}
#main_header h1 {
	margin: 0px;
	padding: 17px 35px;
	background: #7f674a;
	color: #ffffff;
	font-size: 2.8rem;
}

#main_body :where(h2, h3, h4, h5, h6) {
	clear: both;
	margin: 1em 0px;
}

#main_body h2 {
	padding: 21px 30px 20px;
	background: #f6f6f6;
	font-size: 2.4rem;
	border-left: 10px solid #7f674a;
}
#main_body h3 {
	padding: 17px 0px;
	background: transparent;
	font-size: 2.2rem;
	border-bottom: 2px solid #7f674a;
}
#main_body h4 {
	padding: 0px 17px 0px;
	background: transparent;
	font-size: 2rem;
	border-left: 4px solid #7f674a;
}
#main_body h5 {
	padding: 10px 0px;
	background: transparent;
	font-size: 1.8rem;
}
#main_body h6 {
	padding: 7px 0px 6px;
	background: transparent;
	font-size: 1.6rem;
}

/* テーブル */
#main_body table {
	border-color: #b3b3b3;
	border-collapse: collapse;
	border-style: solid;
	border-width: 1px; /* CMSver5以降は管理画面で枠線の太さを変更することができない（機能が削除された）ためCSSで指定 */
	margin: 0px 0px 1em;
	max-width: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
#main_body th {
	background: #ffffff;
	color: #333333;
	border-color: #b3b3b3;
	border-collapse: collapse;
	border-style: solid;
	border-width: 1px;
	font-weight: 400;
	padding: 0.5em;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
#main_body td {
	border-color: #b3b3b3;
	border-collapse: collapse;
	border-style: solid;
	border-width: 1px;
	padding: 0.5em;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: #ffffff;
}
/* テーブル内のpタグのマージンを0にする */
#main_body table p {
	margin: 0px 0px 1em;
}
#main_body table p:last-child {
	margin: 0px;
}

/* ========== メイン ========== */

/* メイン */
#mymainback {
	padding-top: 30px;
	padding-bottom: 47px;
}

/* コンテンツヘッダ */
#content_header {
	margin: 0px 0px 20px;
	text-align: right;
	font-size: var(--fontsize-main-small, 1.5rem);
}
#content_header > span {
	display: inline-block;
	margin-left: 2em;
}

/* コンテンツフッタ */
#content_footer {
	clear: both;
	margin-bottom: 80px;
}

/* 印刷 */
#print_mode_link,
#print_mode_link_large {
	display: inline-block;
	background: url("/img/common/icon_print.png") no-repeat left center transparent;
	padding-left: 20px;
}

/* SDGsアイコン */
.d-flex.f-wrap-wrap,
.sdgs-icons {
	margin: 0px 0px 20px;
	text-align: left;
}
.d-flex.f-wrap-wrap > *,
.sdgs-icons > * {
	display: inline-block;
	vertical-align: top;
	margin: 0px 5px 5px 0px;
	width: 100px;
}

.d-flex.f-wrap-wrap img,
.sdgs-icons img {
	width: 100px;
	height: auto;
	vertical-align: top;
}
.d-flex.f-wrap-wrap > * img,
.sdgs-icons > * img {
	display: block;
	margin: 0px;
	width: 100%;
	height: auto;
}

/* カレンダー登録 */
#calendar_button_google,
#calendar_button_yahoo {
	display: inline-block;
	vertical-align: top;
	margin: 25px 33px 0px 0px;
}
#calendar_button_google a,
#calendar_button_yahoo a {
	display: inline-block;
	font-size: 1.8rem;
	line-height: 2rem;
	padding: 5px 0px 5px 48px;
	background: url("/img/sites/rekishi/icon_calender.png") no-repeat left center transparent;
}

/* SNSボタン */
.sns_button_wrap {
	margin-top: 40px;
	line-height: 1;
}
.sns_button_wrap > div {
	display: inline-block;
	vertical-align: top;
}

/* PDF・WMPリンク */
.pdf_download,
.wmplayer_download {
	clear: both;
	margin: 23px 0px 0px;
	width: 100%;
	display: table;
}
.pdf_download .pdf_img,
.wmplayer_download .wmplayer_img {
	display: table-cell;
	vertical-align: middle;
	width: 158px;
	margin: 0px;
	padding: 0px;
}
.wmplayer_download .wmplayer_img {
	width: 88px;
}
.pdf_download .pdf_img img,
.wmplayer_download .wmplayer_img img {
	width: 100%;
	height: auto;
	vertical-align: top;
}

.tenpu_txt {
	display: table-cell;
	vertical-align: middle;
	margin: 0px;
	padding: 2px 0px 2px 10px;
	font-size: 1.3rem;
	line-height: 1.4;
	letter-spacing: 0em;
}

/* 評価エリア */
#hyouka_area_box {
	clear: both;
	margin: 40px 0px 0px;
	padding: 29px 77px;
	background: #ffffff;
	border-radius: 6px;
}

#hyouka_area_box h2,
#main_body #hyouka_area_box h2 {
	margin: 0px 0px 15px;
	padding: 10px;
	border: none;
	border-radius: 0;
	background: none;
	color: inherit;
	font-size: 1.6rem;
	border-bottom: 1px solid #7f674a;
}
#main_body #hyouka_area_box h2::before,
#main_body #hyouka_area_box h2::after {
	display: none;
}
#main_body #hyouka_area_box hr.cf {
	margin: 0px;
}

#hyouka_area_box .hyouka_box_detail {
	border-bottom: 1px solid #7f674a;
	margin-bottom: 11px;
	padding-bottom: 15px;
	font-size: 1.6rem;
}
#hyouka_area_box .hyouka_box_detail:last-child {
	margin-bottom: 0px;
}
#hyouka_area_box .hyouka_box_detail fieldset {
	border: none;
	margin: 0px;
	padding: 0px;
}
#hyouka_area_box .hyouka_box_detail fieldset legend {
	margin: 0px 0px 7px;
	padding: 0px;
	width: 100%;
}
#hyouka_area_box .hyouka_box_detail fieldset span {
	display: inline-block;
	vertical-align: top;
	margin: 0px 4em 0px 0px;
}
#hyouka_area_box .hyouka_box_detail fieldset span:first-of-type {
	min-width: 11em;
}
.font_size_changed #hyouka_area_box .hyouka_box_detail fieldset span:first-of-type {
	min-width: auto;
}
#hyouka_area_box .hyouka_box_detail fieldset span input {
	margin: 3px 25px 5px 5px;
	vertical-align: middle;
}

#hyouka_area_submit {
	margin-top: 38px;
}
#hyouka_area_submit input {
	display: inline-block;
	border: 1px solid transparent;
	border-radius: 0;
	background: #a54a3f;
	color: #ffffff;
	margin: 0px;
	padding: 10px;
	font-size: 1.6rem;
	line-height: 1.8rem;
	text-decoration: none;
	text-align: center;
	width: 179px;
	max-width: 90%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 12px;
}
#hyouka_area_submit input:hover,
#hyouka_area_submit input:focus {
	text-decoration: underline;
}

/* お問い合わせ先 */
#section_footer {
	clear: both;
	margin: 50px 0px 0px;
	padding: 26px 78px;
	background: #ffffff;
	border-radius: 6px;
}

#section_footer h2,
#main_body #section_footer h2 {
	margin: 0px 0px 15px;
	padding: 10px;
	border: none;
	border-radius: 0;
	background: none;
	color: inherit;
	font-size: 1.8rem;
	border-bottom: 1px solid #7f674a;
}
#main_body #section_footer h2::before,
#main_body #section_footer h2::after {
	display: none;
}
#main_body #section_footer hr.cf {
	margin: 0px;
}

#section_footer_detail span {
	display: inline-block;
	vertical-align: top;
	margin-right: 1em;
}
#section_footer_detail span[class*="sf_name"] {
	margin-bottom: 10px;
}

/* おすすめコンテンツ */
#osusume_contents_area {
	clear: both;
}
#osusume_contents_area .second_osusume {
	margin: 40px 0px 0px;
	padding: 30px;
	background: #f6f6f6;
}
#osusume_contents_area .second_osusume h2,
#osusume_contents_area .second_osusume_ttl {
	margin: 0px 0px 20px;
	padding: 0px 0px 0px 25px;
	background: url("/img/common/icon_osusume.png") no-repeat left center transparent;
	color: inherit;
	font-size: 2rem;
}
#osusume_contents_area .second_osusume ul {
	margin: 0px;
	padding: 0px 10px;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 30px;
}
#osusume_contents_area .second_osusume ul li {
	width: 200px;
}
#osusume_contents_area .second_osusume ul li div > span {
	display: block;
}
#osusume_contents_area .second_osusume ul li div > span.osusume_img {
	margin-bottom: 10px;
}
#osusume_contents_area .second_osusume ul li div > span.osusume_img img {
	width: 100%;
	height: auto;
	vertical-align: top;
}

/* ========== サイド ========== */

/* サイドバー */
#sidebar1 > div,
#sidebar2 > div {
	margin-bottom: 20px;
}
#sidebar1 > div:last-child,
#sidebar2 > div:last-child,
#sidebar1 > div:empty,
#sidebar2 > div:empty {
	margin-bottom: 0px !important;
}

#sidebar1 img,
#sidebar2 img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

/* 自由編集項目 */
.free_box {
	display: flow-root;
}
.free_box p {
	margin: 0px 0px 1em;
}
.free_box p:last-child {
	margin-bottom: 0px;
}
.free_box img {
	max-width: 100%;
	height: auto !important;
	vertical-align: top;
}

/* 重要なお知らせ */
#important_noticest_area .second_important {
	background: #ffffff;
	border-radius: 12px;
	border: 1px solid #ff0000;
	padding-bottom: 45px;
}
#important_noticest_area .second_important a {
	color: #842f34;
}

#important_noticest_area .second_important h2,
#important_noticest_area .second_important_ttl {
	margin: 0px 0px 45px;
	padding: 20px 20px 20px 115px;
	color: #842f34;
	font-size: 2.6rem;
	text-align: left;
	border-radius: 12px 12px 0 0;
	background: url("/img/sites/rekishi/important.png") no-repeat left 53px center;
	background-color: #f2cecc;
}

#important_noticest_area .second_important ul {
	margin: 0px 0px 15px;
	padding: 0px;
	list-style: none;
	padding-left: 55px;
}
#important_noticest_area .second_important ul li:last-child {
	margin-bottom: 0px;
}
#important_noticest_area .second_important ul li > span {
	display: block;
	font-size: 1.6rem !important;
	color: #333333 !important;
}
#important_noticest_area .second_important ul li > span.article_date {
	font-size: var(--fontsize-main-small, 1.5rem);
	width: 100%;
	max-width: 200px;
}

#important_noticest_area .second_important .link_box {
	margin-top: 22px;
	text-align: right;
	display: flex;
	justify-content: flex-end;
	gap: 28px;
	padding-right: 50px;
}
#important_noticest_area .second_important .link_box > span {
	display: block;
	margin-top: 5px;
	border: 1px solid #842f34;
	border-radius: 50px;
	padding: 7px 0px;
	width: 100%;
	max-width: 260px;
	text-align: center;
	background: url("/img/sites/rekishi/imp-arrow.png") no-repeat right 20px center;
}
#important_noticest_area .second_important .link_box > span a {
	font-size: 1.6rem;
}

/* カウントダウン */
#count_down_area .count_down_box {
	background: #f6f6f6;
	margin: 0px 0px 15px;
	padding: 20px;
	position: relative;
}
#count_down_area .count_down_box:last-child {
	margin-bottom: 0px;
}

#count_down_area .count_down_box2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
#count_down_area .count_down_box2 > span {
	display: inline-block;
	vertical-align: top;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

#count_down_area .count_down_box2 > span.count_img {
	width: 100px;
}
#count_down_area .count_down_box2 > span.count_img > span {
	display: block;
}
#count_down_area .count_down_box2 > span.count_img > span img {
	width: 100%;
	height: auto;
	vertical-align: top;
}

#count_down_area .count_down_box2 > span.count_txt {
	width: calc(100% - 120px);
}
#count_down_area .count_down_box2 > span.count_txt:only-child {
	width: 100%;
}
#count_down_area .count_down_box2 > span.count_txt > span {
	display: block;
}
#count_down_area .count_down_box2 > span.count_txt > span.count_comment {
	margin-top: 10px;
	font-size: 1.4rem;
}
#count_down_area .count_down_box2 > span.count_txt > span.count_day {
	margin-top: 10px;
	color: #cc0000;
	font-weight: bold;
	text-align: right;
}
#count_down_area .count_down_box2 > span.count_txt > span.count_day span {
	font-size: 3rem;
	line-height: 1;
	margin-left: 0.5em;
	margin-right: 0.25em;
}

/* カウントダウン クリアボタン */
#count_down_area .count_down_clear {
	display: block;
	width: 24px;
	height: 24px;
	margin: 0px;
	padding: 0px;
	border: 2px solid #ffffff;
	background: url("/img/common/icon_clear.png") no-repeat center center #333333;
	background-size: 10px 10px;
	border-radius: 100%;
	color: #ffffff;
	line-height: 1;
	text-align: left;
	text-indent: -9999em;
	overflow: hidden;
	cursor: pointer;
	position: absolute;
	top: 0px;
	right: 0px;
}
/* カウントダウン クリアボタンを使用しない */
#count_down_area .count_down_clear {
	display: none;
}

/* レコメンド・AIレコメンド */
#sidebar_recommend,
#sidebar_ai_recommend {
	background: #ffffff;
	padding: 28px 78px;
	border-radius: 6px;
	margin-bottom: 40px;
}

#recommend_title,
#ai_recommend_title {
	background: #ffffff;
	text-align: left;
	border-bottom: 1px solid #7f674a;
	margin-bottom: 10px;
}
#recommend_title h2,
#ai_recommend_title h2 {
	display: flex;
	text-align: left;
	font-size: 1.8rem;
	line-height: 2rem;
	margin: 0px;
	padding: 15px 0px 15px 30px;
}
#recommend_title h2 {
	background: url("/img/sites/rekishi/icon_recommend.png") no-repeat left center transparent;
	color: inherit;
}
#ai_recommend_title h2 {
	background: url("/img/sites/rekishi/icon_ai_recommend.png") no-repeat left center transparent;
	color: inherit;
}
#recommend_title h2 span,
#ai_recommend_title h2 span {
	display: block;
}

#sidebar_recommend ul,
#sidebar_ai_recommend ul {
	margin: 0px;
	padding: 0px;
	list-style: disc;
	padding-left: 20px;
}
#sidebar_recommend ul li,
#sidebar_ai_recommend ul li {
	display: block;
	border-top: 1px solid #ffffff;
	display: list-item;
	position: relative;
}

/* 関連リンク */
#kanren_link h2 {
	background: #e6e6e6;
	margin: 0px;
	padding: 15px 20px;
	font-size: 2rem;
	text-align: center;
}
#kanren_link ul {
	margin: 0px;
	padding: 20px 0px 20px 20px;
}
#kanren_link ul li {
	margin-bottom: 15px;
}
#kanren_link ul li:last-child {
	margin-bottom: 0px;
}

/* 「見つからないときは」「よくある質問」バナー */
.common_banner_link ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
.common_banner_link *[class*="common_banner_"] {
}
.common_banner_link *[class*="common_banner_"]:last-child {
	margin-bottom: 0px;
}
.common_banner_link a {
	display: block;
	border: 1px solid transparent;
	background: #e6e6e6;
	color: #ffffff;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.8rem;
	letter-spacing: 0;
	padding: 11px 5px;
	text-align: center;
	border-radius: 12px;
}
.common_banner_link a > span {
	display: inline-block;
	padding: 5px 0px 5px 25px;
}
.common_banner_link .common_banner_mitsukaranai a > span {
	background: url("/img/sites/rekishi/icon_mitsukaranai.png") no-repeat left center transparent;
	color: inherit;
}
.common_banner_link .common_banner_faq a > span {
	background: url("/img/sites/rekishi/icon_faq.png") no-repeat left center transparent;
	color: inherit;
}
.common_banner_link a:hover,
.common_banner_link a:focus,
.common_banner_link a:hover span,
.common_banner_link a:focus span {
	text-decoration: underline;
}

/* サブサイト大小メニュー */
.subsite_menu {
	background-color: transparent;
	margin: 0px 0px 0px;
}
.subsite_menu:last-child {
	margin-bottom: 0px;
}

.subsite_menu_ttl {
	margin: 0px;
	padding: 0px 20px;
	font-size: 1.6rem;
	text-align: center;
	background-color: transparent;
}
.subsite_menu_ttl a {
	color: inherit;
}

.subsite_menu_list ul {
	display: flex;
	margin: 0px;
	gap: 80px;
	list-style: none;
	padding: 28px 0px 28px 0px;
	justify-content: flex-end;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	flex-wrap: wrap;
}
.subsite_menu_list ul li {
}
.subsite_menu_list ul li:last-child {
	margin-bottom: 0px;
}

.subsite_menu_list div.link_ichiran {
	display: block;
	margin: 0px;
	padding: 0px 0px 28px;
	text-align: right;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}
.subsite_menu_list div.link_ichiran a {
	display: inline-block;
}

/* サブサイト大小メニュー（開閉） */
.subsite_menu summary:only-child {
	display: block;
	list-style-type: none;
	pointer-events: none;
	cursor: auto;
}
.subsite_menu summary:only-child::-webkit-details-marker {
	display: none;
}
.subsite_menu summary:only-child a {
	pointer-events: auto;
}
/* サブサイト大小メニュー（開閉）（PCは開閉しない） */
@media screen and (min-width: 1081px) {
	#author_info_box {
		padding: 50px 0px 45px;
	}
	.subsite_menu summary {
		display: block;
		list-style-type: none;
		/* pointer-events: none; */
		color: currentColor;
		cursor: pointer;
	}
	.subsite_menu summary::-webkit-details-marker {
		display: none;
	}
	.subsite_menu summary a {
		pointer-events: auto;
	}
}
/* サブサイト大小メニュー（開閉）（PCは開閉しない） ここまで */

/* ========== リスト ========== */

/* リスト（一覧） */
.info_list ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
.info_list ul li {
	display: flex;
	flex-direction: column;
	margin: 7px 0px 18px;
}

/* リスト（日付） */
.info_list.info_list_date ul li {
	width: 100%;
	display: table;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.info_list.info_list_date ul li > span {
	display: table-cell;
	vertical-align: top;
}
.info_list.info_list_date ul li > span.article_date {
	width: calc(11em + 10px);
	font-size: var(--fontsize-detail-small, 1.6rem);
	padding-top: 0.1rem;
}

/* リスト（日付 / 文字拡大時） */
.font_size_changed .info_list.info_list_date ul li,
.font_size_changed .info_list.info_list_date ul li > span {
	display: block;
}
.font_size_changed .info_list.info_list_date ul li > span.article_date {
	width: auto;
	padding-top: 0px;
}

/* リスト（担当課） */
.article_section:has(span:empty) {
	display: none;
}

/* リスト（サムネイル） */
.list_pack {
	width: 100%;
	display: table;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding-top: 10px;
	padding-bottom: 10px;
	display: flex;
	flex-direction: column;
}

.list_pack .article_txt {
	display: table-cell;
	vertical-align: top;
	background-color: #ffffff;
	padding: 22px 18px 5rem 18px;
	height: 10rem;
}
.list_pack .article_txt .article_date {
	display: block;
	margin-bottom: 10px;
}
.list_pack .article_txt .article_title {
	display: block;
	font-size: 2rem;
}

.list_pack .article_img {
	display: table-cell;
	vertical-align: top;
	width: auto;
	padding-right: 0px;
}
.list_pack .article_img span {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 468 / 220;
	overflow: hidden;
	background: #f6f6f6;
}
.list_pack .article_img span:empty {
	background: url("/img/common/noimage.png") no-repeat center center transparent;
	background-size: cover;
}
.list_pack .article_img span img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
}

/* ========== Googleカスタム検索結果 ========== */

/* googleカスタム検索結果 */
#main_body #cse_search_result table,
#main_body #cse_search_result table td,
#main_body .gsc-control-cse table,
#main_body .gsc-control-cse table td {
	border: none;
	margin: 0px;
}

.gsc-results .gsc-cursor-box .gsc-cursor-page {
	display: inline-block !important;
	vertical-align: top;
	margin: 0px 0px 5px;
	padding: 10px 15px;
	border: 1px solid #cccccc !important;
	background: #ffffff !important;
	color: #0066cc !important;
	font-size: 1.6rem;
}
.gsc-results .gsc-cursor-box .gsc-cursor-current-page {
	background: #f5f5f5 !important;
	color: #333333 !important;
}

/* take */

.br-1080 {
	display: none;
}

.nav-right-wrap > :last-child {
	margin-bottom: 25px;
}

.outline-btn span {
	border: 1px solid #8c8665;
	padding: 5px 5px;
	color: #313231 !important;
	position: relative;
	display: block;
}
.outline-btn span::after {
	content: "";
	background: url("/img/sites/rekishi/footer-arrow.png") no-repeat center;
	background-size: auto;
	width: 10px;
	height: 10px;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translate(0%, -50%);
}

.f_address {
	margin-bottom: 0 !important;
}

.f_contact {
	margin-bottom: 20px !important;
}

.author_text {
	padding-left: 30px;
}

.author_inner * {
	font-size: 1.8rem;
}

.flex {
	display: flex;
}

.y-line {
	display: block;
	width: 1px;
	height: 235px;
	background-color: #ffffff;
}

/* 全体 */
.nav-area {
	display: flex;
	justify-content: space-between;
	padding: 0px 0px;
	padding-left: 25px;
	color: #fff;
	gap: 80px;
	align-items: center;
}

/* 左メニュー */
.nav-left ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.nav-left li {
	margin-bottom: 8px;
}

.nav-left a {
	color: #fff;
	text-decoration: none;
	font-size: 1.8rem;
	letter-spacing: 0.05em;
}

.nav-left a:hover {
	text-decoration: underline;
}

/* 右エリア */
.nav-right {
	display: flex;
	flex-direction: column;
	align-items: baseline;
	width: 232px;
	margin-top: -10px;
}

/* ピルボタン */
.pill-btn {
	display: block;
	margin-bottom: 15px;
	background: #e8e4dc;
	color: #333;
	text-decoration: none;
	padding: 9px 6px;
	border-radius: 9999px;
	color: #313231 !important;
	font-size: 1.6rem;
	min-width: 211px;
	text-align: center;
	transition: background 0.2s ease;
}

.pill-btn:hover {
	background: #ddd6c8;
}

/* アウトラインボタン */
.outline-btn {
	width: 100%;
	max-width: 215px;
	margin-top: 0px;
	padding: 3px;
	border: 2px solid #cfc7b8;
	color: #cfc7b8;
	text-decoration: none;
	color: #313231 !important;
	text-align: center;
	font-size: 1.3rem;
	background-color: #e8e4dc;
	display: block;
	align-items: center;
	gap: 10px;
}

.outline-btn .arrow {
	font-size: 1.8rem;
}

#author_info * {
	color: #ffffff;
}

.subsite_menu_list .link_ichiran {
	display: none;
}

.subsite_menu_list .link_ichiran.is-active {
	display: block;
}

.subsite_menu_list a {
	color: #333333;
}

.subsite_menu_list {
	position: absolute;
	width: 100%;
	max-width: 1300px;
	top: 175px;
	left: 50%;
	background-color: #ffffff;
	transform: translate(-50%, 0%);
	z-index: 2;
	text-align: center;
}

.cta {
	display: block;
	color: #ffffff !important;
	font-size: 1.8rem;
	padding: 7px 0;
	background-color: #8a2e31;
	border-radius: 30px;
}

.menu_cta_wrap * {
	text-align: center;
}

.menu_cta_inner {
	width: 100%;
	display: flex;
	gap: 10px;
	justify-content: center;
	align-items: center;
}

.menu_cta_inner a {
	width: 100%;
	font-size: 1.4rem;
	color: #ffffff;
	background-color: #252726;
	border-radius: 15px;
	padding: 5px 0;
}

.br-1080 {
	display: none;
}

.subsite_menu:last-child summary {
	padding-right: 0;
}

.gnav_wrap {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.header_search * {
	font-weight: 700;
}

.support_menu_inner {
	display: flex;
	gap: 30px;
	justify-content: center;
	width: 100%;
	align-items: center;
}

.h_kensaku {
	margin-left: 10px;
	width: 8.2rem;
}

.h_lang {
	margin-left: 50px !important;
}

.h_easy {
	margin-left: 45px !important;
}

.h_support {
	margin-left: 25px !important;
}

.header_nav ul li span {
	font-size: 1.5rem;
}

#kensaku_menu_open {
	background: url("/img/sites/rekishi/kensaku.png") no-repeat center;
	background-color: #8a2e31;
	border: none;
	border-radius: 6px;
	color: #ffffff;
	padding: 0 0px;
	padding-top: 20px;
	width: inherit;
	background-position-y: 5px;
}

#kensaku_menu_open.open {
	background: url("/img/sites/rekishi/menu-close.png") no-repeat center;
	color: #8a2e31;
	background-color: #ffffff;
	background-position-y: 5px;
	border-radius: 6px 6px 0 0;
}

#kensaku_menu_open .ttl_close {
	display: none;
}
#kensaku_menu_open.open .ttl_open {
	display: none;
}
#kensaku_menu_open.open .ttl_close {
	display: block;
}

button#bosai_menu_open {
	background: url("/img/sites/rekishi/bousai.png") no-repeat center;
	background-size: auto;
	padding-left: 30px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	min-width: 110px;
	color: #c1007b;
	font-weight: bold;
	background-position-x: 0px;
	background-repeat: no-repeat;
}

button#support_menu_open {
	background: url("/img/sites/rekishi/gear.png") no-repeat center;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-repeat: no-repeat;
	background-position-x: 0px;
	padding-left: 30px;
	width: max-content;
}
button#support_menu_open.open {
	background: #d0d8df;
	border-radius: 10px 10px 0px 0px;
	padding: 10px 10px 23px;
	margin-bottom: -15px;
	position: relative;
	text-align: center;
	width: max-content;
}

button#bosai_menu_open.open {
	background: #f458bb;
	color: #000000;
	font-weight: normal;
	border-radius: 10px 10px 0px 0px;
	padding: 10px 10px 23px;
	margin-bottom: -15px;
	text-align: center;
	position: relative;
}

button#support_menu_open.open .ttl_close,
button#bosai_menu_open.open .ttl_close,
button#js_sound_btn.open .sound_close {
	display: inline-block;
	background: url(/img/common/icon-h-close.png) no-repeat left center transparent;
	color: inherit;
	padding-left: 25px;
}

/* 防災・防犯（展開） */
.h_bosai {
	width: max-content;
}
#bosai_menu_box {
	display: none;
	right: 0px;
	z-index: 100;
	border: 1px solid #f458bb;
	border-radius: 10px;
	background: #ffffff;
	color: #333333;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	margin: 0px;
	padding: 29px 39px;
}
#bosai_menu_box.open {
	display: block;
}

#bosai_menu_close {
	display: block;
	border: none;
	background: none;
	color: inherit;
	width: 0px;
	height: 0px;
	margin: 0px;
	padding: 0px;
	text-align: left;
	text-indent: -9999em;
	overflow: hidden;
	position: absolute;
	right: 0px;
	bottom: 0px;
}

#bosai_menu_box .box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: center;
	gap: 0px 30px;
}
#bosai_menu_box .box .ttl {
	background: url("/img/common/icon-emergency.png") no-repeat left center transparent;
	color: #c1007b;
	font-size: 2rem;
	font-weight: bold;
	line-height: 3rem;
	padding: 5px 0px 5px 40px;
	text-align: left;
	width: 130px;
}
#bosai_menu_box .box ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	width: 100%;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px 20px;
}
#bosai_menu_box .box ul li a {
	display: inline-block;
	border: 1px solid #f458bb;
	border-radius: 30px;
	background: #ffffff;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 2rem;
	padding: 9px 30px;
	text-decoration: none;
	-webkit-transition: background-color 0.5s;
	-o-transition: background-color 0.5s;
	transition: background-color 0.5s;
}
#bosai_menu_box .box ul a:hover,
#bosai_menu_box .box ul a:focus {
	background-color: #ffeff2;
	text-decoration: underline;
}

button#js_sound_btn {
	display: inline-block;
	margin: 0px;
	padding: 0px;
	width: max-content;
	font-size: 1.4rem;
	line-height: 2rem;
	border: none;
	background-color: transparent;
	background-image: url(/img/common/icon-h-voice.png);
	padding-left: 35px;
	background-position: 5px center;
	background-repeat: no-repeat;
}

#support_menu_box {
	border-radius: 10px;
	background: #153d5d;
	border: 1px solid transparent;
	color: #ffffff;
}

#support_menu_box dl#haikei_color dd a {
	min-width: 30px;
}

#support_menu_box dl dd a {
	display: block;
	background: #ffffff;
	border: 1px solid #cccccc;
	border-radius: 3px;
	color: #333333;
	font-size: 1.4rem;
	line-height: 1.8rem;
	padding: 5px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	min-width: 50px;
	text-align: center;
	-webkit-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

#moji_ruby {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
}

#moji_ruby dd {
	margin: 0;
}

#moji_ruby dt {
	font-size: 1.4rem;
	margin-right: 10px;
}

#support_menu_close,
.sound_close,
#bosai_menu_close {
	display: none;
}
#support_menu_open .ttl_close {
	display: none;
}

#support_menu_open.open .ttl_open {
	display: none;
}
#support_menu_open.open .ttl_close {
	display: block;
	height: 23px;
	background-position-y: 1px !important;
}

#bosai_menu_open .ttl_close {
	display: none;
}

#bosai_menu_open.open .ttl_open {
	display: none;
}
#bosai_menu_open.open .ttl_close {
	display: block;
}

#bosai_menu_open {
	background-color: transparent;
	border: none;
}
#bosai_menu_open span {
	color: #c1007b;
	font-weight: 400;
}

#bosai_menu_box {
	display: none;
}
#bosai_menu_box.open {
	display: block;
	position: absolute;
	width: 1080px;
}

#support_menu_open {
	background-color: transparent;
	border: none;
}

.header_nav ul li a {
	font-size: 1.5rem;
	color: currentColor;
}

.header_nav ul li {
	position: relative;
	padding-left: 0px;
}

.h_main::before {
	content: "";
	position: absolute;
	background: url("/img/sites/rekishi/honbun.png") no-repeat center;
	background-size: contain;
	top: 50%;
	left: -25px;
	width: 20px;
	height: 20px;
	transform: translateY(-50%);
}
.h_lang::before {
	content: "";
	position: absolute;
	background: url("/img/sites/rekishi/tikyuu.png") no-repeat center;
	background-size: contain;
	top: 50%;
	left: -25px;
	width: 20px;
	height: 20px;
	transform: translateY(-50%);
}
.h_easy::before {
	content: "";
	position: absolute;
	background: url("/img/sites/rekishi/clover.png") no-repeat center;
	background-size: contain;
	top: 50%;
	left: -25px;
	width: 20px;
	height: 20px;
	transform: translateY(-50%);
}

/* .h_support::before {
	content: "";
	position: absolute;
	background: url("/img/sites/rekishi/gear.png") no-repeat center;
	background-size: contain;
	top: 50%;
	left: -25px;
	width: 20px;
	height: 20px;
	transform: translateY(-50%);
}
.h_bosai::before {
	content: "";
	position: absolute;
	background: url("/img/sites/rekishi/bousai.png") no-repeat center;
	background-size: contain;
	top: 50%;
	left: -25px;
	width: 20px;
	height: 20px;
	transform: translateY(-50%);
} */

.td {
	text-decoration: underline;
}

.td:hover {
	text-decoration: none;
}
#pankuzu_wrap a {
	text-decoration: underline;
}

#pankuzu_wrap a:hover {
	text-decoration: none;
}

.subsite_menu_list a {
	font-weight: 700;
}

.subsite_menu_list strong:hover {
	color: #8a2e31;
	text-decoration: underline;
}

.subsite_menu_list ul > :nth-child(1) {
	cursor: pointer;
}

.tpl_site_list1 .info_list ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0px;
	column-gap: 50px;
}

.tpl_site_list1 .list_pack .article_img span img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: cover;
	-o-object-position: center;
	object-position: center top;
}

.pankuzu_wrap * {
	font-size: 1.6rem;
}

#footstep_wrap {
	margin-bottom: 0px !important;
}

.tpl_site_list1 .article_title a {
	color: #333333;
	text-decoration: underline;
}
.tpl_site_list1 .article_title a:hover {
	text-decoration: none;
}

.sp_table_wrap tbody > tr:first-child th {
	background-color: #7f674a !important;
	color: #ffffff !important;
	font-weight: 700 !important;
}

.tpl_site_detail ul li::marker {
	color: #7f674a;
}

#sidebar_recommend ul li::marker {
	font-size: 2rem;
}
#sidebar_ai_recommend ul li::marker {
	font-size: 2rem;
}

#sidebar_recommend ul li a,
#sidebar_ai_recommend ul li a {
	font-size: 1.6rem;
	text-decoration: underline;
	color: #333333;
}
#sidebar_recommend ul li a:hover,
#sidebar_ai_recommend ul li a:hover {
	text-decoration: none;
}

.common_wrap {
	background: url("/img/sites/rekishi/common-bg.png") no-repeat center;
	background-size: cover;
	padding: 23px 0;
}

.common_banner_link {
	display: flex;
	justify-content: center;
	gap: 65px;
	padding: 50px 0px;
	background-color: #ffffff8f;
	border-radius: 16px;
	width: 100%;
	max-width: 930px;
	margin: 0 auto;
}

.common_banner_link div {
	display: block;
	width: 100%;
	max-width: 315px;
	border-radius: 12px;
}

.common_banner_mitsukaranai a {
	background-color: #a54a3f;
}

.common_banner_faq a {
	background-color: #7f674a;
}

input[type="radio"] {
	accent-color: #7f674a;
	transform: scale(1.5);
}

#hyouka_area_box h2 {
	background: url("/img/sites/rekishi/comment.png") no-repeat left !important;
	background-size: contain !important;
	padding-left: 30px !important;
	background-size: 20px !important;
}

#section_footer h2 {
	background: url("/img/sites/rekishi/telephone.png") no-repeat left !important;
	background-size: contain !important;
	padding-left: 30px !important;
	background-size: 20px !important;
}

#important_noticest_area .second_important ul li {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.article_title a {
	text-decoration: underline;
	color: #333333 !important;
}
.article_title a:hover {
	text-decoration: none;
}



.color_change * #he_left #logo img {
	background-color: #ffffff !important;
}

.color_change * .outline-btn span {
	color: inherit !important;
}

.font_size_changed .header_nav ul li[class^="h_"] {
	display: inline-block;
	vertical-align: top;
	margin: 0px 0px 0px 1rem;
	text-align: left;
}

.font_size_changed #support_menu_open.open .ttl_close {
	display: block;
	background-position-y: 0.5rem !important;
	height: 2.3rem;
}

.font_size_changed #author_info_box {
	width: 100%;
	max-width: 1500px;
}

.color_change .section_information .link_ichiran a {
	background-color: inherit !important;
}

.color_change .event_btn {
	border: 1px solid;
}

.color_change .tpl_site_index .course_button {
	border: 1px solid;
}

.color_change .pill-btn {
	border: 1px solid;
}

.font_size_limit_max .header_nav ul li[class^="h_"] {
	display: block;
	margin: 0 !important;
	height: 2.3rem;
	width: max-content;
	margin-left: 30px !important;
}

#site_footer_box a {
	text-decoration: underline;
}
#site_footer_box a:hover {
	text-decoration: none;
}

.subsite_menu_list a:hover {
	color: #8a2e31;
}

.font_size_limit_max #support_menu_box {
	right: -11.3rem;
}


.font_size_changed #support_menu_box {
    right: -15.3rem;
}

.color_change .common_wrap {
	background: none;
}

/* code */

@media screen and (min-width: 1081px) {
	#important_noticest_area,
	.topics_section,
	.section_information,
	.event,
	#main_body {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}
	.tpl_site_detail #mymainback,
	.tpl_site_list1 #mymainback,
	.tpl_site_list_2 #mymainback {
		margin: 0 10px;
	}
	#kensaku_menu_box {
		display: none;
	}
	#kensaku_menu_box.open {
		display: block;
		position: absolute;
		display: flex;
		top: 74px;
		background-color: #ffffff;
		border-radius: 10px 0 10px 10px;
		padding: 25px 30px;
		z-index: 2;
	}
	#kensaku_menu_open.open + #kensaku_menu_box {
		display: block;
	}
	#kensaku_menu_box.open #bosai_menu_box {
		display: none;
	}
}

/* ==================================================
PC ここまで
================================================== */

/* ==================================================
背景色変更 / 印刷ページ
================================================== */

/* ========== 背景色変更 ========== */

/* 共通 */
.color_change * {
}
/* 黒 */
.color_black * {
}
/* 青 */
.color_blue * {
}

/* ========== 印刷ページ ========== */

/* 印刷プレビュー */
.view_print_mode * {
}

/* ==================================================
背景色変更 / 印刷ページ ここまで
================================================== */

/* ==================================================
スマートフォン
================================================== */
@media screen and (max-width: 1080px) {
	/* var() 関数 */
	:root {
		/* フォントサイズ */
		--fontsize-main: 1.4rem;
		/* 一段階小さいフォントサイズ（一覧をみるボタンなど） */
		--fontsize-main-small: 1.3rem;
		/* 本文（ #main ） */
		--fontsize-detail: 1.5rem;
		/* 本文の一段階小さいフォントサイズ（日付など） */
		--fontsize-detail-small: 1.4rem;

		/* #mymainbackの左右余白 */
		--mymainback-margin-side: 15px;
	}
	@media screen and (max-width: 370px) {
		:root {
			/* 本文（ #main ） */
			--fontsize-detail: 1.4rem;
			/* 本文の一段階小さいフォントサイズ（日付など） */
			--fontsize-detail-small: 1.3rem;
			/* #mymainbackの左右余白 */
			--mymainback-margin-side: 10px;
		}
	}
	/* var() 関数 ここまで */

	/* ========== レイアウト ========== */

	/* 全体 */
	body {
		min-width: 320px;
		margin: 0px;
		padding: 0px;
		-webkit-text-size-adjust: none;
		-moz-text-size-adjust: none;
		-ms-text-size-adjust: none;
		text-size-adjust: none;
	}

	#container {
		float: none;
		width: 100%;
		min-width: 320px;
		margin: 0px;
		padding: 0px;
		overflow: hidden;
	}

	/* ヘッダ */
	#header {
		width: auto;
		height: auto;
		margin: 0px;
		padding: 0px;
	}

	/* フッタ */
	#footer {
		clear: both;
		width: auto;
		height: auto;
		margin: 0px;
		padding: 0px;
	}

	/* メイン */
	#mymainback {
		clear: both;
		float: none;
		width: auto;
		margin: 0px;
		padding: 0px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}

	#main,
	.tpl_side1 #main,
	.tpl_side2 #main,
	.tpl_side1.tpl_side2 #main {
		-webkit-box-ordinal-group: 11;
		-ms-flex-order: 10;
		order: 10;
		clear: both;
		float: none;
		width: auto;
		margin: 0px;
		padding: 0px;
	}
	#main_a,
	.tpl_side1 #main_a,
	.tpl_side2 #main_a,
	.tpl_side1.tpl_side2 #main_a {
		margin: 0px;
		padding: 0px;
	}

	/* サイド */
	#sidebar1 {
		-webkit-box-ordinal-group: 12;
		-ms-flex-order: 11;
		order: 11;
		clear: both;
		float: none;
		width: auto;
		margin: 0px;
		padding: 0px;
	}

	#sidebar2 {
		-webkit-box-ordinal-group: 13;
		-ms-flex-order: 12;
		order: 12;
		clear: both;
		float: none;
		width: auto;
		margin: 0px;
		padding: 0px;
	}

	/* パンくずをフッタ上に表示 */
	#mymainback_bg {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}
	#mymainback_bg > * {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}
	#mymainback_bg > #pankuzu_wrap {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}

	/* ========== 基本設定 ========== */

	/* フォント */
	body,
	button,
	input[type="button"],
	input[type="submit"],
	input[type="text"],
	textarea,
	select {
		font-size: var(--fontsize-main, 1.4rem);
	}

	#main {
		font-size: var(--fontsize-detail, 1.5rem);
	}

	/* レスポンシブアコーディオン用 */
	input[id*="acc_ttl_label"] + *,
	input[id*="acc_ttl_label"] + .acc_title + * {
		display: none;
	}
	input[id*="acc_ttl_label"] + .acc_title,
	input[id*="acc_ttl_label"]:checked + *,
	input[id*="acc_ttl_label"]:checked + .acc_title + * {
		display: block;
	}

	label[for*="acc_ttl_label"] {
		display: block;
		cursor: pointer;
		background: url("/img/sp/acc_open.png") no-repeat right 20px top 50% transparent;
		background-size: 15px 15px;
		padding-right: 40px;
	}
	.acc_open label[for*="acc_ttl_label"] {
		background-image: url("/img/sp/acc_close.png");
	}

	.color_change label[for*="acc_ttl_label"] {
		background-image: url("/img/sp/acc_open_white.png");
	}
	.color_change .acc_open label[for*="acc_ttl_label"] {
		background-image: url("/img/sp/acc_close_white.png");
	}

	.no_acc_title label[for*="acc_ttl_label"] {
		background: none !important;
		padding-right: 0px;
	}

	/* レスポンシブアコーディオン用（class付与） */
	.acc_title.accordion {
		pointer-events: auto;
	}
	.acc_title.accordion:focus {
		outline: auto;
	}

	.acc_title.accordion + * {
		display: none;
	}
	.acc_title.accordion.acc_open + * {
		display: block;
	}

	.acc_title.accordion .accordion_icon {
		display: block;
		cursor: pointer;
		background: url("/img/sp/acc_open.png") no-repeat right 20px top 50% transparent;
		background-size: 15px 15px;
		padding-right: 40px;
	}
	.acc_title.accordion.acc_open .accordion_icon {
		background-image: url("/img/sp/acc_close.png");
	}

	.color_change .acc_title.accordion .accordion_icon {
		background-image: url("/img/sp/acc_open_white.png");
	}
	.color_change .acc_title.accordion.acc_open .accordion_icon {
		background-image: url("/img/sp/acc_close_white.png");
	}

	/* レスポンシブアコーディオン用（index2） */
	.index-2 .section_information input[id*="acc_ttl_label"] + *,
	.index-2 .section_information input[id*="acc_ttl_label"] + .acc_title,
	.index-2 .section_information input[id*="acc_ttl_label"] + .acc_title + *,
	.index-2 .section_information input[id*="acc_ttl_label"]:checked + *,
	.index-2 .section_information input[id*="acc_ttl_label"]:checked + .acc_title + *,
	.index-2 .section_information .acc_title.accordion + *,
	.index-2 .section_information .acc_title.accordion.acc_open + * {
		display: block;
	}
	.index-2 .section_information label[for*="acc_ttl_label"],
	.index-2 .section_information .acc_title.accordion .accordion_icon {
		background: none !important;
		padding-right: 0px;
		pointer-events: none;
	}

	/* ========== ヘッダ ========== */

	/* ヘッダ */
	#header {
		position: relative;
	}

	#header2_box {
		width: auto;
		margin: 0px;
		padding: 0px !important;
	}

	#he_left {
		position: static;
		margin: 0px;
		padding: 15px 10px 0;
		max-width: 166px;
	}

	#he_right {
		margin-left: 0px;
		text-align: left;
		justify-content: center;
	}

	/* ボトムナビゲーション */
	#spm_wrap {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
		position: fixed;
		left: 0px;
		bottom: 0px;
		z-index: 999;
		width: 100%;
	}
	#spm_wrap button,
	#spm_wrap a {
		display: block;
		width: 100%;
		height: 80px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		margin: 0px;
		padding: 0px;
		border: none;
		text-align: left;
		overflow: hidden;
		background-color: #8a2e31 !important;
		background-position-y: 15px !important;
		padding-bottom: 5px;
		text-decoration: none;
	}

	#spm_wrap button#btn_spm_menu {
		background: url("/img/sites/rekishi/spbtn-menu.png") no-repeat center center #cccccc;
		background-size: auto;
		color: #000000;
		border-right: 1px solid #ffffff;
		border-left: 1px solid #ffffff;
	}
	.spm_menu_open #btn_spm_wrap button#spm_menu {
		background-color: #f6f6f6;
		background-image: url("/img/sp/btn_close.png");
		border-top-color: transparent;
	}

	#spm_wrap button#btn_spm_search {
		background: url("/img/sites/rekishi/spbtn-kensaku.png") no-repeat center center #cccccc;
		background-size: auto;
		color: #000000;
	}
	.spm_search_open #btn_spm_wrap button#spm_search {
		background-color: #f6f6f6;
		background-image: url("/img/sp/btn_close.png");
		border-top-color: transparent;
	}

	#spm_wrap button#btn_spm_kaiyu {
		background: url("/img/kaiyu/btn-kaiyu-open.png") no-repeat center center #cccccc;
		background-size: 116px auto;
		color: #000000;
	}
	.spm_kaiyu_open #btn_spm_wrap button#spm_kaiyu {
		background-color: #f6f6f6;
		background-image: url("/img/sp/btn_close.png");
		border-top-color: transparent;
	}

	#spm_wrap a#btn_spm_pagetop {
		background: url("/img/common/btn_pagetop.png") no-repeat center center #cccccc;
		background-size: 26px auto;
		color: #000000;
		border-top: 1px solid;
	}

	/* 閲覧補助（展開） */
	button#btn_spm_support {
		display: none;
		width: 60px;
		height: 60px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		margin: 0px;
		padding: 0px;
		border: none;
		background: url("/img/sp/btn_support.png") no-repeat center center #cccccc;
		background-size: 26px auto;
		color: #000000;
		text-align: left;
		text-indent: -9999em;
		overflow: hidden;
		position: absolute;
		top: 10px;
		right: 10px;
		z-index: 90;
	}
	.spm_support_open button#btn_spm_support {
		background-color: #f6f6f6;
		background-image: url("/img/sp/btn_close.png");
	}

	.header_nav {
		width: 100%;
	}
	.spm_support_open .header_nav {
		display: block;
	}

	/* ヘッダメニュー */
	.header_nav ul {
		display: flex;
		justify-content: center;
		padding: 7px 10px 0px;
	}
	.header_nav ul li[class^="h_"] {
		display: block;
		margin: 0 !important;
		height: 23px;
	}
	.header_nav ul li.h_main {
		display: none !important;
	}

	/* アクセシビリティ機能 */
	#btn_support_menu_open,
	#btn_support_menu_close {
		display: none !important;
	}

	#support_menu_box {
		padding: 40px 0;
		border-radius: 0;
		background-color: #896523;
		left: 0;
		right: inherit;
		width: 100vw !important;
		top: 8.2rem;
		display: -webkit-box;
		display: -ms-flexbox;
		display: none;
		-ms-flex-wrap: wrap;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-ms-flex-align: center;
		-webkit-box-shadow: none;
		box-shadow: none;
		width: auto;
	}

	dl#moji_size,
	dl#haikei_color {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		width: 100%;
		justify-content: space-between;
	}

	/* 検索（展開） */
	.header_search {
		display: none;
		position: fixed;
		left: 0px;
		bottom: 0px;
		z-index: 998;
		width: 100%;
		max-height: 100vh;
		height: 100%;
		background: #896523;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		margin: 0px;
		padding: 25px 20px;
		overflow-y: auto;
		-ms-scroll-chaining: none;
		overscroll-behavior: none;
	}
	.spm_search_open .header_search {
		display: block;
	}
	.spm_search_open::before {
		content: "";
		display: block;
		width: 100vw;
		height: 100vh;
		position: fixed;
		top: 0px;
		left: 0px;
		right: 0px;
		bottom: 0px;
		z-index: 997;
		background: rgba(0, 0, 0, 0.75);
		color: #ffffff;
	}

	/* キーワード検索 */
	#cse-search-box .search_ipt {
		width: auto;
	}

	/* ページID検索 */
	#top_search_page_id {
		margin: 20px 0px 0px;
	}
	#open_page_id_box .search_ipt {
		width: auto;
	}

	/* グローバルナビ */
	#top_search {
		display: none;
		position: fixed;
		left: 0px;
		bottom: 0px;
		z-index: 998;
		width: 100%;
		height: 100%;
		max-height: 100vh;
		background: #896523;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		margin: 0px;
		padding: 50px 20px;
		overflow-y: auto;
		-ms-scroll-chaining: none;
		overscroll-behavior: none;
	}
	.spm_menu_open #top_search {
		display: block;
		padding-top: 30px;
		padding-bottom: 100px;
	}
	.spm_menu_open::before {
		content: "";
		display: block;
		width: 100vw;
		height: 100vh;
		position: fixed;
		top: 0px;
		left: 0px;
		right: 0px;
		bottom: 0px;
		z-index: 997;
		background: rgba(0, 0, 0, 0.75);
		color: #ffffff;
	}

	.gnav ul {
		width: auto;
		display: block;
		padding: 0px;
	}
	.gnav ul li,
	.gnav ul li:first-child {
		display: block;
		border: none;
		border-bottom: 1px solid;
	}
	.gnav ul li:first-child {
		border-top: 1px solid;
	}
	.gnav ul li a {
		padding: 20px 10px;
	}

	/* サブサイト共通ヘッダ */
	#mainimg {
		width: auto;
		margin: 15px var(--mymainback-margin-side, 15px) 0px;
	}
	#mainimg_box .site_name {
		position: static;
		font-size: 1.8rem;
		background: #333333;
		color: #ffffff;
		text-shadow: none;
		padding: 5px 20px;
	}
	#mainimg_box .site_name.noimage {
		background: #f6f6f6;
		color: #333333;
		text-shadow: none;
		padding: 20px;
	}

	/* メニューへのリンク */
	.link_to_subsitemenu {
		display: block;
		margin: var(--mymainback-margin-top, 15px) var(--mymainback-margin-side, 15px);
	}
	.link_to_subsitemenu a {
		display: block;
		font-size: var(--fontsize-main-small, 1.3rem);
		border: 1px solid #333333;
		border-radius: 5px;
		background: #eeeeee;
		color: #333333;
		text-decoration: none;
		padding: 10px;
		text-align: center;
	}
	.link_to_subsitemenu a span {
		display: inline-block;
		padding-right: 20px;
		position: relative;
	}
	.link_to_subsitemenu a span::before {
		content: "";
		width: 0px;
		height: 0px;
		border: 7px solid transparent;
		border-bottom-width: 0px;
		border-top-width: 9px;
		border-top-color: #333333;
		position: absolute;
		top: 50%;
		right: 0px;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	.color_change .link_to_subsitemenu a span::before {
		border-top-color: #ffffff;
	}

	/* ========== フッタ ========== */

	/* フッタ */
	#author_info_box {
		width: auto;
		margin: 0px;
		padding: 40px 10px 80px;
	}

	/* ページトップ（フローティング表示） */
	#btn_pagetop {
		width: 50px;
	}
	#btn_pagetop.fixed {
		bottom: 90px;
	}

	/* 回遊ボタン（表示位置） */
	#kaiyu_banner {
		bottom: 0px;
	}

	/* サブサイト共通フッタ */
	#site_footer {
		width: auto;
		margin: 0px var(--mymainback-margin-side, 15px) 40px;
	}
	#site_footer_box {
		padding: 20px;
	}

	/* ========== パンくず / 足あと ========== */

	/* パンくず・足あと */
	#pankuzu_wrap {
		font-size: 1.2rem;
	}
	#pankuzu_wrap > div {
		width: auto;
		margin-left: var(--mymainback-margin-side, 15px);
		margin-right: var(--mymainback-margin-side, 15px);
	}
	.pankuzu,
	#footstep {
		padding-left: 5rem;
	}
	.pankuzu:first-child .icon_current,
	#footstep_ttl {
		width: 4rem;
		font-size: 1rem;
		top: -1px;
	}

	/* 足あとを非表示 */
	#footstep_wrap {
		display: none !important;
	}

	/* ========== 見出し ========== */

	/* 見出し */
	#main_header h1 {
		margin: 0px;
		padding: 17px 20px;
		font-size: 2.4rem;
	}

	#main_body h2 {
		padding: 15px 20px;
		font-size: 2rem;
	}

	#main_body h3 {
		padding: 11px 20px;
		font-size: 1.9rem;
	}

	#main_body h4 {
		padding: 7px 20px;
		font-size: 1.8rem;
	}

	#main_body h5 {
		padding: 5px 20px;
		font-size: 1.7rem;
	}

	#main_body h6 {
		padding: 3px 20px;
		font-size: 1.6rem;
	}

	/* ========== メイン ========== */

	/* メイン */
	#mymainback {
		margin: 15px var(--mymainback-margin-side, 15px) 40px;
	}

	/* コンテンツヘッダ */
	#content_header {
		font-size: var(--fontsize-main-small, 1.3rem);
	}
	#content_header > span {
		margin-left: 1em;
	}

	/* コンテンツフッタ */
	#content_footer {
	}

	/* 印刷 */
	#content_header > span.link_print,
	#print_mode_link,
	#print_mode_link_large {
		display: none !important;
	}

	/* SDGsアイコン */
	.d-flex.f-wrap-wrap > *,
	.sdgs-icons > *,
	.d-flex.f-wrap-wrap img,
	.sdgs-icons img,
	.d-flex.f-wrap-wrap > * img,
	.sdgs-icons > * img {
		width: 60px;
	}

	/* カレンダー登録 */
	#calendar_button_google,
	#calendar_button_yahoo {
		margin: var(--content-margin-narrow, 20px) 20px 0px 0px;
	}
	#calendar_button_google a,
	#calendar_button_yahoo a {
		font-size: var(--fontsize-main-small, 1.3rem);
	}

	/* SNSボタン */
	.sns_button_wrap {
	}

	/* PDF・WMPリンク */
	.pdf_download,
	.wmplayer_download {
		display: block;
		width: auto;
	}
	.pdf_download .pdf_img,
	.wmplayer_download .wmplayer_img {
		display: block;
	}
	.tenpu_txt {
		display: block;
		padding: 10px 0px 0px;
		font-size: 1.2rem;
		line-height: 1.5;
	}

	/* 評価エリア */
	#hyouka_area_box {
		padding: 30px 20px;
	}
	#hyouka_area_box h2,
	#main_body #hyouka_area_box h2 {
		font-size: 1.6rem;
		letter-spacing: 0em;
	}
	@media screen and (max-width: 370px) {
		#hyouka_area_box h2,
		#main_body #hyouka_area_box h2 {
			font-size: 1.6rem;
		}
	}
	#hyouka_area_box .hyouka_box_detail {
		font-size: var(--fontsize-main-small, 1.3rem);
	}
	#hyouka_area_box .hyouka_box_detail fieldset span {
		margin-right: 2em;
	}
	#hyouka_area_box .hyouka_box_detail fieldset span:first-of-type {
		min-width: auto;
	}

	#hyouka_area_submit {
		margin: 10px 10px 0px;
	}
	#hyouka_area_submit input {
		display: block;
		width: 100%;
		max-width: 100%;
		font-size: var(--fontsize-main-small, 1.3rem);
	}

	/* お問い合わせ先 */
	#section_footer {
		padding: 30px 20px;
	}
	#section_footer h2,
	#main_body #section_footer h2 {
		font-size: 1.6rem;
		letter-spacing: 0em;
	}
	@media screen and (max-width: 370px) {
		#section_footer h2,
		#main_body #section_footer h2 {
			font-size: 1.6rem;
		}
	}

	/* おすすめコンテンツ */
	#osusume_contents_area .second_osusume {
		padding: 30px 20px;
	}
	#osusume_contents_area .second_osusume h2,
	#osusume_contents_area .second_osusume_ttl {
		font-size: 1.8rem;
		margin: 0px 0px 20px;
	}
	#osusume_contents_area .second_osusume ul {
		padding: 0px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		gap: 20px;
	}
	#osusume_contents_area .second_osusume ul li {
		width: calc(50% - 10px);
		max-width: 200px;
	}

	/* ========== サイド ========== */

	/* サイドバー */
	#sidebar1,
	#sidebar2 {
		margin-top: 40px;
	}

	/* 重要なお知らせ */
	#important_noticest_area .second_important {
	}

	#important_noticest_area .second_important h2,
	#important_noticest_area .second_important_ttl {
		font-size: 1.8rem;
	}

	#important_noticest_area .second_important ul {
		margin: 0px;
		padding: 0px;
		list-style: none;
		margin-bottom: 15px;
	}
	#important_noticest_area .second_important ul li {
		margin: 0px;
		padding: 15px 0px;
		border-bottom: 1px solid var(--list-bordercolor, #cccccc);
	}
	#important_noticest_area .second_important ul li a {
		display: block;
		background-size: 8px auto;
		padding-right: 15px;
		text-decoration: none;
	}

	#important_noticest_area .second_important .link_box {
		text-align: center;
	}
	#important_noticest_area .second_important .link_box > span a {
		font-size: var(--fontsize-main-small, 1.3rem);
	}

	/* カウントダウン */
	#count_down_area .count_down_box {
	}

	/* レコメンド・AIレコメンド */
	@media screen and (max-width: 370px) {
		#recommend_title h2,
		#ai_recommend_title h2 {
			font-size: 1.4rem;
		}
	}

	#sidebar_recommend ul,
	#sidebar_ai_recommend ul {
	}

	#sidebar_recommend ul li,
	#sidebar_ai_recommend ul li {
	}

	#sidebar_recommend ul li a,
	#sidebar_ai_recommend ul li a {
		display: block;
		background: url("/img/sp/arrow_r.png") no-repeat right center transparent;
		background-size: 8px auto;
		padding-right: 15px;
		text-decoration: none;
	}

	/* 関連リンク */
	#kanren_link h2 {
		font-size: 1.8rem;
	}
	#kanren_link ul {
		margin: 0px;
		padding: 10px 0px;
		list-style: none;
	}
	#kanren_link ul li {
		margin: 0px;
		padding: 15px 20px;
		border-bottom: 1px solid #cccccc;
	}
	#kanren_link ul li a {
		display: block;
		background: url("/img/sp/arrow_r.png") no-repeat right center transparent;
		background-size: 8px auto;
		padding-right: 15px;
		text-decoration: none;
	}

	/* 「見つからないときは」「よくある質問」バナー */
	.common_banner_link {
	}

	/* サブサイト大小メニュー */
	.subsite_menu {
		width: 100%;
	}

	.subsite_menu_ttl {
		font-size: 1.6rem;
		text-align: left;
		padding: 18px 10px;
	}

	.subsite_menu_list ul {
		margin: 0px;
		padding: 10px 20px 10px 30px;
		list-style: none;
		margin: 0 10px;
		border-bottom: 1px solid #b2b2b2;
	}
	.subsite_menu_list ul li {
		margin: 0px;
		padding: 10px 0px;
		font-size: 1.7rem;
		color: #333333;
	}

	.subsite_menu_list div.link_ichiran {
		display: none;
		margin: 0px;
		padding: 0px 30px 30px;
	}

	/* サブサイト大小メニュー（開閉） */
	.subsite_menu summary {
		display: list-item;
		pointer-events: auto;
		cursor: pointer;
	}
	.subsite_menu summary a {
		pointer-events: auto;
	}

	.subsite_menu summary:only-child {
		display: block;
		list-style-type: none;
		pointer-events: none;
		cursor: auto;
	}
	.subsite_menu summary:only-child::-webkit-details-marker {
		display: none;
	}
	.subsite_menu summary:only-child a {
		pointer-events: auto;
	}

	/* サブサイト大小メニュー（開閉） ＋－ */
	.subsite_menu summary {
		display: block;
		list-style-type: none;
	}
	.subsite_menu summary::-webkit-details-marker {
		display: none;
	}
	.subsite_menu summary .tti_icon {
		margin: -18px 0px; /* .subsite_menu_ttl の padding の値をマイナスにして指定する */
		padding: 16px 20px; /* .subsite_menu_ttl の  padding と同じ値を指定する */
		padding-right: 40px;
		display: block;
		background: url("/img/sp/acc_open.png") no-repeat right 20px top 50%;
		background-size: 15px 15px;
		font-size: 1.8rem;
		border-bottom: 1px solid #b2b2b2;
	}
	.subsite_menu details[open] summary .tti_icon {
		background-image: url("/img/sp/acc_close.png");
		color: #842f34;
	}

	.subsite_menu summary:only-child .tti_icon,
	.subsite_menu details[open] summary:only-child .tti_icon {
		background: none !important;
	}

	.color_change .subsite_menu summary .tti_icon {
		background-image: url("/img/sp/acc_open_white.png");
	}
	.color_change .subsite_menu details[open] summary .tti_icon {
		background-image: url("/img/sp/acc_close_white.png");
	}

	/* ========== リスト ========== */

	/* リスト（一覧） */
	.info_list ul {
		margin: 0px;
		padding: 0px;
		list-style: none;
	}
	.info_list ul li {
		margin: 0px;
		padding: 15px 20px;
	}
	.info_list ul li a {
		display: block;
		background: url("/img/sp/arrow_r.png") no-repeat right center transparent;
		background-size: 8px auto;
		padding-right: 15px;
		text-decoration: none;
	}

	/* リスト（日付） */
	.info_list.info_list_date ul li {
		display: block;
		width: auto;
	}
	.info_list.info_list_date ul li > span {
		display: block;
	}
	.info_list.info_list_date ul li > span.article_date {
		width: auto;
		padding-top: 0px;
	}

	/* リスト（担当課） */
	.article_section {
		display: block;
		text-align: right;
	}
	.article_section a {
		display: inline !important;
		background: none !important;
		padding-right: 0px !important;
		text-decoration: underline !important;
	}

	/* リスト（サムネイル） */
	.list_pack {
		padding-top: 0px;
		padding-bottom: 0px;
	}
	.list_pack .article_img {
		width: 120px;
	}
	@media screen and (max-width: 370px) {
		.list_pack .article_img {
			width: 100px;
		}
	}

	/* take-sp */

	.br-1080 {
		display: block;
	}

	.h_bosai {
		position: absolute !important;
		top: 19px;
		right: -10px;
	}

	button#support_menu_open.open {
		background: transparent;
		border-radius: 0px;
		padding: 0;
		margin-bottom: 0px;
		position: relative;
		text-align: center;
		top: 0;
	}

	#support_menu_box.open .support_menu_inner {
		display: flex;
		gap: 22px;
		justify-content: center;
		flex-direction: column;
		left: 0;
		right: inherit;
		top: 13rem;
		background-color: #ffffff;
		padding: 50px 25px;
		width: 100%;
		max-width: 295px;
	}
	.h_support {
		width: 85px;
		position: inherit !important;
	}
	.header_nav ul li span,
	#moji_ruby dt,
	dl#moji_size dt,
	dl#haikei_color dt {
		color: #333333;
		font-size: 1.3rem;
	}
	#support_menu_box dl dd a {
		border: 1px solid #842f34;
		color: #333333;
		padding: 10px 5px;
		border-radius: 0;
		min-width: 103px;
	}

	#moji_ruby dt {
		margin-right: 18px;
	}

	button#js_sound_btn {
		background-image: url(/img/sites/rekishi/sp-onsei.png);
	}

	#voice_read {
		border: 1px solid #842f34;
		padding: 10px 0;
		width: 100%;
	}

	#support_menu_box dl#haikei_color dd a {
		min-width: 100%;
		padding: 10px 25px;
	}

	#haikei_color > :nth-child(2) {
		border: 1px solid #842f34;
	}

	#haikei_color > :nth-child(3) {
		border: 1px solid #000000;
	}

	#haikei_color > :nth-child(4) {
		border: 1px solid #ffff00;
	}

	.header_nav ul li a {
		font-size: 1.3rem;
	}

	.h_easy::before {
		width: 18px;
		height: 18px;
		left: 4px;
	}

	.h_lang::before {
		width: 18px;
		height: 18px;
		left: 0px;
	}
	button#support_menu_open {
		background-size: 18px;
		min-width: 93px;
		background-position-x: 6px;
		background-size: 18px;
	}

	.h_lang a {
		padding-left: 25px;
	}

	.h_easy {
		padding-left: 25px !important;
	}
	#bosai_menu_open span {
		font-size: 1.5rem;
		font-weight: 400;
	}

	#bosai_menu_box.open {
		display: block;
		position: absolute;
		width: 100vw;
	}

	button#bosai_menu_open.open {
		background: transparent;
		border-radius: 0px;
		top: 0px;
		padding: 0;
	}

	#bosai_menu_box .box {
		flex-direction: column;
	}

	.h_kensaku {
		display: none;
	}

	#kensaku_menu_box {
		padding: 0px 40px;
		height: 85%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		background-color: #ffffff;
		gap: 15px;
	}
	.cl {
		display: none;
	}

	#container.spm_search_open .op_kensaku {
		display: none;
	}
	#container.spm_search_open .cl_kensaku {
		display: flex;
	}
	#container.spm_menu_open .op_menu {
		display: none;
	}
	#container.spm_menu_open .cl_menu {
		display: flex;
	}
	#container.spm_kaiyu_open .op_kaiyu {
		display: none;
	}
	#container.spm_kaiyu_open .cl_kaiyu {
		display: flex;
	}

	.op_kensaku {
		color: #ffffff;
	}

	.op_menu {
		color: #ffffff;
	}

	#spm_wrap span {
		display: flex;
		height: 100%;
		align-items: end;
		justify-content: center;
		margin-bottom: 10px;
	}

	#container.spm_search_open #spm_wrap button#btn_spm_search {
		background: url(/img/sites/rekishi/vector.png) no-repeat center center;
		background-color: #d46e71 !important;
	}
	#container.spm_menu_open #spm_wrap button#btn_spm_menu {
		background: url(/img/sites/rekishi/vector.png) no-repeat center center;
		background-color: #d46e71 !important;
	}
	#container.spm_kaiyu_open #spm_wrap button#btn_spm_kaiyu {
		background: url(/img/sites/rekishi/vector.png) no-repeat center center;
		background-color: #d46e71 !important;
	}

	.gnav_wrap {
		background: url(/img/sites/rekishi/sp-menu-bg.png) no-repeat center center;
		flex-direction: column;
		background-size: cover;
		padding: 20px 0 30px;
		margin-bottom: 20px;
	}
	.subsite_menu:last-child summary {
		padding-right: 10px;
	}

	.br-1080 {
		display: block;
	}

	.cta {
		margin-bottom: 15px;
	}

	.subsite_menu_list a {
		color: #333333;
		font-weight: 700;
	}

	.subsite_menu_list strong {
		font-weight: 700;
	}

	.subsite_menu_list {
		position: relative;
		top: 0;
	}

	.subsite_menu_list ul {
		flex-direction: column;
		gap: 0;
	}

	#author_box {
		flex-direction: column;
	}

	.y-line {
		display: block;
		width: 100%;
		height: 1px;
		margin-top: 5px;
		margin-bottom: 19px;
	}

	.nav-area {
		gap: 20px;
		align-items: flex-start;
		flex-direction: column;
		padding-left: 0;
	}

	.nav-left ul {
		flex-wrap: wrap;
		display: flex;
		gap: 25px;
		row-gap: 11px;
		margin-bottom: 9px;
	}

	.nav-right {
		width: 100%;
	}

	.nav-right-wrap {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		gap: 10px;
		row-gap: 15px;
	}

	.pill-btn {
		padding: 6px 5px;
		width: 160px;
		min-width: inherit;
		margin-bottom: 0;
		font-size: 1.4rem;
	}

	.footer_navi ul {
		justify-content: flex-start;
		gap: 20px;
	}

	.footer_navi ul li {
		font-size: 1.2rem;
	}

	.author_text {
		padding-left: 0px;
	}

	.author_inner * {
		font-size: 1.6rem;
	}

	.author_inner .flex {
		display: block;
	}

	.f_detail {
		margin-bottom: 23px;
	}

	.outline-btn span {
		padding: 5px 20px 5px 5px;
	}

	.nav-right-wrap > :last-child {
		margin-bottom: 18px;
	}

	.footer_navi {
		padding: 30px 0px 20px;
	}

	#author_box p {
		margin-bottom: 18px;
	}

	.nav-left a {
		font-size: 1.6rem;
	}

	.outline-btn {
		max-width: 220px;
	}

	button#bosai_menu_open {
		padding-left: 20px;
	}

	.tpl_site_list1 .info_list ul {
		grid-template-columns: repeat(2, 1fr);
	}

	.tpl_site_list1 .list_pack .article_img {
		width: auto;
	}
	.tpl_site_list1 .info_list ul li {
		margin: 0px;
		padding: 15px 0px;
	}

	.tpl_site_list1 #main_header {
		margin-bottom: 20px;
	}

	.tpl_site_list1 #mainimg {
		margin: 0px var(--mymainback-margin-side, 15px) 10px;
	}

	#sidebar_recommend,
	#sidebar_ai_recommend {
		padding: 28px 15px;
	}

	#recommend_title h2,
	#ai_recommend_title h2 {
		display: block;
	}

	.common_banner_link div {
		max-width: 265px;
	}

	.common_banner_link {
		flex-direction: column;
		align-items: center;
		gap: 20px;
		width: 90%;
	}

	input[type="radio"] {
		accent-color: #7f674a;
		transform: scale(1);
	}

	#hyouka_area_box .hyouka_box_detail fieldset span input {
		margin: 3px 5px 5px 5px;
		vertical-align: middle;
	}

	#support_menu_box {
		top: 10.2rem;
	}

	.font_size_changed .h_bosai {
		right: 0px;
	}

	.gnav_wrap .subsite_menu_list ul {
		text-align: left;
		margin: 0px;
		padding: 10px 0px 10px 0px;
		list-style: none;
		margin: 0 0px;
		border-bottom: 1px solid #b2b2b2;
	}

	.gnav_wrap .subsite_menu_list ul li {
		margin: 0px;
		padding: 10px 0px;
		font-size: 1.7rem;
		color: #333333;
		padding-left: 40px;
	}

	#site_footer {
		margin-left: 10px;
		margin-right: 10px;
	}

	#bosai_menu_box {
		display: none;
		right: 10px;
	}

	.font_size_limit_max #bosai_menu_box {
		right: 0px;
	}

	.color_change #spm_wrap button,
	#spm_wrap a {
		background-color: inherit !important;
	}
	.color_change #container.spm_search_open #spm_wrap button#btn_spm_search {
		background-color: inherit !important;
		background: url(/img/sites/rekishi/close-w.png) no-repeat center center;
	}
	.color_change #container.spm_menu_open #spm_wrap button#btn_spm_menu {
		background-color: inherit !important;
		background: url(/img/sites/rekishi/close-w.png) no-repeat center center;
	}
	.color_change #container.spm_kaiyu_open #spm_wrap button#btn_spm_kaiyu {
		background-color: inherit !important;
		background: url(/img/sites/rekishi/close-w.png) no-repeat center center;
	}

	.color_change .gnav_wrap {
		background: none !important;
	}

	.font_size_changed .list_pack .article_txt {
	height: auto;
}

    #moji_ruby {
        flex-wrap: wrap;
        justify-content: left;
        text-align: left;
    }

.font_size_limit_max  .h_support {
	width: 100% !important;
}

.font_size_changed     .header_nav ul li span,
.font_size_changed #moji_ruby dt, 
.font_size_changed dl#moji_size dt, 
 .font_size_changed dl#haikei_color dt {
        width: 100%;
    }

	.font_size_changed     dl#moji_size,
	.font_size_changed  dl#haikei_color {
		text-align: left;
        justify-content: flex-start;
    }

	   .font_size_changed  #spm_wrap button, #spm_wrap a {
        background-position-y: 5px !important;
    }

	   .font_size_limit_max #support_menu_box {
        top: 12.2rem;
    }
	.free_box_wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.info_col {
    max-width: max-content;
}
	/* code-sp */

	/* ========== 背景色変更 ========== */

	/* 共通 */
	.color_change * {
	}
	/* 黒 */
	.color_black * {
	}
	/* 青 */
	.color_blue * {
	}

	@media screen and (max-width: 680px) {
		.header_nav ul {
			display: flex;
			justify-content: space-between;
			padding: 7px 10px 0px;
		}

		.tpl_site_list1 .info_list ul {
			grid-template-columns: repeat(1, 1fr);
		}
	}
}
/* ==================================================
スマートフォン ここまで
================================================== */