@charset 'UTF-8';
*{box-sizing: border-box;}
img{height: auto;}

/*--h要素--*/
.h_gray {
	width: 740px;
	height: 40px;
	background: url(../../../_images/making/_common/gray_back.gif) no-repeat;
	margin-bottom: 30px;
	padding-left: 15px;
	font-size: 16px;
	font-weight: 700;
	line-height: 40px;
}

/*-----------------------------------------------
よくある質問
------------------------------------------------*/
/*--タブ切り替え--*/
.js-tab-contents {
	display: none;
}
.js-tab-contents.current {
	display: block;
}

/**/

.js-tab-wrap .tab_title {
	display: flex;
	gap: 40px;
	margin-bottom: 35px;
}
.js-tab-wrap .tab_title li {
	margin: 0 0 10px;
	position: relative;
}
.js-tab-wrap ul .current:after {
	content: url(../../../_images/guide/qa/btn_active.webp);
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	position: absolute;
	bottom: -15px;
	left: 50%;
}

/*--タブ内部--*/
.js-tab-contents h3 {
	margin: 0 0 25px 25px;
	font-size: 18px;
	font-weight: 700;
	line-height: 32px;
	letter-spacing: .2em;
}
.js-tab-contents h3 img { margin-right: 17px; }
.js-tab-contents .qa_estimate h3 { color: #fc391f; }
.js-tab-contents .qa_design h3 { color: #7cba3d; }
.js-tab-contents .qa_product h3 { color: #3fb2c4; }


/*--アコーディオン--*/
.js-tab-contents dl{
	padding-bottom: 5px;
}
.js-tab-contents .aco_btn { position: relative; }
.js-tab-contents .aco_cnt { display: none; }

.js-tab-contents .aco_btn {
	min-height: 65px;
	width: 100%;
	background: #f0edd8;
	color: #161513;
	margin-bottom: 25px;
	padding: 20px 50px 20px 72px;
	font-weight: 700;
	position: relative;
	cursor: pointer;
}
.js-tab-contents .aco_btn:hover {
	background: #e1d4a8;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
.js-tab-contents .aco_btn:before {
	content: "";
	display: block;
	width: 26px;
	height: 26px;
	background-image: url(../../../_images/guide/qa/icon_q.gif);
	background-repeat: no-repeat;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	position: absolute;
	left: 24px;
	top: 50%;
}
.js-tab-contents .aco_btn:after {
	content: "＋";
	color: #161513;
	font-size: 17px;
	font-weight: 700;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	position: absolute;
	right: 24px;
	top: 50%;
}
.js-tab-contents .aco_btn.open:after {
	content: "－";
}

.js-tab-contents .aco_cnt {
	background: url(../../../_images/guide/qa/dot.gif) repeat-x bottom;
	margin: 0 30px 30px 40px;
	padding: 0 0 35px 85px;
	position: relative;
}
.js-tab-contents .aco_cnt:before {
	position: absolute;
	top: 0;
	left: 0;
}
.js-tab-contents .qa_estimate .aco_cnt:before {
	content: url(../../../_images/guide/qa/a_estimate.gif);
}
.js-tab-contents .qa_design .aco_cnt:before {
	content: url(../../../_images/guide/qa/a_design.gif);
}
.js-tab-contents .qa_product .aco_cnt:before {
	content: url(../../../_images/guide/qa/a_product.gif);
}

/*--商品について--*/
.qa_product .product_li {
	display: flex;
	flex-wrap: wrap;
	border-left: 1px solid #dcdcdc;
	border-top: 1px solid #dcdcdc;
}
.qa_product .product_li li {
	width: calc(100% / 3);
	height: 270px;
	text-align: center;
	border-right: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
}
.qa_product .product_li li a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
    transition: all  0.3s ease;
}
.qa_product .product_li li a:hover {
	background: #d9f5f9;
}

.qa_product dl dd a { 
	font-weight: 700;
	text-decoration: underline;
}
.qa_product dl dd a:hover {
	text-decoration: none;
}

/**/
.qa_product .linkBtn{
	margin: 20px auto;
}
.qa_product .linkBtn a{
	display: block;
	width: 60%;
	background-color: #00a2ff;
	color: #fff;
	margin: auto;
	padding: 15px;
	padding-left: 30px;
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	border-radius: 50px;
	transition: all 0.3s ease-out;
	position: relative;
}
.qa_product .linkBtn a:before{
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-top: 3px solid #fff;
	border-left: 3px solid #fff;
	transform: rotate(-45deg);
	position: absolute;
	left: 20px;
	top: 0;
	bottom: 0;
	margin: auto;
}

.qa_product .linkBtn a:hover{
	opacity: 0.5;
}

