@charset "UTF-8";

.voice_box {
	position: relative;
	transition: 0.2s;
}

.voice_box img{
	border: 1px solid #e0e0e0;
}

.voice_box figcaption{
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;

	color: #fff;
	background: rgba(0, 138, 225, 0.85);

	width: 100%;
	height: 77%;
	padding: 10px;
	font-size: 1.3rem;

	transition: 0.2s;
	opacity: 0;
}

.voice_box .text_area {
	margin-top: 5px;
}

.voice_box:hover .-img > img{
	transform: scale(1.05);
}

.voice_box:hover .-detail {
	z-index: 2;
	opacity: 1;
}

/* WSYS-13291 【フロント】TOPとお客様の声ページ修正 20260212 M.Shimizu */
.layout-column.theme-col03 > .-col {
	width: 31%;
}

.layout-column.theme-col02 > .-col:not(:nth-of-type(2n)),
.layout-column.theme-col03 > .-col:not(:nth-of-type(3n)),
.layout-column.theme-col04 > .-col:not(:nth-of-type(4n)),
.layout-column.theme-col05 > .-col:not(:nth-of-type(5n)) {
	margin-right: 0;
}

/* voiceページで使用 */
.voice_filter_area {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 24px;
}

.voice_filter_area .voice_filter_wrapper {
	display: flex;
	gap: 16px;
}

.voice_filter {
	position: relative;
}

.voice_filter_btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	width: 160px;
	padding: 10px 10px 12px 24px;
	background: #fff;
	border: 2px solid #008ae1;
	border-radius: 100px;
	color: #008ae1;
	font-size: 1.6rem;
	font-weight: bold;
	cursor: pointer;
	transition: 0.2s;
}

.voice_filter_btn:hover,
.voice_filter_btn.is-active {
	background: #008ae1;
	color: #fff;
}

.voice_filter_btn i {
	width: 24px;
	height: 24px;
	border-radius: 100px;
	background: #008ae1;
	color: #fff;
	line-height: 24px;
	transition: 0.2s;
}

.voice_filter_btn:hover i,
.voice_filter_btn.is-active i {
	background: #fff;
	color: #008ae1;
}

.voice_filter_btn.is-active i {
	transform: rotate(180deg);
}

.voice_filter_list {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	min-width: 150px;
	margin-top: 4px;
	padding: 8px 0;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	list-style: none;
}

.voice_filter_list.is-open {
	display: block;
}

.voice_filter_list li button {
	display: block;
	width: 100%;
	padding: 8px 16px;
	background: none;
	border: none;
	color: #333;
	text-decoration: none;
	text-align: left;
	font-size: 1.4rem;
	cursor: pointer;
}

.voice_filter_list li button:hover,
.voice_filter_list li button.is-selected {
	background: #f0f8ff;
	color: #008ae1;
}

/* 国名検索 */
.voice_filter_area .search_hook_btn {
	display: flex;
	justify-content: space-between;
	position: relative;
	width: 355px;
	border: 2px solid #008ae1;
	border-radius: 100px;
	font-size: 1.6rem;
}

.voice_filter_area .search_hook_btn::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 100%;
	background: #008ae1;
	border-radius: 0 100px 100px 0;
}

.voice_filter_area .search_hook_btn input {
	width: 300px;
	padding: 10px 10px 12px 14px;
	border-radius: 100px;
	line-height: 2.4rem;
}

.voice_filter_area .search_hook_btn i {
	position: absolute;
	top: 50%;
	right: 18px;
	transform: translateY(-50%);
	z-index: 1;
	color: #fff;
	font-size: 2.4rem;
}

@media screen and (max-width: 768px) {
	.voice_box .text_area {
		margin-top: 5px;
		font-size: 15px;
		text-align: left;
	}
	.voice_box figcaption {
		height: 78%;
	}
}