/* ヘッダ */
.yagasuri-bar {
	height: 32px;
	background-image: url('/yagasuri.png');
	background-repeat: repeat-x;
	background-size: auto 100%;
}

/* ヘッダー全体のスタイル */
.header {
	background: linear-gradient(135deg, #4a90e2 0%, #357abd 50%, #2c5aa0 100%);
	margin-bottom: 2rem;
}

.header .navbar {
	border: none;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	background: linear-gradient(135deg, #357abd 0%, #2c5aa0 100%) !important;
}

.header .navbar-brand {
	transition: transform 0.2s;
}

.header .navbar-brand:hover {
	transform: scale(1.05);
}

/* メニュー文字 */
h4 {
	color: #1b809e;
	font-weight: 600;
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
}

h4 a {
	text-decoration: none;
	transition: color 0.3s;
}

h4 a:hover {
	color: #0d6efd;
}

/* インデント */
.indent {
	text-indent: 1em;
	color: #6c757d;
}

/* メニューの枠線 */
.navbar {
	border: none;
}

/* Bootstrap v5.3.0対応の追加スタイル */
.navbar-toggler {
	border-color: rgba(255,255,255,.3);
}

.navbar-toggler:focus {
	box-shadow: 0 0 0 0.25rem rgba(255,255,255,.25);
}

.nav-link {
	color: rgba(255,255,255,.9) !important;
	font-weight: 500;
	transition: all 0.3s;
	border-radius: 0.25rem;
	margin: 0 0.25rem;
}

.nav-link:hover {
	color: #fff !important;
	background-color: rgba(255,255,255,.1);
	transform: translateY(-2px);
}

.nav-link i {
	margin-right: 0.25rem;
}

/* セクション見出し */
h2.bar {
	padding: 0.5em 1em;
	line-height: 1.5;
	border-left: 10px solid #35a3b1;
	border-bottom: 2px solid #35a3b1;
	background: linear-gradient(to right, rgba(53,163,177,0.1), transparent);
	border-radius: 0.25rem;
	margin-top: 2rem;
	margin-bottom: 1rem;
}

/* カードのスタイル改善 */
.card {
	border: none;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	transition: transform 0.3s, box-shadow 0.3s;
	margin-bottom: 1.5rem;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.card-header {
	font-weight: 600;
	font-size: 1.1rem;
	padding: 1rem 1.5rem;
}

/* コンテンツエリア */
.container {
	max-width: 1200px;
}

/* フッター */
.footer {
	margin-top: 4rem;
}

/* リンクのスタイル */
a {
	transition: color 0.3s;
}

a:hover {
	text-decoration: underline;
}

/* カード内のリスト */
.card-body ul {
	margin-bottom: 0;
	padding-left: 1.5rem;
}

.card-body ul li {
	margin-bottom: 0.5rem;
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
	.header .container {
		padding: 1rem;
	}

	h1.display-4 {
		font-size: 2rem;
	}

	.nav-link {
		padding: 0.5rem 1rem !important;
	}
}
