

/* --------------------------------------------------
   見出しを画像から文字に（2026-09-14）
   ゆうあい3院の h2.title-ptn1（css/site-common.css）と同じ見た目。
   ・.color1 茶色／.color2 オレンジで少し大きく／.color3 オレンジ地に白抜き
   ・.line は1行ごとにオレンジの点線（画像では一番下の行だけだった所も揃える）
   ・.ttl-text は画像用に決めてあった囲みの幅（574〜823px）を外す（余白はそのまま）
   ・css/common.css は @import で読まれ ?ver が付かないため、ここ（style.css）に書く
   -------------------------------------------------- */
h1.title-ptn1 , h2.title-ptn1 {
	border: none;
	padding: 0;
	font-size: 2.6em;
	font-weight: 600;
	line-height: 1.6;
	margin: 0 0 1em;
	font-feature-settings: "palt";
}
h1.title-ptn1 .color1 , h2.title-ptn1 .color1 {
	color: #94744f;
}
h1.title-ptn1 .color2 , h2.title-ptn1 .color2 {
	color: #de9600;
	font-size: 1.2em;
}
h1.title-ptn1 .color3 , h2.title-ptn1 .color3 {
	background: #de9600;
	color: #fff;
	padding: 0 0.2em;
}
h1.title-ptn1 .line , h2.title-ptn1 .line {
	display: block;
	width: fit-content;
	margin: 0 auto 0.2em;
	border-bottom: dotted 3px orange;
}
h1.title-ptn1 br , h2.title-ptn1 br {
	display: none;
}
h1.title-ptn1 .sub , h2.title-ptn1 .sub {
	font-size: .8em;
}
@media (max-width: 767px) {
	h1.title-ptn1 , h2.title-ptn1 {
		font-size: 1.6em;
	}
}
.text-center.ttl-text {
	width: auto !important;
	max-width: 100% !important;
}
.text-center.ttl-text h2.title-ptn1 {
	margin-bottom: 0;
}
.fukidashi3 {
	width: 153px;
	margin: 0 auto;
	position: relative;
	left: -5%;
}
/* スマホで「くださ／い！」と1文字だけ次の行に落ちるので、言葉のかたまりを割らない（2026-09-14） */
h2.title-ptn1 .nowrap {
	display: inline-block;
	white-space: nowrap;
}
