@charset "UTF-8";
/*--------------------------------------------------
**************************************************
  PC
**************************************************
--------------------------------------------------*/
.faq-item {
	border-bottom: 1px solid #939393;
	padding:0 20px;
}
.faq-item:first-child {
	border-top:1px solid #939393;
}
.faq-item dt {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	padding: 30px 0;
	font-weight: bold;
	font-size:2rem;
	color:#22afc3;
	font-weight:700;
}
.faq-item dt::before {
	content:"Q.";
	font-size:3rem;
	margin-bottom:10px;
	width:4rem;
}
.faq-item dt span.faq-question {
	margin-right:auto;
}

.faq-item dd {
	padding: 0;
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.4s ease, padding 0.3s ease;
	font-size:1.8rem;
	font-weight:600;
}

/* 開いている状態 */
.faq-answer {
	padding: 0 0 30px 4rem;
}

/* アイコン */
.faq-icon {
	width: 50px;
	height: 50px;
	background: #22afc3;
	border-radius: 50%;
	position: relative;
	flex-shrink: 0;
}

/* 横棒 */
.faq-icon::before {
	content: "";
	position: absolute;
	width: 16px;
	height: 3px;
	background: #fff;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* 縦棒（閉じている時だけ表示） */
.faq-icon::after {
	content: "";
	position: absolute;
	width: 3px;
	height: 16px;
	background: #fff;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: opacity 0.3s ease;
}

/* 開いている時は縦棒を消して「−」にする */
.faq-item.open .faq-icon::after {
	opacity: 0;
}

.faq-item dd ul {
	margin:10px 0;
}
.faq-item dd ul li {
	margin:5px 0;
}

/*--------------------------------------------------
**************************************************
  SP
**************************************************
--------------------------------------------------*/
@media screen and (max-width: 767px) {
	.faq-item {
		padding:0;
	}
	.faq-item dt {
		padding: 20px 0;
		font-weight: bold;
		font-size:1.6rem;
		color:#22afc3;
		font-weight:700;
	}
	.faq-item dt::before {
		content:"Q.";
		font-size:2rem;
		margin-bottom:auto;
		margin-top:-0.4rem;
		width:3.5rem;
	}
	.faq-item dt span.faq-question {
		padding-right:0.5rem;
	}
	.faq-item dd {
		font-size:1.4rem;
	}
	
	/* 開いている状態 */
	.faq-answer {
		padding: 0 0 20px 3.5rem;
	}
	/* アイコン */
	.faq-icon {
		width: 2.4rem;
		height: 2.4rem;
	}
	.faq-icon::before {
		width: 1rem;
		height: 1px;
	}
	.faq-icon::after {
		width: 1px;
		height: 1rem;
	}
}
