@charset "utf-8";

/********** 1 共通 **********/

/* float clear */
.cf:before,
.cf:after {
	content: "";
	display: table;
}
.cf:after {
	clear: both;
}
/* For IE 6/7 (trigger hasLayout) */
.cf {
	zoom: 1;
}

/* スマートフォン用 */
#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;
}

/* 承認枠 */
#approval_table {
	font-size: 1.4rem;
}

/********** 2 基本設定 **********/

/* フォント */
body {
	font-family: Meiryo, メイリオ, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Osaka, 'MS PGothic', sans-serif;
	color: #333333;
}
em {
	font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Osaka, 'MS PGothic', sans-serif;
}

.mincho {
	font-family: serif;
}

/* リンク */
a:link {
	color: #0066cc;
	text-decoration: underline;
}
a:visited {
	color: #660099;
	text-decoration: underline;
}
a:active {
	color: #cc0000;
	text-decoration: underline;
}
a:hover {
	color: #000000;
	text-decoration: underline;
}

a img {
	border: none;
}

input[type="button"],
input[type="submit"],
button {
	cursor: pointer;
	font-family: sans-serif;
	font-size: 1.6rem;
}

input[type="text"],
textarea,
select {
	font-family: sans-serif;
	font-size: 1.6rem;
}

/* 外部リンク */
.external_link_text {
	display: none;
}

/* 基本タグ */
p {
	margin: 1em 0px;
	word-break: normal;
	word-wrap: break-word;
}

hr {
	clear: both;
}

/* テーブル */
#main_body table {
	border-color: #c6b28d;
	border-collapse: collapse;
	border-style: solid;
	margin: 0px 0px 10px;
	width: auto;
	max-width: 100%;
}
#main_body th {
	background: #efeae1;
	border-color: #c6b28d;
	border-collapse: collapse;
	border-style: solid;
	border-width: 1px;
	padding: 0.5em;
}
#main_body td {
	border-color: #c6b28d;
	border-collapse: collapse;
	border-style: solid;
	border-width: 1px;
	padding: 0.5em;
}
/* テーブル（borderを「0」に設定した場合は罫線を表示させない） */
/*
#main_body table[border="0"],
#main_body table[border="0"] th,
#main_body table[border="0"] td {
	border-width: 0px;
}
*/
/* テーブル内のpタグのマージンを0にする */
#main_body table p {
	margin: 0;
}

/* 見出し */
#main_header {
	margin-bottom: 20px;
}
#main_header h1 {
	margin: 0px;
	padding: 30px 30px;
	background: url(/img/common/h1bg.png) no-repeat right bottom #e2f4d4;
	border: none;
	font-size: 3.2rem;
	font-weight: bold;
	line-height: 1.4;
}

#main_body h2 {
	clear: both;
	margin: 20px 0px;
	padding: 30px 20px 20px 30px;
	background-image: url(/img/common/h2_border.png),url(/img/common/h2bg.png);
	background-repeat: repeat-x,no-repeat;
	background-position: left top,right bottom;
	background-color: #fbddd7;
	border: none;
	font-size: 2.1rem;
	font-weight: bold;
	line-height: 1.4;
}

#main_body h3 {
	clear: both;
	margin: 20px 0px;
	padding: 15px 20px 15px 30px;
	background: url(/img/common/h3bg.png) repeat-y right center #fbddd7;
	border: none;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.4;
}

#main_body h4 {
	clear: both;
	margin: 20px 0px;
	padding: 4px 20px 4px 30px;
	background: transparent;
	border: none;
	border-bottom: 10px solid #fbddd7;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.4;
	position: relative;
}
#main_body h4:before{
	content: '';
	display: block;
	width: 25px;
	height: 100%;
	background: #f19682;
	position: absolute;
	top: 0px;
	left: 0;
}

#main_body h5 {
	clear: both;
	margin: 20px 0px;
	padding: 4px 20px 4px 30px;
	background: transparent;
	border: none;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.4;
	position: relative;
}
#main_body h5:before {
	content: '';
	display: block;
	width: 25px;
	height: 100%;
	background: #f19682;
	position: absolute;
	left: 0;
	top: 0;
}

#main_body h6 {
	clear: both;
	margin: 20px 0px;
	padding: 4px 20px 4px 30px;
	background: transparent;
	border: none;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.4;
	position: relative;
}
#main_body h6:before {
	content: '';
	display: block;
	width: 14px;
	height: calc(100% - 16px);
	background: #fbddd7;
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}

#main_body h2 a,
#main_body h3 a,
#main_body h4 a,
#main_body h5 a,
#main_body h6 a{
	color: currentColor;
}

/********** 3 ヘッダ **********/

.header_fixed #header{
	position: fixed;
	top: 0;
	left: 0;
	background: #ffffff;
	z-index: 9999;
	width: 100%;
	border-top: none;
	border-bottom: 5px solid #ad002d;
}
.header_fixed #header2{
	min-height: 0;
	padding: 0px 0;
}
.header_fixed #top_search_keyword{
	margin: 0;
}
.header_fixed #top_search{
	display: none;
}
.header_fixed ul#header_link{
	display: none;
}
.header_fixed #he_left{
	position: static;
	width: 221px;
}
.header_fixed #he_left #logo img{
	display: none;
}
.header_fixed #he_left #logo a{
	display: block;
	height: 60px;
	background: url(/img/common/logo_fixed.png) no-repeat center center transparent;
}

/* ヘッダ */
#header {
	font-size: 1.5rem;
	border-top: 5px solid #ad002d;
}

#header2 {
	width: 98%;
	max-width: 1100px;
	min-height: 100px;
	margin: 0px auto;
	position: relative;
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	        align-items: center;

}
#header2 a,
#header2 a:link,
#header2 a:hover,
#header2 a:active,
#header2 a:visited{
	color: currentColor;
}

#he_left {
	width: 175px;
}
#he_left #logo {
	margin: 0px;
}
#he_left #logo a {
	display: block;
}
#he_left #logo img {
	width: 175px;
	height: auto;
}

#he_right {
/* 	margin-left: 200px; */
	padding: 15px 0px;
	text-align: right;
}


ul#header_link {
	margin: 0px;
	padding: 0px;
	list-style: none;
	font-size: 1.3rem;
}
ul#header_link > li {
	display: inline-block;
	vertical-align: middle;
	margin: 0px 0px 0px 18px;
	text-align: left;
}
ul#header_link > li > a {
	display: block;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: left center;
	line-height: 2rem;
/* 	padding: 5px 0px 5px 25px; */
}

/* アクセシビリティ機能 */
#hl_func {
	position: relative;
}
a#acc_func_menu{
	display: block;
	padding: 0;
	padding-right: 15px;
	position: relative;
}
a#acc_func_menu:after{
	content: '';
	display: block;
	width: 0px;
	height: 0px;
	border: 0.33em solid transparent;
	border-top-color: currentColor;
	border-bottom-width: 0;
	border-left-width: 0.37em;
	border-right-width: 0.37em;
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(calc(-50% - 1px));
	        transform: translateY(calc(-50% - 1px));
}
.open a#acc_func_menu:after{
	border-top-width: 0;
	border-bottom-width: 0.33em;
	border-bottom-color: currentColor;
}

ul#acc_func_box {
	display: none;
	position: absolute;
	top: 100%;
	right: 0px;
	z-index: 100;
	background: #ffffff;
	box-shadow: 0px 3px 10px -2px rgba(0, 0, 0, 0.5);
	border-radius: 5px;
	box-sizing: border-box;
	min-width: 100%;
	margin: 0px;
	padding: 15px 10px;
	list-style: none;
	text-align: center;
}
.open ul#acc_func_box {
	display: block;
}
ul#acc_func_box li {
	display: block;
	margin-bottom: 15px;
}

#acc_func_box dl {
	margin: 0px;
	padding: 0px;
	font-size: 1.4rem;
	line-height: 1.8rem;
	display: -webkit-box;
	display: flex;
	flex-wrap: nowrap;
	-webkit-box-align: center;
	    align-items: center;
}
#acc_func_box dl dt {
	display: inline-block;
	vertical-align: middle;
	margin: 0px 5px 0px 0px;
	padding: 6px 0px;
	font-weight: bold;
	width: 5em;
}
#acc_func_box dl dd {
	display: inline-block;
	vertical-align: middle;
	margin: 0px 0px 0px 2px;
	padding: 0px;
}
#acc_func_box dl dd a {
	display: block;
	background: #ffffff;
	border: 1px solid #cccccc;
	border-radius: 3px;
	color: #000000;
	text-decoration: none;
	padding: 5px 7px;
}
#acc_func_box dl dd a#moji_large {
	font-size: 1.6rem;
	font-weight: bold;
}
#acc_func_box dl dd a#haikei_white {
	background: #ffffff !important;
	color: #000000 !important;
}
#acc_func_box dl dd a#haikei_black {
	background: #000000 !important;
	color: #ffffff !important;
}
#acc_func_box dl dd a#haikei_blue {
	background: #0000ff !important;
	color: #ffff00 !important;
}

#func_menu_close {
	border: none;
	background: #e6e6e6;
	border-radius: 3px;
	font-size: 1.4rem;
	margin: 0px;
	padding: 0px 20px;
	height: 3rem;
}

/* 検索 */
#top_search_keyword {
	margin-top: 10px;
	width: 680px;
	margin-left: auto;
	margin-right: 0;
}

#cse-search-box {
	display: inline-block;
	vertical-align: middle;
	/* width: 300px; */
	width: auto;
	box-sizing: border-box;
	/* border: 1px solid #cccccc; */
}
#tmp_query {
	display: inline-block;
	vertical-align: middle;
	/* 	border: none !important; */
	box-sizing: border-box;
	width: 385px !important;
	height: 3.5rem !important;
	font-size: 1.6rem;
	border: 1px solid #d6d6d6 !important;
	margin-right: 3px;
}
#submit {
	display: inline-block;
	vertical-align: middle;
	border: none;
	background: #333333;
	color: #ffffff;
	box-sizing: border-box;
	width: 60px;
	height: 3.5rem;
	margin: 0px;
	padding: 0px;
	font-size: 1.5rem;
	line-height: 1em;
	white-space: nowrap;
}

#cse_filetype {
	display: inline-block;
	vertical-align: middle;
}
#cse_filetype fieldset {
	border: none;
	margin: 0px;
	padding: 0px 0px 0px 10px;
}
#cse_filetype fieldset legend {
	margin: 0px;
	padding: 0px;
	display: none;
}
#cse_filetype fieldset span {
	font-size: 1.4rem;
	display: inline-block;
}
#cse_filetype fieldset span input {
	margin: 4px;
	vertical-align: middle;
}

/* グローバルナビ */
ul#gnav {
	margin: 0px auto;
	padding: 0px 0px;
	list-style: none;
	width: 100%;
	max-width: 1100px;
	display: table;
	table-layout: fixed;
	border: 1px solid #cccccc;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
ul#gnav li[id^="gnav"] {
	display: table-cell;
	vertical-align: middle;
	border: 1px solid #cccccc;
}
ul#gnav li[id^="gnav"] a.g1,
ul#gnav li[id^="gnav"] a.g2 {
	display: block;
	color: inherit;
	font-size: 1.6rem;
	text-decoration: none;
	text-align: center;
	line-height: 2rem;
	padding: 25px 10px;
}
ul#gnav li[id^="gnav"] a.g2 {
	padding-top: 15px;
	padding-bottom: 15px;
}

/* グローバルナビ（マウスオーバー時） */
ul#gnav li[id^="gnav"] {
	position: relative;
}
ul#gnav li[id^="gnav"]:hover {
	background: url(/img/common/bg_gnav_on.png) no-repeat center top #ad002d;
	color: #ffffff;
}

ul.search_life2 {
	display: none;
	margin: 0px;
	padding: 10px;
	list-style: none;
	border: 2px solid #ad002d;
	background: #ffffff;
	position: absolute;
	top: 100%;
	left: 0px;
	z-index: 1;
}
ul#gnav li[id^="gnav"]:hover ul.search_life2 {
	display: block;
}
ul.search_life2 li {
	display: block;
	font-size: 1.4rem;
	line-height: 1.4;
	padding: 3px 0px;
	margin-bottom: 5px;
}
ul.search_life2 li:last-child {
	margin-bottom: 0px;
}

/* グローバルナビ（動的メニュー） ※使用する場合は要調整 */
#context_category02,
#context_category01 {
	display: none;
}

/********** 4 パンくず **********/

/* パンくず */
#pankuzu_wrap {
	padding: 20px 0px 15px;
}
#pankuzu_wrap > div {
	width: 98%;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

.pankuzu {
	clear: both;
	margin-bottom: 5px;
	padding: 3px 0px 3px 6.5rem;
	position: relative;
}
.pankuzu .icon_current {
	display: none;
}
.pankuzu:first-child .icon_current {
	display: block;
	width: 5rem;
	height: auto;
	background: #e2f4d4;
	border-radius: 3px;
	color: currentColor;
	font-size: 1.1rem;
	line-height: 2rem;
	padding: 5px 0px;
	box-sizing: border-box;
	position: absolute;
	top: 0px;
	left: 0px;
	text-align: center;
}

.pankuzu:nth-child(n+4) {
	display: none !important;
}

/********** 5 フッタ **********/

/* フッタ */
#footer {
	font-size: 1.5rem;
}
#footer a,
#footer a:link,
#footer a:hover,
#footer a:active,
#footer a:visited{
	color: currentColor;
}

#back_or_pagetop {
	width: 98%;
	max-width: 1100px;
	margin: 0px auto;
	text-align: right;
}
#back_or_pagetop > div {
	display: inline-block;
	vertical-align: middle;
	margin-left: 5px;
}
#back_or_pagetop > div a {
	display: block;
}

#to_page_top a{
	display: block;
	width: 60px;
	height: 60px;
	background: url(/img/common/pagetop.png) no-repeat center center #f19682;
	position: fixed;
	z-index: 9999;
	right: 30px;
	bottom: -60px;
	-webkit-transition: bottom 0.5s ease;
	transition: bottom 0.5s ease;
}
#to_page_top.fixed a{
	bottom: 30px;
	-webkit-transition: bottom 0.5s ease;
	transition: bottom 0.5s ease;
}

#footer_navi {
	background: #e6e6e6;
}
#footer_navi ul {
	width: 98%;
	max-width: 1100px;
	margin: 0px auto;
	padding: 20px 0px;
	list-style: none;
}
#footer_navi ul li {
	display: inline-block;
	vertical-align: middle;
	margin: 5px 10px 5px 0px;
	padding-right: 15px;
	border-right: 1px solid #333333;
	line-height: 2rem;
}
#footer_navi ul li:last-child {
	margin-right: 0px;
	padding-right: 0px;
	border-right: none;
}

#author_info {
	background: #e2f4d4;
}
#author_box {
	width: 98%;
	max-width: 1100px;
	margin: 0px auto;
	padding: 30px 0px 0;
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: start;
	        align-items: flex-start;
}
.author_box_detailtext{
}
#author_box ul.footer_link{
	margin: 0;
	padding: 0;
	list-style: none;
}
#author_box ul.footer_link li{
	margin: 3px 0;
	padding: 0;
	padding-left: 15px;
	position: relative;
}
#author_box ul.footer_link li:before{
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	border: 1px solid #ad002d;
	border-left: none;
	border-top: none;
	position: absolute;
	left: 0;
	top: calc(3px + 0.4em);
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}
#author_box ul.footer_link li a{
	text-decoration: none;
}
#author_box ul.footer_link li a:hover,
#author_box ul.footer_link li a:focus{
	text-decoration: underline;
}

#author_box p {
	margin: 0px;
}
#author_box p.f_author {
	width: 100%;
	font-size: 2.1rem;
	font-weight: bold;
	line-height: 1em;
	margin: 0 0 15px;
}
#author_box p span {
	display: inline-block;
	margin-right: 1em;
}

#copyright p {
	max-width: 1100px;
	margin: 0px auto;
	padding: 23px 0px 35px;
	text-align: left;
	font-size: 1.4rem;
	line-height: 2rem;
}

/* おすすめ情報（回遊ボタン） */
#osusume_banner {
	position: fixed;
	left: 0px;
	bottom: 0px;
	z-index: 90;
}
#osusume_banner_box {
	width: auto;
	display: table;
}

#osusume_banner_ttl {
	display: table-cell;
	vertical-align: bottom;
	width: 90px;
}
#osusume_banner_ttl a {
	display: block;
	width: 90px;
	height: 90px;
	color: #000000;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 2rem;
	text-align: center;
	text-decoration: none;
	background: url(/img/common/osusume_btn_open.png);
	padding: 0px;
}
.open #osusume_banner_ttl a{
	background: url(/img/common/osusume_btn_close.png);
}

#osusume_banner_list {
	display: none;
	vertical-align: bottom;
	background: #ffffff;
	padding: 10px;
	max-width: calc(100vw - 140px);
	box-sizing: border-box;
}
#osusume_banner.open #osusume_banner_list {
	display: table-cell;
}

#osusume_banner_list_box {
	border-radius: 0px;
	padding: 0px;
	position: relative;
}
#osusume_banner_list_box ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
#osusume_banner_list_box ul li {
	display: inline-block;
	vertical-align: top;
	width: 200px;
	height: 70px;
	margin: 0 3px;
}
#osusume_banner_list_box ul li img {
	width: 100%;
	height: auto;
}

#osusume_banner_close {
	display: block;
	width: 22px;
	height: 22px;
	margin: 0px;
	padding: 0px;
	border: none;
	background: url(/img/common/icon_keep_clear.png) no-repeat center center #333333;
	background-size: 10px 10px;
	color: #ffffff;
	line-height: 1;
	border-radius: 100%;
	cursor: pointer;
	text-align: left;
	text-indent: -9999em;
	overflow: hidden;
	position: absolute;
	top: -10px;
	right: -10px;
}

/********** 6 バナー **********/

/* バナー広告 */
ul.banner_list {
	margin: 0px;
	padding: 0px;
	list-style: none;
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	    justify-content: flex-start;
}
ul.banner_list li {
	width: 200px;
	margin: 5px 10px;
}
ul.banner_list li img {
	width: 100%;
	height: auto;
}

.banner_text {
	display: block;
	padding: 10px;
	font-size: 1.4rem;
	line-height: 1.3;
	text-align: left;
}

/* バナー広告（縦並び） */
ul.banner_list.banner_list_side {
	display: block;
	max-width: 300px;
	margin: 0px auto 10px;
}
ul.banner_list.banner_list_side li {
	display: block;
	width: 100%;
	margin: 0px auto 10px;
}

/********** 7 リスト **********/

/* リスト（横並び） */
.navigation ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
.navigation ul li,
.navigation > div {
	display: inline-block;
	vertical-align: middle;
	margin: 5px 10px 5px 0px;
	padding-right: 15px;
	border-right: 1px solid #666666;
	line-height: 1.4;
}
.navigation ul li:last-child,
.navigation > div:last-child {
	border-right: none;
	margin-right: 0px;
	padding-right: 0px;
}

/* リスト（一覧） */
.info_list ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
.info_list ul li {
	margin: 0px;
	padding: 9px 0px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	line-height: 1.5;
}

/* リスト（日付） */
.info_list.info_list_date ul li span {
	display: inline;
}
.info_list.info_list_date ul li span.article_title {
	padding-right: 25px;
}
.info_list.info_list_date ul li span.article_date:before {
	content: '(';
}
.info_list.info_list_date ul li span.article_date:after {
	content: ')';
}

/* リスト（サムネイル） */
.list_pack {
	width: 100%;
	display: table;
}

.list_pack .article_img {
	display: table-cell;
	vertical-align: middle;
	width: 200px;
	padding-right: 20px;
}
.list_pack .article_img span {
	display: block;
}
.list_pack .article_img span:empty {
	height: 150px;
	background: url(/img/common/noimage.png) no-repeat center center;
}
.list_pack .article_img span img {
	width: 100%;
	height: auto;
}

.list_pack .article_txt {
	display: table-cell;
	vertical-align: middle;
}
.list_pack .article_txt .article_date,
.list_pack .article_txt .article_title {
	display: block;
}
.list_pack .article_txt .article_date:before {
	content: '(';
}
.list_pack .article_txt .article_date:after {
	content: ')';
}
.list_pack .article_txt .article_title {
	padding-right: 0px;
}

/* リスト（担当課） */
.article_section:before {
	content: '（';
}
.article_section:after {
	content: '）';
}
.article_section:empty:before,
.article_section:empty:after {
	display: none;
}

/* リスト（一覧リンク） */
div.link_ichiran {
	margin-top: 20px;
	text-align: right;
}

/* リスト（newアイコン） */
img.icon_new {
	vertical-align: top;
}

/* リスト（新着情報） */
.section_information {
	margin: 30px 0px;
	padding: 20px;
	border: 1px solid #cccccc;
}

.section_information h2,
#main_body .section_information h2 {
	margin: 0px;
	padding: 5px 10px 14px;
	border: none;
	border-bottom: 5px solid #fbddd7;
	background: none;
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1.2;
	position: relative;
}
.section_information h2:before,
#main_body .section_information h2:before {
	content: '';
	display: block;
	width: 110px;
	height: 5px;
	background: #f19682;
	position: absolute;
	left: 0px;
	bottom: -5px;
}
#main_body .section_information hr.cf {
	margin: 0px;
}

.section_information p.no_data {
	margin: 0px;
	padding: 20px 0px;
}

.section_information_list ul {
	margin: 0px;
	padding: 15px 0px;
	list-style: none;
}
.section_information_list ul li {
	width: 100%;
	display: table;
	margin: 0px;
	padding: 9px 0px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	line-height: 1.5;
}
.section_information_list ul li span {
	display: inline;
}
.section_information_list ul li span.article_title {
	padding-right: 25px;
}
.section_information_list ul li span.article_date:before {
	content: '(';
}
.section_information_list ul li span.article_date:after {
	content: ')';
}

.section_information_list div.link_box {
	text-align: right;
}
.section_information_list div.link_box span {
	display: inline-block;
	vertical-align: middle;
	margin: 5px 0px 5px 10px;
	padding-left: 15px;
	border-left: 1px solid #666666;
	line-height: 1.4;
}
.section_information_list div.link_box span:first-child {
	border-left: none;
	margin-left: 0px;
	padding-left: 10px;
}

/* リスト（新着情報サムネイル） */
.section_information_thum {
	width: 100%;
	display: table;
	margin: 0px;
	padding: 15px;
	box-sizing: border-box;
}
.section_information_thum > div {
	display: table-cell;
	vertical-align: top;
}
.section_information_thum > div.lettering2 {
	width: 200px;
}
.section_information_thum > div.lettering2 img {
	width: 100%;
	height: auto;
}
.section_information_thum > div.lettering3 {
	padding-left: 20px;
}
.section_information_thum > div.lettering3 span {
	display: block;
}

/********** 8 サイド **********/

/* サイドバー */
#sidebar1 > div:last-child,
#sidebar2 > div:last-child {
	margin-bottom: 0 !important;
}
#sidebar1 img,
#sidebar2 img {
	max-width: 100% !important;
	height: auto !important;
}

/* サイドメニュー */
.side_box {
	margin: 0px 0px 10px;
	padding: 0px;
}
.side_box_ttl h2 {
	background: #e2f4d4;
	margin: 0;
	padding: 15px 30px;
	font-size: 1.5rem;
	line-height: 1.4;
	text-align: center;
}

.side_box_list ul {
	margin: 0;
	padding: 10px 20px 20px;
	list-style: none;
}
.side_box_list ul li {
	position: relative;
	margin: 0;
	padding: 4px 0;
}
.side_box_list ul li:before {
	content: "\2022";
	position: absolute;
	left: -15px;
	color: #f08a74;
}

.side_box_list ul li ul {
	padding: 0px;
}

.side_box_txt {
	padding: 15px 20px;
}
.side_box_txt p {
	margin: 0px 0px 10px;
}
.side_box_txt p:last-child {
	margin-bottom: 0px;
}

/* レコメンド */
#sidebar_recommend,
#sidebar_ai_recommend {
	margin: 0px 0px 10px;
	background: #f8fbf6;
}

#sidebar_recommend .like_h2,
#sidebar_ai_recommend .like_h2,
#sidebar_recommend h2,
#sidebar_ai_recommend h2 {
	margin: 0px;
	padding: 15px;
	padding-left: 70px;
	font-size: 1.8rem;
	line-height: 1.4em;
	font-weight: bold;
	background: url(/img/common/icon_recommend.png) no-repeat 25px center #e2f4d4;
}

#sidebar_ai_recommend .like_h2,
#sidebar_ai_recommend h2{
	background: url(/img/common/icon_recommend_ai.png) no-repeat 15px center #e2f4d4;
	padding-left: 50px;
	padding-right: 0px;
}

#sidebar_recommend .like_h2 span,
#sidebar_ai_recommend .like_h2 span,
#sidebar_recommend h2 span,
#sidebar_ai_recommend h2 span {
	display: inline-block;
}
#sidebar_recommend ul,
#sidebar_ai_recommend ul {
	margin: 0px;
	padding: 10px 20px;
	list-style: none;
}
#sidebar_recommend ul li,
#sidebar_ai_recommend ul li {
	margin: 0px;
	padding: 4px 0px 4px 0px;
}

/* 関連リンク */
#kanren_link{
}
#kanren_link h2{
	background: #e2f4d4;
	margin: 0;
	padding: 15px 30px;
	font-size: 1.5rem;
	line-height: 1em;
	text-align: center;

}
#kanren_link ul{
	margin: 0;
	padding: 10px 20px 20px;
	list-style: none;
}
#kanren_link li{
	position: relative;
	margin: 0;
	padding: 4px 0;
}
#kanren_link li:before{
	content: "\2022";
	position: absolute;
	left: -15px;
	color: #f08a74;
}
/* 関連リンクここまで */

/* 「見つからないときは」「よくある質問」バナー */
#common_banner_link {
	margin: 0px 0px 10px;
}
#common_banner_link ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
#common_banner_link ul li {
	margin-bottom: 10px;
}
#common_banner_link ul li:last-child {
	margin-bottom: 0px;
}
#common_banner_link ul li a {
	display: block;
	background: #e2f4d4;
	color: currentColor;
	font-size: 1.6rem;
	line-height: 1em;
	font-weight: bold;
	padding: 22px 15px;
	padding-left: 100px;
	text-decoration: none;
	text-align: left;
	background-repeat: no-repeat;
	background-position: left 50px center;
}
#common_banner_link ul li#common_banner_mitsukaranai a{
	background-image: url(/img/common/banner_mitsukaranai.png);
}
#common_banner_link ul li#common_banner_faq a{
	background-image: url(/img/common/banner_faq.png);
}

#common_banner_link ul li a:hover {
}
#common_banner_link ul li a span{
	display: inline-block;
	vertical-align: middle;
}
#common_banner_link ul li a span:before{
	display: inline-block;
	vertical-align: middle;
}


/********** 9 メイン **********/

/* メイン */
#mymainback {
	padding-top: 0;
	padding-bottom: 30px;
}

/********** 10 各ページ **********/

/* 印刷用アイコン */
#content_header {
	margin: 20px 0px;
	text-align: right;
}
#content_header span {
	display: inline-block;
	vertical-align: middle;
	margin-left: 1em;
	text-align: left;
}
#content_header span.external_link_text{
	display: none;
}
#print_mode_link,
#print_mode_link_large {
	background: url(/img/common/icon_print.png) no-repeat left center;
}
#print_mode_link{
	display: block;
	width: 32px;
	height: 32px;
	text-align: left;
	text-indent: -9999em;
	overflow: hidden;
}

/* カレンダー登録・SNSボタン */
#content_footer {
	clear: both;
	margin: 30px 0px 0px;
}
#content_footer div[id^="calendar_button_"] {
	display: inline-block;
	vertical-align: middle;
	margin: 0px 20px 20px 0px;
}

#sns_button_wrap{
	display: inline-block;
	vertical-align: middle;
}
#sns_button_wrap  div[id^="sns_button_"] {
	display: inline-block;
	vertical-align: middle;
	margin: 0px 0px 0px 20px;
}
#sns_button_wrap  div[id^="sns_button_"] a {
	display: block;
	line-height: 1.5rem;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 32px auto;
	width: 32px;
	height: 32px;
}

#sns_button_wrap  div#sns_button_facebook a {
	background-image: url(/img/common/sns/icon_sns_fb.png);
}
#sns_button_wrap  div#sns_button_twitter a {
	background-image: url(/img/common/sns/icon_sns_tw.png);
}
#sns_button_wrap  div#sns_button_line a {
	background-image: url(/img/common/sns/icon_sns_line.png);
	text-transform: uppercase;
}

/* 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: 0px 0px 0px 20px;
	font-size: 1.3rem;
	line-height: 1.5;
}
.tenpu_txt br {
	display: none;
}

/* サイトマップ */
/*
#sitemap_list_wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
}
#sitemap_list_wrap > div {
	width: calc(50% - 15px);
}
#main_body #sitemap_list_wrap > div h2 {
	margin-top: 0px;
}
*/

/* 大分類（見出し） */
div[id^="main_header_life3_"] {
	display: block;
	width: 100%;
	height: 220px;
	background: url(/img/common/subsite_header_bg.png) no-repeat left top #e2f4d4;
	background-size: auto 100%;
	margin: 0px 0px 30px;
	padding: 0px;
	position: relative;
}
/*
div#main_header_life3_1 { background-image: url(/img/life/life3_1_title.jpg); }
div#main_header_life3_2 { background-image: url(/img/life/life3_2_title.jpg); }
div#main_header_life3_3 { background-image: url(/img/life/life3_3_title.jpg); }
div#main_header_life3_4 { background-image: url(/img/life/life3_4_title.jpg); }
*/

div[id^="main_header_life3_"] h1 {
	width: 100%;
	margin: 0px;
	padding: 0px 20px;
	box-sizing: border-box;
	font-size: 3rem;
	font-weight: bold;
	text-shadow: 0px 0px 3px #ffffff, 0px 0px 3px #ffffff, 0px 0px 3px #ffffff, 0px 0px 3px #ffffff, 0px 0px 3px #ffffff,
		0px 0px 3px #ffffff, 0px 0px 3px #ffffff, 0px 0px 3px #ffffff, 0px 0px 3px #ffffff, 0px 0px 3px #ffffff,
		0px 0px 3px #ffffff, 0px 0px 3px #ffffff, 0px 0px 3px #ffffff, 0px 0px 3px #ffffff, 0px 0px 3px #ffffff;
	line-height: 1.4;
	position: absolute;
	top: 50%;
	left: 0px;
	-webkit-transform: translateY(-50%);
	    transform: translateY(-50%);
}

/* 大分類（ライフイベント） */
#lifestage {
	margin-bottom: 30px;
}
#lifestage h2 {
	margin: 0px;
	padding: 0px 20px 20px;
	font-size: 2.2rem;
	font-weight: bold;
}
#lifestage ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	    justify-content: space-between;
}
#lifestage ul li {
	width: 130px;
	max-width: 12%;
}
#lifestage ul li a {
	display: block;
	background-color: #cccccc;
	background-repeat: no-repeat;
	background-position: center 20px;
	text-align: center;
	padding: 80px 10px 10px;
}
#lifestage ul li#lifestage1 a {
	background-image: url(/img/lifestage/lifestage1_b.png);
}
#lifestage ul li#lifestage2 a {
	background-image: url(/img/lifestage/lifestage2_b.png);
}
#lifestage ul li#lifestage3 a {
	background-image: url(/img/lifestage/lifestage3_b.png);
}
#lifestage ul li#lifestage4 a {
	background-image: url(/img/lifestage/lifestage4_b.png);
}
#lifestage ul li#lifestage5 a {
	background-image: url(/img/lifestage/lifestage5_b.png);
}
#lifestage ul li#lifestage6 a {
	background-image: url(/img/lifestage/lifestage6_b.png);
}
#lifestage ul li#lifestage7 a {
	background-image: url(/img/lifestage/lifestage7_b.png);
}
#lifestage ul li#lifestage8 a {
	background-image: url(/img/lifestage/lifestage8_b.png);
}

/* 分類 */
#life_menu_wrap {
	display: -webkit-box;
	display: flex;
	flex-wrap: nowrap;
	-webkit-box-pack: justify;
	    justify-content: space-between;
	-webkit-box-align: stretch;
	    align-items: stretch;
}
#life_menu_left {
	width: calc(100% - 300px);
	padding-right: 40px;
	box-sizing: border-box;
}
#life_menu_right {
	width: 300px;
}

#life_cat_list_wrap {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	    justify-content: flex-start;
	-webkit-box-align: stretch;
	    align-items: stretch;
}
.life_cat_list {
	width: calc(50% - 15px);
	margin: 0px 30px 20px 0px;
}
.life_cat_list:nth-child(2n) {
	margin-right: 0px;
}

.life_list3_thum .life_cat_list,
.life_list2_thum .life_cat_list {
	width: 100%;
	margin-right: 0px;
}

#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 span.article_date {
	display: block;
}
.life_cat_list .info_list.info_list_date ul li span.article_title {
	display: block;
	padding-right: 0px;
}

/* 関連情報 */
#kanren_info {
	margin: 0px 0px 10px;
	padding: 0px;
}
#kanren_info h2 {
	background: #e2f4d4;
	margin: 0;
	padding: 15px 30px;
	font-size: 1.5rem;
	line-height: 1.4;
	text-align: center;
}
#kanren_info h3 {
	background: #f0f9ea;
	font-size: 1.5rem;
	font-weight: normal;
	margin: 10px 10px 0px;
	padding: 8px 15px;
}

.kanren_box ul {
	margin: 0;
	padding: 10px 20px;
	list-style: none;
}
.kanren_box ul li {
	position: relative;
	margin: 0;
	padding: 4px 0;
}
.kanren_box ul li:before {
	content: "\2022";
	position: absolute;
	left: -15px;
	color: #f08a74;
}

.kanren_box div.link_ichiran {
	margin: 0px;
	padding: 0px 10px 10px;
}

/* サブカテゴリ */
#lifesub_cat_list_wrap {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	    justify-content: flex-start;
	-webkit-box-align: stretch;
	    align-items: stretch;
}
.lifesub_cat_list {
	width: calc(50% - 15px);
	margin: 0px 30px 20px 0px;
}
.lifesub_cat_list:nth-child(2n) {
	margin-right: 0px;
}
#main_body .lifesub_cat_list h2,
#main_body .lifesub_cat_list h3 {
	margin-top: 0px;
}

.life_cat_list_ttl {
	margin: 0px;
	padding: 15px 20px 15px 30px;
	background: url(/img/common/h3bg.png) repeat-y right center #fbddd7;
	border: none;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.4;
}
.life_cat_list_ttl a {
	color: inherit;
}

.kanren2 .info_list.info_list_date ul li span.article_date {
	display: block;
}
.kanren2 .info_list.info_list_date ul li span.article_title {
	display: block;
	padding-right: 0px;
}

/* 組織 */
#soshiki_hyouji ul {
	margin: 20px 0px;
	padding: 0px;
	list-style: none;
	text-align: center;
}
#soshiki_hyouji ul li {
	display: inline-block;
	vertical-align: middle;
	margin: 5px 10px 5px 0px;
	padding-right: 15px;
	border-right: 1px solid #666666;
	line-height: 1.4;
}
#soshiki_hyouji ul li:last-child {
	border-right: none;
	margin-right: 0px;
	padding-right: 0px;
}

#freespace_bu {
	margin: 30px 0px;
}
#freespace_bu p {
	margin: 0px 0px 1em;
}
#freespace_bu p:last-child {
	margin-bottom: 0px;
}

.kakuka_info_box {
	margin-bottom: 30px;
}
.kakuka_contact_box > div {
	margin-bottom: 0.5em;
}
.kakuka_contact_box > div:last-child {
	margin-bottom: 0px;
}

.kakuka_tel_list ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
.kakuka_tel_list ul li span {
	margin-left: 0.5em;
}
.kakuka_tel_list ul li span:before {
	content: '(';
}
.kakuka_tel_list ul li span:after {
	content: ')';
}
.kakuka_tel_list ul li span:empty:before,
.kakuka_tel_list ul li span:empty:after {
	display: none;
}

#soshiki_pr_image {
	margin: 30px 0px;
}
#soshiki_pr_image img {
	max-width: 100%;
	height: auto;
}

#freespace_ka {
	margin: 30px 0px;
}
#freespace_ka p {
	margin: 0px 0px 1em;
}
#freespace_ka p:last-child {
	margin-bottom: 0px;
}

#freespace2_ka {
	margin: 0px 0px 10px;
}
#freespace2_ka p {
	margin: 0px 0px 10px;
}
#freespace2_ka p:last-child {
	margin-bottom: 0px;
}

.kakuka_view {
	max-width: 300px;
	margin: 0px auto;
}
.kakuka_view img {
	width: 100%;
	height: auto;
}

.soshiki_kakuka .side_box_txt > div {
	margin-bottom: 0.5em;
}
.soshiki_kakuka .side_box_txt > div:last-child {
	margin-bottom: 0px;
}

/* 改ページ */
.page_num {
	margin: 30px 0px 0px;
	font-size: 1.8rem;
}
.page_num_ttl {
	font-size: 1.6rem;
}

/* ウェブブック */
#book_list_wrap {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	    justify-content: flex-start;
	-webkit-box-align: stretch;
	    align-items: stretch;
}
.book_list_box {
	width: calc(50% - 15px);
	margin: 0px 30px 20px 0px;
}
.book_list_box:nth-child(2n) {
	margin-right: 0px;
}

#main_body .book_list_box h3 {
	margin-top: 0px;
}
.book_list_box .book_info {
	width: 100%;
	display: table;
}
.book_list_box .book_info > div {
	display: table-cell;
	vertical-align: top;
}
.book_list_box .book_info > div.book_thumb_img {
	width: 66px;
	padding-right: 15px;
}
.book_list_box .book_info > div.book_thumb_img img {
	width: 100%;
	height: auto;
}

/* アンケート */
#main_body table.tbl_ques {
	width: 100%;
	margin: 20px 0px 0px;
}
#main_body table.tbl_ques th {
	text-align: center;
}
#main_body table.tbl_ques th.title {
	width: 60%;
}
#main_body table.tbl_ques th.date {
	width: 15%;
}
#main_body table.tbl_ques th.date2 {
	width: 15%;
}
#main_body table.tbl_ques th.button {
	width: 10%
}
#main_body table.tbl_ques td.t_center {
	text-align: center;
}
#main_body table.tbl_ques td input,
.question #main_body table.tbl_ques td input {
	display: block;
	width: 100%;
	border: none;
	background: #e2d086;
	border-radius: 5px;
	color: #000000;
	font-size: 1.4rem;
	line-height: 2rem;
	margin: 0px;
	padding: 5px 0px;
	text-align: center;
}

div.q2 br {
	display: none;
}

.question_detail #main_body fieldset {
	border: none;
	margin: 0px;
	padding: 0px;
}
.question_detail #main_body fieldset legend {
	display: block;
	width: 100%;
	margin: 0px;
	padding: 0px;
}

.question_detail #main_body input[type="text"] {
	font-size: 1.6rem;
	max-width: 100%;
	box-sizing: border-box;
}
.question_detail #main_body textarea {
	font-size: 1.6rem;
	width: 100%;
	box-sizing: border-box;
}
.question_detail #main_body select {
	font-size: 1.6rem;
}

.question #main_body input[type="submit"],
.question #main_body input[type="button"] {
	display: inline-block;
	width: 23%;
	border: none;
	background: #e2d086;
	border-radius: 5px;
	color: #000000;
	line-height: 2rem;
	margin: 0px 1% 0px 0px;
	padding: 10px 0px;
	text-align: center;
}

#hyouka_area_submit {
	padding: 20px 0px 0px;
}

/* アンケート結果グラフ */
#main_body img[src="img/graph.gif"] {
	height: 20px !important;
	vertical-align: middle;
}

/* お問い合わせフォーム */
#mail_form_message,
#cookie_err_message {
	margin: 1em 0px;
	color: #cc0000;
}

#main_body table#mail_form_tbl {
	width: 100%;
}
#main_body table#mail_form_tbl th {
	width: 25%;
}
#main_body table#mail_form_tbl td {
	width: 75%;
}
#main_body table#mail_form_tbl td input[type="text"] {
	font-size: 1.6rem;
	width: 100%;
	box-sizing: border-box;
}
#main_body table#mail_form_tbl td textarea {
	font-size: 1.6rem;
	width: 100%;
	box-sizing: border-box;
}

#mail_form_btn_wrap {
	margin: 20px 0px 0px;
}
#mail_form_btn_wrap input[type="submit"] {
	display: inline-block;
	width: 23%;
	border: none;
	background: #e2d086;
	border-radius: 5px;
	color: #000000;
	line-height: 2rem;
	margin: 0px 1% 0px 0px;
	padding: 10px 0px;
	text-align: center;
}

/* googleカスタム検索結果 */
#main_body #cse_search_result table {
	border: none;
	margin: 0px;
}
#main_body #cse_search_result td {
	border: none;
}

.gsc-results .gsc-cursor-box .gsc-cursor-page {
	display: inline-block !important;
	vertical-align: middle;
	margin-bottom: 5px;
	padding: 10px 15px;
	border: 1px solid #cccccc;
	font-size: 1.6rem;
}
.gsc-results .gsc-cursor-box .gsc-cursor-current-page {
	background: #f5f5f5;
}

/* 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%;
}

/* 地図でさがす */
#shisetsu_list_txt {
	border: 1px solid #cccccc;
	border-bottom: none;
}
#shisetsu_list_txt p {
	margin: 0px;
	padding: 20px;
}

#shisetsu_list_link {
	border: 1px solid #cccccc;
	border-bottom: none;
}
#shisetsu_list_link ul {
	margin: 0px;
	padding: 10px 20px;
	list-style: none;
}
#shisetsu_list_link ul li {
	display: inline-block;
	vertical-align: top;
	margin: 5px 20px 5px 0px;
}

#shisetsu_map {
	border: 1px solid #cccccc;
}
#map_canvas {
	width: 100%;
	height: 500px;
}

#map_canvas_detail {
	width: 100%;
	height: 400px;
}

.shisetsu_detail_box {
	margin-bottom: 20px;
}

/* おすすめコンテンツ */
#main_osusume_contents{
	margin: 45px 0;
}
#main_osusume_contents h2 {
	font-size: 1.6rem;
	text-align: center;
	margin: 0;
	padding: 15px;
	background: #f19682;
}

#osusume_contents_area ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#osusume_contents_area li {
	padding: 10px 0;
	border-bottom: 1px solid #d7dce0;
	display: -webkit-box;
	display: flex;
	flex-wrap: nowrap;
	-webkit-box-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: center;
	        align-items: center;
}
#osusume_contents_area li > div:nth-child(1){
	width: 100px;
	height: auto;
	margin: 0 10px 0 0;
}
#osusume_contents_area li > div:nth-child(1) a{
	display: block;
}
#osusume_contents_area li > div:nth-child(1) img{
	width: 100%;
	height: auto;
}
/* おすすめコンテンツここまで */


/* タブレット */
@media screen and (max-width : 1099px) {

	/* ヘッダ */
	#he_right {
		width: calc(100% - 200px);
	}
	#top_search_keyword {
		max-width: 100%;
	}

	ul#gnav {
		table-layout: auto;
	}
	ul#gnav li[id^="gnav"] a.g1,
	ul#gnav li[id^="gnav"] a.g2 {
		font-size: 1.4rem;
		padding-left: 5px;
		padding-right: 5px;
	}

	ul.search_life2 {
		display: none !important;
	}

	/* ヘッダ（固定） */
	#container.header_fixed {
		padding-top: 0px !important;
	}
	.header_fixed #header{
		position: static !important;
		border-top: 5px solid #ad002d;
		border-bottom: none;
	}
	.header_fixed #top_search {
		display: block;
	}
	.header_fixed ul#header_link {
		display: block;
	}
	.header_fixed #he_left {
		width: 175px;
	}
	.header_fixed #he_left #logo img {
		display: block;
	}
	.header_fixed #he_left #logo a {
		display: block;
		height: auto;
		background: none;
	}

	/* フッタ */
	#author_box {
		display: block;
	}

	#author_box ul.footer_link {
		margin-top: 20px;
	}
	#author_box ul.footer_link li {
		display: inline-block;
		vertical-align: middle;
		margin-right: 20px;
	}

	#copyright p {
		padding: 30px 10px 100px;
	}

	/* 目的 */
	#common_banner_link ul li a {
		padding-left: 60px;
		background-position: 20px center;
	}

	#sidebar_recommend .like_h2,
	#sidebar_ai_recommend .like_h2,
	#sidebar_recommend h2,
	#sidebar_ai_recommend h2 {
		padding-left: 60px;
		background-position: 20px center;
		font-size: 1.4rem;
	}

	/* 分類 */
	#life_menu_left {
		width: 70%;
		padding-right: 20px;
	}
	#life_menu_right {
		width: 30%;
	}

	#life_cat_list_wrap {
		display: block;
	}
	.life_cat_list,
	.life_cat_list:nth-child(2n) {
		display: block;
		width: auto;
		margin: 0px 0px 20px;
	}

	div[id^="main_header_life3_"] {
		height: 0px;
		padding-top: 20%;
	}

	/* 組織 */
	#freespace_bu img,
	#freespace_ka img {
		max-width: 100%;
		height: auto !important;
	}

	/* アンケート */
	#main_body table.tbl_ques th.date,
	#main_body table.tbl_ques th.date2 {
		width: 20%;
	}
	#main_body table.tbl_ques th.button {
		width: 15%;
	}
	#main_body table.tbl_ques th.title {
		width: 45%;
	}

}
/* タブレット ここまで */