<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";


/* 会社情報（ロゴ＋住所）エリア */
.tmc-infomation-area {
	padding: 40px 20px 20px;
	text-align: center;
}

/* ロゴ */
.tmc-infomation-area img {
	display: block;
	margin: 0 auto;
	width: 120px;
}

/* ロゴ下の会社名 */
.tmc-infomation-area .company-name {
	margin: 5px 0px 0px;
	color: #0088a9;
	font-size: 18px;
	font-weight: 600;
}

.tmc-infomation-area p {
	margin: 35px 0px 20px;
	font-size: 16px;
	font-weight: 600;
	color: #666666;
}

/* 電話番号と営業時間部分 */
.tmc-business-hours-area {
	justify-content: center;
	align-items: center;
	margin-bottom: 35px;
	padding: 30px 20px;
	width: 99vw;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	background-color: #f5f5f5;
	box-sizing: border-box;
}

/* 電話番号全体 pタグ */
.tmc-business-hours-area p {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 10px;
	letter-spacing: 0.1em;
	font-size: 16px;
}

/* TEL */
.tmc-business-hours-area p .tel-text {
	margin-right: 15px;
}

/* 電話番号のみ */
.tmc-business-hours-area p .accent-color-font-title {
	color: #0088a9;
	/* 青系アクセント */
	font-size: clamp(24px, 3vw, 34px);
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	letter-spacing: 0.1em;
}

.tmc-business-hours-area ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: inline-flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

.tmc-business-hours-area li {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 14px;
}

.tmc-business-hours-area i {
	color: #009fe3;
	font-size: 10px;
}

/* アクセス方法 */
.access-flex-area {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	margin: 20px 0 100px;
	flex-wrap: wrap;
}

.access-flex-area&gt;div {
	flex: 1;
	min-width: 280px;
	display: flex;
	flex-direction: column;
}

/* リスト用の四角形修飾 */
.fa-solid.fa-square {
	color: #0b789e;
	/* アイコンの色 */
	margin-right: 6px;
	font-size: 16px;
}


.access-flex-area h3 {
	display: flex;
	align-items: center;
	text-align: left;
	font-size: 24px;
	font-weight: 400;
	letter-spacing: 0.15em;
	line-height: 1em;
	color: #221815;
}

/* 電車でお越しの方・車でお越しの方 div部分 */
.access-flex-area div&gt;div {
	display: flex;
	flex: 1;
	align-items: center;
	/* 上下中央揃え */
	justify-content: start;
	/* 左右中央にしたい場合（任意） */
	text-align: left;
	/* 複数行の場合に中央寄せにしたい場合（任意） */
	padding: 15px;
	background-color: #e8f3f5;
	color: #0088a9;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.6;
	/* 高さを親と合わせる */ 

}

@media screen and (min-width:768px) and (max-width:1049.99px) {
	
}

@media screen and (max-width: 767px) {
	.tmc-business-hours-area p {
		margin-bottom: 30px;
	}
}

</pre></body></html>