@charset "utf-8";
/* CSS Document */

.dm {}

.recCatch {
	text-align: center;
	margin-bottom: 20px;
}
.recCatch p {
	font-family: serif;
	font-size: clamp(1.0625rem, 0.25rem + 4.0625vw, 1.875rem);
	font-weight: 500;
	color: #ee2a98;
	line-height: 1.4;
	font-feature-settings: 'palt' 1;
	text-box-trim: trim-both;
}

.rec-guide th,
.rec-guide td {
	font-size: 15px;
}
.rec-guide td {
	line-height: 1.8;
	text-box-trim: trim-both;
}
.rec-guide td span {
	color:#EC69A0;
	font-weight:bold;
	margin-right:10px;
}
.rec-guide td .rec-salary {
	font-size: 18px;
}


/* 求人お問い合わせボタン（横並び） */
.rec-contact {
	display: flex;
	gap: 8px;
	justify-content: space-between;
	width: 100%;
	box-sizing: border-box;
}

.rec-contact > div {
	flex: 1;
	min-width: 0; /* 折り返し防止 */
}

.rec-contact > div a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	border-radius: 8px;
	font-weight: bold;
	font-size: 13px;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
	transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
	text-align: center;
	white-space: nowrap;
	box-sizing: border-box;
	padding: 12px 4px;
}

/* ホバー・アクティブ時の演出 */
.rec-contact > div a:active {
	transform: translateY(2px);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
}

/* 各ボタンの個別配色・アイコン設定 */
/* LINE応募 */
.rec-contact .rc--line a {
	background: linear-gradient(135deg, #06C755 0%, #05B34C 100%);
}
.rec-contact .rc--line a::before {
	font-family: "Material Icons";
	content: "\e253"; /* chat icon */
	font-size: 21px;
}

/* フリーダイヤル */
.rec-contact .rc--tel1 a {
	background: linear-gradient(135deg, #FF5A5F 0%, #E0484D 100%);
}
.rec-contact .rc--tel1 a::before {
	font-family: "Material Icons";
	content: "\e0cd"; /* phone icon */
	font-size: 21px;
}

/* 求人担当直通 */
.rec-contact .rc--tel2 a {
	background: linear-gradient(135deg, #FF9F00 0%, #E68F00 100%);
}
.rec-contact .rc--tel2 a::before {
	font-family: "Material Icons";
	content: "\e32c"; /* stay_current_portrait / mobile icon */
	font-size: 21px;
}