@charset "utf-8";
/************************************************************************************************************************************
	全ページ共通指示のクラスによる適用
************************************************************************************************************************************/
/** blockTypeElement white space	*****************************************************************/
.section {
	margin: 0 auto 21px;
}

.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: 1000px;
	margin-left: auto;
	margin-right: auto;
}

.common_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;
	background-color: #FFF;
	border-radius: 5px;
}
.common_box>.box_inner {
	-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;
	padding: 21px 16px 25px;
	border-left: solid 2px #cccccc;
	border-right: solid 2px #cccccc;
	border-bottom: solid 2px #cccccc;
	border-radius: 0 0 4px 4px;
}


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


	.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;
	}


	.common_box>.box_inner {
		-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;
		padding: 22px 9px;
	}
}




/** #index , #lower *****************************************************************/
#index {
	-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;
	position: relative;
	width: 100%;
}
#lower {
	position: relative;
	margin: 30px auto 70px;
}


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




/** 共通のh2～h3,p + .list_title *****************************************************************/
main h1.common {
	position: relative;
	color: #FFF;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 2px;
	line-height: 1.2;
	padding: 13px 16px 13px 50px;
	background-color: #122a88;
	background-image: url('../img/common/pc/lower-icon-h2.png');
	background-size: 22px 22px;
	background-position: left 16px top 10px;
	background-repeat: no-repeat;
	border-top: solid 2px #cccccc;
	border-left: solid 2px #cccccc;
	border-right: solid 2px #cccccc;
	border-radius: 4px 4px 0 0;
}
main h1.common::after {
	content: ' ';
	display: block;
	position: absolute;
	bottom: 4px;
	left: 0;
	right: 0;
	width: 100%;
	height: 2px;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	background-color: #f1b4cd;
}

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


main h2.common {
	position: relative;
	color: #122a88;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2;
	padding-left: 14px;
	margin-bottom: 14px;
}
main h2.common::after {
	content: ' ';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	height: 2px;
	width: 4px;
	height: 20px;
	padding: 0px 0px 0px 0px;
	margin: auto 0px;
	background-color: #122a88;
	border-radius: 2px;
}
main h2.common.long::after {
	height: 40px;
}

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


main p {
	font-size: 14px;
}

@media screen and (max-width: 767px) {
	main p.common {
		font-size: 14px;
	}
}


main a {
	color: #122a88;
}
main a:link {
	color: #122a88;
}
main a:visited {
	color: #122a88;
}





/** hr　線の種類 *****************************************************************/
main hr.dotted {
	-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: #FFF;
	width: 100%;
	height: 1px;
	margin: 20px 0;
	border: none;
	border-top: dotted 3px #d3cfd5;
}
@media screen and (max-width: 767px) {
}






/** テキスト・画像の回り込みレイアウト *****************************************************************/
.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%;
}
.image_full img {
	width: 100%;
	height: auto;
}



/** 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;
}

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


@media screen and (max-width: 767px) {
}




/** 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 print, screen and (min-width: 768px) {
	.pc-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
	 **************************************/
	/* 改行なし */
	.pc-wrap-nowrap {
		-webkit-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}
	/* 自動改行 */
	.pc-wrap-wrap {
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	/* 自動改行＋行方向の逆方向へ折り返し */
	.pc-wrap-reverse {
		-webkit-flex-wrap: wrap-reverse;
		flex-wrap: wrap-reverse;
	}
	/* 表示方向　flex-direction
	 **************************************/
	/* 昇順 */
	.pc-direction-row {
		-webkit-flex-direction: row;
		flex-direction: row;
	}
	/* 降順 */
	.pc-direction-row-reverse {
		-webkit-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
	/* 文字方向準 */
	.pc-direction-column {
		-webkit-flex-direction: column;
		flex-direction: column;
	}
	/* 文字方弱向準 */
	.pc-direction-column-reverse {
		-webkit-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
	/* 横位置　justify-content
	 **************************************/
	/* 左寄せ */
	.pc-justify-fstart {
		-webkit-box-pack: flex-start;
		-webkit-justify-content: flex-start;
		justify-content: flex-start;
	}
	/* 右寄せ */
	.pc-justify-fend {
		-webkit-box-pack: flex-end;
		-webkit-justify-content: flex-end;
		justify-content: flex-end;
	}
	/* 中央寄せ */
	.pc-justify-center {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		justify-content: center;
	}
	/* 両端均等配置 */
	.pc-justify-between {
		-webkit-box-pack: space-between;
		-webkit-justify-content: space-between;
		justify-content: space-between;
	}
	/* 中央均等配置 */
	.pc-justify-around {
		-webkit-box-pack: space-around;
		-webkit-justify-content: space-around;
		justify-content: space-around;
	}
	/* 縦位置　align-items
	 **************************************/
	/* 上揃え */
	.pc-align-fstart {
		-webkit-box-align: flex-start;
		-webkit-align-items: flex-start;
		align-items: flex-start;
	}
	/* 下揃え */
	.pc-align-fend {
		-webkit-box-align: flex-end;
		-webkit-align-items: flex-end;
		align-items: flex-end;
	}
	/* 中央寄せ */
	.pc-align-center {
		-webkit-box-align: center;
		-webkit-align-items: center;
		align-items: center;
	}
	/* 最初のflexアイテムのbaseline揃え */
	.pc-align-baseline {
		-webkit-box-align: baseline;
		-webkit-align-items: baseline;
		align-items: baseline;
	}
	/* コンテナの高さにflexアイテムが揃う */
	.pc-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 print, 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 print, 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;
	}
}






/** margin_bottomの強制指定 5px単位/最大60pxまで *****************************************************************/
.mg-b-05 { margin-bottom:  5px !important; }
.mg-b-10 { margin-bottom: 10px !important; }
.mg-b-15 { margin-bottom: 15px !important; }
.mg-b-20 { margin-bottom: 20px !important; }
.mg-b-25 { margin-bottom: 25px !important; }
.mg-b-30 { margin-bottom: 30px !important; }
.mg-b-35 { margin-bottom: 35px !important; }
.mg-b-40 { margin-bottom: 40px !important; }
.mg-b-45 { margin-bottom: 45px !important; }
.mg-b-50 { margin-bottom: 50px !important; }
.mg-b-55 { margin-bottom: 55px !important; }
.mg-b-60 { margin-bottom: 60px !important; }
@media print, screen and (min-width: 768px) {
	.mg-b-05-pc { margin-bottom:  5px !important; }
	.mg-b-10-pc { margin-bottom: 10px !important; }
	.mg-b-15-pc { margin-bottom: 15px !important; }
	.mg-b-20-pc { margin-bottom: 20px !important; }
	.mg-b-25-pc { margin-bottom: 25px !important; }
	.mg-b-30-pc { margin-bottom: 30px !important; }
	.mg-b-35-pc { margin-bottom: 35px !important; }
	.mg-b-40-pc { margin-bottom: 40px !important; }
	.mg-b-45-pc { margin-bottom: 45px !important; }
	.mg-b-50-pc { margin-bottom: 50px !important; }
	.mg-b-55-pc { margin-bottom: 55px !important; }
	.mg-b-60-pc { margin-bottom: 60px !important; }
}
@media screen and (max-width: 767px) {
	.mg-b-05-sp { margin-bottom:  5px !important; }
	.mg-b-10-sp { margin-bottom: 10px !important; }
	.mg-b-15-sp { margin-bottom: 15px !important; }
	.mg-b-20-sp { margin-bottom: 20px !important; }
	.mg-b-25-sp { margin-bottom: 25px !important; }
	.mg-b-30-sp { margin-bottom: 30px !important; }
	.mg-b-35-sp { margin-bottom: 35px !important; }
	.mg-b-40-sp { margin-bottom: 40px !important; }
	.mg-b-45-sp { margin-bottom: 45px !important; }
	.mg-b-50-sp { margin-bottom: 50px !important; }
	.mg-b-55-sp { margin-bottom: 55px !important; }
	.mg-b-60-sp { margin-bottom: 60px !important; }
}






