/* ===========================================
 * header
=========================================== */

header{
	background: rgba(255,255,255,.9);
	height: 120px;
	width: 100%;
	position: fixed;
	z-index: 100;
	top:0;
}
#header_InnerTop{
	display: flex;
	justify-content: space-between;
	position: relative;
	border-bottom: 1px solid #989899;
	padding: 0 10px;
	align-items: center;
	box-sizing: border-box;
	height: 60px;
}
#header_InnerLogo{
	width: 315px;
	height: 25px;
}
#header_InnerLogo img{
	width: 315px;
	height: 25px;
	object-fit: cover;
	display: block;
}
/*drawer navi*/
#header_drawer_nav{
	
}
#drawer_nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:-681px;
    left: 0;
	width:100%;
    height: 680px;/*ナビの高さ*/
	background:#fff;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#drawer_nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#drawer_nav-list{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 20px 0 20px;
}
#drawer_nav-list li{
	padding: 0;
}
#drawer_nav-list li .drawer_nav-first_child{
	margin-left: 5em;
	margin-top: -1.5em;
}
#drawer_nav-list li > .drawer_nav-first_child li{
	font-size: 12px;
	font-weight: 400;
}
#drawer_nav-list li > .drawer_nav-first_child li.drawer_nav-first_child_d{
	padding-left: 10px;
}
.drawer_nav-first li{
	font-weight: 700;
	padding: 5px 0;
}
.drawer_nav-first_child_n::before{
	content: "－";
}
.drawer_nav-first_child_d::before{
	content: "・";
}
.drawer_nav-second li{
	font-weight: 700;
	padding: 5px 0;
}
.drawer_nav-second li > .drawer_nav-second_child li{
	font-size: 12px;
	font-weight: 400;
	text-indent: 1em;
}
.drawer_nav-second_child_n::before{
	content: "－";
}
.drawer_nav-third li{
	font-weight: 700;
	padding: 4px 0;
}
.drawer_nav-third li .drawer_nav-third_child{
	margin-left: 5em;
	margin-top: -2em;
}
.drawer_nav-third li > .drawer_nav-third_child li{
	font-size: 12px;
	font-weight: 400;
}
.drawer_nav-third_child_n::before{
	content: "－";
}
#header_drawer_navInner{
	width: 1100px;
	margin: 50px auto;
}
#drawer_nav_logo{
	width: 150px;
	margin: 0 auto;
}
#drawer_nav_logo img{
	width: 150px;
	object-fit: cover;
}

#header_drawer_navInner_block {
	width:1100px;
	margin-top: 25px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: space-around;
}
.drawer_navInner_box{
	width: 460px;
}
.drawer_navInner_btn1 {
	width: 460px;
    height: 80px;
    border-radius: 4px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, .25);
    background: #004EA2;
    background: linear-gradient(-47deg, rgba(0, 78, 162, 1) 0%, rgba(26, 150, 213, 1) 100%);
    text-align: center;
    margin: 0 auto 0;
}
.drawer_navInner_btn1 a{
	display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 80px;
}
.drawer_navInner_btn1 a i {
    padding-right: 10px;
}
.drawer_navInner_btn2 {
	width: 460px;
    height: 80px;
    border-radius: 4px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, .25);
    background: #004EA2;
    background: linear-gradient(-47deg, rgba(37, 140, 197, 1) 0%, rgba(97, 186, 235, 1) 100%);
    text-align: center;
    margin: 0 auto 0;
}
.drawer_navInner_btn2 a{
	display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 80px;
}
.drawer_navInner_btn1,
.drawer_navInner_btn2{
	transition: 1s;
}
.drawer_navInner_btn1:hover,
.drawer_navInner_btn2:hover {
	opacity: .7;
}
#drawer_navInner_sns{
	text-align: center;
	margin: 10px 0 0;
}

#drawer_navInner_sns img{
	width: 30px;
	height: 30px;
	object-fit: cover;
}
#drawer_navInner_sns img:hover{
	opacity: .7;
}
/*========= ボタンのためのCSS ===============*/
.drawer_nav_openbtn{
	position:absolute;
    z-index: 9999;/*ボタンを最前面に*/
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	cursor: pointer;
    width: 35px;
    height:27px;
	display: block;
}
  
/*×に変化*/  
.drawer_nav_openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0;
    height: 2px;
	background: #333;
    width: 35px;
  }

.drawer_nav_openbtn span:nth-of-type(1) {
  top:0; 
}

.drawer_nav_openbtn span:nth-of-type(2) {
  top:12px;
}

.drawer_nav_openbtn span:nth-of-type(3) {
  top:25px;
}

.drawer_nav_openbtn.active span:nth-of-type(1) {
	top: 12px;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	transform: rotate(135deg);
}

.drawer_nav_openbtn.active span:nth-of-type(2){
	top: 12px;
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

.drawer_nav_openbtn.active span:nth-of-type(3) {
	width: 0;
}

#header_InnerBottom{
	display: flex;
	justify-content: space-between;
	padding: 0 10px;
	height: 60px;
	align-items: center;
}
.menu {
    position: relative;
	display: flex;
}
.menu > li {
	margin-right: 40px;
}
.menu > li a {
    display: block;
	text-decoration: none;
	color: #000;
	font-weight: 700;
}

ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}
.menu__second-level li{
    border-top: 1px solid #fff;
	padding: 20px 10px;
	font-size: 14px;
}
.menu__second-level li a{
	color: #fff;
	display: block;
}
.menu__second-level li:first-of-type{
	border: 0;
}
.menu__second-level li a:hover {
	opacity: .7;
}
.init-bottom:after {
    content: '+';
    display: inline-block;
	font-weight: 400;
	padding-left: .5em;
}
.menu__third-level li{
	padding: 14px 0 0 1em;;
	border: 0;
	position: relative;
	font-size: 14px;
}
.menu__third-level li a{
	color: #fff;
	display: block;
}
.menu__third-level li::before{
	content: "ー";
	position: absolute;
	left: 0;
	color: #fff;
}
.menu {
    *zoom: 1;
}
.menu > li.menu__single {
    position: relative;
}

li.menu__single ul.menu__second-level {
    position: absolute;
    top: 40px;
    width: 220px;
	padding: 0 15px;
	box-sizing: border-box;
    background: #004ea2;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
	box-shadow: 2px 2px 3px rgba(0,0,0,.25);
}

li.menu__single:hover ul.menu__second-level {
    top: 40px;
    visibility: visible;
    opacity: 1;
}
#header_info{
	display: flex;
}
.header_contactBtn{
	width: 140px;
	height: 35px;
	background: #fff;
	border: 1px solid #004ea2;
	box-sizing: border-box;
	text-align: center;
	border-radius: 999px;
}
.header_contactBtn a{
	line-height: 33px;
	font-weight: 700;
	color: #004ea2;
	display: block;
}
.header_recruitBtn{
	width: 120px;
	height: 35px;
	background: #004EA2;
	background: linear-gradient(-47deg,rgba(0, 78, 162, 1) 0%, rgba(26, 150, 213, 1) 100%);
	box-sizing: border-box;
	text-align: center;
	border-radius: 999px;
	margin: 0 10px;
}
.header_recruitBtn a{
	line-height: 33px;
	font-weight: 700;
	color: #fff;
	display: block;
}
.header_snsBtn{
	width: 35px;
	height: 35px;
}
.header_snsBtn img{
	width: 35px;
	height: 35px;
	object-fit: cover;
}
@media screen and (max-width:640px){
	
	header{
		background: rgba(255,255,255,.9);
		height: 120px;
		width: 100%;
		position: fixed;
		z-index: 100;
		top:0;
	}
	#header_InnerTop{
		display: flex;
		justify-content: space-between;
		position: relative;
		border-bottom: 1px solid #989899;
		padding: 0 10px;
		align-items: center;
		box-sizing: border-box;
		height: 60px;
	}
	#header_InnerLogo{
		width: 315px;
		height: 25px;
	}
	#header_InnerLogo img{
		width: 315px;
		height: 25px;
		object-fit: cover;
		display: block;
	}

	/*drawer navi*/
	#header_drawer_nav{

	}
	#drawer_nav{
		/*position:fixed;にし、z-indexの数値を大きくして前面へ*/
		position:fixed;
		z-index: 999;
		/*ナビのスタート位置と形状*/
		top:-100vh;
		left: 0;
		width:640px;
		min-height: 100vh;/*ナビの高さ*/
		background:#fff;
		/*動き*/
		transition: all 0.6s;
	}

	/*アクティブクラスがついたら位置を0に*/
	#drawer_nav.panelactive{
		top: 0;
	}

	/*ナビゲーションの縦スクロール*/
	#drawer_nav-list{
		display: block;
		flex-wrap: wrap;
		justify-content: space-between;
		margin: 60px 0 40px;
	}
	#drawer_nav-list ul{
		padding: 0 40px;
		border-left: 0;
	}
	#drawer_nav-list ul:last-of-type{
		border-right: 0;
	}
	#drawer_nav-list ul li{
		padding-bottom: 10px;
		padding-top: 10px;
		text-align: left;
		position: relative;
		border-bottom:1px solid #ccc;
	}
	#drawer_nav-list ul li a{
		font-size: 20px;
		color: #000;
		font-weight: 700;
		letter-spacing: .1em;
		display: block;
	}
	#drawer_nav ul li a:hover{
		opacity: 0.7;
	}
	#header_drawer_navInner{
		width: 640px;
		height: 100vh;
		margin: 0;
		position: fixed;
		z-index: 999;
		overflow: auto;
        -webkit-overflow-scrolling: touch;
	}
	#drawer_nav ul > li.sub-menu{
		display:none;
		margin:0;
		padding:0em;
		width:100%;
		box-sizing: border-box;
	}
	#drawer_nav ul > li.sub-menu ul{
		margin:0;
		padding:0;
		list-style:none;
		display:flex;
		flex-direction:row;
		flex-wrap:wrap;
		justify-content:flex-start;
		background: #fff;
	}
	#drawer_nav ul > li.sub-menu ul li{
		width: 100%;
		border-bottom:1px solid #ccc;
		box-sizing: border-box;
		padding-left: 1.5em;
	}
	#drawer_nav ul > li.sub-menu ul li::before{
		content: "－";
		position: absolute;
		top: 10px;
		left: 5px;
	}
	#drawer_nav ul > li.sub-menu ul li.drawer_nav-first_child_d{
		padding-left: 1em;
	}
	#drawer_nav ul > li.sub-menu ul li.drawer_nav-first_child_d::before{
		content: "・";
	}
	#drawer_nav ul > li.sub-menu ul li.drawer_nav-first_child_d a{
		font-weight: 400;
	}
	n#drawer_nav ul > li.sub-menu ul li:last-of-type{
		border-bottom: 0;
	}
	#drawer_nav ul > li.sub-menu:after{
		content:none;
	}
	#drawer_nav ul > li.hasChildSp:after{
		content:"";
		display:block;
		position:absolute;
		top:calc(50%);
		right:0.7em;
		transform:translateY(-50%);
		width:1em;
		height:1px;
		background-color:#333;
	}
	#drawer_nav ul > li.hasChildSp:before{
		content:"";
		display:block;
		position:absolute;
		top:calc(50%);
		right:1.2em;
		transform:translateY(-50%);
		width:1px;
		height:1em;
		background-color:#333;
	}
	#drawer_nav ul > li.hasChildSp.open:before{
		content:none;
	}
	#drawer_nav ul li .hasChildSp.open + .menu-sub{
		display:block;
	}
	#drawer_nav_logo{
		width: 208px;
		height: 56px;
		margin: 32px 0 0 40px;
	}
	#drawer_nav_logo img{
		width: 208px;
		height: 56px;
		object-fit: cover;
	}
	#header_drawer_navInner_block {
		width:580px;
		margin-top: 25px;
		margin-left: auto;
		margin-right: auto;
		display: block;
		justify-content: space-around;
	}
	.drawer_navInner_box{
		width: 460px;
		margin: 0 auto 0;
	}
	.drawer_navInner_btn1 {
		width: 460px;
		height: 80px;
		border-radius: 4px;
		box-shadow: 2px 2px 3px rgba(0, 0, 0, .25);
		background: #004EA2;
		background: linear-gradient(-47deg, rgba(0, 78, 162, 1) 0%, rgba(26, 150, 213, 1) 100%);
		text-align: center;
		margin: 0 auto 0;
	}
	.drawer_navInner_btn1 a{
		display: block;
		color: #fff;
		font-size: 24px;
		font-weight: 700;
		line-height: 80px;
	}
	.drawer_navInner_btn1 a i {
		padding-right: 10px;
	}
	.drawer_navInner_btn2 {
		width: 460px;
		height: 80px;
		border-radius: 4px;
		box-shadow: 2px 2px 3px rgba(0, 0, 0, .25);
		background: #004EA2;
		background: linear-gradient(-47deg, rgba(37, 140, 197, 1) 0%, rgba(97, 186, 235, 1) 100%);
		text-align: center;
		margin: 20px auto 0;
	}
	.drawer_navInner_btn2 a{
		display: block;
		color: #fff;
		font-size: 24px;
		font-weight: 700;
		line-height: 80px;
	}
	.drawer_navInner_btn1,
	.drawer_navInner_btn2{
		transition: 1s;
	}
	.drawer_navInner_btn1:hover,
	.drawer_navInner_btn2:hover {
		opacity: .7;
	}
	#drawer_navInner_sns{
		text-align: center;
		margin: 30px 0 17px;
	}

	#drawer_navInner_sns img{
		width: 49px;
		height: 49px;
		object-fit: cover;
	}
	#drawer_navInner_sns img:hover{
		opacity: .7;
	}
	/*========= ボタンのためのCSS ===============*/
	.drawer_nav_openbtn{
		position:absolute;
		z-index: 9999;/*ボタンを最前面に*/
		top: 50%;
		right: 10px;
		transform: translateY(-50%);
		cursor: pointer;
		width: 40px;
		height:30px;
		display: block;
	}

	/*×に変化*/  
	.drawer_nav_openbtn span{
		display: inline-block;
		transition: all .4s;
		position: absolute;
		left: 0;
		height: 2px;
		background: #333;
		width: 40px;
	  }

	.drawer_nav_openbtn span:nth-of-type(1) {
	  top:0; 
	}

	.drawer_nav_openbtn span:nth-of-type(2) {
	  top:14px;
	}

	.drawer_nav_openbtn span:nth-of-type(3) {
	  top:28px;
	}

	.drawer_nav_openbtn.active span:nth-of-type(1) {
		top: 17px;
		-webkit-transform: rotate(135deg);
		-moz-transform: rotate(135deg);
		transform: rotate(135deg);
	}

	.drawer_nav_openbtn.active span:nth-of-type(2){
		top: 17px;
		-webkit-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}

	.drawer_nav_openbtn.active span:nth-of-type(3) {
		width: 0;
	}
	
	#header_InnerBottom{
		display: flex;
		justify-content: space-between;
		padding: 0 10px;
		height: 60px;
		align-items: center;
	}
	.menu {
		position: relative;
		display: none;
	}
	.menu > li {
		margin-right: 40px;
	}
	.menu > li a {
		display: block;
		text-decoration: none;
		color: #000;
		font-weight: 700;
	}

	ul.menu__second-level {
		visibility: hidden;
		opacity: 0;
		z-index: 1;
	}
	.menu__second-level li{
		border-top: 1px solid #fff;
		padding: 20px 10px;
		font-size: 14px;
	}
	.menu__second-level li a{
		color: #fff;
		display: block;
	}
	.menu__second-level li:first-of-type{
		border: 0;
	}
	.menu__second-level li a:hover {
		opacity: .7;
	}
	.init-bottom:after {
		content: '+';
		display: inline-block;
		font-weight: 400;
		padding-left: .5em;
	}
	.menu__third-level li{
		padding: 14px 0 0 1em;;
		border: 0;
		position: relative;
		font-size: 14px;
	}
	.menu__third-level li a{
		color: #fff;
		display: block;
	}
	.menu__third-level li::before{
		content: "ー";
		position: absolute;
		left: 0;
		color: #fff;
	}
	.menu {
		*zoom: 1;
	}
	.menu > li.menu__single {
		position: relative;
	}

	li.menu__single ul.menu__second-level {
		position: absolute;
		top: 40px;
		width: 220px;
		padding: 0 15px;
		box-sizing: border-box;
		background: #004ea2;
		-webkit-transition: all .2s ease;
		transition: all .2s ease;
		box-shadow: 2px 2px 3px rgba(0,0,0,.25);
	}

	li.menu__single:hover ul.menu__second-level {
		top: 40px;
		visibility: visible;
		opacity: 1;
	}
	#header_info{
		display: flex;
	}
	.header_contactBtn{
		width: 200px;
		height: 35px;
		background: #fff;
		border: 1px solid #004ea2;
		box-sizing: border-box;
		text-align: center;
		border-radius: 999px;
	}
	.header_contactBtn a{
		line-height: 33px;
		font-weight: 700;
		color: #004ea2;
		display: block;
	}
	.header_recruitBtn{
		width: 180px;
		height: 35px;
		background: #004EA2;
		background: linear-gradient(-47deg,rgba(0, 78, 162, 1) 0%, rgba(26, 150, 213, 1) 100%);
		box-sizing: border-box;
		text-align: center;
		border-radius: 999px;
		margin: 0 10px;
	}
	.header_recruitBtn a{
		line-height: 33px;
		font-weight: 700;
		color: #fff;
		display: block;
	}
	.header_snsBtn{
		width: 35px;
		height: 35px;
	}
	.header_snsBtn img{
		width: 35px;
		height: 35px;
		object-fit: cover;
	}
	
}


/* ===========================================
 * footer
=========================================== */
footer{
	background: url("../../img/common/bg2.jpg") center top no-repeat;
	background-size: cover;
	padding: 60px 0 0;
	border-top: 10px solid #004ea2;
}
#footer_InnerLogo{
	width: 420px;
	height: 31px;
	margin: 0 auto;
}
#footer_InnerLogo img{
	width: 420px;
	height: 31px;
	object-fit: cover;
}
#footer_Inner{
	margin: 50px 0;
	display: flex;
	justify-content: space-between;
}
#footer_calendar{
	width: 330px;
	margin-right: 47px;
}
#footer_calendar span{
	font-size: 14px;
}
.ts_footer_maru{
	font-size: 24px;
	position: relative;
	top: 4px;
}
#footer_nav{
	width: 723px;
	display: flex;
	font-size: 14px;
	justify-content: space-between;
}
.footer_nav-first li{
	font-weight: 700;
	padding: 5px 0;
}
.footer_nav-first li .footer_nav-first_child{
	margin-left: 5em;
	margin-top: -2em;
}
.footer_nav-first li > .footer_nav-first_child li{
	font-size: 12px;
	font-weight: 400;
}
.footer_nav-first_child_n::before{
	content: "－";
}
.footer_nav-first_child_d::before{
	content: "・";
}
.footer_nav-second li{
	font-weight: 700;
	padding: 5px 0;
}
.footer_nav-second li > .footer_nav-second_child li{
	font-size: 12px;
	font-weight: 400;
	text-indent: 1em;
}
.footer_nav-second_child_n::before{
	content: "－";
}
.footer_nav-third li{
	font-weight: 700;
	padding: 4px 0;
}
.footer_nav-third li .footer_nav-third_child{
	margin-left: 5em;
	margin-top: -2em;
}
.footer_nav-third li > .footer_nav-third_child li{
	font-size: 12px;
	font-weight: 400;
}
.footer_nav-third_child_n::before{
	content: "－";
}
.footer_contact{
	width: 120px;
	height: 35px;
	background: #fff;
	border: 1px solid #004ea2;
	box-sizing: border-box;
	text-align: center;
	border-radius: 999px;
	margin-top: 10px;
	margin-left: -10px;
}
.footer_contact a{
	font-weight: 700;
	color: #004ea2;
	display: block;
}
#footer_copy{
	background: #004ea2;
	padding: 25px 0;
}
#footer_copyInner{
	display: flex;
	justify-content: space-between;
}
#footer_copy p{
	font-size: 12px;
	color: #fff;
}
#footer_copy address{
	font-size: 12px;
	color: #fff;
	font-style: normal;
}
@media screen and (max-width:640px){
	
	
	footer{
		background: url("../../img/common/bg2.jpg") center top no-repeat;
		background-size: contain;
		padding: 60px 0 0;
		border-top: 10px solid #004ea2;
	}
	#footer_InnerLogo{
		width: 420px;
		height: 31px;
		margin: 0 auto;
	}
	#footer_InnerLogo img{
		width: 420px;
		height: 31px;
		object-fit: cover;
	}
	#footer_Inner{
		margin: 50px 0;
		display: block;
		justify-content: space-between;
	}
	#footer_calendar{
		width: 580px;
		margin-right: 0;
	}
	#footer_calendar span{
		font-size: 20px;
	}
	.ts_footer_maru{
		font-size: 24px;
		position: relative;
		top: 4px;
	}
	#footer_nav{
		width: 723px;
		display: none;
		font-size: 14px;
		justify-content: space-between;
	}
	.footer_nav-first li{
		font-weight: 700;
		padding: 5px 0;
	}
	.footer_nav-first li .footer_nav-first_child{
		margin-left: 5em;
		margin-top: -2em;
	}
	.footer_nav-first li > .footer_nav-first_child li{
		font-size: 12px;
		font-weight: 400;
	}
	.footer_nav-first_child_n::before{
		content: "－";
	}
	.footer_nav-first_child_d::before{
		content: "・";
	}
	.footer_nav-second li{
		font-weight: 700;
		padding: 5px 0;
	}
	.footer_nav-second li > .footer_nav-second_child li{
		font-size: 12px;
		font-weight: 400;
		text-indent: 1em;
	}
	.footer_nav-second_child_n::before{
		content: "－";
	}
	.footer_nav-third li{
		font-weight: 700;
		padding: 4px 0;
	}
	.footer_nav-third li .footer_nav-third_child{
		margin-left: 5em;
		margin-top: -2em;
	}
	.footer_nav-third li > .footer_nav-third_child li{
		font-size: 12px;
		font-weight: 400;
	}
	.footer_nav-third_child_n::before{
		content: "－";
	}
	.footer_contact{
		width: 120px;
		height: 35px;
		background: #fff;
		border: 1px solid #004ea2;
		box-sizing: border-box;
		text-align: center;
		border-radius: 999px;
		margin-top: 10px;
		margin-left: -10px;
	}
	.footer_contact a{
		font-weight: 700;
		color: #004ea2;
		display: block;
	}
	#footer_copy{
		background: #004ea2;
		padding: 25px 0;
	}
	#footer_copyInner{
		display: block;
		justify-content: space-between;
	}
	#footer_copy p{
		font-size: 18px;
		color: #fff;
	}
	#footer_copy address{
		font-size: 18px;
		color: #fff;
		font-style: normal;
	}

	
	
}
/* ===========================================
 * content
=========================================== */
.bg_gray{
	background: url("../../img/common/bg.jpg") center top repeat-Y;
	background-size: 100%;
}
.content{
	width: 1100px;
	margin: 0 auto;
}

@media screen and (max-width:640px){
	.bg_gray{
		background: url("../../img/common/bg.jpg") center top repeat-Y;
		background-size: 100%;
	}
	.content{
		width: 580px;
		margin: 0 auto;
	}

}
/* ===========================================
 * pankuzu
=========================================== */
#breadcrumb{
	background: #004ea2;
	padding: 10px 0;
	position: relative;
	z-index: 10;
}
#sub_breadcrumb {
	width: 1100px;
	margin-left: auto;
	margin-right: auto;
}

#sub_breadcrumb li{
	display: inline-block;
	font-size: 12px;
	color: #fff;
}

#sub_breadcrumb li a{
	display: block;
	color: #fff;
}
#sub_breadcrumb li a:hover{
	opacity: 0.7;
}

#sub_breadcrumb li a:after{
	content: '　＞　';
}


@media screen and (max-width:640px){
	
	#breadcrumb{
		background: #004ea2;
		padding: 10px 0;
	}
	#sub_breadcrumb {
		width: 580px;
		margin-left: auto;
		margin-right: auto;
	}

	#sub_breadcrumb li{
		display: inline-block;
		font-size: 16px;
		color: #fff;
	}

	#sub_breadcrumb li a{
		display: block;
		color: #fff;
	}
	#sub_breadcrumb li a:hover{
		opacity: 0.7;
	}

	#sub_breadcrumb li a:after{
		content: '　＞　';
	}
	
	
}
/* ===========================================
 * sub
=========================================== */
#sub_header{
	line-height: 0;
}
#sub_slider {
	width: 100%;
	margin-top: 120px;
	position: relative;
}
#sub_slider img{
	width: 100%;
	object-fit: cover;
}
#sub_title{
	position: absolute;
	width: 580px;
	top:50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	text-align: center;
	color: #fff;
	font-size: 28px;
	line-height: normal;
}
#sub_title span{
	font-size: 10px;
	font-weight: 700;
	display: block;
}
@media screen and (max-width:640px){
	#sub_header{
		line-height: 0;
	}
	#sub_slider {
		width: 100%;
		margin-top: 120px;
		position: relative;
	}
	#sub_slider img{
		width: 100%;
		object-fit: cover;
	}
	#sub_title{
		position: absolute;
		top:50%;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
		text-align: center;
		color: #fff;
		font-size: 34px;
		line-height: normal;
	}
	#sub_title span{
		font-size: 16px;
		font-weight: 700;
		display: block;
	}
}