/* Himekuri Header Contact - front styles */

/* ヘッダーに移動するまでは隠しておく */
#hhc[hidden] {
	display: none;
}

.hhc {
	margin-left: auto;       /* SWELLのヘッダー内でロゴの反対側(右)へ寄せる */
	align-self: center;
	padding: 14px 0 14px 32px;
	box-sizing: border-box;
	line-height: 1.4;
}

/* キャッチコピー(均等割付で幅いっぱいに) */
.hhc-catch {
	margin: 0 0 6px;
	color: var(--hhc-main, #b71c1c);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .08em;
	text-align: justify;
	text-align-last: justify;
}

.hhc-row {
	display: flex;
	align-items: center;
	gap: 24px;
}

/* 電話番号 */
.hhc-tel {
	display: flex;
	align-items: center;
	gap: 4px;
	color: var(--hhc-main, #b71c1c) !important;
	text-decoration: none !important;
	transition: opacity .2s ease;
}

.hhc-tel:hover {
	opacity: .8;
}

.hhc-number {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: .02em;
	font-feature-settings: "tnum";
	white-space: nowrap;
}

.hhc-tel .hhc-icon {
	width: 19px;
	height: 19px;
	flex: 0 0 auto;
}

/* 営業時間(均等割付) */
.hhc-hours {
	margin: 6px 0 0;
	color: var(--hhc-main, #b71c1c);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .08em;
	text-align: justify;
	text-align-last: justify;
}

/* ボタン */
.hhc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 1px solid var(--hhc-accent, #b39259);
	color: var(--hhc-accent, #b39259) !important;
	background: transparent;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: .14em;
	padding: 16px 26px;
	text-decoration: none !important;
	white-space: nowrap;
	transition: background .25s ease, color .25s ease;
}

.hhc-btn .hhc-icon {
	width: 14px;
	height: 14px;
	flex: 0 0 auto;
}

.hhc-btn:hover {
	background: var(--hhc-accent, #b39259);
	color: #fff !important;
}

/* ============ サイズ違い ============ */

/* ゆったり(ゴールドカーレスキュー様のような背の高いヘッダー向け) */
.hhc-size-l { padding-top: 20px; padding-bottom: 20px; }
.hhc-size-l .hhc-catch  { font-size: 12px; margin-bottom: 8px; }
.hhc-size-l .hhc-number { font-size: 30px; }
.hhc-size-l .hhc-tel .hhc-icon { width: 24px; height: 24px; }
.hhc-size-l .hhc-hours  { font-size: 12px; margin-top: 8px; }
.hhc-size-l .hhc-btn    { font-size: 15px; padding: 22px 30px; }
.hhc-size-l .hhc-row    { gap: 28px; }

/* コンパクト(ナビ横並びなど幅に余裕がないヘッダー向け) */
.hhc-size-s { padding-top: 8px; padding-bottom: 8px; }
.hhc-size-s .hhc-catch  { font-size: 10px; margin-bottom: 4px; }
.hhc-size-s .hhc-number { font-size: 20px; }
.hhc-size-s .hhc-tel .hhc-icon { width: 16px; height: 16px; }
.hhc-size-s .hhc-hours  { font-size: 10px; margin-top: 4px; }
.hhc-size-s .hhc-btn    { font-size: 12px; padding: 12px 18px; letter-spacing: .1em; }
.hhc-size-s .hhc-row    { gap: 16px; }

/* PCではtel:リンクのカーソルを通常に(誤クリック感の軽減) */
@media (min-width: 960px) {
	.hhc-tel {
		pointer-events: none;
	}
}

/* スマホ */
@media (max-width: 959px) {
	.hhc {
		display: none;
	}

	.hhc.hhc-show-sp {
		display: block;
		margin: 6px auto 4px;
		padding: 6px 0;
		text-align: center;
	}

	.hhc-show-sp .hhc-row {
		justify-content: center;
		gap: 12px;
	}

	.hhc-show-sp .hhc-number { font-size: 20px; }
	.hhc-show-sp .hhc-catch,
	.hhc-show-sp .hhc-hours { font-size: 10px; }
	.hhc-show-sp .hhc-btn { padding: 10px 16px; font-size: 12px; }
}
