/* フルスクリーンアイコン */
.full-screen-icon {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: rgba(0, 0, 0, 0.1);
	color: #fff;
	border: none;
	width: 24px;
	height: 24px;
	transition: background-color 0.3s;
	z-index: 1000;
	cursor: pointer;
	display: none;
}

/* フローティングメニュー */
.floating-menu {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 80%;
	transform: translate(-50%, -50%);
	background-color: rgba(0, 0, 0, 0.8);
	display: none;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	box-sizing: border-box;
}

/* フローティングメニュータイトル */
.floating-menu-title {
	font-size: 3vw;
	color: #fff;
	text-shadow: 1px 1px 2px rgb(0, 0, 0);
}

/* フローティングメニューアイテム */
.floating-menu-item {
	flex: 1 0 10%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	display: flex;
	cursor: pointer;
	margin: 10px;
}

/* フローティングメニューアイコン */
.floating-menu-icon {
	background-color: hsla(0, 0%, 0%, 0.5);
	color: #fff;
	border: none;
	border-radius: 35%;
	width: 10vw;
	max-width: 150px;
	height: auto;
	max-height: 150px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	transition: background-color 0.3s;
	padding: 10px;
}

/* レイヤーアイコンのスタイル */
.floating-menu-icon-layer {
	background-color: hsla(0, 100%, 50%, 0.5);
}

/* レイヤーアイコンのホバー時のスタイル */
.floating-menu-icon-layer:hover {
	background-color: hsla(0, 100%, 20%, 0.5);
}

/* 計測アイコンのスタイル */
.floating-menu-icon-measurement {
	background-color: hsla(177, 100%, 50%, 0.5);
}

/* 計測アイコンのホバー時のスタイル */
.floating-menu-icon-measurement:hover {
	background-color: hsla(177, 100%, 20%, 0.5);
}

/* 操作ガイドボタンのスタイル */
.floating-menu-icon-help {
	background-color: hsla(129, 100%, 50%, 0.5);
}

/* 操作ガイドボタンのホバー時のスタイル */
.floating-menu-icon-help:hover {
	background-color: hsla(129, 100%, 20%, 0.5);
}

/* 作図アイコンのスタイル */
.floating-menu-icon-cad {
	background-color: hsla(296, 100%, 50%, 0.5);
}

/* 作図アイコンのホバー時のスタイル */
.floating-menu-icon-cad:hover {
	background-color: hsla(297, 100%, 16%, 0.5);
}

/* 視点アイコンのスタイル */
.floating-menu-icon-navigation {
	background-color: hsla(35, 100%, 50%, 0.5);
}

/* 視点アイコンのホバー時のスタイル */
.floating-menu-icon-navigation:hover {
	background-color: hsla(45, 100%, 26%, 0.5);
}

/* 下部ナビゲーションツールバー */
.bottom-bar {
	position: absolute;
	bottom: 0px;
	right: 0px;
	background-color: #1A2B3C;
	color: #fff;
	border: none;
	width: 170px;
	height: 50px;
	font-size: 24px;
	display: none;
	/* 非表示 */
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	transition: background-color 0.3s;
	z-index: 1000;
	clip-path: polygon(20% 0, 100% 0%, 100% 100%, 0% 100%);
}

/* ポインタ情報バー */
.pointer-info-bar {
	position: absolute;
	bottom: 0px;
	left: 0px;
	background-color: transparent;
	color: #000000;
	border: none;
	height: 20px;
	font-size: 10px;
	display: flex;
	align-items: center;
	padding-left: 10px;
	z-index: 1000;
	font-weight: bold;
	text-shadow: 1px 1px 1px rgb(202, 202, 202),
		1px -1px 1px rgb(202, 202, 202),
		-1px 1px 1px rgb(202, 202, 202),
		-1px -1px 1px rgb(202, 202, 202);
}

/* フローティングメニューを開くアイコン */
.floating-menu-open-icon {
	position: absolute;
	bottom: 10px;
	right: 10px;
	background-color: rgba(0, 0, 0, 0.1);
	color: #fff;
	border: none;
	width: 32px;
	height: 32px;
	transition: background-color 0.3s;
	z-index: 1000;
	cursor: pointer;
}

/* オープン状態のアイコン */
.floating-menu-open-icon.open {
	content: url('resources/icons/xmark.svg');
	/* メニューオープン時のアイコン画像 */
}

/* クローズ状態のアイコン */
.floating-menu-open-icon.close {
	content: url('resources/icons/menu-square.svg');
	/* メニュークローズ時のアイコン画像 */
}

/* ナビゲーションアイコン */
.navigation-icon {
	cursor: pointer;
	margin-left: 25px;
}

/* 計測ツールのアイコン */
.measurement-icon {
	margin-left: 10px;
	margin-top: 10px;
	background: rgba(255, 255, 255, 0.2);
}

/* 計測アイコンのホバー時のスタイル */
.measurement-icon:hover {
	background: rgba(255, 255, 255, 0.8);
}

/* ナビゲーションツールのアイコン */
.navigation-tool-icon {
	margin-left: 10px;
	margin-top: 10px;
	background: rgba(255, 255, 255, 0.2);
}

/* ナビゲーションツールアイコンのホバー時のスタイル */
.navigation-tool-icon:hover {
	background: rgba(255, 255, 255, 0.8);
}

/* ダイアログの背景を半透明にする */
.ui-dialog {
	background: rgba(0, 0, 0, 0.5) !important;
}

/* ダイアログのコンテンツの背景を半透明にする */
.ui-widget-content {
	background: rgba(0, 0, 0, 0.5) !important;
	color: white;
}

/* レイヤーダイアログのタイトルバーのスタイルを設定 */
.layer-dialog .ui-dialog-titlebar {
	height: 30px;
	/* タイトルバーの高さを設定 */
	font-size: 0.8em;
	/* フォントサイズを設定 */
	background: rgba(255, 0, 0, 0.7);
	/* 背景色を設定 */
	color: white;
	/* テキストの色を設定 */
	padding: 5px;
	/* パディングを設定 */
}

/* 操作ガイドダイアログのタイトルバーのスタイルを設定 */
.operation-guide-dialog .ui-dialog-titlebar {
	height: 30px;
	/* タイトルバーの高さを設定 */
	font-size: 0.8em;
	/* フォントサイズを設定 */
	background: rgba(55, 255, 0, 0.7);
	/* 背景色を設定 */
	color: white;
	/* テキストの色を設定 */
	padding: 5px;
	/* パディングを設定 */
}

/* 計測ダイアログのタイトルバーのスタイルを設定 */
.measurement-dialog .ui-dialog-titlebar {
	height: 30px;
	/* タイトルバーの高さを設定 */
	font-size: 0.8em;
	/* フォントサイズを設定 */
	background: hsla(177, 100%, 50%, 0.7);
	/* 背景色を設定 */
	color: white;
	/* テキストの色を設定 */
	padding: 5px;
	/* パディングを設定 */
}

/* 任意断面ダイアログのタイトルバーのスタイルを設定 */
.profile-dialog .ui-dialog-titlebar {
	height: 30px;
	/* タイトルバーの高さを設定 */
	font-size: 0.8em;
	/* フォントサイズを設定 */
	background: hsla(244, 100%, 50%, 0.7);
	/* 背景色を設定 */
	color: white;
	/* テキストの色を設定 */
	padding: 5px;
	/* パディングを設定 */
}

/* アバウトダイアログのタイトルバーのスタイルを設定 */
.about-dialog .ui-dialog-titlebar {
	height: 30px;
	/* タイトルバーの高さを設定 */
	font-size: 0.8em;
	/* フォントサイズを設定 */
	background: rgba(0, 21, 255, 0.7);
	/* 背景色を設定 */
	color: white;
	/* テキストの色を設定 */
	padding: 5px;
	/* パディングを設定 */
}

/* アバウトダイアログの背景を半透明にする */
.about-dialog .ui-dialog {
	background: rgba(255, 255, 255) !important;
}

/* アバウトダイアログのコンテンツの背景を半透明にする */
.about-dialog .ui-widget-content {
	background: rgba(255, 255, 255) !important;
	color: black;
}

/* リンクのシェアボタン */
.share-link-button {
	margin-right: 5px;
}