/* 全体用 */
#container {
	margin: 10px 0;
}
#header {
	width: 100%;
	background: #FFF;
}
#header h1 {
	display: flex;
	justify-content: space-between;
}
#fixed {
	position: fixed;
	width: 100%;
	z-index: 2;
}
#main {
	padding-top: 80px;
	margin: 0 50px 20px;
}
#left {
	text-align: center;
	width: 210px;
	padding: 0 15px 0 5px;
	border-right: 2px solid #333;
	box-sizing: border-box;
	margin: 0 0 0 10px;
}
#right {
	margin: 10px 20px;
	box-sizing: border-box;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	#left {
		width: auto;
	}
}

/* 寄せ */
.left   { text-align: left!important; }
.center { text-align: center!important; }
.right  { text-align: right!important; }


/* 見出し */
h1 {
	padding: 0 10px;
	margin: 0 15px 10px;
}
h2.title {
	display: inline-block;
	margin: 0 0 15px;
	padding: 0 10px;
}
p.title2 {
	margin: 0;
	text-align: center;
	font-weight: bold;
}


/* 下部隙間 */
.mb10 { margin-bottom: 10px!important; }
.mb20 { margin-bottom: 20px!important; }
.mb30 { margin-bottom: 30px!important; }
.mb40 { margin-bottom: 40px!important; }
.mb50 { margin-bottom: 50px!important; }
.mb100 { margin-bottom: 100px!important; }

/* 上部隙間 */
.mt5 { margin-top: 5px!important; }
.mt10 { margin-top: 10px!important; }
.mt20 { margin-top: 20px!important; }
.mt30 { margin-top: 30px!important; }
.mt50 { margin-top: 50px!important; }
.mt100 { margin-top: 100px!important; }

/* 上部隙間 */
.pt10 { padding-top: 10px!important; }
.pt20 { padding-top: 20px!important; }
.pt30 { padding-top: 30px!important; }
.pt50 { padding-top: 50px!important; }
.pt60 { padding-top: 60px!important; }
.pt100 { padding-top: 100px!important; }


/* 横隙間 */
.pd10 { padding: 0 10px!important; }
.pd20 { padding: 0 20px!important; }
.pd30 { padding: 0 30px!important; }
.pd40 { padding: 0 40px!important; }


/* 幅指定 */
.w5p { width: 5%!important; }
.w25p { width: 25%!important; }
.w33p { width: 33%!important; }
.w40p { width: 40%!important; }
.w45p { width: 45%!important; }
.w49p { width: 49%!important; }
.w50p { width: 50%!important; }
.w60p { width: 60%!important; }
.w80p { width: 80%!important; }
.w100p { width: 100%!important; }


/* 文字サイズ指定 */
.fs70 { font-size: 70%; }
.fs80 { font-size: 80%; }
.fs90 { font-size: 90%; }
.fs120 { font-size: 120%; }
.fs150 { font-size: 150%; }
.fs300 { font-size: 300%; }


/* 太字 */
.bold {
	font-weight: bold;
}

/* 文字色 */
.red { color: #F00!important; }
.blu { color: #00F!important; }
.grn { color: #0F0!important; }


/* 背景色 */
.bgred { background: rgba( 255, 0, 0, 0.2 ); }
.bgblue { background: rgba( 0, 0, 255, 0.2 ); }


/* ボーダー色 */
.bdred {
	border: 2px solid #C00;
	color: #C00;
	background: #FFF;
}
.bdblu {
	border: 2px solid #36C;
	color: #36C;
	background: #FFF;
}
.bdgrn {
	border: 2px solid #3C6;
	color: #3C6;
	background: #FFF;
}
.bdpur {
	border: 2px solid #C3C;
	color: #C3C;
	background: #FFF;
}


/* 非表示 */
.none {
	display: none;
}


/* 説明文 */
.exp {
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: 10px;
	margin: 0 0 10px;
}


/* 高さ指定 */
.h42 { height: 42px!important; }


/* お知らせ */
.notice {
	color: #F00;
	font-size: 22px;
	font-weight: bold;
	margin: 10px 0;
}


/* 戻る */
.return {
	margin: 0 0 20px 0;
}
.return a {
	text-decoration: none;
	font-size: 150%;
	font-weight: bold;
}


/* ボタン */
.button {
	font-size: 17px;
	padding: 10px 25px;
	margin:10px 4px;
	width: 200px;
	text-transform: uppercase;
	text-align: center;
	position: relative;
	text-decoration: none;
	display:inline-block;
	border:1px solid transparent; 
	-webkit-transition: all 0.4s cubic-bezier(.5, .24, 0, 1);
	transition: all 0.4s cubic-bezier(.5, .24, 0, 1);
	background: rgba( 0, 0 , 0, 0 );
	font-weight: bold;
	cursor: pointer;
}
.button:hover::before {
	width:100%;
}
.button::before {
	content: '';
	position: absolute;
	left: 0px;
	bottom:0px;
	width: 0%;
	height:1px;
	display: block;
	-webkit-transition: all 0.4s cubic-bezier(.5, .24, 0, 1);
	transition: all 0.4s cubic-bezier(.5, .24, 0, 1)
	z-index: -1;
}
.button::after {
	content: '';
	position: absolute;
	right: 0px;
	top:0px;
	width: 0%;
	height:1px;
	-webkit-transition: all 0.4s cubic-bezier(.5, .24, 0, 1);
	transition: all 0.4s cubic-bezier(.5, .24, 0, 1)
	z-index: -1;
}
.button:hover::after {
	width:100%;
}


/* ログイン */
.login h2 {
	margin: 40px 0 0;
}
.login input::placeholder {
	color: #CCC;
}
.login input[type="text"] {
	padding: 7px;
	margin: 5px 20px 5px 5px;
	font-size: 120%;
}


/* メニュー */
#menu-wrapper {
	overflow: hidden;
	width: 60px;
	cursor: pointer;
}
#menu-wrapper #hamburger-menu {
	position: relative;
	width: 25px;
	height: 20px;
	margin: 15px;
}
#menu-wrapper #hamburger-menu span {
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	left: 0;
	display: block;
	width: 100%;
	height: 2px;
	border-radius: 10px;
	color: black;
	background-color: white;
	position: absolute;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .4s ease-in-out;
	transition: .4s ease-in-out;
}
#menu-wrapper #hamburger-menu span:nth-child(1) {
	top: 0;
	background: #000;
}
#menu-wrapper #hamburger-menu span:nth-child(2) {
	top: 9px;
	background: #000;
}
#menu-wrapper #hamburger-menu span:nth-child(3) {
	top: 18px;
	background: #000;
}
#menu-wrapper #hamburger-menu.open span:nth-child(1) {
	top: 9px;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
#menu-wrapper #hamburger-menu.open span:nth-child(2) {
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	left: -60px;
}
#menu-wrapper #hamburger-menu.open span:nth-child(3) {
	top: 9px;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
#menu-container .menu-list {
	padding: 10px 20px;
	display: block;
	position: absolute;
	width: 100%;
	max-width: 555px;
	background: white;
	box-shadow: rgba(100,100,100,0.2) 6px 2px 10px;
	z-index: 999;
	overflow-y: auto;
	overflow-x: hidden;
	left: -100%;
}
#menu-container .menu-list li.accordion-toggle, #menu-container .menu-list .menu-login {
	font-size: 16px;
	padding: 20px;
	text-transform: uppercase;
	border-top: 1px solid #dbdcd2;
}
#menu-container .menu-list li:first-of-type {
	border-top: 0;
}
#menu h2 {
	display: inline-block;
	margin: 0 0 10px;
	padding: 0 10px;
}


/* メニュー項目 */
.item {
	font-size: 90%;
	margin: 0 0 20px;
}
.item_list {
	display: flex;
}
.item_list a {
	display: block;
	width: 155px;
	margin: 0 5px 5px;
	padding: 6px 5px 4px;
	text-align: center;
	text-decoration: none;
	border-radius: 5px;
}
.item_list input {
	display: block;
	background: #FFF;
	width: 170px;
	margin: 5px;
	padding: 5px;
	text-align: center;
	text-decoration: none;
	border-radius: 5px;
	border: 2px solid #333;
	color: #333;
	cursor: pointer;
}


/* データ読込 */
.select {

}
.item_box {
	margin: 0 20px 30px;
}
.item_box h2 {
	margin: 0 0 20px;
	padding: 0 10px;
	display: inline-block;
}
.item_box .box {
	margin: 0 0 20px;
}
.item_box .data {
	display: none;
}
.item_box .file {
	font-size: 12px;
}
.item_box_list input[type="submit"] {
	font-weight: bold;
	padding: 5px;
	background: #fff;
	border-radius: 5px;
	cursor: pointer;
	font-size: 15px;
	box-sizing: border-box;
}
.item_box_list select {
	padding: 5px 5px 7px;
	width: 150px;
}
.item_box_list input[type="text"] {
	padding: 6px 5px 6px;
}
.item_box_list input::placeholder {
	color: #aaa;
}
.item_box_list input:-ms-input-placeholder {
	color: #aaa;
}
.item_box_list input::-ms-input-placeholder {
	color: #aaa;
}
.item_box_list input[type="radio"] {
	display: none;
}
.item_box_list input[type="radio"] + label{
	font-size: 120%;
	padding-left: 20px;
	position:relative;
	margin-right: 20px;
	cursor: pointer;
}
.item_box_list input[type="radio"] + label::before{
	content: "";
	display: block;
	position: absolute;
	top: 8px;
	left: 0;
	width: 15px;
	height: 15px;
	border: 1px solid #999;
	border-radius: 50%;
}
.item_box_list input[type="radio"]:checked + label::after{
	content: "";
	display: block;
	position: absolute;
	top: 11px;
	left: 3px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
}
.reset {
	display: inline-block;
	text-align: center;
	color: #333;
	border: 2px solid #333;
	font-weight: bold;
	padding: 5px;
	background: #fff;
	border-radius: 5px;
	cursor: pointer;
	font-size: 15px;
	text-decoration: none;
	box-sizing: border-box;
}


/* 文章枠 */
.text_box {
	border: 1px solid #999;
	border-radius: 5px;
	width: 90%;
	padding: 15px;
	margin: 0 0 20px;
}


/* ファイル */
.original_btn {
	border: 1px solid #ddd;
	padding: 5px 10px;
	cursor: pointer;
	border-radius: 5px;
	color: #666;
	background: linear-gradient(to bottom,#fff 0,#f4f4f4 100%);
	box-shadow: inset 0px -1px 0px 0px rgba(0, 0, 0, 0.09);
}
.icon {
	font-size: 12px;
	margin: 0 20px 0 15px;
	padding: 3px 30px;
	border-radius: 15px;
	background: #666;
	color: #fff;
	display: inline-block;
}
.icon.select {
	background: #ff5050;
	color: #fff;
}


/* 月送り */
.trg_month {
	font-size: 20px;
	margin: 0 0 20px;
	text-align: center;
}
.trg_month a {
	color: #000;
	text-decoration: none;
}


/* 通常 テーブル */
.defult {
	padding: 0;
	width: 100%;
	margin-bottom: 10px;
}
.defult table {
	border-collapse: collapse;
	table-layout: fixed;
}
.defult table th {
	color: #FFF;
	border: 1px solid #000;
	padding: 5px;
	height: 20px;
	min-width: 150px
}
.defult table td {
	border: 1px solid #000;
	text-align: center;
	height: 35px;
	padding: 5px;
}
.defult table input {
	padding: 7px;
	font-size: 120%;
	width: 100%;
	box-sizing: border-box;
}
.defult table .update {
	width: 110px;
	margin: 5px;
	padding: 5px;
	text-align: center;
	text-decoration: none;
	border: 2px solid #36c;
	border-radius: 5px;
	background: #FFF;
	color: #36c;
	cursor: pointer;
}
.defult table .delete {
	width: 110px;
	margin: 5px;
	padding: 5px;
	text-align: center;
	text-decoration: none;
	border: 2px solid #c36;
	border-radius: 5px;
	background: #FFF;
	color: #c36;
	cursor: pointer;
}
.defult table .new {
	width: 175px;
	margin: 5px 10px;
	padding: 5px;
	text-align: center;
	text-decoration: none;
	border: 2px solid #C00;
	border-radius: 5px;
	background: #FFF;
	color: #C00;
	cursor: pointer;
}
.defult .orange, .defult .orange a {
	color: #F60;
	font-weight: bold;
	text-decoration: none;
}
.defult .blue, .defult .blue a {
	color: #06F;
	font-weight: bold;
	text-decoration: none;
}
.defult .gray, .defult .gray a {
	color: #666;
	font-weight: bold;
	text-decoration: none;
}
.defult a {
	color: #000;
	font-weight: bold;
	text-decoration: none;
}


/* 横スク可 テーブル */
.scroll {
	padding: 0;
	width: 100%;
	display: flex;
	margin: 0 0 10px 20px;
}
.scroll table {
	border-collapse: collapse;
	width: 100%;
}
.scroll table th {
	color: #FFF;
	background: #900;
	border: 1px solid #000;
	padding: 5px;
	height: 20px;
}
.scroll table td {
	border: 1px solid #000;
	text-align: center;
	height: 36px;
	padding: 5px;
}
.header {
	width: 15%;
}
.data {
	width: 85%;
	overflow-x:scroll;
}
.data table {
	table-layout: fixed;
}
.scroll table .update {
	width: 80px;
	padding: 5px;
	text-align: center;
	text-decoration: none;
	border: 2px solid #36c;
	border-radius: 5px;
	background: #FFF;
	color: #36c;
	cursor: pointer;
}
.scroll table .delete {
	width: 80px;
	padding: 5px;
	text-align: center;
	text-decoration: none;
	border: 2px solid #c36;
	border-radius: 5px;
	background: #FFF;
	color: #c36;
	cursor: pointer;
}


/* 横スク可 テーブル（個人） */
.scroll_i {
	padding: 0;
	width: 100%;
	display: flex;
}
.scroll_i table {
	border-collapse: collapse;
	width: 100%;
}
.scroll_i table th {
	color: #FFF;
	border: 1px solid #000;
	padding: 5px;
	height: 20px;
}
.scroll_i table td {
	border: 1px solid #000;
	text-align: center;
	height: 36px;
	padding: 5px;
}
.header_i {
	width: 40%;
}
.data_i {
	width: 59%;
	overflow-x:scroll;
}
.header_i table {
	table-layout: fixed;
}
.header_i a {
	color: #000;
	font-weight: bold;
	text-decoration: none;
}
.header_i .orange, .header_i .orange a {
	color: #F60;
	font-weight: bold;
	text-decoration: none;
}
.header_i .blue, .header_i .blue a {
	color: #06F;
	font-weight: bold;
	text-decoration: none;
}


/* 横スク可（シフト、計画） テーブル */
.header_s {
	width: 30%;
}
.header_o {
	width: 32%;
}
.data_s {
	width: 69%;
	overflow-x:scroll;
}
.data_o {
	width: 67%;
	overflow-x:scroll;
}
.header_s table, .header_o table {
	table-layout: fixed;
}
.data_s input, .data_o input {
	padding: 8px;
	width: 80px;
}


/* 今日色付け */
.today {
	background: #F60!important;
}


/* 検索 */
.search {
	margin: 0 0 35px 0;
}
.search select {
	width: 150px;
	padding: 10px;
	font-size: 120%;
}


/* アコーディオン */
.accordion {
	position: relative;
}
.toggle {
	display: none;
}
.index, .content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.index {
	border: solid 1px #ccc;
	padding: 1em;
	padding: 15px 5px 14px 40px;
	display: block;
	color: #333;
	font-weight: bold;
	cursor: pointer;
}
.index::after,
.index::before {
	content: "";
	position: absolute;
	left: 20px;
	top: 20px;
	width: 2px;
	height: 12px;
	background-color: #999;
	transition: all 0.3s;
}
.index::after {
	transform: rotate(90deg);
}
.content {
	max-height: 0;
	overflow: hidden;
}
.content table {
	margin: 10px;
}
.toggle:checked + .index + .content {
	max-height: 500px;
	transition: all 0.5s;
}
.toggle:checked + .index::before {
	transform: rotate( 90deg ) !important;
}


/* キャンバス */
.canvas {
	margin-bottom: 30px;
	padding: 10px;
}
.flex {
	display: flex;
}
.wh33 {
	position: relative;
	width: 33vw;
	height: 500px;
}
.wh50 {
	position: relative;
	width: 50vw;
	height: 500px;
}


/* 貼付欄 */
.item_box_list textarea {
	width: 100%;
	height: 250px;
	padding: 10px;
	font-size: 120%;
	line-height: 20px;
	margin: 0 0 15px 0;
}


/* ランキング */
.no-1 a, .no-1 { color: #DB0; font-weight: bold; }
.no-2 a, .no-2 { color: #9AA; font-weight: bold; }
.no-3 a, .no-3 { color: #C72; font-weight: bold; }
.no { font-weight: bold; }
.no-1 {
	font-size: 150%;
	background-image: url( "/images/base/rank1.png" );
	background-repeat: no-repeat;
	background-position: left center;
}
.no-2 {
	font-size: 135%;
	background-image: url( "/images/base/rank2.png" );
	background-repeat: no-repeat;
	background-position: left center;
}
.no-3 {
	font-size: 120%;
	background-image: url( "/images/base/rank3.png" );
	background-repeat: no-repeat;
	background-position: left center;
}
.no::before {
	left: 73px;
	margin: 3px 0 0;
	position: absolute;
	font-size: 15px;
	width: 20px;
	font-weight: bold;
	text-align: center;
}


/* 見出し */
.bigt {
	display: inline-block;
	font-size: 250%;
	margin: 0 0 10px;
	padding: 0 20px;
}


/* 時計表示 */
#currentTime {
	width: 100%;
	margin: 10px 5px;
	padding: 5px 0;
	font-size: 35px;
	font-weight: bold;
	border: 1px solid #333;
	box-sizing: border-box;
}


/* メニューボタン */
.but_list input[type="submit"], .but_list button {
	box-sizing: border-box;
	display: block;
	font-size: 130%;
	width: 90%;
	height: 50px;
	margin: 5px 10px;
	border-radius: 10px;
	font-weight: bold;
	cursor: pointer;
	line-height: 20px;
}


/* 点滅 */
.anime {
	animation: flash 0.4s linear infinite;
}
@keyframes flash {
	0%,100% { opacity: 1; }
	50% { opacity: 0; }
}


/* 時間リスト */
ul {
	display: flex;
	list-style: none;
	padding: 0;
}
li:nth-child(1) {
	text-align: right;
	width: 40%;
}
li:nth-child(2) {
	width: 20%;
}
li:nth-child(3) {
	text-align: left;
	width: 40%;
}

/* テーブル行固定 */
.sticky thead td, .sticky thead th {
	position: sticky;
	top: 55px;
	background: #FFF;
}
