@charset "UTF-8";


/* メディアクエリ
------------------------------------------------------------------ */
/* タブレット縦 /スマートフォン横 */
@media screen and (min-width: 481px) {
}
/* デスクトップ/タブレット横 */
@media screen and (min-width: 769px) {
}

/* ページ
------------------------------------------------------------------ */
#faq
{
	width: 100%;
	height: auto;
	display: block;
	margin: 0px auto;
	padding: 0px;
	text-align: left;
	font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro","メイリオ", "Meiryo", Arial, sans-serif;
	font-size: 14px;
	line-height: 1.8em;
	color:#4d4d4d;
}
/* デスクトップ/タブレット横 */
@media screen and (min-width: 769px) {
	#faq
	{
		width: 100%;
		height: auto;
		display: block;
		margin: 0px auto;
		padding: 0px;
		text-align: left;
		font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro","メイリオ", "Meiryo", Arial, sans-serif;
		font-size: 16px;
		line-height: 2em;
		color:#4d4d4d;
	}
}

/* タイトルエリア
------------------------------------------------------------------ */
.titleimg
{
	width: 100%;
	height: auto;
	display: block;
	margin: 0px auto;
	padding: 0px;
	text-align: center;
	background: #b6cee6
}
.titleimg img
{
	width: 100%;
	height: auto;
}
h1
{
	width: 100%;
	height: auto;
	display: block;
	margin: 10px auto;
	padding: 0px;
	font-size: 23px;
	line-height: 2em;
	color:#6698cb;
	text-align: center;
}
/* デスクトップ/タブレット横 */
@media screen and (min-width: 769px) {
	.titleimg
	{
		width: 100%;
		height: 260px;
		display: block;
		margin: 0px auto;
		padding: 0px;
		text-align: center;
		background: #b6cee6
	}
	.titleimg img
	{
		width: 980px;
		height: auto;
		margin: 0px auto;
		padding: 0px;
	}
	h1
	{
		width: 100%;
		height: auto;
		display: block;
		margin: 50px auto 30px;
		padding: 0px;
		font-size: 28px;
		line-height: 2em;
		color:#6698cb;
		text-align: center;
	}
}

/* FAQカテゴリ選択セレクトフォーム
------------------------------------------------------------------ */
.cp_select {
	overflow: hidden;
	width: 90%;
	margin: 0px auto;
	text-align: center;
}
.cp_select select {
	width: 100%;
	padding-right: 1em;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}
.cp_select select::-ms-expand {
	display: none;
}
.cp_select.cp_faq {
	position: relative;
	border-radius: 2px;
	border-radius: 50px;
	background: #6698cb;
}
.cp_select.cp_faq::before {
	content: "";
	display: block;
	position: absolute;
	top: 10px;
	right: 12px;
	width: 14px;
	height: 14px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: translateX(-50%) rotate(135deg);
	pointer-events: none;
}
.cp_select.cp_faq select {
	padding: 8px 40px 8px 5px;
	font-size: 16px;
	transform: scale(0.9);
	line-height: 1.8em;
	color: #ffffff;
}
/* デスクトップ/タブレット横 */
@media screen and (min-width: 769px) {
	.cp_select {
		overflow: hidden;
		width: 500px;
		margin: 0px auto;
		text-align: center;
	}
/* 変更なし
	.cp_select select {}
	.cp_select select::-ms-expand {}
	.cp_select.cp_faq {}
	.cp_select.cp_faq::before {}
*/
	.cp_select.cp_faq select {
		padding: 8px 40px 8px 5px;
		font-size: 18px;
		transform: scale(0.9);
		line-height: 1.8em;
		color: #ffffff;
	}
	.cp_select.cp_faq option {
		padding: 8px 40px 8px 5px;
		font-size: 18px;
		transform: scale(0.9);
		line-height: 1.8em;
		color: #000;
	}
}

/* メインエリア
------------------------------------------------------------------ */
#faq h3
{
	width: 90%;
	font-size: 18px;
	line-height: 1.8em;
	color:#6698cb;
	text-align: left;
	padding: 60px 0px 20px;
	margin: 0px auto;
}
/* デスクトップ/タブレット横 */
@media screen and (min-width: 769px) {
	#faq h3
	{
		width: 90%;
		font-size: 24px;
		line-height: 1.8em;
		color:#6698cb;
		text-align: center;
		padding: 60px 0px 20px;
		margin: 0px auto;
	}
}

/* FAQエリア
------------------------------------------------------------------ */
dl
{
	width: 90%;
	padding: 0px;
	margin: 10px auto;
}
dl dt
{
	padding: 0px 0px 10px 30px;
	margin: 0px;
	background: url("../img/faq/faq_open.svg") no-repeat left top;
	-webkit-background-size: 20px 20px;
	background-size: 20px 20px;
	text-decoration: underline;
	color: #666;
	cursor: pointer;
}
dl dt.active
{
	background: url("../img/faq/faq_close.svg") no-repeat left top;
	-webkit-background-size: 20px 20px;
	background-size: 20px 20px;
	text-decoration: none;
	color: #333;
	cursor: pointer;
}
dl dd
{
	display:none;
	width: auto;
	background: #e9f7fc url("../img/faq/faq_answer.svg") no-repeat 10px 10px;
	-webkit-background-size: 45px 40px;
	background-size: 45px 40px;
	margin: 0px 0px 20px 0px;
	padding: 30px 20px 20px 65px;
}
dl img
{
	width: 100%;
	height: auto;
	margin: 5px 0px;
	padding: 5px;
	background: #fff;
}
dl dd a
{
	color: #e26698;
}

/* デスクトップ/タブレット横 */
@media screen and (min-width: 769px) {
	dl
	{
		width: 900px;
		padding: 0px;
		margin: 10px auto;
	}
	dl dt
	{
		padding: 0px 0px 25px 30px;
		margin: 0px;
		background: url("../img/faq/faq_open.svg") no-repeat left top 6px;
		-webkit-background-size: 20px 20px;
		background-size: 20px 20px;
		text-decoration: underline;
		color: #666;
		cursor: pointer;
	}
	dl dt.active
	{
		background: url("../img/faq/faq_close.svg") no-repeat left top 6px;
		-webkit-background-size: 20px 20px;
		background-size: 20px 20px;
		text-decoration: none;
		color: #333;
		cursor: pointer;
	}
	dl dd
	{
		display:none;
		width: auto;
		background: #e9f7fc url("../img/faq/faq_answer.svg") no-repeat 10px 10px;
		-webkit-background-size: 78px 70px;
		background-size: 78px 70px;
		margin: 0px 0px 20px 0px;
		padding: 30px 20px 20px 100px;
	}
	dl img
	{
		width: 75%;
		height: auto;
		margin: 5px 0px;
		padding: 5px;
		background: #fff;
	}
/* 変更なし
	dl dd a {}
*/
}