@charset "utf-8";
/* CSS Document */

.pic_message{
	float: left;
	margin-right: 50px;
}
.pic_message img{
	margin-bottom: 10px;
}
.pic_message p{
	margin-bottom: 0;
}

.txt_message{
	overflow: hidden;
}

@media ( max-width:800px) {
	
	.pic_message{
		width: 100%;
		float: none;
		margin-right: 0px;
		margin-bottom: 30px;
	}
	
	.txt_message{
		float: none;
		width: 100%;
	}
	
}

/*ボックス全体*/
.accbox {
    margin: 2em 0;
    padding: 0;
	width: 100%;
	
}

/*ラベル*/
.accbox label {
    display: block;
    margin: 1.5px 0;
    padding : 13px 12px;
    font-weight: bold;
    background:#CBE6FD ;
    cursor :pointer;
    transition: all 0.2s;
	margin-bottom: 20px;
}
.accbox label.type02 {
    background: #F4F3C1;
}

/*アイコンを表示*/
.accbox label:before {
    content:"\f078";
    width:20px;
    height:20px;
    font-family: "Font Awesome 5 Free";
    font-weight:900;
    padding-right: 8px;
}

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

/*チェックは隠す*/
.accbox input {
    display: none;
}

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

/*クリックで中身表示*/
.cssacc:checked + label + .accshow {
    height: auto;
    padding:0 20px 30px;
    opacity: 1;
}

.accbox .accshow p {}

/*アイコンを入れ替える*/
.cssacc:checked + label:before {
    content: '\f077';
}