/* 特許ページ専用 CSS */

/* メッセージを H1 と一緒に常時表示 */
.page-title-container {
	position: sticky;
	top: 140px; /* ヘッダーの高さ分 */
	background-color: #fff;
	font-weight: normal;
	z-index: 40;
	padding-top: 8px; /* メッセージ分の余白 */
	box-sizing: border-box;
}

.page-content p.sticky-message {
    width: 100%;
	margin: 0;
	max-width: none;       
	line-height: normal;   
	padding: 0 20px 8px 20px; 
	text-align: center;
	font-size: 20px;
	color: #1e3a8a;
}

.page-content h1 {
	width: 100%;
	box-sizing: border-box;
	padding: 20px;
	font-size: 28px;
	font-weight: normal;
	text-align: center;
}

.sticky-message .underline {
	text-decoration: underline;
}

.page-content h2 {
	font-size: 22px;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 20px;
	color: #333;
}

.page-content a {
	color: #007bff;
	text-decoration: underline;
	font-weight: normal;
	cursor: pointer;
	transition: color 0.3s ease-in-out;
	font-size: 20px;
}

.page-content p {
	font-size: 20px;
}

/* レスポンシブ対応 */

@media screen and (max-width: 768px) {
	.page-title-container {
		top: 140px; /* ヘッダー高さに合わせて調整 */
		padding-top: 4px;
	}

	.page-content p.sticky-message {
		width: 100%;
		margin: 0;
		max-width: none;
		line-height: normal;
		padding: 0 10px 4px 10px;
		text-align: center;
		font-size: 14px;
	}

	.page-content h1 {
		font-size: 20px;
		padding: 12px 10px;
	}
	
	.page-content h2 {
	    font-size: 18px;
	}
	
	.page-content a, 
	.page-content p {
	    font-size: 14px;
	}
	
	.about-us-table td,
	.about-us-table th {
		font-size: 14px;
		padding: 6px;
	}

	.about-us-table {
		margin: 0 auto;
		max-width: 100%;
	}
}