@charset "utf-8";
html {font-size: 62.5%;}/*初期値16pxの62.5%でルートが10px*/
body {
	font-size: 1.0em;/*chrome対策のためem*/
	color: #222;
	letter-spacing: 0.05rem;
	font-family:'Noto Sans JP', sans-serif;
	font-weight: 400;
	background-color: #fff;
}
strong,.bold{
	font-weight: 700;
}
/* ---------    PCのみ表示　　----------- */
.pc{
	display:block;
}
.pc_inline{
	display:inline-block;
}
.sm,.sm_block{
	display:none ;
}
/* ---------------------- ヘッダー ---------------------- */
header {
	background: #fff;
	border-bottom: 1px solid #dfdfdf;
}
#header_content {
	max-width: 1140px;
	width: 95%;
	margin:0 auto;
	display: flex;
	justify-content:space-between;
	align-items:center;
}
#header_left { /*  左  */
	max-width: 980px;
	flex: 1 1 0;
	display: flex;
	justify-content:space-between;
	align-items:center;
	background: url("../images/logo.svg") no-repeat 0 20px;
	height: 75px;
}
#header_left .header_title{ /*  タイトル  */
	font-size: 2.0rem;
	padding-left: 2.5em;
}
#header_left .header_login{ /*  ログイン中ユーザー  */
	font-size: 1.4rem;
}
#header_right { /*  右  */
}
#header_right a.logout{ /*  ログアウト  */
	color: #FFFFFF;
	font-weight: 700;
	font-size: 1.5rem;
	background: #005eae;
	border-radius: 5px;
	padding: 0.6em 0 0.7em;
	width: 140px;
	display: block;
	text-align: center;
	margin-left: 10px;
}
#header_right a.logout:hover{
	background: #004d8e;
}
/* ---------------------- お知らせ ---------------------- */
#information_bg{
	background: #ff5656;
	padding: 5px 0;
}
.information{
	max-width: 1140px;
	width: 95%;
	margin: 0.5em auto ;
	color: #fff;
	font-weight: 700;
	font-size: 1.6rem;	
}
/* ---------------------- コンテンツ部分 ---------------------- */
#contents { 
	width: 100%;
	background: #ecedf2;
	padding: 40px 0;
	font-size: 1.6rem;
}
.contents { 
	width: 95%;
	max-width: 1140px;
	margin: auto;
}

/* --------------------- フッター ---------------------- */
footer {
	clear: both;
	background: #41434c;
	color: #fff;
	font-size:1.0rem;
	text-align: center;
	padding: 2em 0;
}


/* --------------------- フォーム ---------------------- */
input, button, select {
	padding:11px;
	border-radius: 5px;
	font-family:'Noto Sans JP', sans-serif;
	font-size: 1.5rem;
	margin: 0.4em 0;
}
input::placeholder {
	color: #999999;
}

/* ---------------------- 見出し---------------------- */
h1{
	clear: both;
	font-size: 2.0rem;
	font-weight: 700;
	background: #8da5ba;
	color: #fff;
	padding: 11px 0 13px 40px;
	position: relative;
	margin-bottom: 20px;
	max-width: 1140px;
	width: 95%;
	margin: 0 auto 20px;
}
h1:before {
	position: absolute;
	top: 15px;
	left: 20px;
	height: 22px;
	content: '';
	border-left: 3px solid #fff;
}