﻿@charset "utf-8";
/* CSS Document */
/*=================
base
=================*/
*, *:before, *:after {
  box-sizing: border-box;
}
html,
body {
	width: 100%;
	height: 100%;
}
body {
	font-family: "ヒラギノ明朝 W3 JIS2004", "Hiragino Minho W3 JIS2004", "serif";
	line-height: 1.5;
	color: #333;
  background: #FFF;
}

/*=================
common layout
=================*/
#wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

main {
  width: 100%;
	margin: 0 auto;
}
section {
	width: 98%;
	max-width: 980px;
	margin: 3em auto;
  padding: 0 1em;
}


/*=================
header
=================*/
header {
	border-bottom: 1px solid #043491;
	-webkit-box-shadow: rgb(0 0 0 / 11%) 0 1px 3px, rgb(0 0 0 / 24%) 0 1px 3px;
	-moz-box-shadow: rgb(0 0 0 / 11%) 0 1px 3px, rgb(0 0 0 / 24%) 0 1px 3px;
	box-shadow: rgb(0 0 0 / 11%) 0 1px 3px, rgb(0 0 0 / 24%) 0 1px 3px;
}
.header-area {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 60px;
}
.img-logo {
	position: absolute;
	top: 50%;
	left: 0;
	height: 34px;
	margin-left: 1em;
	transform: translateY(-50%);
}

/*=================
footer
=================*/
footer {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	height: 140px;
	margin-top: auto;
	color: #FFF;
	background-color: #043491;
}
.box-logo-area {
	margin: 0;
}
.box-copyright-text-area {
	font-size: .75em;
	margin: .5em 0;
}
.img-grlogo {
  margin: 10px;
	width: 160px;
}

h2, h3 {
  font-family: "ヒラギノ明朝 W6 JIS2004", "Hiragino Minho W6 JIS2004", "serif";
	font-weight: bold;
}
h2 {
  padding-bottom: 0.3em;
	font-size: 1.4em;
	line-height: 1.5;
	border-bottom: 3px solid #043491;
  text-align: center;
}
h3 {
	margin: 3em 0 .5em;
	padding: 0 .5em;
	font-size: 1.25em;
	color: #043491;
	border-left: 5px solid #043491;
}

*:focus {
	outline: none;
}
a {
	color: #043491;
  overflow-wrap: break-word;
}
a:hover {
  text-decoration: none;
}
.box-text-link-area {
	margin: .25em 0;
}
.text-link {
  position: relative;
  padding-left: 1.3em;
  display: block;
	color: #003B83;
}
.text-link::before {
  position: absolute;
  top: -2px;
  left: 0;
	content: "▶";
}

@media screen and (max-width:520px) {
  h2 {
    font-size: 1.3em;
    text-align: left;
  }
  h2 > br {
    display: none;
  }
}

