@charset "utf-8";

/* ******************************************************************

	--common.css--

	0. BoxModel change

	1. Common setting
		1-1. Reset styles
		1-2. BoxModel styles
		1-3. Text styles
		1-4. Heading styles
		1-5. Button styles
		1-6. List styles
		1-7. Table styles
		1-8. Form styles
		1-9. Scrollbar styles
		1-10. Pagenation styles
		1-11. Map styles
		1-99. VisualFormattingModel styles

	2. Responsive setting
		2-1. Fluid columns

****************************************************************** */

/*==================================================================
	0. BoxModel change
===================================================================*/
*, *:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/*==================================================================
	1. Common setting
===================================================================*/
/* ------------------------------------------------------------------
	1-1. Reset styles
-------------------------------------------------------------------*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {
	margin: 0;
	padding: 0;
}
fieldset {
	border: 0;
}
img {
	border-style: none;
	vertical-align: top;
	max-width: 100%;
	height: auto;
}
.article_thm_item img {
	max-height: 400px;
}
ol,ul {
	list-style: none;
}
caption {
	text-align: left;
}
h1,h2,h3,h4,h5,h6 {
	font-size: 100%;
}
q:before,q:after {
	content: '';
}
abbr,acronym {
	border: 0;
}
table {
	width: 100%;
}

/* ------------------------------------------------------------------
	1-2. BoxModel styles
-------------------------------------------------------------------*/
.pt_00 { padding-top: 0 !important;}
.pt_10 { padding-top: 10px !important;}
.pt_20 { padding-top: 20px !important;}
.pt_30 { padding-top: 30px !important;}
.pt_40 { padding-top: 40px !important;}
.pt_50 { padding-top: 50px !important;}
.pb_00 { padding-bottom: 0 !important;}
.pb_10 { padding-bottom: 10px !important;}
.pb_20 { padding-bottom: 20px !important;}
.pb_30 { padding-bottom: 30px !important;}
.pb_40 { padding-bottom: 40px !important;}
.pb_50 { padding-bottom: 50px !important;}
.mt_00 { margin-top: 0 !important;}
.mt_10 { margin-top: 10px !important;}
.mt_20 { margin-top: 20px !important;}
.mt_30 { margin-top: 30px !important;}
.mt_40 { margin-top: 40px !important;}
.mt_50 { margin-top: 50px !important;}
.mb_00 { margin-bottom: 0 !important;}
.mb_10 { margin-bottom: 10px !important;}
.mb_20 { margin-bottom: 20px !important;}
.mb_30 { margin-bottom: 30px !important;}
.mb_40 { margin-bottom: 40px !important;}
.mb_50 { margin-bottom: 50px !important;}

/* ------------------------------------------------------------------
	1-3. Text styles
-------------------------------------------------------------------*/
.f12 { font-size: 12px;}
.f14 { font-size: 14px;}
.f16 { font-size: 16px;}
.f18 { font-size: 18px;}
.f20 { font-size: 20px;}
.f24 { font-size: 24px; line-height: 1.4;}
.f30 { font-size: 30px; line-height: 1.4;}
.lh12 { line-height: 1.2;}
.lh14 { line-height: 1.4;}
.lh16 { line-height: 1.6;}
.lh18 { line-height: 1.8;}
.lh20 { line-height: 2;}

.highlight_box_01 {
	border: 1px solid #dcdcdc;
	background: #efefef;
	padding: 15px;
}
.highlight_box_02 {
	background: url(../img/stripe_01.gif) repeat left top;
	padding: 15px;
}

.f_color_base { color: #92c81e;}/* MAIN_COLOR */
.f_color_sub { color: #006fa3;}
.f_color_red { color: #FF0000;}

/* ------------------------------------------------------------------
	1-4. Heading styles
-------------------------------------------------------------------*/
.heading {
	/*margin-bottom: 10px;*/
	/*line-height: 1.6;*/
}
.heading_top {
	border-bottom: 2px solid #000;
	padding: 10px 0;
	margin-bottom: 10px;
	position: relative;
}
.heading_parts {
	position: absolute;
	top: 10px;
	right: 10px;
}

/* ------------------------------------
	Heading（type1）
------------------------------------*/
.heading_type_01 {
	border-bottom: 3px solid #333;
padding: 1% 3%;
	font-weight: bold;
	color: #333;
}
.heading_type_01 h3 {
font-size: 20px;
line-height: 1.2;
font-weight: bold;
}
/*
.heading_type_01 h4 {
font-size: 18px;
}
*/

/* ------------------------------------
	Heading（type2）
------------------------------------*/
.heading_type_02 {
	background: #eef5fe;
border-left: 5px solid #4f7eb9;
padding: 2%;
	font-weight: bold;
	color: #333;
}
.heading_type_02 h4 {
font-size: 18px;
line-height: 1.3;
/*float: left;*/
}

/* ------------------------------------------------------------------
	1-5. Button styles
-------------------------------------------------------------------*/
.contents_btn {
	text-align: center;
	padding: 2%;
}
.contents_btn_link { }
.contents_btn_link a {
	display: block;
	background: #D8E6F6;
	width: 100%;
	padding: 2%;
	font-size: 16px;
	color: #1d3994;
	text-decoration: none;
	border-radius: .3rem;
}
.contents_btn_link a:hover {
	background: #4f7eb9;
	color: #fff;
}
.contents_btn_link a span:after {
	content: '\f101';
	margin-left: 5px;
	font-family: 'FontAwesome';
}
.contents_btn_text {
	padding: 10px 0;
	text-align: center;
}

.contents_btn_link2 { }
.contents_btn_link2 a {
	display: block;
	background: #4f7eb9;
	width: 100%;
	padding: 2%;
	font-size: 16px;
	color: #fff;
	text-decoration: none;
	border-radius: .3rem;
}
.contents_btn_link2 a:hover {
	background: #D8E6F6;
	color: #1d3994;
}
.contents_btn_link2 a span:after {
	content: '\f101';
	margin-left: 5px;
	font-family: 'FontAwesome';
}

/* ------------------------------------
	幅可変タイプ
------------------------------------*/
.contents_btn-flex { }
.contents_btn-flex .contents_btn_link a,
.contents_btn-flex .contents_btn_link2 a {
	display: inline-block;
	width: auto;
	padding: 12px 20px;
}

/* ------------------------------------
	2個並びボタン
------------------------------------*/
.contents_btn-2 {
	font-size: 0;
}
.contents_btn-2 .contents_btn_link,
.contents_btn-2 .contents_btn_link2 {
	display: inline-block;
	margin: 0 10px;
	font-size: 14px;
}



/* ------------------------------------------------------------------
	1-6. List styles
-------------------------------------------------------------------*/
/* ------------------------------------
	六角付きリンク
------------------------------------*/
/*
.icon_list { }
.icon_item {
	margin-bottom: 5px;
}
.icon_item_type_01 {
	position: relative;
	padding-left: 20px;
	font-size: 16px;
}
.icon_item_type_01:before {
	background: url(../img/hexagon.png) top left no-repeat;
	background-size: 15px 15px;
	position: absolute;
	content: "";
	top: 10px;
	left: 0;
	width: 15px;
	height: 15px;
	margin-top: -5px;
}
*/

/* ------------------------------------
	矢印付きリンク
------------------------------------*/
.link_list { }
.link_list a { color: #333;}
.link_list a:hover { color: #4f7eb9;}
.link_item {
	margin-bottom: 10px;
	font-size: 18px;
	line-height: 1.4;
}
.link_list_01 { }
.link_list_01_horizontal .link_item {
	display: inline-block;
	vertical-align: top;
	margin-right: 20px;
}

.link_item_arl_01:before {
	font-family: FontAwesome;
	content: "\f0a9"; /* デフォルトは右矢印*/
	margin-right: 5px;
	color: #333;
}
.link_item_arr_01:after {
	font-family: FontAwesome;
	content: "\f0a9";
	margin-left: 5px;
	color: #333;
}

/* 単独で使いたいとき */
.link_item_single {
	margin-bottom: 0;
}

/* ------------------------------------
	その他フラッグ
------------------------------------*/
/* 外部リンクアイコン */
.flag_blank:after {
	font-family: FontAwesome;
	content: "\f08e";
	margin-left: 5px;
	color: #1d3994;
}

/* NEWアイコン */
.flag_update:after {
	content: "NEW";
	background: #d55482;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	color: #FFF;
	padding: 1px 5px;
	margin-left: 5px;
	font-size: 12px;
	font-weight: normal;
	vertical-align: middle;
	/*
	position: relative;
	top: -3px;
	*/
}

/* 写真アイコン */
.flag_photo:after {
	content: '';
	display: inline-block;
	width: 16px;
	height: 14px;
	background: url(../img/icon_photo.png) 0 0 no-repeat;
	background-size: contain;
	vertical-align: middle;
	margin-left: 5px;
}

/* 鍵アイコン */
.flag_key:after {
	content: '';
	display: inline-block;
	width: 20px;
	height: 14px;
	background: url(../img/icon_key.png) 0 0 no-repeat;
	background-size: contain;
	vertical-align: middle;
	margin-left: 5px;
}

/* ------------------------------------------------------------------
	1-7. Table styles
-------------------------------------------------------------------*/
table {
	border-collapse: collapse;
	border-spacing: 0;
	border: 1px solid #313131;
}
th,td {
	border-top: 1px solid #313131;
	border-left: 1px solid #313131;
	/*border-style: solid;
	border-width: 1px;
	border-color: #313131;
	*/
	padding: 15px 10px;
}
.th_col2 {
	width: 50%;
}
.th_col3 {
	width: 33.3%;
}
.th_col4 {
	width: 25%;
}
.th_col5 {
	width: 20%;
}
.th_col6 {
	width: 16.7%;
}
.th_col7 {
	width: 14.3%;
}
.th_col8 {
	width: 12.5%;
}
.th_col9 {
	width: 11.1%;
}
.th_col10 {
	width: 10%;
}

/* 中の罫線がグレーのtable */
.table_01 {
	font-size: 16px;
}
.table_01 tr:first-child th,
.table_01 tr:first-child td {
	border-top: 1px solid #313131;
}
.table_01 th {
	background: #eeeeee;
	border-top: 1px solid #c9c9c9;
	text-align: left;
}
.table_01 td {
	border-top: 1px solid #c9c9c9;
}
.table_01 .th_type_01 {
	border-left: 1px solid #c9c9c9;
}

/* 選挙のtable */
.table_02 {
	font-size: 12px;
}
.table_02 th,
.table_02 td {
	padding: 5px;
	text-align: center;
}
.table_02 th {
	background: #eeeeee;
}
.table_02 tr.active td {
	background: #fcd6dc;
}
.icon_winner {
	display: inline-block;
	background: #ff0000;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	color: #FFF;
	font-size: 10px;
	font-weight: bold;
	padding: 4px;
	line-height: 1;
}

/* 野球のtable */
.table_03 {
	border: 2px solid #FFF;
font-size: 12px;
	line-height: 1;
}
.table_03 th,
.table_03 td {
	border: 2px solid #FFF;
padding: 5px;
	text-align: center;
	color: #FFF;
}

/* ------------------------------------------------------------------
	1-8. Form styles
-------------------------------------------------------------------*/
input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	font-family: inherit;
font-size: 14px;
	line-height: 1.4;
	vertical-align: middle;
	/*
	background: none;
	border: none;
	border-radius: 0;
	*/
}
select::-ms-expand {
	display: none;
}
/*textarea { font-size: inherit;}*/
button{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
	/*border: 1px solid #b70149;*/
	transition: all 0.5s;
	/*box-shadow: 0 0 1px 1px rgba(0,160,233,1);*/
}

/*-------------------------------*/
/*	オートフィル時の背景色を無効に
/*-------------------------------*/
input:-webkit-autofill {
	/* 色はinput要素の背景色（ここでは#fff）にそろえる */
	box-shadow: 0 0 0px 999px #FFF inset;
}

/*-------------------------------*/
/*	placeholder
/*-------------------------------*/
input::-webkit-input-placeholder {
	color: #c9c9c9;
}
input::-moz-placeholder {
	color: #c9c9c9;
	opacity: 1;
}
input:-ms-input-placeholder {
	color: #c9c9c9;
}

/*-------------------------------*/
/*	項目名
/*-------------------------------*/
.form_subject { }
.form_subject_name {
float: left;
/*display: inline-block;*/
}
.form_subject_flag {
	display: inline-block;
vertical-align: middle;
	background: #333;
	border-radius: 5px;
	line-height: 1;
	color: #FFF;
	padding: 3px 10px;
	margin-left: 5px;
font-size: 14px;
}
.form_subject_flag_req {
	background: #cf0101;
}
.form_subject_link {
	float: right;
}
/*-------------------------------*/
/*	フォームパーツ
/*-------------------------------*/
.form_item {
	margin: 20px 0;
}

/*-------------------------------*/
/*	要素を横に並べる
/*-------------------------------*/
.form_inline {
	vertical-align: middle;
}
.form_inline .form_inline_item {
	display: inline-block;
}
.form_inline .form_inline_item:not(:first-child) {
	margin-left: 1px;
}

/*-------------------------------*/
/*	text
/*-------------------------------*/
.form_text {
	border: 1px solid #333333;
	/*background-color: #eee;*/
	border-radius: 3px;
	padding: 10px;
	width: 100%;
}
.form_text_01 {
width: 40%;
margin-right: 1%;
}
.form_text_02 {
width: 28%;
margin-right: 1%;
}

/* エラー時 */
.form_text_error {
	border: 1px solid #fe0000;
}

/*-------------------------------*/
/*	textarea
/*-------------------------------*/
.form_textarea {
	border: 1px solid #333333;
	/*background-color: #eee;*/
	border-radius: 3px;
	padding: 5px;
	width: 100%;
	height: 200px;
	overflow: auto;
}

/* エラー時 */
.form_textarea_error {
	border: 1px solid #fe0000;
}

/*-------------------------------*/
/*	select
/*-------------------------------*/
.form_select_wrap{ }
.form_select_date{
	padding: 10px 40px 10px 10px;
	width: 100%;
}
.form_select{
background: url(../img/arrow_01.png) right top no-repeat;
background-size: 30px;
	border: 1px solid #333333;
	border-radius: 3px;
padding: 10px 40px 10px 10px;
	width: 100%;
}
/*
select.form_selectError{
	border: 2px solid #ff0000;
}
*/

/* エラー時 */
.form_select_error {
	border: 1px solid #fe0000;
}

/*-------------------------------*/
/*	checkbox
/*-------------------------------*/
.form_checkbox{
	display: none;
}
.form_checkbox_parts{
	padding-left: 25px;
	position: relative;
	margin-right: 25px;
}
.form_checkbox_parts::before{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	border: 1px solid #dcdcdc;
	border-radius: 3px;
}
.form_checkbox:checked + .form_checkbox_parts{
	/*color: #fe0000;*/
}
.form_checkbox:checked + .form_checkbox_parts::after{
	content: "";
	display: block;
	position: absolute;
	top: -2px;
	left: 8px;
	width: 8px;
	height: 16px;
	transform: rotate(40deg);
	border-bottom: 3px solid #333;
	border-right: 3px solid #333;
}

/*-------------------------------*/
/*	radio
/*-------------------------------*/
.form_radio {
	display: none;
}
.form_radio + label{
	display: inline-block;
	cursor: pointer;
	width: 46%;
	padding: 15px 10px;
	border: 1px solid #333;
	background: #FFF;
	border-radius: 3px;
	color: #333;
	font-size: 16px;
	text-align: center;
	line-height: 1;
}
.form_radio + label:first-of-type{
	margin-right: 5px;
}
.form_radio:checked + label {
	background: #333;
	color: #FFF;
}

/*-------------------------------*/
/*	button
/*-------------------------------*/
.form_btn {
	display: inline-block;
	position: relative;
	background: #757575;
	color: #FFF;
	padding: 12px 0;
	cursor: pointer;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	font-size: 16px;
	/*font-weight: bold;*/
	position: relative;
	margin-top: 3%;
}
.form_btn:first-child {
	margin-top: 0;
}
.form_btn:hover {
	background: #333;
}
.form_btn span:after {
	content: '\f101';
	margin-left: 5px;
	font-family: 'FontAwesome';
}


/* オリジナルボタン1 */
.form_btn_01 {
	background: #4f7eb9;
}
.form_btn_01:hover {
	background: #333;
}

/* サイズ固定 */
.form_btn_fix {
	width: 100%;
}

/*-------------------------------*/
/*	同意
/*-------------------------------*/
.form_consent {
	margin-top: 10px;
	font-size: 12px;
}

/*-------------------------------*/
/*	assist
/*-------------------------------*/
.form_assist {
margin-top: 5px;
	font-size: 12px;
}
.form_assist i {
	margin-right: 3px;
	font-size: 12px;
}

/* エラー時 */
.form_assist_error {
	color: #fe0000;
}

/*-------------------------------*/
/*	住所自動入力ボタン
/*-------------------------------*/
.zip_search {
	display: inline-block;
}
.zip_search a {
	background: #4f7eb9;
	color: #FFF;
	/*border-radius: 3px;*/
	padding: 10px;
	text-decoration: none;
}
/*
.zip_search a:hover {
	background: #333;
	color: #FFF;
}
.zip_search a:after {
	content: '\f0d7';
	margin-left: 5px;
	font-family: 'FontAwesome';
	font-size: 16px;
	font-weight: normal;
}
*/
.zip_search_link {
	display: inline-block;
	margin-left: 5px;
	font-size: 14px;
	font-weight: bold;
}

/*-------------------------------*/
/*	フォーム内各種文言
/*-------------------------------*/
.form_info {
	background: #eee;
	padding: 3%;
	margin-bottom: 3%;
	text-align: center;
}
.form_info_text {
	font-size: 18px;
}
.form_info_error {
	border: 1px solid #fe0000;
	background: #fededf;
	color: #fe0000;
}

/*-------------------------------*/
/*	jQuery-Validation-Engineのスタイルを上書き
/*-------------------------------*/
/* 吹き出しの色を変える */
.section .formError .formErrorContent,
.section .formError .formErrorArrow div {
	background: #cf0101;
}
.section .formError .formErrorArrow .line1,
.section .formError .formErrorArrow .line2 {
	background: #ddd;
}

/* ------------------------------------------------------------------
	1-9. Scrollbar styles
-------------------------------------------------------------------*/
.scroll_area_y::-webkit-scrollbar{
	width: 10px;
}
.scroll_area_x::-webkit-scrollbar{
	height: 10px;
}
::-webkit-scrollbar-track{
	background: #e7e7e7;
}
::-webkit-scrollbar-thumb{
	background: #898989;
}

/* ------------------------------------------------------------------
	1-10. Pagenation styles
-------------------------------------------------------------------*/
.pagenation {
	text-align: center;
	padding: 3% 0;
	font-size: 0;
}
.pagenation li {
	display: inline-block;
	margin: 0 1px;
	font-size: 14px;
}
.pagenation li span {
	background: #4f7eb9;
	padding: 10px 12px;
	color: #FFF;
	display: block;
	font-weight: bold;
}
.pagenation a {
	background: #cccccc;
	color: #333;
	padding: 10px 12px;
	display: block;
	text-decoration: none;
}
.pagenation a:hover {
	background: #333;
	color: #FFF;
}
.pagenation li.prev,
.pagenation li.next {
	margin: 0 3px;
}
.pagenation li.prev a,
.pagenation li.next a {
	border: none;
	background: none;
	padding: 0;
	text-decoration: underline;
}
.pagenation li.prev a:hover,
.pagenation li.next a:hover {
	color: #333;
	text-decoration: none;
}
/*
 error関連
 */

.error_message {
	padding:1rem;
	font-size:1.2rem;
	font-weight: bold;
	border:solid 1px #DDD;
	background-color:#EEE;
	margin: 1rem 0;
}

/* ------------------------------------------------------------------
	1-11. Map styles
-------------------------------------------------------------------*/
.gg_map {
	position: relative;
	padding-bottom: 56.25%;/* 16:9の場合 */
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}
.gg_map iframe,
.gg_map object,
.gg_map embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* ------------------------------------------------------------------
	1-99. VisualFormattingModel styles
-------------------------------------------------------------------*/
.pc_block{
	display: block !important;
}
.pc_inline{
	display: inline !important;
}
.sp_block{
	display: none !important;
}
.sp_inline{
	display: none !important;
}
.align_left { text-align: left;}
.align_right { text-align: right;}
.align_center { text-align: center;}

/* ------------------------------------
	CLEARFIX
------------------------------------*/
.header:after,
.nav_list:after,
.footer_nav:after,
.contents:after,
.entame_tabs:after,
.post_list:after,
.post_item a:after,
.post_meta:after,
.post_cat:after,
.post_article:after,
.article_body:after,
.event_search_input:after,
.fluid_col:after,
.form_subject:after,
.cf:after {
	content: "";
	display: block;
	clear: both;
}







/*==================================================================
	2 Responsive setting
===================================================================*/

/* ------------------------------------------------------------------
	2-1. Fluid columns
-------------------------------------------------------------------*/
/* 初期設定 */
.fluid_col {
	font-size: 0;
}
.fluid_col_item {
	display: inline-block;
	vertical-align: top;
	font-size: 14px;
	margin-bottom: 3%;
}

.fluid_col_02 .fluid_col_item { width: 48.1%; margin-right: 3.8%;}/* 横並びに等分 */
.fluid_col_03 .fluid_col_item { width: 32%; margin-right: 2%;}/* 横並びに3等分 */
.fluid_col_04 .fluid_col_item { width: 23.87%; margin-right: 1.5%;}/* 横並びに4等分 */
.fluid_col_05 .fluid_col_item { width: 18.8%; margin-right: 1.5%;}/* 横並びに5等分 */
.fluid_col_06 .fluid_col_item { width: 15.41%; margin-right: 1.5%;}/* 横並びに6等分 */
.fluid_col_07 .fluid_col_item { width: 13%; margin-right: 1.5%;}/* 横並びに7等分 */
.fluid_col_08 .fluid_col_item { width: 11.18%; margin-right: 1.5%;}/* 横並びに8等分 */
.fluid_col_09 .fluid_col_item { width: 9.77%; margin-right: 1.5%;}/* 横並びに9等分 */

.fluid_col_02 .fluid_col_item:nth-child(2n),
.fluid_col_03 .fluid_col_item:nth-child(3n),
.fluid_col_04 .fluid_col_item:nth-child(4n),
.fluid_col_05 .fluid_col_item:nth-child(5n),
.fluid_col_06 .fluid_col_item:nth-child(6n),
.fluid_col_07 .fluid_col_item:nth-child(7n),
.fluid_col_08 .fluid_col_item:nth-child(8n),
.fluid_col_09 .fluid_col_item:nth-child(9n) {
	margin-right: 0;
}


.device_switch {width:100%; margin:0 auto;}
.device_switch li{display:inline-block; width:48%; color:#888; text-align:center; font-size:0.9rem; padding:5px;}
.device_switch li::after{clear:both}
