.daisen-brand-container {
	display: flex;
}

.daisen-logo {
/* 共通設定 */
	font-family: 'Noto Sans JP', sans-serif;
	color: #1e4d92; /* 元ロゴの深い青色 */
	font-style: italic; /* 斜体 */
	display: flex;
	align-items: baseline;
	letter-spacing: -0.02em; /* 文字間を詰めて幾何学的な印象を強める */
	position: relative;
	user-select: none; /* テキストの選択を無効化 */
}

/* 「ダイセン」の部分 */
.main-text {
	font-size: 1.2rem; /* 非常に大きく表示 */
	font-weight: 900; /* 極太 (Black) */
	line-height: 1;
	margin-right: 0.25em; /* 「Webシステム」との間隔 */
	position: relative;
}

/* 赤い四角形のアクセント (擬似要素) */
.main-text:before {
	content: '';
	position: absolute;
	bottom: -0.05em; /* 「ダ」の左下に配置 */
	left: -0.2em;
	width: 0.12em; /* フォントサイズに対する相対的な大きさ */
	height: 0.12em;
	background-color: #bb2233; /* 元ロゴの深紅 */
	border-radius: 0.02em; /* わずかに角を丸める */
}

/* 「Webシステム」の部分 */
.sub-text {
	font-size: 1.0rem; /* 「ダイセン」よりは小さく */
	font-weight: 700; /* 太字 (Bold) */
	line-height: 1.1;
}