@charset "utf-8";

/* var() 関数 */
:root {

	/* コンテンツ幅 */
	--content-width: 1080px;
	/* sidebar1の幅 */
	--sidebar1-width: 300px;
	/* sidebar2の幅 */
	--sidebar2-width: 300px;

	/* #mymainbackの上下余白 */
	--mymainback-margin-top: 30px;
	--mymainback-margin-bottom: 60px;
	/* コンテンツの上下余白 */
	--content-margin-narrow: 30px; /* 狭い */
	--content-margin-normal: 40px; /* 標準 */
	--content-margin-wide: 60px;   /* 広い */

	/* フォントサイズ / 行間 / 文字間 */
	--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: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Arial, 'BIZ UDPGothic', Meiryo, メイリオ, Osaka, sans-serif;
	/* 見出し / 太字 */
	--fontfamily-bold: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Arial, 'BIZ UDPGothic', Meiryo, メイリオ, Osaka, sans-serif;

	/* 基本文字色 */
	--text-color: #333333;

	/* a:link のリンク色 */
	--textlink-link: #333333;
	/* a:visited のリンク色 */
	--textlink-visited: #660099;
	/* a:active のリンク色 */
	--textlink-active: #cc0000;
	/* a:hoder / a:focus のリンク色 */
	--textlink-hover: #000000;

	/* 表の枠線の色 */
	--table-bordercolor: #333333;
	/* 表の見出し背景色・文字色 */
	--table-th-background: #f6f6f6;
	--table-th-color: #333333;

	/* ボタン（一覧をみる / アンケート送信 / お問い合わせ送信） */
	--btn-background: #e6e6e6;
	--btn-border: 1px solid transparent;
	--btn-borderradius: 0;
	--btn-boxshadow: none;
	--btn-color: #333333;
	--btn-textdecoration: none;
	--btn-transition: none;
	/* hover / focus */
	--btn-hover-background: #e6e6e6;
	--btn-hover-border: 1px solid transparent;
	--btn-hover-borderradius: 0;
	--btn-hover-boxshadow: none;
	--btn-hover-color: #333333;
	--btn-hover-textdecoration: underline;

	/* 大分類見出し背景色・文字色 */
	--lifetitle-background: #f6f6f6;
	--lifetitle-color: #333333;

}
/* var() 関数 ここまで */


/* ===== 1 基本設定 ===== */

/* フォント */
html {
	font-size: var(--fontsize-main-base, 62.5%);
}

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,
.kakuka_info_ttl,
.life_cat_list_ttl,
.subsite_menu_ttl,
.site_name,
#main_body table.tbl_ques caption,
#main_body table#mail_form_tbl caption {
	font-family: var(--fontfamily-bold, sans-serif);
	line-height: var(--lineheight-detail-midashi, 1.5);
	letter-spacing: var(--letterspacing-detail-midashi, 0.1em);
	font-weight: bold;
}

/* JavaScript挿入箇所のフォントファミリー（webフォント使用時） */
/*
#pankuzu_wrap, #footstep_wrap, #keep_page, #count_down_area,
#important_noticest_area, #important_noticest_area h2,
#osusume_contents_area, #osusume_contents_area h2,
#recommend_tag, #recommend_tag h2,
#ai_recommend_tag, #ai_recommend_tag h2 {
	font-family: Arial, 'BIZ UDPGothic', Meiryo, メイリオ, Osaka, sans-serif;
}
*/

em {
	font-family: '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: var(--text-color, #333333);
}

/* リンク */
a:link {
	color: var(--textlink-link, #333333);
	text-decoration: underline;
}
a:visited {
	color: var(--textlink-visited, #660099);
	text-decoration: underline;
}
a:active {
	color: var(--textlink-active, #cc0000);
	text-decoration: none;
}
a:hover, a:focus {
	color: var(--textlink-hover, #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;
}


/* 全てのsummaryから▶を消す */
summary {
	list-style: none;
}

summary::-webkit-details-marker {
	display: none;
}

summary::marker {
	display: none;
}


/* ===== 2 ヘッダ / フッタ ===== */

/* 「 parts-header-footer 」 参照 */

/* ===== 3 パンくず / 足あと ===== */

/* パンくず・足あと */
#pankuzu_wrap {
	/* background: #f6f6f6; */
	/* color: #333333; */
	padding: 10px 0px 10px;
	font-size: var(--fontsize-main-small, 1.5rem);
}
#pankuzu_wrap > div {
	width: var(--content-width, 1080px);
	margin: 0px auto 10px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

.pankuzu,
#footstep {
	position: relative;
	padding-left: 20px;
}
.pankuzu .icon_current {
	display: none;
}
.pankuzu:first-child .icon_current,
#footstep_ttl {
	display: none;
	width: 5rem;
	height: auto;
	min-height: 2rem;
	border: none;
	border-radius: 0;
	background: #333333;
	color: #ffffff;
	font-size: 1.2rem;
	line-height: 1.6rem;
	padding: 0.2rem 0px;
	text-align: center;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	position: absolute;
	top: 1px;
	left: 0px;
}

#clear_footstep {
	width: 24px;
	height: 24px;
	border-radius: 100%;
	border: 2px solid #ffffff;
	background: url("/img/common/icon_clear.png") no-repeat center center #333333;
	background-size: 10px 10px;
	color: #ffffff;
}

/* ===== 4 メイン ===== */

/* メイン */
#mymainback {
	padding-top: var(--mymainback-margin-top, 30px);
	padding-bottom: var(--mymainback-margin-bottom, 60px);
}

/* 見出し */
#main_header {
	margin-bottom: var(--content-margin-narrow, 30px);
}
#main_header h1 {
	margin: 0px;
	padding: 26px 20px 26px 40px;
	background: url(/img/common/h1bg1.png) no-repeat left top,url(/img/common/h1bg2.png) no-repeat right top -23px #005bac;
	color: #fff;
	font-size: 3.2rem;
	border-radius: 0px 10px 10px 10px
}

#main_body :where(h2,h3,h4,h5,h6),
.kakuka_info_ttl,
.life_cat_list_ttl {
	clear: both;
	margin: 1em 0px;
}
.life_cat_list_ttl {
	margin: 0px;
}

#main_body .toc_link_wrap{
	display: block;
	border-radius: 10px;
}

#main_body h2 {
	padding: 21px 30px 20px 40px;
	/* background: repeating-linear-gradient(-45deg, rgba(229, 238, 247, 1), rgba(229, 238, 247, 1) 2px, rgba(255, 255, 255, 1) 0, rgba(255, 255, 255, 1) 4px); */
	background: url(/img/common/h2bg.png) repeat left top;
	font-size: 2.6rem;
	border-radius: 0px 10px 10px 10px; 
}

#main_body h3,
.kakuka_info_ttl,
.life_cat_list_ttl {
	padding: 17px 30px;
	padding-left: 40px;
	font-size: 2.4rem;
	border-top: 2px solid #005bac;
	border-bottom: 1px solid #005bac;
}

#main_body h4 {
	padding: 14px 30px 13px;
	padding-left: 40px;
	border-bottom: 1px solid #005bac;
	box-shadow: 3px 0px 0px 0px #005bac inset,4px 0px 0px 0px #e9546b inset;
	font-size: 2.0 rem;
}

#main_body h5 {
	padding: 10px 30px;
	padding-left: 40px;
	font-size: 1.8rem;
	position: relative;
	/* background: url(/img/common/h5bg.png) repeat-x left bottom; */
}
#main_body h5::before{
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #005bac;
	position: absolute;
	top: calc(10px + 0.5em);
	left: 10px;
}
#main_body h5::after{
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: repeating-linear-gradient(90deg, rgba(0, 91, 172, 1), rgba(0, 91, 172, 1) 2px, rgba(128, 173, 214, 1) 0, rgba(128, 173, 214, 1) 4px);
	position: absolute;
	bottom: 0;
	left: 0;
}

#main_body h6 {
	padding: 7px 30px 6px;
	padding-left: 40px;
	font-size: 1.8rem;
	position: relative;
}
#main_body h6::before{
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #005bac;
	opacity: 0.5;
	position: absolute;
	top: calc(7px + 0.5em);
	left: 10px;
}

/* テーブル */
#main_body table {
	border-color: var(--table-bordercolor, #333333);
	border-collapse: collapse;
	border-style: solid;
	border-width: 2px; /* CMSver5以降は管理画面で枠線の太さを変更することができない（機能が削除された）ためCSSで指定 */
	margin: 0px 0px 1em;
	max-width: 100%;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
#main_body th {
	background: var(--table-th-background, #f6f6f6);
	color: var(--table-th-color, #333333);
	border-color: var(--table-bordercolor, #333333);
	border-collapse: collapse;
	border-style: solid;
	border-width: 1px;
	padding: 0.5em;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
#main_body td {
	border-color: var(--table-bordercolor, #333333);
	border-collapse: collapse;
	border-style: solid;
	border-width: 1px;
	padding: 0.5em;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
/* テーブル内のpタグのマージンを0にする */
#main_body table p {
	margin: 0px 0px 1em;
}
#main_body table p:last-child {
	margin: 0px;
}

/* -----
見出しとテーブルの設定は「 editor-public-page 」にも適用すること
----- */

/* コンテンツヘッダ */
#content_header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	margin: 0px 0px 20px;
	text-align: right;
	font-size: var(--fontsize-main-small, 1.5rem);
}
#content_header > span {
	display: block;
}
.open_page_id{
	margin-left: 0;
	margin-right: auto;
	background: #dfeef6;
	font-weight: bold;
	padding: 5px 10px;
	line-height: 1;
}

/* コンテンツフッタ */
#content_footer {
	clear: both;
}

/* 印刷 */
#print_mode_link,
#print_mode_link_large {
	display: inline-block;
	background: url("/img/common/icon_print.png") no-repeat left center transparent;
	padding-left: 20px;
}

/* SDGsアイコン */
.d-flex.f-wrap-wrap,
.sdgs-icons {
	margin: 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: var(--content-margin-normal, 40px) 30px 0px 0px;
}
#calendar_button_google a,
#calendar_button_yahoo a {
	display: inline-block;
	font-size: var(--fontsize-main-small, 1.5rem);
	line-height: 2rem;
	padding: 5px 0px 5px 35px;
	background: url("/img/common/icon_calendar.png") no-repeat left center transparent;
}

/* SNSボタン */
.sns_button_wrap {
	display: flex;
	flex-wrap: nowrap;
	gap: 5px;
	line-height: 1;
}
.sns_button_wrap img {
	width: 32px;
	height: auto;
}

/* PDF・WMPリンク */
.pdf_download,
.wmplayer_download {
	clear: both;
	margin: var(--content-margin-normal, 40px) 0px 0px;
	width: 100%;
	display: table;
}
.pdf_download .pdf_img,
.wmplayer_download .wmplayer_img {
	display: table-cell;
	vertical-align: middle;
	width: 158px;
	margin: 0px;
	padding: 0px;
}
.wmplayer_download .wmplayer_img {
	width: 88px;
}
.pdf_download .pdf_img img,
.wmplayer_download .wmplayer_img img {
	width: 100%;
	height: auto;
	vertical-align: top;
}

.tenpu_txt {
	display: table-cell;
	vertical-align: middle;
	margin: 0px;
	padding: 2px 0px 2px 10px;
	font-size: 1.3rem;
	line-height: 1.4;
	letter-spacing: 0em;
}

/* 評価エリア */
#hyouka_area_box {
	clear: both;
	margin: var(--content-margin-normal, 40px) 0px 0px;
	padding: 0;
	background: #e3e3e3;
}

#hyouka_area_box h2,
#main_body #hyouka_area_box h2 {
	margin: 0px;
	padding: 20px 20px;
	border: none;
	border-radius: 0;
	background: none;
	color: inherit;
	font-size: 2rem;
	background: #d6d7d6;
}
#main_body #hyouka_area_box h2::before,
#main_body #hyouka_area_box h2::after {
	display: none;
}
#main_body #hyouka_area_box hr.cf {
	margin: 0px;
}
#hyouka_area_box form{
	padding: 10px 20px 20px;
}

#hyouka_area_box .hyouka_box_detail {
	border-bottom: 1px solid #dddddd;
	margin-bottom: 15px;
	padding-bottom: 15px;
	font-size: var(--fontsize-main-small, 1.5rem);
}
#hyouka_area_box .hyouka_box_detail:last-child {
	border-bottom: none;
	margin-bottom: 0px;
}
#hyouka_area_box .hyouka_box_detail fieldset {
	border: none;
	margin: 0px;
	padding: 0px;
}
#hyouka_area_box .hyouka_box_detail fieldset legend {
	margin: 0px 0px 5px;
	padding: 0px;
	width: 100%;
}
#hyouka_area_box .hyouka_box_detail fieldset span {
	display: inline-block;
	vertical-align: top;
	margin: 0px 4em 0px 0px;
}
#hyouka_area_box .hyouka_box_detail fieldset span:first-of-type {
	min-width: 11em;
}
.font_size_changed #hyouka_area_box .hyouka_box_detail fieldset span:first-of-type {
	min-width: auto;
}
#hyouka_area_box .hyouka_box_detail fieldset span input {
	margin: 3px 4px 5px 5px;
	vertical-align: middle;
}
.hyouka_area_ans textarea {
	max-width: 100%;
}

#hyouka_area_submit {
	margin-top: 10px;
}
#hyouka_area_submit input {
	display: inline-block;
	border: 1px solid transparent;
	border-radius: 0;
	background: #ffffff;
	color: #333333;
	margin: 0px;
	padding: 10px;
	font-size: var(--fontsize-main-small, 1.5rem);
	line-height: 1.8rem;
	text-decoration: none;
	text-align: center;
	min-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;
}

/* 評価エリア（確認ページ） */
div[class*="confirm_quest_hankyou"] #hyouka_area_box {
	margin: 0px;
	padding: 0px;
	background: none;
	border: none;
	border-radius: 0px;
	color: inherit;
	-webkit-box-shadow: none;
	        box-shadow: none;
}

/* お問い合わせ先 */
#section_footer {
	clear: both;
	margin: var(--content-margin-normal, 40px) 0px 0px;
	padding: 0px;
	background: #dfeef6;
}

#section_footer h2,
#main_body #section_footer h2 {
	margin: 0px 0px 0px;
	padding: 20px;
	border: none;
	border-radius: 0;
	background: none;
	color: inherit;
	font-size: 2rem;
	background: #cadef0;
}
#main_body #section_footer h2::before,
#main_body #section_footer h2::after {
	display: none;
}
#main_body #section_footer hr.cf {
	margin: 0px;
}
#section_footer_detail{
	padding: 20px;
}

#section_footer_detail span {
	display: inline-block;
	vertical-align: top;
	margin-right: 1em;
}
#section_footer_detail span[class*="sf_name"] {
	margin-bottom: 10px;
}

/* おすすめコンテンツ */
#osusume_contents_area {
	clear: both;
}
#osusume_contents_area .second_osusume {
	margin: var(--content-margin-normal, 40px) 0px 0px;
	padding: 30px;
	background: #f6f6f6;
}
#osusume_contents_area .second_osusume h2,
#osusume_contents_area .second_osusume_ttl {
	margin: 0px 0px 20px;
	padding: 0px 0px 0px 25px;
	background: url("/img/common/icon_osusume.png") no-repeat left center transparent;
	color: inherit;
	font-size: 2rem;
}
#osusume_contents_area .second_osusume ul {
	margin: 0px;
	padding: 0px 10px;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 30px;
}
#osusume_contents_area .second_osusume ul li {
	width: 200px;
}
#osusume_contents_area .second_osusume ul li div > span {
	display: block;
}
#osusume_contents_area .second_osusume ul li div > span.osusume_img {
	margin-bottom: 10px;
}
#osusume_contents_area .second_osusume ul li div > span.osusume_img img {
	width: 100%;
	height: auto;
	vertical-align: top;
}

/* ===== 5 サイド ===== */

/* サイドバー */
#sidebar1 > div,
#sidebar2 > div {
	margin-bottom: 20px;
}
#sidebar1 > div:last-child,
#sidebar2 > div:last-child,
#sidebar1 > div:empty,
#sidebar2 > div:empty {
	margin-bottom: 0px !important;
}

#sidebar1 img,
#sidebar2 img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

/* 自由編集項目 */
.free_box {
	display: flow-root;
}
.free_box p {
	margin: 0px 0px 1em;
}
.free_box p:last-child {
	margin-bottom: 0px;
}
.free_box img {
	max-width: 100%;
	height: auto !important;
	vertical-align: top;
}

/* 重要なお知らせ */
#important_noticest_area .second_important {
	background: #fde1e7;
	padding: 0px 0px;
}
#important_noticest_area .second_important a {
	color: #c20000;
}

#important_noticest_area .second_important h2,
#important_noticest_area .second_important_ttl {
	margin: 0px 0px 0px;
	padding: 15px 0px 10px;
	color: #c20000;
	font-size: 1.6rem;
	text-align: center;
	background: #fcd4dc;
}

#important_noticest_area .second_important ul {
	margin: 0px 0px 15px;
	padding: 20px;
	list-style: none;
}
#important_noticest_area .second_important ul li:last-child {
	margin-bottom: 0px;
}
#important_noticest_area .second_important ul li > span {
	display: block;
}
#important_noticest_area .second_important ul li > span.article_date {
	font-size: var(--fontsize-main-small, 1.5rem);
}

#important_noticest_area .second_important .link_box {
	margin-top: 20px;
	text-align: right;
}
#important_noticest_area .second_important .link_box > span {
	display: block;
	margin-top: 5px;
}
#important_noticest_area .second_important .link_box > span a {
	font-size: var(--fontsize-main-small, 1.5rem);
}

/* カウントダウン */
#count_down_area .count_down_box {
	background: #f6f6f6;
	margin: 0px 0px 15px;
	padding: 20px;
	position: relative;
}
#count_down_area .count_down_box:last-child {
	margin-bottom: 0px;
}

#count_down_area .count_down_box2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
#count_down_area .count_down_box2 > span {
	display: inline-block;
	vertical-align: top;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

#count_down_area .count_down_box2 > span.count_img {
	width: 100px;
}
#count_down_area .count_down_box2 > span.count_img > span {
	display: block;
}
#count_down_area .count_down_box2 > span.count_img > span img {
	width: 100%;
	height: auto;
	vertical-align: top;
}

#count_down_area .count_down_box2 > span.count_txt {
	width: calc(100% - 120px);
}
#count_down_area .count_down_box2 > span.count_txt:only-child {
	width: 100%;
}
#count_down_area .count_down_box2 > span.count_txt > span {
	display: block;
}
#count_down_area .count_down_box2 > span.count_txt > span.count_comment {
	margin-top: 10px;
	font-size: 1.4rem;
}
#count_down_area .count_down_box2 > span.count_txt > span.count_day {
	margin-top: 10px;
	color: #cc0000;
	font-weight: bold;
	text-align: right;
}
#count_down_area .count_down_box2 > span.count_txt > span.count_day span {
	font-size: 3rem;
	line-height: 1;
	margin-left: 0.5em;
	margin-right: 0.25em;
}

/* カウントダウン クリアボタン */
#count_down_area .count_down_clear {
	display: block;
	width: 24px;
	height: 24px;
	margin: 0px;
	padding: 0px;
	border: 2px solid #ffffff;
	background: url("/img/common/icon_clear.png") no-repeat center center #333333;
	background-size: 10px 10px;
	border-radius: 100%;
	color: #ffffff;
	line-height: 1;
	text-align: left;
	text-indent: -9999em;
	overflow: hidden;
	cursor: pointer;
	position: absolute;
	top: 0px;
	right: 0px;
}
/* カウントダウン クリアボタンを使用しない */
#count_down_area .count_down_clear {
	display: none;
}

/* レコメンド・AIレコメンド */
#sidebar_recommend,
#sidebar_ai_recommend {
	background: #dfeef6;
}

#recommend_title,
#ai_recommend_title {
	background: #bfddef;
	text-align: center;
	padding: 10px 5px;
	margin: 0px 0px 5px;
}
#recommend_title h2,
#ai_recommend_title h2 {
	display: inline-block;
	text-align: left;
	font-size: 1.6rem;
	line-height: 2rem;
	margin: 0px;
	padding: 5px 0px 5px 0px;
}
#recommend_title h2 {}
#ai_recommend_title h2 {}
#recommend_title h2 span,
#ai_recommend_title h2 span {
	display: block;
}

#sidebar_recommend ul,
#sidebar_ai_recommend ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
#sidebar_recommend ul li,
#sidebar_ai_recommend ul li {
	display: block;
	/* border-top: 1px solid #ffffff; */
	padding: 10px 20px;
}

/* 関連リンク */
#kanren_link h2 {
	background: #c9ddef;
	margin: 0px;
	padding: 15px 20px;
	font-size: 2rem;
	text-align: center;
}
#kanren_link_list{
	border: 1px solid #e0edf3;
}
#kanren_link ul {
	margin: 0px;
	padding: 20px 0px 20px 20px;
	list-style: none;
}
#kanren_link ul li {
	margin-bottom: 15px;
}
#kanren_link ul li:last-child {
	margin-bottom: 0px;
}

/* 「見つからないときは」「よくある質問」バナー */
.common_banner_link ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
.common_banner_link *[class*="common_banner_"] {
	margin-bottom: 15px;
}
.common_banner_link *[class*="common_banner_"]:last-child {
	margin-bottom: 0px;
}
.common_banner_link a {
	display: block;
	border: 2px solid #4e4e4e;
	color: #333333;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.8rem;
	letter-spacing: 0.1em;
	padding: 15px 5px;
	text-align: center;
}
.common_banner_link a > span {
	display: inline-block;
}
.common_banner_link .common_banner_mitsukaranai a > span {
}
.common_banner_link .common_banner_faq a > span {
}
.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;
}

/* 「見つからないときは」「よくある質問」バナー（1カラム） */
@media screen and (min-width: 1081px) {
	#main .common_banner_link,
	#main .common_banner_link ul {
		margin: var(--content-margin-normal, 40px) 0px 0px;
		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;
		gap: 30px;
	}
	#main .common_banner_link ul {
		margin: 0px;
		width: 100%;
	}
	#main .common_banner_link *[class*="common_banner_"] {
		width: calc(50% - 15px);
		margin: 0px;
	}
}
/* 「見つからないときは」「よくある質問」バナー（1カラム） ここまで */

/* サイドメニュー */
.side_box {
	background: #dfeef6;
}

.side_box_ttl h2 {
	background: #005bac;
	color: #fff;
	margin: 0px;
	padding: 15px 20px;
	font-size: 1.8rem;
	text-align: center;
}

.side_box_txt {
	padding: 20px;
	border-top: 2px solid #E9546B;
}
.side_box_txt p {
	margin: 0px 0px 1em;
}
.side_box_txt p:last-child {
	margin-bottom: 0px;
}
.side_box_txt > div {
	margin: 0px 0px 1em;
}
.side_box_txt > div:last-child {
	margin-bottom: 0px;
}

.side_box_list ul {
	margin: 0px;
	padding: 20px 20px 20px 40px;
}
.side_box_list ul li {
	margin: 0px 0px 15px;
}
.side_box_list ul li:last-child {
	margin-bottom: 0px;
}
.side_box_list ul li ul {
	padding: 10px 0px 0px 20px;
}
.side_box_list ul li ul li {
	margin-bottom: 5px;
}
.side_box_list ul li ul li:last-child {
	margin-bottom: 0px;
}

/* 関連情報 */
#kanren_info {
	background: #dfeef6;
	padding: 20px 20px 10px;
	text-align: center;
}
#kanren_info h2 {
	display: inline-block;
	background: url("/img/common/icon_kanren.png") no-repeat left center transparent;
	font-size: 2rem;
	margin: 0px;
	padding: 10px 20px 10px 35px;
}

#kanren_info .kanren_box {
	padding: 15px 0px;
	text-align: left;
}
#kanren_info .kanren_box h3 {
	margin: 0px 0px 15px;
	padding: 13px 20px;
	background: #ffffff;
	font-size: 1.6rem;
	text-align: center;
}

#kanren_info .kanren_box ul {
	margin: 0px;
	padding: 5px 0px 5px 20px;
}
#kanren_info .kanren_box ul li {
	margin-bottom: 10px;
}
#kanren_info .kanren_box ul li:last-child {
	margin-bottom: 0px;
}

#kanren_info div.link_ichiran {
	margin: 15px 15px 0px;
	padding: 0px;
	text-align: center;
}
#kanren_info div.link_ichiran a {
	display: block;
}

/* ===== 6 リスト ===== */

/* リスト（横並び） */
.navigation,
.navigation 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: 15px;
}
.navigation ul li,
.navigation > div {
	display: inline-block;
	vertical-align: top;
	padding-right: 15px;
	border-right: 1px solid;
	line-height: 1.25;
}
.navigation ul li:last-child,
.navigation > div:last-child {
	padding-right: 0px;
	border-right: none;
}

/* リスト（一覧） */
.info_list ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
.info_list ul li {
	margin: 0px 0px 15px;
}

/* リスト（日付） */
.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 {
	width: 100%;
	display: table;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	padding-top: 10px;
	padding-bottom: 10px;
}

.list_pack .article_txt {
	display: table-cell;
	vertical-align: top;
}
.list_pack .article_txt .article_date {
	display: block;
}
.list_pack .article_txt .article_title {
	display: block;
}

.list_pack .article_img {
	display: table-cell;
	vertical-align: top;
	width: 200px;
	padding-right: 20px;
}
.list_pack .article_img span {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 200 / 150;
	overflow: hidden;
	background: #f6f6f6;
}
.list_pack .article_img span:empty {
	background: url("/img/common/noimage.png") no-repeat center center transparent;
	background-size: contain;
}
.list_pack .article_img span img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
	-o-object-position: center;
	   object-position: center;
}

/* リスト（一覧リンク） */
div.link_ichiran {
	margin: 30px 0px 20px;
	padding: 0px;
	text-align: right;
}
div.link_ichiran a {
	display: inline-grid;
	grid-template-columns: 1fr 20px;
	align-items: center;
	border: 1px solid transparent;
	border-radius: 0;
	background: #005bac;
	color: #fff;
	font-size: var(--fontsize-main-small, 1.5rem);
	line-height: 1.8rem;
	text-decoration: none;
	margin: 0px;
	padding: 10px 20px;
	text-align: center;
	border-radius: 100vmax;
	gap: 10px;
}
div.link_ichiran a:hover,
div.link_ichiran a:focus {
	text-decoration: underline;
}

#main div.link_ichiran a {
	min-width: 260px;
}

div.link_ichiran a::after{
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background: url(/img/common/icon-arrow-right-white.png);
	
}

/* ===== 7 新着情報 ===== */

/* 新着情報 */
.section_information {
	background: url(/img/common/news-title-bg.png) no-repeat left top #dfeef6;
	margin: var(--content-margin-normal, 40px) 0px;
	padding: 30px;
}
.section_information h2 {
	margin: 0px;
	padding: 0px;
	border: none;
	border-radius: 0;
	background: none;
	font-size: 2rem;
	color: #005bac;
}

.section_information p.no_data {
	margin: 0px;
	padding: 20px 0px;
}

.section_information_list ul {
	margin: 0px 0px 10px;
	padding: 20px 0px;
	list-style: none;
}
.section_information_list ul li {
	width: 100%;
	display: table;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	margin: 0px 0px 0px;
	padding: 15px 0px;
	border-bottom: 1px solid currentColor;
}
.section_information_list ul li span {
	display: table-cell;
	vertical-align: top;
}
.section_information_list ul li > span.article_date {
	width: calc(11em + 10px);
	font-size: var(--fontsize-detail-small, 1.6rem);
	padding-top: 0.1rem;
	color: #005bac;
}

.section_information_list img.icon_new {
	vertical-align: baseline;
	margin-left: 0.5em;
}
.section_information_list ul li span a{
	display: grid;
	grid-template-columns: 1fr 19px;
	gap: 10px;
	align-items: center;
}
.section_information_list ul li span a::after{
	content: '';
	display: block;
	width: 19px;
	height: 19px;
	background: url(/img/common/icon-arrow-right-blue.png);
}

/* 新着情報（文字拡大時） */
.font_size_changed .section_information_list ul li,
.font_size_changed .section_information_list ul li > span {
	display: block;
}
.font_size_changed .section_information_list ul li > span.article_date {
	width: auto;
	padding-top: 0px;
}

/* 新着情報（一覧 / RSS） */
.section_information_list div.link_box {
	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;
	gap: 20px;
}
.section_information_list div.link_box span {
	display: block;
	/* vertical-align: top; */
	width: 260px;
	max-width: 100%;
}
.section_information_list div.link_box span a {
	display: grid;
	grid-template-columns: 1fr 20px;
	align-items: center;
	border: 1px solid transparent;
	border-radius: 0;
	background: #005bac;
	color: #fff;
	font-size: var(--fontsize-main-small, 1.5rem);
	line-height: 1.8rem;
	text-decoration: none;
	margin: 0px;
	padding: 10px 20px;
	text-align: center;
	border-radius: 100vmax;
	gap: 10px;
}
.section_information_list div.link_box span a:hover,
.section_information_list div.link_box span a:focus {
	text-decoration: underline;
}
.section_information_list div.link_box span a::after{
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background: url(/img/common/icon-arrow-right-white.png);
}

/* 新着情報（サムネイル） */
.section_information_thum {
	width: 100%;
	display: table;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	margin: 20px 0px 0px;
}
.section_information_thum > div {
	display: table-cell;
	vertical-align: top;
}
.section_information_thum > div.lettering2 {
	width: 200px;
	padding-right: 20px;
}
.section_information_thum > div.lettering2 img {
	width: 100%;
	height: auto;
	vertical-align: top;
}
.section_information_thum > div.lettering3 .lettering_a > span {
	display: block;
}

/* 新着情報2 */
.section_information2 {
	margin: var(--content-margin-normal, 40px) 0px;
}
.section_information2 h2 {
	margin: 0px 0px 15px;
	padding: 0px;
	border: none;
	border-radius: 0;
	background: none;
	color: inherit;
	font-size: 2.4rem;
}

/* ===== 8 組織ページ / 分類ページ ===== */

/* Googlemap */
.gglmap iframe,
.gglmap object,
.gglmap embed {
	width: 100%;
	height: auto;
	aspect-ratio: 600 / 450;
}

/* 課室 */
div[class*="soshiki"] #content_header {
	display: none !important; /* ページIDを非表示 */
}

#soshiki_pr_image {
	margin: var(--content-margin-narrow, 30px) 0px;
}
#soshiki_pr_image img {
	width: auto;
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

#main_body div#freespace_ka {
	margin: var(--content-margin-narrow, 30px) 0px;
}
#freespace_ka p {
	margin: 0px 0px 1em;
}
#freespace_ka p:last-child {
	margin-bottom: 0px;
}

#freespace2_ka p {
	margin: 0px 0px 1em;
}
#freespace2_ka p:last-child {
	margin-bottom: 0px;
}

.kakuka_contact_wrap .grpname_box {
	border-top: 1px solid;
	padding-top: 1em;
	margin-top: 1em;
}

.kakuka_view img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 300px;
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

.midashi_ka_detail {
	margin-bottom: var(--content-margin-normal, 40px);
}
.midashi_ka_detail:last-child {
	margin-bottom: 0px;
}

/* 部局 */
#main_body div#freespace_bu {
	margin: var(--content-margin-narrow, 30px) 0px;
}
#freespace_bu p {
	margin: 0px 0px 1em;
}
#freespace_bu p:last-child {
	margin-bottom: 0px;
}

.kakuka_info_box {
	margin-bottom: var(--content-margin-normal, 40px);
}
.kakuka_contact_box > div:not(.kakuka_info_ttl) {
	margin-bottom: 0.5em;
}
.kakuka_contact_box > div:not(.kakuka_info_ttl):last-child {
	margin-bottom: 0px;
}

.kakuka_tel_list .grpname:has(span:empty) {
	display: none;
}

div[class*="soshiki_kakubu"] #main_body > div {
	margin-bottom: var(--content-margin-normal, 40px);
}
div[class*="soshiki_kakubu"] #main_body > div:last-child {
	margin-bottom: 0px;
}

/* 組織でさがす */
div[class*="soshiki_index"] #main_body > div {
	margin-bottom: var(--content-margin-normal, 40px);
}
div[class*="soshiki_index"] #main_body > div:last-child {
	margin-bottom: 0px;
}

#soshiki_hyouji,
div[class*="soshiki_index"] #main_body > div#soshiki_hyouji {
	margin: 30px 0px;
}
#soshiki_hyouji 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: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 15px;
}
#soshiki_hyouji ul li {
	display: inline-block;
	vertical-align: top;
	padding-right: 15px;
	border-right: 1px solid;
	line-height: 1.25;
	font-size: var(--fontsize-main-small, 1.5rem);
}
#soshiki_hyouji ul li:last-child {
	padding-right: 0px;
	border-right: none;
}

/* 新着情報一覧 */
div[class*="soshiki_news"] img.icon_new {
	vertical-align: baseline;
	margin-left: 0.5em;
}

/* 改ページ */
.page_num {
	margin: var(--content-margin-normal, 40px) 0px 0px;
	font-size: 1.8rem;
	letter-spacing: 0.2em;
}
.page_num_ttl {
	font-size: 1.6rem;
}
.page_num_view {
	font-size: 1.6rem;
	margin-top: 10px;
	letter-spacing: 0em;
}

/* サイトマップ */
#sitemap_list_wrap > div {
	margin-bottom: var(--content-margin-wide, 60px);
}
#sitemap_list_wrap > div > div {
	margin-bottom: var(--content-margin-normal, 40px);
}
#sitemap_list_wrap > div:last-child,
#sitemap_list_wrap > div > div:last-child {
	margin-bottom: 0px;
}

/* 分類でさがす */
div[class*="life_index"] #main_body > div {
	margin-bottom: var(--content-margin-normal, 40px);
}
div[class*="life_index"] #main_body > div:last-child {
	margin-bottom: 0px;
}

/* 大分類見出し */

/* ライフステージ */
.list_lifestage {
	margin: var(--content-margin-wide, 60px) 0px;
}
.list_lifestage h2 {
	margin: 0px 0px 20px;
	padding: 0px;
	border: none;
	background: none;
	font-size: 2rem;
}
.list_lifestage 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: 16px;
}
.list_lifestage ul li {
	width: 121px;
}
.list_lifestage ul li a {
	display: block;
	border: 1px solid transparent;
	border-radius: 0;
	background-color: #f6f6f6;
	background-repeat: no-repeat;
	background-position: left 50% top 20px;
	font-size: 1.6rem;
	line-height: 1.8rem;
	text-align: center;
	padding: 80px 10px 20px;
	height: 100%;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.list_lifestage ul li.lifestage01 a {
	background-image: url("/img/lifestage/lifestage1_b.png");
}
.list_lifestage ul li.lifestage02 a {
	background-image: url("/img/lifestage/lifestage2_b.png");
}
.list_lifestage ul li.lifestage03 a {
	background-image: url("/img/lifestage/lifestage3_b.png");
}
.list_lifestage ul li.lifestage04 a {
	background-image: url("/img/lifestage/lifestage4_b.png");
}
.list_lifestage ul li.lifestage05 a {
	background-image: url("/img/lifestage/lifestage5_b.png");
}
.list_lifestage ul li.lifestage06 a {
	background-image: url("/img/lifestage/lifestage6_b.png");
}
.list_lifestage ul li.lifestage07 a {
	background-image: url("/img/lifestage/lifestage7_b.png");
}
.list_lifestage ul li.lifestage08 a {
	background-image: url("/img/lifestage/lifestage8_b.png");
}

/* 分類 */
div[class*="life"] #content_header {
	display: none !important; /* ページIDを非表示 */
}

#life_cat_list_wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin: 0px 0px 40px;
}
.life_cat_list {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

#main_body .life_cat_list h2,
#main_body .life_cat_list h3 {
	margin-top: 0px;
}

.life_cat_list .info_list.info_list_date ul li {
	display: block;
}
.life_cat_list .info_list.info_list_date ul li > span {
	display: block;
}
.life_cat_list .info_list.info_list_date ul li > span.article_date {
	width: auto;
	padding-top: 0px;
}

.life_gaiyou {
	margin-bottom: 1em;
}

/* 大分類3カラム */
div[class*="life_list3"] .life_cat_list {
}

/* 小分類 */
div[class*="life_list1"] #main_body > div {
	margin-bottom: var(--content-margin-normal, 40px);
}
div[class*="life_list1"] #main_body > div:last-child {
	margin-bottom: 0px;
}

/* サブカテゴリ */
#lifesub_cat_list_wrap {
	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;
}
.lifesub_cat_list {
	width: calc(50% - 15px);
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

#main_body .lifesub_cat_list h2,
#main_body .lifesub_cat_list h3 {
	margin-top: 0px;
}

.lifesub_cat_list .info_list.info_list_date ul li {
	display: block;
}
.lifesub_cat_list .info_list.info_list_date ul li > span {
	display: block;
}
.lifesub_cat_list .info_list.info_list_date ul li > span.article_date {
	width: auto;
	padding-top: 0px;
}

/* ===== 9 バナー ===== */
.banner_list {
	padding: 60px 0px;
}
.banner_list:last-child{
	padding-bottom: 0;
}
.banner_list h2{
	text-align: center;
	font-size: 2rem;
	line-height: 1;
	margin: 0px 0px 30px;
	padding: 0px;
}
.banner_list ul{
	margin: 0px;
	padding: 0px;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(auto-fill,250px);
	gap: 20px 26px;
}
.banner_list li{
	outline: 1px solid #b1b1b1;
}
.banner_list ul :where(a,img){
	display: block;
}

/* バナー広告 */
#footer_banner {
	clear: both;
	width: var(--content-width, 1080px);
	margin: 0px auto var(--mymainback-margin-bottom, 60px);
}
#footer_banner 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;
	gap: 20px;
}
#footer_banner ul.banner_list li {
	width: 200px;
}
#footer_banner ul.banner_list li img {
	width: 100%;
	height: auto;
	vertical-align: top;
}

.banner_text {
	display: block;
	padding: 10px;
	text-align: left;
}
.banner_text span {
	display: block;
}
.banner_text span:nth-child(2n) {
	font-size: var(--fontsize-main-small, 1.5rem);
}

/* 背景色変更 */
.color_change .section_information_list ul li span a::after {
	filter: grayscale(1) brightness(5);
}