/* portal
----------------------------*/
html {
	 /* 全体デザイン  */
	--body-bgcolor: #f5fafd;
	--text-color: #0a2646;
	--link-color: #003992;
	--primary-color: #254897;
	--secondary-color: #e1effc;
	--accent-color: #2b97ca;
	--btn1-color: #2b97ca;
	--btn2-color: #ff6633;
	--border-color: #cfdde6;
	/* contents */
	--header-bgcolor: #fff;
	--header-color: #0a2646;
	--gnavi-bgcolor: #12428d;
	--cont_bgcolor: #f5fafd;
	--footer-color: #9baab3;

	 /* 見出し */
	--h1-color: #0a2646;
	--h2-color: #1b2c63;
	--h3-color: #1b2c63;
	--h4-color: #1b2c63;
	--table-th-bgcolor: #f4f4f4;
	--table-th-color: #0a2646;
	--table-td-edit: #def5ed;
	--form-item: #123f77;
}

body {
	width: 100%;
	background: var(--body-bgcolor, #f6f6f6);
	color: var(--text-color, #0a2646);
	font-family: 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Meiryo", system-ui, sans-serif;
	font-size: 1.6rem;
	line-height: 1.6;
}
.mincho {
  font-family: "ヒラギノ明朝 Pro W6","Hiragino Mincho Pro","HGS明朝E","HG明朝E","ＭＳ 明朝",serif;
}

a {
	color: var(--link-color, #fc7c7c);
	text-decoration: underline;
	-webkit-font-smoothing: antialiased;
}
a:hover {
	text-decoration: none;
}

hr {
	border-bottom: 1px solid var(--border-color, #cfdde6);
	margin: 1.5em auto 1.5em auto;
}

.material-symbols-outlined {
  vertical-align: middle;
  font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}


/* header
----------------------------*/
header {
	width: 100%;
	background: var(--header-bgcolor, #fff);
	border-bottom: 2px solid #12428d;
	display: flex;
	justify-content: space-between;
	padding: 15px;
}
.header_cont {
	position: relative;
	width: 100%;
	max-width: 1840px;
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
}
.header_cont h1 {
	font-size: 1rem;
	text-align: center;
}

/* button
----------------------------*/
.btn_wrapper {
	text-align: center;
	margin: 30px auto;
}
.btn_wrapper a {
	display: inline-block;
	width: 90%;
	max-width: 300px;
	min-height: 60px;
	background: var(--primary-color, #254897);
	border-bottom: 2px solid rgba(0,0,0,0.2);
	border-radius: 6px;
	box-sizing: border-box;
	color: #fff !important;
	font-size: 1.8rem;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	letter-spacing: 0.5px;
	line-height: 1.4;
	padding: 15px 10px;
	margin: 0 5px 30px 5px;
	cursor: pointer;
}
a.btn_black {
	background: #444 !important;
	border-bottom: 2px solid #000!important;
}
a.btn_1 {
	background: var(--btn1-color, #2b97ca) !important;
	border-bottom: 2px solid rgba(0,0,0,0.2) !important;
}
a.btn_2 {
	background: var(--btn2-color, #ff6633) !important;
	border-bottom: 2px solid rgba(0,0,0,0.2) !important;
}

.btn_wrapper a:last-child {
	margin-bottom: 0px;
}
.btn_wrapper a:hover {
	filter: alpha(opacity=90);
	-ms-filter: alpha(opacity=90);
	opacity: 0.9;
}

/* button_mini
----------------------------*/
a.btn_mini  {
	display: inline-block;
	background: var(--primary-color, #254897);
	border-bottom: 2px solid rgba(0,0,0,0.2);
	border-radius: 6px;
	box-sizing: border-box;
	color: #fff !important;
	font-size: 0.875em;
	letter-spacing: 0.5px;
	line-height: 1.4;	
	font-weight: bold;
	text-align: center;	
	text-decoration: none;
	padding: 0.7em 1em;
	margin: 0.3em;
	cursor: pointer;
}
a.btn_mini:hover {
	filter: alpha(opacity=90);
	-ms-filter: alpha(opacity=90);
	opacity: 0.9;
	text-decoration: none;
}

/* footer
----------------------------*/
footer {
	color: var(--footer-color, #999);
	font-size: 1.2rem;
	padding: 15px 15px;
}

footer p {
	text-align: center;
}
.copyright {
	text-align: center;
}
