/*----------- FONT -----------*/
@import url('//fonts.googleapis.com/css?family=Roboto:300,400,500,700,900');
@import url(//fonts.googleapis.com/earlyaccess/notosansjp.css);


html {
	font-size: 62.5%;/* 16px x 0.625 = 10px(=1rem) */
}
body{
	font-size: 1.5rem;/* 15px */
	font-family: 'Noto Sans JP','Roboto', sans-serif;
	font-weight: normal;
    margin: 0;
    padding: 0;
    color: #282828;
	line-height: 1.8;
  word-wrap : break-word;
  overflow-wrap : break-word;
}

button, input, select, textarea {
font-family : inherit;
}

@media all and (-ms-high-contrast: none){
body {
  font-family: -apple-system, blinkMacSystemFont, /* Macの欧文はSan Francisco (OS X 10.11以降) */
               'Helvetica Neue', /* Macの欧文 (OS X 10.10以前) */
               'Segoe UI',       /* Windowsの欧文 */
               YuGothicM,        /* Windows8.1以上は游ゴシック */
               YuGothic,         /* Macの游ゴシック */
               Meiryo,           /* 游ゴシックが入っていないWindows */
               sans-serif;
}

/* Windows */
@font-face {
  font-family: YuGothicM;
  font-weight: normal;
  src: local('YuGothic-Medium'),  /* Mediumを明示的に指定 */
       local('Yu Gothic Medium'), /* Chrome用 */
       local('YuGothic-Regular'); /* Windows8.1ではMediumがないのでRegularを指定 */
}
@font-face {
  font-family: YuGothicM;
  font-weight: bold;
  src: local('YoGothic-Bold'), /* Boldはそのまま */
       local('Yu Gothic');     /* Chrome用 */
}
}




@media screen and (max-width: 480px){
body{
	font-size: 1.45rem;
	line-height: 1.8s;
}
}

/*------------------------------  style:reset ------------------------------*/
h1,h2,h3,h4,h5,h6,figure{margin: 0;padding: 0; line-height: 1.6;}
p,dl{margin: 0;padding: 0; }
ul{list-style-type: none;margin: 0;padding: 0;}
a{text-decoration: none;}

/*------------------------------ clearfix ------------------------------*/
.clearfix {
    zoom: 1;
}
.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}
.clearfix:after {
    clear: both;
}
/*------------------------------ wrap ------------------------------*/
.wrap-01{
  overflow: hidden;
  position: relative;
}
.wrap-02{
  position: relative;
  min-height: 1200px;
}
.wrapcontents{
	width: calc(100% - 40px);
	max-width: 1100px;
	margin: 0 auto;
	padding-right: 20px;
	padding-left: 20px;

}
.pc{display: block;}
.pad{display: none;}
.sp{display: none;}

@media screen and (max-width: 768px){
	.pc{display: none;}
	.pad{display: block;}
	.wrap-01{position: relative;z-index: 2;}
	.wrap-02{min-height: 0;}
}
@media screen and (max-width: 480px){
.wrapcontents{
	width: calc(100% - 30px);
	padding-right: 15px;
	padding-left: 15px;
}
	.sp{display: block;}
}

/*------------------------------ #main ------------------------------*/
#main{
	padding:0 0 0 240px;
  	width: calc(100% - 240px);
	display: flex;
	flex-direction: column;
	height: auto;
}

@media screen and (max-width: 768px){
	#main{
  		padding: 0;
  		width: 100%;
  		min-height: 800px;
	}
}
/*------------------------------ #header ------------------------------*/
#header{}
@media screen and (max-width: 768px){
	#header{
		width: 100%;
		/* box-shadow */
		box-shadow:0px 0px 10px 1px #dbdbdb;
		-moz-box-shadow:0px 0px 10px 1px #dbdbdb;
		-webkit-box-shadow:0px 0px 10px 1px #dbdbdb;
	}
}
#toggle{
	display: none;
}
@media screen and (max-width: 768px){
	#toggle{
		-js-display: flex;
		display: flex;
		justify-content: center;
		align-items:center;
		width: 50px;
		height: 50px;
		background: #163357;;
	}
	#toggle a{
		display: block;
		color:#fff;
		width: 100%;
		height: 100%;
		-js-display: flex;
		display: flex;
		justify-content: center;
		align-items:center;
	}
	.toggle-box{
		-js-display: flex;
		display: flex;
		justify-content: flex-end;
		position: relative;
		z-index: 0;
	}
}
/*------------------------------ .headerBodyWrap ------------------------------*/
.headerBodyWrap{
	min-width: 240px;
	min-height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	/* box-shadow */
	box-shadow:0px 0px 10px 1px rgba(0,0,0, .15);
	-moz-box-shadow:0px 0px 10px rgba(0,0,0, .15);
	-webkit-box-shadow:0px 0px 10px rgba(0,0,0, .15);
	background: rgba(255,255,255,1.00);
}
.headerBody{
	width: 240px;
	min-width: 240px;
  	background: #ffffff;
	margin: 0;
	display: block;
}
.headerBody h1{
  width: 240px;
  height:150px;
  -js-display: flex;
  display: flex;
  justify-content: center;
  align-items: center;
}
.headerBody h1 a{
  display: block;
}

@media screen and (max-width: 768px){
	.headerBody h1{
  	width:auto;
  	height:54px;
	}
	h1.sp{
		position: absolute;
		top:2px;
		z-index: 9999
	}
	h1.sp a{
		height: 100%;
		display: inline-block;
	}
	h1 img {
		margin-left: 10px;
		width:84%;
	}
	.headerBodyWrap{
		width: 100%;
		min-width: inherit;
		min-height: inherit;
		top: inherit;
		box-shadow: none;
		z-index: auto;
		background: rgba(255,255,255,0);
	}
	#js-sidebar {
		pointer-events: none;
	}
	#js-header {
		pointer-events: visible;
	}
.headerBody{
		display: none;
		position:absolute!important;
		top: 0 !important;
  		width: 100% !important;
		padding: 0;
  		background: #ffffff;
		box-shadow: none;
	}
}
/*------------------------------ .accordion ------------------------------*/
.displayNone {
display: none;
}
.accordion a {
display: block;
text-align: center;
}
.contentWrap{
position: absolute;
top:0;
left:240px;
background: rgba(21,51,87,1);
width: 250px;
height: 100%;
	
}

.switch {
	width: calc(100% - 25px);
	height: 48px;
	cursor:pointer;
	font-weight: 500;
	position: relative;
	-js-display: flex;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-size: 1.5rem;
	letter-spacing: 0.02em;
	color: #595757;
	padding-left: 25px;
	transition: .3s;
	background: #fff;
	line-height: 1.4;
}

a.switch { 
	display: flex;
	text-align: left;
}

a.switch:first-of-type {
	letter-spacing: 0.4rem;
}


.switch:hover {
background:  #163357;
color:#ffffff;
}

.switch.cat03 {
	height: 70px;
}

.switch.open {
background:  #163357;
color:#ffffff;
}

.switch.open > a{
color:#ffffff;
}

.contentWrap.none{
position: absolute;
top:0;
left:240px;
background: rgba(21,51,87,0)!important;
width: 240px;
height: 100%;
	
}
@media screen and (max-width: 768px){
	.contentWrap{
		position: relative;
		top:0;
		left:0;
		background:#163357;
		color:#ffffff;
		width: 100%;
		height: auto;
		padding: 0;
	}
	.switch{
		border-bottom:1px solid rgba(255,255,255,.2);
		z-index: 999;
		background:#163357;
		color:#ffffff;
		font-weight: 300;
		width: calc(100% - 30px);
		height: auto;
		padding: 15px;
		transition: .3s;
	}
	.switch::after{
	 	content: url(../images/common/arrow_wh_s.png);
		position: absolute;
		right: 20px;
		top:18px;
	}
.switch.cat03 {
	height:auto;
}

	
	
	.headFixed{
		position: relative;		
		width: 100%;
		height: 50px;
		z-index: 9999!important;
		background: #fff;	
	}
	.switch:hover{
		background: #103b66;
	}		

	
}
/*------------------------------ .headerNav ------------------------------*/
.headerNav .active{
	background: #163357;
	color:#ffffff!important;
}
.headerNav .active a{
	color:#ffffff!important;
}

@media screen and (max-width: 768px){
	.headerTool{
		position: relative;
		z-index: 9999!important;
		background: #fff;
		padding-top: 20px;
		padding-bottom: 20px;
		/* box-shadow */
		box-shadow:0px 12px 20px -2px rgba(0,0,0,0.2);
		-moz-box-shadow:0px 12px 20px -2px rgba(0,0,0,0.2);
		-webkit-box-shadow:0px 12px 20px -2px rgba(0,0,0,0.2);
	}

}
.headerNav{
  margin-top: 0px;
}

@media screen and (max-width: 768px){
	.headerNav{
		margin: 0;
/* box-shadow */
box-shadow:0px 1px 21px 1px rgba(0,0,0,0.2);
-moz-box-shadow:0px 1px 21px 1px rgba(0,0,0,0.2);
-webkit-box-shadow:0px 1px 21px 1px rgba(0,0,0,0.2);


	}

	.headerNav,
	.header_subnav a{
  	font-size: 1.3rem;
	}
	.headerNav ul{
  	width: 100%;
  	text-align: center;
	}
	.headerNav ul li{
  	padding-bottom: 0;
		border-bottom: 1px solid #ededed;
	}
	.headerNav ul li:last-child{
	border-bottom: none;
	}
	.headerBody h1{
  	display: none;
	}
	.headerBody h1 a{
  	display: none;
	}

}


/*アコーディオンメニュー*/
.acc_box{
  width: 90%;
	margin: 0 auto;
	text-align: center;
}


.acc_title{
	text-align: center;
}


.acc_title p.main{
	font-size: 1.8rem;
	line-height: 1.4;
	margin-bottom: 25px;
	margin-top: 40px;
	color:#fff;
	letter-spacing: 0.1rem;
}
.acc_title p.main::after {
    content: '';
    display: block;
    position: relative;
    width: 40px;
    height: 3px;
    bottom: -16px;
    margin: 0 auto;
    background-color: #FFFFFF;
}	

ul.acc_menu{
	width: 100%;
	margin-top: 40px;
}
ul.acc_menu li{
  	width: 100%;
}
ul.acc_menu li.mr0{
	margin-right: 0;
}
ul.acc_menu li a{
	display:block;
	width: 100%;
	padding: 5px;
	box-sizing: border-box;
	-js-display: flex;
  	display: flex;
	justify-content:center;
	align-items: center;
	color:#fff;
	font-size: 1.4rem;
	line-height: 1.4;
}
ul.acc_menu li a:hover{
background: #13477f;
}



@media screen and (max-width: 768px){
	.acc_box{
  display: none;
		
}
.acc_title{
  	margin-left: 0;
	height: auto;
	background: #fff;
	border-top: 2px solid #163357;
	border-bottom: 1px solid #e5e5e5;
	-js-display: flex;
  	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}

	.acc_title p.main::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    bottom: 0;
    margin: 0 auto;
}	
	
	
.acc_title p.sub a{
	font-size: 1.22rem;
	letter-spacing: 0.14rem;
	color:#282828;
	display: block;

	margin:0 auto;
	padding: 14px;
}
.acc_title p.sub a i{
	padding-right: 7px;
	font-weight: 600;
	
}
.acc_title p .sub a:hover{
	color:#282828;
}
ul.acc_menu{
	width: 100%;
    background: #D3EBE8;
	margin: 0;
	position: relative;
	z-index: 2;

	
}
ul.acc_menu li{
  	width: 100%;
	height:auto;
    background: none;
	margin-top: 0px;
	border-bottom: 0;
	text-align: right;
    z-index: 999;
	margin-right: 0;
}
ul.acc_menu li a{
	display:block;
	width: 100%;
	height:auto;
	-js-display: flex;
  	display: flex;
	justify-content:flex-start;
	align-items:center;
	padding: 5px 15px;
    background: #f2f2f2;
    color: #163357;
	border-bottom:1px solid #D1D1D1;
	text-align: left;

}
ul.acc_menu li a:hover{
background: #f2f2f2;
}

	ul.acc_menu li.sp_topmenu{
		  	width: 100%;
	display: block;
	}	
	
ul.acc_menu li.sp_topmenu a{
	background: #dbdcdc;
	color: #163357;
	border:none;
	}

ul.acc_menu li a br.br_pc{
	display: none;
}
	
	
}

/*----------- page -----------*/
@media screen and (max-width: 768px){
script.js_spnone{
	display: none;
}
}




/*---------------------- ここから NEW ----------------------*/

.container{
	width: 1100px;
	margin: 0 auto;
}
.row{
 -js-display: flex;
  display: flex;
	flex-flow: wrap;
}
.column{
 -js-display: flex;
  display: flex;
	flex-flow: column;
}



img{
	width: auto;
	max-width: 100%;
}
img.img-center{
	display: block;
	margin: 0 auto;
}
/*---------------------- useful ----------------------*/
/*margin-top*/
.mt0{margin-top: 0px;}
.mt5{margin-top: 5px;}
.mt10{margin-top: 10px;}
.mt15{margin-top: 15px;}
.mt20{margin-top: 20px;}
.mt30{margin-top: 30px;}
.mt40{margin-top: 40px;}
.mt60{margin-top: 60px;}

/*margin-bottom*/
.mb60{margin-bottom: 60px;}
.mb50{margin-bottom: 50px;}
.mb40{margin-bottom: 40px;}
.mb20{margin-bottom: 20px;}
.mb10{margin-bottom: 10px;}
.mb5{margin-bottom: 5px;}

.txt-center{
	text-align: center;
}
.txt-left{
	text-align: left;
}
.txt-right{
	text-align: right;
}
.bold{
	font-weight: 600;
}

.align-center{
	 -js-display: flex;
  display: flex;
	align-items: center;
}

.fl_l{
	float: left;
}
.fl_r{
	float: right;
}


/*---------------------- コーポレートカラー ----------------------*/
.navy{
	color: #163357;
}
.navy_bg{
	background: #163357;
}
.white{
	color: #FFFFFF;
}
.gray_bg{
	background: #f2f2f2;
}
	
	
/*----------------------  header ----------------------*/	



/*--- .headerTool .btn-box--*/
.headerTool .btn-box{
	justify-content: space-between;
    padding: 0 20px;
	width: 50%;
	margin: 40px auto;
}
.headerTool .btn-box a.btn{
	display: block;
	background: #163357;
	height: 42px;
	width: 42px;
	border-radius: 42px;
  -js-display: flex;
  display: flex;
  justify-content: center;
  align-items:center;
}

.headerTool .btn-box a.btn:hover{
		background: #103b66;
	}	




@media screen and (max-width: 768px){
.headerTool .btn-box {
    padding: 0 5%;
    max-width: 220px;
	width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
}
}
/*--- header_subnav---*/
.header_subnav{
  padding: 0 20px;
}
.header_subnav a{
  display: block;
  background: #dbdcdc;
  color:#163357;
  border-radius: 2px;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 10px;
  height: 48px;
  -js-display: flex;
  display: flex;
  justify-content: center;
  align-items:center;
 transition: .3s;
}
.header_subnav a:hover{
	background: #163357;
 	 color:#fff;
}

.header_subnav a.tenpo{
  background: url(../images/common/outlink-s-navy.png) no-repeat, #dbdcdc;
 background-position: center right 10px;
 transition: .3s;
}

.header_subnav a.tenpo:hover{
  background: url(../images/common/outlink-s-wh.png) no-repeat, #163357;
 background-position: center right 10px;
 	 color:#fff;
}




@media screen and (max-width: 768px){
	.header_subnav{
	  padding: 0 5%;
	}
}
		





/*----------------------  pageTop ----------------------*/	
#pageTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}
#pageTop a {
  display: block;
  z-index: 9999;
  width: 53px;
  height: 53px;
  background:rgba(255,255,255,.94); 
 -js-display: flex;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s;
}
#pageTop a:hover {
  text-decoration: none;
  background:rgba(255,255,255,1); 
}
#pageTop a img{
 transform:rotate(-90deg); 
}



/*----------------------  Footer ----------------------*/	
#footer{
  position: relative;
  z-index: 999;
}
.footerBody{
  width: 100%;
}
.footerNav{
	padding-top: 40px;
	padding-bottom: 40px;
	max-width: 1200px;
	width: 96%;
	margin:0 auto;
}
.footerNav a{
  color:#f2f2f2;
}
.footerNav a:hover{
	text-decoration: underline;
}
.fn-list{
	width: 22%;
}
.fn-list p{
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 15px;
}
.fn-list ul li{
font-size: 12.5px;
    padding-bottom: 12px;
}
.fn-list ul li ::before{
 content: url(../images/common/arrow_wh_s.png);
	padding-right: 5px;
}
.fn-list p.fn-list-sub{
  margin-bottom: 12px;
}




@media screen and (max-width: 768px){
	.footerNav{
	width:100%;
	padding:0;
	}
	.fn-list{
	  width:100%;
	  padding-right: 0;
		position: relative;
	}

	.fn-list ul{
		display: none;
	}
.fn-list p {
    margin-bottom: 0;
	border-bottom:1px solid rgba(255,255,255,.2);
	transition:.3s;
	box-sizing: border-box;
}
.fn-list p.fn-list-sub{
  margin-bottom: 0px;
}

.fn-list p.qa {
	border-bottom:none;
}
.fn-list p a{
	display: block;
	width: 96%;
	margin: 0 auto;
	padding: 15px;
	font-weight: 300;
}
	.fn-list p a:hover{
		text-decoration: none;
	}
	.fn-list p:hover{
		background: #103b66;
	}	
}

/*--------------  footerLink --------------*/	
.footerLink{
  background: #282828;
  font-size: 12px;
  padding: 18px;
}
.footerLink-box{
  	justify-content: space-between;	
}
.footerLink a, p.copyright{
	  color:#b1b1b1;
}
.footerLink ul{
	line-height: 1.6;
}
.footerLink ul li{
	margin-right: 25px;
}
.footerLink p.copyright{
	 text-align: center;
}

@media screen and (max-width: 768px){
.footerLink{
	padding-top:20px;
	padding-bottom: 20px;
}
	.footerLink ul{
		justify-content: space-between
	}
	
.footerLink ul li{
	width:calc(100% - 30px);
	margin-right: 0;
}
.footerLink ul li a{
	display: block;
	width: 100%;
	padding: 5px 0px;
}	
.footerLink p.copyright{
	 width: 100%;
	margin-top: 20px;
}

	
}


/*----------------------  フッター上のロゴ ----------------------*/	
.logo-bottom{
  margin-top: auto;
	padding: 80px 0 40px 0;
}
@media screen and (max-width: 480px){
.logo-bottom{
	padding: 50px 0 50px 0;
}
}



/*----------------------  ぱんくずリスト ----------------------*/	
.pankuzu-box{
	background: #f2f2f2;
	padding: 10px;
	font-size: 12px;
	color: #595757;
	position:relative;
	z-index: 0;
}
.pankuzu-box ul li::after{
	content: url('../images/common/arrow_gray_s.png');
	padding-right: 10px;
	padding-left: 10px;
}
.pankuzu-box ul li.current::after{
	content: none;
}
.pankuzu-box ul li a {
	color: #595757;
}

/*----------------------  検索 ----------------------*/	

.googleform{
	display: none;
	box-sizing: border-box;
	border:1px solid #163357;
	padding: 15px;
	position: relative;
	top:-20px;
	width: 90%;
	margin: 0 auto;

}
.googleform input.form{
	width: 96%;
}

#kensaku.active{
		background: #103b66;
}


@media screen and (max-width: 768px){
.googleform{
	display: none;
	box-sizing: border-box;
	border:1px solid #163357;
	padding: 15px;
	position: relative;
	top:0px;
	width: 90%;
	margin: 0 auto;
	margin-top: 5px;
	margin-bottom: 20px;
}
	
	
	
	
	h1.sp{
		display: block;
	}	
	
}
/*---------------------- 404 ----------------------*/
.errorpage{
  -js-display: flex;
  	display: flex;
  	align-items: center;
  	justify-content: center;
	height: 800px;
}
.errorpage a.btn {
    display: inline-block;
    color: #fff;
    background: #163357;
    width: 100%;
    max-width: 160px;
    padding: 6px 0;
    font-size: 14px;
	margin-top: 25px;
    text-align: center;
	position: relative;
	z-index: 0;
}
.errorpage p.message{
  font-size: 17px;
	font-weight: 600;
	color: #8D8D8D;
}
@media screen and (max-width: 768px){
.errorpage p.message{
  width: 90%;
	margin: 0 auto;
}
}


.inline-block{
	display: inline-block;
}


span.mark_pdf{
    display: inline-block;
    vertical-align: middle;
    padding: 0px 10px;
    margin-left: 6px;
	margin-right: 6px;
    line-height: 15px;
    color: #FFF;
    background-color: #ee3d23;
    font: 0.6rem 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', arial, helvetica, clean, sans-serif;
}
