@charset "utf-8";
/* -----------------------------------------
common.css
新ページ共通設定用css

＜class名ルール＞
このファイルで使用するclassには以下の接頭語を付加する。
（他のcssファイルでは不要）
・汎用クラス、モジュール：「.c_xxx」（common）
・フレームモジュール：「.f_xxx」（frame）
・モジュール：「.m_xxx」（module）
・モジュール内のパーツ：「.p_xxx」（parts）
・モジュールの状態：「.s_xxx」（state）
※JSのみで使用：「.js_xxx」
----------------------------------------- */

/* reset
----------------------------------------- */

html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,
a,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,
small,strong,sub,sup,var,b,u,i,dl,dt,dd,ol,ul,li,
fieldset,form,label,legend,input,textarea,table,caption,tbody,thead,tfoot,tr,th,td,
main,article,aside,canvas,details,embed,figure,figcaption,footer,header,
menu,nav,output,ruby,section,summary,time,mark,audio,video {
	margin: 0;
	padding: 0;
}

h1,h2,h3,h4,h5,h6,th {
	font-family: inherit;
	font-size: 100%;
	font-weight: normal;
}

table {
	border-spacing: 0;
	border-collapse: collapse;
}

table,th,td {
	text-align: left;
	border: none;
}

ol,ul,li {
	list-style: none;
}

img {
	border: none;
	vertical-align: top;
	max-width: 100%;
}

input[type=text],
input[type=password],
input[type=button],
input[type=submit],
button,
select,
textarea {
	color: inherit;
	font-family: inherit;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	outline: none;
	font-size: 100%;
	font-weight: normal;
	line-height: inherit;
}

input::-webkit-input-placeholder {
	color: #aaa;
}
input:-ms-input-placeholder {
	color: #aaa;
}
input::-moz-placeholder {
	color: #aaa;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
}

select::-ms-expand {
	display:none;
}

/* 初期設定
----------------------------------------- */

html {
  font-size: 62.5%;
}

body {
	min-width: 320px;
	font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 160%;
	color: #000;
	line-height: 1.3;
	-webkit-text-size-adjust: 100%;
	-webkit-print-color-adjust: exact;


}
@media screen and (max-width: 767px) {
	html {
		font-size: 54.6875%;
	}
	body {
		padding-top: 0;
	}
}

a {
	color: inherit;
	text-decoration: none;
	transition: all 0.2s;
}

em, strong {
	font-weight: bold;
}

*,*::before,*::after {
	box-sizing: border-box;
}

/* 汎用クラス
----------------------------------------- */

.c_fontL  { font-size: 1.8rem; }
.c_fontLL { font-size: 2rem; }
.c_fontXL { font-size: 2.4rem; }
.c_fontS  { font-size: 1.4rem; }
.c_fontSS { font-size: 1.2rem; }
.c_fontXS { font-size: 1rem; }

.c_fontBold { font-weight: bold; }
.c_colorRed { color: #ce2e2e; }

.c_clearfix { zoom: 1; }
.c_clearfix:after {
	content: "";
	display: block;
	clear: both;
	height: 0.01px;
}
.c_floatL { float: left; }
.c_floatR { float: right; }
.c_ofHidden { overflow: hidden; }

.c_taLeft { text-align: left !important; }
.c_taCenter { text-align: center !important; }
.c_taRight { text-align: right !important; }

.c_vaTop { vertical-align: top !important; }
.c_vaMdl { vertical-align: middle !important; }
.c_vaBtm { vertical-align: bottom !important; }

.c_mt0  { margin-top:  0px !important; }
.c_mt3  { margin-top:  3px !important; }
.c_mt5  { margin-top:  5px !important; }
.c_mt10 { margin-top: 10px !important; }
.c_mt15 { margin-top: 15px !important; }
.c_mt20 { margin-top: 20px !important; }
.c_mt25 { margin-top: 25px !important; }
.c_mt30 { margin-top: 30px !important; }
.c_mt35 { margin-top: 35px !important; }
.c_mt40 { margin-top: 40px !important; }
.c_mt45 { margin-top: 45px !important; }
.c_mt50 { margin-top: 50px !important; }
.c_mt60 { margin-top: 60px !important; }
.c_mt70 { margin-top: 70px !important; }
.c_mt80 { margin-top: 80px !important; }
.c_mt90 { margin-top: 90px !important; }

.c_ml0  { margin-left:  0px !important; }
.c_ml3  { margin-left:  3px !important; }
.c_ml5  { margin-left:  5px !important; }
.c_ml10 { margin-left: 10px !important; }
.c_ml15 { margin-left: 15px !important; }
.c_ml20 { margin-left: 20px !important; }
.c_ml25 { margin-left: 25px !important; }
.c_ml30 { margin-left: 30px !important; }
.c_ml35 { margin-left: 35px !important; }
.c_ml40 { margin-left: 40px !important; }
.c_ml45 { margin-left: 45px !important; }
.c_ml50 { margin-left: 50px !important; }
.c_ml60 { margin-left: 60px !important; }
.c_ml70 { margin-left: 70px !important; }
.c_ml80 { margin-left: 80px !important; }
.c_ml90 { margin-left: 90px !important; }

.c_mr0  { margin-right:  0px !important; }
.c_mr3  { margin-right:  3px !important; }
.c_mr5  { margin-right:  5px !important; }
.c_mr10 { margin-right: 10px !important; }
.c_mr15 { margin-right: 15px !important; }
.c_mr20 { margin-right: 20px !important; }
.c_mr25 { margin-right: 25px !important; }
.c_mr30 { margin-right: 30px !important; }
.c_mr35 { margin-right: 35px !important; }
.c_mr40 { margin-right: 40px !important; }
.c_mr45 { margin-right: 45px !important; }
.c_mr50 { margin-right: 50px !important; }
.c_mr60 { margin-right: 60px !important; }
.c_mr70 { margin-right: 70px !important; }
.c_mr80 { margin-right: 80px !important; }
.c_mr90 { margin-right: 90px !important; }

.c_mb0  { margin-bottom:  0px !important; }
.c_mb3  { margin-bottom:  3px !important; }
.c_mb5  { margin-bottom:  5px !important; }
.c_mb10 { margin-bottom: 10px !important; }
.c_mb15 { margin-bottom: 15px !important; }
.c_mb20 { margin-bottom: 20px !important; }
.c_mb25 { margin-bottom: 25px !important; }
.c_mb30 { margin-bottom: 30px !important; }
.c_mb35 { margin-bottom: 35px !important; }
.c_mb40 { margin-bottom: 40px !important; }
.c_mb45 { margin-bottom: 45px !important; }
.c_mb50 { margin-bottom: 50px !important; }
.c_mb60 { margin-bottom: 60px !important; }
.c_mb70 { margin-bottom: 70px !important; }
.c_mb80 { margin-bottom: 80px !important; }
.c_mb90 { margin-bottom: 90px !important; }

.c_hide { display: none !important; }
.c_iBlock { display: inline-block; }

.c_liquid { width: 100%; }

.c_breakall { word-break: break-all; }
.c_nowrap { white-space: nowrap; }

.c_over { cursor: pointer; }
.c_over:hover { opacity: 0.7; }

.c_lineM  { line-height: 1.5; }
.c_lineL  { line-height: 1.8; }
.c_lineLL { line-height: 2; }

@media screen and (min-width: 768px),print {
	.c_onlyS { display: none; }
}
@media screen and (max-width: 767px) {
	.c_onlyL { display: none; }
}

.c_flex { display: flex; }
.c_flex.s_between { justify-content: space-between; }
.c_flex.s_around  { justify-content: space-around; }
.c_flex.s_alignStart { align-items: flex-start; }
.c_flex.s_alignEnd { align-items: flex-end; }
.c_flex.s_alignBase { align-items: baseline; }


/* ページフレーム
----------------------------------------- */

.f_main {
	margin: 50px 0 75px;
}
@media screen and (max-width: 767px) {
	.f_main {
		margin: 25px 0 40px;
	}
}
.f_main .p_contents {
	width: 72%;
	max-width: 770px;
	float: left;
}
.f_main .p_side {
	float: right;
	width: 24.3%;
	max-width: 260px;
}
.f_main .p_sideNav > li a {
	display: block;
	padding: 17px 15px;
}
.f_main .p_sideNav > li a.s_bg01 {
	background-color: #0c8ed1;
	color: #fff;
	/*padding: 15px 15px;*/
}
.f_main .p_sideNav > li a.s_bg01:hover {
	background-color: #b6ddf1;
}
.f_main .p_sideNav > li a.s_bg02 {
	background-color: #f5f5f5;
}
.f_main .p_sideNav > li a.s_bg02:hover {
	background-color: #fff;
}
.f_main .p_sideNav > li.s_hasBorderTop {
	border-top: 1px solid #bebdbd;
}
@media screen and (max-width: 767px) {
	.f_main .p_contents {
		float: none;
		width: 100%;
	}
	.f_main .p_side {
		display: none;
	}
}

/* 汎用モジュール
----------------------------------------- */

/* section */

.f_main .m_maxW {
	max-width: 1110px;
	overflow: hidden;
}

/* title */
.m_title02 {
	font-size: 2.8rem;
	line-height: 1.2857;
	border-bottom: 1px solid #ccc;
	padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
	.m_title02 {
		font-size: 22px;
	}
}
.m_title03 {
	font-size: 2.8rem;
	text-align: center;
}
.m_title03 > .p_inn {
	border-bottom: 2px solid #333;
	padding-bottom: 3px;
	display: inline-block;
}
@media screen and (max-width: 767px){
	.m_title03 {
		font-size: 20px;
	}
}
.m_title04 {
	font-size: 2.4rem;
	font-weight: bold;
}
@media screen and (max-width: 767px){
	.m_title04 {
		font-size: 18px;
	}
}
.m_title05 {
	font-size: 1.8rem;
	font-weight: bold;
}
@media screen and (max-width: 767px){
	.m_title05 {
		font-size: 16px;
	}
}
.m_title06 {
	font-size: 1.4rem;
	font-weight: bold;
}
@media screen and (max-width: 767px){
	.m_title06 {
		font-size: 12px;
	}
}
.m_boxTitle01 {
	font-size: 1.8rem;
	font-weight: bold;
	background-color: #0c8ed1;
	color: #fff;
	padding: 7px 20px 6px;
	margin-bottom: 30px;
}
.m_boxTitle01.s_bg02 {
	background-color: #b2b2b2;
	color: #fff;
}
.m_boxTitle01.s_tglBtn {
	padding-right: 44px;
	position: relative;
	-webkit-transition: 0.2s opacity;
			transition: 0.2s opacity;
}
.m_boxTitle01.s_tglBtn::before {
	content: "";
	display: block;
	width: 2px;
	height: 14px;
	background-color: #fff;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 21px;
	margin: auto;
	-webkit-transition: 0.3s transform;
			transition: 0.3s transform;
	-webkit-transform: rotate(0deg);
			transform: rotate(0deg);
}
.s_open .m_boxTitle01.s_tglBtn::before {
	right: 21px;
	-webkit-transform: rotate(90deg);
			transform: rotate(90deg);
}
.m_boxTitle01.s_tglBtn::after {
	content: "";
	display: block;
	width: 14px;
	height: 2px;
	background-color: #fff;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	margin: auto;
}
.m_boxTitle01.s_hasSubText {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.m_boxTitle01.s_hasSubText.s_alignBaseline {
	align-items: baseline;
}

.m_boxTitle01.s_hasSubText .p_subText {
	font-size: 1.4rem;
	margin-left: 15px;
}
.m_boxTitle01.s_hasSubText .p_hasBg {
	background-color: #fff;
	color: #0c8ed1;
	display: inline-block;
	padding: 2px 5px;
	margin-left: 10px;
}
.m_boxTitle01.s_bg02.s_hasSubText .p_hasBg {
	color: #b2b2b2;
}
@media screen and (max-width: 767px){
	.m_boxTitle01 {
		font-size: 14px;
		padding: 7px 10px 6px;
		margin-bottom: 20px;
	}
	.m_boxTitle01.s_hasSubText {
		display: block;
	}
	.m_boxTitle01.s_hasSubText .p_subText {
		display: block;
		margin-top: 5px;
		font-size: 12px;
		margin-left: 0;
	}

}

/* text */
.m_leadText {
	font-size: 1.8rem;
	line-height: 1.5;
	font-weight: bold;
}
@media screen and (max-width: 767px){
	.m_leadText {
		font-size: 16px;
	}
}
.m_color01 { color: #0c8ed1; }
.m_color02 { color: #1d4eb1; }
.m_color03 { color: #0da00d; }
.m_color04 { color: #e8790c; }
.m_color05 { color: #f24e90; }
.m_color06 { color: #b41b1b; }

.m_bg01 {
	color: #fff;
	background-color: #0c8ed1;
}
.m_bg02 {
	color: #fff;
	background-color: #1d4eb1;
}
.m_bg03 {
	color: #fff;
	background-color: #0da00d;
}
.m_bg04 {
	color: #fff;
	background-color: #e8790c;
}
.m_bg05 {
	color: #fff;
	background-color: #f24e90;
}
.m_bg06 {
	color: #fff;
	background-color: #b41b1b;
}

.m_textLink {
	text-decoration: underline;
}
.m_textLink:hover {
	text-decoration: none;
}


/* list */

.m_list li {
	position: relative;
	padding-left: 1.2em;
}
.m_list li::before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}
.m_list.s_notes li::before {
	content: "※";
}
.m_list.s_head li::before {
	content: "●";
	color: #0c8ed1;
}
.m_list.s_number {
	padding-left: 25px;
	list-style-type: decimal;
	list-style-position: inside;
}
.m_list.s_number li {
	list-style-type: decimal;
	padding-left: 0;

	/*padding-left: 0;*/
}
.m_list.s_number li::before {
	content: "";
}
.m_list.s_triangle li::before {
	content: "";
	width: 0;
	height: 0;
	top: 0.4em;
	border-left: 5px solid #333;
	border-top: 3px solid transparent;
	border-bottom: 3px solid transparent;
}
.m_list li + li {
	margin-top: 3px;
}
.m_list.s_triangle li > a:hover {
	text-decoration: underline;
}
.m_linkBlank01::after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 14px;
	height: 12px;
	background: url(/kcc/talent-management/common/img/ico_blank_02.png) no-repeat 0 0;
	margin-left: 10px;
}
.m_linkPdf01::after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 18px;
	height: 18px;
	background: url(/kcc/talent-management/common/img/ico_pdf_02.png) no-repeat 0 0;
	margin-left: 10px;
}

.m_linkArrowList > li {
	border-bottom: 1px solid #ccc;
}
.m_linkArrowList > li.s_noBorderBottom {
	border-bottom: none;
}
.m_linkArrowList > li a {
	font-size: 1.8rem;
	font-weight: bold;
	display: block;
	padding: 18px 60px 16px 20px;
	position: relative;
}
.m_linkArrowList > li:nth-child(odd) a {
	background-color: #f5f5f5;
}
.m_linkArrowList > li:nth-child(even) a {
	background-color: #fff;
}
.m_linkArrowList.s_hasHead > li a {
	padding-left: 100px;
}
.m_linkArrowList.s_hasHead > li .p_head {
	display: inline-block;
	margin-right: 10px;
	padding: 4px 10px;
	position: absolute;
	top: 16px;
	left: 20px;
	line-height: 1;
}
.m_linkArrow01::after {
	content: "";
	display: block;
	width: 17px;
	height: 17px;
	background: url(/kcc/talent-management/common/img/ico_arrow_01.png) no-repeat right center;
	margin-left: 5px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto 0;
}
@media screen and (max-width: 767px){
	.m_linkArrowList > li a,
	.m_linkArrowList.s_hasHead > li a {
		padding: 15px 35px 15px 15px;
		font-size: 15px;
	}
	.m_linkArrowList.s_hasHead > li .p_head {
		position: static;
	}
	.m_linkArrowList.s_hasHead > li .p_text {
		display: block;
		margin-top: 5px;
	}
	.m_linkArrow01::after {
		right: 10px;
	}
}


/* img */

.m_fullImg {
	text-align: center;
}

.m_column02 {
	overflow: hidden;
}
.m_column02 > .p_item {
	width: 48%;
	max-width: 365px;
}
.m_column02 > .p_item:nth-child(odd) {
	float: left;
}
.m_column02 > .p_item:nth-child(even) {
	float: right;
}
.m_column02 .p_caption {
	font-size: 1.2rem;
	margin-top: 8px;
}
@media screen and (max-width: 767px){
	.m_column02 {
		text-align: center;
	}
	.m_column02 > .p_item:nth-child(odd),
	.m_column02 > .p_item:nth-child(even) {
		float: none;
		width: auto;
		/*max-width: none;*/
		display: inline-block;
		margin-left: auto;
		margin-right: auto;
	}
	.m_column02 > .p_item + .p_item {
		margin-top: 15px;
	}
	.m_column02 .p_caption {
		font-size: 10px;
		text-align: left;
	}
}
.m_column03 {
	overflow: hidden;
}
.m_column03 > .p_item {
	float: left;
	width: 29.88%;
	max-width: 230px;
	margin-right: 5.18%;
}
.m_column03 > .p_item:nth-child(3n) {
	margin-right: 0;
}
.m_column03 .p_caption {
	font-size: 1.2rem;
	margin-top: 8px;
}
@media screen and (max-width: 767px){
	.m_column03 {
		text-align: center;
	}
	.m_column03 > .p_item {
		float: none;
		width: auto;
		/*max-width: none;*/
		margin-right: 5px;
		margin-left: 5px;
		display: inline-block;
	}
	.m_column03 > .p_item:nth-child(3n) {
		margin-right: 5px;
	}
	.m_column03 > .p_item + .p_item {
		margin-top: 15px;
	}
	.m_column03 .p_caption {
		font-size: 10px;
		text-align: left;
	}
}
.m_colImgLeft {
	overflow: hidden;
}
.m_colImg {
	overflow: hidden;
}
.m_colImg .p_img {
	/*width: 48%;*/
	margin-bottom: 15px;
}
.m_colImg .p_img.s_w48 {
	width: 48%;
}
.m_colImg .p_img.s_w41 {
	width: 41.56%;
}
.m_colImg .p_img.s_w29 {
	width: 29.87%;
}
.m_colImg .p_img.s_left {
	float: left;
	margin-right: 5.18%;
}
.m_colImg .p_img.s_right {
	float: right;
	margin-left: 5.18%;
}
.m_colImg .p_caption {
	font-size: 1.2rem;
	margin-top: 8px;
}
@media screen and (max-width: 767px){
	.m_colImg {
		text-align: center;
	}
	.m_colImg .p_img {
		float: none;
		width: auto;
		margin-right: auto;
		margin-left: auto;
		text-align: center;
		display: inline-block;
	}
	.m_colImg .p_img.s_w48,
	.m_colImg .p_img.s_w41,
	.m_colImg .p_img.s_w29 {
		width: auto;
	}
	.m_colImg .p_img.s_left,
	.m_colImg .p_img.s_right {
		float: none;
		margin-right: auto;
		margin-left: auto;
	}
	.m_colImg .p_caption {
		font-size: 10px;
		text-align: left;
	}
}

/* btn */
.m_btnWrap {
	text-align: center;
}
.m_linkBtn {
	position: relative;
	display: inline-block;
	width: 380px;
	max-width: 100%;
	background-color: #0c8ed1;
	/*padding: 15px 25px 15px 10px;*/
	padding: 15px 35px 15px 20px;
	text-align: center;
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
}
.m_linkBtn.s_w100 {
	width: 100%;
}
.m_linkBtn.s_wAuto {
	width: auto;
}
.m_linkBtn:hover {
	opacity: 0.8;
}
.m_linkBtn::after {
	content: "";
	position: absolute;
	top: 0;
	right: 15px;
	bottom: 0;
	height: 0;
	margin: auto 0;
	border-left: 6px solid #fff;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
}
@media screen and (max-width: 767px) {
	.m_linkBtn {
		font-size: 16px;
	}
}

/* table */
.m_table01 {
	width: 100%;
	/*width: 770px;*/
	table-layout: fixed;
	border-top: 1px solid #969696;
	border-right: 1px solid #969696;
}
.m_table01 th,
.m_table01 td {
	font-size: 1.8rem;
	border-bottom: 1px solid #969696;
	border-left: 1px solid #969696;
	padding: 10px 12px;
	vertical-align: top;
}
.m_table01 .p_bg01 {
	color: #fff;
	background-color: #969696;
	font-weight: bold;
	text-align: center;
	border-left: 1px solid #fff;
	vertical-align: middle;
}
.m_table01 .p_bg01:first-child {
	border-left: #969696;
}
.m_table01 .p_bg02 {
	background-color: #e5e5e5;
	font-weight: bold;
}
@media screen and (max-width: 1100px) {
	.m_tableWrap {
		width: 100%;
		overflow-x: scroll;
	}
	.m_table01 {
		width: 770px;
	}

}
@media screen and (max-width: 767px) {
	.m_table01 {
		width: 700px;
	}
	.m_table01 th,
	.m_table01 td {
		font-size: 14px;
		padding: 7px 10px;
	}
}

/* form */

.m_select {
	position: relative;
	display: inline-block;
}
.m_select::before {
	content: "";
	position: absolute;
	top: 14px;
	right: 15px;
	width: 6px;
	height: 6px;
	border-right: 2px solid #333;
	border-bottom: 2px solid #333;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.m_select select {
	position: relative;
	border: 1px solid #b1b1b1;
	border-radius: 4px;
	box-shadow: 0 0 5px rgba(0,0,0,0.2) inset;
	background-color: transparent;
	padding: 5px 45px 5px 20px;
	cursor: pointer;
}
.m_select .p_label {
	display: inline-block;
	margin-right: 10px;
}

/* box */
.m_box01 {
	background-color: #f5f5f5;
	padding: 35px 40px;
}
.m_box01.s_arrow {
	background-color: #bebdbd;
	color: #fff;
	position: relative;
	margin-bottom: 30px;
}
.m_box01.s_arrow::before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-top: 30px solid #bebdbd;
	border-left: 32px solid transparent;
	border-right: 32px solid transparent;
	position: absolute;
	bottom: -30px;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.m_box01.s_arrow .m_title04 {
	/*color: #333;*/
}
.m_box01 .p_title {
	text-align: center;
	margin-bottom: 10px;
}
.m_box01 .p_title .p_inn {
	font-size: 1.8rem;
	display: inline-block;
	padding: 7px 20px 5px;
	font-weight: bold;
}
@media screen and (max-width: 767px) {
	.m_box01 {
		padding: 25px;
	}
	.m_box01.s_arrow {
		margin-bottom: 25px;
	}
	.m_box01.s_arrow::before {
		border-top: 25px solid #bebdbd;
		border-left: 27px solid transparent;
		border-right: 27px solid transparent;
		bottom: -25px;
	}
}
.m_boxWrap01 {
	background-color: #fff;
	padding: 30px;
}
.m_boxWrap01 + .m_boxWrap01 {
	margin-top: 20px;
}
.m_boxWrap01:nth-child(odd) {
	background-color: #f5f5f5;
}
.m_boxWrap01:nth-child(odd) .m_box01 {
	background-color: #fff;
}
.m_boxWrap01:nth-child(odd) .m_box01.m_box01.s_arrow::before {
	border-top-color: #fff;
}
.m_boxWrap01:nth-child(odd) .m_box01 .m_title04 {
	color: #333;
}
.m_boxWrap01 .p_solution {
	text-align: center;
	margin-top: 50px;
	margin-bottom: 12px;
}
.m_boxWrap01 .p_solution .p_text {
	font-size: 1.8rem;
	display: inline-block;
	padding: 7px 20px 5px;
	background-color: #f5f5f5;
	font-weight: bold;
}
.m_boxWrap01:nth-child(odd) .p_solution .p_text {
	background-color: #fff;
}
@media screen and (max-width: 767px) {
	.m_boxWrap01 {
		padding: 20px;
	}
	.m_boxWrap01 .p_solution {
		margin-top: 40px;
	}
}


/* section */
.m_mtXXL { margin-top: 80px; }
.m_mtXL  { margin-top: 70px; }
.m_mtLL  { margin-top: 60px; }
.m_mtL   { margin-top: 50px; }
.m_mtM   { margin-top: 40px; }
.m_mtS   { margin-top: 30px; }
.m_mtSS  { margin-top: 20px; }
.m_mtXS  { margin-top: 10px; }
.m_mtXXS { margin-top: 5px; }
@media screen and (max-width: 767px) {
	.m_mtXXL { margin-top: 60px; }
	.m_mtXL  { margin-top: 50px; }
	.m_mtLL  { margin-top: 40px; }
	.m_mtL   { margin-top: 30px; }
	.m_mtM   { margin-top: 20px; }
	.m_mtS   { margin-top: 15px; }
	.m_mtSS  { margin-top: 10px; }
	.m_mtXS  { margin-top: 5px; }
	.m_mtXXS { margin-top: 3px; }
}
.m_mbXXL { margin-bottom: 80px; }
.m_mbXL  { margin-bottom: 70px; }
.m_mbLL  { margin-bottom: 60px; }
.m_mbL   { margin-bottom: 50px; }
.m_mbM   { margin-bottom: 40px; }
.m_mbS   { margin-bottom: 30px; }
.m_mbSS  { margin-bottom: 20px; }
.m_mbXS  { margin-bottom: 10px; }
.m_mbXXS { margin-bottom: 5px; }
@media screen and (max-width: 767px) {
	.m_mbXXL { margin-bottom: 60px; }
	.m_mbXL  { margin-bottom: 50px; }
	.m_mbLL  { margin-bottom: 40px; }
	.m_mbL   { margin-bottom: 30px; }
	.m_mbM   { margin-bottom: 20px; }
	.m_mbS   { margin-bottom: 15px; }
	.m_mbSS  { margin-bottom: 10px; }
	.m_mbXS  { margin-bottom: 5px; }
	.m_mbXXS { margin-bottom: 3px; }
}
.m_sectionL {
	margin-top: 50px;
	margin-bottom: 70px;
}
.m_sectionL:last-child {
	margin-bottom: 0;
}
@media screen and (max-width: 767px) {
	.m_sectionL {
		margin-top: 30px;
		margin-bottom: 40px;
	}
}
.m_sectionM {
	margin-top: 30px;
	margin-bottom: 40px;
}
.m_sectionM:last-child {
	margin-bottom: 0;
}
@media screen and (max-width: 767px) {
	.m_sectionM {
		margin-top: 20px;
		margin-bottom: 30px;
	}
}
.m_sectionS {
	margin-top: 20px;
	margin-bottom: 20px;
}
.m_sectionS:last-of-type {
	margin-bottom: 0;
}
@media screen and (max-width: 767px) {
	.m_sectionS {
		margin-top: 15px;
		margin-bottom: 15px;
	}
}

/* 専用モジュール
----------------------------------------- */

.m_categ {
	margin: 0 0 8px;
}
.m_categ li {
	position: relative;
	display: inline-block;
	margin: 0 6px 6px 0;
	border: 1px solid;
	border-radius: 18px;
	padding: 5px 12px 5px 26px;
	font-size: 1.1rem;
	font-weight: bold;
}
.m_categ li::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 12px;
	width: 9px;
	height: 6px;
	box-shadow: 2px 2px 0 #ccc;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.m_categ li::after {
	content: "";
	position: absolute;
	top: 7px;
	left: 11px;
	width: 4px;
	height: 4px;
	border: 1px solid;
	background-color: #fff;
}
.m_categ li.s_category01 { border-color: #1b68a4; color: #1b68a4; }
.m_categ li.s_category01::before { background-color: #1b68a4; }
.m_categ li.s_category01::after { border-color: #1b68a4; }
.m_categ li.s_category02 { border-color: #7c1b9f; color: #7c1b9f; }
.m_categ li.s_category02::before { background-color: #7c1b9f; }
.m_categ li.s_category02::after { border-color: #7c1b9f; }
.m_categ li.s_category03 { border-color: #a41c2f; color: #a41c2f; }
.m_categ li.s_category03::before { background-color: #a41c2f; }
.m_categ li.s_category03::after { border-color: #a41c2f; }
.m_categ li.s_category04 { border-color: #328860; color: #328860; }
.m_categ li.s_category04::before { background-color: #328860; }
.m_categ li.s_category04::after { border-color: #328860; }
.m_categ li.s_category05 { border-color: #af8511; color: #af8511; }
.m_categ li.s_category05::before { background-color: #af8511; }
.m_categ li.s_category05::after { border-color: #af8511; }

@media screen and (max-width: 767px) {
	.m_categ {
		margin: 0 0 5px;
	}
	.m_categ li {
		padding: 3px 12px 3px 26px;
	}
	.m_categ li::before {
		top: 8px;
	}
	.m_categ li::after {
		top: 5px;
	}
}

.m_articleList {
	display: flex;
	flex-wrap: wrap;
	margin: 40px 0 0 -2.93%;
	min-height: 400px;
}
.m_articleList > li {
	width: 22.15%;
	margin: 0 0 40px 2.85%;
	box-shadow: 0 5px 10px rgba(0,0,0,0.15);
	background-color: #fff;
}
.m_articleList.s_top > li {
	box-shadow: none;
}
.m_articleList a {
	display: block;
	height: 100%;
}
.m_articleList a:hover {
	opacity: 0.8;
}
.m_articleList a > img {
	width: 100%;
}
.m_articleList .p_textArea {
	padding: 12px 8% 25px;
}
.m_articleList .p_date {
	margin: 0 0 10px;
	font-size: 1.4rem;
}
.m_articleList .m_categ li {
	display: inline-block;
}
.m_articleList .p_title {
	margin: 0 0 8px;
	color: #333;
	font-weight: bold;
	line-height: 1.5;
}
.m_articleList .p_text {
	font-size: 1.4rem;
	line-height: 1.4;
}
@media screen and (max-width: 1000px) {
	.m_articleList {
		max-width: 840px;
		margin: 40px auto 0;
	}
	.m_articleList > li {
		width: 31%;
		margin: 0 1.16% 30px;
	}
	.m_articleList.s_top {
		max-width: 700px;
	}
	.m_articleList.s_top > li {
		width: 46%;
		margin: 0 2% 20px;
	}
}
@media screen and (max-width: 767px) {
	.m_articleList {
		max-width: 600px;
	}
	.m_articleList > li {
		width: 46%;
		margin: 0 2% 20px;
	}
}
@media screen and (max-width: 440px) {
	.m_articleList {
		display: block;
		max-width: 300px;
	}
	.m_articleList > li,
	.m_articleList.s_top > li {
		float: none;
		width: auto;
		margin: 0 0 20px;
	}
	.m_articleList .p_textArea {
		padding: 12px 15px 20px;
	}
	.m_articleList .p_date {
		float: left;
		margin: 3px 10px 10px 0;
	}
	.m_articleList .m_categ {
		float: left;
	}
	.m_articleList .p_title {
		clear: both;
	}
}


/* Javascript
----------------------------------------- */
.js_tglContents {
	display: none;
}
.s_open .js_tglContents {
	display: block;
}