/* ベースとなるスタイルシート */
@charset "UTF-8";


/* ========BASIC======== */
body {
   margin:0;
   padding:0;
   height:100%;
   line-height:1.3;
   letter-spacing:1px;
   font-family:"メイリオ", Verdana, Helvetica, sans-serif;
   color:#000;
   font-size:15px;
   background:#fff;
}

/*
input[type=text] ,input[type=number] ,input[type=email] ,input[type=password]{
   border:1px solid #666;
   padding:3px;
}
*/

input[type=button] ,input[type=submit]{
   -webkit-appearance: none;
   background-color:#eee;
   line-height:1;
   padding:4px 8px;
   border:2px solid #777;
   font-size:100%;
   border-radius: 3px;
}

input[type=button]:hover ,input[type=submit]:hover{
   background-color:#d5d5d5;
   box-shadow:0 0 3px #22c;
}

input[type=button]:focus ,input[type=submit]:focus{
   background-color:#d5d5d5;
   box-shadow:0 0 3px #22c;
}


input[type=button][disabled] ,input[type=submit][disabled]{
   border:2px solid #aaa;
   opacity: 0.7;
}

input[type=button][disabled]:hover ,input[type=submit][disabled]:hover{
   background-color:#eee;
   box-shadow:0 0 0;
}

input[type=button][disabled]:focus ,input[type=submit][disabled]:focus{
   background-color:#eee;
   box-shadow:0 0 0;
}

::-webkit-input-placeholder {
    color: #ccc;
    font-weight: normal;
}
:-ms-input-placeholder {
    color: #ccc;
    font-weight: normal;
}
::-moz-placeholder {
    color: #d8d8d8;
    font-weight: normal;
}

.checkorg {
	position:absolute;
	opacity:0;
}

.checkorg + span {
	position:relative;
	padding-left:24px;
	margin-right:24px;
}

.checkorg + span::before {
	content:"";
	display:block;
	position:absolute;
	top:2px;
	left:0;
	width:18px;
	height:18px;
	border-radius:50%;
	border:1px solid #444;
}

.checkorg:checked + span::after {
	content:"";
	display:block;
	position:absolute;
	top:5px;
	left:3px;
	width:12px;
	height:12px;
	border-radius:50%;
	background-color:#444;
}


br {
   letter-spacing:normal;
}

img {
   border:0;
   max-width:100%;
}

.font-bold {
	font-weight:bold;
}

h1,h2,h3,h4,h5,h6 {
   margin:0;
}

/* テンプレート */
#htmldata {
	display:flex;
}

#leftsidemenu {
	width:200px;
	padding:5px;
	height:100vh;
	overflow:auto;
}

#mainframe {
	width: calc(100% - 200px);
}


/* メニュー用 */
#leftsidemenu .menuul {
	list-style:none;
	margin:0;
	padding:0;
}

#leftsidemenu .menuul li {
	
}

#leftsidemenu .menuul a {
	display:block;
	margin-bottom:0.2em;
	padding:0.5em;
	color:#000;
	transition: all 0.3s 0s ease;
}

#leftsidemenu .menuul a:hover {
	color:#f22;
	background-color:#eee;
	text-decoration:none;
}


/* メインのヘッダー */
#mainheader {
	position:fixed;
	top:0;
	right:0;
	width: calc(100% - 200px);
	background-color:#000;
	color:#fff;
	height:30px;
	padding:2px 5px;
}

#mainheader .mainheader-div {
	display:flex;
	justify-content:space-between;
	width: 100%;
}

#mainheader .mainheader-title {
	padding-top:0.2em;
	font-weight:bold;
}


#maindata {
	margin-top:35px;
	width:100%;
	height: calc(100vh - 35px);
	overflow:auto;
}

h2 {
	font-size:1.4em;
	padding:0.2em;
	border-bottom:1px solid #00a;
	margin-bottom:0.5em;
}

h3 {
	font-size:1.3em;
	padding:0.2em;
	border-bottom:1px solid #00a;
	margin-bottom:0.5em;
}

h4 {
	font-size:1.2em;
	padding:0.2em;
	background-color:#eee;
	margin-bottom:0.5em;
}

/* PC用 */
@media screen and (min-width:576px){
	.sponly{
		display:none;
	}
	
}

/* スマホ用 */
@media screen and (max-width:575px){
	
	.pconly{
		display:none;
	}
	
}


