@charset "utf-8";

/*==============================================================================================================
  .faq / よくある質問ページ
==============================================================================================================*/

/*------------------------------------------
  #mainVisual
------------------------------------------*/

#mainVisual {
	background-image: url(../../img/faq/mv01.png);
}


/*------------------------------------------
  faqNav
------------------------------------------*/

.faqNav {
	font-weight: 500;
	text-align: center;
	margin-bottom: 40px;
	border: 1px solid #d5b45c;
	overflow: hidden;
}

.faqNav .tit {
	color: #fff;
	font-size: 13px;
	padding: 5px;
	background: #d5b45c;
}

.faqNav ul {
	display: table;
	margin: 0 auto;
}

.faqNav li {
	float: left;
	font-size: 13px;
	position: relative;
}

.faqNav li:before {
	content: "";
	display: block;
	width: 1px;
	height: 40%;
	background: #000;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
}

.faqNav li:last-of-type:before {
	content: none;
}

.faqNav li:after {
	content: "";
	display: block;
	width: 31px;
	height: 5px;
	background: url(../../img/ico/ico_btn_gold.png) no-repeat center;
	background-size: contain;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -5px;
	margin: auto;
}

.faqNav li a {
	display: block;
	padding: 7px 20px;
}


@media screen and (min-width: 768px) {

	/*
		hover
	---------------------------*/
	
	.faqNav li a:hover {
		opacity: 1;
	}

	.faqNav li:after {
			-webkit-transition: all 0.3s ease-in-out;
			-moz-transition: all 0.3s ease-in-out;
			-o-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
	
	.faqNav li:hover:after {
		bottom: 0;
	}
	
}

@media screen and (max-width: 767px) {

	.faqNav {
		margin-bottom: 20px;
	}
	
	.faqNav li {
		font-size: 11px;
	}
	
	.faqNav li:after {
		bottom: 0;
		width: 20px;
		height: 3px;
	}
	
	.faqNav li a {
		padding: 7px 11px;
	}

}


@media screen and (max-width: 414px) {

	.faqNav ul {
		display: block;
	}

	.faqNav li {
		width: 50%;
		font-size: 12px;
	}

	.faqNav li:nth-of-type(2):before {
		content: none;
	}

	.faqNav li a {
		padding: 10px;
	}

	.faqNav li:nth-of-type(n+3) {
		margin-top: 10px;
	}

}


/*------------------------------------------
  .faqBox
------------------------------------------*/

.faqBox {
	margin-bottom: 80px;
}

.faqBox dl {
	margin-bottom: 20px;
	border: 2px solid #b4b4b4;
}

.faqBox dt {
	font-weight: bold;
	padding: 17px 160px 17px 65px;
	background: url(../../img/ico/ico_q.png) no-repeat 10px 10px;
	background-size: 42px;
}

.faqBox dd {
	font-size: 13px;
	padding: 5px 30px 15px 65px;
	margin: 10px auto 18px;
	background: url(../../img/ico/ico_a.png) no-repeat 10px top;
	background-size: 42px;
}

.faqTxtLink {
	color: #d5b45c;
	font-size: 13px;
	margin-top: 15px;
}

.faqTxtLink:before {
	content: ">";
}


/*
	アコーディオン
---------------------------*/

.faqBox dt {
	cursor: pointer;
	position: relative;
}

.faqBox dd {
	display: none;
}

.btnOpen {
	cursor: pointer;
	color: #333;
	height: 25px;
	position: absolute;
	top: 19px;
	right: 10px;
	margin: auto;
	padding-right: 30px;
}

.btnOpen p {
	font-size: 11px;
	font-weight: 500;
	line-height: 25px;
}

.btnOpen span {
	position: absolute;
	right: 0;
	top: 11px;
	width: 20px;
	height: 2px;
	background: #333;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.btnOpen span:nth-of-type(1) {
	transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}
.btnOpen span:nth-of-type(2) {
	transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
		-moz-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

.btnOpen.up span:nth-of-type(1) {
	transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
		-moz-transform: rotate(135deg);
		-ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
}

.btnOpen.up span:nth-of-type(2) {
	transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}


@media screen and (max-width: 767px) {

	.faqBox {
		margin-bottom: 40px;
	}
	
	.faqBox dl {
		margin-bottom: 10px;
	}
	
	.faqBox dt,
	.faqBox dd {
		background-size: 28px;
	}
	
	.faqBox dt {
		padding: 10px 35px 10px 50px;
		background-position: 10px 10px;
	}
	
	.faqBox dd {
		padding: 0 30px 5px 50px;
		margin-top: 0;
	}
	
	.faqTxtLink {
		margin-top: 10px;
	}
	
	
	/*
		アコーディオン
	---------------------------*/
	
	.btnOpen {
		top: 0;
		bottom: 0;
		right: 5px;
		width: 25px;
		height: 25px;
		padding: 0;
	}
	
	.btnOpen p {
		display: none;
	}
	
	.btnOpen span {
		width: 20px;
	}

}