@charset "utf-8";


/* 記事本文 */
@import url("/ssi/css/detail.css");
/* ==================================================
PC
================================================== */
/* var() 関数 */
:root {
	/* コンテンツ幅 */
	--content-width: 1080px;
	/* sidebar1の幅 */
	--sidebar1-width: 300px;
	/* sidebar2の幅 */
	--sidebar2-width: 300px;
	/* フォントサイズ / 行間 / 文字間 */
	--fontsize-main-base: 62.5%;
	--fontsize-main: 1.6rem;
	--lineheight-main: 1.5;
	--letterspacing-main: 0;
	/* 一段階小さいフォントサイズ（一覧をみるボタンなど） */
	--fontsize-main-small: 1.5rem;
	/* 本文（ #main ） */
	--fontsize-detail: 1.8rem;
	--lineheight-detail: 1.75;
	--letterspacing-detail: .05em;
	/* 本文の一段階小さいフォントサイズ（日付など） */
	--fontsize-detail-small: 1.6rem;
	/* 見出し */
	--lineheight-detail-midashi: 1.5;
	--letterspacing-detail-midashi: .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;
	--site-color-text: #333;
	--site-color-light: #faf4ea;
	--site-color-primary: #ff4a3d;
	--site-color-secondary: #ffdc00;
	--site-color-tertiary: #f37f96;
	--detail-color-primary: #f6bab2;
	--detail-color-secondary: #f2df90;
	--detail-color-tertiary: #f6b57f;
}

/* var() 関数 ここまで */
/* ========== レイアウト ========== */
/* 全体 */
*, *::before, *::after {
	box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
}

html {
	font-size: 62.5%;
	font-size: var(--fontsize-main-base, 62.5%);
	scroll-behavior: smooth;
}

body {
	background-color: #faf4ea;
	background-color: var(--site-color-light);
	border: 0;
	color: #333;
	color: var(--site-color-text);
}

#container {
	width: 100%;
	min-width: 1080px;
	min-width: var(--content-width, 1080px);
}

img {
	display: inline-block;
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

/* ヘッダ */
#header {
	position: relative;
	width: 100%;
	padding: 20px;
}

/* フッタ */
#footer {
	width: 100%;
}

/* メイン */
#mymainback_bg {
	width: 1080px;
	width: var(--content-width, 1080px);
	margin: 0 auto;
}

#mymainback {
	display: -webkit-flex;
	display:         flex;
	-webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-justify-content: space-between;
	        justify-content: space-between;
	-webkit-align-items: stretch;
	        align-items: stretch;
	width: 100%;
}

#main {
	float: none;
	-webkit-order: 11;
	        order: 11;
	width: 100%;
	margin: 0;
	padding: 0;
}

#main_a {
	margin: 0;
	padding: 0;
}

#main_body {
	margin: 0;
	padding: 0;
}

/* サイド */
#sidebar1 {
	float: none;
	-webkit-order: 10;
	        order: 10;
	width: 300px;
	width: var(--sidebar1-width, 300px);
	margin: 0;
	padding: 0;
}

#sidebar2 {
	float: none;
	-webkit-order: 12;
	        order: 12;
	width: 300px;
	width: var(--sidebar2-width, 300px);
	margin: 0;
	padding: 0;
}

.tpl_side1 #main {
	width: calc(97% - 300px);
	width: calc(97% - var(--sidebar1-width, 300px));
	background-color: #fff;
	border-radius: 20px;
	padding: 25px;
}

.tpl_side1 #main_a {
	margin: 0;
	padding: 0;
}

.tpl_side2 #main {
	width: calc(100% - 300px);
	width: calc(100% - var(--sidebar2-width, 300px));
}

.tpl_side2 #main_a {
	padding-right: 40px;
}

.tpl_side1.tpl_side2 #main {
	width: calc(100% - 300px - 300px);
	width: calc(100% - var(--sidebar1-width, 300px) - var(--sidebar2-width, 300px));
}

.tpl_side1.tpl_side2 #main_a {
	padding-left: 40px;
	padding-right: 40px;
}

.tpl_side1 hr.hide, .tpl_side2 hr.hide {
	display: none;
}

/* ========== 基本設定 ========== */
/* フォント */
body, button, input[type=button], input[type=submit], input[type=text], textarea, select {
	font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Arial, "BIZ UDPGothic", Meiryo, メイリオ, Osaka, sans-serif;
	font-family: var(--fontfamily-normal, sans-serif);
	font-size: 1.6rem;
	font-size: var(--fontsize-main, 1.6rem);
	line-height: 1.5;
	line-height: var(--lineheight-main, 1.5);
	letter-spacing: 0;
	letter-spacing: var(--letterspacing-main, 0em);
	overflow-wrap: break-word;
}

#main {
	font-size: 1.8rem;
	font-size: var(--fontsize-detail, 1.8rem);
	line-height: 1.75;
	line-height: var(--lineheight-detail, 1.75);
	letter-spacing: .05em;
	letter-spacing: var(--letterspacing-detail, .05em);
}

h1, h2, h3, h4, h5, h6, strong, .subsite_menu_ttl, .site_name {
	font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Arial, "BIZ UDPGothic", Meiryo, メイリオ, Osaka, sans-serif;
	font-family: var(--fontfamily-bold, sans-serif);
	line-height: 1.5;
	line-height: var(--lineheight-detail-midashi, 1.5);
	letter-spacing: .1em;
	letter-spacing: var(--letterspacing-detail-midashi, .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: #333;
	color: var(--site-color-text);
}

/* リンク */
a:link {
	color: #0d59b7;
	text-decoration: underline;
}

a:visited {
	color: #609;
	text-decoration: underline;
}

a:active {
	color: #c00;
	text-decoration: none;
}

a:hover, a:focus {
	color: #000;
	text-decoration: none;
}

a img {
	border: none;
	transition: opacity .5s;
}

a:hover img, a:focus img {
	opacity: .75;
}

/* レスポンシブアコーディオン用 */
input[id*=acc_ttl_label] {
	display: none;
}

.acc_icon {
	display: none;
}

/* レスポンシブアコーディオン用（class付与） */
.acc_title.accordion {
	pointer-events: none;
}

.acc_title.accordion:focus {
	outline: none;
}

.acc_title.accordion a {
	pointer-events: auto;
}

/* ========== ヘッダ ========== */
/* スマートフォン用 */
#spm_wrap {
	display: none;
}

#btn_spm_support {
	display: none;
}

/* ヘッダ */
#header2 {
	position: relative;
	width: min(1080px, 100%);
	width: min(var(--content-width), 100%);
	margin: 0 auto;
}

#logo {
	width: 244px;
	height: auto;
	position: absolute;
	bottom: 20px;
	left: 50%;
	margin-left: -122px;
	z-index: 1;
}

#logo a {
	display: block;
}

#logo img {
	width: 100%;
	height: auto;
	vertical-align: top;
}

#header_tool {
	display: -webkit-flex;
	display:         flex;
	-webkit-justify-content: center;
	        justify-content: center;
	-webkit-align-items: center;
	        align-items: center;
	gap: 30px;
	width: 100%;
	margin-bottom: 20px;
}

/* ヘッダメニュー */
.header_nav ul {
	list-style: none;
	display: -webkit-flex;
	display:         flex;
	-webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-justify-content: center;
	        justify-content: center;
	-webkit-align-items: center;
	        align-items: center;
	gap: 30px;
}

.header_nav ul li[class^=h_] {
	display: inline-block;
	vertical-align: top;
	text-align: left;
}

/* アクセシビリティ機能 */
.h_support {
	position: relative;
}

#support_menu_box {
	display: -webkit-flex;
	display:         flex;
	-webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-align-items: center;
	        align-items: center;
	gap: 30px;
}

dl#moji_size, dl#haikei_color {
	display: -webkit-flex;
	display:         flex;
	-webkit-flex-wrap: nowrap;
	        flex-wrap: nowrap;
	-webkit-justify-content: center;
	        justify-content: center;
	-webkit-align-items: center;
	        align-items: center;
}

dl#moji_size dt, dl#haikei_color dt {
	display: inline-block;
	vertical-align: middle;
	min-width: 5em;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.8rem;
	margin: 0 4px 0 0;
	padding: 6px 0;
}

dl#moji_size dd, dl#haikei_color dd {
	display: inline-block;
	vertical-align: middle;
	margin: 0 0 0 4px;
	padding: 0;
}

dl#moji_size dd a, dl#haikei_color dd a {
	display: block;
	background: #fff;
	border: 1px solid currentColor;
	border-radius: 8px;
	color: #333;
	color: var(--site-color-text);
	font-size: 1.2rem;
	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: 1.4rem;
	font-weight: bold;
}

.font_size_limit_max dl#moji_size dd a#moji_large {
	background: #f6f6f6;
	color: #666;
}

dl#haikei_color dd a {
	border-radius: 40px;
}

dl#haikei_color dd a#haikei_white {
	border-color: currentColor;
	background: #fff !important;
	color: #333 !important;
	color: var(--site-color-text) !important;
}

dl#haikei_color dd a#haikei_black {
	border-color: #000;
	background: #000 !important;
	color: #fff !important;
}

dl#haikei_color dd a#haikei_blue {
	border-color: #00f;
	background: #00f !important;
	color: #ff0 !important;
}

/* 検索 */
.header_search {
	display: -webkit-flex;
	display:         flex;
	-webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-justify-content: flex-end;
	        justify-content: flex-end;
	-webkit-align-items: flex-start;
	        align-items: flex-start;
}

/* キーワード検索 */
#top_search_keyword {
	text-align: left;
}

#cse-search-box .search_ttl {
	display: block;
}

#cse-search-box .search_ipt {
	display: -webkit-flex;
	display:         flex;
	-webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-justify-content: center;
	        justify-content: center;
	-webkit-align-items: stretch;
	        align-items: stretch;
	width: 24rem;
	border: 1px solid;
	border-radius: 8px;
	box-sizing: border-box;
}

#tmp_query {
	display: inline-block;
	vertical-align: middle;
	box-sizing: border-box;
	width: calc(100% - 6rem) !important;
	height: 3rem !important;
	border: none !important;
	border-radius: 8px 0 0 8px;
}

#submit {
	display: inline-block;
	vertical-align: middle;
	box-sizing: border-box;
	min-width: 6rem;
	height: 3rem;
	border: none;
	border-radius: 0 8px 8px 0;
	background: #ffdc00;
	background: var(--site-color-secondary);
	color: #333;
	margin: 0;
	padding: 0;
	font-size: 1.6rem;
	line-height: 3rem;
	letter-spacing: .1em;
	white-space: nowrap;
}

#cse_filetype {
	margin-top: 5px;
	text-align: right;
}

#cse_filetype fieldset {
	border: none;
	margin: 0;
	padding: 0;
}

#cse_filetype fieldset legend {
	display: none;
	margin: 0;
	padding: 0;
}

#cse_filetype fieldset span {
	font-size: 1.4rem;
	display: inline-block;
	vertical-align: middle;
}

#cse_filetype fieldset span input {
	margin: 3px 4px 5px 5px;
	vertical-align: middle;
}

/* ページID検索 */
#top_search_page_id {
	text-align: left;
	margin-left: 20px;
}

#open_page_id_box .search_ttl {
	display: block;
}

#open_page_id_box .search_ipt {
	display: -webkit-flex;
	display:         flex;
	-webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-justify-content: center;
	        justify-content: center;
	-webkit-align-items: stretch;
	        align-items: stretch;
	width: 20rem;
	border: 1px solid;
	box-sizing: border-box;
}

#open_page_id {
	display: inline-block;
	vertical-align: middle;
	box-sizing: border-box;
	width: calc(100% - 6rem);
	height: 3.8rem;
	border: none;
}

#open_page_id_submit {
	display: inline-block;
	vertical-align: middle;
	box-sizing: border-box;
	min-width: 6rem;
	height: 3.8rem;
	border: none;
	background: #e6e6e6;
	color: #333;
	margin: 0;
	padding: 0;
	font-size: 1.6rem;
	line-height: 3.8rem;
	letter-spacing: .1em;
	white-space: nowrap;
}

#open_page_id_message {
	margin-top: 5px;
	text-align: right;
	font-size: 1.4rem;
}

#open_page_id_message:empty {
	display: none;
}

/* グローバルナビ */
#top_search {
	display: -webkit-flex;
	display:         flex;
	-webkit-justify-content: center;
	        justify-content: center;
	-webkit-align-items: center;
	        align-items: center;
	min-height: 87px;
}

.gnav ul {
	width: 100%;
	list-style: none;
	display: grid;
	grid-template-columns: 205px 335px 335px 205px;
}

.gnav ul li {
	display: -webkit-flex;
	display:         flex;
	-webkit-justify-content: center;
	        justify-content: center;
	-webkit-align-items: center;
	        align-items: center;
}

.gnav ul li:nth-child(2) {
	padding-right: 125px;
	border-left: 3px solid #ff4a3d;
	border-left: 3px solid var(--site-color-primary);
}

.gnav ul li:nth-child(3) {
	padding-left: 125px;
	border-right: 3px solid #ff4a3d;
	border-right: 3px solid var(--site-color-primary);
}

.gnav ul li a {
	background: transparent;
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 2.6rem;
	letter-spacing: .1em;
	text-align: center;
	padding: 10px 15px;
	transition: color .3s;
}

.gnav ul li a:link {
	color: #333;
}

.gnav ul li a:hover, .gnav ul li a:focus {
	color: #ff4a3d;
	color: var(--site-color-primary);
	text-decoration: none;
}

/* サブサイト共通ヘッダ */
#mainimg {
	width: 1080px;
	width: var(--content-width, 1080px);
	margin: 30px auto 0;
}

#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: 0;
	padding: 0 30px;
	box-sizing: border-box;
	font-size: 3.2rem;
	text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
	position: absolute;
	top: 30px;
	left: 0;
	z-index: 1;
}

#mainimg_box .site_name.noimage {
	position: static;
	padding: 30px;
	text-shadow: none;
	background: #f6f6f6;
	color: #333;
}

/* メニューへのリンク（スマートフォン用） */
.link_to_subsitemenu {
	display: none;
}

/* ========== フッタ ========== */
/* フッタ */
#author_info {
	padding: 40px 40px 100px;
	background: #fbd58c url("/img/kosodate/bg_footer.png") repeat-x left 0 bottom -3px;
	background-size: 717px auto;
}

#author_info_box {
	display: -webkit-flex;
	display:         flex;
	-webkit-justify-content: center;
	        justify-content: center;
	gap: 40px;
	width: 100%;
	margin: 0 auto;
}

.f_logo {
	width: 86px;
}
.f_logo img {
	width: 100%;
	height: auto;
}

/* フッタメニュー */
.footer_navi {
	padding: 20px 0;
}

.footer_navi ul {
	list-style: none;
	display: -webkit-flex;
	display:         flex;
	-webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-justify-content: flex-start;
	        justify-content: flex-start;
	-webkit-align-items: flex-start;
	        align-items: flex-start;
	gap: 20px;
}

.footer_navi a {
	display: block;
	position: relative;
	min-width: 200px;
	width: -webkit-fit-content;
	width:    -moz-fit-content;
	width:         fit-content;
	padding: 10px 42px 10px 20px;
	background-color: #f37f96;
	background-color: var(--site-color-tertiary);
	border: 1px solid;
	border-radius: 8px;
	color: #333;
	color: var(--site-color-text);
	font-size: 1.8rem;
	text-align: center;
	line-height: 1.25;
}
.footer_navi a:before {
	content: "";
	position: absolute;
	right: 10px;
	top: 50%;
	width: 22px;
	height: 22px;
	margin-top: -11px;
	background: url("/img/kosodate/icon_arrow.svg") no-repeat 0 0;
	background-size: 22px 22px;
}
.footer_navi a:link {
	text-decoration: none;
}
@media (any-hover: hover) {
	.footer_navi a:hover, .footer_navi a:focus {
		text-decoration: underline;
	}
}

/* 管理者情報 */
#author_box p {
	margin: 0 0 .5em;
}

#author_box p.f_author {
	font-size: 2.4rem;
	font-weight: bold;
}

#author_box p.f_number {
	font-size: 1.5rem;
	font-size: var(--fontsize-main-small, 1.5rem);
}

/* コピーライト */
#copyright {
	margin-top: 20px;
	text-align: center;
}

#copyright p {
	font-size: 1.2rem;
	letter-spacing: .1em;
}

/* ページトップボタン */
#btn_pagetop {
	display: block;
	width: 90px;
	position: fixed;
	right: 10px;
	bottom: -180px;
	z-index: 70;
	transition: bottom .5s ease-in-out;
	-webkit-filter: drop-shadow(0 0 5px rgba(0, 0, 0, .1));
	        filter: drop-shadow(0 0 5px rgba(0, 0, 0, .1));
}

#btn_pagetop.fixed {
	bottom: 10px;
}

#btn_pagetop a {
	display: block;
}

#btn_pagetop img {
	width: 100%;
	height: auto;
	vertical-align: top;
}

/* サブサイト共通フッタ */
#site_footer {
	width: 1080px;
	width: var(--content-width, 1080px);
	margin: 0 auto 60px;
	border: none;
	border-radius: 0;
	background: #f6f6f6;
	color: #333;
}

#site_footer_box {
	padding: 30px;
}

#site_footer_box p {
	margin: 0 0 1em;
}

#site_footer_box p:last-child {
	margin-bottom: 0;
}

#site_footer_box img {
	max-width: 100%;
	height: auto !important;
	vertical-align: top;
}

/* ========== パンくず / 足あと ========== */
/* パンくず・足あと */
#pankuzu_wrap {
	background: #fff;
	padding: 10px 20px;
	border-radius: 15px;
	font-size: 1.5rem;
	font-size: var(--fontsize-main-small, 1.5rem);
}

.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: #333;
	color: #fff;
	font-size: 1.2rem;
	line-height: 1.6rem;
	padding: .2rem 0;
	text-align: center;
	box-sizing: border-box;
	position: absolute;
	top: 1px;
	left: 0;
}

#clear_footstep {
	width: 24px;
	height: 24px;
	border-radius: 100%;
	border: 2px solid #fff;
	background: url("/img/common/icon_clear.png") no-repeat center center #333;
	background-size: 10px 10px;
	color: #fff;
}

/* ========== 見出し / 表 ========== */
/* 見出し */
#main_header {
	margin-bottom: 30px;
	margin-bottom: var(--content-margin-narrow, 30px);
}

#main_header h1 {
	padding: 26px 30px;
	background: #f8e4e4 url("/img/kosodate/bg_h1.png") no-repeat 100% 100%;
	background-size: contain;
	border-radius: 16px;
	font-size: 3.2rem;
	text-shadow: 2px 2px 0 #f8e4e4, -2px 2px 0 #f8e4e4, -2px -2px 0 #f8e4e4, 2px -2px 0 #f8e4e4;
}

#main_body :where(h2, h3, h4, h5, h6) {
	clear: both;
	margin: 1em 0;
}

#main_body h2 {
	padding: 21px 30px 20px;
	background: #faf4ea url("/img/kosodate/bg_h2.png") no-repeat 100% 100%;
	background: var(--site-color-light) url("/img/kosodate/bg_h2.png") no-repeat 100% 100%;
	background-size: contain;
	border-radius: 16px;
	font-size: 3.2rem;
	text-shadow: 2px 2px 0 #faf4ea, -2px 2px 0 #faf4ea, -2px -2px 0 #faf4ea, 2px -2px 0 #f8e4e4;
	text-shadow: 2px 2px 0 var(--site-color-light), -2px 2px 0 var(--site-color-light), -2px -2px 0 var(--site-color-light), 2px -2px 0 #f8e4e4;
	font-size: 2.6rem;
}

#main_body h3 {
	position: relative;
	padding: 17px 30px;
	border-left: 13px solid #f6b57f;
	border-left: 13px solid var(--detail-color-tertiary);
	font-size: 2.4rem;
}

#main_body h4 {
	position: relative;
	padding: 14px 30px 13px;
	border-bottom: 2px solid #f6b57f;
	border-bottom: 2px solid var(--detail-color-tertiary);
	font-size: 2.2rem;
}
#main_body h4:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 4px;
	width: 100%;
	height: 0;
	border-bottom: 2px solid #f6b57f;
	border-bottom: 2px solid var(--detail-color-tertiary);
}

#main_body h5 {
	padding: 10px 30px;
	border-bottom: 2px solid #f2df90;
	border-bottom: 2px solid var(--detail-color-secondary);
	font-size: 2rem;
}

#main_body h6 {
	display: -webkit-flex;
	display:         flex;
	padding: 7px 30px 6px 0;
	font-size: 1.8rem;
}
#main_body h6:before {
	-webkit-flex-shrink: 0;
	        flex-shrink: 0;
	content: "";
	display: block;
	width: 1em;
	height: 1em;
	margin: 7px 7px 0 0;
	background-color: #f6b57f;
	background-color: var(--detail-color-tertiary);
}

/* テーブル */
#main_body table {
	border-color: #333;
	border-color: var(--site-color-text);
	border-collapse: collapse;
	border-style: solid;
	border-width: 2px; /* CMSver5以降は管理画面で枠線の太さを変更することができない（機能が削除された）ためCSSで指定 */
	margin: 0 0 1em;
	max-width: 100%;
	box-sizing: border-box;
}

#main_body th {
	background: #f6f6f6;
	color: #333;
	color: var(--site-color-text);
	border-color: currentColor;
	border-collapse: collapse;
	border-style: solid;
	border-width: 1px;
	padding: .5em;
	box-sizing: border-box;
}

#main_body td {
	border-color: #333;
	border-color: var(--site-color-text);
	border-collapse: collapse;
	border-style: solid;
	border-width: 1px;
	padding: .5em;
	box-sizing: border-box;
}

/* テーブル内のpタグのマージンを0にする */
#main_body table p {
	margin: 0 0 1em;
}

#main_body table p:last-child {
	margin: 0;
}

/* ========== メイン ========== */
/* メイン */
#mymainback {
	padding-top: 30px;
	padding-bottom: 60px;
}

/* コンテンツヘッダ */
#content_header {
	margin: 0 0 20px;
	text-align: right;
	font-size: 1.5rem;
	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: 0 0 20px;
	text-align: left;
}

.d-flex.f-wrap-wrap > *, .sdgs-icons > * {
	display: inline-block;
	vertical-align: top;
	margin: 0 5px 5px 0;
	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: 0;
	width: 100%;
	height: auto;
}

/* カレンダー登録 */
#calendar_button_google, #calendar_button_yahoo {
	display: inline-block;
	vertical-align: top;
	margin: 40px 30px 0 0;
}

#calendar_button_google a, #calendar_button_yahoo a {
	display: inline-block;
	font-size: 1.5rem;
	font-size: var(--fontsize-main-small, 1.5rem);
	line-height: 2rem;
	padding: 5px 0 5px 35px;
	background: url("/img/common/icon_calendar.png") no-repeat left center transparent;
}

/* SNSボタン */
.sns_button_wrap {
	margin-top: 40px;
	line-height: 1;
}

.sns_button_wrap > div {
	display: inline-block;
	vertical-align: top;
}

/* PDF・WMPリンク */
.pdf_download, .wmplayer_download {
	clear: both;
	margin: 40px 0 0;
	width: 100%;
	display: table;
}

.pdf_download .pdf_img, .wmplayer_download .wmplayer_img {
	display: table-cell;
	vertical-align: middle;
	width: 158px;
	margin: 0;
	padding: 0;
}

.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: 0;
	padding: 2px 0 2px 10px;
	font-size: 1.3rem;
	line-height: 1.4;
	letter-spacing: 0;
}

/* 評価エリア */
#hyouka_area_box {
	clear: both;
	margin: 40px 0 0;
	padding: 30px;
	background: #f6f6f6;
	border-radius: 16px;
}

#hyouka_area_box h2, #main_body #hyouka_area_box h2 {
	margin: 0 0 15px;
	padding: 0;
	border: none;
	border-radius: 0;
	background: none;
	color: inherit;
	font-size: 2rem;
	text-shadow: none;
}

#main_body #hyouka_area_box h2::before, #main_body #hyouka_area_box h2::after {
	display: none;
}

#main_body #hyouka_area_box hr.cf {
	margin: 0;
}

#hyouka_area_box .hyouka_box_detail {
	border-bottom: 1px solid #ddd;
	margin-bottom: 15px;
	padding-bottom: 15px;
	font-size: 1.5rem;
	font-size: var(--fontsize-main-small, 1.5rem);
}

#hyouka_area_box .hyouka_box_detail:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

#hyouka_area_box .hyouka_box_detail fieldset {
	border: none;
	margin: 0;
	padding: 0;
}

#hyouka_area_box .hyouka_box_detail fieldset legend {
	margin: 0 0 5px;
	padding: 0;
	width: 100%;
}

#hyouka_area_box .hyouka_box_detail fieldset span {
	display: inline-block;
	vertical-align: top;
	margin: 0 4em 0 0;
}

#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: #fff;
	color: #333;
	margin: 0;
	padding: 10px;
	font-size: 1.5rem;
	font-size: var(--fontsize-main-small, 1.5rem);
	line-height: 1.8rem;
	text-decoration: none;
	text-align: center;
	width: 260px;
	max-width: 90%;
	box-sizing: border-box;
}

#hyouka_area_submit input:hover, #hyouka_area_submit input:focus {
	text-decoration: underline;
}

/* お問い合わせ先 */
#section_footer {
	clear: both;
	margin: 40px 0 0;
	padding: 30px;
	background: rgba(221, 241, 252, .4) url("/img/kosodate/bg_section.png") no-repeat right 20px top 20px;
	background-size: 294px auto;
	border-radius: 16px;
}

#section_footer h2, #main_body #section_footer h2 {
	margin: 0 0 15px;
	padding: 0;
	border: none;
	border-radius: 0;
	background: none;
	color: inherit;
	font-size: 2rem;
	text-shadow: none;
}

#main_body #section_footer h2::before, #main_body #section_footer h2::after {
	display: none;
}

#main_body #section_footer hr.cf {
	margin: 0;
}

#main_body div.detail_free ol,
#main_body div.detail_free ul{
	padding-inline-start: 40px;
}
#section_footer_detail span {
	display: inline-block;
	vertical-align: top;
	margin-right: 1em;
}

#section_footer_detail span[class*=sf_name] {
	margin-bottom: 10px;
}

/* おすすめコンテンツ */
#osusume_contents_area {
	clear: both;
}

#osusume_contents_area .second_osusume {
	margin: 40px 0 0;
	padding: 30px;
	background: #fff5d6;
    border-radius: 15px;
}

#osusume_contents_area .second_osusume h2, #osusume_contents_area .second_osusume_ttl {
	display: flex;
    gap: 10px;
    align-items: center;
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 16px;
}

#osusume_contents_area .second_osusume_ttl::before{
	background-image: url(/img/top/img_subttl_left.png);
}

#osusume_contents_area .second_osusume_ttl::after{
	background-image: url(/img/top/img_subttl_right.png);
}

#osusume_contents_area .second_osusume_ttl::before,
#osusume_contents_area .second_osusume_ttl::after{
	content: '';
    background-size: 100% auto;
    background-repeat: no-repeat;
    width: 26px;
    height: 36px;
    display: block;
}

#osusume_contents_area .second_osusume ul {
	margin: 0;
	padding: 0 10px;
	list-style: none;
	display: -webkit-flex;
	display:         flex;
	-webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-justify-content: flex-start;
	        justify-content: flex-start;
	-webkit-align-items: flex-start;
	        align-items: flex-start;
	gap: 30px;
}

#osusume_contents_area .second_osusume ul li {
	text-align: center;
    width: 30%;
}

#osusume_contents_area .second_osusume ul li a{
	font-size: 86%;
    font-feature-settings: "palt";
    color: #333;
}

#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;
	border-radius: 20px;
}

.icon_new {
	width: 79px;
	height: auto;
	margin-left: 10px;
}

/* ========== サイド ========== */
/* サイドバー */
#sidebar1 > div, #sidebar2 > div {
	margin-bottom: 20px;
}

#sidebar1 > div:last-child, #sidebar2 > div:last-child, #sidebar1 > div:empty, #sidebar2 > div:empty {
	margin-bottom: 0 !important;
}

#sidebar1 img, #sidebar2 img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

/* 自由編集項目 */
.free_box {
	display: flow-root;
}

.free_box p {
	margin: 0 0 1em;
}

.free_box p:last-child {
	margin-bottom: 0;
}

.free_box img {
	display: block;
	margin: 0 auto;
}

/* 重要なお知らせ */
#important_noticest_area .second_important {
	background: #ffcfcc;
	border-radius: 10px;
	padding: 30px 20px;
}

#important_noticest_area .second_important a {
	color: #333;
}

#important_noticest_area .second_important h2, #important_noticest_area .second_important_ttl {
	margin: 0 0 15px;
	padding: 0;
	font-size: 2rem;
	text-align: center;
}

#important_noticest_area .second_important_ttl {
	display: -webkit-flex;
	display:         flex;
	-webkit-justify-content: center;
	        justify-content: center;
	-webkit-align-items: center;
	        align-items: center;
	gap: 5px;
}

#important_noticest_area .second_important_ttl::before {
	content: "";
	background: url("/img/common/important_ttl_icon.png") no-repeat;
	background-size: 100% auto;
	width: 25px;
	height: 25px;
	display: inline-block;
}

#important_noticest_area .second_important ul {
	list-style: none;
}

#important_noticest_area .second_important ul li + li {
	margin-top: 1em;
}

#important_noticest_area .second_important ul li > span {
	display: block;
}

#important_noticest_area .second_important ul li > span.article_date {
	font-size: 1.5rem;
	font-size: var(--fontsize-main-small, 1.5rem);
}

#important_noticest_area .second_important .link_box {
	margin-top: 20px;
	text-align: right;
}

#important_noticest_area .second_important .link_box > span {
	display: block;
	margin-top: 5px;
}

#important_noticest_area .second_important .link_box > span a {
	font-size: 1.5rem;
	font-size: var(--fontsize-main-small, 1.5rem);
}

/* レコメンド・AIレコメンド */
#sidebar_recommend, #sidebar_ai_recommend {
	background: #fff;
	border-radius: 5px;
}

#recommend_title, #ai_recommend_title {
	background: #f2df90;
	background: var(--detail-color-secondary);
	border-radius: 5px 5px 0 0;
	text-align: center;
	padding: 10px 5px;
}

#recommend_title h2, #ai_recommend_title h2 {
	display: inline-block;
	text-align: left;
	font-size: 1.6rem;
	line-height: 2rem;
	margin: 0;
	padding: 5px 0 5px 40px;
}

#recommend_title h2 {
	background: url("/img/common/icon_recommend.png") no-repeat left center transparent;
	color: inherit;
}

#ai_recommend_title h2 {
	background: url("/img/common/icon_ai_recommend.png") no-repeat left center transparent;
	color: inherit;
}

#recommend_title h2 span, #ai_recommend_title h2 span {
	display: block;
}

#sidebar_recommend ul, #sidebar_ai_recommend ul {
	padding: 20px 20px 20px 40px;
}

#sidebar_recommend ul li, #sidebar_ai_recommend ul li {
	margin-bottom: 15px;
}
#sidebar_recommend ul li::marker, #sidebar_ai_recommend ul li::marker {
	color: #f2df90;
	color: var(--detail-color-secondary);
}
#sidebar_recommend ul li:last-child, #sidebar_ai_recommend ul li:last-child {
	margin-bottom: 0;
}

/* 関連リンク */
#kanren_link {
	background-color: #fff;
	border-radius: 5px;
}

#kanren_link h2 {
	background: #f6b57f;
	background: var(--detail-color-tertiary);
	border-radius: 5px 5px 0 0;
	padding: 15px 20px;
	font-size: 1.8rem;
}

#kanren_link ul {
	margin: 0;
	padding: 20px 20px 20px 40px;
}

#kanren_link ul li {
	margin-bottom: 15px;
}
#kanren_link ul li::marker {
	color: #f6b57f;
	color: var(--detail-color-tertiary);
}

#kanren_link ul li:last-child {
	margin-bottom: 0;
}

/* 「見つからないときは」「よくある質問」バナー */
.common_banner_link ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.common_banner_link *[class*=common_banner_] {
	margin-bottom: 15px;
}

.common_banner_link *[class*=common_banner_]:last-child {
	margin-bottom: 0;
}

.common_banner_link a {
	display: block;
	border: 1px solid #f6b57f;
	border: 1px solid var(--detail-color-tertiary);
	border-radius: 15px;
	background: #fff;
	color: #333;
	color: var(--site-color-text);
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.8rem;
	letter-spacing: .1em;
	padding: 20px 5px;
	text-align: center;
}

.common_banner_link a > span {
	display: inline-block;
	padding: 5px 0 5px 40px;
}

.common_banner_link .common_banner_mitsukaranai a > span {
	background: url("/img/kosodate/icon_mitsukaranai.png") no-repeat left center transparent;
	color: inherit;
}

.common_banner_link .common_banner_faq a > span {
	background: url("/img/kosodate/icon_faq.png") no-repeat left center transparent;
	color: inherit;
}

@media (any-hover: hover) {
	.common_banner_link a:hover, .common_banner_link a:focus, .common_banner_link a:hover span, .common_banner_link a:focus span {
		text-decoration: underline;
	}
}
/* サブサイト大小メニュー */
.subsite_menu {
	background: #fff;
	border-radius: 5px;
	margin: 0 0 20px;
}

.subsite_menu:last-child {
	margin-bottom: 0;
}

.subsite_menu_ttl {
	background: #f6bab2;
	background: var(--detail-color-primary);
	border-radius: 5px 5px 0 0;
	padding: 18px 20px;
	font-size: 1.8rem;
}

.subsite_menu_ttl a {
	color: inherit;
}

.subsite_menu_list ul {
	padding: 20px 20px 20px 40px;
}

.subsite_menu_list ul li {
	margin: 0 0 15px;
}
.subsite_menu_list ul li::marker {
	color: #c8d892;
}

.subsite_menu_list ul li:last-child {
	margin-bottom: 0;
}

.subsite_menu_list div.link_ichiran {
	margin: 0;
	padding: 0 35px 25px;
	text-align: center;
}

.subsite_menu_list div.link_ichiran a {
	display: block;
	background-color: #ffe7e4;
    padding: 5px 0;
    border-radius: 20px;
}

/* サブサイト大小メニュー（開閉） */
.subsite_menu summary:only-child {
	display: block;
	list-style-type: none;
	pointer-events: none;
	cursor: auto;
}

.subsite_menu summary:only-child::-webkit-details-marker {
	display: none;
}

.subsite_menu summary:only-child a {
	pointer-events: auto;
}

/* サブサイト大小メニュー（開閉）（PCは開閉しない） */
@media screen and (min-width: 1081px) {
	.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は開閉しない） ここまで */
/* ========== リスト ========== */
/* リスト（一覧） */
.info_list ul {
	list-style: none;
	padding: 0 30px;
}

.info_list ul li {
	width: 100%;
	margin: 0;
	padding: 20px 0;
	background-image: radial-gradient(circle, #f2df90 2.5px, transparent 2.5px);
	background-image: radial-gradient(circle, var(--detail-color-secondary) 2.5px, transparent 2.5px);
	background-position: left bottom;
	background-repeat: repeat-x;
	background-size: 15px 5px;
}
.info_list ul li:first-child {
	padding-top: 0;
}

/* リスト（分類） */
.info_list.info_list_cat ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 30px;
}
.info_list.info_list_cat ul li:nth-child(2) {
	padding-top: 0;
}

/* リスト（日付） */
.info_list.info_list_date ul li > span {
	vertical-align: top;
}

.info_list.info_list_date ul li > span.article_date {
	display: block;
	font-size: 1.6rem;
	font-size: var(--fontsize-detail-small, 1.6rem);
	padding-top: .1rem;
}

/* リスト（日付 / 文字拡大時） */
.font_size_changed .info_list.info_list_date ul li, .font_size_changed .info_list.info_list_date ul li > span {
	display: block;
}

.font_size_changed .info_list.info_list_date ul li > span.article_date {
	width: auto;
	padding-top: 0;
}

/* リスト（担当課） */
.article_section:has(span: empty) {
	display: none;
}

/* リスト（サムネイル） */
.list_pack {
	width: 100%;
	display: table;
	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: top;
	width: 200px;
	padding-right: 20px;
}

.list_pack .article_img span {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 200/150;
	overflow: hidden;
	background: #f6f6f6;
}

.list_pack .article_img span:empty {
	background: url("/img/common/noimage.png") no-repeat center center transparent;
	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;
}

/* ========== Googleカスタム検索結果 ========== */
/* googleカスタム検索結果 */
#main_body #cse_search_result table, #main_body #cse_search_result table td, #main_body .gsc-control-cse table, #main_body .gsc-control-cse table td {
	border: none;
	margin: 0;
}

.gsc-results .gsc-cursor-box .gsc-cursor-page {
	display: inline-block !important;
	vertical-align: top;
	margin: 0 0 5px;
	padding: 10px 15px;
	border: 1px solid #ccc !important;
	background: #fff !important;
	color: #06c !important;
	font-size: 1.6rem;
}

.gsc-results .gsc-cursor-box .gsc-cursor-current-page {
	background: #f5f5f5 !important;
	color: #333 !important;
}

/* ========== 背景色変更 ========== */
/* 共通 */
/* 黒 */
/* 青 */
/* ==================================================
PC ここまで
================================================== */
/* ==================================================
スマートフォン
================================================== */
@media screen and (max-width: 1080px) {
	/* var() 関数 */
	:root {
		/* フォントサイズ */
		--fontsize-main: 1.4rem;
		/* 一段階小さいフォントサイズ（一覧をみるボタンなど） */
		--fontsize-main-small: 1.3rem;
		/* 本文（ #main ） */
		--fontsize-detail: 1.5rem;
		/* 本文の一段階小さいフォントサイズ（日付など） */
		--fontsize-detail-small: 1.4rem;
		/* #mymainbackの左右余白 */
		--mymainback-margin-side: 15px;
	}
	/* var() 関数 ここまで */
	/* ========== レイアウト ========== */
	/* 全体 */
	.header_nav ul li.h_main{
		display: none;
	}
	body {
		min-width: 320px;
		margin: 0;
		padding: 0;
		-webkit-text-size-adjust: none;
		   -moz-text-size-adjust: none;
		        text-size-adjust: none;
	}
	#container {
		float: none;
		width: 100%;
		min-width: 320px;
		margin: 0;
		padding: 0;
		overflow: hidden;
	}
	/* ヘッダ */
	#header {
		padding: 10px;
		position: fixed;
        z-index: 999;
        background-color: #faf4ea;
	}
	/* フッタ */
	#footer {
		width: 100%;
		background-color: #ffdc00;
		background-color: var(--site-color-secondary);
	}
	/* メイン */
	#mymainback {
		width: auto;
		padding: 0;
		display: -webkit-flex;
		display:         flex;
		-webkit-flex-direction: column;
		        flex-direction: column;
		-webkit-flex-wrap: nowrap;
		        flex-wrap: nowrap;
	}
	#main, .tpl_side1 #main, .tpl_side2 #main, .tpl_side1.tpl_side2 #main {
		-webkit-order: 10;
		        order: 10;
		clear: both;
		float: none;
		width: auto;
		padding: 15px;
	}
	#main_a, .tpl_side1 #main_a, .tpl_side2 #main_a, .tpl_side1.tpl_side2 #main_a {
		margin: 0;
		padding: 0;
	}
	/* サイド */
	#sidebar1 {
		-webkit-order: 11;
		        order: 11;
		clear: both;
		float: none;
		width: auto;
		margin: 0;
		padding: 0;
	}
	#sidebar2 {
		-webkit-order: 12;
		        order: 12;
		clear: both;
		float: none;
		width: auto;
		margin: 0;
		padding: 0;
	}
	/* パンくずをフッタ上に表示 */
	#mymainback_bg {
		display: -webkit-flex;
		display:         flex;
		-webkit-flex-direction: column;
		        flex-direction: column;
		-webkit-flex-wrap: nowrap;
		        flex-wrap: nowrap;
		width: 100%;
		margin-top: 90px;
	}
	#mymainback_bg > * {
		-webkit-order: 1;
		        order: 1;
	}
	#mymainback_bg > #pankuzu_wrap {
		-webkit-order: 1;
		        order: 1;
	}
	/* ========== 基本設定 ========== */
	/* フォント */
	body, button, input[type=button], input[type=submit], input[type=text], textarea, select {
		font-size: 1.6rem;
		font-size: var(--fontsize-main, 1.4rem);
	}
	#main {
		font-size: 1.8rem;
		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: 0;
	}
	/* レスポンシブアコーディオン用（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: 0;
		pointer-events: none;
	}
	/* ========== ヘッダ ========== */
	/* ヘッダ */
	#logo {
		position: static;
		width: 200px;
		height: 70px;
		margin: 0 auto;
	}
	#header2 {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		max-height: 100svh;
		padding: 68px 40px 40px;
		background-color: #faf4ea;
		background-color: var(--site-color-light);
		border-bottom: 1px solid transparent;
		border-radius: 0 0 40px 40px;
		overflow-y: auto;
	}
	#header_tool {
		-webkit-flex-direction: column;
		        flex-direction: column;
		gap: 0;
		margin-bottom: 0;
		text-align: left;
	}
	/* 閲覧補助（展開） */
	button#btn_spm_support {
		display: block;
		width: 48px;
		height: 48px;
		border: none;
		background: url("/img/kosodate/btn_support.png") no-repeat 0 0;
		background-size: 100% auto;
		text-align: left;
		text-indent: -9999em;
		overflow: hidden;
		position: fixed;
		top: 24px;
		right: 10px;
		z-index: 999;
	}
	.spm_support_open button#btn_spm_support {
		height: 53px;
		background-image: url("/img/kosodate/btn_close.png");
	}
	.spm_support_open #header2 {
		display: block;
		z-index: 998;
	}
	.spm_support_open::before {
		content: "";
		display: block;
		width: 100vw;
		height: 100vh;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 997;
		background: rgba(0, 0, 0, .75);
		color: #fff;
	}
	/* ヘッダメニュー */
	.header_nav ul {
		-webkit-justify-content: flex-start;
		        justify-content: flex-start;
		padding: 0;
		gap: 10px;
	}
	/* アクセシビリティ機能 */
	#support_menu_box {
		gap: 10px;
	}
	dl#moji_size, dl#haikei_color {
		margin: 10px 20px 10px 0;
		-webkit-flex-wrap: nowrap;
		        flex-wrap: nowrap;
	}
	/* 検索（展開） */
	.header_search {
		margin: 0;
		padding: 40px 0 20px;
	}
	/* キーワード検索 */
	#cse-search-box .search_ipt {
		width: auto;
	}
	.gnav {
		width: 100%;
	}
	.gnav ul {
		width: 100%;
		padding: 0;
		display: -webkit-flex;
		display:         flex;
		-webkit-flex-direction: column;
		        flex-direction: column;
	}
	.gnav ul li:nth-child(2) {
		padding-right: 0;
		border-left: none;
	}
	.gnav ul li:nth-child(3) {
		padding-left: 0;
		border-right: none;
	}
	.gnav ul li a {
		position: relative;
		width: 100%;
		padding: 20px 40px;
		border-bottom: 2px solid #ff4a3d;
		border-bottom: 2px solid var(--site-color-primary);
		font-size: 1.8rem;
		text-align: left;
		text-decoration: none;
	}
	.gnav ul li a:after {
		content: "";
		position: absolute;
		right: 30px;
		top: 50%;
		width: 10px;
		height: 10px;
		border-top: 2px solid currentColor;
		border-right: 2px solid currentColor;
		color: #ff4a3d;
		color: var(--site-color-primary);
		-webkit-transform: rotate(45deg);
		        transform: rotate(45deg);
	}
	/* サブサイト共通ヘッダ */
	#mainimg {
		width: auto;
		margin: 15px 15px 0;
		margin: 15px var(--mymainback-margin-side, 15px) 0;
	}
	#mainimg_box .site_name {
		position: static;
		font-size: 1.8rem;
		background: #333;
		color: #fff;
		text-shadow: none;
		padding: 5px 20px;
	}
	#mainimg_box .site_name.noimage {
		background: #f6f6f6;
		color: #333;
		text-shadow: none;
		padding: 20px;
	}
	/* メニューへのリンク */
	.link_to_subsitemenu {
		display: block;
		margin: 15px 15px;
		margin: var(--mymainback-margin-top, 15px) var(--mymainback-margin-side, 15px);
	}
	.link_to_subsitemenu a {
		display: block;
		font-size: 1.5rem;
		font-size: var(--fontsize-main-small, 1.3rem);
		border: 1px solid currentColor;
		border-radius: 5px;
		background: #f37f96;
		background: var(--site-color-tertiary);
		color: #333;
		color: var(--site-color-text);
		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: 0;
		height: 0;
		border: 7px solid transparent;
		border-bottom-width: 0;
		border-top-width: 9px;
		border-top-color: #333;
		border-top-color: var(--site-color-text);
		position: absolute;
		top: 50%;
		right: 0;
		-webkit-transform: translateY(-50%);
		        transform: translateY(-50%);
	}
	.color_change .link_to_subsitemenu a span::before {
		border-top-color: #fff;
	}
	/* ========== フッタ ========== */
	#author_info {
		padding-bottom: 60px;
		background-size: 480px auto;
	}
	#author_info_box {
		-webkit-flex-direction: column;
		        flex-direction: column;
		-webkit-align-items: center;
		        align-items: center;
		gap: 20px;
		width: 100%;
	}
	/* フッタメニュー */
	.footer_navi {
		padding: 20px 0;
	}
	.footer_navi ul {
		-webkit-flex-direction: column;
		        flex-direction: column;
		-webkit-align-items: center;
		        align-items: center;
	}
	/* 管理者情報 */
	#author_box {
		text-align: center;
	}
	/* ページトップ（フローティング表示） */
	#btn_pagetop {
		width: 60px;
	}
	/* 回遊ボタン（表示位置） */
	#kaiyu_banner {
		bottom: 70px;
	}
	/* サブサイト共通フッタ */
	#site_footer {
		width: auto;
		margin: 0 15px 40px;
		margin: 0 var(--mymainback-margin-side, 15px) 40px;
	}
	#site_footer_box {
		padding: 20px;
	}
	/* ========== パンくず / 足あと ========== */
	/* パンくず・足あと */
	#pankuzu_wrap {
		font-size: 1.2rem;
		border-radius: 0;
	}
	#pankuzu_wrap > div {
		width: auto;
		margin-left: 15px;
		margin-left: var(--mymainback-margin-side, 15px);
		margin-right: 15px;
		margin-right: var(--mymainback-margin-side, 15px);
	}
	.pankuzu, #footstep {
		padding-left: 5rem;
	}
	.pankuzu:first-child .icon_current, #footstep_ttl {
		width: 4rem;
		font-size: 1rem;
		top: -1px;
	}
	/* 足あとを非表示 */
	#footstep_wrap {
		display: none !important;
	}
	/* ========== 見出し ========== */
	/* 見出し */
	#main_header h1 {
		padding: 17px 20px;
		border-radius: 13px;
		font-size: 2.4rem;
	}
	#main_body h2 {
		padding: 15px 20px;
		border-radius: 13px;
		font-size: 2rem;
	}
	#main_body h3 {
		padding: 11px 20px;
		border-left-width: 7px;
		font-size: 1.9rem;
	}
	#main_body h4 {
		padding: 9px 20px;
		font-size: 1.8rem;
	}
	#main_body h5 {
		padding: 7px 20px;
		font-size: 1.7rem;
	}
	#main_body h6 {
		padding: 3px 20px 3px 0;
		font-size: 1.6rem;
	}
	/* ========== メイン ========== */
	/* 目次 */
	#main_body .toc_link_wrap {
		border-color: #333;
		border-color: var(--site-color-text);
		border-radius: 5px;
		overflow: hidden;
	}
	/* メイン */
	#mymainback {
		margin: 15px 15px 40px;
		margin: 15px var(--mymainback-margin-side, 15px) 40px;
	}
	#main_header {
		margin-bottom: 15px;
	}
	/* コンテンツヘッダ */
	#content_header {
		font-size: 1.5rem;
		font-size: var(--fontsize-main-small, 1.3rem);
	}
	#content_header > span {
		margin-left: 1em;
	}
	/* コンテンツフッタ */
	/* 印刷 */
	#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: 20px 20px 0 0;
		margin: var(--content-margin-narrow, 20px) 20px 0 0;
	}
	#calendar_button_google a, #calendar_button_yahoo a {
		font-size: 1.5rem;
		font-size: var(--fontsize-main-small, 1.3rem);
	}
	/* SNSボタン */
	/* 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 0 0;
		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: 0;
	}
	#hyouka_area_box .hyouka_box_detail {
		font-size: 1.5rem;
		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 0;
	}
	#hyouka_area_submit input {
		display: block;
		width: 100%;
		max-width: 100%;
		font-size: 1.5rem;
		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: 0;
	}
	/* おすすめコンテンツ */
	#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: 0 0 20px;
	}
	#osusume_contents_area .second_osusume ul {
		padding: 0;
		-webkit-justify-content: center;
		        justify-content: center;
		gap: 20px;
	}
	#osusume_contents_area .second_osusume ul li {
		width: calc(50% - 10px);
		max-width: 200px;
	}
	/* ========== サイド ========== */
	/* サイドバー */
	#sidebar1, #sidebar2 {
		margin-top: 40px;
	}
	/* 重要なお知らせ */
	#important_noticest_area .second_important h2, #important_noticest_area .second_important_ttl {
		font-size: 1.6rem;
	}
	#important_noticest_area .second_important ul li {
		padding: 15px 0;
		border-bottom: 1px solid #fff;
	}
	#important_noticest_area .second_important ul li + li {
		margin-top: 0;
	}
	#important_noticest_area .second_important ul li a {
		display: block;
		background: url("/img/sp/arrow_r_white.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: 1.5rem;
		font-size: var(--fontsize-main-small, 1.3rem);
	}
	/* カウントダウン */
	/* レコメンド・AIレコメンド */
	#sidebar_recommend ul, #sidebar_ai_recommend ul {
		padding: 20px 20px 20px 40px;
	}
	#sidebar_recommend ul li a, #sidebar_ai_recommend ul li a {
		display: block;
		background-size: 8px auto;
		padding-right: 15px;
		text-decoration: none;
	}
	/* 関連リンク */
	#kanren_link h2 {
		font-size: 1.6rem;
	}
	#kanren_link ul {
		margin: 0;
	}
	#kanren_link ul li {
		margin: 0;
	}
	#kanren_link ul li a {
		display: block;
		background-size: 8px auto;
		padding-right: 15px;
		text-decoration: none;
	}
	/* 「見つからないときは」「よくある質問」バナー */
	/* サブサイト大小メニュー */
	.subsite_menu {
		overflow: hidden;
		margin-bottom: 10px;
	}
	.subsite_menu_ttl {
		font-size: 1.6rem;
		text-align: left;
	}
	.subsite_menu_list div.link_ichiran {
		margin: 0;
		padding: 0 30px 30px;
	}
	/* サブサイト大小メニュー（開閉） */
	.subsite_menu summary {
		display: list-item;
		pointer-events: auto;
		cursor: pointer;
	}
	.subsite_menu summary a {
		pointer-events: auto;
	}
	.subsite_menu summary:only-child {
		display: block;
		list-style-type: none;
		pointer-events: none;
		cursor: auto;
	}
	.subsite_menu summary:only-child::-webkit-details-marker {
		display: none;
	}
	.subsite_menu summary:only-child a {
		pointer-events: auto;
	}
	/* サブサイト大小メニュー（開閉） ＋－ */
	.subsite_menu summary {
		display: block;
		list-style-type: none;
	}
	.subsite_menu summary::-webkit-details-marker {
		display: none;
	}
	.subsite_menu summary .tti_icon {
		margin: -18px -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");
	}
	/* ========== リスト ========== */
	/* リスト（一覧） */
	.info_list ul {
		padding: 0 15px;
	}
	.info_list ul li {
		padding: 15px 0;
	}
	/* リスト（分類） */
	.info_list.info_list_cat ul {
		gap: 0 15px;
	}
	.article_section a {
		display: inline !important;
		background: none !important;
		padding-right: 0 !important;
		text-decoration: underline !important;
	}
	/* リスト（サムネイル） */
	.list_pack {
		padding-top: 0;
		padding-bottom: 0;
	}
	.list_pack .article_img {
		width: 120px;
	}
}
@media screen and (max-width: 370px) {
	/* var() 関数 */
	:root {
		/* 本文（ #main ） */
		--fontsize-detail: 1.4rem;
		/* 本文の一段階小さいフォントサイズ（日付など） */
		--fontsize-detail-small: 1.3rem;
		/* #mymainbackの左右余白 */
		--mymainback-margin-side: 10px;
	}
	/* var() 関数 ここまで */
	/* 評価エリア */
	#hyouka_area_box h2, #main_body #hyouka_area_box h2 {
		font-size: 1.6rem;
	}
	/* お問い合わせ先 */
	#section_footer h2, #main_body #section_footer h2 {
		font-size: 1.6rem;
	}
	/* レコメンド・AIレコメンド */
	#recommend_title h2, #ai_recommend_title h2 {
		font-size: 1.4rem;
	}
	/* リスト（サムネイル） */
	.list_pack .article_img {
		width: 100px;
	}
}
/* ==================================================
スマートフォン ここまで
================================================== */