/* FAQ Page Styles - Modernized 2025/12/22 */

.help_search_form {
	background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
	margin-bottom: 30px;
	padding: 30px;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	border: 1px solid #e1ecf7;
}

.help_search_form_input,
.help_search_form_btn {
	display: block;
}

.help_search_form_input {
	margin-bottom: 15px;
}

.help_search_form_input .input_text {
	width: 100% !important;
	height: 54px;
	font-size: 16px;
	padding: 10px 20px;
	border-radius: 10px;
	border: 1px solid #d2dce6;
	background: #fff;
	box-sizing: border-box;
	transition: border-color 0.3s ease;
}

.help_search_form_input .input_text:focus {
	border-color: #91cbea;
	outline: none;
}

.help_search_form_btn .btn_lightblue {
	width: 100%;
	height: 54px;
	font-size: 18px;
	font-weight: bold;
	border-radius: 10px;
	background: #91cbea;
	color: #fff;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(145, 203, 234, 0.3);
	transition: all 0.3s ease;
}

.help_search_form_btn .btn_lightblue:hover {
	background: #7dbbe0;
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(145, 203, 234, 0.4);
}

/* 一覧画面のカテゴリとリスト */
.section_type01 .page_text {
	margin-bottom: 40px;
}

.page_subhead02 {
	font-size: 22px;
	color: #333;
	border-bottom: 2px solid #f8a1a6;
	border-left: none !important;
	/* 二重線を消すために基本スタイルの線を消去 */
	padding-left: 0 !important;
	padding-bottom: 10px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	border-left: none !important;
	padding-left: 0 !important;
}

/* 不要なリストアイコンを削除 */
.list_disc.w24 li::before {
	display: none !important;
}

.page_subhead02::before {
	content: "";
	width: 8px;
	height: 24px;
	background: #f8a1a6;
	margin-right: 12px;
	border-radius: 4px;
}

.list_disc.w24 {
	list-style: none;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 15px;

	padding: 15px 15px 15px 0;
}

.list_disc.w24 li {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.list_disc.w24 li a {
	display: block;
	padding: 18px 20px;
	font-size: 17px;
	color: #444;
	text-decoration: none;
	position: relative;
	padding-left: 65px;
}

.list_disc.w24 li a::before {
	content: "Q";
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	background: #f8a1a6;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: bold;
	box-shadow: 0 2px 6px rgba(248, 161, 166, 0.3);
	line-height: 1;
	/* 行間の調整 */
	text-indent: 0;
}

.list_disc.w24 li:hover {
	border-color: #f8a1a6;
	background: #fffafb;
	transform: translateX(5px);
}

/* 詳細画面 */
.page_text .text02 {
	background: #fdfdfd;
	padding: 25px;
	border-radius: 12px;
	border: 1px solid #f0f0f0;
	font-size: 17px;
	line-height: 1.8;
	color: #444;
	white-space: pre-wrap;
	box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.02);
}

.btn_white {
	display: inline-flex;
	align-items: center;
	padding: 15px 30px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 50px;
	color: #666;
	font-weight: bold;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn_white:hover {
	background: #f9f9f9;
	border-color: #bbb;
}

/* SP Adjustments */
@media screen and (max-width: 767px) {
	.help_search_form {
		padding: 20px;
	}

	.help_search_form_input .input_text,
	.help_search_form_btn .btn_lightblue {
		height: 50px;
		font-size: 15px;
	}

	.page_subhead02 {
		font-size: 19px;
	}

	.list_disc.w24 {
		grid-template-columns: 1fr;
	}

	.list_disc.w24 li a {
		font-size: 15px;
		padding: 15px 15px 15px 65px;
	}

	.page_text .text02 {
		font-size: 15px;
		padding: 20px;
	}
}