
	.hamburgerBox {
		display: none;
		position: absolute;
		z-index: 999;
		left: 0px; top: 0px;
		width: 46px;
		height: 38px;
		border: solid #4d4d4d 2px;
		background-color: gainsboro;
		cursor: pointer;
		text-align: center;
	}
	.hamburgerBox:hover {
		background-color: #4d4d4d;
	}
	.hamburgerBox:hover line {
		stroke: gainsboro;
	}
	.hamburgerMenuDialog {
		display: none;
		position: absolute; z-index: 999;
		left: 0px; top: 0px;
		width: 400px;
		height: 500px;
		padding-top: 4px;
		border: solid #4d4d4d 2px;
		border-end-end-radius: 20px;
		background-color: #F2F2F2;
		text-align: left;
	}
	.dialogCloseButton {
		left: calc(100% - 40px - 2px);
		position: absolute;
		top: 0px;
		width: 40px;
		height: 40px;
		background-color: gainsboro;
		border: 2px #4d4d4d solid;
		cursor: pointer;
	}
	.dialogCloseButton:hover {
		background-color: #4d4d4d;
	}
	.dialogCloseButton:hover line {
		stroke: white;
	}
	.hamburgerMenuDialogClose {
		border-top: 0;
		border-right: 0;
	}
	ul.hamburgerMenuList {
		list-style: none;
		font-size: 36px;
		padding-left: 10px;
	}
	ul.hamburgerMenuList img {
		width: 90px;
		margin-right: 10px;
		vertical-align: bottom;
	}
	ul.hamburgerMenuList > li {
		border-bottom: solid 3px #4d4d4d;;
		margin-top: 16px;
		height: 66px;
		cursor: pointer;
	}
	ul.hamburgerMenuList > li:hover {
		background-color: silver;
	}
	/**
	 * 移動可能ダイアログ書式
	 */
	#draggableDialog {
		z-index: 1000;
		position: absolute;
		padding: 0;
		top: 10px; 
		right: 10px;
		width: 320px;
		height: 70%;
		border: 2px #4d4d4d solid;
		background-color: white;
	}
	#draggableDialogTitle {
		background-color: #297ae2;
		color: white;
		display: inline-block;
		height: 44px;
		line-height: 44px;
		font-size: 1.5rem;
		font-weight: bold;
		text-align: center;
		width: calc(100% - 41px);
		position: relative;
		left: -0.1px;
	}
	#draggableDialogFrame {
		width: 100%;
		height: calc(100% - 45px);
		border: none;
	}
	.drag {
		cursor: move;
		z-index: 1001;
	}
	div.jumplistDialog {
		z-index: 1000;
		display: none;
		position: absolute;
		width: 500px;
		height: 100%;
		border: 2px #4d4d4d solid;
		background-color: white;
	}
	div.jumplistDialog > iframe {
		width: 100%;
		height: 100%;
		border: none;
	}
	.active {
		display: block;
	}
	