@charset "utf-8";

.symptomBottomContactArea {
	margin-bottom: 50px;
}

.symptomBottomContactWrap {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.symptomBottomContactBtn {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	border-radius: 12px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
	padding: 10px 20px;
	overflow: hidden;
	width: calc((100% - 20px)/2);
}

.symptomBottomContactTtl {
	font-size: 16px;
	font-weight: bold;
	margin: 0 !important;
}

.symptomBottomContactCaption {
	font-size: 12px;
	line-height: 1.4;
	margin: 0 !important;
}

.symptomBottomContactCaption span {
	display: inline-block;
	background: #fff;
	font-weight: bold;
	border-radius: 4px;
    padding: 3px 6px;
    margin-right: 6px;
    line-height: 1em;
}

/* 電話ボタン（オレンジ） */
.symptomBottomContactTel {
	background: #FDAA24;
	color: inherit;
}

.symptomBottomContactNum {
	position: relative;
	font-size: 35px;
	line-height: 1.2em;
	font-weight: bold;
	margin: 0 !important;
	padding-left: 35px;
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.symptomBottomContactTel .symptomBottomContactNum::before {
	content: "";
	position: absolute;
	left: 0;
	top: 46%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url("https://www.320320.net/img/symptom/icon_tel_blk.png");
}

/* LINEボタン（グリーン） */
.symptomBottomContactLine {
	background: #009944;
	padding: 15px 5px 15px 70px;
	color: #fff;
}

.symptomBottomContactLine::before {
	content: "";
	position: absolute;
	left: 25px;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url("https://www.320320.net/img/common/icon_line.png");
}

.symptomBottomContactLine .symptomBottomContactTtl {
	font-size: 22px;
	margin-bottom: 5px !important;
}

.symptomBottomContactLine .symptomBottomContactCaption {
	font-size: 16px;
}

@media screen and (max-width: 767px) {
	.symptomBottomContactWrap {
		flex-direction: column;
	}

	.symptomBottomContactBtn {
		width: 100%;
		padding-left: 70px;
	}

	.symptomBottomContactTel {
		padding: 15px;
	}

	.symptomBottomContactLine .symptomBottomContactTtl {
		font-size: 5.5vw;
	}

	.symptomBottomContactNum {
		font-size: 10vw;
	}
}