@charset "UTF-8";
/**
 * ヘッダーのスタイル定義
 */

/* ヘッダーの外枠 */
header {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	color: #444;
	max-height: 60px;
	min-height: 60px;
	overflow: hidden;
	position: fixed;
	top: 0;
	width: calc(100% - 10px);
	z-index: 50;
}
	/* ヘッダーの本体 */
	header #header {
		margin: 0 auto;
		max-width: 1200px;
		padding: 0;
	}
/* ヘッダーのコンテンツ部 */
header #headerMain {
	display: flex;
	height: 60px;
	margin: 0 2px;
	max-height: 60px;
}
	/* ヘッダーのコンテンツ部 */
	header #headerMain * {
		align-items: center;
		display: flex;
	}
		/* ヘッダーのロゴ画像 */
		header #headerMain .titles .logo img {
			padding: 0 10px 0 0;
			width: 64px;
		}
		/* ヘッダーのタイトル本文 */
		header #headerMain .titles .title h1 {
			font-size: 22px;
			height: auto;
			margin: 0;
			padding: 0 10px 0 0;
		}
		/* ヘッダーの現在日時 */
		header #headerMain .titles .timestamp {
			color: #777;
			font-size: 18px;
		}
	/* ヘッダーのボタン領域 */
	header #headerMain .buttons {
		margin-left: auto;
	}
		/* ヘッダーのボタンリスト */
		header #headerMain .buttons ul {
			padding: 0;
			margin: 0;
			list-style: none;
		}
			/* ヘッダーのボタンリスト項目 */
			header #headerMain .buttons ul li {
				cursor: pointer;
				text-align: center;
				padding: 5px;
				margin: 0;
				width: 100%;
			}
				/* ヘッダーのボタンリスト項目 */
				header #headerMain .buttons ul li:hover {
					background-color: #ffc;
				}
				/* ヘッダーのボタンリスト項目 (メニューボタン) */
				header #headerMain .buttons ul li.menu {
					z-index: 100;
				}
				/* ヘッダーのボタンリスト項目 (非表示) */
				header #headerMain .buttons ul li.hide {
					display: none;
				}
/* ヘッダーのタイトル領域 (スマホモード時) */
@media (max-width:767px) {
	/* ヘッダーのタイトル領域 */
	header #headerMain .titles {
		display: grid;
		grid-template-columns: 52px auto;
		grid-template-rows: 35px 25px;
	}
		/* ヘッダーのロゴ画像 */
		header #headerMain .titles .logo img {
			width: 42px;
		}
		/* ヘッダーのタイトル本文 */
		header #headerMain .titles .title h1 {
			font-size: 20px;
		}
			/* 幅470px以下の場合 */
			@media (max-width: 470px) {
				/* ヘッダーのタイトル本文 */
				header #headerMain .titles .title h1 {
					font-size: 18px;
					line-height: 15px;
				}
			}
			/* 幅340px以下の場合 */
			@media (max-width: 340px) {
				/* ヘッダーのタイトル本文 */
				header #headerMain .titles .title h1 {
					font-size: 15px;
					line-height: 12px;
				}
			}
		/* ヘッダーの現在日時 */
		header #headerMain .titles .timestamp {
			grid-column: 1 / 3;
		}
			/* 幅425px以下の場合 */
			@media (max-width: 425px) {
				/* ヘッダーの現在日時 */
				[data-lang='kr'] header #headerMain .titles .timestamp {
					font-size: 15px;
				}
			}
			/* 幅412px以下の場合 */
			@media (max-width: 412px) {
				/* ヘッダーの現在日時 */
				header #headerMain .titles .timestamp {
					font-size: 15px;
				}
			}
			/* 幅380px以下の場合 */
			@media (max-width: 380px) {
				/* ヘッダーの現在日時 */
				[data-lang='kr'] header #headerMain .titles .timestamp {
					font-size: 12px;
					line-height: 11px;
				}
			}
			/* 幅368px以下の場合 */
			@media (max-width: 368px) {
				/* ヘッダーの現在日時 */
				header #headerMain .titles .timestamp {
					font-size: 12px;
					line-height: 11px;
				}
			}
			/* 幅335px以下の場合 */
			@media (max-width: 335px) {
				/* ヘッダーの現在日時 */
				[data-lang='kr'] header #headerMain .titles .timestamp {
					font-size: 10.5px;
				}
			}
			/* 幅325px以下の場合 */
			@media (max-width: 325px) {
				/* ヘッダーの現在日時 */
				[data-lang='ja'] header #headerMain .titles .timestamp,
				[data-lang='tc'] header #headerMain .titles .timestamp,
				[data-lang='sc'] header #headerMain .titles .timestamp {
					font-size: 11px;
				}
			}
}

/* ヘッダーの｢メニュー｣を開いたときにオーバーレイ表示する領域 */
#menuLayer {
	background-color: rgba(0, 0, 0, 0.5);
	display: none;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 20;
}
	/* オーバーレイ領域内のメニュー要素を中央寄せするための外枠領域 */
	#menuLayer .menu-outer {
		align-items: center;
		display: flex;
		justify-content: center;
		width: 100%;
	}
	/* メニュー領域 */
	#menuLayer .menu {
		background-color: #fff;
		border: 1px solid #5b3;
		width: 1210px;
	}
		/* ヘッダーの｢メニューリスト｣の内容 */
		#menuLayer .menu ul {
			margin: 0;
			padding: 70px 10px 10px 10px;
		}
			/* ヘッダーの｢メニューリスト｣の各項目 */
			#menuLayer .menu ul li {
				border-bottom: 1px solid #5b3;
				list-style: none;
			}
				/* ヘッダーの｢メニューリスト｣のリンク要素 */
				#menuLayer .menu ul li a {
					color: inherit;
					display: block;
					text-decoration: none;
					padding: 10px 0;
				}