	.faq{
		padding: 100px 0;
		background: #f5f5f3;
    line-height: 1.8;
	}
	.faq *{
		box-sizing: border-box;
	}
	.faq-list{
		margin: 0 auto;
		max-width: 950px;
	}
	.faq-heading{
		margin-bottom: 70px;
		text-align: center;
		font-size: 28px;
		font-weight: bold;
	}
	.faq-item{
		margin-bottom: 30px;
		padding: 32px 40px;
		border: 1px solid #e9e9e7;
		border-radius: 8px;
		background: #fff;
	}
	.faq-title{
		position: relative;
		padding-left: 30px;
		padding-right: 30px;
		font-size: 20px;
		font-weight: bold;
		cursor: pointer;
		transition: padding-bottom 0.3s ease-out;
	}
	.faq-item.is-active .faq-title{
		padding-bottom: 26px;
	}
	.faq-title::before{
		content: 'Q';
		position: absolute;
		top: 0;
		left: 0;
		font-size: 25px;
		line-height: 1.2;
		font-weight: bold;
		color: #f0821e;
	}
	.faq-title::after{
		content: '＋';
		position: absolute;
		top: 0;
		right: 0;
		font-size: 25px;
		line-height: 1.44;
		font-weight: bold;
		color: #f0821e;
	}
	.faq-item.is-active .faq-title::after{
		content: 'ー';
		font-weight: normal;
	}
	.faq-content{
		padding-left: 30px;
		font-size: 16px;
		overflow: hidden;
  	transition: max-height 0.3s ease-out;
	}
	.faq-content a{
		color: #4a7ceb;
    text-decoration: underline;
	}
	@media screen and (max-width: 719px) {
		.faq-list{
			margin: 0 10px;
		}
		.faq-item{
			margin-bottom: 15px;
			padding: 16px 20px;
			font-size: 16px;
		}
		.faq-title{
			padding-left: 26px;
			padding-right: 26px;
		}
		.faq-item.is-active .faq-title{
			padding-bottom: 10px;
		}
		.faq-title::before{
			font-size: 21px;
			line-height: 1.44;
		}
		.faq-title::after{
			font-size: 21px;
			line-height: 1.44;
		}
		.faq-content{
			padding-left: 0;
			font-size: 14px;
		}
	}