@charset "UTF-8";
/* CSS 固定ページ症例css*/
/*====================================================共通設定==========================================================*/
	
.answer_color{
	color:#ff4d6e;
	font-weight: 600;
	font-size: 1.1rem;
}
	.question_idbtn{
		display: flex;
		flex-wrap: nowrap;
		justify-content:space-between;
	}	

/*----------------アコーディオン型------------------------*/
.accbox {
    padding: 0; 
    margin:4% auto;  
}

/*ラベル*/
.accbox label {
    display: block;
	margin: 2.5% 0 0 0;
    padding : 11px 12px;
    color:#3f3f3f;
    font-weight: bold;
    background-color: #ffefd5;
    cursor :pointer;/*カーソルの形が変わる*/
	transition: all 0.7s;/*動作（変化）の時間を設定する*/
}

/*ラベルホバー時*/
.accbox label:hover {
    background :#ffecd5;
}

/*ラベルで設定したチェックは隠す*/
.accbox input {
    display: none;
}

/*中身を非表示にしておく*/
.accbox .accshow {
	height: 0;
	padding:0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}


/*クリックで中身表示*/
.cssacc:checked + .accshow {
    height: auto;
    padding: 5px;
    background: #fffbf5;
    opacity: 1;
}
/*----------------//アコーディオン型------------------------*/

/*sannkaku*/
i{
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 15px 10px 0 10px;
	border-color: #ec7113 transparent transparent transparent;
	position: relative;
	top:22px;
	margin-right:10px;
	}

.accshow p{margin:2% 3%;}
.accshow img{margin:auto;display:block;}
/*--.bolで偶数太字--*/
.bol p:nth-of-type(2n){font-weight:bold;}



/*====================================================pc設定==========================================================*/
@media print, screen and (min-width:768px){
	
	
}/*====================================================pc設定終了==========================================================*/

/*=============================タブレット設定===================================*/
@media screen and (min-width:768px) and (max-width:1024px) { 

	.accbox {
		width:85%;}

}/*====================================================タブレット設定終了==========================================================*/



/*====================================================sp設定==========================================================*/
@media print, screen and (max-width:767px){
	
	
}/*=============================sp設定終了===================================*/
