@charset "utf-8";
/* 記事本文 */
@import url("/ssi/css/detail.css");

/* ==================================================
PC
================================================== */

/* var() 関数 */
:root {

	/* コンテンツ幅 */
	--content-width: 1080px;
	/* sidebar1の幅 */
	--sidebar1-width: 300px;
	/* sidebar2の幅 */
	--sidebar2-width: 300px;

	/* フォントサイズ / 行間 / 文字間 */
	--fontsize-main-base: 62.5%;
	--fontsize-main: 1.6rem;
	--lineheight-main: 1.5;
	--letterspacing-main: 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: 'ヒラギノUD丸ゴ W3 JIS2004', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Arial, 'BIZ UDPGothic', Meiryo, メイリオ, Osaka, sans-serif;
	/* 見出し / 太字 */
	--fontfamily-bold: 'ヒラギノUD丸ゴ W6 JIS2004', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Arial, 'BIZ UDPGothic', Meiryo, メイリオ, Osaka, sans-serif;

}
/* var() 関数 ここまで */


/* ========== レイアウト ========== */

/* 全体 */
html {
	font-size: var(--fontsize-main-base, 62.5%);
	scroll-behavior: smooth;
}

body {
	margin: 0px;
	padding: 0px;
	border: 0px;
}

#container {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;
	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: var(--content-width, 1080px);
	height: auto;
	margin: 0px auto;
	padding: 0px;
}

#main {
	float: none;
	-webkit-box-ordinal-group: 12;
	    -ms-flex-order: 11;
	        order: 11;
	width: 100%;
	margin: 0px;
	padding: 0px;
}

#main_a {
	margin: 0px;
	padding: 0px;
}

#main_body {
	margin: 0px;
	padding: 0px;
}

/* サイド */
#sidebar1 {
	float: none;
	-webkit-box-ordinal-group: 11;
	    -ms-flex-order: 10;
	        order: 10;
	width: var(--sidebar1-width, 300px);
	margin: 0px;
	padding: 0px;
}

#sidebar2 {
	float: none;
	-webkit-box-ordinal-group: 13;
	    -ms-flex-order: 12;
	        order: 12;
	width: var(--sidebar2-width, 300px);
	margin: 0px;
	padding: 0px;
}

.tpl_side1 #main {
	width: calc(100% - var(--sidebar1-width, 300px));
}
.tpl_side1 #main_a {
	padding-left: 40px;
}

.tpl_side2 #main {
	width: calc(100% - var(--sidebar2-width, 300px));
}
.tpl_side2 #main_a {
	padding-right: 40px;
}

.tpl_side1.tpl_side2 #main {
	width: calc(100% - var(--sidebar1-width, 300px) - var(--sidebar2-width, 300px));
}
.tpl_side1.tpl_side2 #main_a {
	padding-left: 40px;
	padding-right: 40px;
}

.tpl_side1 hr.hide,
.tpl_side2 hr.hide {
	display: none;
}

/* ========== 基本設定 ========== */

/* フォント */
body,
button,
input[type="button"],
input[type="submit"],
input[type="text"],
textarea,
select {
	font-family: var(--fontfamily-normal, sans-serif);
	font-size: var(--fontsize-main, 1.6rem);
	line-height: var(--lineheight-main, 1.5);
	letter-spacing: var(--letterspacing-main, 0em);
	overflow-wrap: break-word;
}

#main {
	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,
.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,
.toc_link_wrap summary {
	font-family: 'メイリオ', Meiryo, 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: #333333;
	text-decoration: underline;
}
a:visited {
	color: #333333;
	text-decoration: underline;
}
a:active {
	color: #000000;
	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;
}

/* ヘッダ */
#header2 {
	width: 1080px;
	margin: 0px auto;
	position: relative;
}
#he_left {
	position: absolute;
	top: 22px;
	left: 7px;
	z-index: 1;
}
#he_left #header_logo {
	margin: 0px;
	line-height: 0;
}
#he_left #header_logo a {
	display: block;
}
#he_left #header_logo img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}
#he_right {
	padding: 14px 0px 16px;
	margin-left: 240px;
	text-align: right;
}

/* ヘッダメニュー */
ul.header_nav {
	margin: 0px;
	padding: 0px;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	    flex-wrap: wrap;
	        justify-content: flex-end;
	align-items: center;
}
ul.header_nav li {
	font-size: 1.4rem;
	font-weight: bold;
   line-height: 1;
	margin: 0 0 16px 25px;
}
ul.header_nav li:first-child {
	margin-left: 0px;
}
ul.header_nav li.h_lang {
	margin: 0 0 16px 30px;
}
ul.header_nav li.h_read {
	margin: 0 0 16px 24px;
}
ul.header_nav li :where(a,#js_sound_btn) {
	color: #2d2d2d;
	text-decoration: none;
}
ul.header_nav li.h_lang a {
	/*! text-decoration: underline; */
	letter-spacing: 0.08em;
	padding: 0 0 0 19px;
	background: url(/img/sites/promotion/pc/lang_icon.png)no-repeat left center;
}
ul.header_nav li.h_lang a:hover{
	text-decoration: underline;
}
ul.header_nav li.h_easy a {
	padding: 0 0 0 18px;
	background: url(/img/sites/promotion/pc/easy_icon.png)no-repeat left center;
}
ul.header_nav li.h_read #js_sound_btn{
	padding: 0 0 0 26px;
	background: url(/img/sites/promotion/pc/speaker_icon.png)no-repeat left center;
	border: none;
	background-color: transparent;
	display: inline;
	font-size: 1.4rem;
	line-height: 1;
}
ul.header_nav li.h_read #js_sound_btn:hover{
	text-decoration: underline;
}
ul.header_nav li a:hover {
	text-decoration: underline;
}
ul.header_nav li.h_lang a:hover {
	/*! text-decoration: none; */
}

.sound_close{
	display: none;
}
.open .sound_close{
	display: block;
}
.open .sound_open{
	display: none;
}
.sound_box{
	display: none;
}
li.h_read{
	position: relative;
}
#js_sound_btn.open ~ .sound_box{
	display: block;
	position: absolute;
	top: 100%;
	right: 0;
	white-space: nowrap;
	z-index: 100;
}

/* アクセシビリティ機能 */
#support_menu_box {
 	width: 50rem;
 	max-width: 726px;
 	margin: 0 0 0 auto;
 	gap: 20px 25px;
 	padding: 6px 19px;
 	background: #f3f2f1;
	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;
 	-webkit-box-sizing: border-box;
 				box-sizing: border-box;
}
#support_ttl {
	margin: 0;
	padding: 0 0 0 25px;
	background: url(/img/sites/promotion/pc/gear_icon.png) no-repeat left center;
	font-size: 1.4rem;
	color: #2d2d2d;
	font-weight: bold;
}
dl#moji_size, dl#haikei_color {
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
dl#moji_size dt, dl#haikei_color dt {
	display: inline-block;
	vertical-align: middle;
	font-size: 1.3rem;
	margin: 0;
	color: #2d2d2d;
}
dl#moji_size dd, dl#haikei_color dd {
	display: inline-block;
	vertical-align: middle;
	margin: 0px 0px 0px 5px;
}
dl#moji_size dd a, dl#haikei_color dd a {
	display: block;
	background: #ffffff;
	border: 1px solid #cccccc;
	color: #2d2d2d;
	font-size: 1.2rem;
	line-height: 1.5;
	text-decoration: none;
	padding: 4px 7px;
	text-align: center;
}
dl#moji_size dd a#moji_default {
	padding: 4px 8px;
}
dl#moji_size dd a#moji_large {
	font-size: 1.4rem;
	font-weight: bold;
 	padding: 2.5px 6px;
}
dl#haikei_color dd a#haikei_white {
	background: #ffffff !important;
	color: #333333 !important;
}
dl#haikei_color dd a#haikei_black {
	background: #000000 !important;
	color: #ffffff !important;
}
dl#haikei_color dd a#haikei_blue {
	background: #0000ff !important;
	color: #ffee00 !important;
}

/* 検索展開 */
#search_btn {
	position: fixed;
    padding: 0;
    width: 71px;
    height: 82px;
    z-index: 101;
    top: 200px;
    right: 0px;
    color: #fff;
    border: 1px solid #fff;
    border-right: 0;
    border-radius: 10px 0 0 10px;
    -webkit-box-sizing: border-box;
			box-sizing: border-box;
    background: url(/img/sites/promotion/pc/search_btn.png) no-repeat bottom 13px left 21px #4b4b4b;
}
.tpl_site_index #search_btn {
	top: 100px;
}
#search_btn.open {
	width: 121px;
    height: 81px;
    border-top: 0;
    border-radius: 0 0 0 10px;
    background: url(/img/sites/promotion/pc/close_btn.png) no-repeat bottom 13px center #4b4b4b;
}
#header_search {
	width: 470px;
	display: none;
	position: fixed;
	top: 200px;
	right: 0;
	z-index: 100;
	background-color: rgba(174, 232, 245, 0.9);
	padding: 104px 50px 91px 49px;
	border-radius: 0 0 0 10px;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
}
.tpl_site_index #header_search {
	top: 100px;
}
#header_search.open {
	display: inline-block;
}

/* キーワード検索 */
#top_search_keyword {
	text-align: left;
    margin: 0 0 26px;
}
#cse-search-box .search_ttl,
#open_page_id_box .search_ttl {
    display: block;
    font-size: 1.6rem;
    line-height: 1.313;
    color: #2d2d2d;
    font-weight: bold;
    margin: 0 0 7px;
    letter-spacing: 0.05em;
}
#cse-search-box .search_ipt,
#open_page_id_box .search_ipt {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	width: 370px;
	border-radius: 10px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
#tmp_query, #open_page_id {
	display: inline-block;
	vertical-align: middle;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
    border-radius: 10px 0 0 10px;
	width: calc(100% - 70px) !important;
	height: 60px !important;
	border: none !important;
	background-position: top 50% left 20px !important;
    padding: 5px;
}
#submit, #open_page_id_submit {
	display: inline-block;
	vertical-align: middle;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	min-width: 70px;
	height: 60px;
	border: none;
	color: #fff;
	margin: 0px;
	padding: 0px;
    font-weight: bold;
	font-size: 1.6rem;
	white-space: nowrap;
    border-radius: 0 10px 10px 0;
    text-indent: -9999em;
    background: url(/img/sites/promotion/pc/submit_btn.png) no-repeat center center #4b4b4b;
}
#cse_filetype {
	margin-top: 20px;
}
#cse_filetype fieldset {
	border: none;
	margin: 0px;
	padding: 0px;
    line-height: 1;
}
#cse_filetype fieldset legend {
	display: none;
	margin: 0px;
	padding: 0px;
}
#cse_filetype fieldset span {
	font-size: 1.6rem;
	line-height: 1;
	display: inline-block;
	vertical-align: middle;
	margin-right: 26.5px;
	color: #2d2d2d;
}
#cse_filetype fieldset span input {
	margin: 0px 7px 0px 0px;
	vertical-align: middle;
	color: #333;
	-webkit-appearance: none;
	width: 16px;
	height: 16px;
	border: 1px solid #c1c2c2;
	border-radius:50%;
	outline:none;
	background: #fff;
	position: relative;
}
#cse_filetype fieldset span input[type='radio']:checked {
	border: 1px solid #00a1ff;
	background: #00a1ff;
}
#cse_filetype fieldset span input[type='radio']:before {
    content:'';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
#cse_filetype fieldset span input[type='radio']:checked:before {
    background: #fff;
}

/* ページID検索 */
#top_search_page_id {
	text-align: left;
}
#open_page_id {
	text-indent: 19px;
}
#open_page_id_message {
	margin-top: 5px;
	text-align: right;
	font-size: 1.4rem;
}
#open_page_id_message:empty {
	display: none;
}
#open_page_id_link {
	text-align: right;
    margin: 20px 7px 0 0;
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: 0.1em;
}
#open_page_id_link a {
    color: #222222;
}

/* グローバルナビ */
#gnav_search {
    width: 1080px;
    margin: 0 auto;
}
#gnav_search ul {
   margin: 0;
   padding: 0 0 30px;
   list-style: none;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -ms-flex-wrap: wrap;
       flex-wrap: wrap;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
           justify-content: center;
}
#gnav_search ul li {
    width: 270px;
    border-left: 1px solid #8e8e8e;
    -webkit-box-sizing: border-box;
    		box-sizing: border-box;
    position: relative;
}
#gnav_search ul li:last-child {
	border-right: 1px solid #8e8e8e;
}
ul.navi_list li a {
	display: block;
	font-weight: 500;
	font-size: 2.2rem;
	line-height: 3rem;
	color: #222222;
	letter-spacing: 0.25em;
	text-decoration: none;
	font-family: 'Hiragino Mincho Pro', 'HiraMinProN-W3', 'ヒラギノ明朝 Pro W3', Century, 'BIZ UDPMincho', '游明朝', 'Yu Mincho', '游明朝体', 'YuMincho’,serif';
	padding: 20px 80px 20px 30px;
	text-align: center;
	-webkit-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
}
ul.navi_list li a:hover {
	opacity: 0.5;
}

#gnav_search ul li a:before {
	content: '';
	position: absolute;
	width: 27px;
	height: 13px;
	bottom: -23px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	-webkit-clip-path: ellipse(50% 100% at 50% 100%);
	        clip-path: ellipse(50% 100% at 50% 100%);
	background: #82d3e0;
}
ul.navi_list li a span.small {
	vertical-align: baseline;
	font-size: 1.8rem;
	line-height: 2rem;
}
ul.navi_list li:nth-child(1) a {
	background: url(/img/sites/promotion/pc/gnv_icon1.png)no-repeat top 5px right 25px;
}
ul.navi_list li:nth-child(2) a {
	background: url(/img/sites/promotion/pc/gnv_icon2.png)no-repeat top 8px right 25px;
}
ul.navi_list li:nth-child(3) a {
	background: url(/img/sites/promotion/pc/gnv_icon3.png)no-repeat top 10px right 25px;
}
ul.navi_list li:nth-child(4) a {
	background: url(/img/sites/promotion/pc/gnv_icon4.png)no-repeat top 14px right 15px;
	padding-left: 20px;
}

/**** トップ-グローバルナビ ****/
.tpl_site_index #gnav_search {
   padding: 30px 0;
}
#gnav_search ul.navi_menu {
	padding: 0;
}
#gnav_search ul.navi_menu li {
   min-width: 201.5px;
    width: auto;
    text-align: center;
    position: relative;
    border: none;
}
#gnav_search ul.navi_menu li:before,
#gnav_search ul.navi_menu li:nth-child(4)::after {
	content: "";
	position: absolute;
	width: 1px;
	height: 100%;
	top: 0;
	left: 0;
	background: #8e8e8e;
}
#gnav_search ul.navi_menu li:nth-child(4)::after {
	right: 0;
	left: inherit;
}
#gnav_search ul.navi_menu li a:before {
	bottom: 0;
	left: 50.5%;
    -webkit-transform: translateX(-49.5%);
    	-ms-transform: translateX(-49.5%);
    		transform: translateX(-49.5%);
}
ul.navi_menu li a {
	display: block;
	font-weight: 500;
	font-size: 2.2rem;
	line-height: 3rem;
	color: #222222;
	letter-spacing: 0.25em;
	text-decoration: none;
	font-family: 'Hiragino Mincho Pro', 'HiraMinProN-W3', 'ヒラギノ明朝 Pro W3', Century, 'BIZ UDPMincho', '游明朝', 'Yu Mincho', '游明朝体', 'YuMincho’,serif';
	padding: 70px 10px 20px;
	-webkit-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
}
ul.navi_menu li a:hover {
	opacity: 0.5;
}
ul.navi_menu li a span.small {
	vertical-align: baseline;
	font-size: 1.8rem;
	line-height: 2rem;
}
ul.navi_menu li:nth-child(1) a {
	background: url(/img/sites/promotion/pc/navi_icon1.png)no-repeat top 2px left 58px;
}
ul.navi_menu li:nth-child(2) a {
	background: url(/img/sites/promotion/pc/navi_icon2.png)no-repeat top 3px left 70px;
}
ul.navi_menu li:nth-child(3) a {
	background: url(/img/sites/promotion/pc/navi_icon3.png) no-repeat top 7px left 67px;
}
ul.navi_menu li:nth-child(4) a {
	background: url(/img/sites/promotion/pc/navi_icon4.png)no-repeat top 12px center;
}

/* サブサイト共通ヘッダ */
#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 {
	width: 1080px;
    margin: 0 auto;
    padding: 40px 0 0;
}
.footer_navi ul {
	margin: 0px;
	padding: 30px 0 12px;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	    justify-content: center;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.footer_navi ul li {
	margin: 0 1em 1em 0;
    padding-right: 1em;
    border-right: 1px solid #222222;
    font-size: 1.8rem;
    line-height: 1;
}
.footer_navi ul li:last-child {
	margin-right: 0px;
	padding-right: 0px;
	border-right: none;
}
.footer_navi ul li a {
    color: #222222;
}

/* 管理者情報 */
#author_info {
	width: 1080px;
    margin: 0 auto;
    padding: 30px 0;
    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;
}
#city_logo {
	width: 200px;
    line-height: 0;
}
#city_logo a {
	display: inline-block;
}
#author_box {
    width: calc(100% - 463px);
    margin-left: 33px;
    line-height: 0;
}
#author_box p.f_author {
	font-size: 2.4rem;
    line-height: 0.9;
    letter-spacing: 0.1em;
    margin: 0 0 7px;
}
#author_box p.f_author a {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.8rem;
    color: #222222;
    line-height: 1.167;
    letter-spacing: 0.025em;
    margin-left: 24px;
    padding: 0 0 8px 31px;
    background: url(/img/sites/promotion/pc/map_icon.png) no-repeat left center;
}
#author_box p {
    font-size: 1.6rem;
    color: #222222;
    line-height: 1.875;
    margin: 0;
}
#author_box span {
	display: inline-block;
    line-height: 0;
    margin: 10px 0 0;
}
#author_box span.external_link_text{
	display: none;
}
#author_link {
    width: 230px;
}
#author_link span {
	display: block;
	margin: 0 0 20px; 
}
#author_link span a {
	display: block;
    font-size: 1.8rem;
    color: #000000;
    line-height: 1.167;
    letter-spacing: 0.1em;
    text-decoration: none;
    padding: 25px 45px 24px 49px;
    border-radius: 35px;
    background: url(/img/sites/promotion/pc/arrow.png) no-repeat right 22px center #ebed7a;
}
#author_link span:last-child a {
	padding: 25px 45px 24px 52px;
}
#author_link span a:hover {
	text-decoration: underline;
}

/* コピーライト */
#copyright {
	width: 1080px;
    margin: 0 auto;
    padding: 0 0 80px;
}
#copyright p {
	margin: 0;
	text-align: center;
    font-size: 1.4rem;
    color: #222222;
    letter-spacing: 0.1em;
}

/* ページトップボタン */
#btn_pagetop {
	display: block;
	width: 70px;
	position: fixed;
    bottom: -150px;
    right: 20px;
	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: 12px;
}
#btn_pagetop a {
	display: block;
}
#btn_pagetop img {
	width: 100%;
	height: auto;
	vertical-align: top;
}

/* サブサイト共通フッタ */
#site_footer {
	clear: both;
	float: none;
	width: var(--content-width, 1080px);
	margin: 0px auto 60px;
	border: none;
	border-radius: 0;
	background: #f6f6f6;
	color: #333333;
}
#site_footer_box {
	padding: 30px;
}
#site_footer_box p {
	margin: 0px 0px 1em;
}
#site_footer_box p:last-child {
	margin-bottom: 0px;
}
#site_footer_box img {
	max-width: 100%;
	height: auto !important;
	vertical-align: top;
}

/* ========== パンくず / 足あと ========== */

/* パンくず・足あと */
#pankuzu_wrap {
    background: #f3f2f1;
    color: #333333;
    padding: 18px 0px 9px;
    font-size: 1.6rem;
}
#pankuzu_wrap > div {
	width: var(--content-width, 1080px);
	margin: 0px auto 7px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.pankuzu,
#footstep {
	position: relative;
	padding-left: 5.8rem;
}
.pankuzu .icon_current {
	display: none;
}
.pankuzu:first-child .icon_current,
#footstep_ttl {
    display: block;
    width: 4rem;
    height: 1.8rem;
    background: #ebed7a;
    color: #333333;
    font-size: 1rem;
    line-height: 1;
    padding: 0.4rem 0px;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: 3px;
    left: 0px;
    border-radius: 2px;
}
#clear_footstep {
    width: 20px;
    height: 20px;
	display: inline-block;
	vertical-align: middle;
    border-radius: 100%;
    background: url("/img/sites/promotion/pc/icon_clear.png") no-repeat center center;
    border: none;
	margin: 0px 0px 3px 9px;
	color: #333333;
}

/* ========== 見出し / 表 ========== */

/* 見出し */
/* 見出し */
#main_header {
	margin-bottom: 30px;
}
#main_header h1 {
    margin: 0px;
    padding: 39px 39px 20px;
    font-size: 3.2rem;
    line-height: 1.5;
    color: #333;
    border: 1px solid #d0d0d0;
    border-bottom: 10px solid #ebed7a;
    position: relative;
}
.tpl_site_detail #main_header h1 {
	padding: 30px 39px 17px;
}
#main_header h1::after {    
    height: 10px;
    bottom: -10px;
    right: -1px;
}
#main_body :where(h2,h3,h4,h5,h6) {
	clear: both;
	margin: 30px 0px;
	color: #333;
}
#main_body h2 {
	padding: 20px 40px 17px;
	background: #ebed7a;
	font-size: 2.6rem;
	line-height: 1.5;
	position: relative;
}
#main_body h2::after {
    content: "";
    position: absolute;
    border-left: 19px solid transparent;
    border-right: 19px solid transparent;
    border-top: 16px solid #ebed7a;
    bottom: -16px;
    left: 60px;
}
#main_body h3 {
	padding: 13px 40px 10px;
	font-size: 2.4rem;
	line-height: 1.5;
	border-top: 2px solid #ebed7a;
	border-bottom: 4px solid #ebed7a;
	position: relative;
}
#main_header h1::after,
#main_body h3::before,
#main_body h3::after {
    content: "";
    position: absolute;
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(174, 232, 245, 1)), color-stop(50%, rgba(255, 208, 217, 1)));
    background: -o-linear-gradient(left, rgba(174, 232, 245, 1) 50%, rgba(255, 208, 217, 1) 50%);
    background: linear-gradient(90deg, rgba(174, 232, 245, 1) 50%, rgba(255, 208, 217, 1) 50%);
	width: 50%;
}
#main_body h3::before {
    height: 2px;
    right: 0px;
    top: -2px;
}
#main_body h3::after {
    height: 4px;
    right: 0px;
    bottom: -4px;
}
#main_body h4 {
	padding: 11px 38px 9px 40px;
	background: #ffe7ec;
	font-size: 2.2rem;
	line-height: 1.5;
}
#main_body h5 {
	padding: 7px 35px 7px 40px;
	font-size: 2rem;
	position: relative;
}
#main_body h5::before {
    content: "";
    position: absolute;
    width: 129px;
    height: 4px;
    background: -webkit-gradient(linear,left top, right top,color-stop(33%, rgba(235, 237, 122, 1)), color-stop(33%, rgba(255, 208, 217, 1)), color-stop(67%, rgba(255, 208, 217, 1)), color-stop(67%, rgba(174, 232, 245, 1)));
    background: -o-linear-gradient(left,rgba(235, 237, 122, 1) 33%, rgba(255, 208, 217, 1) 33%, rgba(255, 208, 217, 1) 67%, rgba(174, 232, 245, 1) 67%);
    background: linear-gradient(90deg,rgba(235, 237, 122, 1) 33%, rgba(255, 208, 217, 1) 33%, rgba(255, 208, 217, 1) 67%, rgba(174, 232, 245, 1) 67%);
    bottom: 0px;
    left: 0px;
}
#main_body h6 {
	padding: 6px 40px 5px;
	font-size: 1.8rem;
	line-height: 1.5;
	position: relative;
}
#main_body h6::before {
    content: "";
    position: absolute;
    width: 32px;
    height: 4px;
    background: #ebed7a;
    left: 0px;
    top: 0.94em;
}

/* テーブル */
#main_body table {
	border-color: #8e8e8e;
	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: #e1f5fa;
	color: #333333;
	border-color: #8e8e8e;
	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: #8e8e8e;
	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: 40px;
	padding-bottom: 60px;
}

/* コンテンツヘッダ */
#content_header {	
	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;
	margin: 0px 0px 20px;
	font-size: 1.4rem;
	line-height: 1;
}
#content_header > span {
	margin-left: 25px;
}

/* コンテンツフッタ */
#content_footer {
	clear: both;
}

/* 印刷 */
#print_mode_link, 
#print_mode_link_large {
    display: inline-block;
    background: url("/img/sites/promotion/pc/icon_print.png") no-repeat left center;
    padding: 3px 0px 3px 23px;
    font-size: 1.5rem;
}

/* 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: 28px 20px 0px 0px;
}
#calendar_button_google a,
#calendar_button_yahoo a {
	display: inline-block;
	font-size: 1.6rem;
	line-height: 1;
	padding: 5px 0px 5px 40px;
	background: url("/img/sites/promotion/pc/icon_calendar.png") no-repeat left center;
}

/* 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: 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.3rem;
	line-height: 1.4;
	letter-spacing: 0em;
}

/* 評価エリア */
#hyouka_area_box {
	clear: both;
	margin: 30px 0px 0px;
	padding: 27px 32px;
	border: 3px solid #ebed7a;
}
#hyouka_area_box h2,
#main_body #hyouka_area_box h2 {
	margin: 0px 0px 40px;
	padding: 0px;
	border: none;
	border-radius: 0;
	background: none;
	color: inherit;
	font-size: 2rem;
	line-height: 1;
}
#main_body #hyouka_area_box h2::after {
	display: none;
}
#main_body #hyouka_area_box hr.cf {
	margin: 0px;
}
.hyouka_area_ans {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
#hyouka_area_box .hyouka_box_detail {
	border-bottom: 1px solid #ebed7a;
	margin-bottom: 20px;
	padding-bottom: 18px;
	font-size: 1.6rem;
	line-height: 1.2;
}
#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;
	display: contents;
}
#hyouka_area_box .hyouka_box_detail fieldset legend {
	padding: 0px;
	width: 475px;
}
#hyouka_area_box .hyouka_box_detail fieldset span {
	display: inline-block;
	vertical-align: top;
	color: #000000;
}
#hyouka_area_box .hyouka_box_detail fieldset span:first-of-type {
	width: 210px;
}
#hyouka_area_box .hyouka_box_detail fieldset span:nth-of-type(2) {
    width: 90px;
}
#hyouka_area_box .hyouka_box_detail fieldset span:last-of-type {
    width: 235px;
}
.font_size_changed #hyouka_area_box .hyouka_box_detail fieldset legend {
    width: 440px;
    margin-right: 35px;
}
.font_size_changed #hyouka_area_box .hyouka_box_detail fieldset span:first-of-type {
	width: 220px;
}
.font_size_changed #hyouka_area_box .hyouka_box_detail fieldset span:nth-of-type(2) {
    width: 120px;
}
.font_size_changed #hyouka_area_box .hyouka_box_detail fieldset span:last-of-type {
    width: 194px;
}
#hyouka_area_box .hyouka_box_detail fieldset span input {
	margin: 0px 8px 4px 0px;
	vertical-align: middle;
	-webkit-appearance: none;
    width: 14px;
    height: 14px;
    border: 1px solid #707070;
    border-radius:50%;
    outline:none;
    background: none;
    position: relative;
}
#hyouka_area_box .hyouka_box_detail fieldset span input[type='radio']:before {
    content:'';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
#hyouka_area_box .hyouka_box_detail fieldset span input[type='radio']:checked:before {
    background: #3c3c3c;
}
#hyouka_area_submit {
	margin-top: 20px;
}
#hyouka_area_submit input {
	display: inline-block;
	border: none;
	background: url("/img/sites/promotion/pc/icon_arrow.png")no-repeat right 30px center #ebed7a;
	color: #333333;
	padding: 12px;
	font-size: 1.6rem;
	line-height: 1;
	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: 24px 29px;
	border: 1px solid #d0d0d0;
}
#section_footer h2,
#main_body #section_footer h2 {
	margin: 0px 0px 28px;
	padding: 0px;
	border: none;
	border-radius: 0;
	background: none;
	color: inherit;
	font-size: 1.8rem;
	line-height: 1;
}
#main_body #section_footer h2::after {
	display: none;
}
#main_body #section_footer hr.cf {
	margin: 0px;
}
#section_footer_detail {
    font-size: 1.6rem;
    line-height: 1.5;
}
#section_footer_detail span {
	display: inline-block;
	vertical-align: top;
	margin-right: 1em;
	margin-bottom: 10px;
}
#section_footer_detail span[class*="sf_name"] {
	font-weight: bold;
}

/* おすすめコンテンツ */
#osusume_contents_area {
	clear: both;
	margin: 30px 0px;
}
#osusume_contents_area .second_osusume {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	padding: 40px 55px 40px 50px;
	background: #ffe7ec;	
}
#osusume_contents_area .second_osusume h2 {    
    position: relative;
    z-index: 1;
	margin: 0px;
    color: inherit;
}
#osusume_contents_area .second_osusume h2::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ffeff2;
    border-radius: 50%;
    top: 0px;
    left: 0px;
    z-index: -1;
}
#osusume_contents_area .second_osusume h2 span {
	display: block;
	font-size: 2rem;
	font-weight: normal;
	line-height: 1;
	letter-spacing: 0px;
	width: 191px;
	padding: 103px 0px 68px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	text-align: center;
	background: url("/img/sites/promotion/pc/icon_osusume.png")no-repeat top 48px center;
}
#osusume_contents_area .second_osusume 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: 40px;
}
#osusume_contents_area .second_osusume ul li {
	width: 218px;
}
#osusume_contents_area .second_osusume ul li div > span {
	display: block;
	font-size: 1.6rem;
	line-height: 1.5;
}
#osusume_contents_area .second_osusume ul li div > span.osusume_img {
	margin-bottom: 12px;
}
#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;
}

/* レコメンド・AIレコメンド */
#recommend_tag,
#ai_recommend_tag {
    margin: 30px 0px;
}
#sidebar_recommend,
#sidebar_ai_recommend {
	background: #f3f3f3;
	padding: 30px 35px 26px;
}
#recommend_title,
#ai_recommend_title {
	text-align: left;
}
#recommend_title h2,
#ai_recommend_title h2 {
	font-size: 2rem;
	line-height: 1;
	padding: 0 0 16px;
	margin: 0 0 16px;
	border-bottom: 2px solid #222222;
}
#sidebar_recommend ul,
#sidebar_ai_recommend ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
#sidebar_recommend ul li,
#sidebar_ai_recommend ul li {
	font-size: 1.8rem;
	line-height: 1.5;
	margin-bottom: 10px;
	padding-left: 27px;
	position: relative;
}
#sidebar_recommend ul li::before,
#sidebar_ai_recommend ul li::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: #838383;
    border-radius: 50%;
    top: 0.57em;
    left: 4px;
}
#sidebar_recommend ul li:last-child,
#sidebar_ai_recommend ul li:last-child {
    margin-bottom: 0px;
}

/* 関連リンク */
#kanren_link {
    background: #e1f5fa;
    padding: 24px 35px;
    margin: 30px 0px;
}
#kanren_link h2 {
	margin: 0px 0px 20px;
	font-size: 2rem;
	line-height: 1;
	text-align: left;
	padding: 6px 0px 15px 47px;
	border-bottom: 2px solid #222222;
	background: url("/img/sites/promotion/pc/icon_link.png")no-repeat left 6px top;
}
#kanren_link ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
#kanren_link ul li {
	margin-bottom: 10px;
	position: relative;
	font-size: 1.8rem;
	line-height: 1.5;
	padding-left: 23px;
}
#kanren_link ul li::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: #838383;
    border-radius: 50%;
    top: 0.5em;
    left: 0px;
}
#kanren_link ul li:last-child {
	margin-bottom: 0px;
}

/* 「見つからないときは」「よくある質問」バナー */
.common_banner_link {
    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;
}
.common_banner_link ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
.common_banner_link *[class*="common_banner_"] {
	width: calc(50% - 5px);
}
.common_banner_link a {
	display: block;
	border: 1px solid transparent;
	background: #ebed7a;
	color: #333333;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1;
	padding: 20px 5px 18px;
	text-align: center;
}
.common_banner_link a > span {
	display: inline-block;
	padding: 6px 0px 5px 45px;
	color: inherit;
}
.common_banner_link .common_banner_mitsukaranai a > span {
	background: url("/img/sites/promotion/pc/icon_mitsukaranai.png") no-repeat left center;
}
.common_banner_link .common_banner_faq a > span {
	background: url("/img/sites/promotion/pc/icon_faq.png") no-repeat left center;
}
.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;
}

/* ========== リスト ========== */

/* リスト（一覧） */
.info_list ul {
	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: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 30px;
	margin: 43px 0px 0px;
	padding: 0px;
	list-style: none;
}
.info_list ul li {
    width: 340px;
    padding: 27px 34px 33px;
    border: 1px solid #d0d0d0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.tpl_site_list_2 .info_list ul {
	gap: 20px 40px;
    margin: 40px 0px;
}
.tpl_site_list_2 .info_list ul li {
    width: 520px;
    font-size: 2.4rem;
    line-height: 1.5;
    padding: 27px 50px 26px 86px;
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.tpl_site_list_2 .info_list ul li::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 4px;
    background: #ebed7a;
    left: -1px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

/* リスト（日付） */
.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 .article_img {
    width: 270px;
}
.list_pack .article_img span {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 270 / 180;
    overflow: hidden;
}
.list_pack .article_img span:empty {
	background: url("/img/sites/promotion/pc/noimage.png") no-repeat center center #f3f2f1;
}
.list_pack .article_img span img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
	-o-object-position: center;
	   object-position: center;
}
.info_list .list_pack .article_txt span {
	display: block;
	font-size: 1.8rem;
	line-height: 1.5;
}
.info_list .list_pack .article_txt span.article_date {
	padding: 20px 0 10px;
 	line-height: 1;
 	color: #333333;
}

/* ========== 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 #he_left #header_logo img {
	padding: 5px;
	background: #fff !important;
}

.color_change #btn_pagetop,
.color_change .ul-widget-main-window,
.color_change #mymainback #hyouka_area_box h2, 
.color_change #main_body #hyouka_area_box h2
.color_change #section_footer h2, 
.color_change #main_body #section_footer h2,
.color_change #mymainback #recommend_title, 
.color_change #mymainback #ai_recommend_title,
.color_change #recommend_title h2, 
.color_change #ai_recommend_title h2,
.color_change #osusume_contents_area .second_osusume h2 {
    background: transparent !important;
}
.color_change #tmp_query, 
.color_change #open_page_id {
	outline: none !important;
}
.color_change #gnav_search ul li a:before {
	content: none;
}
.color_change .list_pack .article_img span:empty {
	background-color: #f3f2f1 !important;
}
.color_change #author_link span a,
.color_change #kanren_link,
.color_change #recommend_tag, 
.color_change #ai_recommend_tag,
.color_change #osusume_contents_area,
.color_change #header_search {
	border: 1px solid rgba(255, 255, 255, 0.5);
}
.color_change ul.header_nav li.h_lang a {
	background-image: url(/img/sites/promotion/pc/color_lang.png);
}
.color_change ul.header_nav li.h_easy a {
	background-image: url(/img/sites/promotion/pc/color_easy.png);
}
.color_change ul.header_nav li.h_read a {
	background-image: url(/img/sites/promotion/pc/color_speaker.png);
}
.color_change #support_ttl {
	background-image: url(/img/sites/promotion/pc/color_gear.png);
}
.color_change #btn_kaiyu_open {
	background: url(/img/common/icon_arrow_kaiyu.png) no-repeat right 13px bottom 8px #00b0ef !important;
    color: #000000 !important;
}
.color_change #content_footer #calendar_button_google a, 
.color_change #content_footer #calendar_button_yahoo a {
	background: url(/img/sites/promotion/pc/color_calendar.png) no-repeat left center !important;
}
.color_change #kanren_link h2 {
	background: url(/img/sites/promotion/pc/color_icon_link.png) no-repeat left top !important;
}
.color_change #osusume_contents_area .second_osusume h2 span {
    background-image: url(/img/sites/promotion/pc/color_icon_osusume.png);
}
.color_change #mymainback .common_banner_mitsukaranai a > span {
	background: url(/img/sites/promotion/pc/color_mitsukaranai.png) no-repeat left center !important;
}
.color_change #mymainback .common_banner_faq a > span {
	background: url(/img/sites/promotion/pc/color_faq.png) no-repeat left center !important;
}


/* 黒 */
.color_black * {

}
/* 青 */
.color_blue * {

}

/* ========== 印刷ページ ========== */

/* 印刷プレビュー */
.view_print_mode #kanren_link,
.view_print_mode #recommend_tag,
.view_print_mode #ai_recommend_tag,
.view_print_mode .common_banner_link {
	display: none !important;
}

/* ==================================================
背景色変更 / 印刷ページ ここまで
================================================== */


/* ==================================================
スマートフォン
================================================== */
@media screen and (max-width: 1080px) {

	/* var() 関数 */
	:root {
		/* フォントサイズ */
		--fontsize-main: 1.4rem;
		/* 一段階小さいフォントサイズ（一覧をみるボタンなど） */
		--fontsize-main-small: 1.3rem;
		/* 本文（ #main ） */
		--fontsize-detail: 1.5rem;
		/* 本文の一段階小さいフォントサイズ（日付など） */
		--fontsize-detail-small: 1.4rem;

		/* #mymainbackの左右余白 */
		--mymainback-margin-side: 15px;
	}
	@media screen and (max-width: 370px) {
		:root {
			/* 本文（ #main ） */
			--fontsize-detail: 1.4rem;
			/* 本文の一段階小さいフォントサイズ（日付など） */
			--fontsize-detail-small: 1.3rem;
			/* #mymainbackの左右余白 */
			--mymainback-margin-side: 10px;
		}
	}
	/* var() 関数 ここまで */

	/* ========== レイアウト ========== */

	/* 全体 */
	body {
		min-width: 320px;
		margin: 0px;
		padding: 0px;
		-webkit-text-size-adjust: none;
		   -moz-text-size-adjust: none;
		    -ms-text-size-adjust: none;
		        text-size-adjust: none;
	}

	#container {
		float: none;
		width: 100%;
		min-width: 320px;
		margin: 0px;
		padding: 0px;
		overflow: hidden;
	}

	/* ヘッダ */
	#header {
		width: auto;
		height: auto;
		margin: 0px;
		padding: 0px;
	}

	/* フッタ */
	#footer {
		clear: both;
		width: auto;
		height: auto;
		margin: 0px;
		padding: 0px;
	}

	/* メイン */
	#mymainback {
		clear: both;
		float: none;
		width: auto;
		margin: 0px;
		padding: 0px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-ms-flex-wrap: nowrap;
		    flex-wrap: nowrap;
	}

	#main,
	.tpl_side1 #main,
	.tpl_side2 #main,
	.tpl_side1.tpl_side2 #main {
		-webkit-box-ordinal-group: 11;
		-ms-flex-order: 10;
		order: 10;
		clear: both;
		float: none;
		width: auto;
		margin: 0px;
		padding: 0px;
	}
	#main_a,
	.tpl_side1 #main_a,
	.tpl_side2 #main_a,
	.tpl_side1.tpl_side2 #main_a {
		margin: 0px;
		padding: 0px;
	}

	/* サイド */
	#sidebar1 {
		-webkit-box-ordinal-group: 12;
		-ms-flex-order: 11;
		order: 11;
		clear: both;
		float: none;
		width: auto;
		margin: 0px;
		padding: 0px;
	}

	#sidebar2 {
		-webkit-box-ordinal-group: 13;
		-ms-flex-order: 12;
		order: 12;
		clear: both;
		float: none;
		width: auto;
		margin: 0px;
		padding: 0px;
	}

	/* パンくずをフッタ上に表示 */
	#mymainback_bg {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-ms-flex-wrap: nowrap;
		    flex-wrap: nowrap;
	}
	#mymainback_bg > * {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}
	#mymainback_bg > #pankuzu_wrap {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}

	/* ========== 基本設定 ========== */

	/* フォント */
	body,
	button,
	input[type="button"],
	input[type="submit"],
	input[type="text"],
	textarea,
	select {
		font-size: var(--fontsize-main, 1.4rem);
	}

	#main {
		font-size: var(--fontsize-detail, 1.5rem);
	}

	/* レスポンシブアコーディオン用 */
	input[id*="acc_ttl_label"] + *,
	input[id*="acc_ttl_label"] + .acc_title + * {
		display: none;
	}
	input[id*="acc_ttl_label"] + .acc_title,
	input[id*="acc_ttl_label"]:checked + *,
	input[id*="acc_ttl_label"]:checked + .acc_title + * {
		display: block;
	}

	label[for*="acc_ttl_label"] {
		display: block;
		cursor: pointer;
		background: url("/img/sp/acc_open.png") no-repeat right 20px top 50% transparent;
		background-size: 15px 15px;
		padding-right: 40px;
	}
	.acc_open label[for*="acc_ttl_label"] {
		background-image: url("/img/sp/acc_close.png");
	}

	.color_change label[for*="acc_ttl_label"] {
		background-image: url("/img/sp/acc_open_white.png");
	}
	.color_change .acc_open label[for*="acc_ttl_label"] {
		background-image: url("/img/sp/acc_close_white.png");
	}

	.no_acc_title label[for*="acc_ttl_label"] {
		background: none !important;
		padding-right: 0px;
	}

	/* レスポンシブアコーディオン用（class付与） */
	.acc_title.accordion {
		pointer-events: auto;
	}
	.acc_title.accordion:focus {
		outline: auto;
	}

	.acc_title.accordion + * {
		display: none;
	}
	.acc_title.accordion.acc_open + * {
		display: block;
	}

	.acc_title.accordion .accordion_icon {
		display: block;
		cursor: pointer;
		background: url("/img/sp/acc_open.png") no-repeat right 20px top 50% transparent;
		background-size: 15px 15px;
		padding-right: 40px;
	}
	.acc_title.accordion.acc_open .accordion_icon {
		background-image: url("/img/sp/acc_close.png");
	}

	.color_change .acc_title.accordion .accordion_icon {
		background-image: url("/img/sp/acc_open_white.png");
	}
	.color_change .acc_title.accordion.acc_open .accordion_icon {
		background-image: url("/img/sp/acc_close_white.png");
	}

	/* レスポンシブアコーディオン用（index2） */
	.index-2 .section_information input[id*="acc_ttl_label"] + *,
	.index-2 .section_information input[id*="acc_ttl_label"] + .acc_title,
	.index-2 .section_information input[id*="acc_ttl_label"] + .acc_title + *,
	.index-2 .section_information input[id*="acc_ttl_label"]:checked + *,
	.index-2 .section_information input[id*="acc_ttl_label"]:checked + .acc_title + *,
	.index-2 .section_information .acc_title.accordion + *,
	.index-2 .section_information .acc_title.accordion.acc_open + * {
		display: block;
	}
	.index-2 .section_information label[for*="acc_ttl_label"],
	.index-2 .section_information .acc_title.accordion .accordion_icon {
		background: none !important;
		padding-right: 0px;
		pointer-events: none;
	}

	/* ========== ヘッダ ========== */
	/* ボトムナビゲーション */
	#spm_wrap {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: nowrap;
		    flex-wrap: nowrap;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		-webkit-box-align: stretch;
		    -ms-flex-align: stretch;
		        align-items: stretch;
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 999;
		width: 100%;
		background: #b4b4b4;
	}
	#spm_wrap button {
		display: block;
		width: 100%;
		height: 59px;
		-webkit-box-sizing: border-box;
		        box-sizing: border-box;
		margin: 0 0 0 1px;
		padding: 0px;
		border: none;
		text-align: left;
		text-indent: -9999em;
		overflow: hidden;
		color: #fff;
	}
	#spm_wrap button#btn_spm_kaiyu {
		color: #333;
		margin: 0;
		background: url(/img/sites/promotion/sp/kaiyu_btn.png) no-repeat top 16px center #00b0ef;
        background-size: 56px auto;
	}
	#spm_wrap button#btn_spm_kaiyu:before {
		content: "";
        position: absolute;
        width: 48px;
        height: 25px;
        top: -11px;
        left: 7px;
        background: url(/img/sites/promotion/sp/yama.png) no-repeat;
        background-size: 48px auto;
	}
	.spm_kaiyu_open #spm_wrap button#btn_spm_kaiyu {
		background-image: url(/img/sites/promotion/sp/kaiyu_close_btn.png) !important;
        background-size: 38px auto !important;
	}
	#spm_wrap button#btn_spm_menu {
		background: url(/img/sites/promotion/sp/menu_btn.png) no-repeat center center #454545;
        background-size: 49px auto;
	}
	#spm_wrap button#btn_spm_search {
		background: url(/img/sites/promotion/sp/search_btn.png) no-repeat center center #454545;
		background-size: 39px auto;
	}
	#spm_wrap button#btn_spm_hojo {
		background: url(/img/sites/promotion/sp/hojo_btn.png) no-repeat center center #454545;
		background-size: 53px auto;
	}
	.spm_menu_open #spm_wrap button#btn_spm_menu,
	.spm_search_open #spm_wrap button#btn_spm_search,
	.spm_hojo_open #spm_wrap button#btn_spm_hojo {
		background-image: url(/img/sites/promotion/sp/close_btn.png);
        background-size: 37px auto;
	}
	#container.spm_menu_open,
	#container.spm_search_open,
	#container.spm_hojo_open,
	#container.spm_kaiyu_open {
		position: fixed;
	}

	/* ヘッダ検索 */
	#search_btn {
		display: none;
	}
	#header2 {
		width: auto;
	}
	#he_left {
		position: static;
		padding: 13px 20px 10px;
	}
	#he_left #header_logo {
		width: 169px;
	}
	

	/* 閲覧補助（展開） */
	#he_right {
		position: fixed;
		width: 100%;
		height: calc(100% - 44px);
		top: 100%;
		left: 0;
		margin: 0;
		padding: 70px 20px 100px 40px;
		background-color: rgba(174, 232, 245,0.9);
	    z-index: 998;
		-webkit-box-sizing: border-box;
		        box-sizing: border-box;
		-webkit-transition: .5s translate;
	    		transition: .5s translate;
		overflow-y: auto;
		-ms-scroll-chaining: none;
		    overscroll-behavior: none;
	}
	.spm_hojo_open #he_right {
		translate: 0 -100%;
	}
	@media screen and (max-width: 335px) {
		#he_right {
			padding: 70px 15px 100px;
		}
	}

	/* ヘッダメニュー */
	ul.header_nav {
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
    	justify-content: flex-start;
	    gap: 30px 50px;
	    margin: 0 0 30px;
        max-width: 320px;
	}
	ul.header_nav li.h_main {
		display: none !important;
	}
	ul.header_nav li {
		line-height: 1.5;
		margin: 0 !important;
	}
	ul.header_nav li.h_lang a {
		padding: 2px 0 2px 26px;
		background: url(/img/sites/promotion/sp/lang_icon.png) no-repeat left center;
	    background-size: 19px auto;
	}
	ul.header_nav li.h_easy a {
		padding: 2px 0 2px 26px;
	    background: url(/img/sites/promotion/sp/easy_icon.png) no-repeat left center;
	    background-size: 20px auto;
	}
	ul.header_nav li.h_read a {
	    padding: 2px 0 2px 27px;
    	background: url(/img/sites/promotion/sp/speaker_icon.png) no-repeat left center;
    	background-size: 22px auto;
	}

	/* アクセシビリティ機能 */
	#support_menu_box {
		width: auto;
	    max-width: 100%;
	    display: block;
	    background: none;
	    padding: 0;
	}
	#support_ttl {
		display: none;
	}
	dl#moji_size, dl#haikei_color {
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
	    justify-content: flex-start;
	    margin: 0 0 35px;
	}
	dl#moji_size dt, dl#haikei_color dt {
		color: #222222;
	    font-size: 1.4rem;
	    padding: 9.5px 0;
        margin-right: 18px;
	}
	dl#moji_size dt {
	    font-weight: bold;
	    margin-right: 21px;
	}
	dl#moji_size dd, dl#haikei_color dd {
		margin: 0px 0px 0px 13px;
	}
	dl#moji_size dd a, dl#haikei_color dd a {
		color: #333333;
	    font-size: 1.6rem;
	    border: 1px solid #818181;
        padding: 7px 11px;
        font-weight: bold;
	}
	dl#moji_size dd a#moji_default {
	    padding: 7px 15px;
	}
	dl#moji_size dd a#moji_large {
		font-size: 1.8rem;
		padding: 5.5px 13px;
	}
	dl#haikei_color dd a#haikei_blue {
		color: #fcee21 !important;
	}

	/* 検索（展開） */
	#header_search {
		display: block;
		width: 100%;
		height: calc(100% - 44px);
		top: 100% !important;
		left: 0;
		z-index: 998;
		padding: 44px 0px 100px;
		border: none !important;
        -webkit-transition: .5s translate;
        		transition: .5s translate;
		overflow-y: auto;
		-ms-scroll-chaining: none;
		    overscroll-behavior: none;
	}
	.spm_search_open #header_search {
		translate: 0 -100% !important;
	}
	

	/* キーワード検索 . ページID検索 */
	#top_search_keyword {
		min-width: 277px;
		width: calc(100% - 97px);
		margin: 0 auto 22px;
	}
	#top_search_page_id {
		min-width: 277px;
		width: calc(100% - 97px);
    	margin: 0 auto;
	}
	#cse-search-box .search_ttl, #open_page_id_box .search_ttl {
		font-size: 1.2rem;
	    margin: 0 0 7px;
	}
	#cse-search-box .search_ipt, #open_page_id_box .search_ipt {
		width: auto;
        border-radius: 5px;
	}
	#tmp_query, #open_page_id {
		border-radius: 5px 0 0 5px;
	    width: calc(100% - 52px) !important;
	    height: 45px !important;
	}
	#submit, #open_page_id_submit {
		min-width: 52px;
    	height: 45px;
    	font-size: 1.4rem;
	    border-radius: 0 5px 5px 0;
	    background: url(/img/sites/promotion/sp/submit_btn.png) no-repeat center center #4b4b4b;
        background-size: 24px auto;
	}
	#cse_filetype {
		margin-top: 10px;
	}
	#cse_filetype fieldset span {
		margin-right: 20px;
    	font-size: 1.2rem;
	}
	#cse_filetype fieldset span input {
	    width: 12px;
    	height: 12px;
	    margin: 0px 5px 2px 0px;
	}
	#cse_filetype fieldset span input[type='radio']:checked {
		border: 1px solid #3a7af6;
    	background: #fff;
	}
	#cse_filetype fieldset span input[type='radio']:before {
		width: 6px;
	    height: 6px;
	}
	#cse_filetype fieldset span input[type='radio']:checked:before {
	    background: #3a7af6;
	}
	#open_page_id_link {
		margin: 15px 0 0;
    	font-size: 1.2rem;
    	letter-spacing: 0.05em;
	}

	/* グローバルナビ */
	#gnav_search {
		width: 100%;
		height: calc(100% - 44px);
		position: fixed;
		left: 0;
        top: 100%;
		z-index: 998;
		background: #fff;
		-webkit-box-sizing: border-box;
		        box-sizing: border-box;
		margin: 0px;
		padding: 70px 0 100px !important;
		overflow-y: auto;
		-ms-scroll-chaining: none;
		    overscroll-behavior: none;
            -webkit-transition: .5s translate;
        transition: .5s translate;
	}
	.spm_menu_open #gnav_search {
		translate: 0 -100%;
	}
	#gnav_search ul {
		gap: 5px;
	}
	#gnav_search ul li {
		width: calc(50% - 33px) !important;
		min-width: unset !important;
		border: 1px solid #434343 !important;
	}
	#gnav_search ul.navi_menu li:before, 
	#gnav_search ul.navi_menu li:nth-child(4)::after {
		content: none;
	}
	#gnav_search ul li a:before {
		width: 20px;
		height: 10px;
		bottom: 10px !important;
	}
	#gnav_search ul li a {
		text-align: center;
		padding: 80px 5px 30px !important;
		font-size: 1.8rem;
		line-height: 2.8rem;
	}
	ul.navi_list li a span.small,
	ul.navi_menu li a span.small {
		font-size: 1.6rem;
	}
	ul.navi_menu li:nth-child(1) a,
	ul.navi_list li:nth-child(1) a {
		background-position: center 25px;
	}
	ul.navi_menu li:nth-child(2) a,
	ul.navi_list li:nth-child(2) a {
		background-position: center 25px;
	}
	ul.navi_menu li:nth-child(3) a,
	ul.navi_list li:nth-child(3) a {
		background-position: center 25px;
	}
	ul.navi_menu li:nth-child(4) a,
	ul.navi_list li:nth-child(4) a {
		background-position: center 25px;
	}
	@media screen and (max-width: 360px) {
		#gnav_search ul li {
			width: calc(50% - 20px) !important;
		}
	}

	/* サブサイト共通ヘッダ */
	#mainimg {
		width: auto;
		margin: 15px var(--mymainback-margin-side, 15px) 0px;
	}
	#mainimg_box .site_name {
		position: static;
		font-size: 1.8rem;
		background: #333333;
		color: #ffffff;
		text-shadow: none;
		padding: 5px 20px;
	}
	#mainimg_box .site_name.noimage {
		background: #f6f6f6;
		color: #333333;
		text-shadow: none;
		padding: 20px;
	}

	/* メニューへのリンク */
	.link_to_subsitemenu {
		display: block;
		margin: var(--mymainback-margin-top, 15px) var(--mymainback-margin-side, 15px);
	}
	.link_to_subsitemenu a {
		display: block;
		font-size: var(--fontsize-main-small, 1.3rem);
		border: 1px solid #333333;
		border-radius: 5px;
		background: #eeeeee;
		color: #333333;
		text-decoration: none;
		padding: 10px;
		text-align: center;
	}
	.link_to_subsitemenu a span {
		display: inline-block;
		padding-right: 20px;
		position: relative;
	}
	.link_to_subsitemenu a span::before {
		content: '';
		width: 0px;
		height: 0px;
		border: 7px solid transparent;
		border-bottom-width: 0px;
		border-top-width: 9px;
		border-top-color: #333333;
		position: absolute;
		top: 50%;
		right: 0px;
		-webkit-transform: translateY(-50%);
		    -ms-transform: translateY(-50%);
		        transform: translateY(-50%);
	}
	.color_change .link_to_subsitemenu a span::before {
		border-top-color: #ffffff;
	}

	/* ========== フッタ ========== */

	

	/* ページトップ（フローティング表示） */
	#btn_pagetop {
		width: 45px;
        right: 10px;
	}
	#btn_pagetop.fixed {
		bottom: 70px;
	}

	/* フッタナビ */
	.footer_navi {
        width: calc(100% - 9px);
        margin: 0 auto;
	    padding: 0;
	}
	.footer_navi ul {
		padding: 40px 0 10px;
		margin: 0 calc(25% - 78px);
	}
	@media (max-width: 358px) {
		.footer_navi ul{
			margin: 0 calc(25% - 82px);
		}
	}
	.footer_navi ul li {
		font-size: 1.2rem;
        padding-right: 11px;
        margin: 0 11px 15px 0;
	}

	/* 管理者情報 */
	#author_info {
		display: block;
		width: auto;
	    margin: 0 10px;
	    padding: 0;
	}
	#city_logo {
	    width: 100px;
	    margin: 0 auto;
	    text-align: center;
	}
	#city_logo img {
		max-width: 100%;
		height: auto;
	}
	#author_box {
        width: auto;
        margin: 0 12px;
	    padding: 30px 0 0;
	}
	#author_box p {
	    font-size: 1.2rem;
	    line-height: 1.6;
	}
	@media (max-width: 360px) {
		#author_box {
            margin: 0 5px;
		}
		#author_box p {
			font-size: 1.1rem;
		}
	}
	@media screen and (orientation: landscape) {
		.footer_navi ul {
			max-width: 340px;
			margin: 0 auto;
		}
		#author_box {
			margin: 0 auto;
    		max-width: 325px;
		}
	}
	#author_box p.f_author {
		text-align: center;
	    font-size: 1.8rem;
        letter-spacing: 0.05em;
	}
	#author_box p.f_author a {
		font-size: 1.2rem;
	    background-size: 16px auto;
	    padding: 3px 0 6px 20px;
	    margin-left: 20px;
	}
	#author_box span {
	    display: block;
    	text-align: center;
	}
	#author_box span img {
		width: 115px;
	}
	#author_link {
		width: auto;
		margin: 35px 0;
	    text-align: center;
	}
	#author_link span {
		margin: 0 0 15px;
	}
	#author_link span a {
        display: inline-block;
        font-size: 1.2rem;
	    padding: 8px 38px 8px 28px;
	    border-radius: 15px;
	    background-size: 7px auto;
	    background-position: right 15px center;
	}
	#author_link span:last-child a {
		padding: 8px 37px 8px 27px;
	}
	/* コピーライト */
	#copyright {
		width: auto;
	    margin: 0 15px;
	    padding: 0 0 100px;
	}
	#copyright p {
		font-size: 1rem;
	}
	

	/* サブサイト共通フッタ */
	#site_footer {
		width: auto;
		margin: 0px var(--mymainback-margin-side, 15px) 40px;
	}
	#site_footer_box {
		padding: 20px;
	}

	/* ========== パンくず / 足あと ========== */

	/* パンくず・足あと */
	#pankuzu_wrap {
		font-size: 1.2rem;
	}
	#pankuzu_wrap > div {
		width: auto;
		margin-left: var(--mymainback-margin-side, 15px);
		margin-right: var(--mymainback-margin-side, 15px);
	}
	.pankuzu,
	#footstep {
		padding-left: 5rem;
	}
	.pankuzu:first-child .icon_current,
	#footstep_ttl {
		width: 4rem;
		font-size: 1rem;
		top: 0px;
	}

	/* 足あとを非表示 */
	#footstep_wrap {
		display: none !important;
	}

	/* ========== 見出し ========== */

	/* 見出し */
	#main_header {
		margin-bottom: 25px;
	}
	#main_header h1 {
        margin: 0px;
        padding: 17px 20px 14px !important;
        font-size: 2.4rem;
        border-bottom-width: 7px;
    }
	#main_header h1::after {
		height: 7px;
		bottom: -7px;
	}
	#main_body h2 {
		padding: 15px 20px;
		font-size: 2rem;
	}
	#main_body h2::after {
		border-left: 16px solid transparent;
		border-right: 16px solid transparent;
		border-top: 13px solid #ebed7a;
		bottom: -12px;
		left: 30px;
	}
	#main_body h3 {
		padding: 11px 20px;
		font-size: 1.9rem;
	}
	#main_body h4 {
		padding: 9px 20px 7px;
		font-size: 1.8rem;
	}
	#main_body h5 {
        padding: 6px 20px;
        font-size: 1.7rem;
    }
	#main_body h5::before {
		width: 95px;
	}
	#main_body h6 {
		padding: 3px 25px;
		font-size: 1.6rem;
	}
	#main_body h6::before {
		width: 17px;
		top: 0.85em;
	}
	#main_body :where(h2,h3,h4,h5,h6) {
		margin: 20px 0px;
	}

	/* ========== メイン ========== */

	/* メイン */
	#mymainback {
		margin: 15px var(--mymainback-margin-side, 15px) 30px;
	}

	/* コンテンツヘッダ */
	#content_header {
		display: block;
        text-align: right;
		font-size: var(--fontsize-main-small, 1.3rem);
	}
	#content_header > span {
        margin: 0 0 10px;
        display: block;
    }

	/* コンテンツフッタ */
	#content_footer {
		text-align: center;
	}
	/* テーブル表の幅対応 */
	#main_body .sp_large_table {
		width: 1000px;
        max-width: inherit;
	}
	/* 印刷 */
	#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: 25px 15px;
        border-width: 2px;
    }
	#hyouka_area_box h2,
	#main_body #hyouka_area_box h2 {
		font-size: 1.8rem;
		letter-spacing: 0em;
		margin: 0 0 20px;
	}
	@media screen and (max-width: 370px) {
		#hyouka_area_box h2,
		#main_body #hyouka_area_box h2 {
			font-size: 1.6rem;
		}
	}
	.hyouka_area_ans,
	#hyouka_area_box .hyouka_box_detail fieldset {
		display: block;
	}
	#hyouka_area_box .hyouka_box_detail {
		font-size: var(--fontsize-main-small, 1.3rem);
		margin-bottom: 15px;
    	padding-bottom: 7px;
	}
	#hyouka_area_box .hyouka_box_detail fieldset span {
		width: auto !important;
        margin: 0 1em 0.5em 0;
    }
	#hyouka_area_box .hyouka_box_detail fieldset legend {
		width: auto !important;
		margin: 0 0 10px;
	}

	#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 15px;
	}
	#section_footer h2,
	#main_body #section_footer h2 {
		font-size: 1.8rem;
        letter-spacing: 0em;
        margin: 0 0 20px;
	}
	#section_footer_detail {
		font-size: 1.5rem;
		letter-spacing: 0;
	}
	@media screen and (max-width: 370px) {
		#section_footer h2,
		#main_body #section_footer h2 {
			font-size: 1.6rem;
		}
	}

	/* おすすめコンテンツ */
	#osusume_contents_area .second_osusume {
		padding: 30px 20px;
	}
	#osusume_contents_area .second_osusume h2,
	#osusume_contents_area .second_osusume_ttl {
		font-size: 1.8rem;
		margin: 0px 0px 30px;
	}
	#osusume_contents_area .second_osusume h2::before {
		content: none;
	}
	#osusume_contents_area .second_osusume h2 span {
		padding: 0px 0px 0px 38px;
		width: auto;
		background-size: 27px auto;
		background-position: left center;
	}
	#osusume_contents_area .second_osusume ul {
		padding: 0px;
		gap: 16px;
	}
	#osusume_contents_area .second_osusume ul li {
		width: calc(50% - 8px);
	}

	/* ========== サイド ========== */

	/* サイドバー */
	#sidebar1,
	#sidebar2 {
		margin-top: 40px;
	}


	/* レコメンド・AIレコメンド */
	@media screen and (max-width: 370px) {
		#recommend_title h2,
		#ai_recommend_title h2 {
			font-size: 1.4rem;
		}
	}
	#sidebar_recommend,
	#sidebar_ai_recommend {
		padding: 25px 20px;
	}
	#recommend_title h2,
	#ai_recommend_title h2 {
		line-height: 1.2;
		padding: 0 10px 13px;
        font-size: 1.8rem;
	}
	#recommend_title h2 span,
	#ai_recommend_title h2 span{
		display: block;
	}
	@media screen and (orientation: landscape) {
		#recommend_title h2 span,
		#ai_recommend_title h2 span{
			display: inline-block;
		}
	}
	#sidebar_recommend ul li,
	#sidebar_ai_recommend ul li {
		font-size: 1.6rem;
		padding-left: 24px;
	}

	/* 関連リンク */
	#kanren_link {
		padding: 24px;
	}
	#kanren_link h2 {
        font-size: 1.8rem;
        background-size: 26px auto;
        padding-left: 40px;
        margin: 0px 0px 15px;
    }
	#kanren_link ul li {
		font-size: 1.7rem;
	}

	/* 「見つからないときは」「よくある質問」バナー */
	.common_banner_link a {
		font-size: 1.3rem;
		line-height: 1;
		padding: 10px 5px;
	}
	.common_banner_link a > span {
		padding: 6px 0px 5px 28px;
		color: inherit;
		background-size: 22px auto !important;
	}
	@media screen and (max-width: 320px) {
		.common_banner_link a > span {
			padding: 5px 0px 4px 18px;
			background-size: 18px auto !important;
			font-size: 1.2rem;
		}
	}

	/* ========== リスト ========== */

	/* リスト（一覧） */
	.tpl_site_list_2 .info_list ul {
		display: block;
		margin: 30px 0px 0px;
	}
	.tpl_site_list_2 .info_list ul li {
		width: auto;
		font-size: 1.8rem;
		padding: 20px 20px 17px 35px;
		display: block;
		margin: 0px 0px 20px;
	}
	.tpl_site_list_2 .info_list ul li::before {
		width: 27px;
	}
	.tpl_site_list_2 .info_list ul li:last-child {
		margin: 0px !important;
	}

	@media screen and (orientation: landscape) {
		.tpl_site_list_2 .info_list ul {
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
			gap: 20px;
		}
		.tpl_site_list_2 .info_list ul li {
			width: calc(50% - 10px);
			margin: 0px;
		}
	}

	/* リスト（担当課） */
	.article_section {
		display: block;
		text-align: right;
	}
	.article_section a {
		display: inline !important;
		background: none !important;
		padding-right: 0px !important;
		text-decoration: underline !important;
	}

	/* リスト（サムネイル） */
	.tpl_site_list1 .info_list ul {
		max-width: 640px;
		margin: 0px auto;
		gap: 20px;
	}
	.tpl_site_list1 .info_list ul li {
		width: calc(50% - 10px);
		max-width: 310px;
		padding: 20px;

	}
	.list_pack .article_img {
		width: 100%;
		max-width: 270px;
		margin: 0px auto;
	}
	.list_pack .article_img span:empty {
		background-size: auto 90px;
	}
	.info_list .list_pack .article_txt span.article_date {
		font-size: 1.4rem;
	}
	.info_list .list_pack .article_txt span.article_title {
		font-size: 1.6rem;
	}
	@media screen and (max-width: 670px) {
		.tpl_site_list1 .info_list ul {
			-webkit-box-pack: center;
			    -ms-flex-pack: center;
			        justify-content: center;
		}
		.tpl_site_list1 .info_list ul li {
			width: 100%;
		}
	}

	/* ========== 背景色変更 ========== */

	/* 共通 */
	.color_change #gnav_search, .color_change #header_search,
	.color_change #he_right, .color_change #kaiyu_banner {
	    border-top: 2px solid rgba(255, 255, 255, 0.9) !important;
	}
	.color_change #mymainback .common_banner_link a > span {
		background-size: 22px auto !important;
	}
	.color_change #kanren_link h2 {
		background-size: 26px auto !important;
	}
	.color_change #spm_wrap button#btn_spm_kaiyu:before {
		content: none;
	}
	.color_change #spm_wrap button#btn_spm_kaiyu {
		background-image: url(/img/sites/promotion/sp/color_kaiyu.png);
	}
	.color_change ul.header_nav li.h_lang a {
		background-image: url(/img/sites/promotion/sp/color_lang.png);
	}
	.color_change ul.header_nav li.h_easy a {
		background-image: url(/img/sites/promotion/sp/color_easy.png);
	}
	.color_change ul.header_nav li.h_read a {
		background-image: url(/img/sites/promotion/sp/color_speaker.png);
	}
	
	/* 黒 */
	.color_black * {

	}
	/* 青 */
	.color_blue * {

	}

	/* スマートフォン表示時の音声読み上げボタン 20260323 */
	ul.header_nav li {
		width: 100%;
		text-align: left;
	}
	ul.header_nav li.h_read #js_sound_btn {
		pointer-events: none !important;
		color: inherit !important;
		text-decoration: none !important;
	}

	.sound_box,
	#js_sound_btn.open ~ .sound_box {
		display: block;
		position: static;
		white-space: normal;
	}
	.tsutaeru-speech {
		text-align: left;
	}
	/* スマートフォン表示時の音声読み上げボタン 20260323 ここまで */

}
/* ==================================================
スマートフォン ここまで
================================================== */