/**
 * お問い合わせページ：基本・電話・案内・共通見出し
 *
 * 2026-07-20：旧style.cssから内容を変更せず分割。
 */

/* =====================================
   お問い合わせページ用
===================================== */

.sd-contact-page {
	max-width: 920px;
	margin: 0 auto;
	color: #333;
	font-size: 16px;
	line-height: 1.8;
}

.sd-contact-page *,
.sd-contact-page *::before,
.sd-contact-page *::after {
	box-sizing: border-box;
}


/* =====================================
   電話問い合わせ
===================================== */

.sd-contact-phone {
	margin-bottom: 56px;
	padding: 34px 38px;
	background: #f8f6f1;
	border: 1px solid #ddd7ca;
	border-radius: 12px;
}

.sd-contact-phone__header {
	display: flex;
	align-items: center;
	gap: 22px;
	margin-bottom: 22px;
}

.sd-contact-phone__person {
	width: 96px;
	height: auto;
	flex: 0 0 auto;
}

.sd-contact-phone__intro {
	flex: 1;
}

.sd-contact-phone__label,
.sd-contact-section-heading__label {
	margin: 0 0 4px;
	color: #7e6837;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.sd-contact-phone h2,
.sd-contact-section-heading h2 {
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	color: #292929;
	font-size: 25px;
	line-height: 1.45;
}

.sd-contact-phone h2::before,
.sd-contact-phone h2::after,
.sd-contact-section-heading h2::before,
.sd-contact-section-heading h2::after {
	display: none;
}

.sd-contact-phone__hours {
	margin: 6px 0 0;
	font-size: 15px;
	font-weight: 700;
}

.sd-contact-phone__number {
	padding: 24px;
	background: #fff;
	border-radius: 9px;
	text-align: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.sd-contact-phone__tel {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	color: #b12626;
	font-size: clamp(30px, 5vw, 42px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.02em;
	text-decoration: none;
}

.sd-contact-phone__tel:hover {
	color: #8f1717;
	opacity: 0.85;
}

.sd-contact-phone__tel img {
	width: 54px;
	height: auto;
}

.sd-contact-phone__number p {
	margin: 10px 0 0;
	font-size: 14px;
	font-weight: 700;
}


/* =====================================
   案内ボタン
   PC：3列
   SP：1列
===================================== */

.sd-contact-page .sd-contact-guide {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	align-items: stretch;
	gap: 12px !important;
	width: 100%;
	margin: 20px 0 0;
	padding: 0;
}

/*
 WordPressが自動的にpタグを挿入した場合も、
 3列グリッドが崩れないようにする
*/
.sd-contact-page .sd-contact-guide > p {
	display: contents;
	margin: 0 !important;
	padding: 0 !important;
}

/* 自動挿入されたbrタグを非表示 */
.sd-contact-page .sd-contact-guide > br {
	display: none;
}

.sd-contact-page .sd-contact-guide .sd-contact-guide__link {
	position: relative;
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 100% !important;
	min-width: 0;
	max-width: none !important;
	min-height: 58px;
	margin: 0 !important;
	padding: 12px 34px 12px 16px;
	float: none !important;
	clear: none !important;
	background: #fff;
	border: 1px solid #b9ae94;
	border-radius: 6px;
	color: #4b412c;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
	text-decoration: none;
	transition:
		background-color 0.2s,
		border-color 0.2s;
}

.sd-contact-page .sd-contact-guide .sd-contact-guide__link::after {
	position: absolute;
	top: 50%;
	right: 15px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #7e6837;
	border-right: 2px solid #7e6837;
	content: "";
	transform: translateY(-50%) rotate(45deg);
}

.sd-contact-page .sd-contact-guide .sd-contact-guide__link:hover {
	background: #f3efe6;
	border-color: #7e6837;
	color: #4b412c;
}


/* =====================================
   電話問い合わせの注意事項
===================================== */

.sd-contact-notice {
	margin-top: 24px;
	padding: 20px 22px;
	background: #fff;
	border-left: 4px solid #7e6837;
}

.sd-contact-notice h3 {
	margin: 0 0 10px;
	padding: 0;
	border: 0;
	background: none;
	font-size: 17px;
}

.sd-contact-notice h3::before,
.sd-contact-notice h3::after {
	display: none;
}

.sd-contact-notice ul,
.sd-contact-before-form ul {
	margin: 0;
	padding-left: 1.4em;
}

.sd-contact-notice li,
.sd-contact-before-form li {
	margin: 5px 0;
}

.sd-contact-site-note {
	margin: 16px 0 0;
	color: #666;
	font-size: 13px;
}


/* =====================================
   共通見出し
===================================== */

.sd-contact-section-heading {
	margin-bottom: 24px;
	text-align: center;
}

.sd-contact-section-heading p {
	margin-top: 8px;
	margin-bottom: 0;
}

.sd-contact-section-heading__label {
	margin-bottom: 2px !important;
}


