@charset "utf-8";
/*
Theme Name: SENQLEAD
Theme URI: http://www.senqlead.co.jp
Description: SENQLEAD
Author: SENQLEAD
Version: 3.0
*/

@import url("common.css");
/*------------------------------------------------------------
	共通項目
------------------------------------------------------------*/
ul {
	margin: 0;
	padding: 0;
	margin-left: 20px;
}


/*------------------------------------------------------------
	サブメニュー（2019.08.19追加）
------------------------------------------------------------*/
.SubMenu {
    
}
.SubMenu ul {
    margin: 0 10px 10px 0;
    display: flex;
    justify-content: space-between;
    list-style: none;
}
.SubMenu ul li {
    /*width: calc(100% / 7);*/
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: center;
    border-left: 1px solid #fff;
}
.SubMenu ul li a {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    padding: 10px 5px;
    width: 100%;
    height: 100%;
    text-decoration: none;
    background: #072566;
    color: #fff;
    align-items: center;
    text-align: center;
    justify-content: center;
    line-height: 1.2;
}


/*------------------------------------------------------------
	ブロックA
------------------------------------------------------------*/
.BlockA:after {
	content: "";
	display: block;
	clear: both;
}
.BlockA .left {
	float: left;
	margin-right: 10px;
	width: 700px;
}
.BlockA .right {
	float: left;
	width: 360px;
	background-color: #FFFFFF;
	padding: 10px;
	height: 550px;/* 高さ数値修正 */
	overflow-y: scroll;
}
.BlockA .right h3 {
	background: #1e5799; /* Old browsers */
	background: -moz-linear-gradient(top, #1e5799 0%, #207cca 48%, #3799e5 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #1e5799), color-stop(48%, #207cca), color-stop(100%, #3799e5)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #1e5799 0%, #207cca 48%, #3799e5 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #1e5799 0%, #207cca 48%, #3799e5 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #1e5799 0%, #207cca 48%, #3799e5 100%); /* IE10+ */
	background: linear-gradient(to bottom, #1e5799 0%, #207cca 48%, #3799e5 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#3799e5', GradientType=0 ); /* IE6-9 */
	padding: 5px;
	text-indent: 10px;
	color: #FFFFFF;
	margin-bottom: 10px;
	border-radius: 5px;/* CSS3草案 */
	-webkit-border-radius: 5px;/* Safari,Google Chrome用 */
	-moz-border-radius: 5px;/* Firefox用 */
}

#slideshow {
   position: relative;
   width:  700px; /* 画像の横幅に合わせて記述 */
   height: 350px; /* 画像の高さに合わせて記述 */
}
#slideshow img {
   position: absolute;
   top: 0;
   left:0;
   z-index: 8;
   opacity: 0.0;
}
#slideshow img.active {
   z-index: 10;
   opacity: 1.0;
}
#slideshow img.last-active {
   z-index: 9;
}

/* 追加2019.08.19 */
.BlockA .left .jfaWeb-b a {
    display: block;
}
.BlockA .left .jfaWeb-b a img {
    width: 100%;
    margin: 10px 0 5px;
}

.BlockA .left .BlockA-submenu {
    clear: both;
    display: block;
    padding: 10px 0 0;
}
.BlockA .left .BlockA-submenu ul {
    display:-webkit-box;
  	display:-ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
	-ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
	-ms-flex-align: center;
    align-items: center;
    list-style: none;
    margin: 0;
}
.BlockA .left .BlockA-submenu ul li {
    width: 33.3333%;
    margin: 0 10px 0 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.BlockA .left .BlockA-submenu ul li:last-child {
    margin: 0;
}
.BlockA .left .BlockA-submenu ul li a img {
    width: 100%;
}


/*------------------------------------------------------------
	ブロックB
------------------------------------------------------------*/
.BlockB:after {
	content: "";
	display: block;
	clear: both;
}
/*.BlockB .left {
	float: left;
	padding: 10px;
	width: 300px;
}*/
.BlockB .center {
	float: left;
	padding: 10px;
	width: 760px;
}




table{
	border-collapse:collapse;
	}


table tr:nth-child(2n+1) {  /* 奇数行 */
   background-color: #ffffff;
}
table tr:nth-child(2n) {    /* 偶数行 */
   background-color: #F0F0F0;
}


table th{
    width: 150px;
	padding:0 5px;
	font-size:14px;
	padding-top:10px;
	}
	
table th a{
	text-decoration:none;
	border:solid 1px #999999;
	padding:3px;
	display:block;
	}
	
table td ul{
	padding-left:5px;
	}
	
table td ul li{
	margin:10px 0;
	}

table td{
	width:620px;
}

.BlockB .center table th a{
	text-decoration:none;
	border:solid 1px #072566;
	padding:3px;
	display:block;
    background: #072566;
    color: #fff;
    position: relative;
	}
.BlockB .center table th a::after {
    content: '▶︎';
    width: 10px;
    height: 15px;
    font-size: 10px;
    position: absolute;
    left: 5px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.BlockB .center table th a:hover {
	border:solid 1px #072566;
    background: #315CBB;
    color: #fff;
	}


.BlockB .right {
	float: left;
	padding: 10px;
	width: 300px;
}

.BlockB .right p img {
    max-width: 240px;
}

.BlockB h3 {
	background: #1e5799; /* Old browsers */
	background: -moz-linear-gradient(top, #1e5799 0%, #207cca 48%, #3799e5 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #1e5799), color-stop(48%, #207cca), color-stop(100%, #3799e5)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #1e5799 0%, #207cca 48%, #3799e5 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #1e5799 0%, #207cca 48%, #3799e5 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #1e5799 0%, #207cca 48%, #3799e5 100%); /* IE10+ */
	background: linear-gradient(to bottom, #1e5799 0%, #207cca 48%, #3799e5 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#3799e5', GradientType=0 ); /* IE6-9 */
	padding: 5px;
	text-indent: 10px;
	color: #FFFFFF;
	border-radius: 5px;/* CSS3草案 */
	-webkit-border-radius: 5px;/* Safari,Google Chrome用 */
	-moz-border-radius: 5px;/* Firefox用 */
}

.BlockB .info{
	background-color:#E0E0E0;
	padding:10px;
	line-height:120%;
}


/*------------------------------------------------------------
	ブロックC
------------------------------------------------------------*/
.BlockC {
    margin: 10px 0 20px;
    text-align: center;
}

.BlockC div {
	/*display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;*/
}
.BlockC p {
    display: inline-block;
	margin-right: 5px;
}

.BlockC p img {
    vertical-align: bottom;
}

.BlockC .banner-block-a p img,
.BlockC .banner-block-b p img {
    width: auto;
    height: 50px;
}
.BlockC .banner-block-c p img {
    width: auto;
    height: 60px;
}
