@charset "utf-8";


/* var() 関数 */
:root {

	/* コンテンツ幅 */
	--content-width: 1100px;
	/* sidebar1の幅 */
	--sidebar1-width: 320px;
	/* sidebar2の幅 */
	--sidebar2-width: 320px;

	/* #mymainbackの上下余白 */
	--mymainback-margin-top: 30px;

--mymainback-margin-bottom: 100px;
	/* コンテンツの上下余白 */
	--content-margin-narrow: 30px;
	/* 狭い */
	--content-margin-normal: 40px;
	/* 標準 */
	--content-margin-wide: 60px;
	/* 広い */

	/* フォントサイズ / 行間 / 文字間 */
	--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.6rem;
	--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;

	/* 基本文字色 */
	--text-color: #333333;

	/* a:link のリンク色 */
	--textlink-link: #333333;
	/* a:visited のリンク色 */
	--textlink-visited: #660099;
	/* a:active のリンク色 */
	--textlink-active: #cc0000;
	/* a:hoder / a:focus のリンク色 */
	--textlink-hover: #000000;

	/* 表の枠線の色 */
	--table-bordercolor: #333333;
	/* 表の見出し背景色・文字色 */

--table-th-background: #fefce8;

	--table-th-color: #333333;

	/* ボタン（一覧をみる / アンケート送信 / お問い合わせ送信） */
	--btn-background: #0e3469;
	--btn-border: 1px solid transparent;
	--btn-borderradius: 0;
	--btn-boxshadow: none;
	--btn-color: #ffffff;
	--btn-textdecoration: none;
	--btn-transition: none;
	/* hover / focus */
	--btn-hover-background: #ccdaee;
	--btn-hover-border: 1px solid transparent;
	--btn-hover-borderradius: 0;
	--btn-hover-boxshadow: none;
	--btn-hover-color: #333333;
	--btn-hover-textdecoration: underline;

	/* 大分類見出し背景色・文字色 */
	--lifetitle-background: #f6f6f6;
	--lifetitle-color: #333333;

	/* 個別定義 */
	--bg-grad: linear-gradient(0deg, #101b2b, #112136, #122641, #122c4c, #123258, #113864, #103e70, #0e447c);
	--bg-grad-text-col: #ffffff;
	--base-col: #fee8ee;
	--base-text-col: #333333;
	/* --base-sidebar-ttl-bg: #f5f5ff; */
	--base-sidebar-ttl-bg: #edeef2;
}

/* var() 関数 ここまで */



/* 全体 */
html {
	scroll-behavior: smooth;
}

body {
	margin: 0px;
	padding: 0px;
	border: 0px;
}

#container {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;
	min-width: var(--content-width, 1100px);
}

/* ヘッダ */
#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;
	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;
	width: var(--content-width, 1100px);
	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;
}


/* ===== ヘッダ ===== */

/* スマートフォン用 */
#spm_wrap {
	display: none;
}

#spm_header_support {
	display: none;
}

/* ヘッダ */
#header {
	position: relative;
	z-index: 100;
}

#header2 {
	font-size: 1.4rem;
}

#header2_box {
	width: var(--content-width, 1100px);
	margin: 0px auto;
	padding: 20px 0px;
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-rows: auto;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#he_left {}

#he_left #logo {
	margin: 0px;
}

#he_left #logo h1,
#he_left #logo p {
	margin: 0px;
}

#he_left #logo :is(a, h1) {
	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: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px;
}

#he_left #logo img {}

#he_right {
	text-align: right;
}

/* ヘッダメニュー */
.header_nav{
	margin: 0px 0px 20px;
}
.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: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px 0px;
	position: relative;
	margin-left: auto;
	margin-right: 0;
}

.header_nav ul li[class^="h_"] {
	display: block;
	margin: 0px 0px 0px 20px;
	text-align: left;
	line-height: 1;
}

.header_nav ul li.h_search {
	margin: 0;
}

.header_nav ul li[class^="h_"]:first-child {
	margin-left: 0px;
}

.header_nav ul a {
	text-decoration: none;
}

.header_nav ul a:-webkit-any-link {
	color: currentcolor;
}

.header_nav ul a:-moz-any-link {
	color: currentcolor;
}

.header_nav ul a:any-link {
	color: currentcolor;
}

.header_nav ul a:hover {
	text-decoration: underline;
}

.header_nav ul button {
	font-size: 1.4rem;
	background-color: transparent;
	border: none;
	margin: 0px;
	padding: 0px;
	line-height: 1;
	min-width: 24px;
	min-height: 24px;
}

.header_nav ul button:hover {
	text-decoration: underline;
}

.header_nav ul li[class^="h_"] span.hl_lbl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	gap: 5px;
	line-height: 1;
}

.header_nav ul li[class^="h_"] span.hl_lbl::before {
	content: '';
	display: block;
	width: 22px;
	height: 22px;
}

.header_nav ul li.h_main span.hl_lbl::before {
	background: url(/img/common/hl-honbun.png) no-repeat center center;
}

.header_nav ul li.h_lang span.hl_lbl::before {
	background: url(/img/common/hl-lang.png) no-repeat center center;
}

.header_nav ul li.h_easy span.hl_lbl::before {
	background: url(/img/common/hl-easy-jp.png) no-repeat center center;
}

.header_nav ul li.h_read span.hl_lbl::before {
	background: url(/img/common/hl-read.png) no-repeat center center;
}

.header_nav ul li.h_support span.hl_lbl::before {
	background: url(/img/common/hl-hojo.png) no-repeat center center;
}


/* 音声読み上げ */
#yomiage_box {
	display: none;
}

:is(#yomiage_menu_open, #support_menu_open).open {
	position: relative;
	border-bottom: 1px solid currentColor;
}

:is(#yomiage_menu_open, #support_menu_open).open::after {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	background: currentColor;
	-webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	position: absolute;
	top: 100%;
	left: calc(50% - 4px);
}

#yomiage_box.open {
	position: absolute;
	top: calc(100% + 10px);
	right: 0px;
	z-index: 100;
	display: grid;
	grid-template-columns: auto auto auto;
	grid-template-rows: auto;
	gap: 0px;
	white-space: nowrap;
	background: #fef3a8;
	padding: 10px;
	font-size: 1.4rem;
	line-height: 1;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-box-shadow: 0px 0px 0px 2px #fff;
	box-shadow: 0px 0px 0px 2px #fff;
}

#yomiage_box button:where(#btn_yomiage_start, #btn_yomiage_setting) {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 5px;
}

#yomiage_box button:where(#btn_yomiage_start, #btn_yomiage_setting)::before {
	content: '';
	display: block;
	width: 22px;
	height: 22px;
}

#yomiage_box button#btn_yomiage_start::before {
	background: url(/img/common/hl-read.png) no-repeat center center;
}

#yomiage_box button#btn_yomiage_setting::before {
	background: url(/img/common/hl-hojo.png) no-repeat center center;
}

#yomiage_box :where(#btn_yomiage_start, #btn_yomiage_setting) {
	background: #fff;
	padding: 10px 30px;
}

#yomiage_box #btn_yomiage_start {
	border-radius: 5px 0px 0px 5px;
}

#yomiage_box #btn_yomiage_setting {
	border-radius: 0px 5px 5px 0px;
}

#yomiage_box #btn_yomiage_close {
	margin-left: 20px;
	margin-right: 10px;
}

.h_read.open #yomiage_box :where(#btn_yomiage_start, #btn_yomiage_setting) span {
	display: grid;
	grid-template-columns: auto auto;
	grid-template-rows: auto;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 5px;
}

.h_read.open #yomiage_box #btn_yomiage_start {
	background: #333;
	color: #fff;
}

.h_read.open #yomiage_box #btn_yomiage_start span::before {
	content: url(/img/common/hl-read.png);
	-webkit-filter: invert(1);
	filter: invert(1);
}

.h_read.open #yomiage_box #btn_yomiage_setting span::before {
	content: url(/img/common/hl-hojo.png);
}


/* アクセシビリティ機能 */
.h_support {
	position: relative;
}

#support_menu_box {
	display: none;
	position: absolute;
	top: calc(100% + 10px);
	right: 0px;
	z-index: 100;
	background: #fef3a8;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	min-width: 24rem;
	margin: 0px;
	padding: 10px 10px;
	text-align: center;
}

#support_menu_box.open {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	white-space: nowrap;
	gap: 20px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-shadow: 0px 0px 0px 2px #fff;
	box-shadow: 0px 0px 0px 2px #fff;
}

#support_menu_close {
	border: none;
	background: transparent;
	font-size: 1.4rem;
	margin: 0px;
	padding: 0px;
	margin-right: 10px;
	display: block;
	width: 24px;
	height: 24px;
}

dl#moji_size,
dl#haikei_color {
	margin: 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;
	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 3px;
	padding: 0px;
}

dl#moji_size dd a,
dl#haikei_color dd a {
	display: block;
	background: #ffffff;
	border: 1px solid transparent;
	border-radius: 0;
	color: #333333;
	line-height: 1.8rem;
	text-decoration: none;
	padding: 5px 8px;
}

dl#moji_size dd a {
	padding: 5px 10px;
}

dl#moji_size dd a#moji_large {}

.font_size_limit_max dl#moji_size dd a#moji_large {
	background: #f6f6f6;
	color: #666666;
}

dl#haikei_color dd a#haikei_white {
	background: #ffffff !important;
	color: #333333 !important;
}

dl#haikei_color dd a#haikei_black {
	background: #000000 !important;
	color: #ffffff !important;
}

dl#haikei_color dd a#haikei_blue {
	background: #0000ff !important;
	color: #ffff00 !important;
}

/* 検索 */
#btn_search_pc {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 80px 1fr;
	margin: 0px;
	padding: 0px;
	position: fixed;
	z-index: 100;
	right: 0;
	top: min(200px, 30vh);
	background: #fff;
	border: 2px solid #0e3469;
	border-right: none;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 80px;
	text-decoration: none;
	color: currentColor;
}

#btn_search_pc::before {
	content: '';
	display: block;
	background: url(/img/common/icon-search-lt36.png) no-repeat center center, var(--bg-grad);
	background-color: var(--base-col);
	width: 100%;
	aspect-ratio: 1 / 1;
}

#btn_search_pc span.lbl_open {
	display: grid;
	place-content: center center;
	padding: 20px 0px;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	font-size: 1.8rem;
	line-height: 1;
}

.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;
}

/* 検索（展開画面） */
#btn_search_close {
	display: block;
	position: fixed;
	right: 0px;
	top: 200px;
	width: 80px;
	height: 80px;
	margin: 0px;
	padding: 0px;
	border: none;
	background: url(/img/common/icon-close-lt36.png)no-repeat center center, var(--bg-grad);
	background-color: var(--base-col);
	color: var(--bg-grad-text-col);
}

:is(html, body):has(dialog#dlg_search[open]) {
	margin: 0px;
	padding: 0px;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

dialog#dlg_search:not([open]) {
	display: block;
	position: static;
	width: auto;
	height: auto;
	border: none;
	padding: 0;
	background: none transparent;
}

dialog#dlg_search:modal {
	width: 100%;
	height: 100%;
	overflow: auto;
	background: #f5f5ff;
	display: grid;
	place-content: start center;
	border: none;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	font-size: 1.4rem;
}

dialog#dlg_search::-webkit-backdrop {
}

dialog#dlg_search::backdrop {
}

dialog#dlg_search .search_wrap {
	display: grid;
	place-content: center center;
	grid-template-columns: auto auto;
	grid-template-rows: auto;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: end;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	gap: 20px;
}

/* キーワード検索 */
#top_search_keyword {
	text-align: left;
}

form#cse-search-box {
	display: grid;
	grid-template-columns: auto auto;
	grid-template-rows: auto;
}


#cse-search-box .search_ipt {
	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: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	/* width: 30rem; */
	border: 1px solid;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: 1px solid #bbbbbb;
}

#tmp_query,
#tmp_query2 {
	display: block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: auto;
	height: 4rem;
	border: none;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding: 10px 10px;
	width: 230px;
}

/* フォーカスが当たっているとき */
:is(#tmp_query, #tmp_query2):focus {
	background-image: none !important;
}

/* フォーカスが外れているがinputに内容が入っているとき */
:is(#tmp_query, #tmp_query2):not(:placeholder-shown) {
	background-image: none !important;
}


#submit{
	display: block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	min-width: 70px;
	border: none;
	/* background: var(--bg-grad); */
	background-color: #fef3a8;
	color: currentColor;
	margin: 0px;
	padding: 0px;
	font-size: 1.5rem;
	/* letter-spacing: 0.5em; */
	white-space: nowrap;
}


#cse-search-box .search_ttl,
#open_page_id_box .search_ttl{
	display: block;
	text-align: right;
	line-height: 1;
	font-weight: bold;
	margin-top: 6px;
	margin-right: 10px;
	color: #333;
}


#cse-search-box .search_ttl {
}

#open_page_id_box .search_ttl {

}

/* ページID検索 */
#top_search_page_id {
	text-align: left;
}
#open_page_id_box{
	display: grid;
	grid-template-columns: auto auto;
	grid-template-rows: auto;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
}

#open_page_id_box .search_ipt {
	display: grid;
	grid-template-columns: 1fr 70px;
	-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 #bbbbbb;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.search_ipt_wrap {
}

.search_ipt_wrap p {
	margin: 5px 0px 0px;
	padding: 0;
	display: block;
	text-align: right;
}

.search_ipt_wrap p a:-webkit-any-link {
	display: -webkit-box;
	display: flex;
	flex-wrap: nowrap;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: start;
	justify-content: flex-start;
	gap: 5px;
}

.search_ipt_wrap p a:-moz-any-link {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	gap: 5px;
}

.search_ipt_wrap p a:any-link {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}


.search_ipt_wrap p a:-webkit-any-link::before {
	content: '';
	display: block;
	background: #000;
	color: #fff;
	-webkit-clip-path: polygon(25% 0, 100% 50%, 25% 100%, 0% 100%, 75% 50%, 0% 0%);
	clip-path: polygon(25% 0, 100% 50%, 25% 100%, 0% 100%, 75% 50%, 0% 0%);
	width: 6px;
	height: 10px;
}


.search_ipt_wrap p a:-moz-any-link::before {
	content: '';
	display: block;
	background: #000;
	color: #fff;
	-webkit-clip-path: polygon(25% 0, 100% 50%, 25% 100%, 0% 100%, 75% 50%, 0% 0%);
	clip-path: polygon(25% 0, 100% 50%, 25% 100%, 0% 100%, 75% 50%, 0% 0%);
	width: 6px;
	height: 10px;
}


.search_ipt_wrap p a:any-link::before {
	content: '';
	display: block;
	background: #000;
	color: #fff;
	-webkit-clip-path: polygon(25% 0, 100% 50%, 25% 100%, 0% 100%, 75% 50%, 0% 0%);
	clip-path: polygon(25% 0, 100% 50%, 25% 100%, 0% 100%, 75% 50%, 0% 0%);
	width: 6px;
	height: 10px;
}

#open_page_id {
	display: block;
	vertical-align: middle;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	height: 4rem;
	border: none;
	padding: 10px;
	width: 130px;
}

#open_page_id_submit {
	display: block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	/* height: 6rem; */
	border: none;
	background: #fef3a8;
	color: currentColor;
	margin: 0px;
	padding: 0px;
	font-size: 1.5rem;
	/* line-height: 3.8rem; */
	/* letter-spacing: 0.5em; */
	white-space: nowrap;
	text-align: center;
	width: 70px;
}

#open_page_id_message {
	margin-top: 5px;
	text-align: right;
	font-size: 1.4rem;
}

#open_page_id_message:empty {
	display: none;
}

/* 注目ワード */
#search_trend_word p {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 10px;
}

#search_trend_word p a {
	display: block;
	background: #fff;
	margin: 0px;
	padding: 10px;
	border-radius: 5px;
	cursor: pointer;
	line-height: 1;
}

#search_trend_word p a:hover {
	text-decoration: underline;
}

.search_box_link ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(3, 1fr);
	grid-template-areas:
		"shinsei soshiki"
		"shinsei map"
		"life calendar";
}

.search_banner_shinsei {
	grid-area: shinsei;
}

.search_banner_life {
	grid-area: life;
}

.search_banner_soshiki {
	grid-area: soshiki;
}

.search_banner_map {
	grid-area: map;
}

.search_banner_calendar {
	grid-area: calendar;
}

.search_box_link ul li {
	border: 1px solid #dddddd;
}

.search_box_link ul a:-webkit-any-link {
	display: grid;
	grid-template-columns: 80px 1fr;
	grid-template-rows: 1fr;
	-webkit-box-align: center;
	align-items: center;
	height: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background: #fff;
	color: currentColor;
	font-weight: bold;
	text-decoration: none;
}

.search_box_link ul a:-moz-any-link {
	display: grid;
	grid-template-columns: 80px 1fr;
	grid-template-rows: 1fr;
	align-items: center;
	height: 100%;
	box-sizing: border-box;
	background: #fff;
	color: currentColor;
	font-weight: bold;
	text-decoration: none;
}

.search_box_link ul a:any-link {
	display: grid;
	grid-template-columns: 80px 1fr;
	grid-template-rows: 1fr;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background: #fff;
	color: currentColor;
	font-weight: bold;
	text-decoration: none;
}

.search_box_link ul a span {
	display: block;
	padding: 22px 10px 22px 14px;
	font-size: 1.4rem;
}

.search_box_link ul a::before {
	content: '';
	display: block;
	width: 80px;
	height: 100%;
	background: no-repeat center center #fffdf3;
}

.search_box_link ul a:hover span:not(.search_banner_detail) {
	text-decoration: underline;
}

.search_box_link ul li.search_banner_shinsei a::before {
	grid-row: 1 / span 2;
	background-image: url(/img/common/icon-search-shinsei.png);
}

.search_box_link ul li.search_banner_shinsei a span:nth-child(1) {
	padding-bottom: 0;
	font-size: 1.6rem;
}

.search_box_link ul li.search_banner_shinsei a span:nth-child(2) {
	padding-top: 0px;
	font-size: 1.2rem;
	font-weight: normal;
}

.search_box_link ul li.search_banner_life a::before {
	background-image: url(/img/common/icon-search-life.png);
}

.search_box_link ul li.search_banner_soshiki a::before {
	background-image: url(/img/common/icon-search-soshiki.png);
}

.search_box_link ul li.search_banner_map a::before {
	background-image: url(/img/common/icon-search-map.png);
}

.search_box_link ul li.search_banner_calendar a::before {
	background-image: url(/img/common/icon-search-calendar.png);
}

/* グローバルナビ */
@media (min-width: 1101px){
	#top_search {
		display: block;
		border: none;
		width: 100%;
		box-sizing: border-box;
		background-color: var(--base-col);
		color: #333;
	}
}

#top_search nav {
	width: min(var(--content-width, 100%));
	margin-inline: auto;
	padding: 15px 0px;
}

#top_search .gnav ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(7, 1fr);
}

#top_search .gnav ul a:-webkit-any-link {
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-rows: 45px auto;
	grid-template-columns: 1fr;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	text-align: center;
	text-decoration: none;
	border-right: 1px dashed currentColor;
	color: currentColor;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

#top_search .gnav ul a:-moz-any-link {
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-rows: 45px auto;
	grid-template-columns: 1fr;
	justify-content: center;
	align-items: center;
	text-align: center;
	text-decoration: none;
	border-right: 1px dashed currentColor;
	color: currentColor;
	box-sizing: border-box;
}

#top_search .gnav ul a:any-link {
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-rows: 45px auto;
	grid-template-columns: 1fr;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	text-decoration: none;
	border-right: 1px dashed currentColor;
	color: currentColor;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
#top_search .gnav ul li:first-of-type a:-webkit-any-link{
	border-left: 1px dashed currentColor;
}
#top_search .gnav ul li:first-of-type a:-moz-any-link{
	border-left: 1px dashed currentColor;
}
#top_search .gnav ul li:first-of-type a:any-link{
	border-left: 1px dashed currentColor;
}
#top_search .gnav ul a:-webkit-any-link:hover{
	text-decoration: underline;
}
#top_search .gnav ul a:-moz-any-link:hover{
	text-decoration: underline;
}
#top_search .gnav ul a:any-link:hover{
	text-decoration: underline;
}

#top_search .gnav ul a :where(img, span) {
	display: block;
	margin-inline: auto;
}

#top_search .gnav ul a span {
	-ms-flex-item-align: center;
	align-self: center;
}

/* ===== フッタ ===== */

/* フッタ */
#footer {}

#author_info {
	background: url(/img/sites/kosodate/bg-footer.jpg) no-repeat center center transparent;
	background-size: cover;
	min-height: 740px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

#author_info a:-webkit-any-link {
	color: currentcolor;
	text-decoration: underline;
}

#author_info a:-moz-any-link {
	color: currentcolor;
	text-decoration: underline;
}

#author_info a:any-link {
	color: currentcolor;
	text-decoration: underline;
}

#author_info a:-webkit-any-link:hover {
	text-decoration: none;
}

#author_info a:-moz-any-link:hover {
	text-decoration: none;
}

#author_info a:any-link:hover {
	text-decoration: none;
}

#author_info_box {
	width: var(--content-width, 1100px);
	margin: 0px auto;
	padding: 120px 0px 80px;
}

#author_info_box {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(4, auto);
	grid-column-gap: 20px;
	grid-row-gap: 20px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#author_box {
	grid-area: 1 / 1 / 2 / 2;
}

.author_detail {
	grid-area: 2 / 1 / 3 / 2;
	line-height: 1.75;
}

.ft_link_sns {
	grid-area: 1 / 2 / 2 / 3;
}

.ft_link_contact {
	grid-area: 2 / 2 / 3 / 3;
}

.footer_navi {
	grid-area: 3 / 1 / 4 / 3;
}

#copyright {
	grid-area: 4 / 1 / 5 / 3;
}

/* フッタメニュー */
#author_info_box p {
	margin: 0px;
}

.ft_link_sns ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px;
}

.ft_link_sns ul li a {
	display: grid;
	place-content: center center;
	width: 70px;
	height: 70px;
	background: #fff;
	color: #000;
	border-radius: 50%;
}

.ft_link_contact ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	gap: 10px;
}

#author_info .ft_link_contact ul li a {
	display: grid;
	place-content: center center;
	border: 1px solid currentColor;
	padding: 15px 30px;
	line-height: 1;
	height: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: transparent;
	-webkit-transition: background 0.35s ease;
	-o-transition: background 0.35s ease;
	transition: background 0.35s ease;
}

#author_info .ft_link_contact ul li a:hover {
	background: #101b2b;
}
#author_info .f_contact_mail a{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	line-height: 1;
	gap: 10px;
}
#author_info .f_contact_mail a::before{
	content: url(/img/sites/kosodate/icon-mail.png);
	display: block;
}


.ft_link_contact ul li a span {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
}

.ft_link_contact ul li.ft_link_open a span::before {
	content: url(/img/common/icon-time.png);
}

.ft_link_contact ul li.ft_link_mail a span::before {
	content: url(/img/common/icon-mail.png);
}

.footer_navi {
	padding: 0px;
	font-size: 1.5rem;
}

.footer_navi ul {
	margin: 20px 0px;
	padding: 0px;
	list-style: none;
	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: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 20px 0px;
}

.footer_navi ul li {
	display: inline-block;
	vertical-align: top;
	margin: 0px 1em 0em 0px;
	padding-right: 1em;
	border-right: 1px solid;
	line-height: 1.25;
}

.footer_navi ul li:last-child {
	margin-right: 0px;
	padding-right: 0px;
	border-right: none;
}

#author_info .footer_navi li a:-webkit-any-link{
	text-decoration: none;
}

#author_info .footer_navi li a:-moz-any-link{
	text-decoration: none;
}

#author_info .footer_navi li a:any-link{
	text-decoration: none;
}
#author_info .footer_navi li a:-webkit-any-link:hover{
	text-decoration: underline;
}
#author_info .footer_navi li a:-moz-any-link:hover{
	text-decoration: underline;
}
#author_info .footer_navi li a:any-link:hover{
	text-decoration: underline;
}

/* 管理者情報 */
#author_box {
	margin: 0px;
	padding: 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;
	grid-area: 1 / 1 / 2 / 3;
}

#author_box p {
	margin: 0;
}

#author_box p.f_author {
	font-size: 3rem;
	font-weight: bold;
}

#author_box p.f_author :is(a, img) {
	display: block;
	max-width: 100%;
	height: auto;
}

#author_box p.f_number {
	font-size: var(--fontsize-main-small, 1.5rem);
}

/* コピーライト */
#copyright {
	margin: 0px;
	padding: 0px;
}

#copyright p {
	font-size: 1.4rem;
	letter-spacing: 0.05em;
	margin: 0px;
	text-align: center;
}

/* ページトップ（フローティング表示） */
#footer_link_pagetop {
	display: block;
	width: 90px;
	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;
}

#footer_link_pagetop.fixed {
	bottom: 10px;
}

#footer_link_pagetop a {
	display: block;
}

#footer_link_pagetop img {
	width: 100%;
	height: auto;
	vertical-align: top;
}

/* 戻る・ページトップ */
#back_or_pagetop {
	width: var(--content-width, 1100px);
	margin: 0px auto;
	text-align: right;
	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: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

#back_or_pagetop>div {
	display: inline-block;
	vertical-align: bottom;
	margin-left: 10px;
}

#back_or_pagetop>div a {
	display: block;
	background: #e6e6e6;
	color: #333333;
	font-size: var(--fontsize-main-small, 1.5rem);
	line-height: 2rem;
	text-align: center;
	padding: 10px 20px;
	width: 10em;
}

/* ===== 1 基本設定 ===== */

/* フォント */
html {
	font-size: var(--fontsize-main-base, 62.5%);
}

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 {
	font-size: var(--fontsize-detail, 1.6rem);
	line-height: var(--lineheight-detail, 1.75);
	letter-spacing: var(--letterspacing-detail, 0.05em);
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
.kakuka_info_ttl,
.life_cat_list_ttl,
.subsite_menu_ttl,
.site_name,
#main_body table.tbl_ques caption,
#main_body table#mail_form_tbl caption {
	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: var(--text-color, #333333);
}

/* リンク */
a:link {
	color: var(--textlink-link, #0d59b7);
	text-decoration: underline;
}

a:visited {
	color: var(--textlink-visited, #660099);
	text-decoration: underline;
}

a:active {
	color: var(--textlink-active, #cc0000);
	text-decoration: none;
}

a:hover,
a:focus {
	color: var(--textlink-hover, #000000);
	text-decoration: none;
}

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;
}

/* ===== 2 ヘッダ / フッタ ===== */

/* 「 parts-header-footer 」 参照 */

/* ===== 3 パンくず / 足あと ===== */

/* パンくず・足あと */
#pankuzu_wrap {
	/* background: #f6f6f6; */
	color: #333333;
	padding: 20px 0px 10px;
	font-size: var(--fontsize-main-small, 1.5rem);
}

#pankuzu_wrap>div {
	width: var(--content-width, 1100px);
	margin: 0px auto 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.pankuzu,
#footstep {
	position: relative;
	padding-left: 7rem;
}

.pankuzu .icon_current {
	display: none;
}

.pankuzu:first-child .icon_current,
#footstep_ttl {
	display: block;
	width: 5rem;
	height: auto;
	min-height: 2rem;
	border: none;
	border-radius: 0;
	background: #fbf6a8;
	color: currentColor;
	font-size: 1.2rem;
	line-height: 1.6rem;
	padding: 0.2rem 0px;
	text-align: center;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: absolute;
	top: 1px;
	left: 0px;
	border-radius: 10em;
}

#clear_footstep {
	width: 24px;
	height: 24px;
	border-radius: 100%;
	border: 2px solid #ffffff;
	background: url(/img/common/icon_clear.png) no-repeat center center #333333;
	background-size: 10px 10px;
	color: #ffffff;
}

/* ===== 4 メイン ===== */

/* メイン */
#mymainback {
	padding-top: var(--mymainback-margin-top, 30px);
	padding-bottom: var(--mymainback-margin-bottom, 60px);
}

/* 見出し */
#main_header {
	margin-bottom: var(--content-margin-narrow, 30px);
}

#main_header h1 {
	margin: 0px;
	padding: 30px 30px;
	font-size: 3.2rem;
	background: url(/img/sites/kosodate/h1bg1.png) no-repeat right bottom,url(/img/sites/kosodate/h1bg2.jpg) repeat left top;
	background-color: transparent;
	border-radius: 25px;
	-webkit-box-shadow: 5px 5px 10px -5px rgba(0,0,0,0.2);
	box-shadow: 5px 5px 10px -5px rgba(0,0,0,0.2);
}

#main_body :where(h2, h3, h4, h5, h6){
	clear: both;
	margin: 1em 0px;
}


#main_body h2 {
	padding: 21px 30px 20px;
	background: url(/img/sites/kosodate/h2bg.png) no-repeat right top #d3e8f5;
	font-size: 2.6rem;
	border-radius: 20px;
}

#main_body h3{
	padding: 17px 30px;
	background-image: -o-linear-gradient(315deg, #f4fade 25%, #ffffff 25%, #ffffff 50%, #f4fade 50%, #f4fade 75%, #ffffff 75%, #ffffff 100%);
	background-image: linear-gradient(135deg, #f4fade 25%, #ffffff 25%, #ffffff 50%, #f4fade 50%, #f4fade 75%, #ffffff 75%, #ffffff 100%);
	background-size: 30px 30px;
	/* border: 2px solid #091e4b; */
	font-size: 2.4rem;
	border-radius: 15px;
}

#main_body h4 {
	padding: 14px 30px 13px;
	background: none transparent;
	border: none;
	border: 2px solid #cde5f4;
	font-size: 2.2rem;
	border-radius: 15px;
}

#main_body h5 {
	padding: 10px 30px;
	background: none transparent;
	border-bottom: 1px dashed #f59859;
	font-size: 2.0rem;
}

#main_body h6 {
	padding: 7px 30px 6px;
	background: none transparent;
	border: none;
	font-size: 1.8rem;
	position: relative;
}

#main_body h6::before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	position: absolute;
	left: 10px;
	top: calc(7px + 0.5em);
	background: #cde5f4;
	border-radius: 50%;
}

/* テーブル */
#main_body table {
	border-color: var(--table-bordercolor, #333333);
	border-collapse: collapse;
	border-style: solid;
	border-width: 2px;
	/* CMSver5以降は管理画面で枠線の太さを変更することができない（機能が削除された）ためCSSで指定 */
	margin: 0px 0px 1em;
	max-width: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

#main_body th {
	background: var(--table-th-background, #f6f6f6);
	color: var(--table-th-color, #333333);
	border-color: var(--table-bordercolor, #333333);
	border-collapse: collapse;
	border-style: solid;
	border-width: 1px;
	padding: 0.5em;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

#main_body td {
	border-color: var(--table-bordercolor, #333333);
	border-collapse: collapse;
	border-style: solid;
	border-width: 1px;
	padding: 0.5em;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* テーブル内のpタグのマージンを0にする */
#main_body table p {
	margin: 0px 0px 1em;
}

#main_body table p:last-child {
	margin: 0px;
}

/* -----
見出しとテーブルの設定は「 editor-public-page 」にも適用すること
----- */

/* コンテンツヘッダ */
#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;
}

/* 印刷 */
#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: var(--content-margin-normal, 40px) 30px 0px 0px;
}

#calendar_button_google a,
#calendar_button_yahoo a {
	display: inline-block;
	font-size: var(--fontsize-main-small, 1.5rem);
	line-height: 2rem;
	padding: 5px 0px 5px 35px;
	background: url(/img/sites/kosodate/icon-calendar.png) no-repeat left center transparent;
}

/* SNSボタン */
.sns_button_wrap {
	margin-top: var(--content-margin-normal, 40px);
	line-height: 1;
}

.sns_button_wrap>div {
	display: inline-block;
	vertical-align: top;
}

/* PDF・WMPリンク */
.pdf_download,
.wmplayer_download {
	clear: both;
	margin: var(--content-margin-normal, 40px) 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: var(--content-margin-normal, 40px) 0px 0px;
	padding: 30px;
	background: none transparent;
	border-radius: 20px;
	border: 1px solid #bbbbbb;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

#hyouka_area_box h2,
#main_body #hyouka_area_box h2 {
	margin: 0px 0px 15px;
	padding: 0px;
	border: none;
	border-radius: 0;
	background: none;
	color: inherit;
	font-size: 2rem;
}

#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 #dddddd;
	margin-bottom: 15px;
	padding-bottom: 15px;
	font-size: var(--fontsize-main-small, 1.5rem);
}

#hyouka_area_box .hyouka_box_detail:last-child {
	border-bottom: none;
	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 5px;
	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 4px 5px 5px;
	vertical-align: middle;
}

#hyouka_area_submit {
	margin-top: 10px;
}

#hyouka_area_submit input {
	display: inline-block;
	border: 1px solid transparent;
	border-radius: 0;
	background: #fdf9d5;
	color: #333333;
	margin: 0px;
	padding: 10px;
	font-size: var(--fontsize-main-small, 1.5rem);
	line-height: 1.8rem;
	text-decoration: none;
	text-align: center;
	width: 260px;
	max-width: 90%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 100em;
}

#hyouka_area_submit input:hover,
#hyouka_area_submit input:focus {
	text-decoration: underline;
}

/* 評価エリア（確認ページ） */
div[class*="confirm_quest_hankyou"] #hyouka_area_box {
	margin: 0px;
	padding: 0px;
	background: none;
	border: none;
	border-radius: 0px;
	color: inherit;
	-webkit-box-shadow: none;
	box-shadow: none;
}

/* お問い合わせ先 */
#section_footer {
	clear: both;
	margin: var(--content-margin-normal, 40px) 0px 0px;
	padding: 30px;
	background: #fdf9d5;
	border-radius: 20px;
}

#section_footer h2,
#main_body #section_footer h2 {
	margin: 0px 0px 15px;
	padding: 0px;
	border: none;
	border-radius: 0;
	background: none;
	color: inherit;
	font-size: 2rem;
}

#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: var(--content-margin-normal, 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;
}

/* ===== 5 サイド ===== */

/* サイドバー */
#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: #fdf2f2; */
	padding: 0px 0px;
	border: 1px solid #cc0000;
}

#important_noticest_area .second_important a {
	color: #cc0000;
}

#important_noticest_area .second_important h2,
#important_noticest_area .second_important_ttl {
	margin: 0px 0px 15px;
	padding: 10px 10px;
	color: #cc0000;
	font-size: 2rem;
	line-height: 1;
	text-align: center;
	background: #cc0000;
	color: #fff;
}

#important_noticest_area .second_important h2 span {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}

#important_noticest_area .second_important h2 span::before {
	content: url(/img/top/icon-alert-w.png);
}

#important_noticest_area .second_important ul {
	margin: 0px 15px 20px;
	padding: 0px;
	list-style: none;
}

#important_noticest_area .second_important ul li:last-child {
	margin-bottom: 0px;
}

#important_noticest_area .second_important ul li>span {
	display: block;
}

#important_noticest_area .second_important ul li>span.article_date {
	font-size: var(--fontsize-main-small, 1.5rem);
}

#important_noticest_area .second_important .link_box {
	margin: 20px 15px 20px;
	text-align: right;
	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;
	/* font-size: 1.2rem; */
	/* line-height: 1; */
	gap: 10px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

#important_noticest_area .second_important .link_box>span {
	display: block;
	/* margin-top: 5px; */
}

#important_noticest_area .second_important .link_box>span a {
	font-size: var(--fontsize-main-small, 1.5rem);
	/* font-size: 1.3rem; */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}

#important_noticest_area .second_important .link_box>span a::after {
	content: '';
	display: block;
	width: 8px;
	height: 12px;
	background: #cc0000;
	-webkit-clip-path: polygon(25% 0, 100% 50%, 25% 100%, 0% 100%, 75% 50%, 0% 0%);
	clip-path: polygon(25% 0, 100% 50%, 25% 100%, 0% 100%, 75% 50%, 0% 0%);
}

/* カウントダウン */
#count_down_area .count_down_box {
	margin: 0px 0px 15px;
	padding: 20px;
	position: relative;
	border: 1px solid var(--base-col);
}

#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レコメンド */
#recommend_tag,
#ai_recommend_tag{
	margin: 30px 0px;
}
#sidebar_recommend,
#sidebar_ai_recommend {
	background: #feefef;
	/* background: #f6f6f6; */
	padding: 30px 30px;
	border-radius: 20px;
}

#recommend_title,
#ai_recommend_title {
	text-align: left;
}

#recommend_title h2,
#ai_recommend_title h2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	gap: 10px;
	text-align: left;
	font-size: 1.6rem;
	line-height: 2rem;
	margin: 0px;
	/* padding: 5px 0px 5px 40px; */
}

#recommend_title h2 {
	/* background: url(/img/common/icon_recommend.png) no-repeat left center transparent; */
	color: inherit;
}
#recommend_title h2::before{
	content: url(/img/common/icon_recommend.png);
}

#ai_recommend_title h2 {
	/* background: url(/img/common/icon_ai_recommend.png) no-repeat left center transparent; */
	color: inherit;
}
#ai_recommend_title h2::before{
	content: url(/img/common/icon_ai_recommend.png);
}

#recommend_title h2 > span,
#ai_recommend_title h2 > span {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

#sidebar_recommend ul,
#sidebar_ai_recommend ul {
	/* margin: 0px; */
	padding: 0px;
	/* list-style: none; */
	/* list-style-type: '・'; */
	/* display: list-item; */
	margin-left: 20px;
}

#sidebar_recommend ul li,
#sidebar_ai_recommend ul li {
	/* display: block; */
	/* border-top: 1px solid #ffffff; */
	padding: 5px 0px;
}

/* 関連リンク */

#kanren_link {
	margin: 30px 0px;
	background: #ebf9fe;
	border-radius: 20px;
	padding: 20px 30px;
}
#kanren_link h2 {
	background: none transparent;
	margin: 0px;
	padding: 0;
	font-size: 1.8rem;
	text-align: left;
}

#kanren_link ul {
	margin: 0px;
	padding: 0px 0px 0px 20px;
}

#kanren_link ul li {
	margin: 0px;
	padding: 5px 0px;
}

#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_"] {
	margin-bottom: 15px;
}

.common_banner_link *[class*="common_banner_"]:last-child {
	margin-bottom: 0px;
}

.common_banner_link a {
	display: block;
	border: 1px solid var(--base-col);
	/* background: #e6e6e6; */
	color: #333333;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.8rem;
	letter-spacing: 0.1em;
	padding: 20px 5px;
	text-align: center;
}

.common_banner_link a>span {
	display: inline-block;
	padding: 5px 0px 5px 40px;
}

.common_banner_link .common_banner_mitsukaranai a>span {
	background: url(/img/common/icon_mitsukaranai.png) no-repeat left center transparent;
	color: inherit;
}

.common_banner_link .common_banner_faq a>span {
	background: url(/img/common/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;
}

/* 「見つからないときは」「よくある質問」バナー（1カラム） */
@media screen and (min-width: 1101px) {

	#main .common_banner_link,
	#main .common_banner_link ul {
		margin: var(--content-margin-normal, 40px) 0px 0px;
		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: start;
		-ms-flex-align: start;
		align-items: flex-start;
		gap: 30px;
	}

	#main .common_banner_link ul {
		margin: 0px;
		width: 100%;
	}

	#main .common_banner_link *[class*="common_banner_"] {
		width: calc(50% - 15px);
		margin: 0px;
	}
}

/* 「見つからないときは」「よくある質問」バナー（1カラム） ここまで */

/* サイドメニュー */
.side_box {
	background: transparent;
}

.side_box_ttl h2 {
	background: var(--base-sidebar-ttl-bg);
	margin: 0px;
	padding: 15px 20px;
	font-size: 2rem;
	text-align: center;
}

.side_box_txt {
	padding: 20px;
}

.side_box_txt p {
	margin: 0px 0px 1em;
}

.side_box_txt p:last-child {
	margin-bottom: 0px;
}

.side_box_txt>div {
	margin: 0px 0px 1em;
}

.side_box_txt>div:last-child {
	margin-bottom: 0px;
}

.side_box_list ul {
	margin: 0px;
	padding: 20px 20px 20px 40px;
}

.side_box_list ul li {
	margin: 0px 0px 15px;
}

.side_box_list ul li:last-child {
	margin-bottom: 0px;
}

.side_box_list ul li ul {
	padding: 10px 0px 0px 20px;
}

.side_box_list ul li ul li {
	margin-bottom: 5px;
}

.side_box_list ul li ul li:last-child {
	margin-bottom: 0px;
}

/* 関連情報 */
#kanren_info {
	background: var(--base-sidebar-ttl-bg);
	padding: 20px 20px 10px;
	text-align: center;
}

#kanren_info h2 {
	display: inline-block;
	background: url(/img/common/icon_kanren.png) no-repeat left center transparent;
	font-size: 2rem;
	margin: 0px;
	padding: 10px 20px 10px 35px;
}

#kanren_info .kanren_box {
	padding: 15px 0px;
	text-align: left;
}

#kanren_info .kanren_box h3 {
	margin: 0px 0px 15px;
	padding: 13px 20px;
	background: #ffffff;
	font-size: 1.6rem;
	text-align: center;
}

#kanren_info .kanren_box ul {
	margin: 0px;
	padding: 5px 0px 5px 20px;
}

#kanren_info .kanren_box ul li {
	margin-bottom: 10px;
}

#kanren_info .kanren_box ul li:last-child {
	margin-bottom: 0px;
}

#kanren_info div.link_ichiran {
	margin: 15px 15px 0px;
	padding: 0px;
	text-align: center;
}

#kanren_info div.link_ichiran a {
	display: block;
}

/* ===== 6 リスト ===== */

/* リスト（横並び） */
.navigation,
.navigation 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: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 15px;
}

.navigation ul li,
.navigation>div {
	display: inline-block;
	vertical-align: top;
	padding-right: 15px;
	border-right: 1px solid;
	line-height: 1.25;
}

.navigation ul li:last-child,
.navigation>div:last-child {
	padding-right: 0px;
	border-right: none;
}

/* リスト（一覧） */
.info_list ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}

.info_list ul li {
	padding: 30px 0px;
	margin: 0px 0px 0px;
	border-bottom: 1px dashed currentColor;
}

/* リスト（日付） */
.info_list.info_list_date ul li {}

.info_list.info_list_date ul li>span {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.info_list.info_list_date ul li>span.article_date {
	font-size: var(--fontsize-detail-small, 1.6rem);
}

/* リスト（日付 / 文字拡大時） */
.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;
}

.list_pack .article_txt {
	display: table-cell;
	vertical-align: top;
}

.list_pack .article_txt .article_date {
	display: block;
}

.list_pack .article_txt .article_title {
	display: block;
}

.list_pack .article_img {
	display: table-cell;
	vertical-align: middle;
	width: 178px;
	padding-right: 20px;
}

.list_pack .article_img span {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 178 / 120;
	overflow: hidden;
	/* background: #f6f6f6; */
}

.list_pack .article_img span:empty {
	background: url(/img/common/noimage.png) no-repeat center center #b6c2d2;
	/* background-size: contain; */
}

.list_pack .article_img span img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
}


/* Googlemap */
.gglmap iframe,
.gglmap object,
.gglmap embed {
	width: 100%;
	height: auto;
	aspect-ratio: 600 / 450;
}

/* ===== 9 バナー ===== */

/* バナー広告 */
#footer_banner {
	clear: both;
	width: var(--content-width, 1100px);
	margin: 0px auto var(--mymainback-margin-bottom, 60px);
}

#footer_banner ul.banner_list {
	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: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 20px;
}

#footer_banner ul.banner_list li {
	width: 200px;
}

#footer_banner ul.banner_list li img {
	width: 100%;
	height: auto;
	vertical-align: top;
}

.banner_text {
	display: block;
	padding: 10px;
	text-align: left;
}

.banner_text span {
	display: block;
}

.banner_text span:nth-child(2n) {
	font-size: var(--fontsize-main-small, 1.5rem);
}

/* 関連するリンク（自由編集項目下） */
#banner_kanren:not(:has(.free_box)){
	display: none;
}

#banner_kanren h2 {
	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: end;
	-ms-flex-align: end;
	align-items: flex-end;
	gap: 10px;
	font-size: 1.6rem;
	line-height: 1;
	margin: 40px 0px 40px;
}
#banner_kanren h2 :where(span,img){
	display: block;
}
#banner_kanren .banner_kanren_wrap{
	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: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 20px;
}
#banner_kanren .banner_kanren_wrap .free_box{
	width: 260px;
}
#banner_kanren .banner_kanren_wrap .free_box p{
	margin: 0px;
}

@media (max-width: 1100px) {

	/* var() 関数 */
	:root {
		/* コンテンツ幅（最小値） */
		--sp-content-min-width: 320px;

		/* #mymainbackの上下余白 */
		--mymainback-margin-top: 15px;
		--mymainback-margin-bottom: 60px;
		/* #mymainbackの左右余白 */
		--mymainback-margin-side: 15px;
		/* コンテンツの上下余白 */
		--content-margin-narrow: 20px;
		/* 狭い */
		--content-margin-normal: 30px;
		/* 標準 */
		--content-margin-wide: 40px;
		/* 広い */

		/* フォントサイズ */
		--fontsize-main: 1.4rem;
		/* 一段階小さいフォントサイズ（一覧をみるボタンなど） */
		--fontsize-main-small: 1.3rem;
		/* 本文（ #main ） */
		--fontsize-detail: 1.5rem;
		/* 本文の一段階小さいフォントサイズ（日付など） */
		--fontsize-detail-small: 1.4rem;

		/* リストの区切り線の色 */
		--list-bordercolor: #cccccc;

		/* スマホメニューの高さ */
		--sp-menu-height: 50px;

	}

	@media screen and (max-width: 370px) {

		:root {
			/* #mymainbackの左右余白 */
			--mymainback-margin-side: 10px;
			/* 本文（ #main ） */
			--fontsize-detail: 1.4rem;
			/* 本文の一段階小さいフォントサイズ（日付など） */
			--fontsize-detail-small: 1.3rem;
		}

	}

	/* 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;
	}

	/* サイド */

	/* パンくずをフッタ上に表示 */
	#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;
	}


	/* ===== ヘッダ ===== */

	/* ヘッダ */
	#header {
		position: relative;
		min-height: 95px;
		background: #dcecf8;
	}

	.spm_menu_open #header {
		z-index: 1000;
	}

	#header2_box, .tpl_site_index #header2_box {
		width: auto;
		margin: 0px;
		padding: 0px;
		display: block;
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: auto auto auto;
		grid-template-areas:
			'spm'
			'links'
			'logo';
	}
	#header2_box{
	}

	#he_left {
		display: contents;
	}
	#he_left #logo, .tpl_site_index #he_left #logo{
		grid-area: logo;
		text-align: center;
		display: grid;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		margin-block: 20px 20px;
	}

	#he_left #logo :is(a, h1) {
		display: grid;
		grid-template-columns: auto;
		grid-template-rows: auto auto;
		gap: 0;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		width: auto;
		max-width: 90vw;
	}

	#he_left #logo :is(a, h1) img {
		max-width: 100%;
		height: auto;
	}

	#he_right {
		margin-left: 0px;
		text-align: left;
		grid-area: links;
	}

	/* ボトムナビゲーション */
	#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%;
		/* background-image: var(--bg-grad); */
		background-repeat: repeat-x;
		background-size: 100% 100%;
		background-color: var(--base-col);
		border-top: 2px solid #fff;
		color: var(--base-text-col);
		height: 50px;
	}

	#spm_wrap :is(button, a:-webkit-any-link) {
		display: grid;
		place-content: center center;
		width: 100%;
		height: var(--sp-menu-height);
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		margin: 0px;
		padding: 0px;
		border: none;
		overflow: hidden;
		/* color: var(--bg-grad-text-col); */
		background-color: transparent;
		text-decoration: none;
	}

	#spm_wrap :is(button, a:-moz-any-link) {
		display: grid;
		place-content: center center;
		width: 100%;
		height: var(--sp-menu-height);
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		margin: 0px;
		padding: 0px;
		border: none;
		overflow: hidden;
		/* color: var(--bg-grad-text-col); */
		background-color: transparent;
		text-decoration: none;
	}

	#spm_wrap :is(button, a:any-link) {
		display: grid;
		place-content: center center;
		width: 100%;
		height: var(--sp-menu-height);
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		margin: 0px;
		padding: 0px;
		border: none;
		overflow: hidden;
		/* color: var(--bg-grad-text-col); */
		background-color: transparent;
		text-decoration: none;
	}

	#spm_wrap button.open {
		background-color: #333;
		color: #fff;
	}

	#spm_wrap :is(button, a:-webkit-any-link) span {
		display: -webkit-box;
		display: flex;
		-webkit-box-align: center;
		align-items: center;
		-webkit-box-pack: center;
		justify-content: center;
		gap: 10px;
		line-height: 1;
	}

	#spm_wrap :is(button, a:-moz-any-link) span {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		line-height: 1;
	}

	#spm_wrap :is(button, a:any-link) span {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		gap: 10px;
		line-height: 1;
	}

	#spm_wrap button span.lbl_close {
		display: none;
	}

	#spm_wrap button.open span.lbl_close {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	#spm_wrap button.open span.lbl_open {
		display: none;
	}


	#spm_wrap button#spm_menu {
		border-left: 1px solid #fff;
	}

	#spm_menu span.lbl_open::before {
		content: url(/img/sites/kosodate/sp/spm-icon-menu.png);
	}

	#spm_search span.lbl_open::before {
		content: url(/img/sites/kosodate/sp/spm-icon-search.png);
	}

	#spm_wrap button.open span.lbl_close::before {
		content: url(/img/sp/icon-close-white.png);
	}

	.spm_menu_open #spm_wrap button {}

	#spm_wrap a#spm_search {
		color: var(--bg-grad-text-col);
	}

	.spm_search_open #spm_wrap button#spm_search {}

	#spm_wrap #spm_search {
		border-right: 1px solid #fff;
	}

	#spm_wrap button#spm_kaiyu {
		background: url(/img/sp/btn_kaiyu.png) no-repeat center center #cccccc;
		background-size: 26px auto;
		color: #000000;
		border-top: 1px solid;
	}

	.spm_kaiyu_open #spm_wrap button#spm_kaiyu {
		background-color: #f6f6f6;
		background-image: url(/img/sp/btn_close.png);
		border-top-color: transparent;
	}

	#spm_wrap a#spm_pagetop {
		background: url(/img/common/btn_pagetop.png) no-repeat center center #cccccc;
		background-size: 26px auto;
		color: #000000;
		border-top: 1px solid;
	}

	/* 閲覧補助（展開） */
	#spm_header_support {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: auto;
		gap: 10px;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: end;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: start;
		justify-self: end;
		grid-area: spm;
		margin: 10px;
	}

	#spm_header_support button:where(#spm_support, #spm_yomiage) {
		display: grid;
		grid-template-rows: 1fr 1fr;
		grid-template-columns: auto;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		width: 66px;
		min-height: 75px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		margin: 0px;
		padding: 0px;
		border: none;
		background-color: #fff;
		color: #333;
		border-radius: 5px;
		line-height: 1.4;
		font-size: 1.3rem;
		height: 100%;
		border: 1px solid #ddd;
	}

	#spm_header_support button#spm_support::before {
		content: url(/img/sites/kosodate/sp/spm-icon-hojo.png);
		margin-top: auto;
		margin-bottom: 0;
		display: block;
		width: 22px;
		height: 23px;
		margin-inline: auto;
	}

	#spm_header_support button#spm_yomiage::before {
		content: url(/img/sites/kosodate/sp/spm-icon-yomiage.png);
		margin-top: auto;
		margin-bottom: 0;
		display: block;
		width: 22px;
		height: 16px;
		margin-inline: auto;
		margin-bottom: 10px;
	}

	.spm_yomiage_open #spm_header_support button#spm_yomiage,
	.spm_support_open #spm_header_support button#spm_support {
		background-color: #fef3a8;
		color: #000;
		position: relative;
		border-radius: 5px 5px 0 0;
		-webkit-box-shadow: 0px 30px 0px 0px #fef3a8;
		box-shadow: 0px 30px 0px 0px #fef3a8;
		border-color: #fef3a8;
	}

	.spm_yomiage_open #spm_header_support button#spm_yomiage::before,
	.spm_support_open #spm_header_support button#spm_support::before {
		content: url(/img/common/icon-close.png);
	}

	#spm_header_support button:where(#spm_support, #spm_yomiage) span.lbl_open {}

	#spm_header_support button span.lbl_close {
		display: none;
	}

	.spm_support_open #spm_header_support button#spm_support span.lbl_open {
		display: none;
	}

	.spm_support_open #spm_header_support button#spm_support span.lbl_close {
		display: block;
	}

	.spm_yomiage_open #spm_header_support button#spm_yomiage span.lbl_open {
		display: none;
	}

	.spm_yomiage_open #spm_header_support button#spm_yomiage span.lbl_close {
		display: block;
	}


	.header_nav {
		display: none;
	}

	:is(.spm_support_open, .spm_yomiage_open) .header_nav {
		display: block;
	}

	/* ヘッダメニュー */
	.header_nav ul {
		display: block;
		padding: 10px 20px 20px;
		background: #fef3a8;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		gap: 20px 40px;
	}

	.header_nav ul li[class^="h_"] {
		display: block;
		margin: 10px 0px 0px;
	}

	.header_nav ul li.h_search {
		display: none;
	}

	.header_nav ul li.h_main {
		display: none !important;
	}

	.header_nav ul li.h_support {
		/* flex: 1; */
		margin: 0;
	}

	.spm_support_open .header_nav ul li.h_read {
		display: none;
	}

	.spm_yomiage_open .header_nav ul li:not(.h_read) {
		display: none;
	}

	.spm_yomiage_open .header_nav ul li.h_read #yomiage_menu_open {
		display: none;
	}

	#yomiage_box {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
		max-width: 375px;
	}

	#yomiage_box #btn_yomiage_close {
		display: none;
	}

	#yomiage_box :where(#btn_yomiage_start, #btn_yomiage_setting) {
		padding: 10px 20px;
	}

	/* アクセシビリティ機能 */
	#support_menu_open,
	#support_menu_close {
		display: none !important;
	}

	#support_menu_box {
		display: grid;
		grid-template-columns: 1fr 1fr;
		position: static;
		background: none;
		border: none;
		-webkit-box-shadow: none;
		box-shadow: none;
		margin: 0px;
		padding: 0px;
		width: auto;
		min-width: auto;
		gap: 20px;
	}

	dl#moji_size,
	dl#haikei_color {
		margin: 0px;
		display: grid;
		grid-template-columns: repeat(3,1fr);
		grid-template-rows: auto auto;
	}
	dl#moji_size{
		grid-template-columns: repeat(2,1fr);
	}

	dl#moji_size dt,
	dl#haikei_color dt {
		text-align: left;
		grid-area: 1 / 1 / 2 / 4;
	}
	dl#moji_size dt{
		grid-area: 1 / 1 / 2 / 3;
	}

	dl#moji_size dd,
	dl#haikei_color dd {
		display: block;
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
	}

	#btn_search_pc {
		display: none;
	}

	/* 検索（展開） */
	.header_search {
		display: none;
		position: fixed;
		left: 0px;
		bottom: var(--sp-menu-height);
		z-index: 998;
		width: 100%;
		max-height: calc(100vh - var(--sp-menu-height));
		background: #f6f6f6;
		-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_search_open .header_search {
		display: block;
	}

	#btn_search_close {
		display: none;
	}

	dialog#dlg_search:not([open]){
		display: none;
	}

	#dlg_search[open] {
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: calc(100vh - var(--sp-menu-height));
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		overflow: auto;
		/* background: #f5f5ff; */
		padding: 30px 30px;
		border: none;
	}

	:is(dialog#dlg_search, .tpl_top_index #search) .search_wrap {
		display: block;
		width: auto;
		height: auto;
	}

	:is(dialog#dlg_search, .tpl_top_index #search) :is(#top_search_keyword, #top_search_page_id, #search_trend_word) {
		margin: 30px 0px;
	}

	:is(dialog#dlg_search, .tpl_top_index #search) .search_wrap h2 {
		margin: 0px 0px 30px;
	}

	:is(dialog#dlg_search, .tpl_top_index #search) .search_wrap h3 {
		margin-bottom: 10px;
	}

	:is(dialog#dlg_search, .tpl_top_index #search) .search_freq ul a:-webkit-any-link {
		font-size: 1.3rem;
		padding-bottom: 20px;
	}

	:is(dialog#dlg_search, .tpl_top_index #search) .search_freq ul a:-moz-any-link {
		font-size: 1.3rem;
		padding-bottom: 20px;
	}

	:is(dialog#dlg_search, .tpl_top_index #search) .search_freq ul a:any-link {
		font-size: 1.3rem;
		padding-bottom: 20px;
	}

	.search_box_link ul {
		display: block;
	}


	:is(dialog#dlg_search, .tpl_top_index #search) .search_freq ul a:-webkit-any-link {
		grid-template-rows: 70px 1fr;
		padding-inline: 5px;
		-webkit-box-align: start;
		align-items: start;
	}


	:is(dialog#dlg_search, .tpl_top_index #search) .search_freq ul a:-moz-any-link {
		grid-template-rows: 70px 1fr;
		padding-inline: 5px;
		align-items: start;
	}


	:is(dialog#dlg_search, .tpl_top_index #search) .search_freq ul a:any-link {
		grid-template-rows: 70px 1fr;
		padding-inline: 5px;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: start;
	}


	/* キーワード検索 */
	form#cse-search-box{
		display: block;
	}

	#cse-search-box .search_ipt {
		width: auto;
		height: 60px;
	}
	#submit{
		width: 9rem;
	}

	#tmp_query,
	#tmp_query2 {
		height: 100%;
	}

	#cse_filetype {
		margin-top: 20px;
	}
	#cse-search-box .search_ttl, #open_page_id_box .search_ttl{
		margin: 0px;
		text-align: left;
		margin: 0px 0px 10px;
	}
	:is(#cse-search-box .search_ttl , #open_page_id_box .search_ttl) br{
		display: none;
	}

	/* ページID検索 */
	#open_page_id_box{
		display: block;
		height: auto;
	}
	#top_search_page_id {
		margin: 20px 0px 0px;
	}

	#open_page_id_box .search_ipt {
		width: auto;
		height: 6rem;
		grid-template-columns: 1fr 9rem;
	}
	#open_page_id_submit{
		width: 9rem;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
	#open_page_id{
		height: 100%;
		width: auto;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		padding: 10px;
	}

	.search_ipt_wrap {
		display: block;
	}

	.search_ipt_wrap p {
		margin-top: 20px;
		text-align: right;
	}

	.search_ipt_wrap p a:-webkit-any-link {
		-webkit-box-pack: end;
		justify-content: flex-end;
	}

	.search_ipt_wrap p a:-moz-any-link {
		justify-content: flex-end;
	}

	.search_ipt_wrap p a:any-link {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}

	/* グローバルナビ */
	#top_search {
		display: none;
		position: fixed;
		left: 0px;
		bottom: var(--sp-menu-height);
		z-index: 998;
		width: 100%;
		max-height: calc(100vh - var(--sp-menu-height));
		/* background: #f5f5ff; */
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		margin: 0px;
		padding: 50px 20px;
		overflow-y: auto;
		-ms-scroll-chaining: none;
		overscroll-behavior: none;
	}
	#top_search nav{
		width: auto;
		padding: 40px 0px;
	}

	.spm_menu_open #top_search {
		display: block;
		padding: 0px 20px;
		bottom: auto;
		top: 0;
		height: calc(100vh - 50px);
		height: calc(100dvh - 50px);
		display: block;
		z-index: 100;
		overflow: hidden;
		background: #fee8ee;
		box-sizing: border-box;
	}

	#top_search .gnav ul,.gnav ul {
		width: auto;
		display: block;
		padding: 0px;
	}
	#top_search :is(.gnav ul li,.gnav ul li:first-child) {
		display: block;
		border: none;
		border-bottom: 1px dashed #f587ab;
	}
	#top_search .gnav ul li:first-child{
		border-top: 1px dashed #f587ab;
	}

	#top_search :is( .gnav ul a:-webkit-any-link,.gnav ul li:first-child a:-webkit-any-link){
		border: none;
		display: grid;
		grid-template-columns: 80px 1fr;
		grid-template-rows: auto;
		text-align: left;
		-webkit-box-pack: start;
		justify-content: start;
		gap: 10px;
		min-height: 60px;
		font-weight: bold;
	}

	#top_search :is( .gnav ul a:-moz-any-link,.gnav ul li:first-child a:-moz-any-link){
		border: none;
		display: grid;
		grid-template-columns: 80px 1fr;
		grid-template-rows: auto;
		text-align: left;
		justify-content: start;
		gap: 10px;
		min-height: 60px;
		font-weight: bold;
	}

	#top_search :is( .gnav ul a:any-link,.gnav ul li:first-child a:any-link){
		border: none;
		display: grid;
		grid-template-columns: 80px 1fr;
		grid-template-rows: auto;
		text-align: left;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: start;
		gap: 10px;
		min-height: 60px;
		font-weight: bold;
	}
	#top_search .gnav ul a span{
		-ms-flex-item-align: center;
		align-self: center;
		justify-self: start;
		/* margin: 0; */
	}
	#top_search .gnav ul a span.nav_text{
		margin-inline: 0;
	}
	#top_search .gnav ul a span br{
		display: none;
	}

	#top_search .gnav ul li a {
		padding: 10px 10px;
	}


	/* ===== フッタ ===== */

	/* フッタ */
	#footer {
		position: relative;
		z-index: 200;
	}

	#author_info_box {
		width: auto;
		margin: 0px;
		padding: 40px 20px 160px;
		display: block;
	}

	#author_box {
		/* display: block; */
		margin: 0px 0px 20px;
	}

	.author_detail {
		margin: 20px 0px;
	}

	.ft_link_sns {
		margin: 20px 0px;
	}

	.ft_link_sns ul {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.ft_link_contact {
		margin: 20px 0px;
	}

	.ft_link_contact ul {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.footer_navi ul li {
		margin-block: 5px;
	}

	/* ページトップ（フローティング表示） */
	#footer_link_pagetop {
		width: 40px;
	}

	#footer_link_pagetop.fixed {
		bottom: 70px;
	}

	/* 戻る・ページトップ */
	#back_or_pagetop {
		width: auto;
		margin: 0px;
	}

	/* 回遊ボタン（表示位置） */
	#kaiyu_banner {
		bottom: 70px;
	}

	/* 文字サイズ変更 */
	.font_size_changed #he_left {
		display: grid;
		grid-template-columns: auto;
		grid-template-rows: auto auto;
		gap: 10px;
	}

	.font_size_changed #spm_header_support button:where(#spm_support, #spm_yomiage) {
		width: 100%;
		grid-template-rows: auto 1fr;
		gap: 10px;
	}

	.font_size_changed :is(#cse-search-box, #cse-search-box2) .search_ipt {
		display: grid;
		min-width: 0;
		grid-template-columns: auto;
		grid-template-rows: auto auto;
	}

	.font_size_changed #tmp_query,
	#tmp_query2 {
		height: 3em;
	}

	.font_size_changed #open_page_id_box .search_ipt {
		display: grid;
		grid-template-columns: auto;
		grid-template-rows: auto auto;
	}

	.font_size_changed #open_page_id_submit {
		height: auto;
	}

	.font_size_changed #open_page_id {
		height: 3em;
	}



	/* ===== 1 基本設定 ===== */

	/* フォント */
	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;
	}

	/* ===== 2 ヘッダ / フッタ ===== */

	/* 「 sp-parts-header-footer 」 参照 */

	/* ===== 3 パンくず / 足あと ===== */

	/* パンくず・足あと */
	#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;
	}

	/* ===== 4 メイン ===== */

	/* メイン */
	#mymainback {
		margin: var(--mymainback-margin-top, 15px) var(--mymainback-margin-side, 15px) var(--mymainback-margin-bottom, 40px);
	}

	/* 見出し */
	#main_header h1 {
		margin: 0px;
		padding: 17px 20px;
		font-size: 2.4rem;
		background-size: auto 50px,auto auto;
		border-radius: 10px;
	}

	#main_body h2 {
		padding: 15px 20px;
		font-size: 2rem;
		border-radius: 10px;
	}

	#main_body h2 label[for*="acc_ttl_label"],
	#main_body h2.acc_title.accordion .accordion_icon {
		margin: -15px -20px;
		/* h2 の padding の値をマイナスにして指定する */
		padding: 15px 20px;
		/* h2 の padding と同じ値を指定する */
		padding-right: 40px;
		background-position: right 20px top 50%;
	}

	#main_body h2.acc_title.acc_open,
	#main_body h2.acc_title.accordion.acc_open {
		margin-bottom: 0.5em;
	}

	#main_body h3,
	.kakuka_info_ttl,
	.life_cat_list_ttl {
		padding: 11px 20px;
		font-size: 1.9rem;
		border-radius: 10px;
	}

	#main_body h3 label[for*="acc_ttl_label"],
	#main_body h3.acc_title.accordion .accordion_icon,
	.life_cat_list_ttl label[for*="acc_ttl_label"],
	.life_cat_list_ttl.acc_title.accordion .accordion_icon {
		margin: -11px -20px;
		/* h3 の padding の値をマイナスにして指定する */
		padding: 11px 20px;
		/* h3 の padding と同じ値を指定する */
		padding-right: 40px;
		background-position: right 20px top 50%;
	}

	#main_body h3.acc_title.acc_open,
	#main_body h3.acc_title.accordion.acc_open {
		margin-bottom: 0.5em;
	}

	#main_body h4 {
		padding: 7px 20px;
		font-size: 1.8rem;
		border-radius: 10px;
	}

	#main_body h5 {
		padding: 5px 20px;
		font-size: 1.7rem;
	}

	#main_body h6 {
		padding: 3px 20px;
		font-size: 1.6rem;
	}
	#main_body h6::before{
		top: calc(3px + 0.5em);
		left: 5px;
	}

	/* コンテンツヘッダ */
	#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.8rem;
		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.8rem;
		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;
	}

	/* ===== 5 サイド ===== */

	/* サイドバー */
	#sidebar1,
	#sidebar2 {
		margin-top: var(--content-margin-wide, 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;
	}

	#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: url(/img/sp/arrow_r.png) no-repeat right center transparent;
		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 var(--list-bordercolor, #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;
	}

	/* 「見つからないときは」「よくある質問」バナー */
	#main .common_banner_link {
		margin-top: var(--content-margin-normal, 30px);
	}

	/* サイドメニュー */
	.side_box_ttl h2 {
		font-size: 1.8rem;
	}

	.side_box_list ul {
		margin: 0px;
		padding: 20px;
		list-style: none;
	}

	.side_box_list ul li {
		margin: 0px;
		padding: 15px 0px;
		border-bottom: 1px solid var(--list-bordercolor, #cccccc);
	}

	.side_box_list ul li ul {
		padding: 10px 0px 0px 10px;
	}

	.side_box_list ul li ul li {
		margin-bottom: 0px;
		padding: 10px 0px;
	}

	.side_box_list ul li ul li:last-child {
		border-bottom: none;
	}

	.side_box_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;
	}

	/* 関連情報 */
	#kanren_info h2 {
		font-size: 1.8rem;
	}

	#kanren_info .kanren_box ul {
		margin: 0px;
		padding: 0px;
		list-style: none;
	}

	#kanren_info .kanren_box ul li {
		margin: 0px;
		padding: 15px 0px;
		border-bottom: 1px solid var(--list-bordercolor, #cccccc);
	}

	#kanren_info .kanren_box 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_info div.link_ichiran {
		margin: 0px;
		padding: 20px 10px 10px;
	}

	/* ===== 6 リスト ===== */

	/* リスト（横並び） */
	.navigation,
	.navigation ul {
		display: block;
	}

	.navigation ul li,
	.navigation ul li:last-child,
	.navigation>div,
	.navigation>div:last-child {
		display: block;
		margin: 0px;
		padding: 15px 20px;
		border: none;
		border-bottom: 1px solid var(--list-bordercolor, #cccccc);
		line-height: var(--lineheight-main, 1.5);
	}

	.navigation ul li a,
	.navigation>div 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;
	}

	#main_body h2+.navigation {
		margin-top: -0.75em;
	}

	#main_body h3+.navigation {
		margin-top: -0.5em;
	}

	#main_body h4+.navigation {
		margin-top: -0.25em;
	}

	/* リスト（一覧） */
	.info_list ul li {
		margin: 0px;
		padding: 15px 20px;
		border-bottom: 1px solid var(--list-bordercolor, #cccccc);
	}

	.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;
	}

	#main_body h2+.info_list {
		margin-top: -0.75em;
	}

	#main_body h3+.info_list {
		margin-top: -0.5em;
	}

	#main_body h4+.info_list {
		margin-top: -0.25em;
	}

	/* リスト（日付） */
	.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;
		}
	}

	/* リスト（一覧リンク） */
	div.link_ichiran {
		margin: 0px;
		padding: 30px 10px;
		text-align: center;
	}

	div.link_ichiran a {
		/* display: block; */
		padding: 10px;
	}

	#main div.link_ichiran a {
		min-width: auto;
	}

	/* ===== 7 新着情報 ===== */

	/* 新着情報 */
	.section_information {
		padding: 0px;
	}

	.section_information h2 {
		margin: 0px;
		padding: 15px 20px;
		font-size: 2rem;
	}

	.section_information h2 label[for*="acc_ttl_label"],
	.section_information h2.acc_title.accordion .accordion_icon {
		margin: -15px -20px;
		/* h2 の padding の値をマイナスにして指定する */
		padding: 15px 20px;
		/* h2 の padding と同じ値を指定する */
		padding-right: 40px;
		background-position: right 20px top 50%;
	}

	.section_information p.no_data {
		padding: 20px;
	}

	.section_information_list ul {
		padding: 0px 20px 20px;
	}

	.section_information_list ul li {
		display: block;
		width: auto;
		margin: 0px;
		padding: 15px 0px;
		border-bottom: 1px solid var(--list-bordercolor, #cccccc);
	}

	.section_information_list ul li>span {
		display: block;
	}

	.section_information_list ul li>span.article_date {
		width: auto;
		padding-top: 0px;
	}

	.section_information_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;
	}

	.section_information_list ul li:has(img.icon_new) {
		position: relative;
	}

	.section_information_list ul li:has(img.icon_new)>span.article_date {
		padding-left: 45px;
	}

	.section_information_list ul li:has(img.icon_new) img.icon_new {
		margin: 0px;
		position: absolute;
		top: 17px;
		left: 0px;
	}

	/* 新着情報（一覧 / RSS） */
	.section_information_list div.link_box {
		padding: 0px 20px 30px;
		gap: 10px;
	}

	.section_information_list div.link_box span {
		width: auto;
		max-width: none;
		/* min-width: calc(50% - 5px); */
	}

	.section_information_list div.link_box span a {
		font-size: var(--fontsize-main-small, 1.3rem);
	}

	/* 新着情報（サムネイル） */
	.section_information_thum {
		margin: 0px 20px;
		padding: 15px 0px;
		border-bottom: 1px solid var(--list-bordercolor, #cccccc);
		width: calc(100% - 40px);
	}

	.section_information_thum>div.lettering2 {
		width: 120px;
	}

	@media screen and (max-width: 370px) {
		.section_information_thum>div.lettering2 {
			width: 100px;
		}
	}

	/* 新着情報2 */
	.section_information2 {
		margin: 20px 20px;
	}

	.section_information2 h2 {
		font-size: 1.8rem;
	}

	.section_information2 h2.acc_title.acc_open {
		margin-bottom: 0.5em;
	}

	.section_information2 h2 label[for*="acc_ttl_label"],
	.section_information2 h2.acc_title.accordion .accordion_icon {
		background-position: right 0px top 50%;
		padding-right: 20px;
	}

	.section_information2 .info_list ul li {
		padding-left: 0px;
		padding-right: 0px;
	}

	/* ===== 9 バナー ===== */

	/* バナー広告 */
	#footer_banner {
		width: auto;
		margin: 0px var(--mymainback-margin-side, 15px) var(--mymainback-margin-bottom, 40px);
	}

	#footer_banner ul.banner_list {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		gap: 10px;
	}

	#footer_banner ul.banner_list li {
		width: calc(50% - 5px);
		max-width: 200px;
	}

	.banner_text span:nth-child(2n) {
		font-size: var(--fontsize-main-small, 1.3rem);
	}


}


/********** 1 共通 **********/

/* 記事本文の行間 */
#main_body .detail_free :where(p, ul, ol),
#main_body .detail_writing {
	line-height: var(--lineheight-detail, 1.75);
}

/* カスタム登録 */
#main_body div[class*="detail_"] {
	clear: both;
	display: flow-root;
	width: 100%;
	margin: 0px 0px var(--content-margin-narrow, 30px);
	padding: 0px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

#main_body div.detail_table_center {}

#main_body div.detail_writing {}

#main_body div.detail_map {}

#main_body div.detail_movie {}

#main_body div.detail_free {}

#main_body div.detail_image_normal {}

#main_body div.detail_image_left {
	text-align: left;
}

#main_body div.detail_image_center {
	text-align: center;
}

#main_body div.detail_image_right {
	text-align: right;
}

hr[class*="hr_"] {
	clear: both;
	height: 1px;
	border: none;
	margin: 1em 0px;
}

hr.hr_1 {
	border-top: 2px dotted #999999;
}

hr.hr_2 {
	border-top: 1px solid #333333;
}

hr.hr_3 {
	border-top: 1px solid #ff0000;
}

/* リンク */
.detail_link,
.link_l {
	margin: 1em 0px;
}

/* 外部リンク */
.detail_free .external_link_text,
.link_l .external_link_text {
	display: inline;
}

/* 添付ファイル */
.detail_file {
	margin: 1em 0px;
}

div[class^="detail_"] a[href*="/uploaded/attachment/"]::before,
div[class^="file_"] a[href*="/uploaded/attachment/"]::before,
div[class^="detail_"] a[href*="/uploaded/life/"]::before,
div[class^="file_"] a[href*="/uploaded/life/"]::before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 20px;
	height: 20px;
	background: url(/img/common/file/icon_etc.png) no-repeat center center;
	background-size: contain;
	margin-right: 10px;
}

div[class^="detail_"] a[href$=".pdf"]::before,
div[class^="detail_"] a[href$=".PDF"]::before,
div[class^="file_"] a[href$=".pdf"]::before,
div[class^="file_"] a[href$=".PDF"]::before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 20px;
	height: 20px;
	background: url(/img/common/file/icon_pdf.png) no-repeat center center;
	background-size: contain;
	margin-right: 10px;
}

div[class^="detail_"] a[href$=".xls"]::before,
div[class^="detail_"] a[href$=".XLS"]::before,
div[class^="file_"] a[href$=".xls"]::before,
div[class^="file_"] a[href$=".XLS"]::before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 20px;
	height: 20px;
	background: url(/img/common/file/icon_xls.png) no-repeat center center;
	background-size: contain;
	margin-right: 10px;
}

div[class^="detail_"] a[href$=".xlsx"]::before,
div[class^="detail_"] a[href$=".XLSX"]::before,
div[class^="file_"] a[href$=".xlsx"]::before,
div[class^="file_"] a[href$=".XLSX"]::before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 20px;
	height: 20px;
	background: url(/img/common/file/icon_xlsx.png) no-repeat center center;
	background-size: contain;
	margin-right: 10px;
}

div[class^="detail_"] a[href$=".doc"]::before,
div[class^="detail_"] a[href$=".DOC"]::before,
div[class^="file_"] a[href$=".doc"]::before,
div[class^="file_"] a[href$=".DOC"]::before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 20px;
	height: 20px;
	background: url(/img/common/file/icon_doc.png) no-repeat center center;
	background-size: contain;
	margin-right: 10px;
}

div[class^="detail_"] a[href$=".docx"]::before,
div[class^="detail_"] a[href$=".DOCX"]::before,
div[class^="file_"] a[href$=".docx"]::before,
div[class^="file_"] a[href$=".DOCX"]::before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 20px;
	height: 20px;
	background: url(/img/common/file/icon_docx.png) no-repeat center center;
	background-size: contain;
	margin-right: 10px;
}

.file_pdf,
.file_pdf2,
.file_excel,
.file_word,
.file_etc {
	margin: 1em 0px;
}

/* 移行時に紛れ込んだ見出しの中のspace.gifを消す */
#main_body div[class*="detail_"] img[src*="space.gif"] {
	display: none !important;
}

/* 画像 */
.detail_img_left {
	text-align: left;
}

.detail_img_center {
	text-align: center;
}

.detail_img_right {
	text-align: right;
}

/* 画像サイズ */
/*
#main_body div[class*="detail"] img {
	max-width: 100%;
	height: auto !important;
	vertical-align: top;
}
*/

/* iframeレスポンシブ対応 */
#main_body iframe {
	max-width: 100%;
}

/* ※javascriptでiframeに対してwidthとheightの値をaspect-ratioとして適用している */
/* ※aspect-ratioを有効にする場合はheight: auto;を指定する（影響範囲に注意） */
/*
#main_body iframe {
	height: auto;
}
*/

/* preタグ */
div[class*="detail_"] pre {
	white-space: pre-wrap;
	word-break: break-word;
	font-family: monospace, sans-serif;
}

/* アンカーリンク */
div[class*="detail_"] a:not([href]) {
	display: inline-block;
	text-decoration: none !important;
	max-width: 100%;
}

div[class*="detail_"] a:not([href]):empty {
	display: block;
}

div[class*="detail_"] a:not([href]):hover {
	color: inherit;
}

/* ワープロライクのフロート対応 */
#main_body div[class*="detail_"] hr.cf {
	border: none;
	margin: 0px;
}

#main_body div[class*="detail_"] hr.cf:first-child+h2,
#main_body div[class*="detail_"] span[id^="sp_headline"]:first-child+hr.cf+h2 {
	margin-top: 0px;
}

/* プレビュー編集モード調整用 */
.preview_body .detail_free ul,
.preview_body .detail_free ol {
	margin: 1em 0px !important;
	padding-left: 40px;
}

.status_bar div {
	font-size: 2rem !important;
}

.sticky #keep_page,
.sticky #osusume_banner {
	display: none;
}

/********** 2 定型登録 **********/

/* 共通 */
#main_body div.detail_teikei img {
	max-width: 100%;
	height: auto !important;
	vertical-align: top;
}

#main_body div.detail_teikei_column {
	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: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

#main_body div.detail_teikei_column div.box_left,
#main_body div.detail_teikei_column div.box_right {
	width: calc(50% - 20px);
}

/* パターン1 */

/* パターン2 */

/* パターン3 */


/* ==================================================
スマートフォン
================================================== */
@media (max-width: 1100px) {

	/********** 1 共通 **********/

	/* 画像サイズ */
	#main_body div[class*="detail"] img {
		max-width: 100%;
		height: auto !important;
		vertical-align: top;
	}

	/********** 2 定型登録 **********/

	/* 共通 */
	#main_body div.detail_teikei_column {
		display: block;
	}

	#main_body div.detail_teikei_column div.box_left,
	#main_body div.detail_teikei_column div.box_right {
		width: 100%;
	}

}

/* ==================================================
スマートフォン ここまで
================================================== */


/* メニューへのリンク（スマートフォン用） */
.link_to_subsitemenu {
	display: none;
}

/* サブサイト共通ヘッダ */
#mainimg {
	width: var(--content-width, 1100px);
	margin: var(--mymainback-margin-top, 30px) 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;
	border: 1px solid var(--base-col);
}

/* サブサイト共通フッタ */
#site_footer {
	clear: both;
	float: none;
	width: var(--content-width, 1100px);
	margin: 0px auto var(--mymainback-margin-bottom, 60px);
	border: none;
	border-radius: 20px;
	background: #fdf9d5;
	color: #333333;
}

#site_footer_box {
	padding: 30px;
}

#site_footer_box p {
	margin: 0px 0px 1em;
}

#site_footer_box p:last-child {
	margin-bottom: 0px;
}

#site_footer_box img {
	max-width: 100%;
	height: auto !important;
	vertical-align: top;
}

/* サブサイト大小メニュー */
.subsite_menu {
	/* background: #f6f6f6; */
	margin: 0px 0px 20px;
}

.subsite_menu:last-child {
	margin-bottom: 0px;
}

.subsite_menu_ttl {
	background: var(--base-sidebar-ttl-bg);
	margin: 0px;
	padding: 18px 20px;
	font-size: 1.6rem;
	text-align: center;
	/* border-bottom: 1px solid  var(--base-col); */
}

.subsite_menu_ttl a {
	color: inherit;
}

.subsite_menu_list ul {
	margin: 0px;
	padding: 20px 20px 20px 40px;
}

.subsite_menu_list ul li {
	margin: 0px 0px 15px;
}

.subsite_menu_list ul li:last-child {
	margin-bottom: 0px;
}

.subsite_menu_list div.link_ichiran {
	margin: 0px;
	padding: 0px 35px 25px;
	text-align: center;
}

.subsite_menu_list div.link_ichiran a {
	/* display: 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: 1101px) {
	.subsite_menu summary {
		display: block;
		list-style-type: none;
		pointer-events: none;
		cursor: auto;
	}

	.subsite_menu summary::-webkit-details-marker {
		display: none;
	}

	.subsite_menu summary a {
		pointer-events: auto;
	}
}

/* サブサイト大小メニュー（開閉）（PCは開閉しない） ここまで */


/* ==================================================
スマートフォン
================================================== */
@media (max-width: 1100px) {

	/* メニューへのリンク */
	.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;
	}

	/* サブサイト共通ヘッダ */
	#mainimg {
		width: auto;
		margin: var(--mymainback-margin-top, 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;
	}

	/* サブサイト共通フッタ */
	#site_footer {
		width: auto;
		margin: 0px var(--mymainback-margin-side, 15px) var(--mymainback-margin-bottom, 40px);
	}

	#site_footer_box {
		padding: 20px;
	}

	/* サブサイト大小メニュー */
	.subsite_menu {
		margin-bottom: 10px;
	}

	.subsite_menu_ttl {
		font-size: 1.6rem;
		text-align: left;
	}

	.subsite_menu_list ul {
		margin: 0px;
		padding: 20px 20px 10px;
		list-style: none;
	}

	.subsite_menu_list ul li {
		margin: 0px;
		padding: 15px 0px;
		border-bottom: 1px solid var(--list-bordercolor, #cccccc);
	}

	.subsite_menu_list div.link_ichiran {
		margin: 0px;
		padding: 0px 20px 20px;
	}

	/* サブサイト大小メニュー（開閉） */
	.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 -20px;
		/* .subsite_menu_ttl の padding の値をマイナスにして指定する */
		padding: 18px 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;
	}

	.subsite_menu details[open] summary .tti_icon {
		background-image: url(/img/sp/acc_close.png);
	}

	.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);
	}

}

/* ==================================================
スマートフォン ここまで
================================================== */

/* 色変更 */
.color_change #header #he_left #logo{
	background-color: transparent !important;
}

/* 色変更ここまで */

.font_size_changed #header2_box{
	grid-template-columns: 1fr;
	grid-template-rows: auto auto;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	gap: 20px;
}
.font_size_changed #he_left #logo :is(a, h1){
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

/* 印刷対応 */
.view_print_mode :is(#recommend_tag, #ai_recommend_tag,#kanren_link,#banner_kanren) {
	display: none !important;
}
/* 印刷対応ここまで */

/* 音声読み上げ・やさしい日本語 */
#container.easy_active a.h_easy_on {
	display: none;
}
#container:not(.easy_active) a.h_easy_off {
	display: none;
}

/* 音声読み上げ・やさしい日本語ここまで */