@charset "utf-8";

/**********************************************************************************/
/* PC */
/**********************************************************************************/

/*=============== layout =============== */

/* 全体 */
html {
	font-size: 62.5%;
}
body {
	margin: 0px;
	padding: 0px;
	border: 0px;
	font-size: 1.6rem;
	line-height: 1.5;
}

#container {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;
	min-width: 1080px;
}

/* ヘッダ */
#header {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;
}

/* フッタ */
#footer {
	clear: both;
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;
	background: #b63131;
}

/* メイン */
#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: 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: 300px;
	margin: 0px;
	padding: 0px;
}

#sidebar2 {
	float: none;
	-webkit-box-ordinal-group: 13;
		-ms-flex-order: 12;
			order: 12;
	width: 300px;
	margin: 0px;
	padding: 0px;
}

.side1 #main {
	width: calc(100% - 300px);
}
.side1 #main_a {
	padding-left: 40px;
}

.side2 #main {
	width: calc(100% - 300px);
}
.side2 #main_a {
	padding-right: 40px;
}

.side1.side2 #main {
	width: calc(100% - 600px);
}
.side1.side2 #main_a {
	padding-left: 40px;
	padding-right: 40px;
}

.side1 hr.hide,
.side2 hr.hide {
	display: none;
}

/* AIレコメンド用スクリプトの読み込みタグを非表示にする */
.footer_insert_recommend_js {
	display: none;
}
/* AIレコメンド用スクリプトの読み込みタグを非表示にする ここまで */

/*=============== parts =============== */

/********** 1 共通 **********/

/* float clear */
.cf::before,
.cf::after {
	content: "";
	display: table;
}
.cf::after {
	clear: both;
}
/* For IE 6/7 (trigger hasLayout) */
.cf {
	zoom: 1;
}

/* スマートフォン用 */
#viewPCMode {
	display: none;
}
#sp_page_index_link_wrap {
	display: none;
}
#spm_wrap {
	display: none;
}
.sp_button {
	display: none;
}

/* レスポンシブアコーディオン用 */
.acc_title + input {
	display: none;
}
.acc_icon {
	display: none;
}

/* 隠す */
.hide {
	display: block;
	width: 0px;
	height: 0px;
	margin: 0px;
	padding: 0px;
	clip: rect(0,0,0,0);
	overflow: hidden;
}
hr.hide {
	border: none;
}

/* Googlemap */
.gglmap {
	position: relative;
	padding-top: 30px;
	padding-bottom: 56.25%;
	height: 0px;
	overflow: hidden;
}
.gglmap iframe,
.gglmap object,
.gglmap embed {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}

/* iOSでのボタンデザインをリセット */
input[type="button"],
input[type="submit"],
button {
	-webkit-appearance: none;
	-moz-appearance: none;
		appearance: none;
	border-radius: 0;
	cursor: pointer;
	color: inherit;
	font-weight: normal;
	font-style: normal;
}

/* telリンク無効 */
.open_page_id a[href^="tel:"],
.f_number a[href^="tel:"] {
	text-decoration: none !important;
	color: currentColor !important;
	pointer-events: none !important;
}

/* 承認枠 */
#approval_table {
	font-size: 1.4rem;
}

/********** 2 基本設定 **********/

/* フォント */
body,
button,
input[type="button"],
input[type="submit"],
input[type="text"],
textarea,
select {
	font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Arial, 'BIZ UDPGothic', Meiryo, メイリオ, Osaka, sans-serif;
	font-size: 1.6rem;
	line-height: 1.5;
}
em {
	font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Osaka, 'MS PGothic', sans-serif;
}

.mincho {
	font-family: '游明朝', 'Yu Mincho', '游明朝体', 'YuMincho', 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'HiraMinProN-W3', 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 {
	color: #000000;
	text-decoration: none;
}

a img {
	border: none;
	transition: opacity 0.3s;
}
a:hover img {
	opacity: 0.75;
}
/* 外部リンク */
.external_link_text {
	display: none;
}

/* 基本タグ */
p {
	margin: 1em 0px;
}

hr {
	clear: both;
}

/********** 3 ヘッダ **********/

/* ヘッダ */
#header2 {
	position: relative;
}
#header2::before {
	content: "";
	background: url("/img/site/artful/pc/white_wave_bg.png") repeat-x bottom center #ed926d;
	width: 100%;
	height: calc(100% - 10.6rem);
	position: absolute;
	bottom: calc(100% - 10.4rem);
	left: 50%;
	translate: -50% 0;
}
#header2_box {
	width: 1080px;
	margin: 0px auto;
	position: relative;
}
#he_left {
	width: 210px;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 1;
}
#he_left #logo {
	margin: 0px;
}
#he_left #logo h1 {
	margin: 0px;
}
#he_left #logo a {
	display: block;
}
#he_left #logo img {
	max-width: 100%;
	height: auto;
}
#he_left span {
	display: none;
}

#he_right,
.header_nav ul,
.header_search,
#cse-search-box,
#open_page_id_box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	-webkit-box-pack: end;
		-ms-flex-pack: end;
			justify-content: flex-end;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
}
#he_right {
	margin-left: 210px;
	padding: 15px 15px 53px 0px;
	text-align: right;
	font-size: 1.4rem;
	line-height: 1;
	gap: 26px;
	letter-spacing: 0.01em;
}
.header_nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	gap: 0px 26px;
}
.header_nav ul > li > a:hover,
.header_nav ul > li > button:hover {
	text-decoration: underline;
}
li.h_lang a {
	color: #333;
	text-decoration: none;
}

/* アクセシビリティ機能 */
.h_support {
	position: relative;
}
button#btn_support_menu_open {
	border: none;
	padding: 1px 21px 0px 0;
	font-size: 1.4rem;
	line-height: 1;
	background: url("/img/site/artful/pc/open_icon.png") no-repeat right center transparent;
}
button#btn_support_menu_open.open {
	background-image: url("/img/site/artful/pc/close_icon.png");
}
#support_menu_box.open {
	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: center;
		-ms-flex-align: center;
			align-items: center;
	gap: 20px;
}
#support_menu_box {
	display: none;
	position: absolute;
	top: 100%;
	right: calc(100% - 203px);
	z-index: 100;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 39.7rem;
	max-width: 600px;
	margin: 10px 0 0;
	padding: 10px 0px;
	text-align: center;
	background: rgba(255, 255, 255, 0.8);
}
.font_size_changed #support_menu_box {
	right: -15px;
}
button#btn_support_menu_close {
	border: none;
	text-indent: -99999em;
	padding: 0px;
	width: 15px;
	height: 15px;
	background: url("/img/site/artful/pc/close_btn.png") no-repeat center transparent !important;
	margin-left: -10px;
	border-radius: 50%;
	color: #333 !important;
}

#support_menu_box dl {
	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;
	margin: 0;
}
#support_menu_box dl dt {
	margin: 0px 3px 0px 0px;
}
#support_menu_box dl dd {
	margin: 0px 0px 0px 5px;
}
#support_menu_box dl dd a {
	display: block;
	background: #fff;
	border: 1px solid #bcbcbc;
	color: #333;
	text-decoration: none;
	padding: 8px 10px 6px;
}
#support_menu_box dl#haikei_color a {
	padding: 8px 7px 6px;
}
#support_menu_box dl dd a#haikei_white {
	background: #fff !important;
	color: #333 !important;
}
#support_menu_box dl dd a#haikei_black {
	background: #000 !important;
	color: #fff !important;
	border-color: #000;
}
#support_menu_box dl dd a#haikei_blue {
	background: #0000ff !important;
	color: #ffee00 !important;
	border-color: #00f;
}

/* キーワード・ページID検索 */
.header_search {
	gap: 20px;
}
label.search_ttl,
#open_page_id_box label {
	margin-right: 8px;
}
.search_ipt {
	width: 20rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
}
#open_page_id_box div {
	width: 14rem;
}
#tmp_query,
#open_page_id {
	border: none !important;
	width: calc(100% - 5rem) !important;
	height: 36px !important;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 1.4rem;
	border-radius: 0;
}
#submit,
#open_page_id_submit {
	border: none;
	background: #333333;
	color: #fff;
	width: 5rem;
	height: 36px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0px;
	padding: 0px;
	font-size: 1.4rem;
	line-height: 1;
	white-space: nowrap;
}
#submit:hover,
#open_page_id_submit:hover {
	text-decoration: underline;
}

/* ページID検索 */
#top_search_page_id {
	position: relative;
}
#open_page_id_message {
	position: absolute;
	top: 100%;
	right: 0px;
	border: 1px solid;
	background: #fff;
	color: #333;
	padding: 10px 20px;
}
#open_page_id_message:empty {
	border: none;
	padding: 0px;
}

/* グローバルナビ */
#top_search ul {
	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;
	list-style: none;
	margin: 0px;
	padding: 16px 28px 40px 180px;
	gap: 37px;
}
#top_search ul li a {
	display: block;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1;
	color: #111111;
	text-decoration: none;
	position: relative;
	letter-spacing: 0.02em;
}
#top_search ul li a:hover {
	text-decoration: underline;
}
#top_search ul li a::before {
	display: inline-block;
	vertical-align: middle;
	margin-right: 16px;
	height: 50px;
}
#top_search ul li:nth-child(1) a::before {
	content: url("/img/site/artful/pc/navi_icon01.png");
}
#top_search ul li:nth-child(2) a::before {
	content: url("/img/site/artful/pc/navi_icon02.png");
}
#top_search ul li:nth-child(3) a::before {
	content: url("/img/site/artful/pc/navi_icon03.png");
}
#top_search ul li:nth-child(4) a::before {
	content: url("/img/site/artful/pc/navi_icon04.png");
}

/********** 4 パンくず **********/

/* パンくず */
#pankuzu_wrap {
	background: #fdf4f0;
	padding: 14px 0px 6px;
}
#pankuzu_wrap > div {
	width: 1080px;
	margin: 0px auto 10px;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
}

.pankuzu {
	position: relative;
	padding-left: 6rem;
	font-size: 1.4rem;
	color: #333333;
}
.pankuzu .icon_current {
	display: none;
}
#pankuzu_wrap #footstep_wrap {
	margin: 0px auto 5px;
}
.pankuzu:first-child .icon_current,#footstep_ttl {
	display: block;
	width: 5rem;
	height: 2rem;
	background: #222;
	color: #fff;
	font-size: 1.4rem;
	line-height: 1;
	padding: 0.4rem 0px;
	text-align: center;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: absolute;
	top: 1px;
	left: 0px;
}
#pankuzu_wrap span a {
	color: currentcolor;
}
#pankuzu_wrap #clear_footstep {
	background: url("/img/site/artful/pc/clear_icon.png") no-repeat center center #fff !important;
	width: 21px;
	height: 20px;
	margin: 0 0 2px 10px;
	vertical-align: middle;
	border-radius: 50%;
	color: #333 !important;
}
#footstep {
	font-size: 1.4rem;
}
/********** 5 フッタ **********/

/* フッタ */
#footer div[id^="author_info"] {
	width: 1080px;
	margin: 0px auto;
	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;
	color: #fff;
	 -webkit-box-align: start;
			-ms-flex-align: start;
				align-items: flex-start;
}
#footer a {
	display: inline-block;
	color: #fff;
}
#footer_navi ul {
	padding: 0px;
	margin: 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;
}
#author_info01 {
	padding: 59px 0px 24px;
	border-bottom: 1px solid #fff;
}
#author_box {
	margin-right: 50px;
}
#author_box p {
	margin: 0px;
	font-size: 1.6rem;
	line-height: 1.6;
}
p.f_author span {
	font-size: 2.4rem;
	line-height: 1;
	margin-left: 15px;
	font-weight: bold;
}
#author_box p.f_author {
	margin: 0 0 15px;
	letter-spacing: 0.07em;
}
#author_box p.f_contact br {
	display: none;
}
#footer_navi ul li {
	font-size: 1.5rem;
	line-height: 1;
	margin: 0 11px 10px 0;
	padding-right: 11px;
	position: relative;
}
#footer_navi ul li:not(:last-child):after {
	content: "";
	position: absolute;
	border-right: 1px solid #fff;
	height: 100%;
	right: 0;
	-webkit-transform: rotate(25deg);
	-ms-transform: rotate(25deg);
	transform: rotate(25deg);
}
#author_info02 {
	padding: 30px 0px 50px;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
}
#copyright p {
	font-size: 1.4rem;
	line-height: 1;
	margin: 0;
	letter-spacing: 0.07em;
}

/* ページトップ（フローティング表示） */
#btn_pagetop {
	display: block;
	position: fixed;
	right: 20px;
	bottom: -180px;
	z-index: 70;
	-webkit-transition: bottom 0.5s ease-in-out;
	-o-transition: bottom 0.5s ease-in-out;
	transition: bottom 0.5s ease-in-out;
}
#btn_pagetop.fixed {
	bottom: 20px;
}
#btn_pagetop a {
	display: block;
}
#btn_pagetop img {
	display: block;
	width: 100%;
	height: auto;
}

/* おすすめ情報（回遊ボタン） */
#osusume_banner {
	position: fixed;
	left: 10px;
	bottom: 10px;
	z-index: 90;
}
#osusume_banner_box {
	width: auto;
	display: table;
}

#osusume_banner_ttl {
	display: table-cell;
	vertical-align: bottom;
	width: 100px;
}
#osusume_banner_ttl a {
	display: block;
	background: #ccc;
	color: #000;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 2rem;
	text-decoration: none;
	text-align: center;
	padding: 30px 0px;
}

#osusume_banner_list {
	display: none;
	vertical-align: bottom;
	background: #ccc;
	padding: 10px;
	max-width: calc(100vw - 140px);
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
}
#osusume_banner.open #osusume_banner_list {
	display: table-cell;
}

#osusume_banner_list_box {
	background: #fff;
	padding: 5px;
	position: relative;
}
#osusume_banner_close {
	display: block;
	width: 20px;
	height: 20px;
	margin: 0px;
	padding: 0px;
	border: none;
	background: url(/img/common/icon_clear.png) no-repeat center center #333;
	background-size: 10px 10px;
	border-radius: 100%;
	color: #fff;
	line-height: 1;
	text-align: left;
	text-indent: -9999em;
	overflow: hidden;
	cursor: pointer;
	position: absolute;
	top: -10px;
	right: -10px;
}

.osusume_banner_list_detail {
	margin: 0px;
	padding: 0px;
	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;
}
.osusume_banner_list_detail > a {
	display: inline-block;
	vertical-align: top;
	width: 200px;
	margin: 5px;
}
.osusume_banner_list_detail img {
	width: 100%;
	height: auto;
}

/********** 6 メイン **********/

/* メニューへのリンク */
.link_to_subsitemenu {
	display: none;
}

/* サブサイト共通ヘッダ */
#mainimg {
	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;
}
#mainimg_box .site_name {
	display: block;
	width: 100%;
	margin: 0px;
	padding: 0px 30px;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
	font-size: 3rem;
	font-weight: bold;
	line-height: 1.4;
	text-shadow: 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff,
		0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff,
		0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff;
	position: absolute;
	top: 30px;
	left: 0px;
}
#mainimg_box .site_name.noimage {
	position: static;
	background: #f6f6f6;
	padding: 30px;
}

/* サブサイト共通フッタ */
#site_footer {
	clear: both;
	float: none;
	width: 1080px;
	margin: 0px auto 100px;
}
#site_footer_box {
	padding: 23px 29px 19px;
	border: 1px solid #f6c8b6;
}
#site_footer_box p {
	margin: 0px 0px 1em;
	font-size: 1.6rem;
	line-height: 1.6;
	color: #333333;
}
#site_footer_box p:last-child {
	margin-bottom: 0px;
}
#site_footer_box p a {
	color: currentColor;
}

/* メイン */
#mymainback {
	padding-top: 30px;
	padding-bottom: 60px;
}

/* コンテンツヘッダ */
.content_header_wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	-webkit-box-pack: justify;
		-ms-flex-pack: justify;
			justify-content: space-between;
	-webkit-box-align: start;
		-ms-flex-align: start;
			align-items: flex-start;
}

#content_header {
	margin: 0px 0px 20px auto;
	text-align: right;
}
#content_header > span {
	display: inline-block;
	margin-left: 25px;
	font-size: 1.5rem;
	color: #333333;
}
#content_header > span  a {
	color: currentcolor;
}
.content_header_wrap:has(.d-flex.f-wrap-wrap) #content_header {
	width: calc(100% - 220px);
	margin: 0 0 20px;
}
/* SDGsアイコン */
.d-flex.f-wrap-wrap,
.sdgs-icons {
	margin: 0px 0px 20px;
	text-align: left;
}
.d-flex.f-wrap-wrap > *,
.sdgs-icons > * {
	display: inline-block;
	vertical-align: top;
	margin: 0px 5px 5px 0px;
	width: 100px;
}

.d-flex.f-wrap-wrap img,
.sdgs-icons img {
	width: 100px;
	height: auto;
}
.d-flex.f-wrap-wrap > * img,
.sdgs-icons > * img {
	display: block;
	margin: 0px;
	width: 100%;
	height: auto;
}

/* 印刷 */
#print_mode_link,
#print_mode_link_large {
	display: inline-block;
	background: url(/img/common/icon_print.png) no-repeat left center;
	padding-left: 22px;
}

/* 見出し */
#main_header h1 {
	margin: 0 0 30px;
	padding: 32px 39px 30px 30px;
	background: url(/img/site/artful/pc/h1_bg.png)no-repeat right 10px bottom 10px #ed926d;
	font-size: 3.2rem;
	line-height: 1.5;
	color: #333333;
	letter-spacing: 0.05em;
}

#main_body h2 {
	clear: both;
	margin: 30px 0px;
	padding: 19px 44px 16px 27px;
	background: url(/img/site/artful/pc/h2_bg.png) no-repeat right 7px bottom 7px #fbe9e2;
	font-size: 2.6rem;
	line-height: 1.5;
	color: #333333;
	border: 3px solid #ed926d;
	letter-spacing: 0.05em;
}

#main_body h3 {
	clear: both;
	margin: 30px 0px;
	padding: 11px 19px 9px 28px;
	font-size: 2.4rem;
	line-height: 1.5;
	color: #333333;
	border: 2px solid #ed926d;
	letter-spacing: 0.05em;
}

#main_body h4 {
	clear: both;
	margin: 30px 0px;
	padding: 11px 37px 7px 30px;
	font-size: 2.2rem;
	line-height: 1.5;
	color: #333333;
	border-bottom: 2px solid #ed926d;
	letter-spacing: 0.05em;
}

#main_body h5 {
	clear: both;
	margin: 30px 0px;
	padding: 6px 39px 4px 36px;
	font-size: 2rem;
	line-height: 1.5;
	color: #333333;
	letter-spacing: 0.05em;
	background: url(/img/site/artful/pc/h5_bg.png) no-repeat left 10px top 1.2rem;
}

#main_body h6 {
	clear: both;
	margin: 30px 0px;
	padding: 3px 43px 2px 36px;
	font-size: 1.8rem;
	line-height: 1.5;
	color: #333333;
	letter-spacing: 0.05em;
	background: url(/img/site/artful/pc/h6_bg.png) no-repeat left 10px top 0.9rem;
}

#main_body :where(h2, h3, h4, h5, h6) a {
	color: currentcolor;
}

/* テーブル */
#main_body table {
	border-color: #333;
	border-collapse: collapse;
	border-style: solid;
	border-width: 2px;
	margin: 0px 0px 20px;
	max-width: 100%;
}
#main_body th {
	background: #fdf4f0;
	border-color: #333;
	border-collapse: collapse;
	border-style: solid;
	border-width: 1px;
	padding: 0.5em;
}
#main_body td {
	border-color: #333;
	border-collapse: collapse;
	border-style: solid;
	border-width: 1px;
	padding: 0.5em;
	text-align: center;
}
/* テーブル内のpタグのマージンを0にする */
#main_body table p {
	margin: 0px 0px 1em;
}
#main_body table p:last-child {
	margin: 0px;
}
/* テーブル（borderを「0」に設定した場合は罫線を表示させない） */
/*
#main_body table[border="0"],
#main_body table[border="0"] th,
#main_body table[border="0"] td {
	border-width: 0px;
}
*/

/* 本文 */
#main_body .detail_free p,
#main_body .detail_writing {
	line-height: 1.8;
}

/* 評価エリア */
#hyouka_area_box {
	clear: both;
	background: #ffff;
	border: 3px solid #f1f1f1;
	margin: 30px 0px 0px;
	padding: 17px 27px;
}
#hyouka_area_box h2,
#main_body #hyouka_area_box h2 {
	margin: 0px 0px 10px;
	padding: 0px !important;
	background: none !important;
	border: none;
	font-size: 1.6rem;
	color: #666666;
}
#main_body #hyouka_area_box hr.cf {
	margin: 0px;
}

.hyouka_box_detail {
	border-bottom: 1px solid #eeebe6;
	margin-bottom: 10px;
	padding-bottom: 10px;
	font-size: 1.4rem;
}
.hyouka_box_detail:last-child {
	border-bottom: none;
	margin-bottom: 0px;
}
.hyouka_box_detail fieldset {
	border: none;
	margin: 0px;
	padding: 0px;
}
.hyouka_box_detail fieldset legend {
	margin: 0;
	padding: 0px;
	width: 100%;
}
.hyouka_box_detail span {
	display: inline-block;
	vertical-align: top;
	margin: 0px;
}
.hyouka_box_detail span:nth-child(2),
.hyouka_box_detail span:nth-child(3){
	width: 13.5rem;
}
.hyouka_box_detail span input {
	margin: 3px 4px 5px 0px;
	vertical-align: middle;
}

#hyouka_area_submit {
	margin-top: 10px;
	text-align: left;
}
#hyouka_area_submit input {
	display: inline-block;
	border: none;
	background: #f1f1f1;
	border-radius: 30px;
	margin: 0px;
	padding: 5px 0px;
	font-size: 1.4rem;
	text-align: center;
	width: 260px;
	max-width: 90%;
}
#hyouka_area_submit input:hover,
#hyouka_area_submit input:focus {
	text-decoration: underline;
}

/* お問い合わせ先 */
#section_footer {
	clear: both;
	background: #fef9f7;
	margin: 30px 0px;
	padding: 30px;
	font-size: 1.8rem;
	line-height: 1.6;
	color: #333333;
}
#section_footer h2,
#main_body #section_footer h2 {
	margin: 0px 0px 15px;
	line-height: 1;
	padding: 0px !important;
	background: none !important;
	border: none;
	font-size: 2rem;
	color: #333333;
}
#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: 15px;
}
#section_footer_detail span.sf_name2::before {
	content: '（';
}
#section_footer_detail span.sf_name2::after {
	content: '）';
}
#section_footer_detail  a {
	color: currentColor;
}

/* 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: top;
	width: 158px;
	margin: 0px;
	padding: 0px;
}
.pdf_download .pdf_img img,
.wmplayer_download .wmplayer_img img {
	width: 100%;
	height: auto;
}

.tenpu_txt {
	display: table-cell;
	vertical-align: top;
	margin: 0px;
	padding: 3px 0px 0px 10px;
	font-size: 1.3rem;
	line-height: 1.4;
}

/* コンテンツフッタ */
#content_footer {
	clear: both;
	margin: 30px 0px 40px;
}

/* カレンダー登録 */
#calendar_button_google,
#calendar_button_yahoo {
	display: inline-block;
	vertical-align: top;
	margin: 0px 30px 0px 0px;
}
#calendar_button_google a,
#calendar_button_yahoo a {
	display: inline-block;
	font-size: 1.5rem;
	padding: 4px 0px 4px 35px;
	background: url(/img/common/icon_calendar.png) no-repeat left center;
}

/* SNSボタン */
.sns_button_wrap {
	margin-top: 30px;
}
.sns_button_wrap > div {
	display: inline-block;
	vertical-align: top;
}

/* おすすめコンテンツ */
#osusume_contents_area {
	clear: both;
}
#second_osusume {
	background: #f6f6f6;
	margin: 30px 0px 0px;
	padding: 20px 25px 10px;
}
#second_osusume h2 {
	margin: 0px 5px 10px;
	padding: 0px 0px 0px 25px;
	background: url(/img/common/icon_osusume.png) no-repeat left center;
	border: none;
	font-size: 1.6rem;
}
#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;
}
#second_osusume ul li {
	display: inline-block;
	vertical-align: top;
	width: 200px;
	margin: 10px 15px;
}
#second_osusume ul li div > span {
	display: block;
}
#second_osusume ul li div > span.osusume_img {
	margin-bottom: 10px;
}
#second_osusume ul li div > span.osusume_img img {
	width: 100%;
	height: auto;
}

/********** 7 サイド **********/

/* サイドバー */
#sidebar1 > div,
#sidebar2 > div {
	margin-bottom: 10px;
}
#sidebar1 > div:last-child,
#sidebar2 > div:last-child {
	margin-bottom: 0px !important;
}

#sidebar1 img,
#sidebar2 img {
	max-width: 100%;
	height: auto;
}

/* レコメンド・AIレコメンド */
#sidebar_recommend,
#sidebar_ai_recommend {
	background: #fff;
	margin-top: 20px;
}

#recommend_title,
#ai_recommend_title {
	background: #fdf4f0;
	padding: 19px 30px;
}
#recommend_title h2,
#ai_recommend_title h2 {
	display: inline-block;
	text-align: left;
	font-size: 1.8rem;
	color: #333333;
	font-weight: bold;
	line-height: 1.5;
	margin: 0px;
	padding: 5px 0px 5px 45px;
}
#recommend_title h2 {
	background: url(/img/site/artful/pc/recommend_icon.png) no-repeat left center;
}
#ai_recommend_title h2 {
	background: url(/img/site/artful/pc/ai_recommend_icon.png) no-repeat left center;
}

#sidebar_recommend ul,
#sidebar_ai_recommend ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
#sidebar_recommend ul li,
#sidebar_ai_recommend ul li {
	display: block;
	padding: 20px 30px;
	font-size: 1.8rem;
	color: #333333;
}
#sidebar_recommend ul li:not(:last-child),
#sidebar_ai_recommend ul li:not(:last-child) {
	border-bottom: 1px solid #fef7f4;
}
#sidebar_recommend ul li a,
#sidebar_ai_recommend ul li a {
	color: currentcolor;
}

/* 「見つからないときは」「よくある質問」バナー */
#common_banner_link ul {
	margin: 20px 0px 0px;
	padding: 0px;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
		-ms-flex-pack: start;
			justify-content: flex-start;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	gap: 30px;
}
#common_banner_link ul li {
	width: 525px;
}
#common_banner_link ul li a {
	display: block;
	background: #ed926d;
	color: #333;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.5;
	padding: 17px 5px 16px;
	text-align: center;
}
#common_banner_link ul li a span {
	display: inline-block;
	padding: 6px 0px 4px 46px;
}
#common_banner_link ul li#common_banner_mitsukaranai a span {
	background: url(/img/site/artful/pc/mitsukaranai_icon.png) no-repeat left center;
}
#common_banner_link ul li#common_banner_faq a span {
	background: url(/img/site/artful/pc/faq_icon.png) no-repeat left center;
	padding: 6px 0px 4px 49px;
}

/* 重要なお知らせ */
#second_important {
	background: #fdf2f2;
	padding: 20px;
}
#second_important a {
	color: #c00;
}
#second_important h2 {
	margin: 0px 0px 10px;
	padding: 0px;
	color: #c00;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.4;
	text-align: center;
}
#second_important ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
#second_important ul li {
	margin: 0px 0px 10px;
}
#second_important ul li:last-child {
	margin-bottom: 0px;
}
#second_important ul li > span {
	display: block;
}
#second_important .link_box {
	margin-top: 20px;
	text-align: right;
}
#second_important .link_box > span {
	display: block;
}

/* カウントダウン */
.count_down_box {
	background: #f6f6f6;
	margin: 0px 0px 10px;
	padding: 20px;
}
.count_down_box:last-child {
	margin-bottom: 0px;
}

.count_down_box2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	-webkit-box-pack: justify;
		-ms-flex-pack: justify;
			justify-content: space-between;
	-webkit-box-align: start;
		-ms-flex-align: start;
			align-items: flex-start;
}
.count_down_box2 > span {
	display: inline-block;
	vertical-align: top;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
}

.count_down_box2 > span.count_img {
	width: 100px;
}
.count_down_box2 > span.count_img > span {
	display: block;
}
.count_down_box2 > span.count_img > span img {
	width: 100%;
	height: auto;
}

.count_down_box2 > span.count_txt {
	width: calc(100% - 110px);
}
.count_down_box2 > span.count_txt:only-child {
	width: 100%;
}
.count_down_box2 > span.count_txt > span {
	display: block;
}
.count_down_box2 > span.count_txt > span.count_comment {
	margin-top: 10px;
	font-size: 1.4rem;
}
.count_down_box2 > span.count_txt > span.count_day {
	margin-top: 10px;
	color: #c00;
	text-align: right;
}
.count_down_box2 > span.count_txt > span.count_day span {
	font-size: 2rem;
	font-weight: bold;
	margin-left: 1em;
}

.count_down_clear {
	display: block;
	width: 20px;
	height: 20px;
	margin: 10px 0px 0px auto;
	padding: 0px;
	border: none;
	background: url(/img/common/icon_clear.png) no-repeat center center #333;
	background-size: 10px 10px;
	border-radius: 100%;
	color: #fff;
	line-height: 1;
	text-align: left;
	text-indent: -9999em;
	overflow: hidden;
	cursor: pointer;
}
/* クリアボタンを使用しない */
.count_down_clear {
	display: none;
}

/* 関連リンク */
#kanren_link h2 {
	background: #fdf4f0;
	margin: 20px 0 0;
	padding: 17px 30px 16px;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.5;
}
#kanren_link ul {
	margin: 0px;
	padding: 20px 10px 18px 36px;
}
#kanren_link ul li {
	margin-bottom: 10px;
	font-size: 1.8rem;
	color: #333333;
	line-height: 1.4;
}
#kanren_link ul li:last-child {
	margin-bottom: 0px;
}
#kanren_link ul li a {
	color: currentcolor;
}

/* 自由編集項目 */
.free_box p {
	margin: 0px 0px 10px;
}
.free_box p:last-child {
	margin-bottom: 0px;
}
.free_box img {
	max-width: 100%;
	height: auto !important;
}

/* サイドメニュー */
.subsite_menu {
	background: #f6f6f6;
	margin: 0px 0px 10px;
}
.subsite_menu:last-child {
	margin-bottom: 0px;
}

.subsite_menu_ttl {
	background: #e6e6e6;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.4;
	margin: 0px;
	padding: 14px 20px;
}

.subsite_menu_list ul {
	margin: 0px;
	padding: 20px 20px 20px 40px;
}
.subsite_menu_list ul li {
	margin-bottom: 10px;
}
.subsite_menu_list ul li:last-child {
	margin-bottom: 0px;
}

.subsite_menu_list div.link_ichiran {
	margin: 0px;
	padding: 0px 20px 20px;
	text-align: center;
}
.subsite_menu_list div.link_ichiran a {
	display: block;
	background: #fff;
	padding: 8px 10px;
}

/********** 8 リスト **********/

/* リスト（一覧） */
.info_list ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
.info_list ul li a {
	color: currentcolor;
}

.site_list_2 .info_list 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: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	gap: 20px;
}
.site_list_2 .info_list ul li {
	font-size: 1.8rem;
	line-height: 1.7;
	color: #333333;
	margin: 0px;
	width: 530px;
	padding: 28px 27px 27px 29px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: solid #ed926d;
	border-width: 1px 2px 2px 1px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	letter-spacing: -0.15rem;
}

/* リスト（日付） */
.info_list.info_list_date ul li {
	width: 100%;
	display: table;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 27px 36px 24px 40px;
	margin: 0px;
}
.info_list.info_list_date ul li:nth-child(odd) {
	background: #fdf4f0;
}
.info_list.info_list_date ul li > span {
	display: table-cell;
	vertical-align: top;
	font-size: 1.6rem;
	line-height: 1.8;
	color: #333333;
}
.info_list.info_list_date ul li > span.article_date {
	width: 14em;
	font-size: 1.4rem;
}

/* リスト（担当課） */
.article_section::before {
	content: '（';
}
.article_section::after {
	content: '）';
}
.article_section:empty::before,
.article_section:empty::after {
	display: none;
}

/* リスト（サムネイル） */
.list_pack {
	width: 100%;
	display: table;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
}

.list_pack .article_txt {
	display: table-cell;
	vertical-align: top;
}
.list_pack .article_txt .article_date {
	display: block;
}
.list_pack .article_txt .article_title {
	display: block;
}

.list_pack .article_img {
	display: table-cell;
	vertical-align: top;
	width: 200px;
	padding-right: 20px;
}
.list_pack .article_img span {
	display: block;
	height: 150px;
	overflow: hidden;
	position: relative;
	border: 1px solid #ccc;
}
.list_pack .article_img span:empty {
	height: 150px;
	background: url(/img/common/noimage.png) no-repeat center center;
}
.list_pack .article_img span img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
		-ms-transform: translate(-50%,-50%);
			transform: translate(-50%,-50%);
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

/* リスト（サムネイル） 縦可変 */
/*
.list_pack .article_img span {
	height: auto;
}
.list_pack .article_img span img {
	position: static;
	-webkit-transform: none;
		-ms-transform: none;
			transform: none;
	width: 100%;
	height: auto;
}
*/

/*=============== parts-detail =============== */

#main_body div[class^="detail_"] {
	clear: both;
	width: 100%;
	margin: 0px 0px 20px;
	padding: 0px;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
}
#main_body div.detail_table_center {
	clear: both;
	width: 100%;
	margin: 0px 0px 20px;
	padding: 0px;
}
#main_body div.detail_writing {
	clear: both;
	width: 100%;
	margin: 0px 0px 20px;
	padding: 0px;
}
#main_body div.detail_map {
	clear: both;
	width: 100%;
	margin: 0px 0px 20px;
	padding: 0px;
}
#main_body div.detail_movie {
	clear: both;
	width: 100%;
	margin: 0px 0px 20px;
	padding: 0px;
}
#main_body div.detail_free {
	clear: both;
	width: 100%;
	margin: 0px 0px 20px;
	padding: 0px;
}
#main_body div.detail_image_normal {
	clear: both;
	width: 100%;
	margin: 0px 0px 20px;
	padding: 0px;
}
#main_body div.detail_image_left {
	text-align: left;
	margin: 0px 0px 20px;
	padding: 0px;
}
#main_body div.detail_image_center {
	text-align: center;
	margin: 0px 0px 20px;
	padding: 0px;
}
#main_body div.detail_image_right {
	text-align: right;
	margin: 0px 0px 20px;
	padding: 0px;
}

#main_body div.detail_h2 {
	clear: both;
	width: 100%;
}
#main_body div.detail_h3 {
	clear: both;
	width: 100%;
}

hr.hr_1 {
	clear: both;
	height: 1px;
	border-top: 2px dotted #999999;
	border-right: none;
	border-bottom: none;
	border-left: none;
	margin: 15px 0px;
}
hr.hr_2 {
	clear: both;
	height: 1px;
	border-top: 1px solid #333333;
	border-right: none;
	border-bottom: none;
	border-left: none;
	margin: 15px 0px;
}
hr.hr_3 {
	clear: both;
	height: 1px;
	border-top: 1px solid #ff0000;
	border-right: none;
	border-bottom: none;
	border-left: none;
	margin: 15px 0px;
}

/* リンク */
.detail_link {
	margin: 1em 0px;
}

.link_l {
	margin: 1em 0px;
}

.detail_free .external_link_text,
.link_l .external_link_text {
	display: inline;
}

/* 画像 */
.detail_img_left {
	text-align: left;
}
.detail_img_center {
	text-align: center;
}
.detail_img_right {
	text-align: right;
}

/* 添付ファイル */
.detail_file {
	margin: 1em 0px;
}

div[class^="detail_"] a[href^="/uploaded/attachment/"]::before,
div[class^="file_"] a[href^="/uploaded/attachment/"]::before,
div[class^="detail_"] a[href^="/uploaded/life/"]::before,
div[class^="file_"] a[href^="/uploaded/life/"]::before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 20px;
	height: 20px;
	background: url(/img/common/file/icon_etc.png) no-repeat center center;
	background-size: contain;
	margin-right: 10px;
}
div[class^="detail_"] a[href$=".pdf"]::before,
div[class^="detail_"] a[href$=".PDF"]::before,
div[class^="file_"] a[href$=".pdf"]::before,
div[class^="file_"] a[href$=".PDF"]::before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 20px;
	height: 20px;
	background: url(/img/common/file/icon_pdf.png) no-repeat center center;
	background-size: contain;
	margin-right: 10px;
}
div[class^="detail_"] a[href$=".xls"]::before,
div[class^="detail_"] a[href$=".XLS"]::before,
div[class^="file_"] a[href$=".xls"]::before,
div[class^="file_"] a[href$=".XLS"]::before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 20px;
	height: 20px;
	background: url(/img/common/file/icon_xls.png) no-repeat center center;
	background-size: contain;
	margin-right: 10px;
}
div[class^="detail_"] a[href$=".xlsx"]::before,
div[class^="detail_"] a[href$=".XLSX"]::before,
div[class^="file_"] a[href$=".xlsx"]::before,
div[class^="file_"] a[href$=".XLSX"]::before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 20px;
	height: 20px;
	background: url(/img/common/file/icon_xlsx.png) no-repeat center center;
	background-size: contain;
	margin-right: 10px;
}
div[class^="detail_"] a[href$=".doc"]::before,
div[class^="detail_"] a[href$=".DOC"]::before,
div[class^="file_"] a[href$=".doc"]::before,
div[class^="file_"] a[href$=".DOC"]::before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 20px;
	height: 20px;
	background: url(/img/common/file/icon_doc.png) no-repeat center center;
	background-size: contain;
	margin-right: 10px;
}
div[class^="detail_"] a[href$=".docx"]::before,
div[class^="detail_"] a[href$=".DOCX"]::before,
div[class^="file_"] a[href$=".docx"]::before,
div[class^="file_"] a[href$=".DOCX"]::before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 20px;
	height: 20px;
	background: url(/img/common/file/icon_docx.png) no-repeat center center;
	background-size: contain;
	margin-right: 10px;
}

.file_pdf, .file_pdf2, .file_excel, .file_word, .file_etc {
	margin: 1em 0px;
}

/* 移行時に紛れ込んだ見出しの中のspace.gifを消す */
#main_body div[class*="detail_"] img[src*="space.gif"] {
	display: none !important;
}

/* 画像サイズ */
#main_body div[class*="detail"] img {
	margin: 10px;
/*	max-width: 100%;
	height: auto !important;
	vertical-align: top;*/
}

/* iframeの最大サイズ */
#main_body iframe {
	max-width: 100%;
}

/* iframeレスポンシブ対応 */
/*
#main_body div.detail_movie {
	position: relative;
	padding-top: 30px;
	padding-bottom: 56.25%;
	height: 0px;
	overflow: hidden;
}
#main_body div.detail_movie iframe {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}
*/

/* preタグ */
div[class^="detail_"] pre {
	white-space: pre-wrap;
	word-break: break-word;
	font-family: monospace, sans-serif;
}

/* アンカーリンク */
div[class^="detail_"] a:not([href]) {
	display: inline-block;
	text-decoration: none !important;
	max-width: 100%;
}
div[class^="detail_"] a:not([href]):empty {
	display: block;
}
div[class^="detail_"] a:not([href]):hover {
	color: inherit;
}

/* ワープロライクのフロート対応 */
div[class^="detail_"]::before,
div[class^="detail_"]::after {
	content: "";
	display: table;
}
div[class^="detail_"]::after {
	clear: both;
}
div[class^="detail_"] {
	zoom: 1;
}

#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;
}

/*=============== トップページ =============== */

/* バナー広告 */
ul.banner_list {
	margin: 0px;
	padding: 0px;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	-webkit-box-pack: start;
		-ms-flex-pack: start;
			justify-content: flex-start;
	-webkit-box-align: start;
		-ms-flex-align: start;
			align-items: flex-start;
}
ul.banner_list li {
	display: inline-block;
	vertical-align: top;
	width: 200px;
	margin: 8px;
}
ul.banner_list li img {
	width: 100%;
	height: auto;
}

.banner_text {
	display: block;
	padding: 10px;
	text-align: left;
}
.banner_text span {
	display: block;
}
.banner_text span:nth-child(2n) {
	font-size: 1.4rem;
}

/* バナー広告（フッタ） */
#footer_banner {
	clear: both;
	width: 1080px;
	margin: 0px auto 50px;
}

/* 印刷プレビュー */
.view_print_mode #sidebar_recommend,
.view_print_mode #sidebar_ai_recommend,
.view_print_mode #kanren_link,
.view_print_mode #common_banner_link,
.view_print_mode #site_footer {
	display: none;
}

/**********************************************************************************/
/* PC ここまで */
/**********************************************************************************/


/**********************************************************************************/
/* 背景色変更 */
/**********************************************************************************/

/* 共通 */
.color_change #btn_pagetop {
	background: transparent !important;
}
.color_change.color_black #top_search_page_id,
.color_change.color_black #open_page_id_box,
.color_change.color_black #open_page_id_box label,
.color_change.color_black #open_page_id_box label span,
.color_change button#btn_support_menu_open {
	background-color: transparent !important;
}
.color_change #btn_support_menu_close {
	background-color: #fff !important;
}
.color_change .info_list.info_list_date ul li:nth-child(odd)  {
	border: 1px solid;
}
.color_change #main_header h1,
.color_change #main_body h2,
.color_change #main_body h5,
.color_change #main_body h6 {
	background: none;
}
.color_change #header2::before {
	content: none;
}

/* 黒 */
.color_change.color_black #submit,
.color_change.color_black #open_page_id_submit {
	background-color: #333 !important;
}
/* 青 */
.color_change.color_blue #top_search_page_id,
.color_change.color_blue #open_page_id_box,
.color_change.color_blue #open_page_id_box label,
.color_change.color_blue #open_page_id_box label span {
	background-color: transparent !important;
}
.color_change.color_blue #submit,
.color_change.color_blue #open_page_id_submit {
	background-color: #0000aa !important;
}

/**********************************************************************************/
/* 背景色変更 ここまで */
/**********************************************************************************/


/**********************************************************************************/
/* タブレット */
/**********************************************************************************/
@media screen and (max-width : 1099px) {

	/*=============== layout =============== */

	#sidebar1 {
		width: 30%;
	}
	#sidebar2 {
		width: 30%;
	}

	.side1 #main {
		width: 70%;
	}
	.side1 #main_a {
		padding-left: 20px;
	}

	.side2 #main {
		width: 70%;
	}
	.side2 #main_a {
		padding-right: 20px;
	}

	.side1.side2 #main {
		width: 40%;
	}
	.side1.side2 #main_a {
		padding-left: 10px;
		padding-right: 10px;
	}

	/*=============== parts =============== */

	/* 評価エリア */
	.hyouka_box_detail span {
		width: auto !important;
		margin-right: 1em;
	}

	/* おすすめコンテンツ */
	#second_osusume ul li {
		width: calc(33% - 20px);
		margin-left: 10px;
		margin-right: 10px;
	}

	/* バナー広告 */
	ul.banner_list li {
		width: calc(25% - 10px);
		margin: 5px;
	}

	/* バナー広告（フッタ） */
	#footer_banner {
		width: calc(100% - 40px);
	}

	/*=============== parts-detail =============== */

	/* 画像サイズ */
	#main_body div[class*="detail"] img {
		max-width: 100%;
		height: auto !important;
		vertical-align: top;
	}

	/*=============== トップページ =============== */

}
/**********************************************************************************/
/* タブレット ここまで */
/**********************************************************************************/



/**********************************************************************************/
/* スマートフォン */
/**********************************************************************************/
@media screen and (max-width : 1079px) {

	/*=============== sp-common =============== */

	* {
		float: none;
	}

	/* 領域の位置やサイズに関する設定 */
	#loading-view {
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9999;
		/* 背景関連の設定 */
		background-color: #ffffff;
		filter: alpha(opacity=85);
		-moz-opacity: 0.85;
		-khtml-opacity: 0.85;
		opacity: 0.85;
	}

	#xp1 {
		width: auto;
		margin: 0px auto;
	}

	/* viewSwitch */
	#viewSwitch {
		display: none;
		background: #cccccc;
		border-top: 1px solid #cccccc;
		text-align: center;
		padding: 15px 0px;
	}
	#viewSwitch dl {
		margin: 0px;
		padding: 0px;
	}
	#viewSwitch dt,
	#viewSwitch dd,
	#viewSwitch ul,
	#viewSwitch li {
		display: inline-block;
		margin: 0px;
		padding: 0px;
	}
	#viewSwitch dt {
		margin-right: 10px;
		color: #333333;
	}
	#viewSwitch ul {
		list-style: none;
	}
	#viewSwitch li {
		padding: 2px 5px;
	}
	#viewSwitch li:nth-child(1) {
		border-right: solid 1px #333333;
	}
	#viewSwitch li:nth-child(2) {
		border-right: solid 1px #333333;
	}
	#vsSP {
		font-weight: bold;
	}

	/* spbutton */
	.spbutton {
		display: block;
		width: 100%;
		-webkit-box-sizing: border-box;
				box-sizing: border-box;
		padding: 10px;
		border: 1px solid #dcdcdc;
		border-radius: 5px;
		background: -moz-linear-gradient( center top, #f9f9f9 5%, #e9e9e9 100% );
		background: -ms-linear-gradient( top, #f9f9f9 5%, #e9e9e9 100% );
		filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e9e9e9');
		background: -webkit-gradient( linear, left top, left bottom, color-stop(5%, #f9f9f9), color-stop(100%, #e9e9e9) );
		background-color: #f9f9f9;
		color: #000000;
		text-shadow: 1px 1px 0px #ffffff;
		-webkit-box-shadow: inset 1px 1px 0px 0px #ffffff;
				box-shadow: inset 1px 1px 0px 0px #ffffff;
		text-decoration: none;
		text-align: center;
	}
	.spbutton:hover {
		background: -moz-linear-gradient( center top, #e9e9e9 5%, #f9f9f9 100% );
		background: -ms-linear-gradient( top, #e9e9e9 5%, #f9f9f9 100% );
		filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#e9e9e9', endColorstr='#f9f9f9');
		background: -webkit-gradient( linear, left top, left bottom, color-stop(5%, #e9e9e9), color-stop(100%, #f9f9f9) );
		background-color: #e9e9e9;
	}
	.spbutton:active {
		position: relative;
		top: 1px;
	}

	/* テーブル切り替え */
	#main_body .sp_table_wrap {
		overflow: auto;
	}

	#main_body div.sp_large_table {
		width: 1000px;
		overflow: visible;
	}

	.sp_button {
		display: block;
		width: 100%;
		-webkit-box-sizing: border-box;
				box-sizing: border-box;
		padding: 10px;
		border: 1px solid #dcdcdc;
		border-radius: 5px;
		background: -moz-linear-gradient( center top, #f9f9f9 5%, #e9e9e9 100% );
		background: -ms-linear-gradient( top, #f9f9f9 5%, #e9e9e9 100% );
		filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e9e9e9');
		background: -webkit-gradient( linear, left top, left bottom, color-stop(5%, #f9f9f9), color-stop(100%, #e9e9e9) );
		background-color: #f9f9f9;
		color: #000000;
		text-shadow: 1px 1px 0px #ffffff;
		-webkit-box-shadow: inset 1px 1px 0px 0px #ffffff;
				box-shadow: inset 1px 1px 0px 0px #ffffff;
		text-decoration: none;
		text-align: center;
		margin: 0 0 10px;
	}
	.sp_button:hover {
		background: -moz-linear-gradient( center top, #e9e9e9 5%, #f9f9f9 100% );
		background: -ms-linear-gradient( top, #e9e9e9 5%, #f9f9f9 100% );
		filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#e9e9e9', endColorstr='#f9f9f9');
		background: -webkit-gradient( linear, left top, left bottom, color-stop(5%, #e9e9e9), color-stop(100%, #f9f9f9) );
		background-color: #e9e9e9;
	}
	.sp_button:active {
		position: relative;
		top: 1px;
	}
	.gsc-result .gs-title {
		height: auto !important;
	}

	/* ページ内目次 */
	#sp_page_index_link_wrap {
		display: block;
		width: auto;
		margin: 10px 0px;
	}

	#sp_page_index_link_toggle {
		width: 100%;
		height: auto;
		margin: 0px;
		padding: 10px;
		border: 1px solid #333;
		background: url(/img/sp/acc_open.png) no-repeat right 10px top 50% #eeeeee;
		background-size: 15px 15px;
		border-radius: 5px;
		text-align: center;
	}
	#sp_page_index_link_toggle.open {
		background-image: url(/img/sp/acc_close.png);
	}
	#sp_page_index_link_toggle:focus {
		outline: none;
	}

	ul#sp_page_index_link {
		margin: 0px;
		padding: 0px;
		list-style: none;
	}
	ul#sp_page_index_link li {
		padding: 10px;
		border-bottom: 1px solid #ccc;
	}
	ul#sp_page_index_link li a {
		display: block;
		background: url(/img/sp/arrow_r.png) no-repeat right center;
		background-size: 8px auto;
		padding-right: 12px;
		text-decoration: none;
	}
	ul#sp_page_index_link li a.sp_headtype_h2 { padding-left: 10px; font-size: 2.0rem; line-height: 1.2; }
	ul#sp_page_index_link li a.sp_headtype_h3 { padding-left: 20px; font-size: 1.8rem; line-height: 1.2; }
	ul#sp_page_index_link li a.sp_headtype_h4 { padding-left: 30px; font-size: 1.6rem; line-height: 1.2; }
	ul#sp_page_index_link li a.sp_headtype_h5 { padding-left: 40px; font-size: 1.4rem; line-height: 1.2; }
	ul#sp_page_index_link li a.sp_headtype_h6 { padding-left: 50px; font-size: 1.2rem; line-height: 1.2; }

	/*=============== sp-layout =============== */

	/* 全体 */
	html {
		font-size: 62.5%;
	}
	body {
		min-width: 320px;
		margin: 0px;
		padding: 0px;
		font-size: 1.4rem;
		line-height: 1.5;
		-webkit-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;
		color: #111;
	}

	/* フッタ */
	#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;
		overflow: hidden;
	}

	#main,
	.side1 #main,
	.side2 #main,
	.side1.side2 #main {
		-webkit-box-ordinal-group: 11;
		-ms-flex-order: 10;
		order: 10;
		clear: both;
		float: none;
		width: auto;
		margin: 0px;
		padding: 0px;
	}
	#main_a,
	.side1 #main_a,
	.side2 #main_a,
	.side1.side2 #main_a {
		margin: 0px;
		padding: 0px;
	}

	#sidebar1 {
		-webkit-box-ordinal-group: 12;
		-ms-flex-order: 11;
		order: 11;
		clear: both;
		float: none;
		width: auto;
		margin: 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;
	}

	/*=============== sp-parts =============== */

	/********** 1 共通 **********/

	/* PC表示切り替えボタン */
	#viewPCMode {
		display: none;
	}

	/* レスポンシブアコーディオン用 */
	.acc_title_wrap {
		position: relative;
	}
	.acc_title {
		position: relative;
	}
	.acc_title > label {
		display: block;
		cursor: pointer;
		padding-right: 30px;
	}

	.acc_title + input[id*="acc_ttl_label"] + * {
		display: none;
	}
	.acc_title + input[id*="acc_ttl_label"]:checked + * {
		display: block;
	}

	label[for*="acc_ttl_label"] {
		background: url(/img/sp/acc_open.png) no-repeat right 10px top 50% transparent;
		background-size: 15px 15px;
	}
	.acc_open label[for*="acc_ttl_label"] {
		background-image: url(/img/sp/acc_close.png);
	}

	.no_acc_title label[for*="acc_ttl_label"] {
		background: none;
	}

	/* 非表示 */
	#footstep_wrap {
		display: none !important;
	}
	#keep_page {
		display: none !important;
	}

	/********** 2 基本設定 **********/

	/* フォント */
	body,
	button,
	input[type="button"],
	input[type="submit"],
	input[type="text"],
	textarea,
	select {
		font-size: 1.4rem;
	}

	/********** 3 ヘッダ **********/

	/* ヘッダ */
	#spm_wrap {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
			flex-wrap: wrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
			align-items: stretch;
		gap: 1px;
		position: fixed;
		bottom: 0px;
		left: 0;
		z-index: 9999;
		width: 100%;
		height: 60px;
		background: #b63131;
	}
	#spm_wrap button {
		display: block;
		width: calc(50% - 1px);
		height: 60px;
		border: none;
		background-color: #333;
		background-repeat: no-repeat;
		background-position: center center;
		padding: 0px;
		color: #fff !important;
	}
	button#btn_spm_search {
		background-image: url("/img/site/artful/sp/search_btn.png");
	}
	button#btn_spm_menu {
		background-image: url("/img/site/artful/sp/menu_btn.png");
	}
	.spm_menu_open #btn_spm_menu,
	.spm_search_open #btn_spm_search {
		background-image: url("/img/site/artful/sp/close_btn.png");
		width: 100%;
		display: block;
	}
	.spm_menu_open #btn_spm_search,
	.spm_search_open #btn_spm_menu {
		display: none;
	}
	#header2 {
		background: #e5632e;
	}
	#header2::before {
		content: none;
	}
	#header2_box {
		width: auto;
	}
	.spm_menu_open #header2 {
		position: fixed;
		background: #e5632e;
		width: 100%;
		height: calc(100% - 60px);
		z-index: 100;
		top: 0;
		overflow-y: auto;
		-ms-scroll-chaining: none;
		overscroll-behavior: contain;
	}
	.spm_menu_open #he_left {
		display: none;
	}
	#he_left {
		position: static;
		margin: 0px 10px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
			flex-wrap: wrap;
		width: auto;
	}
	#he_left #logo {
		background: url("/img/site/artful/sp/sp_h1_logo.png") no-repeat center #222;
	}
	#he_left #logo img {
		width: 100px;
		height: 80px;
		display: block;
		opacity: 0;		
	}
	#he_left span {
		width: calc(100% - 110px);
		display: block;
		font-size: 1.4rem;
		line-height: 1.5;
		font-weight: bold;
		margin: 32px 0 0px 7px;
		color: #111111;
	}
	.spm_menu_open #he_right {
		display: block;
		margin: 0px;
		padding: 48px 20px 58px;
		text-align: left;
		background: url("/img/site/artful/pc/wave_bg.png") no-repeat bottom center rgba(255, 255, 255, 0.3);
	}
	#he_right {
		background: none;
		margin: 0;
		padding: 0;
	}
	.header_nav ul {
		display: block;
	}
	nav.header_nav {
		display: none;
	}
	.spm_menu_open nav.header_nav {
		display: block;
	}
	li.h_lang {
		margin: 0 0 30px;
	}
	li.h_lang a,
	button#btn_support_menu_close {
		color: #111 !important;
	}
	button#btn_support_menu_open,
	button#btn_support_menu_close {
		display: none;
	}
	#support_menu_box {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: start !important;
		-ms-flex-pack: start !important;
		justify-content: flex-start !important;
		position: static;
		gap: 12px !important;
		width: 100%;
		max-width: inherit;
		background: no-repeat;
		margin: 0;
		padding: 0;
		letter-spacing: -0.1px;
	}
	#support_menu_box dl#haikei_color a {
		width: 30px;
		padding: 8px 0px 6px;
	}
	#support_menu_box dl dd a {
		width: 50px;
		padding: 8px 0px 6px;
		-webkit-box-sizing: border-box;
				box-sizing: border-box;
	}
	#support_menu_box dl dd {
		margin: 0px 0px 0px 3px;
	}
	@media screen and (max-width: 320px) {

		.spm_menu_open #he_right {
			padding: 48px 10px 58px;
			font-size: 1.3rem;
		}
		#support_menu_box {
			gap: 0 !important;
			-webkit-box-pack: justify !important;
			-ms-flex-pack: justify !important;
			justify-content: space-between !important;
		}
		#support_menu_box dl dd a {
			width: 43px;
		}
		#support_menu_box dl#haikei_color a {
			width: 27px;
		}

	}

	/* キーワード・ページID検索 */
	.header_search {
		display: none;
	}
	.spm_search_open .header_search {
		display: block;
		width: 100%;
		height: calc(100% - 60px);
		position: fixed;
		top: 0px;
		background: #e5632e;
		z-index: 100;
		padding: 120px 20px;
		-webkit-box-sizing: border-box;
				box-sizing: border-box;
		text-align: left;
		overflow-y: auto;
		-ms-scroll-chaining: none;
		overscroll-behavior: contain;
	}
	#top_search_keyword {
		margin: 0 0 50px;
	}
	#cse-search-box,
	#open_page_id_box {
		display: block;
	}
	label.search_ttl,
	#open_page_id_box label {
		display: block;
		margin: 0 0 12px;
		text-align: left;
		font-size: 1.6rem;
	}
	.search_ipt {
		width: 100% !important;
		border: 1px solid #333;
		box-sizing: border-box;
		-webkit-box-sizing: border-box;
	}
	#tmp_query,
	#open_page_id {
		width: calc(100% - 100px) !important;
		height: 58px !important;
	}
	#submit,
	#open_page_id_submit {
		width: 100px;
		height: 58px;
		font-size: 1.8rem;
	}
	#open_page_id_message {
		position: static;
	}

	/* グローバルナビ */
	#top_search {
		display: none;
		width: auto;
	}
	.spm_menu_open #top_search {
		display: block;
	}
	#top_search ul {
		display: block;
		padding: 16px 20px 50px;
	}
	#top_search ul li {
		margin: 0 0 25px;
		padding: 0 20px 25px 23px;
		border-bottom: 1px solid #fff;
	}
	#top_search ul li a::before {
		content: none !important;
	}
	#top_search ul li a {
		padding: 15px 20px 15px 97px;
		background-repeat: no-repeat;
		background-position: left center;
		font-size: 2.2rem;
	}
	#top_search ul li a::after {
		content: "";
		width: 26px;
		height: 26px;
		background: url("/img/site/artful/sp/arrow_icon.png") no-repeat;
		position: absolute;
		right: 0;
	}
	#top_search ul li:nth-child(1) a {
		background-image: url("/img/site/artful/pc/top_navi_icon01.png");
	}
	#top_search ul li:nth-child(2) a {
		background-image: url("/img/site/artful/pc/top_navi_icon02.png");
	}
	#top_search ul li:nth-child(3) a {
		background-image: url("/img/site/artful/pc/top_navi_icon03.png");
	}
	#top_search ul li:nth-child(4) a {
		background-image: url("/img/site/artful/pc/top_navi_icon04.png");
	}
	#top_search ul li:last-child {
		margin: 0;
		padding-bottom: 0;
		border-bottom: none;
	}
	@media screen and (max-width: 320px) {
		#top_search ul {
			padding: 16px 10px 50px;
		}
		#top_search ul li a {
			font-size: 2rem;
		}
	}

	/********** 4 パンくず **********/

	/* パンくず */
	#pankuzu_wrap > div {
		width: auto;
		margin: 0px 10px 10px;
	}
	.pankuzu {
		font-size: 1.2rem;
	}

	/********** 5 フッタ **********/

	/* フッタ */
	#footer {
		font-size: 1.3rem;
	}

	#footer div[id^="author_info"] {
		width: auto;
		display: block;
		margin: 0 20px;
	}
	#author_info01 {
		padding: 60px 0 0;
	}
	#author_info02 {
		padding: 40px 0px 155px;
	}

	#footer_navi ul {
		width: auto;
		max-width: 400px;
		margin: 0px auto;
	}
	#footer_navi ul li {
		margin: 0px 11px 14px 0px;
		font-size: 1.2rem;
	}
	#author_box {
		max-width: 400px;
		margin: 0px auto;
	}
	#author_box p {
		font-size: 1.4rem;
	}
	p.f_author span {
		display: block;
		margin: 10px 0px 0px;
	}
	#author_box p.f_contact br {
		display: block;
	}
	.f_contact a {
		display: block;
		margin-top: 5px;
	}
	#f_logo {
		text-align: center;
	}
	#f_logo a {
		display: block;
		width: 176px;
		margin: 40px auto;
	}
	#f_logo a img {
		display: block;
		max-width: 100%;
	}

	#copyright p {
		font-size: 1.1rem;
		text-align: right;
		margin: 26px 0 0;
	}
	@media screen and (max-width: 320px) {

		#footer div[id^="author_info"] {
			margin: 0px 10px;
		}
		#author_box p {
			font-size: 1.3rem;
			letter-spacing: -0.2px;
		}

	}

	/* 戻る・ページトップ */
	#btn_pagetop {
		width: 80px;
		right: 0px;
	}
	#btn_pagetop.fixed {
		bottom: 70px;
	}

	/* ページトップ（フローティング表示） */

	/* おすすめ情報（回遊ボタン） */
	#osusume_banner_ttl {
		width: 60px;
	}
	#osusume_banner_ttl a {
		font-size: 1.2rem;
		line-height: 1.5rem;
		padding: 15px 0px;
	}

	/********** 6 メイン **********/

	/* メニューへのリンク */
	.link_to_subsitemenu {
		display: block;
		margin: 10px;
	}
	.link_to_subsitemenu a {
		display: block;
		padding: 10px;
		font-size: 1.5rem;
		border: 1px solid #333333;
		background: #eeeeee;
		color: #333;
		text-decoration: none;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
		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: #333;
		position: absolute;
		top: 50%;
		right: 0px;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	/* サブサイト共通ヘッダ */
	#mainimg {
		width: auto;
		margin: 10px 10px 0px;
	}
	#mainimg_box .site_name {
		position: static;
		font-size: 1.8rem;
		background: #333;
		color: #fff;
		text-shadow: none;
		padding: 5px 20px 0px;
	}
	#mainimg_box .site_name.noimage {
		background: #f6f6f6;
		color: #333;
		text-shadow: none;
		padding: 20px;
	}

	/* サブサイト共通フッタ */
	#site_footer {
		width: auto;
		margin: 0px 10px 30px;
	}
	#site_footer_box {
		padding: 15px;
	}
	#site_footer_box p {
		font-size: 1.4rem;
	}

	/* メイン */
	#mymainback {
		margin: 10px 10px 30px;
	}

	/* コンテンツヘッダ */
	.content_header_wrap {
		display: block;
	}
	#content_header {
		font-size: 1.3rem;
		width: auto !important;
		margin: 10px 0px 0px !important;
	}
	#content_header > span {
		display: block;
		margin: 0 0 10px;
	}

	/* 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;
	}

	/* 印刷 */
	#content_header > span.link_print,
	#print_mode_link,
	#print_mode_link_large {
		display: none !important;
	}

	/* 見出し */
	#main_header h1 {
		font-size: 2.4rem;
		padding: 20px;
		background-size: 180px auto;
	}

	#main_body h2 {
		font-size: 2rem;
		padding: 15px 20px 12px;
	}

	#main_body h3 {
		font-size: 1.8rem;
		padding: 12px 20px 9px;
	}

	#main_body h4 {
		font-size: 1.6rem;
		padding: 10px 20px 8px;
	}

	#main_body h5 {
		font-size: 1.5rem;
		padding: 8px 30px 6px;
		background-position: left 7px top 1rem;
	}

	#main_body h6 {
		font-size: 1.4rem;
		padding: 5px 30px 2px;
		background-position: left 7px top 0.7rem;
	}

	#main_body :where(h2, h3, h4, h5, h6) {
		margin: 15px 0 !important;
		letter-spacing: 0 !important;
	}

	/* 評価エリア */
	#hyouka_area_box {
		padding: 20px;
	}	
	#hyouka_area_box h2,
	#main_body #hyouka_area_box h2 {
		margin: 0 0 15px !important;
	}
	.hyouka_box_detail {
		font-size: 1.2rem;
	}

	/* お問い合わせ先 */
	#section_footer {
		padding: 20px;
		font-size: 1.6rem;
	}
	#section_footer h2,
	#main_body #section_footer h2 {
		font-size: 1.8rem;
		margin: 0 0 10px !important;
	}
	#section_footer_detail span[class*="sf_name"] {
		margin-bottom: 10px;
	}

	/* 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;
	}

	/* コンテンツフッタ */
	#content_footer {
		text-align: center;
		margin: 30px 0 0;
	}

	/* カレンダー登録 */
	#calendar_button_google,
	#calendar_button_yahoo {
		margin: 0px 10px 10px;
	}
	#calendar_button_google a,
	#calendar_button_yahoo a {
		font-size: 1.3rem;
	}

	/* SNSボタン */
	.sns_button_wrap {}

	/* おすすめコンテンツ */
	#second_osusume {
		padding: 20px 15px 10px;
	}
	#second_osusume h2 {
		margin: 0px 5px 10px;
	}
	#second_osusume ul {
		max-width: 420px;
		margin: 0px auto;
	}
	#second_osusume ul li {
		width: calc(50% - 10px);
		margin: 0px 5px 10px;
	}

	/********** 7 サイド **********/

	/* サイドバー */
	#sidebar1,
	#sidebar2 {
		margin-top: 30px;
	}

	/* レコメンド・AIレコメンド */
	#recommend_title, #ai_recommend_title {		
		padding: 10px 20px;
	}
	#recommend_title h2, #ai_recommend_title h2 {
		font-size: 1.6rem;
	}
	#recommend_title h2 span,
	#ai_recommend_title h2 span {
		display: block;
	}
	
	#sidebar_recommend ul li,#sidebar_ai_recommend ul li {
		padding: 15px;
	}

	/* 「見つからないときは」「よくある質問」バナー */
	#main #common_banner_link ul {
		display: block;
	}
	#common_banner_link ul li {
		width: auto;
		margin-bottom: 10px;
	}
	#common_banner_link ul li a {
		font-size: 1.6rem;
		padding: 15px 5px;
	}

	/* 重要なお知らせ */
	#second_important {}

	#second_important ul li {
		margin: 0px;
		padding: 10px 0px;
		border-bottom: 1px solid #ccc;
	}
	#second_important ul li:last-child {
		border-bottom: none;
	}
	#second_important ul li a {
		display: block;
		background: url(/img/sp/arrow_r.png) no-repeat right center;
		background-size: 8px auto;
		padding-right: 12px;
		text-decoration: none;
	}
	#second_important .link_box {
		text-align: center;
	}

	/* カウントダウン */
	.count_down_box {}

	/* 関連リンク */
	#kanren_link h2 {
		font-size: 1.6rem;
		padding: 15px 20px;
	}

	#kanren_link ul {
		padding: 15px 10px 15px 30px;
	}

	/* サイドメニュー */
	.subsite_menu_ttl.acc_title {
		padding-right: 10px;
	}
	.subsite_menu_list {
		padding: 0px 20px;
	}
	.subsite_menu_list ul {
		margin: 0px;
		padding: 0px;
		list-style: none;
	}
	.subsite_menu_list ul li {
		margin: 0px;
		padding: 10px;
		border-bottom: 1px solid #ccc;
	}
	.subsite_menu_list ul li:last-child {
		border-bottom: none;
	}
	.subsite_menu_list ul li a {
		display: block;
		background: url(/img/sp/arrow_r.png) no-repeat right center;
		background-size: 8px auto;
		padding-right: 12px;
		text-decoration: none;
	}

	/********** 8 リスト **********/

	/* リスト（一覧） */
	.info_list ul li {
		margin: 0px;
		padding: 10px;
	}

	.site_list_2 .info_list ul {
		display: block;
	}
	.site_list_2 .info_list ul li {
		display: block;
		width: auto;
		font-size: 1.6rem;
		line-height: 1.5;
		padding: 20px;
		margin-bottom: 10px;
	}

	/* リスト（日付） */
	.info_list.info_list_date ul li {
		display: block;
		width: auto;
		padding: 10px 15px;
	}
	.info_list.info_list_date ul li > span {
		display: block;
		font-size: 1.4rem;
	}
	.info_list.info_list_date ul li > span.article_date {
		width: auto;
	}

	/* リスト（担当課） */
	.article_section {
		display: block;
		text-align: right;
		padding-right: 10px;
	}
	.article_section a {
		display: inline !important;
		background: none !important;
		padding-right: 0px !important;
		text-decoration: underline !important;
	}

	/* リスト（サムネイル） */
	.list_pack .article_img {
		width: 120px;
	}
	.list_pack .article_img span {
		height: 90px;
	}
	.list_pack .article_img span:empty {
		height: 90px;
		background-size: contain;
	}

	/* リスト（サムネイル） 縦可変 */
	/*
	.list_pack .article_img span {
		height: auto;
	}
	.list_pack .article_img span img {
		position: static;
		-webkit-transform: none;
			-ms-transform: none;
				transform: none;
		width: 100%;
		height: auto;
	}
	*/

	/*=============== sp-parts-detail =============== */

	/* 画像サイズ */
	#main_body div[class*="detail"] img {
		max-width: 100%;
		height: auto !important;
		vertical-align: top;
	}

	/*=============== トップページ =============== */

	/* バナー広告 */
	ul.banner_list {
		max-width: 420px;
		margin: 0px auto;
	}
	ul.banner_list li {
		width: calc(50% - 10px);
		margin: 5px;
	}

	/* バナー広告（フッタ） */
	#footer_banner {
		width: auto;
		margin: 0px 10px 30px;
	}

	@media screen and (max-width: 320px) {
		#hyouka_area_box {
			padding: 20px 15px;
		}
	}

	/* ========== 背景色変更 ========== */

	/* 共通 */
	.color_change #he_left #logo h1 {
		background: transparent !important;
	}
	.color_change #support_menu_box {
		outline: none;
	}
	/* 黒 */
	.color_black .spm_menu_open #header2 {
		background-color: #000 !important;
	}

	/* 青 */
	.color_blue .spm_menu_open #header2 {
		background-color: #0000ff !important;
	}


}
/**********************************************************************************/
/* スマートフォン ここまで */
/**********************************************************************************/