@charset "utf-8";
/* CSS Document */
/*----qandaページコンテンツ----*/
body{
	color:#ffffff;
}
/*ベース*/
.qa_toggle {
	display: none;
}
.qa_questionicon,
.qa_questionarrow {
	flex-grow: 0;
	height:33px;
	width: 33px;
	margin: auto;
}
.qa_questionicon {
	background-image: url("../img/icon_question_q.png");
	background-size: 100% auto;
	background-repeat: no-repeat;
}
.qa_questionarrow {
	background-size: 100% auto;
	background-repeat: no-repeat;
	transform: rotate(90deg) !important;
}
.qa_questiontext {
	flex-grow: 1;
	margin: 0 40px 0 10px;
	width:94%;
}
.qa_Label {		/*タイトル*/
	padding: 0.8em 1.2em;
	display: flex;
	align-items :center;
	justify-content: space-between;
	background: #203b5d;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
.qa_Label:hover{	
	background: #2e5a93;
}	
.qa_Label::before{		/*タイトル横の矢印*/
	content:"";
	height: 33px;
	width: 33px;
	background-image: url("../img/icon_arrow_square_R.png");
	background-size: 100% auto;
	background-repeat: no-repeat;
	position: absolute;
	right: 16px;
	transform: rotate(90deg);
	transition: all .3s;
}
.qa_Label,
.qa_content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
	margin:0 4px;
}
.qa_content {		/*本文*/
	height: 0;
	margin-bottom:14px;
	padding:0 32px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.1);
    border-radius: 0 0 20px 20px;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
}
.qa_toggle:checked + .qa_Label + .qa_content {	/*開閉時*/
	height: auto;
	padding:32px ;
	transition: all .3s;
}
.qa_toggle:checked + .qa_Label::before {
	background-image: url("../img/icon_arrow_square_R.png");
	transform: rotate(-90deg)!important;
	transition: all .3s;
}

/*--- コンタクト ---*/
.QAcompany_CONTACT_mail{
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	color: rgba(24, 46, 76, 1);
	margin:40px auto 50px auto;
	font-size: 2.5rem;
	text-decoration-line: underline;
}
.QAcompany_CONTACT a{
	text-decoration: underline;
	display: inline-block;
	padding: 0 5px;
}
.QAcompany_CONTACT{
	width:fit-content;
	margin: auto;
	padding: 0 5px;
}





















