/* CSS Document */

#tab_btn {
	margin: 40px 0;
	border-bottom: 2px solid #fff;
}

#tab_btn ul {
	display: flex;
	margin: 0 auto;
	justify-content: flex-start;
	
}

#tab_btn ul li {
	text-align: center;
	width: 50%;
	line-height:1.5;
	position:  relative;
}

#tab_btn ul li a {
	background: #fff;
	border: 1px solid #4d4d4d;
	border-bottom: none;
	box-sizing: border-box;
	color: #4d4d4d;
	display: block;
	padding: 10px 0;
	text-decoration: none;
	width: 100%;
	height: 100%;
	font-size: 16px;
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#tab_btn ul li a:hover {
	display: inline-flex;
	flex-direction: column;
}

#tab_btn ul li.btn_active a {
	color: #fff;
	background: #4d4d4d;
	display: inline-flex;
	flex-direction: column;
	position: relative;
}

#tab_btn ul li.btn_active > a:after {
	content: "\f107";
	font-family: 'FontAwesome';
	position:absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right:  10px;
	font-size: 20px;
}

#tab_btn ul li.btn_active > a.active:after {
	content: "\f106";
	font-family: 'FontAwesome';
	position:absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right:  10px;
	font-size: 20px;
}

#tab_btn ul li.btn_active a:hover {
	opacity: 0.8;
}

	#tab_btn ul .app_menu{
		flex-wrap: wrap;
		flex-direction: column;
		position: absolute;
		width: 100%;
		left: 0;
		display: none;
		z-index: 999;
	}

	#tab_btn ul .app_menu li{
		width: 100% !important;
	}

	#tab_btn ul .app_menu li a{
		background: #ccc;
		color: #333;
	}

	#tab_btn ul .app_menu li:last-child a{
		border-bottom: 1px solid #333;
	}


.accordion {
	width: 100%;
	margin: 30px auto;
}
	.accordion li{
		border-bottom: 1px solid #fff;
		margin-bottom: 20px;
	}

.accordion_1{
	margin: 20px;
}

.button {
	padding: 10px;
	width: 100%;
	background-color: #fff;
	border-bottom: 2px solid #b3b3b3;
	color: #333;
	cursor: pointer;
	font-size: 20px;
	font-weight: bold;
	text-align: left;
}

.button span{
	display: block;
	font-size: 13px;
}

.button.button_1 {
	background-color: #d9d9d9;
	color: #333;
	text-align: left;
}
.button:after {
	/* content: "\f068"; */
	content: "\f106";
	font-family: FontAwesome;
	color: #23abe8;
	float: right;
}
.button.active:after {
	content: "\f107";
}

h4{
	color: #23abe8;
	font-size: 22px;
	text-align: left;
}

h4:before{
	content: "\f138";
	font-family: 'FontAwesome';
	font-size: 21px;
	padding-right: 5px;
}

h4 a{
	text-decoration: none;
	color: #23abe8 !important;
}

h4 a:hover{
	text-decoration: underline;
}

.accordion_innerBox{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 20px;
	border-bottom: 1px solid #cccccc;
	padding-bottom: 20px;
}

.column_02{
	width: 50%;
}
	.column_02 h4{
		margin-bottom: 10px;
	}
	
	.column_02 .innerBox{
		width: 100%;
	}

.innerBox{
	display: flex;
	justify-content: flex-start;
	width: 49%;
}

.item_details{
	margin-left: 15px;
	text-align: left;
	max-width: 330px;
	width: 100%;
}

.item_details .ttl{
	font-size: 16px;
	color: #333;
	font-weight: bold;
	margin-bottom: 5px;
}

.item_details p{
	color: #666666;
}

.btnBox{
	display: flex;
	justify-content: flex-end;
	margin-top: 20px;
}

	.btnBox li{
		background: #000;
		width: 48%;
	}
	
	.btnBox li a{
		position: relative;
		color: #fff;
		display: block;
		padding: 10px;
		text-decoration: none;
	}
	
	.btnBox li a:after{
		content: "\f105";
		font-family: 'FontAwesome';
		position:absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		right: 10px;
	}
	
	.btnBox li a:hover{
		opacity: 0.8;
	}
	
	.btnBox li:nth-child(2){
		background: #23abe8;
		width: 48%;
	}
	.btnBox li a{
		color: #fff;
	}

	#sub_nav{
		background: #808080;
		position: fixed;
		right: 0;
		top: 341px;
		padding: 15px 10px;
		cursor: pointer;
	}
	
	#sub_nav::before{
		content: "\f100";
		font-family: 'FontAwesome';
		padding: 0;
		color: #fff;
		font-size: 20px;
	}
	
	.open #sub_nav::before{
		content: "\f101";
		font-family: 'FontAwesome';
	}
	
	#slide_menu{
		position: fixed;
		top: 401px;
		right: 0px;
		max-width: 270px;
		width: 100%;
		background: #e6e6e6;
		z-index: 999;
		padding: 15px;
		text-align: left;
	}
		#slide_menu ul{
			background: #fff;
			padding: 10px;
		}
		
		#slide_menu ul li{
			font-weight: bold;
			margin-bottom: 5px;
		}
		
		#slide_menu ul li a{
			text-decoration: none;
		}
		
		#slide_menu ul li a:hover{
			text-decoration: underline;
		}
		
		#slide_menu ul li:before{
			content: "\f107";
			font-family: 'FontAwesome';
			color: #23abe8;
			font-size: 20px;
			padding-right: 10px;
		}
		
		#slide_menu ul li.active:before{
			content: "\f106";
		}
		
		#slide_menu ul li ul{
			background: #fff;
			text-align: left;
			padding: 0 0 0 20px;
			/*margin-top: 10px;*/
		}
		
		#slide_menu ul li ul li{
			font-weight: normal;
			margin-bottom: 0;
		}
		
		#slide_menu ul > li ul li:before{
			content: "\f105";
			font-family: 'FontAwesome';
			color: #23abe8;
			font-size: 20px;
			padding-right: 10px;
		}
		
		#slide_menu ul > li ul li.active:before{
			content: "\f105";
		}
		
		#slide_menu ul li ul li:last-child{
			margin-bottom: 0;
		}
		
		.submenu_ttl ul{
			display: none;
		}			
			
	.link_type{
		margin-top:60px;
		background: #ebebeb;
		display: flex;
		justify-content: center;
		padding: 30px;
	}
		.link_type li:after{
			content: "|";
			color: #7d7d7d;
			
		}
		
		.link_type li:last-child:after{
			content: "";
			display: none;
			
		}
		
		.link_type li a{
			padding: 0 10px;
			color: #23abe8;
		}
	
	h5,
	.h01{
		border-bottom: solid 3px #e6e6e6;
		position: relative;
		text-align: left;
		font-size: 28px;
		padding-bottom: 10px;
	}
	
	h5:after,
	.h01:after{
		position: absolute;
		content: " ";
		display: block;
		border-bottom: solid 3px #23abe8;
		bottom: -3px;
		width: 14%;
	}
	
	/*ポップアップ*/
	#popup #wrap{
		display: block;
	}
	
	header#popup2{
		text-align: left;
		padding: 15px;
	}
	
	#popup #mainBlock{
		text-align: left;
		padding: 0 10px;
	}
	
	.entry{
		margin: 40px auto;
	}
	
	h3.hd01{
		font-size: 20px;
		margin: 10px auto;
		color: #23abe8;
	}
	
	.close_btn{
		display: flex;
		justify-content: center;
	}
	
	#popup .footer{
		text-align: center;
		margin: 20px auto;
	}


	
/* ------------------------------------------------------------------------ */

/* 应用案例

/* ------------------------------------------------------------------------ */


.accordion_anli{
    width: 100%;
	margin: 30px auto;
	display: flex;
	flex-wrap:wrap;
	justify-content:space-between;
}

.accordion_anli li {
	width: 48%;
	margin-top: 20px;
}

.anli_img{
	margin:10px 0px 10px 10px
}
.anli_tit{
	width: 100%;
	height: 44px;
	line-height: 44px;
	background-color: #999;
	color: #fff;
	font-size: 18px;
	text-align: left;
}
.anli_tit span{
	display: block;
	width:10px;
	height: 44px;
	background: #008cd6;
	float: left;
	margin-right: 10px;
}
.anli_list_h{
	width: 100%;
	min-height: 10px;
	overflow: hidden;
	border-bottom: 1px solid #ccc;
	padding: 10px 0px;
}
.anli_list_h .anli_list_h_tit{
	width: 28%;
	float: left;
	text-align: left !important;
	padding-left: 14px;
	background: url(../images/san.png) no-repeat 0px 14px;
	height: 42px;
	display: table;
}
.anli_list_h .anli_list_h_tit a{
	color: #008cd6;
}
.anli_list_h .anli_list_h_con{
	width: 65%;
	float: right;
	text-align: left !important;
	height: 42px;
	display: table;
	overflow: hidden;
}
.anli_list_h .content{
	vertical-align:middle; 
	display:table-cell; 
}
	
@media screen and (max-width: 768px) {
	#slide_menu{
		display:none;
	}
	
	.crumb{
		display: none;
	}
	
	.accordion_1{
		margin: 10px;
	}
	
	.accordion_innerBox{
		display: block;
	}
		.innerBox{
			width: 100%;
			align-items: flex-start;
			margin-bottom: 20px;
		}
		
		.innerBox .item_details{
			width: 60%;
		}
		
	.accordion_innerBox .innerBox:last-child{
		margin-bottom: 0;
	}
	
	.btnBox{
		display: block;
		margin-top: 5px;
	}
	
	.btnBox li,
	.btnBox li:nth-child(2){
		width: 100%;
		margin-bottom: 5px;
	}
	
	.column_02{
		width: 100%;
	}
	
	#tab_btn ul .app_menu li a{
		font-size:  14px;	
	}
	
	#slider {
		width: 100%;
	}
	#slider img{
		width: auto !important;
		height: 100%;
		object-fit: cover;
		font-family: 'object-fit: cover;'
	}
}

@media screen and (max-width: 478px) {
	#slider {
		width: 100%;
	}
	
	#slider img{
		width: auto !important;
		height: 55.3vw;
		object-fit: cover;
		font-family: 'object-fit: cover;'
	}

	.accordion_anli li{
		width: 100%;
	}
}

