@charset "utf-8";
/************************************************************************************************************************************
	全ページ共通
************************************************************************************************************************************/
/** blockTypeElement white space	*****************************************************************/
.section {
	margin: 0 auto 40px;
}

.section:last-child {
	margin: 0 auto 0;
}


.inner_box {
	-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;
	width: 100%;
	max-width: 990px;
	padding: 0 10px;
	margin: 0 auto;
}


@media screen and (max-width: 767px) {
	.section {
		margin: 0 auto 30px;
	}


	.inner_box {
		width: 100%;
		max-width: auto;
		max-width: inherit;
		padding: 0 10px;
	}

	.inner_box.inner_box_sp_none {
		width: 100%;
		max-width: auto;
		max-width: inherit;
		padding: 0;
	}
}




/** #index , #lower *****************************************************************/
#index {
	position: relative;
	-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;
	width: 100%;
}
#lower {
	position: relative;
	padding: 0 0 50px;
}


@media screen and (max-width: 767px) {
	#index {
		margin: 0 auto;
	}
	#lower {
		padding: 0 0 40px;
		margin: 0 auto;
	}
}




/** 共通のh2～h6,p *****************************************************************/
main h1.common {
	color: #2d556b;
	font-size: 26px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	margin-bottom: 18px;
}
main h1.common span {
	display: inline-block;
	letter-spacing: 1px;
	padding: 0 51px;
	background-image: url('../img/h1_icon_l.png') , url('../img/h1_icon_r.png');
	background-size: 26px auto , 26px auto;
	background-position: left center , right center;
	background-repeat: no-repeat , no-repeat;
}

@media screen and (max-width: 767px) {
	main h1.common {
		font-size: 16px;
	}
	main h1.common span {
		padding: 0 25px;
		background-size: 18px auto , 18px auto;
	}
}


main h2.common {
	-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;
	color: #4684d9;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	letter-spacing: -0.4em;
}
main h2.common span {
	display: inline-block;
	letter-spacing: 1px;
	vertical-align: middle;
	max-width: calc(100% - 58px);
	padding: 4px;
	border-bottom: solid 8px #f2f8fc;
}
main h2.common::before {
	content: ' ';
	display: inline-block;
	vertical-align: middle;
	width: 39px;
	height: 35px;
	margin-right: 11px;
	background-image: url('../img/h2_icon.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
	main h2.common {
		font-size: 16px;
	}
	main h2.common span {
		max-width: calc(100% - 35px);
	}
	main h2.common::before {
		width: 30px;
		margin-right: 5px;
	}
}


main h3.common {
	color: #2d556b;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 17px;
}

@media screen and (max-width: 767px) {
	main h3.common {
	}
}


main p {
	font-size: 14px;
}






/** bg_box *****************************************************************/
.bg_box_01 {
	background-image: url('../img/bg_01.png');
	background-size: 4px 4px;
	background-position: left top;
	background-repeat: repeat;
}





/** テキスト・画像の回り込みレイアウト *****************************************************************/
.f_box {
}

/* width は各自の固有デザインであるため、ここでは明示的な指定をしない。 */
.f_box .f_text {
	float: left;
}
.f_box .f_image {
	float: right;
}

.f_box.reverse .f_text {
	float: right;
}
.f_box.reverse .f_image {
	float: left;
}

.f_box .f_image img {
	width: 100%;
	height: auto;
}

@media screen and (max-width: 767px) {
	.f_box .f_text, 
	.f_box .f_image, 
	.f_box.reverse .f_text, 
	.f_box.reverse .f_image {
		float: none;
		width: 100% !important;
	}
}




/** 画像 *****************************************************************/
.image_full {
	max-width: 100%;
}



/** inline要素 *****************************************************************/
.em {
	color: #800000;
	font-weight: bold;
	margin: 0.25em 0;
}
.strong {
	font-size: 137.5%;	/* 22/16*100 */
}
.note {
	font-size: 75%;	/* 12/16*100 */
	font-weight: bold;
}
a.strong {
	color: #3b66aa;
}
a.strong:hover {
	opacity: 0.7;
}

.text_left {
	text-align: left;
}
.text_center {
	text-align: center;
}
.text_right {
	text-align: right;
}
.text_bold {
	font-weight: bold;
}


@media screen and (max-width: 767px) {
	a.strong:hover {
		opacity: 1.0;
	}
	a.strong:active {
		opacity: 0.7;
	}
}




/** font-styleの強制指定 *****************************************************************/
.italic {
	font-style: italic !important;
}

.bold {
	font-weight: bold !important;
}




/************************************************************************************************************************************
	ディスプレイ計
************************************************************************************************************************************/
/** flex *****************************************************************/
.flex {
	display:-webkit-box;
	display:-webkit-flex;
	display: flex;
	/* 以下初期値 **************************************/
	/* 行制御　自動改行 */
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	/* 表示方向　昇順 */
	-webkit-flex-direction: row;
	flex-direction: row;
}
/* 行制御　flex-wrap
 **************************************/
/* 改行なし */
.wrap-nowrap {
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
}
/* 自動改行 */
.wrap-wrap {
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
/* 自動改行＋行方向の逆方向へ折り返し */
.wrap-reverse {
	-webkit-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
}
/* 表示方向　flex-direction
 **************************************/
/* 昇順 */
.direction-row {
	-webkit-flex-direction: row;
	flex-direction: row;
}
/* 降順 */
.direction-row-reverse {
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
/* 文字方向準 */
.direction-column {
	-webkit-flex-direction: column;
	flex-direction: column;
}
/* 文字方弱向準 */
.direction-column-reverse {
	-webkit-flex-direction: column-reverse;
	flex-direction: column-reverse;
}
/* 横位置　justify-content
 **************************************/
/* 左寄せ */
.justify-fstart {
	-webkit-box-pack: flex-start;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
}
/* 右寄せ */
.justify-fend {
	-webkit-box-pack: flex-end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}
/* 中央寄せ */
.justify-center {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}
/* 両端均等配置 */
.justify-between {
	-webkit-box-pack: space-between;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
/* 中央均等配置 */
.justify-around {
	-webkit-box-pack: space-around;
	-webkit-justify-content: space-around;
	justify-content: space-around;
}
/* 縦位置　align-items
 **************************************/
/* 上揃え */
.align-fstart {
	-webkit-box-align: flex-start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}
/* 下揃え */
.align-fend {
	-webkit-box-align: flex-end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
}
/* 中央寄せ */
.align-center {
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
}
/* 最初のflexアイテムのbaseline揃え */
.align-baseline {
	-webkit-box-align: baseline;
	-webkit-align-items: baseline;
	align-items: baseline;
}
/* コンテナの高さにflexアイテムが揃う */
.align-stretch {
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	align-items: stretch;
}


@media screen and (max-width: 767px) {
	.sp-flex {
		display:-webkit-box;
		display:-webkit-flex;
		display: flex;
		/* 以下初期値 **************************************/
		/* 行制御　自動改行 */
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		/* 表示方向　昇順 */
		-webkit-flex-direction: row;
		flex-direction: row;
	}
	/* 行制御　flex-wrap
	 **************************************/
	/* 改行なし */
	.sp-wrap-nowrap {
		-webkit-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}
	/* 自動改行 */
	.sp-wrap-wrap {
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	/* 自動改行＋行方向の逆方向へ折り返し */
	.sp-wrap-reverse {
		-webkit-flex-wrap: wrap-reverse;
		flex-wrap: wrap-reverse;
	}
	/* 表示方向　flex-direction
	 **************************************/
	/* 昇順 */
	.sp-direction-row {
		-webkit-flex-direction: row;
		flex-direction: row;
	}
	/* 降順 */
	.sp-direction-row-reverse {
		-webkit-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
	/* 文字方向準 */
	.sp-direction-column {
		-webkit-flex-direction: column;
		flex-direction: column;
	}
	/* 文字方弱向準 */
	.sp-direction-column-reverse {
		-webkit-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
	/* 横位置　justify-content
	 **************************************/
	/* 左寄せ */
	.sp-justify-fstart {
		-webkit-box-pack: flex-start;
		-webkit-justify-content: flex-start;
		justify-content: flex-start;
	}
	/* 右寄せ */
	.sp-justify-fend {
		-webkit-box-pack: flex-end;
		-webkit-justify-content: flex-end;
		justify-content: flex-end;
	}
	/* 中央寄せ */
	.sp-justify-center {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		justify-content: center;
	}
	/* 両端均等配置 */
	.sp-justify-between {
		-webkit-box-pack: space-between;
		-webkit-justify-content: space-between;
		justify-content: space-between;
	}
	/* 中央均等配置 */
	.sp-justify-around {
		-webkit-box-pack: space-around;
		-webkit-justify-content: space-around;
		justify-content: space-around;
	}
	/* 縦位置　align-items
	 **************************************/
	/* 上揃え */
	.sp-align-fstart {
		-webkit-box-align: flex-start;
		-webkit-align-items: flex-start;
		align-items: flex-start;
	}
	/* 下揃え */
	.sp-align-fend {
		-webkit-box-align: flex-end;
		-webkit-align-items: flex-end;
		align-items: flex-end;
	}
	/* 中央寄せ */
	.sp-align-center {
		-webkit-box-align: center;
		-webkit-align-items: center;
		align-items: center;
	}
	/* 最初のflexアイテムのbaseline揃え */
	.sp-align-baseline {
		-webkit-box-align: baseline;
		-webkit-align-items: baseline;
		align-items: baseline;
	}
	/* コンテナの高さにflexアイテムが揃う */
	.sp-align-stretch {
		-webkit-box-align: stretch;
		-webkit-align-items: stretch;
		align-items: stretch;
	}
}




/** displayの強制指定 *****************************************************************/
.tb-show {
	display: none !important;
}
br.tb-show {
	display: none !important;
}
span.tb-show {
	display: none !important;
}
.sp-show {
	display: none !important;
}
br.sp-show {
	display: none !important;
}
span.sp-show {
	display: none !important;
}
.sp_min-show {
	display: none !important;
}
br.sp_min-show {
	display: none !important;
}
span.sp_min-show {
	display: none !important;
}

@media screen and (max-width: 1024px) {
	.tb-hide {
		display: none !important;
	}
	.tb-show {
		display: block !important;
	}
	br.tb-show {
		display: inline !important;
	}
	span.tb-show {
		display: inline !important;
	}
}

@media screen and (max-width: 767px) {
	.sp-hide, 
	br.sp-hide {
		display: none !important;
	}
	.sp-show {
		display: block !important;
	}
	br.sp-show {
		display: inline !important;
	}
	span.sp-show {
		display: inline !important;
	}
}

@media screen and (max-width: 360px) {
	.sp_min-hide, 
	br.sp_min-hide {
		display: none !important;
	}
	.sp_min-show {
		display: block !important;
	}
	br.sp_min-show {
		display: inline !important;
	}
	span.sp_min-show {
		display: inline !important;
	}
}




