﻿
body {
	font-family: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
	letter-spacing: 2px;
	overflow: hidden;	/*スクロール無効*/
	min-width: 70%;
	min-height: 70%;
}

#signet_outer_line {
	border: 2px solid #70AD47;
	border-radius: 25px;
	margin-left:210px
}

/* 右下の２つのボタン位置（再開、保存）*/
#restart_button {
	position: fixed;
	right: 100px;
	bottom: 350px;
}
#image_save_button {
	position: fixed;
	right: 100px;
	bottom: 250px;
}
#end_button {
	position: fixed;
	right: 100px;
	bottom: 150px;
}
.demo_button_color {
	color: black;
	background-color: white;
}

.btn_outer_height_large {
	height: 65px;
}

.btn_outer_height_slim {
	height: 42px;
}

/* ボタン押下時の効果 */
.btn_effect {
	display: inline-block;
	padding: 0.5em 1em;
	text-decoration: none;
	background: #FFF;
	color: #000;
	border: 2px solid #70AD47;
	border-bottom: solid 3px #70AD47;
	border-radius: 2px;
	cursor: pointer;
}
.btn_effect:active {
	-webkit-transform: translateY(2px);
	transform: translateY(2px);
	border-bottom: solid 1px #70AD47;
}


/* はい　いいえ　のダイアログ用 */
#yes_no_dialog {
    width: 250px;
    margin: auto;
    margin-top: 40vh;
    padding: 30px 20px;
    display: none;
    text-align: center;
    border: 1px solid #aaa;
    box-shadow: 2px 2px 4px #888;
}

/* キャンバスの位置 */
#my_canvas_area {
    position: fixed;
	top: 165px;
	width: 306px;
	height: 306px;
}


/***** タブの部分のCSS ******/
.tab_wrap {
}
input[name="tab_btn"] {
	display:none;
}
.tab_area {
	font-size:0;
	margin:0 10px;
}
.tab_area label {
	width:168px;
	margin:0 5px;
	display:inline-block;
	padding:12px 0;
	color:#777;
	background:#ddd;
	text-align:center;
	font-size:18px;
	cursor:pointer;
	transition:ease 0.2s opacity;
}
.tab_area label:hover{
	opacity:0.2;
}
.panel_area{
	background:#fff;
}
.tab_panel{
	width:100%;
	padding:20px 0;
	display:none;
}
.tab_panel p{
	font-size:14px;
	letter-spacing:1px;
	text-align:center;
}
#tab1:checked ~ .tab_area .tab1_label{background:#fff; color:#000;}
#tab1:checked ~ .panel_area #panel1{display:block;}
#tab2:checked ~ .tab_area .tab2_label{background:#fff; color:#000;}
#tab2:checked ~ .panel_area #panel2{display:block;}
#tab3:checked ~ .tab_area .tab3_label{background:#fff; color:#000;}
#tab3:checked ~ .panel_area #panel3{display:block;}
#tab4:checked ~ .tab_area .tab4_label{background:#fff; color:#000; position:absolute; right:20px;}
#tab4:checked ~ .panel_area #panel4{display:block;}
#tab5:checked ~ .tab_area .tab5_label{background:#fff; color:#000; position:absolute; right:20px;}
#tab5:checked ~ .panel_area #panel5{display:block;}



/* Modal dialog */
#modal_bg {
	display:none;
	z-index:1;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:120%;
	background-color:rgba(0,0,0,0.4);
}

#enter_pass_dialog {
	display:none;
	z-index:2;
	position: fixed;
	background-color:#4472C4;
	color:#FFF;
	top:200px;
	left:200px;
	min-width:500px;
	min-height:300px;
}

#pass_error_dialog {
	display:none;
	z-index:2;
	position: fixed;
	background-color:#4472C4;
	color:#FFF;
	top:200px;
	left:200px;
	min-width:500px;
	min-height:300px;
}

.container-fluid{
	min-width:1000px;
}

#msg_area{
	color:white;
	font-size:28px;
	width:100%;
	height:100px;
	max-height:100px;
	background-color:black;
	text-align:center;
}

details[open] .content{
	animation: fadeIn 2.0s ease-in-out;
}
@keyframes fadeIn{
	0%{
		opacity:0;
		transform: translateY(-100px);
	}
	100%{
		opacity:1;
		transform: none;
	}
}