
/*+++++++++++++++++++++++++++++++++++++++++++
	各ページ共通
+++++++++++++++++++++++++++++++++++++++++++ */

/*table仕様*/
/*table padding*/
.qa td{
	padding-left: 10px;
	padding-right: 10px;
}


/* リンクの下線を消す*/
.no-line{
	text-decoration: none;
	padding-top: 0px;
}

.no-line:hover {
	text-decoration: none;
}

/* リンクの文字色仕様*/
.no-line:link,
.no-line:visited { 
	color: black;
 }

.no-line:hover,
.no-line:active {
	color: #F79646; transition: 0.5s; 
}

/* ボタン仕様 */

.btn-mokuji{
	display: inline-block;
	border:1px solid #ffffff;
	color: #ffffff;
	background:#899a9f;
	width: 200px;
	height:45px;
	padding: 0.3em;
	text-decoration: none;
	border-radius: 5px;
	box-shadow: 0 2px 2px 0 rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
	-webkit-tap-highlight-color: transparent;
	transition: .3s ease-out;
	outline: none;
}

.btn-mokuji:hover{
	background: #ffffff;
	color: #899a9f;
	cursor: pointer;
	text-decoration: none;
	box-shadow: 0 5px 10px 0 rgba(0,0,0,0.12), 0 3px 20px 0 rgba(0,0,0,0.12), 0 5px 6px -2px rgba(0,0,0,0.2);
}

/* テーブル仕様 */
.table_menu td {
	padding: 0.1em 0.1em;
	text-align: center;
}

/* アコーディオン仕様 */
.cp_qa *, .cp_qa *:after, .cp_qa *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

.cp_qa {
	overflow-x: hidden;
	margin: 0 auto;
	color: #333333;
}
.cp_qa .cp_actab {
	padding: 5px 0;
/*border-bottom: 1px dotted #cccccc;*/
	width: 99%;
}
.cp_qa label {
	font-size: 1.0em;
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
	padding: 7px 10px 0 15px;
	cursor: pointer;
/* +クリック追加で変更 */
	/* padding: 10px 10px 0 48px;*/
/* +クリック追加で変更 */
}
    
.cp_qa .cp_actab-content {
	font-size: 1.0em;
	position: relative;
	overflow: hidden;
	height: 0;
	margin: 0 40px;
	padding: 0 14px;
	-webkit-transition: 0.4s ease;
	        transition: 0.4s ease;
	opacity: 0;
}
.cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_actab-content {
	height: auto;
	padding: 14px;
	opacity: 1;
}
.cp_qa .cp_plus {
	font-size: 1.8em;
	line-height: 100%;
	position: absolute;
	z-index: 5;
	margin: 7px 0 0 15px;
	-webkit-transition: 0.2s ease;
	        transition: 0.2s ease;
}
.cp_plus {
	color:#F79646;  
}

/* +クリック追加start */
.cp_qa .cp_actab label::before {
	font-size: 1.8em;
	line-height: 100%;
	position: absolute;
	content: '+';

	-webkit-transition: 0.2s ease;
	        transition: 0.2s ease;
        color:#F79646;  
}
.cp_qa .cp_actab input[type=checkbox]:checked ~ label::before {
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);

  }

.tab_p {
	font-size: 1.0em;
	padding-left: 38px; 
	padding-top: 3px;  
        margin-top: 0px;
	margin-bottom: 0px;
	vertical-align:top;
}

/* 動画アイコン追加 */
.tab_p_moving {
	font-size: 1.0em;
	padding-left: 38px; 
	padding-top: 1px;  
        margin-top: 0px;
	margin-bottom: 0px;
}


.tab_p_moving:after {
  content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 30px;/*画像の幅*/
  height: 24.75px;/*画像の高さ*/
  background-image: url(../image/common/movie.png);
  background-size: contain;
  vertical-align: middle;
}


.cp_qa{
overflow-y: scroll;
    /* IE, Edge 対応 */
	-ms-overflow-style: none;
    /* Firefox 対応 */
	-scrollbar-width: none;
}
.cp_qa::-webkit-scrollbar {
	display:none;
  }
/* +クリック追加end */

.cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_plus {
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.cp_qa .cp_actab input[type=checkbox] {
	display: none;
}

/* 文字と画像の高さを合わせる start */ 
img.middle { vertical-align: -1px; }
/* 文字と画像の高さを合わせるend */