@charset "utf-8";

body {
	font-family: 'M PLUS 1p', sans-serif;
	font-size: 12px;
	line-height:1.5em;
	color: #000;
	background-color: #FFF;
	margin:0;
	padding:0;
	text-align:left;
	overflow-x:hidden;
	-webkit-text-size-adjust: 100%;
}

table {
    text-align:left;
	font-size:12px;
}

/* 見出し */
h1 {
	padding: 0.8rem 0;
    margin-bottom: 0.2rem;
    background-image: linear-gradient(90deg, #b2d5de 0 20%, #dedede 20%);
    background-repeat: no-repeat;
    background-size: 100% 10%;
    background-position: bottom;
    color: #323232;
    font-weight: 600;
    font-size: 22px;
}
h2 {
	position: relative;
	font-size:16px;
	line-height:35px;
	padding-left: 2.3rem;
	border-bottom: 1px solid #b2d5de;
	color:#666;
}
h2::before {
	content: attr(data-number);
	position: absolute;
	top: 0;
	left: 0;
	width: 2rem;
	height: 2rem;
	line-height: 2rem;
	background-color: #b2d5de;
	border-radius: 100%;
	color: #fff;
	text-align: center;
	font-size:16px;
}
h2::after {
	content: attr(data-area);
	position: absolute;
	top: 0;
	right: 0;
	width: 120px;
	height: 2em;
	line-height: 2em;
	background-color: #b2d5de;
	color: #fff;
	text-align: center;
	font-size:13px;
}
h3 {
	position: relative;
	font-size:16px;
	line-height:35px;
	padding-left: 2.3rem;
	border-bottom: 1px solid #b2d5de;
	color:#666;
}
h3::before {
	content: attr(data-number);
	position: absolute;
	top: 0;
	left: 0;
	width: 2rem;
	height: 2rem;
	line-height: 2rem;
	background-color: #b2d5de;
	border-radius: 100%;
	color: #fff;
	text-align: center;
	font-size:16px;
}
h3::after {
	content: attr(data-area);
	position: absolute;
	top: 0;
	right: 0;
	width: 120px;
	height: 2em;
	line-height: 2em;
	background-color: #b2d5de;
	color: #fff;
	text-align: center;
	font-size:13px;
}
h4 {
	color: #666;
	font-size: 16px;
	font-weight:600;
	position: relative;
	padding: 0.5em 1.2em;
	border-radius:1.5em;
	border: 1px solid #CCC;
	box-shadow:inset 1px 1px 0 rgba(255,255,255,1);
	background: linear-gradient(#EFEFEF 0%, #FFF 50%, #EEE 50%, #FFF 100%);
}
h5 {
	font-size: 18px;
	font-weight:600;
	padding: 0.5rem 0;
    margin-bottom: 0.2rem;
    border-bottom: 3px dotted #b2d5de;
}
h6 {
	font-size: 18px;
	font-weight:600;
	padding: 5px 20px;
	margin-bottom: 1em;
	border-left: 8px solid #b2d5de;
	color: #666;
}



/* フォーム要素 */
$gray:   #646d76;
$formBG: #ddddde;
$legendBG: #FA1E0E;

.container {
  width:20em;
  position:relative;
}

form {
  &.hidden {
    position:absolute;
    width:20em;
    top:-100em;
    @include transform(scale(0.25));
    @include transition(transform .5s ease-in, top .5s ease-in .4s);
  }
}
legend {
  background:$legendBG;
  color:white;
  padding:1em 1.25em;
  font-size:1.75em;
  border-radius:0.2em 0.2em 0 0;
  position:relative;
  display:block;
  width:100%;
  &:after {
    content:"";
    position:absolute;
    width:0;
    height:0;
    border-style:solid;
    border-color:$legendBG transparent transparent;
    border-width:0.4em;
    left:2.2em;
    top:100%;
  }
}
label {
  display:block;
  color:$gray;
  position:relative;
  margin:0 2em 0.75em;
  @include transition(all .5s);
  input, textarea {
    display:block;
    font-size:1.75em;
    width:100%;
    margin:0.25em 0;
    padding:0.5em 0.75em;
    border:none;
    background:lighten($gray,55%);
    border-radius:0.2em;
    font-family:$sans;
    @include transition(all .5s);
    &:focus {
      outline:none;
      box-shadow: 0 0 0.5em rgba(black, 0.2);
      @include transition(all .5s);
    }
  }
  textarea {
    min-height:6em;
  }
}

  .btn-send {
    background:#60a531;
    width:100%;
    font-size:1.25em;
    @include opacity(1);
    @include transition(all .5s);
    &:hover {
      background:darken(#60a531,5%);
    }
  }
  [disabled] {
    @include opacity(0.5);
    @include transition(all .5s);
    cursor:default;
  }
}
.required, .ok, .invalid, {
  @include transition(all .5s);
  &:before {
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
    padding:0.2em;
    position:absolute;
    top: 0.1em;
    right: 0.1em;
    font-size: 1.5em;
    @include transition(all .5s);
  }
}

.required {
  &:before {
    content: "\f069";
    //content:"\f111";
    color:lighten(#ddd,7%);
  }
}

.invalid {
  &:before {
    content: "\f057";
    color:rgba(adjust-hue(#60a531,260),0.5);
  }
}
.ok {
  &:before {
    content: "\f058";
    color:#60a531;
    @include transition(transform .5s linear);
    @include transform(rotate(360deg));
  }
}

.sent {
  @include opacity(1);
  @include transition(all .5s ease-in-out 1s);
  &.hidden {
    @include opacity(0);
    position:absolute;
    z-index:-1;
  }
  h1 {
    font-size:3em;
    text-align:center;
    small {
      font-size:0.5em;
      font-weight:400;
      display:block;
      text-align:right;
      margin-top:0.5em;
    }
  }
}

.no-placeholder {
  display:none;
  .ie-lt9 & {display:block;}
}

/* wrapper */
#mainbox {
	width:100%;
	min-width: 300px;
	margin:0 10px;
	vertical-align:top;
	font-size: 12px;
	overflow: hidden;
	padding-top:4px;
}

#indexlogin {
	width:80%;
	max-width:716px;
	min-width: 300px;
	margin:0 auto;
	vertical-align:top;
	font-size: 12px;
	overflow: hidden;
	padding-top:4px;
}

#indexmain {
	width:80%;
	max-width:716px;
	min-width: 300px;
	margin:0 auto;
	vertical-align:top;
	font-size: 12px;
	overflow: hidden;
	padding-top:4px;
	background-image: url("../img/mimi.png");
	background-repeat: no-repeat;
	background-size:contain;
	background-position:50% 200px;
}

.sizechangebox{
	width:100%;
	display:block;
	vertical-align:top;
	text-align:left;
	border:none;
	padding:0;
	margin:0;
}

.comm {
	background-color:#eee;
	margin:0 auto;
	width:90%;
	padding:5px 8px;
}

.midsize {
	font-size:13px;
}

.bigsize {
	font-size:16px;
	line-height:1.8em;
}

#bodymain1 {
	width:530px;
	display:block;
	vertical-align: top;
}

#bodymain2 {
	display:inline-block;
	vertical-align: top;
	overflow: hidden;
	padding:1px;
	padding-top:4px;
}

#bodysub{
	width: 210px;
	display:block;
	height:100vh;
	padding:0;
	padding-top:0;
	margin:0;
	border:none;
	float:right;
	position:fixed;
	top:0;
	left:550px;
	background:#FFF;
	overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#bodysub::-webkit-scrollbar {
    display: none;
}

/* contents */
table.tablesorter{
	border-collapse:collapse;
	overflow: hidden;
	font-size:13px;
	width:200px;
}
table.tablesorter td,th{
	border:1px solid #ccc;
	padding:3px;
	text-align:center;
	font-size:13px;
	line-height:1.5em;
}
table.tablesorter th{
	background:#EFEFEF;
	line-height:1.2em;
}

table.tablesorter th.numth{
	width:32px;
}
table.tablesorter th.areath{
	width:34px;
}

table.tablesorter td.dark{
	background:#EFEFEF;
}

.tablesorter tr:hover {
	background-color: #f0f0f0;
}

.tablesorter tr.grayout {
	background-color: #f0f0f0;
	color:#CCC;
}

.tablesorter tr.sign910 {
	background-color: #EFFFDF;
}

.tablesorter tr.signnewarea {
	background-color:#EAEAF4;
}

.tablesorter tr.adddata {
	background-color:#FFEAF4;
}

.sticky_table thead th {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 1;
}

.btn-square {
	display: inline-block;
	padding: 0.2px;
	text-decoration: none;
	background: #eee;
	color: #666;
	border: solid 1px #666;
	border-radius: 3px;
	width:12px;
	height:12px;
	font-size:10px;
	text-align:center;
	line-height:1em;
}

.btnsubmit {
	display: inline-block;
	padding: 0.2em;
	text-decoration: none;
	background: #eee;
	color: #666;
	border: solid 1px #ccc;
	border-radius: 3px;
	line-height:1.2em;
	font-size:13px;
	font-weight:normal;
}

.btn-kinkyu {
	display: inline-block;
	padding: 0.2em;
	text-decoration: none;
	background: #FFCACA;
	color: #000;
	border: solid 1px #FF5555;
	border-radius: 3px;
	line-height:1.2em;
	font-size:13px;
	font-weight:normal;
}

.btnsubmit-red {
	display: inline-block;
	padding: 0.2em;
	text-decoration: none;
	background:#FFCECE;
	color: #000;
	border: solid 1px #FF0000;
	border-radius: 3px;
	height:14px;
	font-size:12px;
}

.btnsubmit-y {
	display: inline-block;
	padding: 0.2em;
	text-decoration: none;
	background:#FFFFC6;
	color: #000;
	border: solid 1px #DFDF00;
	border-radius: 3px;
	height:14px;
	font-size:12px;
}

.btndef {
	display: inline-block;
	padding: 0.2em;
	text-decoration: none;
	background: #eee;
	color: #666;
	border: solid 1px #ccc;
	border-radius: 3px;
	width:20px;
	height:18px;
	font-size:12px;
	line-height:18px;
	margin:1px 2px;
}
.btnblue {
	display: inline-block;
	padding: 0.2em;
	text-decoration: none;
	background:#39C;
	color: #000;
	border: solid 1px #ccc;
	border-radius: 3px;
	border-color:#007FFF;
	width:20px;
	height:18px;
	font-size:12px;
	line-height:18px;
	margin:1px 2px;
}
.btnyellow {
	display: inline-block;
	padding: 0.2em;
	text-decoration: none;
	background:#FAEB69;
	color: #000;
	border: solid 1px #ccc;
	border-radius: 3px;
	border-color:#FFBF00;
	width:20px;
	height:18px;
	font-size:12px;
	line-height:18px;
	margin:1px 2px;
}
.btnred {
	display: inline-block;
	padding: 0.2em;
	text-decoration: none;
	background:#FF6A6A;
	color: #000;
	border: solid 1px #ccc;
	border-radius: 3px;
	border-color:#FF0000;
	width:20px;
	height:18px;
	font-size:12px;
	line-height:18px;
	margin:1px 2px;
}
.btnniji {
	display: inline-block;
	padding: 0.2em;
	text-decoration: none;
	background: #DCD0FF;
	color: #000;
	border: solid 1px #ccc;
	border-radius: 3px;
	border-color:#000;
	width:20px;
	height:18px;
	font-size:12px;
	line-height:18px;
	margin:1px 2px;
}

ul {
    list-style-type: none!important;
    margin-left: 0;
    padding-left: 0;
	display: block;
	margin-right:16px;
}

table.sen {
	border-collapse:collapse;
	text-align:center;
	width:526px;
	margin-bottom:3px;
}

table.sen tr {
}

table.sen td {
	border:1px solid #333;
	vertical-align:top;
}

table.sen td.numttl {
	text-align:center;
	vertical-align:middle;
	background:#EEE;
	width:18px;
	font-size:16px;
}

table.sen td.bg910 {
	background:#EFFFDF;
}
table.sen td.bg11 {
	background:#E2E2C7;
}
table.sen td.bg21 {
	background:#C4E1E1;
}
table.sen td.bg31 {
	background:#E6CCCC;
}

.numbox {
	display: flex;
	box-sizing: border-box;
	text-align:left;
	width:530px;
	min-width:300px;
	font-size:11px;
	padding:4px;
	background-color:#F1F1F1;
	border:1px solid #999;
	font-size:13px;
}

.alertbox{
	display: block;
	vertical-align:top;
	text-align:left;
	line-height:2.2em;
	padding:8px;
	font-size:13x;
	background:#FFE8F3;
}

.passContainer{
	display: block;
	vertical-align:top;
	text-align:left;
	line-height:2.2em;
	border:1px solid #666;
	padding:8px;
	font-size:13x;
}

.memoContainer{
	display: flex;
	box-sizing: border-box;
	text-align:left;
	border:1px solid #999;
	width:530px;
	padding:4px;
	font-size:13px;
	background-color:#fff;
}

.typeContainer{
	display: flex;
	box-sizing: border-box;
	vertical-align:middle;
	text-align:left;
	line-height:2.2em;
	border:1px solid #999;
	width:530px;
	min-width:300px;
	font-size:11px;
	padding:4px;
	background-color:#fff;
	font-size:13px;
}

.typeContainer .cap{
	font-size:11px;
	line-height:1.5em;
}

.boxnormal{
	display: inline-block;
	vertical-align:top;
	width:calc(100% / 3);
	height:84px;
	border:1px solid #999;
	padding:2px;
	margin:0 1px;
	position:relative;
}

.boxdark{
	display: inline-block;
	vertical-align:top;
	width:calc(100% / 3);
	height:84px;
	border:1px solid #999;
	padding:2px;
	margin:0 1px;
	background:#CCC;
	position:relative;
}

.boxstrong{
	display: inline-block;
	vertical-align:top;
	width:calc(100% / 3);
	height:84px;
	border:1px solid #999;
	padding:2px;
	margin:0 1px;
	background:#FFCE9D;
	position:relative;
}

.boxon{
	outline: 3px solid #000;
}

.timedisplay{
	display:block;
	overflow:hidden;
	padding-left:0;
	text-align:center;
}

.sikakug {
	font-size:10px;
	height:13px;
	background:#CFF;
	text-align:center;
	line-height:1.2em;
}

.sikakuj {
	font-size:10px;
	height:13px;
	background:#FFFFD7;
	text-align:center;
	line-height:1.2em;
}

.sikakub {
	font-size:10px;
	background:#FCC;
	text-align:center;
	height:13px;
	line-height:1.2em;
}

.sikakux {
	font-size:10px;
	background:#EBEBD6;
	text-align:center;
	height:13px;
	line-height:1.2em;
}

.sikakuy {
	font-size:10px;
	background:#D3E9E9;
	text-align:center;
	height:13px;
	line-height:1.2em;
}

.sikakuz {
	font-size:10px;
	background:#DADAED;
	text-align:center;
	height:13px;
	line-height:1.2em;
}

.loginbox {
	padding:0.8em;
	background:#EFE2EF;
	font-size:14px;
}

.sikakutoday {
	padding:0.8em;
	background:#FFFFC8;
	font-size:14px;
}

.tscontainer{
	display: inline-block;
	padding:1px;
	margin:0;
	border:1px #000 solid;
	font-size:12px;
	line-height:16px;
	width:60px;
}

.tscontainerneo{
	display: inline-block;
	padding:1px;
	margin:0;
	font-size:12px;
	line-height:16px;
	width:60px;
}

.tdspace{
	display: inline-block;
	padding:0;
	margin:0;
}

.tacontainer{
	display: inline-block;
	margin:0;
	font-size:12px;
	line-height:16px;
	padding:1px;
	width:60px;
}

table.btnbox {
	border-collapse:collapse;
	margin:0 auto;
	border:0;
	background-color:transparent;
}

table.btnbox tr,td {
	background-color:transparent;
}

table.btnbox td {
	border:0;
	width:0;
}

.hide {
	display:none;
	background-image:url(../img/space.png);
	background-size: 3em;
	background-repeat : no-repeat;
}

.colg {
	background-color:#CFF;
	width:20px;
	text-align:center;
	padding:0.25em;
}

.colj {
	background-color:#FFC;
	width:20px;
	text-align:center;
	padding:0.25em;
}

.colb {
	background-color:#FFCECE;
	width:20px;
	text-align:center;
	padding:0.25em;
}

.colx {
	background-color:#EBEBD6;
	width:20px;
	text-align:center;
	padding:0.25em;
}

.coly {
	background-color:#D3E9E9;
	width:20px;
	text-align:center;
	padding:0.25em;
}

.colz {
	background-color:#DADAED;
	width:20px;
	text-align:center;
	padding:0.25em;
}

.coln {
	background-color:#DCD0FF;
	width:20px;
	text-align:center;
	padding:0.25em;
}

.btnmargin {
	display:flex;
	width:100%;
	margin:2px 0 1px 0;
	justify-content:center;
}

.msgbox{
	font-size:11px;
	color:#03F;
	margin-top:3px;
	line-height:18px;
}

.graytxt{
	color:#ccc;
}

.bluetxt{
	color:#06C;
}

.yellowtxt{
	color:#F90;
}

.redtxt{
	color:#F33;
}

.greentxt{
	color:#093;
}

.blueback{
	background-color:#E3FFFF;
}

.yellowback{
	background-color:#FFFFA4;
}

.redback{
	background-color:#FDD;
}

.nijiback{
	background-color:#EEE8FF;
}

.opener{
	display:none;
}

.calbox {
	display: flex;
	box-sizing: border-box;
	font-size:12px;
	line-height:2.2em;
	width:530px;
	min-width:300px;
	background:#FFF0E1;
	padding:4px;
	overflow:hidden;
	border:1px solid #999;
	flex-flow: column;
	font-size:13px;
}

.calform {
	width: 100%;
	box-sizing: border-box;
	text-align: left;
}

.caltxt {
  width: 100%;
  box-sizing: border-box;
  text-align: left;
}

.tdbox {
	padding:0 auto;
	margin:0;
	display: flex;
	box-sizing: border-box;
	white-space: nowrap;
}

.upallbtn{
	display:block;
	position:absolute;
	right:3px;
	bottom:3px;
	transition:1s;
	opacity:0.6;
	z-index:3;
	}
	
.upallbtn:hover{
	opacity:1;
	}
	
.nomorebtn{
	display:block;
	position:absolute;
	right:3px;
	bottom:3px;
	transition:1s;
	opacity:0.6;
	z-index:5;
	}
.nomorebtn:hover{
	opacity:1;
	}

.hisbackbtn{
	display:block;
	position:absolute;
	left:3px;
	bottom:3px;
	transition:1s;
	opacity:0.6;
	z-index:5;
	}
.nomorebtn:hover{
	opacity:1;
	}
	
.hozonbox {
	width:494px;
	text-align:right;
}

.clearfix{
	display: inline-block;
}

.clearfix:after{
    content: "."; 
    display: block; 
    height: 0; 
    font-size:0;	
    clear: both; 
	visibility:hidden;
}

.passindex {
	display:inline-block;
	font-size:13px;
}

.togglebox {
	float:right;
	margin-right:3px;
	display:inline-block;
}

.toggle-button-s {
	display: inline-block;
	padding: 0.2em;
	padding-top:0;
	text-decoration: none;
	background: #eee;
	color: #666;
	border: solid 1px #ccc;
	border-radius: 3px;
	width:24px;
	height:22px;
	line-height:22px;
	font-size:12px;
	margin:0;
	text-align:center;
}

.toggle-button-s-sel {
	display: inline-block;
	padding: 0.2em;
	padding-top:0;
	text-decoration: none;
	background:#86C2FF;
	color: #FFF;
	border: solid 1px #ccc;
	border-radius: 3px;
	width:24px;
	height:22px;
	line-height:22px;
	font-size:12px;
	margin:0;
	text-align:center;
}

.toggle-button-l {
	display: inline-block;
	padding: 0.2em;
	padding-top:0;
	text-decoration: none;
	background: #eee;
	color: #666;
	border: solid 1px #ccc;
	border-radius: 3px;
	width:24px;
	height:22px;
	line-height:22px;
	font-size:12px;
	margin:0;
	text-align:center;
}

.toggle-button-l-sel {
	display: inline-block;
	padding: 0.2em;
	padding-top:0;
	text-decoration: none;
	background:#86C2FF;
	color: #FFF;
	border: solid 1px #ccc;
	border-radius: 3px;
	width:24px;
	height:22px;
	line-height:22px;
	font-size:12px;
	margin:0;
	text-align:center;
}

@media only screen and (max-width: 751px) {
	#mainbox{
		display:block;
		width:100vw;
		margin:0;
	}
	
	#bodymain1 {
		margin:0 auto;
		max-width: 100%;
		display:block;
	}
	
	.opener{
		display:block;
		position:fixed;
		right:20px;
		bottom:20px;
		transition:1s;
		opacity:0.8;
		z-index:999;
	}
	.opener:hover{
		opacity:1;
	}
	
	#bodysub{
		display:none;
		width: 230px;
		padding:8px;
		border:solid #CCC 1px;
		position:fixed;
		left:auto;
		top:0;
		right:0;
		background:#f5f5f5;
		z-index:100;
		overflow: auto;
	}

	table.tablesorter{
		font-size:15px;
		width:226px;
		background:#FFF;
	}
	table.tablesorter td,th{
	  font-size:15px;
	}
	table.tablesorter th{
	  font-size:12px;
	}
	table.tablesorter th.areath{
	  width:38px;
	}
	
	table.sen {
		width:100%;
		margin-bottom:4px;
	}
	
}



@media only screen and (max-width: 551px) {
	
	#indexmain {
		display:block;
		margin:0;
		width:100%;
		padding:4px;
		box-sizing: border-box;
		background-image: url("../img/mimi.png");
		background-repeat: no-repeat;
		background-size:contain;
		background-position:50% 300px;
	}
	
	#indexlogin {
		display:block;
		margin:0;
		width:100%;
		padding:4px;
		box-sizing: border-box;
	}
	
	.sizechangebox{
		display:none;
	}
	
	#mainbox{
		display:block;
		width:100vw;
		margin:0;
	}
	
	#bodymain1 {
		margin:0 auto;
		max-width: 100%;
		display:block;
	}
	
	.opener{
		display:block;
		position:fixed;
		right:20px;
		bottom:20px;
		transition:1s;
		opacity:0.8;
		z-index:999;
	}
	
	.opener:hover{
		opacity:1;
	}
	
	#bodysub{
		display:none;
		width: 230px;
		padding:8px;
		border:solid #CCC 1px;
		position:fixed;
		left:auto;
		top:0;
		right:0;
		background:#f5f5f5;
		z-index:100;
		overflow: auto;
	}
	
	table.tablesorter{
		font-size:15px;
		width:226px;
		background:#FFF;
	}
	table.tablesorter td,th{
	  font-size:15px;
	}
	table.tablesorter th{
	  font-size:12px;
	}
	table.tablesorter th.areath{
	  width:38px;
	}
	
	.boxnormal{
		height:84px;
	}
	
	.boxdark{
		height:84px;
	}
	
	.boxstrong{
		height:84px;
	}
	
	.boxon{
		outline: 2px solid #000;
	}

	.btn-square {
		width:14px;
		height:14px;
		font-size:12px;
	}
	
	.btnsubmit {
		font-size:14px;
	}
	
	.typeContainer{
		width:100vw;
	}
	
	.numbox {
		width:100vw;
	}
	
	.calbox {
		width:100vw;
	}
	
	table.sen {
		width:100%;
		margin-bottom:4px;
	}
	
	table.sen td.numttl {
		width:14px;
		font-size:16px;
	}
	
	.btnmargin {
		margin:2px 0 1px 0;
	}
	
	.msgbox{
		line-height:15px;
	}
	
	.tscontainer{
		line-height:15px;
	}
	
	.tscontainerneo{
		line-height:15px;
	}
	
	.tacontainer{
		line-height:15px;
	}
	
	.togglebox {
		display:none;
	}
	
}


@media only screen and (max-width: 481px) {
	
	#indexmain {
		display:block;
		margin:0;
		width:100%;
		padding:4px;
		box-sizing: border-box;
		background-image: url("../img/mimi.png");
		background-repeat: no-repeat;
		background-size:contain;
		background-position:50% 300px;
	}
	
	#indexlogin {
		display:block;
		margin:0;
		width:100%;
		padding:4px;
		box-sizing: border-box;
	}
	
	.sizechangebox{
		display:none;
	}
	
	#mainbox{
		display:block;
		margin:0;
		width:100%;
	}
	
	#bodymain1 {
		margin:0 auto;
		max-width: 100%;
		display:block;
	}
	
	#bodysub{
		display:none;
		width: 230px;
		padding:8px;
		border:solid #CCC 1px;
		position:fixed;
		left:auto;
		top:0;
		right:0;
		background:#f5f5f5;
		z-index:100;
		overflow: auto;
	}
	
	table.tablesorter{
		font-size:15px;
		width:226px;
		background:#FFF;
	}
	table.tablesorter td,th{
	  font-size:15px;
	}
	table.tablesorter th{
	  font-size:12px;
	}
	table.tablesorter th.areath{
	  width:38px;
	}
	
	.boxnormal{
		height:84px;
	}
	
	.boxdark{
		height:84px;
	}
	
	.boxstrong{
		height:84px;
	}
	
	.boxon{
		outline: 2px solid #000;
	}
	
	.tscontainer{
		font-size:11px;
		width:48px;
		padding:2px;
		line-height:12px;
	}
	
	.tscontainerneo{
		font-size:11px;
		width:48px;
		padding:2px;
		line-height:12px;
	}
	
	.tacontainer{
		font-size:11px;
		width:48px;
		padding:2px;
		line-height:12px;
	}
	
	.tdspace{
		display:none;
	}
	
	.btn-square {
		width:14px;
		height:14px;
		font-size:12px;
	}
	
	.btnsubmit {
		font-size:14px;
	}
	
	.typeContainer{
		width:100vw;
	}
	
	.numbox {
		width:100vw;
	}
	
	.calbox {
		width:100vw;
	}
	
	.opener{
		display:block;
		position:fixed;
		right:20px;
		bottom:20px;
		transition:1s;
		opacity:0.8;
		z-index:999;
	}
	
	.opener:hover{
		opacity:1;
	}
	
	table.sen {
		width:100%;
		margin-bottom:4px;
	}
	
	table.sen td.numttl {
		width:14px;
		font-size:16px;
	}
	
	.btnmargin {
		margin:5px 0 2px 0;
	}
	
	.btndef {
		width:16px;
		height:16px;
		font-size:11px;
		line-height:16px;
		margin:2px;
	}
	.btnblue {
		width:16px;
		height:16px;
		font-size:11px;
		line-height:16px;
		margin:2px;
	}
	.btnyellow {
		width:16px;
		height:16px;
		font-size:11px;
		line-height:16px;
		margin:2px;
	}
	.btnred {
		width:16px;
		height:16px;
		font-size:11px;
		line-height:16px;
		margin:2px;
	}
	.btnniji {
		width:16px;
		height:16px;
		font-size:11px;
		line-height:16px;
		margin:2px;
	}
	
	.msgbox{
		font-size:10px;
		line-height:15px;
	}
	
	.togglebox {
		display:none;
	}
	
}

@media only screen and (max-width: 401px) {
	
	#indexmain {
		display:block;
		margin:0;
		min-width: 330px;
		width:100%;
		padding:4px;
		box-sizing: border-box;
		background-image: url("../img/mimi.png");
		background-repeat: no-repeat;
		background-size:contain;
		background-position:50% 300px;
	}
	
	#indexlogin {
		display:block;
		margin:0;
		width:100%;
		padding:4px;
		box-sizing: border-box;
	}
	
	.sizechangebox{
		display:none;
	}
	
	#mainbox{
		display:block;
		margin:0;
		min-width: 330px;
		width:100%;
	}
	
	.btn-square {
		padding: 0;
	}
	
	.btnmargin {
		margin:5px 0 2px 0;
	}
	
	.btndef {
		padding:1px;
		width:15px;
		height:15px;
		font-size:11px;
		line-height:15px;
		margin:2px;
	}
	.btnblue {
		padding:1px;
		width:15px;
		height:15px;
		font-size:11px;
		line-height:15px;
		margin:2px;
	}
	.btnyellow {
		padding:1px;
		width:15px;
		height:15px;
		font-size:11px;
		line-height:15px;
		margin:2px;
	}
	.btnred {
		padding:1px;
		width:15px;
		height:15px;
		font-size:11px;
		line-height:15px;
		margin:2px;
	}
	.btnniji {
		padding:1px;
		width:15px;
		height:15px;
		font-size:11px;
		line-height:15px;
		margin:2px;
	}
	
	.boxnormal{
		margin:0;
		height:84px;
	}
	
	.boxdark{
		margin:0;
		height:84px;
	}
	
	.boxstrong{
		margin:0;
		height:84px;
	}
	
	.boxon{
		border: 1px solid #000;
		outline:none;
	}
	
	table.sen {
		width:100%;
		margin-bottom:4px;
	}
	
	table.sen td.numttl {
		width:14px;
		font-size:14px;
	}
	
	.msgbox{
		font-size:9px;
		line-height:15px;
	}
	
	.tscontainer{
		font-size:10px;
		width:46px;
		padding:1px;
		line-height:12px;
	}
	
	.tscontainerneo{
		font-size:10px;
		width:46px;
		padding:1px;
		line-height:12px;
	}
	
	.tacontainer{
		font-size:10px;
		width:46px;
		padding:1px;
		line-height:12px;
	}
	
	.tdspace{
		display:none;
	}
	
	.togglebox {
		display:none;
	}

}