@charset "utf-8";

/* ==================================================
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: 0em;
	/* 一段階小さいフォントサイズ（一覧をみるボタンなど） */
	--fontsize-main-small: 1.5rem;
	/* 本文（ #main ） */
	--fontsize-detail: 1.6rem;
	--lineheight-detail: 1.75;
	--letterspacing-detail: 0em;
	/* 本文の一段階小さいフォントサイズ（日付など） */
	--fontsize-detail-small: 1.5rem;
	/* 見出し */
	--lineheight-detail-midashi: 1.5;
	--letterspacing-detail-midashi: 0.1em;

	/* フォントファミリー */
	--fontfamily-normal: 'BIZ UDPゴシック', 'UD デジタル 教科書体 NP-R', Meiryo, メイリオ, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Osaka, sans-serif;
	/* 見出し / 太字 */
	--fontfamily-bold: 'BIZ UDPゴシック', 'UD デジタル 教科書体 NP-R', Meiryo, メイリオ, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Osaka, sans-serif;

}
/* var() 関数 ここまで */


/* ========== 共通 ========== */

/* iOSでのボタンデザインをリセット */
button,
input[type="button"],
input[type="submit"] {
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	border-radius: 0;
	cursor: pointer;
	color: inherit;
	font-weight: normal;
	font-style: normal;
}

/* 隠す */
.hide {
	display: block;
	width: 0px;
	height: 0px;
	margin: 0px;
	padding: 0px;
	clip: rect(0,0,0,0);
	overflow: hidden;
}
hr.hide {
	border: none;
}

/* 外部リンク */
.external_link_text {
	display: none;
}

/* telリンク無効 */
.open_page_id a[href^="tel:"],
.f_number a[href^="tel:"] {
	text-decoration: none !important;
	color: currentColor !important;
	pointer-events: none !important;
}

/* AIレコメンド用スクリプトの読み込みタグを非表示 */
.footer_insert_recommend_js {
	display: none;
}

/* 承認枠 */
#approval_table {
	font-size: 1.4rem;
}

/* 基本タグ */
p {
	margin: 1em 0px;
	overflow-wrap: break-word;
}

hr {
	clear: both;
}

/* ========== レイアウト ========== */

/* 全体 */
html {
	font-size: var(--fontsize-main-base, 62.5%);
	scroll-behavior: smooth;
}

body {
	margin: 0px;
	padding: 0px;
	border: 0px;
}

#container {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;
	min-width: var(--content-width, 1080px);
	background: #fbfbfb;
}

/* ヘッダ */
#header {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;
}

/* フッタ */
#footer {
	clear: both;
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;
}

/* メイン */
#mymainback_bg {
	width: var(--content-width, 1080px);
	margin: 0px auto;
	background: #ffffff;
	border-left: 1px solid #cfd1d4;
	border-right: 1px solid #cfd1d4;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
#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: 100%;
	height: auto;
	margin: 0px auto;
	padding: 30px 19px 40px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

#main {
	float: none;
	-webkit-box-ordinal-group: 12;
	    -ms-flex-order: 11;
	        order: 11;
	width: 100%;
	margin: 0px;
	padding: 0px;
}
@media screen and (min-width: 1081px) {
	#main {
		z-index:1;
	}
}

#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;
}

.side1 #main {
	width: calc(100% - var(--sidebar1-width, 300px));
}
.side1 #main_a {
	padding-left: 20px;
}

.side2 #main {
	width: calc(100% - var(--sidebar2-width, 300px));
}
.side2 #main_a {
	padding-right: 20px;
}

.side1.side2 #main {
	width: calc(100% - var(--sidebar1-width, 300px) - var(--sidebar2-width, 300px));
}
.side1.side2 #main_a {
	padding-left: 20px;
	padding-right: 20px;
}

.side1 hr.hide,
.side2 hr.hide {
	display: none;
}

/* ========== 基本設定 ========== */

/* フォント */
body,
button,
input[type="button"],
input[type="submit"],
input[type="text"],
textarea,
select {
	font-family: var(--fontfamily-normal, sans-serif);
	font-size: var(--fontsize-main, 1.6rem);
	line-height: var(--lineheight-main, 1.5);
	letter-spacing: var(--letterspacing-main, 0em);
	overflow-wrap: break-word;
}

#main {
	font-size: var(--fontsize-detail, 1.8rem);
	line-height: var(--lineheight-detail, 1.75);
	letter-spacing: var(--letterspacing-detail, 0.05em);
}

h1, h2, h3, h4, h5, h6, strong,
.subsite_menu_ttl,
.site_name {
	font-family: var(--fontfamily-bold, sans-serif);
	line-height: var(--lineheight-detail-midashi, 1.5);
	letter-spacing: var(--letterspacing-detail-midashi, 0.1em);
	font-weight: bold;
}

/* JavaScript挿入箇所のフォントファミリー（webフォント使用時） */
/*
#pankuzu_wrap, #footstep_wrap, #keep_page, #count_down_area,
#important_noticest_area, #important_noticest_area h2,
#osusume_contents_area, #osusume_contents_area h2,
#recommend_tag, #recommend_tag h2,
#ai_recommend_tag, #ai_recommend_tag h2 {
	font-family: Arial, 'BIZ UDPGothic', Meiryo, メイリオ, Osaka, sans-serif;
}
*/

em {
	font-family: 'BIZ UDPゴシック', 'UD デジタル 教科書体 NP-R', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Osaka, 'MS PGothic', sans-serif;
}

.mincho {
	font-family: 'BIZ UDP明朝', '游明朝', 'Yu Mincho', '游明朝体', 'YuMincho', 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'HiraMinProN-W3', serif;
}

/* 文字色 */
body {
	color: #333333;
}

/* リンク */
a:link {
	color: #3666b0;
	text-decoration: underline;
}
a:visited {
	color: #551a8b;
	text-decoration: underline;
}
a:active {
	color: #333333;
	text-decoration: none;
}
a:hover,
a:focus {
	color: #333333;
	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;
}

/* ボタン */
.link_shadow a {
	-webkit-box-shadow: 5px 4px 6px -2px rgba(0,0,0,0.25);
	        box-shadow: 5px 4px 6px -2px rgba(0,0,0,0.25);
	-webkit-transition: -webkit-box-shadow 0.5s;
	transition: -webkit-box-shadow 0.5s;
	-o-transition: box-shadow 0.5s;
	transition: box-shadow 0.5s;
	transition: box-shadow 0.5s, -webkit-box-shadow 0.5s;
}
.link_shadow a:hover {
	-webkit-box-shadow: none;
	        box-shadow: none;
}

/* スマートフォン用 */
#viewPCMode {
	display: none;
}
#sp_page_index_link_wrap {
	display: none;
}
.sp_button {
	display: none;
}

/* レスポンシブアコーディオン用 */
.acc_title + input {
	display: none;
}
.acc_icon {
	display: none;
}

/* ========== ヘッダ ========== */

/* スマートフォンメニュー */
#spm_wrap {
	display: none;
}
.sp_ttl {
	display: none;
}

/* ヘッダ */
#header {
	font-size: 1.4rem;
}

#header2 {
	background: url("/img/sites/gikai/bg_header_stripe.png") repeat right bottom,
				url("/img/sites/gikai/bg_header_map.png") no-repeat right bottom,
				url("/img/sites/gikai/bg_header.png") no-repeat right bottom #ffffff;
	background-size: auto, auto, 100% 100%;
	border-bottom: 10px solid #006699;
	position: relative;
	min-height: 100px;
}

#he_left {
	width: 300px;
	position: absolute;
	top: 10px;
	left: 20px;
	z-index: 1;
}
#he_left #logo {
	margin: 0px;
}
#he_left #logo h1,
#he_left #logo p {
	margin: 0px;
}
#he_left #logo a {
	display: block;
}
#he_left #logo img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

#he_right {
	margin-left: 318px;
	padding: 10px 20px 10px 0px;
	text-align: right;
}

/* ヘッダメニュー */
ul.header_navi {
	margin: 0px;
	padding: 0px;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 10px 15px;
}
ul.header_navi li[class*="h_"] {
	text-align: left;
}
ul.header_navi li[class*="h_"] > a,
#btn_language_menu_open {
	display: inline-block;
	border: none;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: left center;
	color: #333333;
	font-size: 1.4rem;
	line-height: 2rem;
	text-decoration: none;
	padding: 5px 0px 5px 25px;
	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;
}
ul.header_navi li[class*="h_"] > a:hover,
ul.header_navi li[class*="h_"] > a:focus,
#btn_language_menu_open:hover,
#btn_language_menu_open:focus {
	text-decoration: underline;
}
ul.header_navi li.h_main > a {
	background-image: url("/img/sites/gikai/icon_h_main.png");
}
ul.header_navi li.h_voice > a {
	background-image: url("/img/sites/gikai/icon_h_voice.png");
}
#btn_language_menu_open {
	background-image: url("/img/sites/gikai/icon_arrow_down.png"), url("/img/sites/gikai/icon_h_lang.png.png");
	background-position: right center, left center;
	padding-right: 22px;
}
#btn_language_menu_open.open {
	background-image: url("/img/sites/gikai/icon_arrow_up.png"), url("/img/sites/gikai/icon_h_lang.png.png");
}

/* 翻訳 */
.h_lang {
	position: relative;
}
#language_menu_box {
	display: none;
	position: absolute;
	top: 100%;
	right: 0px;
	z-index: 100;
	width: 22.5rem;
	border: 1px solid #c3c2c2;
	background: #ffffff;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	padding: 20px 20px 50px;
}
#language_menu_box.open {
	display: block;
}
.accGrayscale #language_menu_box.open {
	display: none;
}

#language_menu_box ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 10px;
}
#language_menu_box ul li {
	display: inline-block;
	vertical-align: top;
	border-right: 1px solid;
	padding-right: 10px;
	line-height: 1.25;
}
#language_menu_box ul li:last-child {
	border-right: none;
	padding-right: 0px;
}
#language_menu_box ul li a {
	color: #333333;
}

#language_menu_box ul li[class*="lang_link_"] {
	display: block;
	width: 100%;
	border: none;
	border-top: 1px solid #cccccc;
	padding: 0px;
	padding-top: 10px;
}

#btn_language_menu_close {
	display: inline-block;
	border: none;
	background: url("/img/sites/gikai/icon_close.png") no-repeat right center transparent;
	color: #333333;
	font-size: 1.2rem;
	line-height: 1.2rem;
	padding: 4px 25px 4px 0px;
	position: absolute;
	right: 20px;
	bottom: 15px;
}

/* 閲覧補助 */
.h_support {
	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;
	gap: 10px 15px;
}

.h_support dl {
	margin: 0px;
	padding: 0px;
	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;
}
.h_support dl dt {
	margin: 0px;
	padding: 5px 5px 5px 25px;
	font-size: 1.4rem;
	line-height: 2rem;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: left center;
	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;
}
.h_support dl#moji_size dt {
	background-image: url("/img/sites/gikai/icon_h_size.png");
}
.h_support dl#haikei_color dt {
	background-image: url("/img/sites/gikai/icon_h_color.png");
}

.h_support dl dd {
	display: inline-block;
	vertical-align: middle;
	margin: 0px 0px 0px 1px;
	padding: 0px;
}
.h_support dl dd a {
	display: inline-block;
	font-size: 1.3rem;
	line-height: 1.8rem;
	border: 1px solid #cdcdcd;
	background: #ffffff;
	color: #333333;
	font-weight: bold;
	text-decoration: none;
	padding: 5px 7px;
}
.h_support dl dd a:hover,
.h_support dl dd a:focus {
	text-decoration: underline;
}

.h_support dl dd a#moji_large {
	font-size: 1.6rem;
	padding-left: 4px;
	padding-right: 4px;
}
.h_support dl dd a#moji_default {
	font-weight: normal;
}

.h_support dl dd a#haikei_white {
	border-color: #cdcdcd;
	background: #ffffff !important;
	color: #333333 !important;
}
.h_support dl dd a#haikei_black {
	border-color: #000000;
	background: #000000 !important;
	color: #ffffff !important;
}
.h_support dl dd a#haikei_blue {
	border-color: #0000ff;
	background: #0000ff !important;
	color: #ffff00 !important;
}

/* 検索 */
#top_search_wrap {
	margin-top: 10px;
	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: 10px 5px;
}

#cse-search-box {
	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;
	text-align: left;
}
#cse-search-box .search_ttl {
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.5rem;
	text-align: left;
	margin-right: 10px;
	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;
}
#cse-search-box .search_ttl span {
	display: block;
}
#cse-search-box .search_ipt {
	width: 26rem;
	max-width: 320px;
	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;
}

#tmp_query {
	display: inline-block;
	vertical-align: middle;
	border: 1px solid #333333 !important;
	width: calc(100% - 84px) !important;
	height: 4rem !important;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
#submit {
	display: inline-block;
	vertical-align: middle;
	border: 1px solid transparent;
	background: #333333;
	color: #ffffff;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 3.8rem;
	white-space: nowrap;
	width: 84px;
	height: 4rem;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	margin: 0px;
	padding: 0px;
}
#submit:hover,
#submit:focus {
	text-decoration: underline;
}

#top_search_detailsearch a {
	display: inline-block;
	border: 1px solid transparent;
	background: url("/img/sites/gikai/icon_arrow_gray.png") no-repeat right 10px top 50% #eeeeee;
	color: #333333;
	font-size: 1.4rem;
	line-height: 1.8rem;
	text-decoration: none;
	text-align: left;
	padding: 10px 30px 10px 10px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	min-width: 10rem;
}
#top_search_detailsearch a:hover,
#top_search_detailsearch a:focus {
	text-decoration: underline;
}

/* 検索タグ差し替え 20250912 */
#cse-search-box .gsc-control-cse {
	border: none;
	background: none;
	margin: 0px;
	padding: 0px;
	height: 4rem;
}
#cse-search-box table.gsc-search-box td.gsc-input {
	padding: 0px;
}
#cse-search-box .gsc-input-box {
	width: 20rem;
	max-width: 280px;
	border: 1px solid #333333;
	border-radius: 0px;
	margin: 0px;
	padding: 0px;
}
#cse-search-box .gsib_a {
	padding: 0px 4px;
}
#cse-search-box input.gsc-input {
	height: 3.8rem !important;
}
#cse-search-box .gsc-search-button-v2 {
	border: 1px solid transparent;
	border-radius: 0px;
	background: #333333;
	color: #ffffff;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 3.8rem;
	white-space: nowrap;
	width: 50px;
	height: 4rem;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	margin: 0px;
	padding: 0px;
}
#cse-search-box .gsc-search-button-v2 svg {
	width: 20px;
	height: 100%;
}

/* サブサイト共通ヘッダ（本件では使用しない） */
#mainimg {
	width: var(--content-width, 1080px);
	margin: 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;
}

/* メニューへのリンク（スマートフォン用） */
.link_to_subsitemenu {
	display: none;
}

/* ========== フッタ ========== */

/* フッタメニュー */
.footer_navi_wrap {
	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: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 20px;
	padding: 20px 19px;
}

.footer_navi_wrap .link_attention a {
	display: inline-block;
	background: url("/img/sites/gikai/icon_attention.png") no-repeat left center transparent;
	font-size: 1.8rem;
	line-height: 2rem;
	padding: 5px 0px 5px 30px;
}

ul.footer_navi {
	margin: 0px 0px 0px auto;
	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: 10px;
}
ul.footer_navi a {
	display: inline-block;
	border: 1px solid #cfd1d4;
	border-radius: 5px;
	background: #ffffff;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.8rem;
	text-decoration: none;
	padding: 10px 30px;
}
ul.footer_navi a:hover,
ul.footer_navi a:focus {
	background: #efefef;
	text-decoration: underline;
}

/* ホームボタン */
#footer_box {
	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: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	gap: 20px;
	border-top: 1px solid #cfd1d4;
	background: #efefef;
	padding: 20px 19px;
}

#footer_box .link_home a {
	display: inline-block;
	border: 1px solid transparent;
	border-radius: 5px;
	background: #006699;
	color: #ffffff;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.8rem;
	text-decoration: none;
	padding: 15px 40px;
}
#footer_box .link_home a span.icon {
	display: inline-block;
	background: url("/img/sites/gikai/icon_arrow_r_white.png") no-repeat left center transparent;
	color: inherit;
	padding-left: 20px;
}
#footer_box .link_home a:hover,
#footer_box .link_home a:focus {
	background: #00477a;
}
#footer_box .link_home a:hover span.icon,
#footer_box .link_home a:focus span.icon {
	text-decoration: underline;
}

/* コピーライト */
#copyright {
	margin: 0px 0px 0px auto;
	padding: 0px;
}
#copyright p {
	font-size: 1.2rem;
	letter-spacing: 0.1em;
	margin: 0px;
}

/* ページトップボタン */
#btn_pagetop {
	display: block;
	width: 50px;
	position: fixed;
	right: 10px;
	bottom: -180px;
	z-index: 70;
	-webkit-transition: bottom 0.5s ease-in-out;
	-o-transition: bottom 0.5s ease-in-out;
	transition: bottom 0.5s ease-in-out;
}
#btn_pagetop.fixed {
	bottom: 10px;
}
#btn_pagetop a {
	display: block;
}
#btn_pagetop img {
	width: 100%;
	height: auto;
	vertical-align: top;
}

/* サブサイト共通フッタ */
#site_footer {
	clear: both;
	float: none;
	margin: 0px 19px 40px;
	border: 1px solid #cfd1d4;
}
#site_footer_box {
	padding: 20px;
}
#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;
}

/* ========== パンくず / 足あと ========== */

/* パンくず・足あと */
#pankuzu_wrap {
	border-bottom: 1px solid #cfd1d4;
	background: #efefef;
	padding: 15px 19px 10px;
	font-size: var(--fontsize-main-small, 1.5rem);
}
#pankuzu_wrap > div {
	width: 100%;
	margin: 0px 0px 5px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

.pankuzu,
#footstep {
	position: relative;
	padding-left: 6rem;
}
.pankuzu .icon_current {
	display: none;
}
.pankuzu:first-child .icon_current,
#footstep_ttl {
	display: block;
	width: 4rem;
	height: auto;
	min-height: 2rem;
	border: none;
	border-radius: 0;
	background: #006699;
	color: #ffffff;
	font-size: 1.1rem;
	font-weight: bold;
	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;
}

/* ========== 見出し / 表 ========== */

/* 見出し */
#main_header {
	margin-bottom: 20px;
}
#main_header h1 {
	margin: 0px;
	padding: 24px 20px 23px;
	border-bottom: 5px solid #cfd1d4;
	background: #ffffff;
	font-size: 3.2rem;
}

#main_body :where(h2,h3,h4,h5,h6) {
	clear: both;
	margin: 1em 0px;
}
#main_body :where(h2,h3,h4,h5,h6) a {
	color: inherit;
}

#main_body h2 {
	padding: 18px 20px 17px;
	border-bottom: 3px solid #006699;
	background: #ecf5ff;
	font-size: 2.8rem;
}

#main_body h3 {
	padding: 13px 19px;
	border: 1px solid #cfd1d4;
	background: #efefef;
	font-size: 2.1rem;
}

#main_body h4 {
	padding: 9px 20px;
	background: #ffffff;
	font-size: 1.8rem;
	position: relative;
}
#main_body h4::before {
	content: '';
	border: 1px solid #006699;
	background: #006699;
	color: #ffffff;
	display: block;
	width: 5px;
	height: 100%;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	position: absolute;
	top: 0px;
	left: 0px;
}

#main_body h5 {
	padding: 7px 20px;
	background: #ffffff;
	font-size: 1.7rem;
	position: relative;
}
#main_body h5::before {
	content: '';
	border: 1px solid #006699;
	background: #ffffff;
	color: #000000;
	display: block;
	width: 5px;
	height: 100%;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	position: absolute;
	top: 0px;
	left: 0px;
}

#main_body h6 {
	padding: 6px 20px 5px;
	background: #ffffff;
	font-size: 1.6rem;
}

/* テーブル */
#main_body table {
	border-color: #999999;
	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: #efefef;
	color: #333333;
	border-color: #999999;
	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: #999999;
	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;
}

/* 表の横スクロール */
.sp_table_wrap,
.mol_tableblock {
	overflow-x: auto;
}

/* ========== メイン ========== */

/* コンテンツヘッダ */
#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: 1em;
}

/* コンテンツフッタ */
#content_footer {
	clear: both;
}

/* 印刷 */
#print_mode_link,
#print_mode_link_large {
	display: inline-block;
	background: url("/img/sites/gikai/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: 30px 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/gikai/icon_calendar.png") no-repeat left center transparent;
}

/* SNSボタン */
.sns_button_wrap {
	margin-top: 30px;
	line-height: 1;
}
.sns_button_wrap > div {
	display: inline-block;
	vertical-align: top;
}

/* PDF・WMPリンク */
.pdf_download,
.wmplayer_download {
	clear: both;
	margin: 30px 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.2rem;
	line-height: 1.25;
	letter-spacing: 0em;
}

/* 評価エリア */
#hyouka_area_box {
	clear: both;
	margin: 30px 0px 0px;
	padding: 20px;
	background: #f6f6f6;
}

#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: 1.6rem;
}
#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: 10px;
	padding-bottom: 10px;
	font-size: 1.4rem;
}
#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: #ffffff;
	color: #333333;
	margin: 0px;
	padding: 5px 10px;
	font-size: 1.4rem;
	line-height: 1.8rem;
	text-decoration: none;
	text-align: center;
	width: 260px;
	max-width: 90%;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
#hyouka_area_submit input:hover,
#hyouka_area_submit input:focus {
	text-decoration: underline;
}

/* お問い合わせ先 */
#section_footer {
	clear: both;
	margin: 30px 0px 0px;
	padding: 20px;
	background: #f6f6f6;
}

#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: 1.6rem;
}
#main_body #section_footer h2::before,
#main_body #section_footer h2::after {
	display: none;
}
#main_body #section_footer hr.cf {
	margin: 0px;
}

#section_footer_detail span {
	display: inline-block;
	vertical-align: top;
	margin-right: 1em;
}
#section_footer_detail span[class*="sf_name"] {
	margin-bottom: 10px;
}

/* おすすめコンテンツ（本件では使用しない） */
#osusume_contents_area {
	clear: both;
}
#osusume_contents_area .second_osusume {
	margin: 40px 0px 0px;
	padding: 30px;
	background: #f6f6f6;
}
#osusume_contents_area .second_osusume h2,
#osusume_contents_area .second_osusume_ttl {
	margin: 0px 0px 20px;
	padding: 0px;
	color: inherit;
	font-size: 2rem;
}
#osusume_contents_area .second_osusume ul {
	margin: 0px;
	padding: 0px 10px;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 30px;
}
#osusume_contents_area .second_osusume ul li {
	width: 200px;
}
#osusume_contents_area .second_osusume ul li div > span {
	display: block;
}
#osusume_contents_area .second_osusume ul li div > span.osusume_img {
	margin-bottom: 10px;
}
#osusume_contents_area .second_osusume ul li div > span.osusume_img img {
	width: 100%;
	height: auto;
	vertical-align: top;
}

/* ========== サイド ========== */

/* サイドバー */
#sidebar1 > div,
#sidebar2 > div {
	margin-bottom: 20px;
}
#sidebar1 > div:last-child,
#sidebar2 > div:last-child,
#sidebar1 > div:empty,
#sidebar2 > div:empty {
	margin-bottom: 0px !important;
}

#sidebar1 img,
#sidebar2 img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

/* 自由編集項目 */
.free_box {
	display: flow-root;
}
.free_box p {
	margin: 0px 0px 1em;
}
.free_box p:last-child {
	margin-bottom: 0px;
}
.free_box img {
	max-width: 100%;
	height: auto !important;
	vertical-align: top;
}

/* 重要なお知らせ（本件では使用しない） */
#important_noticest_area .second_important {
	background: #fdf2f2;
	padding: 30px 20px;
}
#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: 0px;
	color: #cc0000;
	font-size: 2rem;
	text-align: center;
}

#important_noticest_area .second_important ul {
	margin: 0px 0px 15px;
	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-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: var(--fontsize-main-small, 1.5rem);
}

/* カウントダウン（本件では使用しない） */
#count_down_area .count_down_box {
	background: #f6f6f6;
	margin: 0px 0px 15px;
	padding: 20px;
	position: relative;
}
#count_down_area .count_down_box:last-child {
	margin-bottom: 0px;
}

#count_down_area .count_down_box2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
#count_down_area .count_down_box2 > span {
	display: inline-block;
	vertical-align: top;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

#count_down_area .count_down_box2 > span.count_img {
	width: 100px;
}
#count_down_area .count_down_box2 > span.count_img > span {
	display: block;
}
#count_down_area .count_down_box2 > span.count_img > span img {
	width: 100%;
	height: auto;
	vertical-align: top;
}

#count_down_area .count_down_box2 > span.count_txt {
	width: calc(100% - 120px);
}
#count_down_area .count_down_box2 > span.count_txt:only-child {
	width: 100%;
}
#count_down_area .count_down_box2 > span.count_txt > span {
	display: block;
}
#count_down_area .count_down_box2 > span.count_txt > span.count_comment {
	margin-top: 10px;
	font-size: 1.4rem;
}
#count_down_area .count_down_box2 > span.count_txt > span.count_day {
	margin-top: 10px;
	color: #cc0000;
	font-weight: bold;
	text-align: right;
}
#count_down_area .count_down_box2 > span.count_txt > span.count_day span {
	font-size: 3rem;
	line-height: 1;
	margin-left: 0.5em;
	margin-right: 0.25em;
}

/* カウントダウン クリアボタン（本件では使用しない） */
#count_down_area .count_down_clear {
	display: block;
	width: 24px;
	height: 24px;
	margin: 0px;
	padding: 0px;
	border: 2px solid #ffffff;
	background: url("/img/common/icon_clear.png") no-repeat center center #333333;
	background-size: 10px 10px;
	border-radius: 100%;
	color: #ffffff;
	line-height: 1;
	text-align: left;
	text-indent: -9999em;
	overflow: hidden;
	cursor: pointer;
	position: absolute;
	top: 0px;
	right: 0px;
}
/* カウントダウン クリアボタンを使用しない */
#count_down_area .count_down_clear {
	display: none;
}

/* レコメンド・AIレコメンド（本件では使用しない） */
#sidebar_recommend,
#sidebar_ai_recommend {
	background: #f6f6f6;
}

#recommend_title,
#ai_recommend_title {
	background: #e6e6e6;
	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: 0px;
	padding: 5px 0px;
}
#recommend_title h2 span,
#ai_recommend_title h2 span {
	display: block;
}

#sidebar_recommend ul,
#sidebar_ai_recommend ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
#sidebar_recommend ul li,
#sidebar_ai_recommend ul li {
	display: block;
	border-top: 1px solid #ffffff;
	padding: 15px 20px;
}

/* 関連リンク */
#kanren_link h2 {
	border-bottom: 3px solid #006699;
	margin: 0px;
	padding: 9px 20px;
	font-size: 1.6rem;
	text-align: center;
}
#kanren_link ul {
	margin: 0px;
	padding: 20px 20px 20px 30px;
}
#kanren_link ul li {
	margin-bottom: 15px;
}
#kanren_link ul li:last-child {
	margin-bottom: 0px;
}

/* 「見つからないときは」「よくある質問」バナー（本件では使用しない） */
.common_banner_link ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
.common_banner_link *[class*="common_banner_"] {
	margin-bottom: 15px;
}
.common_banner_link *[class*="common_banner_"]:last-child {
	margin-bottom: 0px;
}
.common_banner_link a {
	display: block;
	border: 1px solid transparent;
	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;
}
.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 {
	border: 1px solid #cfd1d4;
	border-bottom-width: 3px;
	margin: 0px 0px 1px;
}
.subsite_menu:last-child {
	margin-bottom: 0px;
}

.subsite_menu_ttl {
	background: #efefef;
	margin: 0px;
	padding: 12px 20px 11px;
	font-size: 1.8rem;
}
.subsite_menu_ttl a {
	color: inherit;
}

.subsite_menu_list ul {
	border-top: 2px solid #cfd1d4;
	margin: 0px;
	padding: 0px;
	list-style: none;
}
.subsite_menu_list ul li {
	border-top: 1px solid #cfd1d4;
	margin: 0px;
	padding: 15px 20px 15px 40px;
	background: url("/img/sites/gikai/icon_arrow_r_blue.png") no-repeat left 20px top calc(13px + 0.5em) transparent;
}

.subsite_menu_list div.link_ichiran {
	border-top: 1px solid #cfd1d4;
	margin: 0px;
	padding: 20px;
	text-align: center;
}
.subsite_menu_list div.link_ichiran a {
	font-size: 1.4rem;
}

/* サブサイト大小メニュー（アコーディオン） */
.accordion .subsite_menu_list {
	display: none;
}
.accordion.open .subsite_menu_list {
	display: block;
}

.accordion .subsite_menu_ttl.icon {
	padding: 0px;
}
.accordion .subsite_menu_ttl.icon .accordion_ttl {
	padding: 12px 45px 11px 20px;
	background: url("/img/sites/gikai/icon_sidemenu_open.png") no-repeat right 20px top 50% transparent;
	cursor: pointer;
}
.accordion.open .subsite_menu_ttl.icon .accordion_ttl {
	background-image: url("/img/sites/gikai/icon_sidemenu_close.png");
}

/* メニューバナー（自由編集項目（上）） */
.top_menu_bnr {
	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: 10px;
	max-width: 300px;
	margin: 0px auto;
}
.top_menu_bnr .free_box {
	width: 100%;
}
.top_menu_bnr .free_box p {
	display: block;
	margin-top: 0px;
}
.top_menu_bnr .free_box a {
	display: block;
	border-radius: 5px;
	line-height: 1;
}
.top_menu_bnr .free_box img {
	width: 100% !important;
	height: auto !important;
}

/* ========== 記事 ========== */

/* カスタム登録 */
#main_body div[class*="detail_"] {
	clear: both;
	display: flow-root;
	width: 100%;
	margin: 0px 0px 20px;
	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%;
}

/* 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;
}

/* 記事本文のインデント */
.site_detail #main_body {
	padding-left: 20px;
	padding-right: 20px;
}
.site_detail #main_body :where(h2,h3,h4,h5,h6),
#hyouka_area_box,
#section_footer,
#content_footer {
	margin-left: -20px;
	margin-right: -20px;
}
.pdf_download,
.wmplayer_download {
	margin-left: -20px;
	margin-right: -20px;
	width: calc(100% + 40px);
}

/* ========== リスト ========== */

/* リスト（一覧） */
.info_list ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
.info_list ul li {
	margin: 0px;
	padding: 20px;
	border-bottom: 1px solid #cfd1d4;
}
.info_list ul li span.article_date,
.info_list ul li span.article_title {
	display: block;
}

/* リスト（日付） */

/* リスト（日付 / 文字拡大時） */

/* リスト（担当課） */
.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: 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: 0px;
}

.gsc-results .gsc-cursor-box .gsc-cursor-page {
	display: inline-block !important;
	vertical-align: top;
	margin: 0px 0px 5px;
	padding: 10px 15px;
	border: 1px solid #cccccc !important;
	background: #ffffff !important;
	color: #0066cc !important;
	font-size: 1.6rem;
}
.gsc-results .gsc-cursor-box .gsc-cursor-current-page {
	background: #f5f5f5 !important;
	color: #333333 !important;
}

/* ==================================================
PC ここまで
================================================== */


/* ==================================================
背景色変更 / 印刷ページ
================================================== */

/* ========== 背景色変更 ========== */

/* 共通 */
.color_change #btn_language_menu_open {
	background-color: transparent !important;
}
.color_change #sidebar1 > div,
.color_change #sidebar2 > div,
.color_change #site_footer {
	outline: none;
}
.color_change .subsite_menu_list ul li {
	background-image: url("/img/sites/gikai/icon_arrow_r_white.png");
}
/* 黒 */
.color_black * {

}
/* 青 */
.color_blue * {

}

/* ========== 印刷ページ ========== */

/* 印刷プレビュー */
.view_print_mode #mymainback_bg {
	width: auto;
	background: none;
	border: none;
}

/* ==================================================
背景色変更 / 印刷ページ ここまで
================================================== */


/* ==================================================
タブレット
================================================== */
@media screen and (max-width : 1099px) {

	/* ========== レイアウト ========== */

	#container {
		min-width: auto;
	}

	#mymainback_bg {
		width: calc(100% - 20px);
	}
	#mymainback {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-ms-flex-wrap: nowrap;
		    flex-wrap: nowrap;
	}

	#main,
	.side1 #main,
	.side2 #main,
	.side1.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,
	.side1 #main_a,
	.side2 #main_a,
	.side1.side2 #main_a {
		margin: 0px;
		padding: 0px;
	}

	#sidebar1 {
		-webkit-box-ordinal-group: 12;
		-ms-flex-order: 11;
		order: 11;
		clear: both;
		float: none;
		width: auto;
		margin: 40px 0px 0px;
		padding: 0px;
	}

	#sidebar2 {
		-webkit-box-ordinal-group: 13;
		-ms-flex-order: 12;
		order: 12;
		clear: both;
		float: none;
		width: auto;
		margin: 40px 0px 0px;
		padding: 0px;
	}

	/* ========== ヘッダ ========== */

	#he_right {
		margin-left: 20px;
	}

	ul.header_navi {
		margin-left: 320px;
		min-height: 60px;
	}

	/* ========== フッタ ========== */

	#btn_pagetop.fixed {
		bottom: 50px;
	}

	/* ========== サイド ========== */

	.top_menu_bnr {
		max-width: 610px;
	}
	.top_menu_bnr .free_box {
		width: calc(50% - 5px);
	}

	/* ========== 記事 ========== */

	/* 画像サイズ */
	#main_body div[class*="detail"] img {
		max-width: 100%;
		height: auto !important;
		vertical-align: top;
	}

	/* 評価エリア */
	#hyouka_area_box .hyouka_box_detail fieldset span {
		margin-right: 2em;
	}

}
/* ==================================================
タブレット ここまで
================================================== */


/* ==================================================
スマートフォン
================================================== */
@media screen and (max-width: 670px) {

	/* var() 関数 */
	:root {
		/* フォントサイズ */
		--fontsize-main: 1.4rem;
		/* 一段階小さいフォントサイズ（一覧をみるボタンなど） */
		--fontsize-main-small: 1.3rem;
		/* 本文（ #main ） */
		--fontsize-detail: 1.4rem;
		/* 本文の一段階小さいフォントサイズ（日付など） */
		--fontsize-detail-small: 1.3rem;

		/* #mymainbackの左右余白 */
		--mymainback-margin-side: 15px;
	}
	@media screen and (max-width: 370px) {
		:root {
			/* 本文（ #main ） */
			--fontsize-detail: 1.4rem;
			/* 本文の一段階小さいフォントサイズ（日付など） */
			--fontsize-detail-small: 1.3rem;
			/* #mymainbackの左右余白 */
			--mymainback-margin-side: 10px;
		}
	}
	/* var() 関数 ここまで */

	/* ========== レイアウト ========== */

	/* 全体 */
	body {
		min-width: 320px;
		margin: 0px;
		padding: 0px;
		-webkit-text-size-adjust: none;
		   -moz-text-size-adjust: none;
		    -ms-text-size-adjust: none;
		        text-size-adjust: none;
	}

	#container {
		float: none;
		width: 100%;
		min-width: 320px;
		margin: 0px;
		padding: 0px;
		overflow: hidden;
		background: none;
	}

	/* ヘッダ */
	#header {
		width: auto;
		height: auto;
		margin: 0px;
		padding: 0px;
	}

	/* フッタ */
	#footer {
		clear: both;
		width: auto;
		height: auto;
		margin: 0px;
		padding: 0px;
	}

	/* メイン */
	#mymainback_bg {
		width: auto;
		margin: 0px;
		background: none;
		border: none;
	}
	#mymainback {
		clear: both;
		float: none;
		width: auto;
		margin: 0px;
		padding: 0px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-ms-flex-wrap: nowrap;
		    flex-wrap: nowrap;
	}

	#main,
	.tpl_side1 #main,
	.tpl_side2 #main,
	.tpl_side1.tpl_side2 #main {
		-webkit-box-ordinal-group: 11;
		-ms-flex-order: 10;
		order: 10;
		clear: both;
		float: none;
		width: auto;
		margin: 0px;
		padding: 0px;
	}
	#main_a,
	.tpl_side1 #main_a,
	.tpl_side2 #main_a,
	.tpl_side1.tpl_side2 #main_a {
		margin: 0px;
		padding: 0px;
	}

	/* サイド */
	#sidebar1 {
		-webkit-box-ordinal-group: 12;
		-ms-flex-order: 11;
		order: 11;
		clear: both;
		float: none;
		width: auto;
		margin: 40px 0px 0px;
		padding: 0px;
	}

	#sidebar2 {
		-webkit-box-ordinal-group: 13;
		-ms-flex-order: 12;
		order: 12;
		clear: both;
		float: none;
		width: auto;
		margin: 40px 0px 0px;
		padding: 0px;
	}

	/* パンくずをフッタ上に表示 */
	/*
	#mymainback_bg {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-ms-flex-wrap: nowrap;
		    flex-wrap: nowrap;
	}
	#mymainback_bg > * {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}
	#mymainback_bg > #pankuzu_wrap {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}
	*/

	/* ========== 基本設定 ========== */

	/* フォント */
	body,
	button,
	input[type="button"],
	input[type="submit"],
	input[type="text"],
	textarea,
	select {
		font-size: var(--fontsize-main, 1.4rem);
	}

	#main {
		font-size: var(--fontsize-detail, 1.5rem);
	}

	/* ページ内目次 */
	#sp_page_index_link_wrap {
		display: block;
		width: auto;
		margin: 10px 0px;
	}

	#sp_page_index_link_toggle {
		width: 100%;
		height: auto;
		margin: 0px;
		padding: 10px;
		border: 1px solid #333;
		background: url("/img/sp/acc_open.png") no-repeat right 10px top 50% #eeeeee;
		background-size: 15px 15px;
		border-radius: 5px;
		text-align: center;
	}
	#sp_page_index_link_toggle.open {
		background-image: url("/img/sp/acc_close.png");
	}
	#sp_page_index_link_toggle:focus {
		outline: none;
	}

	ul#sp_page_index_link {
		margin: 0px;
		padding: 0px;
		list-style: none;
	}
	ul#sp_page_index_link li {
		padding: 10px;
		border-bottom: 1px solid #ccc;
	}
	ul#sp_page_index_link li a {
		display: block;
		background: url("/img/sp/arrow_r.png") no-repeat right center;
		background-size: 8px auto;
		padding-right: 12px;
		text-decoration: none;
	}
	ul#sp_page_index_link li a.sp_headtype_h2 { padding-left: 10px; font-size: 2.0rem; line-height: 1.2; }
	ul#sp_page_index_link li a.sp_headtype_h3 { padding-left: 20px; font-size: 1.8rem; line-height: 1.2; }
	ul#sp_page_index_link li a.sp_headtype_h4 { padding-left: 30px; font-size: 1.6rem; line-height: 1.2; }
	ul#sp_page_index_link li a.sp_headtype_h5 { padding-left: 40px; font-size: 1.4rem; line-height: 1.2; }
	ul#sp_page_index_link li a.sp_headtype_h6 { padding-left: 50px; font-size: 1.2rem; line-height: 1.2; }

	/* テーブル切り替え */
	#main_body .sp_table_wrap {
		overflow: auto;
	}

	#main_body div.sp_large_table {
	/*	width: 1000px;*/
		width: 720px;
		overflow: visible;
	}
	#main_body div.sp_large_table table {
		min-width: 100%;
		-webkit-box-sizing: border-box;
		        box-sizing: border-box;
	}
	#main_body div.sp_large_table table caption {
		text-align: left;
	}

	.sp_button {
		display: block;
		width: 100%;
		-webkit-box-sizing: border-box;
		        box-sizing: border-box;
		padding: 10px;
		border: 1px solid #dcdcdc;
		border-radius: 5px;
		background: -moz-linear-gradient( center top, #f9f9f9 5%, #e9e9e9 100% );
		background: -ms-linear-gradient( top, #f9f9f9 5%, #e9e9e9 100% );
		filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e9e9e9');
		background: -webkit-gradient( linear, left top, left bottom, color-stop(5%, #f9f9f9), color-stop(100%, #e9e9e9) );
		background-color: #f9f9f9;
		color: #000000;
		text-shadow: 1px 1px 0px #ffffff;
		-webkit-box-shadow: inset 1px 1px 0px 0px #ffffff;
		        box-shadow: inset 1px 1px 0px 0px #ffffff;
		text-decoration: none;
		text-align: center;
	}
	.sp_button:hover {
		background: -moz-linear-gradient( center top, #e9e9e9 5%, #f9f9f9 100% );
		background: -ms-linear-gradient( top, #e9e9e9 5%, #f9f9f9 100% );
		filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#e9e9e9', endColorstr='#f9f9f9');
		background: -webkit-gradient( linear, left top, left bottom, color-stop(5%, #e9e9e9), color-stop(100%, #f9f9f9) );
		background-color: #e9e9e9;
	}
	.sp_button:active {
		position: relative;
		top: 1px;
	}
	.gsc-result .gs-title {
		height: auto !important;
	}

	/* レスポンシブアコーディオン用 */
	.acc_title_wrap {
		position: relative;
	}
	.acc_title {
		position: relative;
	}
	.acc_title > label {
		display: block;
		cursor: pointer;
		padding-right: 30px;
	}

	.acc_title + input[id*="acc_ttl_label"] + * {
		display: none;
	}
	.acc_title + input[id*="acc_ttl_label"]:checked + * {
		display: block;
	}

	label[for*="acc_ttl_label"] {
		background: url("/img/sp/acc_open.png") no-repeat right 10px top 50% transparent;
		background-size: 15px 15px;
	}
	.acc_open label[for*="acc_ttl_label"] {
		background-image: url("/img/sp/acc_close.png");
	}

	.no_acc_title label[for*="acc_ttl_label"] {
		background: none;
	}

	/* ========== ヘッダ ========== */

	/* スマートフォンメニュー */
	#spm_wrap {
		position: fixed;
		top: auto;
		left: 0px;
		right: 0px;
		bottom: 0px;
		z-index: 100;
		width: 100%;
		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;
		background: #006699;
		color: #ffffff;
	}
	#spm_wrap button#btn_spm_menu,
	#spm_wrap button#btn_spm_search {
		width: 100%;
		height: 65px;
		margin: 0px;
		padding: 0px;
		-webkit-box-sizing: border-box;
		        box-sizing: border-box;
		border: none;
		border-top: 1px solid rgba(255,255,255,0.2);
		text-align: left;
		text-indent: -9999em;
		overflow: hidden;
	}

	#spm_wrap button#btn_spm_menu {
		background: url("/img/sites/gikai/btn_sp_menu.png") no-repeat center center #006699 !important;
		background-size: auto 35px !important;
		color: #ffffff;
	}
	.spm_menu_open #spm_wrap button#btn_spm_menu {
		background-color: #ffffff !important;
		background-image: url("/img/sites/gikai/btn_sp_close.png") !important;
		border-top-color: transparent !important;
		color: #000000;
	}

	#spm_wrap button#btn_spm_search {
		background: url("/img/sites/gikai/btn_sp_search.png") no-repeat center center #006699 !important;
		background-size: auto 35px !important;
		color: #ffffff;
		border-left: 1px solid rgba(255,255,255,0.2);
	}
	.spm_search_open #spm_wrap button#btn_spm_search {
		background-color: #ffffff !important;
		background-image: url("/img/sites/gikai/btn_sp_close.png") !important;
		border-top-color: transparent !important;
		color: #000000;
	}

	.sp_ttl {
		display: block;
		background: #c7c7c7;
		color: #333333;
		font-size: 1.4rem;
		line-height: 2rem;
		margin: 0px 0px 20px;
		padding: 5px 20px;
	}

	/* ヘッダ */
	#header {
		font-size: 1.3rem;
	}

	#header2 {
		background-size: auto, auto 70px, 100% 100%;
		background-position: right bottom, right -150px bottom 0px, right bottom;
		min-height: auto;
		border-bottom-width: 5px;
	}

	#he_left {
		position: static;
		width: 240px;
		padding: 7px 0px 10px var(--mymainback-margin-side, 15px);
	}

	/* 閲覧補助・検索 */
	#he_right {
		position: fixed;
		top: auto;
		left: 0px;
		right: 0px;
		bottom: 0px;
		z-index: 90;
		width: 100%;
		height: 0px;
		overflow: hidden;
		opacity: 0;
		-webkit-box-sizing: border-box;
		        box-sizing: border-box;
		border-bottom: 65px solid transparent;
		background: #ffffff;
		color: #333333;
		margin: 0px;
		padding: 0px;
		-webkit-transition: height 0.5s, opacity 0.5s;
		-o-transition: height 0.5s, opacity 0.5s;
		transition: height 0.5s, opacity 0.5s;
		text-align: left;
	}
	.spm_search_open #he_right {
		height: 100vh;
		height: 100dvh;
		overflow-y: auto;
		-ms-scroll-chaining: none;
		    overscroll-behavior: none;
		opacity: 1;
	}

	.header_navi_wrap {
		display: none;
		padding: 30px var(--mymainback-margin-side, 15px) 20px;
	}
	.spm_search_open .header_navi_wrap {
		display: block;
	}

	/* ヘッダメニュー */
	ul.header_navi {
		margin: 0px;
		min-height: auto;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		gap: 10px;
	}
	ul.header_navi li[class*="h_"] {
		width: 100%;
	}
	ul.header_navi li[class*="h_"] > a,
	#btn_language_menu_open {
		text-shadow: none;
	}

	#btn_language_menu_open,
	#btn_language_menu_open.open {
		background: url("/img/sites/gikai/icon_h_lang.png.png") no-repeat left center transparent;
		padding-right: 0px;
		text-decoration: none !important;
		pointer-events: none !important;
	}
	#language_menu_box,
	#language_menu_box.open {
		display: block;
		position: static;
		width: auto;
		padding: 20px;
	}
	#btn_language_menu_close {
		display: none !important;
	}

	.h_support {
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
		gap: 20px;
		margin-top: 10px;
	}

	ul.header_navi li.h_main,
	ul.header_navi li.h_support {
		display: none !important;
	}

	/* 検索 */
	#top_search_wrap {
		margin-top: 20px;
		gap: 20px;
	}
	#top_search_keyword {
		width: 100%;
	}
	#cse-search-box {
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
	}
	#cse-search-box .search_ttl {
		width: 100%;
		margin: 0px 0px 10px;
		text-shadow: none;
	}
	#cse-search-box .search_ttl span {
		display: inline;
	}
	#cse-search-box .search_ipt {
		width: 100%;
		max-width: none;
	}
	#tmp_query {
		height: 5rem !important;
	}
	#submit {
		height: 5rem;
	}

	#top_search_detailsearch {
		width: 100%;
	}
	#top_search_detailsearch a {
		display: block;
		min-width: auto;
		padding: 15px 40px 15px 20px;
		background-position: right 20px top 50%;
	}

	/* 検索タグ差し替え 20250912 */
	#cse-search-box .gsc-input-box {
		width: calc(100vw - 112px);
		max-width: none;
	}
	#cse-search-box .gsc-search-button-v2 {
		width: 80px;
	}
	@media screen and (max-width: 670px) {
		#cse-search-box .gsc-input-box {
			width: calc(100vw - 102px);
		}
	}

	#cse-search-box .gsc-results-wrapper-overlay {
		width: 80%;
		height: calc(100% - 170px);
		padding: 40px 10px 20px;
		left: 6%;
	}

	/* メニュー（大小メニュー） */
	#subsite_menu_wrap_bg {
		position: fixed;
		top: auto;
		left: 0px;
		right: 0px;
		bottom: 0px;
		z-index: 90;
		width: 100%;
		height: 0px;
		overflow: hidden;
		opacity: 0;
		-webkit-box-sizing: border-box;
		        box-sizing: border-box;
		border-bottom: 65px solid transparent;
		background: #ffffff;
		color: #333333;
		margin: 0px;
		padding: 0px;
		-webkit-transition: height 0.5s, opacity 0.5s;
		-o-transition: height 0.5s, opacity 0.5s;
		transition: height 0.5s, opacity 0.5s;
		text-align: left;
	}
	.spm_menu_open #subsite_menu_wrap_bg {
		height: 100vh;
		height: 100dvh;
		overflow-y: auto;
		-ms-scroll-chaining: none;
		    overscroll-behavior: none;
		opacity: 1;
	}
	#sidebar1 > div#subsite_menu_wrap_bg {
		margin-bottom: 0px;
	}

	#subsite_menu_wrap_bg .sp_ttl {
		display: none;
		margin: 30px var(--mymainback-margin-side, 15px) 20px;
	}
	.spm_menu_open #subsite_menu_wrap_bg .sp_ttl {
		display: block;
	}

	#subsite_menu_wrap {
		display: none;
		padding: 0px var(--mymainback-margin-side, 15px) 20px;
	}
	.spm_menu_open #subsite_menu_wrap {
		display: block;
	}

	.accordion .subsite_menu_ttl.icon .accordion_ttl,
	.accordion.open .subsite_menu_ttl.icon .accordion_ttl {
		background: none !important;
		padding-right: 20px;
		pointer-events: none !important;
	}
	.accordion .subsite_menu_list,
	.accordion.open .subsite_menu_list {
		display: block;
	}

	/* サブサイト共通ヘッダ（本件では使用しない） */
	#mainimg {
		width: auto;
		margin: 15px var(--mymainback-margin-side, 15px) 0px;
	}
	#mainimg_box .site_name {
		position: static;
		font-size: 1.8rem;
		background: #333333;
		color: #ffffff;
		text-shadow: none;
		padding: 5px 20px;
	}
	#mainimg_box .site_name.noimage {
		background: #f6f6f6;
		color: #333333;
		text-shadow: none;
		padding: 20px;
	}

	/* メニューへのリンク（本件では使用しない） */
	.link_to_subsitemenu {
		display: block;
		margin: 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;
	}

	/* ========== フッタ ========== */

	/* フッタメニュー */
	.footer_navi_wrap {
		display: block;
		padding: 20px var(--mymainback-margin-side, 15px);
	}
	.footer_navi_wrap .link_attention a {
		font-size: 1.4rem;
	}

	ul.footer_navi {
		margin: 15px 0px 0px;
		-ms-flex-wrap: nowrap;
		    flex-wrap: nowrap;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		gap: 5px;
	}
	ul.footer_navi li {
		width: 100%;
	}
	ul.footer_navi li a {
		display: block;
		width: 100%;
		-webkit-box-sizing: border-box;
		        box-sizing: border-box;
		font-size: 1.3rem;
		padding: 10px 5px;
		text-align: center;
	}
	@media screen and (max-width: 370px) {
		ul.footer_navi li a {
			font-size: 1.2rem;
		}
	}

	/* ホームボタン */
	#footer_box {
		display: block;
		padding: 20px var(--mymainback-margin-side, 15px) 125px;
		text-align: center;
	}
	#footer_box .link_home {
		margin-bottom: 10px;
	}
	#footer_box .link_home a {
		font-size: 1.4rem;
	}

	/* コピーライト */
	#copyright {
		margin: 20px 0px 0px;
	}
	#copyright p {
		font-size: 1rem;
	}

	/* ページトップ（フローティング表示） */
	#btn_pagetop {
		width: 50px;
	}
	#btn_pagetop.fixed {
		bottom: 75px;
	}

	/* サブサイト共通フッタ */
	#site_footer {
		width: auto;
		margin: 0px var(--mymainback-margin-side, 15px) 40px;
	}
	#site_footer_box {
		padding: 20px;
	}

	/* ========== パンくず / 足あと ========== */

	/* パンくず・足あと */
	#pankuzu_wrap {
		padding: 10px var(--mymainback-margin-side, 15px) 5px;
		font-size: 1.2rem;
	}
	.pankuzu,
	#footstep {
		padding-left: 5rem;
	}
	.pankuzu:first-child .icon_current,
	#footstep_ttl {
		width: 4rem;
		top: -1px;
	}

	/* 足あとを非表示 */
	#footstep_wrap {
		display: none !important;
	}

	/* ========== 見出し ========== */

	/* 見出し */
	#main_header h1 {
		margin: 0px;
		padding: 15px 15px 14px;
		font-size: 2.4rem;
	}

	#main_body h2 {
		padding: 14px 15px 13px;
		font-size: 2rem;
	}

	#main_body h3 {
		padding: 11px 15px 10px;
		font-size: 1.8rem;
	}

	#main_body h4 {
		padding: 8px 15px;
		font-size: 1.6rem;
	}

	#main_body h5 {
		padding: 6px 15px;
		font-size: 1.5rem;
	}

	#main_body h6 {
		padding: 5px 20px 4px;
		font-size: 1.4rem;
	}

	/* ========== メイン ========== */

	/* メイン */
	#mymainback {
		margin: 15px var(--mymainback-margin-side, 15px) 40px;
	}

	/* コンテンツヘッダ */
	#content_header {
		font-size: var(--fontsize-main-small, 1.3rem);
	}
	#content_header > span {
		margin-left: 1em;
	}

	/* コンテンツフッタ */
	#content_footer {}

	/* 印刷 */
	#content_header > span.link_print,
	#print_mode_link,
	#print_mode_link_large {
		display: none !important;
	}

	/* SDGsアイコン */
	.d-flex.f-wrap-wrap > *,
	.sdgs-icons > *,
	.d-flex.f-wrap-wrap img,
	.sdgs-icons img,
	.d-flex.f-wrap-wrap > * img,
	.sdgs-icons > * img {
		width: 60px;
	}

	/* カレンダー登録 */
	#calendar_button_google,
	#calendar_button_yahoo {
		margin: 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: 25px 20px;
	}
	#hyouka_area_box h2,
	#main_body #hyouka_area_box h2 {
		letter-spacing: 0em;
	}
	#hyouka_area_box .hyouka_box_detail {
		font-size: 1.2rem;
	}
	#hyouka_area_box .hyouka_box_detail fieldset span {
		margin-right: 2em;
	}

	#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: 25px 20px;
	}
	#section_footer h2,
	#main_body #section_footer h2 {
		letter-spacing: 0em;
	}

	/* おすすめコンテンツ（本件では使用しない） */
	#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;
	}

	/* ========== サイド ========== */

	/* 重要なお知らせ（本件では使用しない） */
	#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 ul {
		margin: 0px;
		padding: 10px 0px;
		list-style: none;
	}
	#kanren_link ul li {
		margin: 0px;
		padding: 10px 15px;
		border-bottom: 1px solid #cccccc;
	}
	#kanren_link ul li a {
		display: block;
		background: url("/img/sp/arrow_r.png") no-repeat right center transparent;
		background-size: 8px auto;
		padding-right: 15px;
		text-decoration: none;
	}

	/* 「見つからないときは」「よくある質問」バナー（本件では使用しない） */
	.common_banner_link {}

	/* メニューバナー（自由編集項目（上）） */
	.top_menu_bnr {
		max-width: 300px;
	}
	.top_menu_bnr .free_box {
		width: 100%;
	}

	/* ========== 記事 ========== */

	/* 画像サイズ */
	#main_body div[class*="detail"] img {
		max-width: 100%;
		height: auto !important;
		vertical-align: top;
	}

	/* 記事本文のインデント */
	.site_detail #main_body {
		padding-left: 0px;
		padding-right: 0px;
	}
	.site_detail #main_body :where(h2,h3,h4,h5,h6),
	#hyouka_area_box,
	#section_footer,
	#content_footer {
		margin-left: 0px;
		margin-right: 0px;
	}
	.pdf_download,
	.wmplayer_download {
		margin-left: 0px;
		margin-right: 0px;
		width: auto;
	}

	/* ========== リスト ========== */

	/* リスト（一覧） */
	.info_list ul li {
		padding: 15px;
	}
	.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;
	}

	/* リスト（日付） */

	/* リスト（担当課） */
	.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;
		}
	}

	/* ========== 背景色変更 ========== */

	/* 共通 */
	.color_change * {

	}
	/* 黒 */
	.color_black * {

	}
	/* 青 */
	.color_blue * {

	}

}
/* ==================================================
スマートフォン ここまで
================================================== */