/* ------------------------------
エラーメッセージの文字色
--------------------------------*/
.text_red {
	color: var(--color-red02);
}

.txt_required {
	display: inline-block;
	font-size: inherit;
	color: var(--color-red02);
	margin-left: 5px;
}

.caution.error_message {
	margin-top: 0px !important;
	margin-bottom: 10px !important;
}

/* ------------------------------
Validation.jsのエラーメッセージ表示用 
requiredクラスを元に作成
--------------------------------*/

/* エラー時はValidation.jsでblockに変更 */
.errBox {
	display: none;
}

.mo-contact .p-contact .msgRequired {
	color: var(--color-red02);
	font-size: 10px;
	line-height: 1.5;
	margin: 10px 0 0;
}

@media (min-width: 768px) {
	.mo-contact .p-contact .msgRequired {
		font-size: 14px;
		margin: 10px 0 0;
	}
}

/* ------------------------------
Select部
--------------------------------*/
.custom-select-display {
	cursor: pointer;
	padding: 17px 35px 19px 15px;
	border: none;
	background-color: var(--color-white01, #fff);
	color: var(--color-black02, #44403f);
	position: relative;
	z-index: 1;
	width: 100%;
	box-sizing: border-box;
	font-size: 14px;
}

.custom-select-options {
	display: none;
	position: absolute;
	z-index: 10;
	background-color: var(--color-white01, #fff);
	/* border: none; 削除 */
	width: 100%;
	max-height: 200px;
	overflow-y: auto;
	margin-top: 4px;
	box-sizing: border-box;
	color: var(--color-black02, #44403f);
}

.custom-select-options li {
	padding: 10px 15px;
	cursor: pointer;
	line-height: 1.6;
}

.custom-select-options li:hover {
	background-color: #f0f0f0;
}

.custom-select-options li.selected {
	background-color: #e6e6e6;
}

.selectwrap.open .custom-select-options {
	display: block;
}

@media (min-width: 768px) {
	.custom-select-display {
		padding: 24px 60px 24px 30px;
		font-size: 16px;
		letter-spacing: 0;
	}
}

