/*========================================
	TAG
========================================*/
.tags ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin: 0 auto;
	width: 940px;
	font-size: 0;
}
.tags li {
	display: inline-block;
}
.tags a {
	display: inline-block;
	box-sizing: border-box;
	margin: 0 5px 10px;
	padding: 7px 12px;
	min-width: 124px;
	border: 1px solid #a7a7a7;
	color: #a7a7a7;
	font-size: 14px;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
}
.tags a.on {
	border-color: #dde8e3;
	background-color: #dde8e3;
	color: #739c89;
}
.tags a:hover {
	border-color: #739c89;
	color: #739c89;
}
@media (min-width:751px) {
	.tags li {
		flex-grow: 2;
	}
}
@media (max-width:750px) {
	.tags {
		position: relative;
		width: 100%;
	}
	.tags ul {
		margin-left: 5vw;
		width: 80vw;
		height: 16vw;
		overflow: hidden;
	}
	.tags.open ul {
		height: auto;
	}
	.tags a {
		margin: 0 0.67vw 1.33vw;
		padding: 2.15vw 7vw;
		min-width: 25.2vw;
		font-size: 2.67vw;
		cursor: pointer;
	}
	.tags p {
		position: absolute;
		top: 3.8vw;
		right: 5.3vw;
		transition: .4s;
	}
	.tags.open p {
		transform: rotate(135deg);
	}
	.tags p img {
		width: 8vw;
	}
}


/*========================================
	FAQ
========================================*/
.faq-contents h2 {
	box-sizing: border-box;
	background-image: url(../image/icon_ring_wh.png);
	background-position: center center;
	background-repeat: no-repeat;
	color: #575858;
	font-weight: bold;
	line-height: 1;
	text-align: center;
}
.faq-contents dl {
	box-sizing: border-box;
	background-color: #fff;
}
.faq-contents dt {
	box-sizing: border-box;
	font-weight: bold;
	background-image: url(../image/icon_Q.png);
	background-position: left center;
	background-repeat: no-repeat;
}
.faq-contents dd {
	text-align: justify;
}
@media (min-width:751px) {
	.faq-contents {
		padding-bottom: 100px;
	}
	.faq-contents h2 {
		margin: 50px auto 10px;
		padding: 40px 0 20px;
		min-height: 82px;
		font-size: 22px;
		background-size: 60px;
	}
	.faq-contents dl {
		margin: 20px auto 0;
		padding: 35px;
		width: 940px;
	}
	.faq-contents dt {
		padding: 12px 0 14px 60px;
		min-height: 47px;
		background-size: 47px;
	}
	.faq-contents dd {
		padding: 5px 5px 0;
	}
}
@media (max-width:750px) {
	.faq-contents h2 {
		margin: 10.8vw auto 5.06vw;
		padding: 7.2vw 0 3.73vw;
		min-height: 15.33vw;
		font-size: 4.67vw;
		background-size: 11.07vw;
	}
	.faq-contents dl {
		margin: 4vw auto 0;
		padding: 4.4vw 5.33vw;
		width: 89.33vw;
	}
	.faq-contents dt {
		padding: 2.33vw 0 2.33vw 13.33vw;
		min-height: 10.67vw;
		background-size: 10.67vw;
		line-height: 1.5;
	}
	.faq-contents dd {
		margin-top: 2vw;
	}
}
