/*
===================================================
	Reset
===================================================
*/
*{
 margin: 0px;
 padding: 0px;
}
li{
 list-style: none;
}
a{
 text-decoration: none;
}
address{
 font-style:normal;
}
/*
===================================================
	Base Setting
===================================================
*/
body {
	line-height: 1.4em;
 letter-spacing: 0.05em;
	color: #333;
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック","MS P Gothic","Osaka",arial,sans-serif;
}
img{
 max-width: 100%;
 height: auto;
 vertical-align: bottom;
}
.sp-visible{
 visibility: hidden;
 width: 0px;
 height: 0px;
}
.maxWidth{
 max-width: 1200px;
 padding-left: 15px;
 padding-right: 15px;
 margin-left: auto;
 margin-right: auto
}
.maxWidth2{
 max-width: 1000px;
 padding-left: 15px;
 padding-right: 15px;
 margin-left: auto;
 margin-right: auto
}
.maxWidth4{
 max-width: 600px;
 padding-left: 15px;
 padding-right: 15px;
 margin-left: auto;
 margin-right: auto
}
.maxWidth3{
 max-width: 800px;
 padding-left: 15px;
 padding-right: 15px;
 margin-left: auto;
 margin-right: auto
}
#header .maxWidth{
 max-width: 1800px;
 padding-left: 15px;
 padding-right: 15px;
 margin-left: auto;
 margin-right: auto
}
#header{
 background: #fff;
 width: 100%;
 position: fixed;
 z-index: 10;
 top: 0px;
 left: 0px;
 box-sizing: border-box;
 transition: .5s;
}
.index #header{
 background: rgba(255,255,255,0.8);
}
.index #header.active{
 background: rgba(255,255,255,1);
}
#header #logo{
 padding: 25px 15px 10px;
}
#header .tel{
 padding: 10px;
 border-radius: 0px 0px 5px 5px;
 min-width: 160px;
 text-align: center;
}
#header .tel a{
 color: #fff;
 display: flex;
 justify-content: center;
 align-items: center;
}
#header .contact{
 padding: 10px;
 border-radius: 0px 0px 5px 5px;
 margin-left: 15px;
 min-width: 160px;
 text-align: center;
}
#header .contact a{
 color: #fff;
 display: flex;
 justify-content: center;
 align-items: center;
}
#header .btnArea{
 display: flex;
 justify-content: flex-end;
}
#header .navList{
 margin-top: 5px;
 display: flex;
}
#header .navList li{
 margin-right: 15px;
}
#header .navList li a{
 color: #0d1644;
 display: block;
 padding: 10px 5px 10px;
 position: relative;
}
#header .navList li a:after{
 content: "";
 display: block;
 position: absolute;
 width: calc(100% - 10px);
 bottom: 5px;
 border-bottom: solid 2px #fff;
 transition: .5s;
 transform: scaleX(0);
}
#header .navList li a:hover:after{
 border-bottom: solid 2px #0d1644;
 transform: scaleX(1);
}
#header .navList li:last-child{
 margin-right: 0px;
}
#main{

}
#main #pageTtl{
 color: #fff;
 padding-top: 100px;
 background: #0b1846; /* Old browsers */
 background: -moz-linear-gradient(left,  #0b1846 0%, #004994 40%, #004a96 60%, #0b1846 100%); /* FF3.6-15 */
 background: -webkit-linear-gradient(left,  #0b1846 0%,#004994 40%,#004a96 60%,#0b1846 100%); /* Chrome10-25,Safari5.1-6 */
 background: linear-gradient(to right,  #0b1846 0%,#004994 40%,#004a96 60%,#0b1846 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
#main #pageTtl h1{
 padding: 50px 15px 100px;
}
#main #pageTtl .ttl{
 font-size: 32px;
 display: block;
 letter-spacing: 0.15em;
}
#main #pageTtl .sub{
 font-size: 16px;
 display: block;
 margin-top: 15px;
}
#footer .btnArea{
 display: flex;
 justify-content: center;
 align-items: center;
}
#footer .btnArea .tel{
 width: 23%;
 text-align: right;
}
#footer .btnArea .mail a{
 background: #fff;
 font-size: 70%;
 border-radius: 2px;
 display: flex;
 align-items: center;
 padding: 10px 15px;
}
#footer .footerList{
 padding: 20px;
 display: flex;
 justify-content: center;
 border-top: solid 1px #fff;
}
#footer .footerList a{
 padding: 10px;
 color: #fff;
}
#footer .footerList a:hover{
 text-decoration: underline;
}


#pagetop{
 position: fixed;
 z-index: 2;
 bottom: 15px;
 right: 15px;
 visibility: hidden;
 opacity: 0;
 width: 45px;
 height: 45px;
 transition: .5s;
}
#pagetop a{
 display: flex;
 width: 100%;
 height: 100%;
 justify-content: center;
 align-items: center;
}
#pagetop a img{
 height: 60%;
 width: auto;
}
#pagetop.active{
 visibility: visible;
 opacity: 1;
}
#pageMenu{
 padding: 80px 0px;
}
#pageMenu ul{
 display: flex;
 justify-content: center;
}
#pageMenu ul li{
 width: 25%;
 text-align: center;
 border: solid 1px #fff;
}
#pageMenu ul li a{
 display: block;
 color: #fff;
 font-size: 20px;
 background: #024d9b;
 padding: 20px;
}

.clearfix{
 overflow: hidden;
}
.fLeft{
 float: left;
}
.fRight{
 float: right;
}
.tLeft{
 text-align: left;
}
.tRight{
 text-align: right;
}
.tCenter{
 text-align: center;
}
.vTop{
 vertical-align: top;
}
.vMiddle{
 vertical-align: middle;
}
.vBottom{
 vertical-align: bottom;
}
.mb1em{
 margin-bottom: 1em;
}
.mb2em{
 margin-bottom: 2em;
}
.mb3em{
 margin-bottom: 3em;
}
.mb50{
 margin-bottom: 50px;
}
.mb100{
 margin-bottom: 100px;
}
.mt1em{
 margin-top: 1em;
}
.mt2em{
 margin-top: 2em;
}
.mt3em{
 margin-top: 3em;
}
.mt50{
 margin-top: 50px;
}
.mt100{
 margin-top: 100px;
}
.mr1em{
 margin-right: 1em;
}
.mr2em{
 margin-right: 2em;
}
.mr3em{
 margin-right: 3em;
}
.ml1em{
 margin-left: 1em;
}
.ml2em{
 margin-left: 2em;
}
.ml3em{
 margin-left: 3em;
}
.p10{
 padding: 10px;
}
.p20{
 padding: 20px;
}
.p30{
 padding: 30px;
}
.pb1em{
 padding-bottom: 1em;
}
.pb2em{
 padding-bottom: 2em;
}
.pb3em{
 padding-bottom: 3em;
}
.pb50{
 padding-bottom: 50px;
}
.pb100{
 padding-bottom: 100px;
}
.pt1em{
 padding-top: 1em;
}
.pt2em{
 padding-top: 2em;
}
.pt3em{
 padding-top: 3em;
}
.pt50{
 padding-top: 50px;
}
.pt100{
 padding-top: 100px;
}
.font-s{
 font-size: 80%;
}
.font-ss{
 font-size: 60%;
}
.font-l{
 font-size: 140%;
}
.font-ll{
 font-size: 180%;
}
.font-lll{
 font-size: 250%;
}
.flex{
 display: flex;
 justify-content: center;
}
.flex.sa{
 justify-content: space-around;
}
.flex.sb{
 justify-content: space-between;
}
.flex.wrap{
 flex-wrap: wrap;
}
.flex .asCenter{
 align-self: center;
}
.w10,.w20,.w25,.w30,.w33,.w40,.w45,.w50,.w60,.w70,.w80,.w90,.w100{
 box-sizing: border-box;
}
.w10{
 width: 10%;
}
.w20{
 width: 20%;
}
.w25{
 width: 25%;
}
.w30{
 width: 30%;
}
.w33{
 width: 33%;
}
.w40{
 width: 40%;
}
.w45{
 width: 45%;
}
.w50{
 width: 50%;
}
.w60{
 width: 60%;
}
.w70{
 width: 70%;
}
.w80{
 width: 80%;
}
.w90{
 width: 90%;
}
.w100{
 width: 100%;
}
.wAuto{
 width: auto;
}
.dNone{
 display: none;
}
.dIb{
 display: inline-block;
}
.gradBlue{
 background: #0d1745; /* Old browsers */
 background: -moz-linear-gradient(left, #0d1745 0%, #064993 76%); /* FF3.6-15 */
 background: -webkit-linear-gradient(left, #0d1745 0%,#064993 76%); /* Chrome10-25,Safari5.1-6 */
 background: linear-gradient(to right, #0d1745 0%,#064993 76%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.gradOrange{
 background-size: 200% auto;
 background-image: linear-gradient(to right, #e84a0f 1%,#f99001 40%); 
}
.styleBtn.gradOrange:hover{
 background-position: right center;
}
.hoverOpacity{
 transition: opacity .5s;
}
.hoverOpacity:hover{
 opacity: .5 !important;
}
.bold{
 font-weight: bold;
}
.lh1_5em{
 line-height: 1.5em;
}
.lh2em{
 line-height: 2em;
}
.white{
 color: #fff;
}
.orange{
 color: #ef7818;
}
.red{
 color: #ff0000;
}
.blue{
 color: #0d1644;
}
.blue2{
 color: #004a95;
}
.bgWhite{
 background: #fff;
}
.bgPaper{
 background: url(../img/bg_paper.gif);
}
.bgBlue{
 background: #0d1644;
}
.bgBlue2{
 background: #060920;
}
.bgBlue3{
 background: #024d9b;
}
.bgGray{
 background: #e4e4e4;
}
.bgYellow{
 background: #f0c32d;
}
.styleTtl .ttl{
 display: block;
 font-size: 34px;
}
.styleTtl .sub{
 margin-top: 15px;
 display: block;
 font-size: 14px;
 font-weight: bold;
}
.styleTtl2{
 background: #024d9b;
 color: #fff;
 padding: 20px 30px;
}
.styleTtl3{
 position: relative;
 color: #ef7818;
 padding-left: 20px;
}
.styleTtl3:before{
 position: absolute;
 left: 0px;
 top: 0px;
 display: block;
 content: "";
 width: 6px;
 height: 1.1em;
 background: #ea5413;
 margin-right: 10px;
}

.styleBtn{
 transition: .5s;
 position: relative;
 padding: 15px 20px;
 text-align: center;
 min-width: 250px;
 display: inline-block;
}
.styleBtn:before{
 position: absolute;
 display: block;
 content: "";
 border-top: solid 1px #fff;
 border-right: solid 1px #fff;
 transform: rotate(45deg);
 width: 12px;
 height: 12px;
 top: 50%;
 right: 14px;
 margin-top: -6px;
}
.styleBtn.blue:before{
 border-top: solid 1px #0d1644;
 border-right: solid 1px #0d1644;
}

.styleList{
 display: flex;
 flex-wrap: wrap;
 border-left: solid 1px #024d9b;
 box-sizing: border-box;
 color: #0d1644;
}
.styleList li{
 width: 33.333%;
 text-align: center;
 padding: 15px;
 box-sizing: border-box;
 border-right: solid 1px #024d9b;
 border-bottom: solid 1px #024d9b;
}
.styleList li:nth-child(1),
.styleList li:nth-child(2),
.styleList li:nth-child(3){
 border-top: solid 1px #024d9b;
}

.styleTable{
 border-collapse: collapse;
 border-spacing: 0;
 box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
 width: 100%;
}
.styleTable th,
.styleTable td{
 padding: 15px;
 border-bottom: solid 1px #bcbdbd;
}
.styleTable tr:last-child th,
.styleTable tr:last-child td{
 border-bottom: none;
}
.styleTable th{
 background: #dddfe2;
 min-width: 200px;
 text-align: left;
}
.styleTable td{
 background: #fff;
}

.underline{
 text-decoration: underline;
}

.pageGuide{
 display: flex;
 justify-content: center;
 padding: 20px;
 color: #0d1644;
}
.pageGuide li{
 border-right: solid 1px #0d1644;
}
.pageGuide li:last-child{
 border-right: none;
}
.pageGuide li a{
 display: block;
 padding: 5px 20px;
 color: #0d1644;
}

/*
===================================================
	sp
===================================================
*/
@media screen and (max-width: 960px) {
 #header{
  background: #fff !important;
  display: flex;
  justify-content: space-between;
 }
 #header>.maxWidth{
  margin: 0px;
 }
 #header>.maxWidth .flex{
  justify-content: center;
 }
 #header .spNav{
  display: flex;
  height: 100%;
 }
 #header .spNav .spTell{
  width: 50px;
  height: 100%;
  border-top: solid 1px #eee;
  border-left: solid 1px #eee;
  border-bottom: solid 1px #eee;
  box-sizing: border-box;
 }
 #header .spNav .spTell a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
 }
 #header .spNav .spTell img{
  width: 17px;
  height: auto;
 }
 #header .spNav .spContact{
  width: 50px;
  height: 100%;
  border-top: solid 1px #eee;
  border-left: solid 1px #eee;
  border-bottom: solid 1px #eee;
  box-sizing: border-box;
 }
 #header .spNav .spContact a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
 }
 #header .spNav .spContact a img{
  width: 20px;
  height: auto;
 }
 #header #logo {
  padding: 15px 10px 17px;
 }
 #header #logo img{
  width: 200px;
  height: auto;
 }
 #main #pageTtl{
  color: #fff;
  padding-top: 80px;
 }
 #main #pageTtl h1{
  padding: 25px 15px 50px;
  text-align: center;
 }
 #main #pageTtl .ttl{
  font-size: 25px;
  display: block;
  letter-spacing: 0.15em;
 }
 #main #pageTtl .sub{
  font-size: 15px;
  display: block;
  margin-top: 10px;
 }
 #footer .btnArea{
  display: block;
  width: 300px;
  margin: 10px auto;
  text-align: center;
 }
 #footer .btnArea .tel{
  width: auto;
  text-align: center;
  font-size: 120%;
  margin-top: 30px;
 }
 #footer .btnArea .mail a{
  display: inline-block;
 }
 #footer .footerList{
  padding: 20px 20px 40px;
  display: block;
  border-top: none;
 }
 #footer .footerList li{
  border-bottom: solid 1px #fff;
 }
 #footer .footerList a{
  display: block;
  padding: 15px;
  color: #fff;
  position: relative;
 }
 #footer .footerList a:after{
  position: absolute;
  right:10px;
  top: 45%;
  display: block;
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  transform: rotate(45deg);
 }

 #pageMenu{
  padding: 30px 0px;
 }
 #pageMenu ul{
  display: block;
 }
 #pageMenu ul li{
  width: auto;
  text-align: center;
  border: solid 1px #fff;
 }
 #pageMenu ul li a{
  display: block;
  color: #fff;
  font-size: 16px;
  background: #024d9b;
  padding: 10px;
 }

 .sp-visible{
  visibility: visible;
  width: auto;
  height: auto;
 }
 .sp-hidden{
  visibility: hidden;
  width: 0px;
  height: 0px;
 }
 .sp-dBlock{
  display: block;
 }
 .sp-dIb{
  display: inline-block;
 }
 .sp-dNone{
  display: none;
 }
 .sp-menuBtn {
  position: relative;
  cursor: pointer;
  width: 50px;
  height: 100%;
  background: #054b96;
 }
 .sp-menuBtn .sp-menuBtn__inner {
  transition: transform 0.5s;
  position: absolute;
  top: 20px;
  left: 17px;
  width: 16px;
  height: 1px;
  background: #fff;
  z-index: 999;
 }
 .sp-menuBtn .sp-menuBtn__inner::after {
  transition: transform 0.5s;
  position: absolute;
  top: 6px;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
 }
 .sp-menuBtn .sp-menuBtn__inner::before {
  transition: transform 0.5s;
  position: absolute;
  top: 12px;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
 }
 .sp-menuBtn.active .sp-menuBtn__inner {
  position: relative;
  top: 25px;
  left: 15px;
  width: 20px;
  height: 1px;
  background: #555555;
  transform: rotate(45deg);
 }
 .sp-menuBtn.active .sp-menuBtn__inner::after {
  position: absolute;
  top: 0px;
  background: #555555;
  transform: rotate(90deg);
 }
 .sp-menuBtn.active .sp-menuBtn__inner::before {
  position: absolute;
  top: 0px;
  display: block;
  background: #555555;
 }
 .sp-menuBtn span {
  display: none;
 }
 .sp-menuArea {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0px;
  left: 0px;
  height: 0px;
  width: 100%;
  height: 100%;
  background: #fff;
  overflow-y: scroll;
  z-index: 998;
 }
 .sp-menuArea.active {
  transition: opacity 0.5s;
  opacity: 1;
  visibility: visible;
 }
 .sp-menuArea .sp-menu {
  padding: 50px 10px 10px;
 }
 .sp-menuArea .sp-menu li {
  border-bottom: solid 1px #eee;
 }
 .sp-menuArea .sp-menu li a {
  position: relative;
  display: block;
  padding: 10px 5px 10px 12px;
  color: #555555;
 }
 .sp-menuArea .sp-menu li a::before {
  position: absolute;
  left: 0px;
  top: 50%;
  margin-top: -3px;
  vertical-align: middle;
  content: "";
  display: block;
  border-left: solid 6px #555555;
  border-top: solid 4px transparent;
  border-bottom: solid 4px transparent;
 }
 .sp-font-l{
  font-size: 140%;
 }
 .sp-font-m{
  font-size: 100%;
 }
 .sp-font-s{
  font-size: 60%;
 }
 .sp-fLeft{
  float: left;
 }
 .sp-fRight{
  float: right;
 }
 .sp-tLeft{
  text-align: left;
 }
 .sp-tRight{
  text-align: right;
 }
 .sp-tCenter{
  text-align: center;
 }
 .sp-vTop{
  vertical-align: top;
 }
 .sp-vMiddle{
  vertical-align: middle;
 }
 .sp-vBottom{
  vertical-align: bottom;
 }
 .sp-mb0{
  margin-bottom: 0px;
 }
 .sp-mb1em{
  margin-bottom: 1em;
 }
 .sp-mb2em{
  margin-bottom: 2em;
 }
 .sp-mb3em{
  margin-bottom: 3em;
 }
 .sp-mt0{
  margin-top: 0px;
 }
 .sp-mt1em{
  margin-top: 1em;
 }
 .sp-mt2em{
  margin-top: 2em;
 }
 .sp-mt3em{
  margin-top: 3em;
 }
 .sp-mt50{
  margin-top: 50px;
 }
 .sp-pb0{
  padding-bottom: 0px;
 }
 .sp-pb50{
  padding-bottom: 50px;
 }
 .sp-pb1em{
  padding-bottom: 1em;
 }
 .sp-pb2em{
  padding-bottom: 2em;
 }
 .sp-pb3em{
  padding-bottom: 3em;
 }
 .sp-pt0{
  padding-top: 0px;
 }
 .sp-pt50{
  padding-top: 50px;
 }
 .sp-pt1em{
  padding-top: 1em;
 }
 .sp-pt2em{
  padding-top: 2em;
 }
 .sp-pt3em{
  padding-top: 3em;
 }
 .sp-p0{
  padding: 0px;
 }
 .sp-p5{
  padding: 5px;
 }
 .sp-p10{
  padding: 10px;
 }
 .sp-p15{
  padding: 15px;
 }
 .sp-p20{
  padding: 20px;
 }
 .sp-w10,.sp-w20,.sp-w25,.sp-w30,.sp-w33,.sp-w40,.sp-w50,.sp-w60,.sp-w70,.sp-w80,.sp-w90,.sp-w100{
  box-sizing: border-box;
 }
 .sp-w10{
  width: 10%;
 }
 .sp-w20{
  width: 20%;
 }
 .sp-w30{
  width: 30%;
 }
 .sp-w40{
  width: 40%;
 }
 .sp-w50{
  width: 50%;
 }
 .sp-w60{
  width: 60%;
 }
 .sp-w70{
  width: 70%;
 }
 .sp-w80{
  width: 80%;
 }
 .sp-w90{
  width: 90%;
 }
 .sp-w100{
  width: 100%;
 }
 .wAuto{
  width: auto;
 }
 .styleTtl .ttl {
  display: block;
  font-size: 26px;
 }
 .styleTtl2{
  text-align: center;
 }
 .styleList li{
  width: 50%;
 }
 .styleList li:nth-child(3){
  border-top: none;
 }
 .styleTable th{
  min-width: 0px;
 }

 .pageGuide{
  display: flex;
  justify-content:flex-start;
  padding: 0px;
  flex-wrap: wrap;
  margin: 2px;
 }
 .pageGuide li{
  width: calc(50% - 2px);
  margin: 1px;
  border-right: none;
 }
 .pageGuide li a{
  position: relative;
  display: block;
  padding: 10px 10px 20px;
  color: #0d1644;
  text-align: center;
  border:solid 1px #e3e3e3;
 }
 .pageGuide li a:after{
  display: block;
  content: "";
  width:8px;
  height: 8px;
  border-right: solid 3px #ea5413;
  border-bottom: solid 3px #ea5413;
  transform: rotate(45deg);
  position: absolute;
  left: 50%;
  margin-left: -5px;
  bottom: 10px;
 }

}