@charset "UTF-8";

.faq-intro {
	padding: 50px 0;
	height: 400px;
	background-image: url(../images/faq_top_v.jpg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: -2;
	width: 100%;
}

.faq-intro h1 {
	color: #1F9884;
	font-size: 2.5rem;
	font-weight: 800;
}

.faq-intro .sub-head-en {
	font-weight: 600;
}

.faq-section {
	padding: 15vh 0;
}

.sub-head-en {
	font-weight: 600;
}

.faq-item {
	border-bottom: 1px solid #ddd;
	padding: 1.6rem 0;
	position: relative;
}

.faq-item:first-child {
	border-top: 1px solid #ddd;
}

.faq-item h3 {
	margin: 0;
	cursor: pointer;
	color: #009688;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-item h3 i {
	font-size: 1.2em;
	transition: transform 0.3s;
}

.faq-item.open h3 i {
	transform: rotate(180deg);
	/* 矢印を下向きに回転 */
}

.faq-item p {
	display: none;
	margin: 10px 0 0 0;
}

.faq {
	display: flex;
	justify-content: space-between;
}

.faq-contents {
	width: 70%;
}

.faq-cate h3 {
	background-color: #1F9884;
	color: #fff;
	padding: 0.5rem 1rem;
}

.faq-cate p {
	color: #1F9884;
}

.faq-section hr {
	margin: 4rem auto;
	border-color: #17B2A3;
	width: 90%;
}

.big-btn {
	margin: 10vh auto 0 auto;
	display: inline-block;
	display: flex;
	justify-content: center;
}

.big-btn button {
	background-color: #1F9884;
	/* 背景色 */
	border: none;
	/* 枠線をなしに */
	color: white;
	/* 文字色 */
	padding: 2rem 6rem;
	/* パディング */
	text-align: center;
	/* 文字の中央揃え */
	text-decoration: none;
	/* テキストの下線をなしに */
	display: inline-block;
	/* インラインブロック表示 */
	font-size: 2rem;
	/* フォントサイズ */
	/* マージン */
	cursor: pointer;
	/* カーソルをポインタに */
	border-radius: 8px;
	font-weight: 600;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	/* 影を追加 */
}

.big-btn button a {
	color: #fff;
}

button:hover {
	background-color: #45a049;
	/* 背景色を変更 */
	box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
	/* 影を強調 */
}