@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.8rem;
	--lineheight-detail: 1.75;
	--letterspacing-detail: 0.05em;
	/* 本文の一段階小さいフォントサイズ（日付など） */
	--fontsize-detail-small: 1.6rem;
	/* 見出し */
	--lineheight-detail-midashi: 1.5;
	--letterspacing-detail-midashi: 0.1em;

	/* フォントファミリー */
	--fontfamily-normal: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Arial, 'BIZ UDPGothic', Meiryo, メイリオ, Osaka, sans-serif;
	/* 見出し / 太字 */
	--fontfamily-bold: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Arial, 'BIZ UDPGothic', Meiryo, メイリオ, 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;
}

/* 本文へリンク */
.link_skip.hide {
	width: auto;
	height: auto;
	clip: auto;
}
.link_skip.hide a {
	display: block;
	width: 100%;
	height: 0px;
	overflow: hidden;
	background: #ffffff;
	font-size: 1.4rem;
	line-height: 2em;
	color: #0d59b7;
	text-decoration: underline;
	text-align: center;
}
.link_skip.hide a:focus {
	margin: 5px;
	width: calc(100% - 10px);
	height: auto;
}

/* 外部リンク */
.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;
}

/* 全体 */
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);
}

/* ヘッダ */
#header {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;
}

/* フッタ */
#footer {
	clear: both;
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;
}

/* メイン */
#mymainback {
	clear: both;
	float: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;
}

#main {
	float: none;
	-webkit-box-ordinal-group: 12;
	    -ms-flex-order: 11;
	        order: 11;
	width: 100%;
	margin: 0px;
	padding: 0px;
}

#main_a {
	margin: 0px;
	padding: 0px;
}

#main_body {
	width: var(--content-width, 1080px);
	max-width: calc(100% - 40px);
	margin: 0px auto;
	padding: 0px;
}

/* サイド */
#sidebar1 {
	float: none;
	-webkit-box-ordinal-group: 11;
	    -ms-flex-order: 10;
	        order: 10;
	width: var(--sidebar1-width, 300px);
	margin: 0px;
	padding: 0px;
}

#sidebar2 {
	float: none;
	-webkit-box-ordinal-group: 13;
	    -ms-flex-order: 12;
	        order: 12;
	width: var(--sidebar2-width, 300px);
	margin: 0px;
	padding: 0px;
}

.tpl_side1 #main {
	width: calc(100% - var(--sidebar1-width, 300px));
}
.tpl_side1 #main_a {
	padding-left: 40px;
}

.tpl_side2 #main {
	width: calc(100% - var(--sidebar2-width, 300px));
}
.tpl_side2 #main_a {
	padding-right: 40px;
}

.tpl_side1.tpl_side2 #main {
	width: calc(100% - var(--sidebar1-width, 300px) - var(--sidebar2-width, 300px));
}
.tpl_side1.tpl_side2 #main_a {
	padding-left: 40px;
	padding-right: 40px;
}

.tpl_side1 hr.hide,
.tpl_side2 hr.hide {
	display: none;
}

/* ========== 基本設定 ========== */

/* フォント */
body,
button,
input,
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フォント使用時） */
/*
input,
textarea,
select,
#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: sans-serif;
}
*/

em {
	font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Arial, 'BIZ UDPGothic', Osaka, 'MS PGothic', sans-serif;
}

.mincho {
	font-family: 'Hiragino Mincho Pro', 'HiraMinProN-W3', 'ヒラギノ明朝 Pro W3', Century, 'BIZ UDPMincho', '游明朝', 'Yu Mincho', '游明朝体', 'YuMincho', serif;
}

/* 文字色 */
body {
	color: #333333;
}

/* リンク */
a:link {
	color: #0d59b7;
	text-decoration: underline;
}
a:visited {
	color: #660099;
	text-decoration: underline;
}
a:active {
	color: #cc0000;
	text-decoration: none;
}
a:hover, a:focus {
	color: #000000;
	text-decoration: none;
}

a img {
	border: none;
	-webkit-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
}
a:hover img, a:focus img {
	opacity: 0.75;
}

/* レスポンシブアコーディオン用 */
input[id*="acc_ttl_label"] {
	display: none;
}
.acc_icon {
	display: none;
}

/* レスポンシブアコーディオン用（class付与） */
.acc_title.accordion {
	pointer-events: none;
}
.acc_title.accordion:focus {
	outline: none;
}
.acc_title.accordion a {
	pointer-events: auto;
}

/* ========== ヘッダ ========== */

/* スマートフォン用 */
#spm_wrap {
	display: none;
}
#btn_spm_support {
	display: none;
}

/* ヘッダ */
#header {
	font-size: 1.4rem;
	line-height: 1;
}

#header2 {
	background-image: -webkit-gradient(linear, left bottom, left top, from(#ffffff), to(#e4e4e4));
	background-image: -o-linear-gradient(bottom, #ffffff, #e4e4e4);
	background-image: linear-gradient(0deg, #ffffff, #e4e4e4);
}
#header2_box {
	width: var(--content-width, 1080px);
	max-width: calc(100% - 40px);
	margin: 0px auto;
	padding: 15px 0px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	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: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 0px 30px;
}

#he_left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 10px 20px;
	min-width: 500px;
	max-width: 100%;
}
#he_left p,
#he_left h1 {
	margin: 0px;
}

#he_left #logo {
	width: 201px;
}
#he_left #logo a {
	display: block;
}
#he_left #logo img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

#he_left #logo_diplomacy,
#he_left #logo_diplomacy h1 {
	font-size: 1.8rem;
	line-height: 2rem;
	font-weight: bold;
	letter-spacing: 0.05em;
}
#he_left #logo_diplomacy a {
	color: inherit;
	text-decoration: none;
}
#he_left #logo_diplomacy a:hover,
#he_left #logo_diplomacy a:focus {
	text-decoration: underline;
}

#he_right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 10px 20px;
}

/* ヘッダメニュー */
.header_nav ul,
.header_nav2 ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 10px 20px;
	line-height: 1.5;
}
.header_nav ul li {
	background: url("/img/sites/diplomacy/common/icon-arrow.png") no-repeat left 0px top 0.35em transparent;
	background-size: 14px auto;
	padding-left: 20px;
}
.header_nav ul li.h_support {
	background: none;
	padding-left: 0px;
}

.header_nav2 ul {
	gap: 10px 5px;
}
.header_nav2 ul li a {
	display: inline-block;
	background: #ffffff;
	border: 1px solid #cccccc;
	border-radius: 4px;
	color: #333333;
	font-size: 1.4rem;
	line-height: 1.8rem;
	text-decoration: none;
	padding: 2px 10px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	min-width: 80px;
	text-align: center;
}
.header_nav2 ul li a:hover {
	text-decoration: underline;
}

/* アクセシビリティ機能 */
.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: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 10px 20px;
}

dl#moji_size,
dl#haikei_color {
	margin: 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
dl#moji_size dt,
dl#haikei_color dt {
	display: inline-block;
	vertical-align: middle;
	font-size: 1.4rem;
	font-weight: normal;
	line-height: 1.8rem;
	margin: 0px 4px 0px 0px;
	padding: 3px 0px;
}
dl#moji_size dd,
dl#haikei_color dd {
	display: inline-block;
	vertical-align: middle;
	margin: 0px 0px 0px 4px;
	padding: 0px;
}
dl#moji_size dd a,
dl#haikei_color dd a {
	display: block;
	background: #ffffff;
	border: 1px solid #cccccc;
	border-radius: 4px;
	color: #333333;
	font-size: 1.2rem;
	line-height: 1.8rem;
	text-decoration: none;
	padding: 2px 8px;
}
dl#moji_size dd a:hover,
dl#haikei_color dd a:hover {
	text-decoration: underline;
}
dl#moji_size dd a {
	padding: 2px 10px;
}
dl#moji_size dd a#moji_large {
	font-size: 1.4rem;
	font-weight: bold;
}
.font_size_limit_max dl#moji_size dd a#moji_large {
	background: #f6f6f6;
	color: #666666;
}

dl#haikei_color dd a#haikei_white {
	border-color: #cccccc;
	background: #ffffff !important;
	color: #333333 !important;
}
dl#haikei_color dd a#haikei_black {
	border-color: #000000;
	background: #000000 !important;
	color: #ffffff !important;
}
dl#haikei_color dd a#haikei_blue {
	border-color: #0000ff;
	background: #0000ff !important;
	color: #ffff00 !important;
}

/* キーワード検索 */
#cse-search-box .search_ipt {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	width: 24rem;
	border: 1px solid #cccccc;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
#tmp_query {
	display: inline-block;
	vertical-align: middle;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	width: calc(100% - 5rem) !important;
	height: 2.8rem !important;
	border: none !important;
}
#submit {
	display: inline-block;
	vertical-align: middle;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	min-width: 5rem;
	height: 2.8rem;
	border: none;
	background: #083895;
	color: #ffffff;
	margin: 0px;
	padding: 0px;
	font-size: 1.4rem;
	line-height: 2.8rem;
	letter-spacing: 0.1em;
	white-space: nowrap;
}

/* ========== フッタ ========== */

/* フッタ */
#footer {
	font-size: 1.6rem;
	line-height: 1;
}

/* ページトップ・戻る */
.back_or_pagetop {
	width: var(--content-width, 1080px);
	max-width: calc(100% - 40px);
	margin: 0px auto;
	padding: 15px 0px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	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;
}
.back_or_pagetop a {
	display: inline-block;
	vertical-align: middle;
	border: 1px solid transparent;
	border-radius: 4px;
	background: #f4f4f4;
	color: #333333;
	font-size: 1.4rem;
	line-height: 1.8rem;
	text-decoration: none;
	padding: 5px 20px;
	position: relative;
}
.back_or_pagetop a:hover,
.back_or_pagetop a:focus {
	text-decoration: underline;
}
.back_or_pagetop a::before {
	content: '';
	display: block;
	width: 0px;
	height: 0px;
	border: 6px solid transparent;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}

.back_or_pagetop .to_page_top {
	margin-left: auto;
}
.back_or_pagetop .to_page_top a {
	padding-right: 30px;
}
.back_or_pagetop .to_page_top a::before {
	border-top-width: 0px;
	border-bottom-width: 8px;
	border-bottom-color: #083895;
	right: 10px;
}

.back_or_pagetop .to_previous_page a {
	padding-left: 30px;
}
.back_or_pagetop .to_previous_page a::before {
	border-left-width: 0px;
	border-right-width: 8px;
	border-right-color: #083895;
	left: 10px;
}

/* 管理者情報 */
#author_info {
	border-top: 4px solid #083895;
	background-image: -webkit-gradient(linear, left bottom, left top, from(#ffffff), to(#e4e4e4));
	background-image: -o-linear-gradient(bottom, #ffffff, #e4e4e4);
	background-image: linear-gradient(0deg, #ffffff, #e4e4e4);
}
#author_info_box {
	width: var(--content-width, 1080px);
	max-width: calc(100% - 40px);
	margin: 0px auto;
	padding: 15px 0px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	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;
	gap: 0px 30px;
}

#author_box {
	margin-right: auto;
}
#author_box p {
	margin: 0px;
	line-height: 1.5;
}

.footer_navi ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 10px 20px;
}
.footer_navi ul li {
	font-size: 1.5rem;
	line-height: 1.4;
	background: url("/img/sites/diplomacy/common/icon-arrow.png") no-repeat left 0px top 0.35em transparent;
	background-size: 14px auto;
	padding-left: 20px;
}

.link_pref_fukuoka a {
	display: block;
}
.link_pref_fukuoka img {
	width: 109px;
	height: auto;
	vertical-align: top;
}

/* コピーライト */
#copyright {
	background: #333333;
	color: #ffffff;
}
#copyright p {
	width: var(--content-width, 1080px);
	max-width: calc(100% - 40px);
	margin: 0px auto;
	padding: 5px 0px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	font-size: 1.2rem;
	line-height: 2rem;
	letter-spacing: 0.1em;
}

/* ========== パンくず ========== */

/* パンくず */
#pankuzu_wrap {
	font-size: var(--fontsize-main-small, 1.5rem);
}
#pankuzu_wrap > div {
	width: var(--content-width, 1080px);
	max-width: calc(100% - 40px);
	margin: 0px auto;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
#pankuzu_wrap > div + div {
	margin-top: 10px;
}

/* ========== 見出し / 表 ========== */

/* 見出し */
#main_header {
	margin-bottom: 30px;
}
#main_header h1 {
	width: var(--content-width, 1080px);
	max-width: calc(100% - 40px);
	margin: 0px auto;
	padding: 26px 30px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	font-size: 3.2rem;
	text-align: center;
}

#main_body :where(h2,h3,h4,h5,h6) {
	clear: both;
	margin: 1em 0px;
}

#main_body h2 {
	padding: 13px 20px 14px;
	font-size: 2.6rem;
	background: #f6f6f6;
	border-top: 3px double #083895;
	border-bottom: 1px solid #083895;
}
#main_body h3 {
	padding: 11px 20px;
	font-size: 2.4rem;
	border-bottom: 2px solid #083895;
}
#main_body h4 {
	padding: 8px 20px 9px;
	font-size: 2.2rem;
	background: #f6f6f6;
}
#main_body h5 {
	padding: 5px 20px 4px;
	font-size: 2.0rem;
	border-bottom: 1px solid #cccccc;
}
#main_body h6 {
	padding: 2px 20px 1px;
	font-size: 1.8rem;
}

/* テーブル */
#main_body table {
	border-color: #333333;
	border-collapse: collapse;
	border-style: solid;
	border-width: 2px; /* CMSver5以降は管理画面で枠線の太さを変更することができない（機能が削除された）ためCSSで指定 */
	margin: 0px 0px 1em;
	max-width: 100%;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
#main_body th {
	background: #f6f6f6;
	color: #333333;
	border-color: #333333;
	border-collapse: collapse;
	border-style: solid;
	border-width: 1px;
	padding: 0.5em;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
#main_body td {
	border-color: #333333;
	border-collapse: collapse;
	border-style: solid;
	border-width: 1px;
	padding: 0.5em;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
/* テーブル内のpタグのマージンを0にする */
#main_body table p {
	margin: 0px 0px 1em;
}
#main_body table p:last-child {
	margin: 0px;
}

/* ========== メイン ========== */

/* メイン */
#mymainback {
	padding-top: 30px;
	padding-bottom: 60px;
}

/* コンテンツヘッダ */
#content_header {
	clear: both;
	width: var(--content-width, 1080px);
	max-width: calc(100% - 40px);
	margin: 40px auto 0px;
	text-align: right;
	font-size: var(--fontsize-main-small, 1.5rem);
}
#content_header > span {
	display: inline-block;
	vertical-align: middle;
}
#content_header > span + span {
	margin-left: 2em;
}

/* コンテンツフッタ */
#content_footer {
	clear: both;
}

/* 印刷 */
#print_mode_link,
#print_mode_link_large {
	display: inline-block;
}

/* カレンダー登録 */
#calendar_button_google,
#calendar_button_yahoo {
	display: inline-block;
	vertical-align: top;
	margin: 40px 30px 0px 0px;
}
#calendar_button_google a,
#calendar_button_yahoo a {
	display: inline-block;
	font-size: var(--fontsize-main-small, 1.5rem);
}

/* 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 0px 0px;
	width: 100%;
	display: table;
}
.pdf_download .pdf_img,
.wmplayer_download .wmplayer_img {
	display: table-cell;
	vertical-align: middle;
	width: 158px;
	margin: 0px;
	padding: 0px;
}
.wmplayer_download .wmplayer_img {
	width: 88px;
}
.pdf_download .pdf_img img,
.wmplayer_download .wmplayer_img img {
	width: 100%;
	height: auto;
	vertical-align: top;
}

.tenpu_txt {
	display: table-cell;
	vertical-align: middle;
	margin: 0px;
	padding: 2px 0px 2px 10px;
	font-size: 1.3rem;
	line-height: 1.4;
	letter-spacing: 0em;
}

/* 評価エリア */
#hyouka_area_box {
	clear: both;
	margin: 40px 0px 0px;
	padding: 30px;
	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: 2rem;
}
#main_body #hyouka_area_box h2::before,
#main_body #hyouka_area_box h2::after {
	display: none;
}
#main_body #hyouka_area_box hr.cf {
	margin: 0px;
}

#hyouka_area_box .hyouka_box_detail {
	border-bottom: 1px solid #dddddd;
	margin-bottom: 15px;
	padding-bottom: 15px;
	font-size: var(--fontsize-main-small, 1.5rem);
}
#hyouka_area_box .hyouka_box_detail:last-child {
	border-bottom: none;
	margin-bottom: 0px;
}
#hyouka_area_box .hyouka_box_detail fieldset {
	border: none;
	margin: 0px;
	padding: 0px;
}
#hyouka_area_box .hyouka_box_detail fieldset legend {
	margin: 0px 0px 5px;
	padding: 0px;
	width: 100%;
}
#hyouka_area_box .hyouka_box_detail fieldset span {
	display: inline-block;
	vertical-align: top;
	margin: 0px 4em 0px 0px;
}
#hyouka_area_box .hyouka_box_detail fieldset span:first-of-type {
	min-width: 11em;
}
.font_size_changed #hyouka_area_box .hyouka_box_detail fieldset span:first-of-type {
	min-width: auto;
}
#hyouka_area_box .hyouka_box_detail fieldset span input {
	margin: 3px 4px 5px 5px;
	vertical-align: middle;
}

#hyouka_area_submit {
	margin-top: 10px;
}
#hyouka_area_submit input {
	display: inline-block;
	border: 1px solid transparent;
	border-radius: 0;
	background: #ffffff;
	color: #333333;
	margin: 0px;
	padding: 10px;
	font-size: var(--fontsize-main-small, 1.5rem);
	line-height: 1.8rem;
	text-decoration: none;
	text-align: center;
	width: 260px;
	max-width: 90%;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
#hyouka_area_submit input:hover,
#hyouka_area_submit input:focus {
	text-decoration: underline;
}

/* お問い合わせ先 */
#section_footer {
	clear: both;
	margin: 40px 0px 0px;
	padding: 30px;
	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: 2rem;
}
#main_body #section_footer h2::before,
#main_body #section_footer h2::after {
	display: none;
}
#main_body #section_footer hr.cf {
	margin: 0px;
}

#section_footer_detail span {
	display: inline-block;
	vertical-align: top;
	margin-right: 1em;
}
#section_footer_detail span[class*="sf_name"] {
	margin-bottom: 10px;
}

/* ========== サイド ========== */

/* サイドバー */
#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;
}

/* ========== 記事 ========== */

/* 記事本文の行間 */
#main_body .detail_free :where(p,ul,ol),
#main_body .detail_writing {
	line-height: var(--lineheight-detail, 1.75);
}

/* カスタム登録 */
#main_body div[class*="detail_"] {
	clear: both;
	display: flow-root;
	width: 100%;
	margin: 0px 0px var(--content-margin-narrow, 30px);
	padding: 0px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
#main_body div.detail_table_center {}
#main_body div.detail_writing {}
#main_body div.detail_map {}
#main_body div.detail_movie {}
#main_body div.detail_free {}
#main_body div.detail_image_normal {}
#main_body div.detail_image_left {
	text-align: left;
}
#main_body div.detail_image_center {
	text-align: center;
}
#main_body div.detail_image_right {
	text-align: right;
}

hr[class*="hr_"] {
	clear: both;
	height: 1px;
	border: none;
	margin: 1em 0px;
}
hr.hr_1 {
	border-top: 2px dotted #999999;
}
hr.hr_2 {
	border-top: 1px solid #333333;
}
hr.hr_3 {
	border-top: 1px solid #ff0000;
}

/* リンク */
.detail_link,
.link_l {
	margin: 1em 0px;
}

/* 外部リンク */
.detail_free .external_link_text,
.link_l .external_link_text {
	display: inline;
}

/* 添付ファイル */
.detail_file {
	margin: 1em 0px;
}

.file_pdf, .file_pdf2, .file_excel, .file_word, .file_etc {
	margin: 1em 0px;
}

/* 移行時に紛れ込んだ見出しの中のspace.gifを消す */
#main_body div[class*="detail_"] img[src*="space.gif"] {
	display: none !important;
}

/* 画像 */
.detail_img_left {
	text-align: left;
}
.detail_img_center {
	text-align: center;
}
.detail_img_right {
	text-align: right;
}

/* 画像サイズ */
/*
#main_body div[class*="detail"] img {
	max-width: 100%;
	height: auto !important;
	vertical-align: top;
}
*/

/* iframeレスポンシブ対応 */
#main_body iframe {
	max-width: 100%;
}
/* ※javascriptでiframeに対してwidthとheightの値をaspect-ratioとして適用している */
/* ※aspect-ratioを有効にする場合はheight: auto;を指定する（影響範囲に注意） */
/*
#main_body iframe {
	height: auto;
}
*/

/* preタグ */
div[class*="detail_"] pre {
	white-space: pre-wrap;
	word-break: break-word;
	font-family: monospace, sans-serif;
}

/* アンカーリンク */
div[class*="detail_"] a:not([href]) {
	display: inline-block;
	text-decoration: none !important;
	max-width: 100%;
}
div[class*="detail_"] a:not([href]):empty {
	display: block;
}
div[class*="detail_"] a:not([href]):hover {
	color: inherit;
}

/* ワープロライクのフロート対応 */
#main_body div[class*="detail_"] hr.cf {
	border: none;
	margin: 0px;
}
#main_body div[class*="detail_"] hr.cf:first-child + h2,
#main_body div[class*="detail_"] span[id^="sp_headline"]:first-child + hr.cf + h2 {
	margin-top: 0px;
}

/* プレビュー編集モード調整用 */
.preview_body .detail_free ul,
.preview_body .detail_free ol {
	margin: 1em 0px !important;
	padding-left: 40px;
}

.status_bar div {
	font-size: 2rem !important;
}

.sticky #keep_page,
.sticky #osusume_banner {
	display: none;
}

/* テーブル表の幅対応 */
.sp_table_wrap2 {
	overflow: auto;
	position: relative;
}

#main_body .sp_large_table .sp_table_wrap {
	width: auto;
	overflow: auto;
}
#main_body .sp_large_table .sp_table_wrap :is(th,td) {
	white-space: nowrap;
}

.sp_button {
	display: none;
}
.sp_button.sw_large_table {
	position: sticky;
	left: 0;
	top: 0;
}

/* ========== リスト ========== */

/* リスト（一覧） */
.info_list ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
.info_list ul li {
	border-bottom: 1px solid #cccccc;
	padding: 20px;
}
.info_list ul li:first-child {
	border-top: 1px solid #cccccc;
}

/* リスト（日付） */
.info_list.info_list_date ul li {
	width: 100%;
	display: table;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.info_list.info_list_date ul li > span {
	display: table-cell;
	vertical-align: top;
}
.info_list.info_list_date ul li > span.article_date {
	width: calc(11em + 10px);
	font-size: var(--fontsize-detail-small, 1.6rem);
	padding-top: 0.1rem;
}

/* リスト（日付 / 文字拡大時） */
.font_size_changed .info_list.info_list_date ul li,
.font_size_changed .info_list.info_list_date ul li > span {
	display: block;
}
.font_size_changed .info_list.info_list_date ul li > span.article_date {
	width: auto;
	padding-top: 0px;
}

/* リスト（担当課） */
.article_section:has(span:empty) {
	display: none;
}

/* リスト（サムネイル） */
.list_pack {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	gap: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.list_pack .article_txt {
	width: calc(100% - 220px);
}
.list_pack .article_txt .article_date {
	display: block;
}
.list_pack .article_txt .article_title {
	display: block;
}

.list_pack .article_img {
	width: 200px;
}
.list_pack .article_img span {
	display: block;
	width: 200px;
	height: auto;
	aspect-ratio: 200 / 150;
	overflow: hidden;
	background: #f6f6f6;
}
.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 ここまで
================================================== */


/* ==================================================
背景色変更 / 印刷ページ
================================================== */

/* ========== 背景色変更 ========== */

/* iOS対応（セレクトメニュー） */
.color_change select {
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
}

/* 全体 */
.color_change,
.color_change * {
	border-color: rgba(255, 255, 255, 0.5) !important;
	color: currentColor !important;
	text-shadow: none !important;
	-webkit-box-shadow: none !important;
	        box-shadow: none !important;
}

.color_change #mymainback_bg,
.color_change #mymainback,
.color_change #main,
.color_change #main_a,
.color_change #main_b,
.color_change #main_body,
.color_change #main_header,
.color_change #pankuzu_wrap,
.color_change #pankuzu_wrap > div,
.color_change #header,
.color_change #header_box,
.color_change #header2,
.color_change #header2_box,
.color_change #header3,
.color_change #header3_box,
.color_change #he_left,
.color_change #he_right,
.color_change #top_search_keyword,
.color_change #top_search,
.color_change #top_search_box,
.color_change #header_navi,
.color_change #header_link,
.color_change .header_navi,
.color_change .header_link,
.color_change #footer,
.color_change #footer_box,
.color_change #footer2,
.color_change #footer2_box,
.color_change #footer3,
.color_change #footer3_box,
.color_change #footer_navi,
.color_change #footer_link,
.color_change .footer_navi,
.color_change .footer_link,
.color_change #author_info_bg,
.color_change #author_info,
.color_change #author_info_box,
.color_change #author_box,
.color_change #author_box2,
.color_change #copyright,
.color_change #back_or_pagetop,
.color_change #sidebar1,
.color_change #sidebar2,
.color_change #print_mode_link,
.color_change #print_mode_link_large,
.color_change #calendar_button_google a,
.color_change #calendar_button_yahoo a,
.color_change #common_banner_link ul li a span,
.color_change .common_banner_link ul li a span {
	background-image: none !important;
}

.color_change #header {
	border-bottom: 2px solid;
}

/* リンク */
.color_change a:link    { text-decoration: underline !important; }
.color_change a:visited { text-decoration: underline !important; }
.color_change a:active  { text-decoration: none !important; }
.color_change a:hover   { text-decoration: none !important; }

.color_change a span  { text-decoration: underline !important; }
.color_change a:hover span { text-decoration: none !important; }

.color_change a,
.color_change a * {
	background-color: transparent !important;
}

.color_change input[type="button"],
.color_change input[type="submit"],
.color_change button {
	text-decoration: underline !important;
}
.color_change input[type="button"]:hover,
.color_change input[type="submit"]:hover,
.color_change button:hover {
	text-decoration: none !important;
}
.color_change input[type="button"] *,
.color_change input[type="submit"] *,
.color_change button * {
	background-color: transparent !important;
}

.color_change input[type="text"],
.color_change textarea {
	outline: 1px solid rgba(255, 255, 255, 0.5) !important;
}
.color_change input[type="text"]:focus,
.color_change textarea:focus {
	outline: 2px solid #ffffff !important;
}

.color_change .back_or_pagetop .to_previous_page a::before {
	border-right-color: #ffffff;
}
.color_change .back_or_pagetop .to_page_top a::before {
	border-bottom-color: #ffffff;
}

/* 見出し */
.color_change h1::before,
.color_change h1::after,
.color_change h2::before,
.color_change h2::after,
.color_change h3::before,
.color_change h3::after,
.color_change h4::before,
.color_change h4::after,
.color_change h5::before,
.color_change h5::after,
.color_change h6::before,
.color_change h6::after {
	display: none !important;
}
.color_change h1 *,
.color_change h2 *,
.color_change h3 *,
.color_change h4 *,
.color_change h5 *,
.color_change h6 * {
	background-color: transparent !important;
}

/* Google検索 */
.color_change #tmp_query {
	background-color: #ffffff !important;
	color: #000000 !important;
}

/* ページID検索 */
.color_change #open_page_id {
	background-color: #ffffff !important;
	color: #000000 !important;
}

/* 黒 */
.color_black,
.color_black #container {
	background: #000000 !important;
	color: #ffffff !important;
}
.color_black * {
	background-color: #000000 !important;
}

.color_black a:link    { color: #ffff00 !important; }
.color_black a:visited { color: #ffffca !important; }
.color_black a:active  { color: #ffffff !important; }
.color_black a:hover   { color: #ffffff !important; }

.color_black input[type="button"],
.color_black input[type="submit"],
.color_black button {
	background-color: #333333 !important;
	color: #ffff00 !important;
}
.color_black input[type="button"]:hover,
.color_black input[type="submit"]:hover,
.color_black button:hover {
	color: #ffffff !important;
}

.color_black h2,
.color_black h3,
.color_black h4,
.color_black h5,
.color_black h6,
.color_black #main_header h1,
.color_black #main_body h2,
.color_black #main_body h3,
.color_black #main_body h4,
.color_black #main_body h5,
.color_black #main_body h6 {
	background: #333333 !important;
	border-color: transparent !important;
	color: #ffffff !important;
}

/* 青 */
.color_blue,
.color_blue #container {
	background: #0000ff !important;
	color: #ffff00 !important;
}
.color_blue * {
	background-color: #0000ff !important;
}

.color_blue a:link    { color: #ffffff !important; }
.color_blue a:visited { color: #ececf4 !important; }
.color_blue a:active  { color: #ffff00 !important; }
.color_blue a:hover   { color: #ffff00 !important; }

.color_blue input[type="button"],
.color_blue input[type="submit"],
.color_blue button {
	background-color: #0000aa !important;
	color: #ffffff !important;
}
.color_blue input[type="button"]:hover,
.color_blue input[type="submit"]:hover,
.color_blue button:hover {
	color: #ffff00 !important;
}

.color_blue h2,
.color_blue h3,
.color_blue h4,
.color_blue h5,
.color_blue h6,
.color_blue #main_header h1,
.color_blue #main_body h2,
.color_blue #main_body h3,
.color_blue #main_body h4,
.color_blue #main_body h5,
.color_blue #main_body h6 {
	background: #0000aa !important;
	border-color: transparent !important;
	color: #ffff00 !important;
}

/* ========== 印刷ページ ========== */

/* 印刷プレビュー */
body.view_print_mode {
	max-width: none !important;
	min-width: auto !important;
	background: none;
}
.view_print_mode #container {
	width: auto !important;
	max-width: none !important;
	min-width: auto !important;
	margin: 0px !important;
	padding: 1em !important;
	background: none;
	float: none;
}
.view_print_mode #mymainback_bg {
	display: block;
	width: auto !important;
	max-width: none !important;
	min-width: auto !important;
	margin: 0px !important;
	padding: 0px !important;
	background: none;
}
.view_print_mode #mymainback {
	display: block;
	width: auto !important;
	max-width: none !important;
	min-width: auto !important;
	margin: 0px !important;
	padding: 0px !important;
	background: none;
}
.view_print_mode #main,
.view_print_mode .tpl_side1 #main,
.view_print_mode .tpl_side2 #main,
.view_print_mode .tpl_side1.tpl_side2 #main {
	width: auto !important;
	margin: 0px !important;
	padding: 0px !important;
	float: none !important;
}
.view_print_mode #main_a {
	margin: 0px !important;
	padding: 0px !important;
}
.view_print_mode #main_body {
	width: auto !important;
	max-width: none !important;
	min-width: auto !important;
	margin: 0px !important;
	padding: 0px !important;
	background: none;
}

.view_print_mode #pankuzu_wrap {
	width: auto;
	padding: 10px 0px;
	background: none;
}
.view_print_mode #pankuzu_wrap > div {
	width: auto;
	max-width: none;
}

.view_print_mode #content_header {
	width: auto;
	max-width: none;
	margin: 0px;
}

.view_print_mode #print_mode_link,
.view_print_mode #print_mode_link_large {
	display: inline-block;
	border: 2px solid;
	background: #ffffff;
	padding: 10px 20px;
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 1;
}

/* 非表示項目の設定 */
.view_print_mode #header {
	display: none !important;
}
.view_print_mode #footer {
	display: none !important;
}
.view_print_mode #sidebar1 {
	display: none !important;
}
.view_print_mode #sidebar2 {
	display: none !important;
}
.view_print_mode #download_link {
	display: none !important;
}
.view_print_mode .pdf_download,
.view_print_mode .wmplayer_download {
	display: none !important;
}
.view_print_mode .system_box,
.view_print_mode #hyouka_area_box {
	display: none !important;
}
.view_print_mode #content_footer {
	display: none !important;
}

/* 印刷 */
@media print {
	#print_mode_link,
	#print_mode_link_large {
		display: none !important;
	}
}
/* 印刷 ここまで */

/* ==================================================
背景色変更 / 印刷ページ ここまで
================================================== */


/* ==================================================
スマートフォン
================================================== */
@media screen and (max-width: 1px) {

	/* var() 関数 */
	:root {
		/* フォントサイズ */
		--fontsize-main: 1.4rem;
		/* 一段階小さいフォントサイズ（一覧をみるボタンなど） */
		--fontsize-main-small: 1.3rem;
		/* 本文（ #main ） */
		--fontsize-detail: 1.5rem;
		/* 本文の一段階小さいフォントサイズ（日付など） */
		--fontsize-detail-small: 1.4rem;

		/* #mymainbackの左右余白 */
		--mymainback-margin-side: 15px;
	}
	@media screen and (max-width: 370px) {
		:root {
			/* 本文（ #main ） */
			--fontsize-detail: 1.4rem;
			/* 本文の一段階小さいフォントサイズ（日付など） */
			--fontsize-detail-small: 1.3rem;
			/* #mymainbackの左右余白 */
			--mymainback-margin-side: 10px;
		}
	}
	/* var() 関数 ここまで */

	/* ========== レイアウト ========== */

	/* float clear */
	* {
		float: none;
	}

	/* 全体 */
	body {
		min-width: 320px;
		margin: 0px;
		padding: 0px;
		-webkit-text-size-adjust: none;
		   -moz-text-size-adjust: none;
		    -ms-text-size-adjust: none;
		        text-size-adjust: none;
	}

	#container {
		float: none;
		width: 100%;
		min-width: 320px;
		margin: 0px;
		padding: 0px;
		overflow: hidden;
	}

	/* ヘッダ */
	#header {
		width: auto;
		height: auto;
		margin: 0px;
		padding: 0px;
	}

	/* フッタ */
	#footer {
		clear: both;
		width: auto;
		height: auto;
		margin: 0px;
		padding: 0px;
	}

	/* メイン */
	#mymainback {
		clear: both;
		float: none;
		width: auto;
		margin: 0px;
		padding: 0px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-ms-flex-wrap: nowrap;
		    flex-wrap: nowrap;
	}

	#main,
	.tpl_side1 #main,
	.tpl_side2 #main,
	.tpl_side1.tpl_side2 #main {
		-webkit-box-ordinal-group: 11;
		-ms-flex-order: 10;
		order: 10;
		clear: both;
		float: none;
		width: auto;
		margin: 0px;
		padding: 0px;
	}
	#main_a,
	.tpl_side1 #main_a,
	.tpl_side2 #main_a,
	.tpl_side1.tpl_side2 #main_a {
		margin: 0px;
		padding: 0px;
	}

	#main_body {
		width: auto;
		max-width: none;
		margin: 0px;
		padding: 0px;
	}

	/* サイド */
	#sidebar1 {
		-webkit-box-ordinal-group: 12;
		-ms-flex-order: 11;
		order: 11;
		clear: both;
		float: none;
		width: auto;
		margin: 0px;
		padding: 0px;
	}

	#sidebar2 {
		-webkit-box-ordinal-group: 13;
		-ms-flex-order: 12;
		order: 12;
		clear: both;
		float: none;
		width: auto;
		margin: 0px;
		padding: 0px;
	}

	/* ========== 基本設定 ========== */

	/* フォント */
	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);
	}

	/* ========== ヘッダ ========== */

	/* ========== フッタ ========== */

	/* ========== パンくず ========== */

	/* ========== 見出し ========== */

	/* ========== メイン ========== */

	/* メイン */
	#mymainback {
		margin: 15px var(--mymainback-margin-side, 15px) 40px;
	}

	/* コンテンツヘッダ */
	#content_header {
		font-size: var(--fontsize-main-small, 1.3rem);
	}
	#content_header > span + span {
		margin-left: 1em;
	}

	/* コンテンツフッタ */
	#content_footer {}

	/* 印刷 */
	#content_header > span.link_print,
	#print_mode_link,
	#print_mode_link_large {
		display: none !important;
	}

	/* SDGsアイコン */
	.d-flex.f-wrap-wrap > *,
	.sdgs-icons > *,
	.d-flex.f-wrap-wrap img,
	.sdgs-icons img,
	.d-flex.f-wrap-wrap > * img,
	.sdgs-icons > * img {
		width: 60px;
	}

	/* カレンダー登録 */
	#calendar_button_google,
	#calendar_button_yahoo {
		margin: var(--content-margin-narrow, 20px) 20px 0px 0px;
	}
	#calendar_button_google a,
	#calendar_button_yahoo a {
		font-size: var(--fontsize-main-small, 1.3rem);
	}

	/* SNSボタン */
	.sns_button_wrap {}

	/* PDF・WMPリンク */
	.pdf_download,
	.wmplayer_download {
		display: block;
		width: auto;
	}
	.pdf_download .pdf_img,
	.wmplayer_download .wmplayer_img {
		display: block;
	}
	.tenpu_txt {
		display: block;
		padding: 10px 0px 0px;
		font-size: 1.2rem;
		line-height: 1.5;
	}

	/* 評価エリア */
	#hyouka_area_box {
		padding: 30px 20px;
	}
	#hyouka_area_box h2,
	#main_body #hyouka_area_box h2 {
		font-size: 1.8rem;
		letter-spacing: 0em;
	}
	@media screen and (max-width: 370px) {
		#hyouka_area_box h2,
		#main_body #hyouka_area_box h2 {
			font-size: 1.6rem;
		}
	}
	#hyouka_area_box .hyouka_box_detail {
		font-size: var(--fontsize-main-small, 1.3rem);
	}
	#hyouka_area_box .hyouka_box_detail fieldset span {
		margin-right: 2em;
	}
	#hyouka_area_box .hyouka_box_detail fieldset span:first-of-type {
		min-width: auto;
	}

	#hyouka_area_submit {
		margin: 10px 10px 0px;
	}
	#hyouka_area_submit input {
		display: block;
		width: 100%;
		max-width: 100%;
		font-size: var(--fontsize-main-small, 1.3rem);
	}

	/* お問い合わせ先 */
	#section_footer {
		padding: 30px 20px;
	}
	#section_footer h2,
	#main_body #section_footer h2 {
		font-size: 1.8rem;
		letter-spacing: 0em;
	}
	@media screen and (max-width: 370px) {
		#section_footer h2,
		#main_body #section_footer h2 {
			font-size: 1.6rem;
		}
	}

	/* ========== サイド ========== */

	/* サイドバー */
	#sidebar1,
	#sidebar2 {
		margin-top: 40px;
	}

	/* ========== 記事 ========== */

	/* 画像サイズ */
	#main_body div[class*="detail"] img {
		max-width: 100%;
		height: auto !important;
		vertical-align: top;
	}

	/* 画像のfloatを解除 */
	#main_body div[class*="detail"] img[style*="float"] {
		float: none !important;
		display: block;
		margin-left: 0px !important;
		margin-right: 0px !important;
	}

	/* ========== リスト ========== */

	/* ========== 背景色変更 ========== */

	/* 共通 */
	.color_change * {

	}
	/* 黒 */
	.color_black * {

	}
	/* 青 */
	.color_blue * {

	}

}
/* ==================================================
スマートフォン ここまで
================================================== */