@charset "UTF-8";
/*=========================================================================

種別 ： 共通css

=========================================================================*/
html {
  /* 指定した文字サイズを正しく反映 */
  font-size: 100%;
  height: 100%;
}
html, body {
  width: 100%;
  height: 100%;
	margin: 0;
	padding: 0;
}
body {
  font-family: "メイリオ", "ＭＳ Ｐゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  /* 行の高さ */
  line-height: 1.7;
  font-size: 14px;
  height: 100%;
  width: 100%;
	margin: 0;
}
a {
  text-decoration: none;
}
img {
  /* 画像が親要素よりも大きくなるのを防ぐ */
  max-width: 100%;
}
a:link, a:visited {
  /* color: #000;
	text-decoration: none; */
}
a:hover {
  opacity: 0.7;
}
a:link, a:link, a:visited {
  /* text-decoration: none; */
}

/* -------------------------------------------------------------------------*/
main {
  width: 100%;
}
.contentsWrap {
  clear: both;
  margin: 0 auto;
  padding: 0 0;
  box-sizing: border-box;
}

/* article
-------------------------------------------------------------------------*/
.article01, .article02, .article03, .article04, .article05, .article06, .article07 {
  width: 950px;
  margin: 50px auto 0;
  padding: 0;
	box-sizing:border-box;
}
article h3 {
  text-align: left;
  color: #14378C;
  padding: 0;
  font-size: 24px;
  font-weight: bold;
  margin: 20px 0;
	display: flex;
  align-items: center; /* 垂直中心 */
  /* justify-content: center; */ /* 水平中心 */
	box-sizing:border-box;
}

article h3:before {
  border-top: 5px #14378C solid;
  content: "";
  width: 1.5em; /* 線の長さ */
	margin-right: 0.5em;
}

article h3 span {
	font-size: 18px;
}

article h4 {
	color: #000;
	padding: 1px 1rem;
  	border-left: 8px solid #14378C;
	margin: 30px auto 30px 10px;
	font-size: 24px;
	box-sizing:border-box;
}


/*section
------------------------------------------------------------------*/
section p {
  line-height: 2em;
	margin: 0 5px;
	padding: 0;
	box-sizing:border-box;
}


/* btn
-----------------------------------*/


/* btn
-----------------------------------*/
ul.btn01 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 30px 0 0;
}
.btn01 li {
    width: 30%;
    padding: 10px 0;
    margin:0 10px 20px;
	list-style: none;
	text-align: center;
	background: #14378c;
	color: #FFF;
	vertical-align: middle;
	display: grid;
    align-items: center;
	font-size: 16px;
	font-weight: bold;
	position: relative;
}
.btn01 li a {
	color: #FFF;
	display: block;
	width: 100%;
}
.btn01 li:hover {
  opacity: 0.7;
}

.btn01 li:before {
  content: '';
  width: 15px;
  height: 15px;
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
  position: absolute;
  right: 20px;
  top: 40%;
  transform: rotate(45deg);
}

/* Footer
-------------------------------------------------------------------------*/

.button { 
	position: fixed;
  display: inline-block;
  padding: 10px;
	background: #7f91c1;
	width: 50px;
	height: 50px;
	right: 10px;
	bottom: 0;
	cursor: pointer;
  /*デフォルトで非表示にする*/
  opacity: 0;
  visibility: hidden;
}
.button::before {
  content: '';
  width: 20px;
  height: 20px;
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
  position: absolute;
  left: 15px;
  top: 20px;
	transform: rotate(-45deg);
}

/*このクラスが付与されると表示する*/
.active{
  opacity: 1;
  visibility: visible;
}

footer {
  margin: 0;
  padding: 0;
	width: 100%;
	background: #FFF;
}
#footer {
  width: 1000px;
  background: #FFF;
  margin: 0 auto;
  padding: 30px 0 0;
}
#footer h6 {
  text-align: center;
  width: 300px;
  margin: 0 auto;
  padding: 0;
}
#footer ul {
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
}
#footer li {
  list-style: none;
  padding: 5px 0;
  margin: 0 auto;
}
footer p {
  margin: 0 auto;
  text-align: center;
  background: #14378c;
  color: #FFF;
  padding: 10px 0;
}
/* Font style
-------------------------------------------------------------------------*/
.txt_b {
  font-weight: bold;
}
.txt_blue {
  color: #14378C;
}
.txt_red {
  color: #e50011;
}
.txt_white {
  color: #fff;
}
.txt_al_c {
  text-align: center;
  margin: 0;
  padding: 0;
}
.txt_16 {
  font-size: 16px;
}
.txt_18 {
  font-size: 18px;
}
.txt_20 {
  font-size: 20px;
}
p.txt_30 {
  font-size: 30px;
}
/* Margin
-------------------------------------------------------------------------*/
.mb50 {
  margin-bottom: 50px;
}
.mb25 {
  margin-bottom: 25px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb16 {
  margin-bottom: 16px;
}
.mb12 {
  margin-bottom: 12px;
}
.mb10 {
  margin-bottom: 10px;
}
.mt10 {
  margin-top: 10px;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.mt40 {
  margin-top: 40px;
}
.mt50 {
  margin-top: 50px;
}
/* BR
-------------------------------------------------------------------------*/
.br-pc {
  display: block;
}
.br-sp {
  display: none;
}
/* Clearfix
-------------------------------------------------------------------------*/
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.clearfix {
  min-height: 1px;
}
* html .clearfix {
  height: 1px;
}