@charset "utf-8";
/* CSS Document */
/***********************************************************
	element.css
************************************************************/

/*==========================================================================
	Portable Inspectorシリーズの主な機能
============================================================================*/
/*****************************************************
	767px以下【sp】
******************************************************/
table.typ01 {
	border-top-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-left-style: solid;
	border-top-color: #CCC;
	border-left-color: #CCC;
	background-color: #FFF;
	margin-bottom: 10px;
	min-width: 640px;
	box-sizing: border-box;
	line-height: 1.4;
}
table.typ01 th,
table.typ01 td {
	padding:10px;
	vertical-align: top;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #CCC;
	border-bottom-color: #CCC;
}
table.typ01 th {
	background-color: #666666;
	color: #FFF;
	font-weight: bold;
	text-align: center;
}
table.typ01 td {
  background-color: #FFF;
  vertical-align: middle;
  text-align: center;
}
table.typ01 th.ttl {
	background-color: #f6f6f8;
}
table.typ01 td.ttl {
	background-color: #f6f6f8;
}
/*****************************************************
	768px以上【tablet】
******************************************************/
@media print, screen and (min-width: 768px) {
	table.typ01 {
		width:100%;
	}
}
/*****************************************************
	1024px以上【PC】
******************************************************/
@media print, screen and (min-width: 1024px) {
}
/*=================================================
アコーディオン
==================================================*/
.accordion {
	margin: 10px 0;
}
/* 白背景 */
.accordion .acc_wap { 
	background-color: #FFF;
	border-radius: 10px;
}

/* 必須 */
.accordion-content {
  display: none;
}

.accordion-header {
  padding: 15px 10px;
  margin: 10px 0 0;
  transition:transform 0.3s;
  cursor: pointer;
  position: relative;
  border-radius: 10px;
  font-weight: 600;
  font-size: 18px;
}
/* プラスマイナス */
.accordion-header::before,
.accordion-header::after{
  position:absolute;
  content:'';
  top:1px;
  right:20px;
  bottom:0;
  width:12px;
  height:2px;
  margin:auto;
  background:#E60012;
}
.accordion-header::after{
  transform:rotate(-90deg);
  transition:transform 0.3s;
}
.accordion-header.active::after{transform:rotate(0deg);}

.accordion-content {
	font-size: 14px;
	padding: 10x;
}

.accordion-content .innr {
  	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.accordion-content .innr .block {
	width: 100%;
}
/* hover */
.accordion-header:hover {
  background-color: #eeeeee;
}


/*****************************************************
	768px以上【tablet】
******************************************************/
@media print, screen and (min-width: 768px) {
	.accordion-header {
 		padding: 20px;
  		margin: 15px 0 0;
		font-size: 22px;
  	}
	.accordion-content {
		padding: 20px;
	}
	.accordion-content .innr .block {
		width: 50%;
	}
}
/*****************************************************
	1024px以上【PC】
******************************************************/
@media print, screen and (min-width: 1024px) {
}

/*=================================================

==================================================*/

/*******************************
	768px以上【tablet】
********************************/
@media print, screen and (min-width: 768px) {
	
}
/*******************************
	1024px以上【PC】
********************************/
@media print, screen and (min-width: 1024px) {
	
}