body{
	font-size:16px;
}
/* https://lopan.jp/css-animation-drawer/ */
.contents {
	margin-left: 52px;
	margin-right:8px;
	transition: transform .3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#navTgl:checked ~ .contents {
	transform: translateX(250px);
}

/* :::::: toggle button :::::: */
#navTgl {
	display: none;
}
label.open {
	cursor: pointer;
	position: fixed;
	top: 0;
	left: 0;
}
.open {
	z-index: 2;
	width: 48px;
	height: 48px;
	background: lightSeaGreen;
	transition: background .3s, transform .3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.open::before,
.open::after {
	content: "";
}
.open span,
.open::before,
.open::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	left: 30%;
	width: 40%;
	border-bottom: 2px solid white;
	transition: transform .3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.open::before {
	transform: translateY(-8px);
}
.open::after {
	transform: translateY(8px);
}
.close {
	z-index: 1;
	width: 100%;
	height: 100%;
	pointer-events: none;
	transition: background .3s;
}
label.close {
	cursor: pointer;
	position: fixed;
	top: 0;
	left: 0;
}
#navTgl:checked + .open {
	background: indianRed;
	transform: translateX(250px);
}
#navTgl:checked + .open span {
	transform: scaleX(0);
}
#navTgl:checked + .open::before {
	transform: rotate(45deg);
}
#navTgl:checked + .open::after {
	transform: rotate(-45deg);
}
#navTgl:checked ~ .close {
	pointer-events: auto;
	background: rgba(0,0,0,.3);
}

/* :::::: drawer menu :::::: */
.menu {
	z-index: 1;
	position: fixed;
	overflow: auto;
	top: 0;
	left: 0;
	width: 250px;
	height: 100%;
	margin: 0;
	padding: 10px;
	box-sizing: border-box;
	background: rgba(0,0,0,.6);
	transform: translateX(-100%);
	transition: transform .3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.menu h2,
.menu a {
	color: white;
}
.menu h2 {
	text-align: center;
}
.menu ul {
	margin: 0;
	padding: 0;
}
.menu li {
	font-size: .8em;
	line-height: 1.4;
}
.menu li:not(:first-child) {
	border-top: 1px solid rgba(255,255,255,.6);
}
.menu a {
	display: block;
	padding: 1em 2em;
	text-decoration: inherit;
	transition: background .3s;
}
.menu a:hover {
	background: black;
}
#navTgl:checked ~ .menu {
	transform: none;
}

/* 本体 */
body{
	font-family:-apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI","Noto Sans Japanese","ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
    font-size: 1.2em;
   background-color:#f0f0f0;
    margin: 0;
}
/* 各DIV */
#contMain{
    margin: 3px;
    border: 0px solid #f0a0a0;
}
#contNew{
    margin: 3px;
	border: 0px solid #c0c060;
	display: none;
}
#contOpen{
    margin: 3px;
    border: 0px solid #a0f0a0;
	display: none;
}
#contSaveVVC{
    margin: 3px;
    border: 0px solid #a0a0f0;
	display: none;
}
#contSaveHTML{
    margin: 3px;
    border: 0px solid #f0a0a0;
	display: none;
}
#contSaveXLSX{
    margin: 3px;
    border: 0px solid #f0a0a0;
	display: none;
}
#contLanguage{
    margin: 3px;
	border: 0px solid #c0c060;
	display: none;
}

/* 言語選択 */
label.rdoLanguage{
	position: relative;
}

/* メニュー */
#menuLanguage{
	xcolor:#000;
  display:none;
}

/* ファイル操作 */
#lblNewUrl, #btnNewUrl,#lblNewKeyword, #btnNewKeyword{
	font-size:1.3rem;
}

/* ファイルを開く */
#dropzone {
	background-color: #ffcccc;
	border: solid 3px #cc6666;
	color: #000;
	min-height: 100px;
	margin: 7px;
	padding: 20px;
}
#dropzone.dropover {
	background-color: #cff;
	border: solid 3px #699;
}
#progress_bar {
    margin: 10px 0;
    padding: 3px;
    border: 1px solid #000;
    font-size: 14px;
    clear: both;
    opacity: 0;
    -moz-transition: opacity 1s linear;
    -o-transition: opacity 1s linear;
    -webkit-transition: opacity 1s linear;
}
#progress_bar.loading {
    opacity: 1.0;
}
#progress_bar .percent {
    background-color: #99ccff;
    height: auto;
    width: 0;
}

/* 新規作成用のタブ */
#lblNewKeyword {
	margin-left:7px;
}
/* ラジオボタンを全て消す */
input[name="tab_item"] {
	display: none;
	}
	/* 選択されているタブのコンテンツのみを表示 */
	#tabNew1:checked ~ #tabNew1_content,
	#tabNew2:checked ~ #tabNew2_content{
	display: block;
	}
	/* 選択されているタブのスタイルを変える */
	div.tabNew input:checked + .tab_item {
	background-color: #9ec;
	color: #303030;
	}
	/* タブ切り替え全体のスタイル（任意） */
	div.tabNew {
	margin-top:1rem;
	margin-left:1rem;
	}
	/* タブのスタイル（任意） */
	.tab_item {
	padding:10px 45px;
	border: solid #ccc 1px;
	background-color: #f0f0f0;
	font-size: 1.4rem;
	line-height:1rem;
	color: #333;
	display:inline-block;
	font-weight: bold;
	transition: all 0.2s ease;
	margin:0;
	}
	.tab_item:hover {
	opacity: 0.75;
	}
	/* タブ切り替えの中身のスタイル（任意） */
	.tab_content {
	display: none; /* ←のみ必ず必要 */
	border:solid #ccc 1px;
	padding:25px;
	}
	/* 時間単位 */
#selTimescale{
	margin-top: 7px;
	margin-left:3px;
	font-size:1.3rem;
}