@charset "utf-8";

0. Reset Section
1. Layout Section
2. Basic Tag Section       
3. Element Section  
	3-1 common style     
	3-2 title (h1-h6)
	3-3 button
	3-4 table
	3-5 form
4. header section       
	4-2 Ground Navigation
5. side section    
6. footer section 
7. flash section  
8. shared blocks
*/



/* -----------------------------------------------------------------------------------------------
	0. Reset Section
-------------------------------------------------------------------------------------------------- */
  
* {margin: 0; padding: 0;}
html, body, div, span, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,abbr, address, cite, code,del, dfn, em, img, ins, kbd, q, samp,small, strong, sub, sup, var,b, i,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, figcaption, figure,footer, header, hgroup, menu, nav, section, summary,time, mark, audio, video,header,footer,aside,address, {margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; background:transparent;}
html {background: #FFF; color: #000;}
* html body {font-size: small;}
*:first-child+html body {font-size: small;}
img {border: 0; margin:0; vertical-align: bottom;}
h1,h2,h3,h4,h5,h6 {font-size: 100%; font-weight: bold; height:100%;}
ul,dl,ol {text-indent: 0;}
li {list-style: none;}
address,caption,cite,code,dfn,em,strong,th,var {font-style: normal; font-weight: normal;}
sup {vertical-align: text-top;}
sub {vertical-align: text-bottom;}
input,textarea,select {font-family: inherit; font-size: inherit; font-weight:inherit;}
* html input,* html textarea,* html select {font-size: 100%;}
*:first-child+html+input,*:first-child html+textarea,*:first-child+html select {font-size: 100%;}
table {border-collapse: collapse; border-spacing: 0; font-size: inherit;}
th,td {text-align: left; vertical-align: top;}
th img, td img { vertical-align:middle; }
caption {text-align: left;}
pre,code,kbd,samp,tt {font-family: monospace;}
* html pre,* html code,* html kbd,* html samp,* html tt {font-size: 100%; line-height: 100%;}
*:first-child+html pre,*:first-child html+code,*:first-child html+kbd,*:first-child+html+samp,*:first-child+html tt {font-size: 108%; line-height: 100%;}
input,select,textarea {font-size: 100%; font-family: Verdana, Helvetica, sans-serif;}
article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary { display:block; }
html {-webkit-text-size-adjust: 100%; }
*, *:before, *:after { box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -o-box-sizing: border-box; -ms-box-sizing: border-box; }



/* -----------------------------------------------------------------------------------------------
	1. Layout Section
-------------------------------------------------------------------------------------------------- */

html {
	color: #333333;
	background: #f4f4f4;
	font-family: "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 'メイリオ' , Meiryo , Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 62.5%;
}
body {
	font-size: 13px;	font-size: 1.3rem;
	line-height: 15px;	line-height: 1.5rem;
	text-align: center;
	padding: 0 20px;
} 

.wrapper {
  min-width: 960px;
  max-width: 1300px;
  margin: 0 auto;
  overflow: hidden;
  text-align: left;
  background: #ffffff;
  position: relative;
  padding: 40px 0;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	margin-bottom: 15px;
}

.side {
	float: left;
	width: 250px;
	padding: 20px;
	overflow: hidden;
}
.main {
	margin: 0 0 30px 250px;
	padding: 0 20px 20px 20px;
	overflow: hidden;
}

.footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
}



/* -----------------------------------------------------------------------------------------------
	2. Basic Tag Section       
-------------------------------------------------------------------------------------------------- */

a,a:visited { color:#007777; text-decoration:none; transition: 0.5s; }
a:hover { color: #33ccff; text-decoration:underline; transition-duration: 0.5s; }
a:hover img { filter: alpha(opacity=80); -moz-opacity:0.80; opacity:0.80; transition: 0.5s; }
strong { font-weight:bold; }
fieldset { border: none; padding: 0; }


/* -----------------------------------------------------------------------------------------------
	3. Element Section
-------------------------------------------------------------------------------------------------- */

/* 3-1 common style  ----------------------------- */

.clear {
	clear:both;
}
br.clear {
	height:0;
}
.click, .btn {
	cursor:pointer;
}

.red { color:#F00; }
.a { background:#fffac2; border:1px solid #dbd6a2; border-radius: 10px; -webkit-border-radius: 10px; -moz-border-radius: 10px; padding:10px 0 10px 16px; color:#5e5c20; margin:12px 4px;   font-weight:bold; }
.b { background:#f3c598; border:1px solid #e8b084; border-radius: 10px; -webkit-border-radius: 10px; -moz-border-radius: 10px; padding:10px 0 10px 16px; color:#ba4c32; margin:12px 4px;   font-weight:bold; }
.inputsection { background:#EFF; padding:20px 20px 10px 20px;   }
.submit { text-align:center; margin:20px 0; }
.ex { color:#333; line-height:130%; }
.err, .error-message { color:#ff0000; font-weight:bold; }

.submenus {
	overflow: hidden;
	margin-bottom: 20px;
    display: flex;
}

.submenu {
	flex: 0 1 auto;
    width: 14%;
	background: #f6ffde;
	padding: 11px 10px 8px 13px;
	border-radius: 4px; -webkit-border-radius: 4px; -moz-border-radius: 4px;
	border: 1px solid #e8e8e8;
	margin: 0 10px 10px 0;
	font-size: 14px; font-size: 1.4rem;
	text-align: center;
}
.submenu:hover {
	background: #aedb73;
	color: #ffffff;
}


/* page nation */
.page_count {
	margin-bottom: 5px;
	padding: 0;
	font-size: 12px; font-size: 1.2rem;
	color: #888888;
}
.page_nation, .paginator {
	margin: 0 0 20px 0;
	overflow: hidden;
}
.paginator p {
	clear: both;
}
.page_nation ul, .pagination {
	list-style-type: none;
	padding: 0;
	text-align: center;
	margin-bottom: 12px;
	overflow: hidden;
}
.page_nation .pn, .pagination > li {
	float: left;
	width: 32px;
	padding: 8px 0 6px 0;
	margin: 0;
	background: #ffffff;
	border-top: 1px solid #c2c2c2;
	border-bottom: 1px solid #c2c2c2;
	border-left: 1px solid #c2c2c2;
	font-size: 16px; font-size: 1.6rem;
	color:#159e92;
}
.page_nation .current, .pagination .active {
	background: #159e92;
	color: #ffffff;
} 

.page_nation .pn:hover, .pagination > li:hover {
	background: #9acfb5;
	transition-duration: 0.5s;
	cursor: pointer;
}
.page_nation .pn:hover a, .pagination > li:hover a {
	transition-duration: 0.5s;
	color: #ffffff;
}

.pn_prev, .pagination .prev {
	width: 120px;
	-webkit-border-top-left-radius: 4px; -moz-border-radius-topleft: 4px;  
	-webkit-border-bottom-left-radius: 4px; -moz-border-radius-bottomleft: 4px;
}
.pn_next, .pagination .next {
	width: 110px;
	border: 1px solid #c2c2c2;
	-webkit-border-top-right-radius: 4px; -moz-border-radius-topright: 4px;  
	-webkit-border-bottom-right-radius: 4px; -moz-border-radius-bottomright: 4px;
}
.pagination .first, .pagination .last {
	width: 70px;
}
.page_nation + *, .paginator + *  {
	clear: both;
}


.disabled {
	display: none;
}

/* 3-2 title(h1-h6)  ----------------------------- */

.site_title { /* h1 */
	
}
.page_title { /* h2 */
	border:1px solid #dbd6a2;
	border-radius: 10px; -webkit-border-radius: 10px; -moz-border-radius: 10px;
	padding:25px 0 22px 24px;
	font-family:'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
	font-size: 24px; font-size:2.4rem;
	font-weight: normal;
	color: #a39640;
	margin-bottom: 20px;
}
.section_title { /* h3 */
	
}
.block_title { /* h4 */
	
}


/* 3-3 button  ----------------------------- */

.btn, .formbtn {
	display: block;
	width: 100%;
	background: #f6ffde;
	padding: 11px 10px 8px 13px;
	border-radius: 4px; -webkit-border-radius: 4px; -moz-border-radius: 4px;
	border: 1px solid #e8e8e8;
	margin-right: 10px;
	font-size: 14px; font-size: 1.4rem;
	text-align: center;
	line-height: 1.3;
}

.btn_large {
	
}
.btn_small, .formbtn {
	float: left;
	width: 12.5%;
	margin: 10px;
	padding: 6px 10px 4px 10px;
}
.btn_submit {
	padding: 16px;
	margin: 20px auto;
	font-size:24px; font-size: 2.4rem;
	background: #0066ff;
	color: #ffffff !important;
}
.btn_submit:hover {
	background: #88bbff;
	color: #ffff00 !important;
	text-decoration: none;
}
.btn_float {
	width: 30%;
	float: left;
	margin-right: 20px;
}
.btn_float:last-child {
	margin-right: 0;
}
.btns {
	overflow: hidden;
	margin-bottom: 20px;
}

/* 3-4 table  ----------------------------- */

table {
	 background: #ffffff;
	 margin: 0 0 20px 0;
	 width: 100%;
}
tr {
	
}
th, td {
	border: 1px solid #d0d0d0;
	padding: 8px 10px 6px 10px;
	vertical-align: middle;
}
th {
	background:#e8e8e8;
	text-align:center;
	color: #000000; 
}
th:first-child {
	white-space:nowrap;
	width: 50px;
}
td {
	word-break:break-all;
}
th a { text-decoration:none; color: #009999; }
th.belt { background:#888888; color:#ffffff; padding: 3px 0 2px 0; }
tr.now, .tr_now { background:#f8fff8; }

tr.edited, .tr_edited { background:#f0fff0; border:2px solid #000000; }

tr.new td, .tr_new td { background:#ffffd0; }
tr.current td, .tr_current td { background:#e8ffe8;  }
tr.close td, .tr_close td { color: #a0a0a0;  }

td.id { white-space:nowrap; }
td.body { }
td.org { width:100px; }
td.date { white-space:nowrap; }
td.visible { width:20px; text-align:center; }
td.action { width:50px; text-align:center; }
.regular {
	background: #f7f7f7;
}
tr.winner td {
	background: #ffe8e8;
}

/* 3-5 form  ----------------------------- */

.form {
	overflow: hidden;
}
.form_caution {
	margin: 10px 0 20px 15px;
	color: #ff4444;
}
.form input[type="text"], .form input[type="email"], .form input[type="password"], .form textarea { 
	font-size:15px; font-size: 1.5rem;
	color:#000000; 
	padding:6px;
	border:1px solid #dddddd; 
	margin:8px 0;
	background:#f8f8f8;
	width: 100%;
}
.form input[type="checkbox"] {
	width:auto;
}
.form input[type="file"] {
	margin-bottom: 10px;
}
.form select { margin:8px 4px 8px 4px; }
.form .ex { font-size:12px; font-size:1.2rem; color:#666666; margin-bottom: 8px; line-height: 1.4; }
.form .error { color:#FF0000; }

#errorBlock { padding:10px; background:#FF0000; color:#FFFFFF; }
#errorBlock ul { margin:10px; }
#errorBlock li { list-style:disc; margin:8px 0px 0px 20px; }

#policy { font-size:85%; margin:30px 0 0 0; }

.search_line {
	margin: 10px 0;
}
.info { font-size:118%; margin:15px 0; line-height:150%; }
.imp { font-size:118%; font-weight:bold; color:#900; }
.edited { border: 2px solid #ff8888; }


/* -----------------------------------------------------------------------------------------------
	4. header section       
-------------------------------------------------------------------------------------------------- */

.header {
	background: #009999;
	color: #ffffff;
	overflow: hidden;
	padding: 6px 30px;
}
.header h1 {
	width: 60%;
	float: left;
}
.header .header_username {
	width: 40%;
	float: right;
	margin: 10px 0 0 0;
	text-align: right;
}


/* -----------------------------------------------------------------------------------------------
	5. side section       
-------------------------------------------------------------------------------------------------- */

.smenu {
	margin-bottom: 15px;
}

.smenus {
	/* border-radius: 10px; -webkit-border-radius: 10px; -moz-border-radius: 10px; */
	display: block;
	background: #f0f0f0;
	padding: 11px 10px 8px 13px;
	border: 1px solid #e8e8e8;
}
.smenus:first-child {
	-webkit-border-top-left-radius: 4px; -moz-border-radius-topleft: 4px;  
	-webkit-border-top-right-radius: 4px; -moz-border-radius-topright: 4px;  
}
.smenus:last-child {
	-webkit-border-bottom-left-radius: 4px; -moz-border-radius-bottomleft: 4px;  
	-webkit-border-bottom-right-radius: 4px; -moz-border-radius-bottomright: 4px;  
}
.smenus:hover {
	background: #e8ffe8;
}
.smenus-mls {
	background: #ffe8e8;
	color: #ff4444 !important;
}


/* -----------------------------------------------------------------------------------------------
	6. footer section       
-------------------------------------------------------------------------------------------------- */
.totop {
	display: block;
	position: fixed;
	bottom: 5px;
	right: 5px;
	width: 90px;
	height: 90px;
}
.totop a img {
	filter: alpha(opacity=30); -moz-opacity:0.30; opacity:0.30;
}
.totop a:hover img {
	filter: alpha(opacity=70); -moz-opacity:0.70; opacity:0.70;
}
.footer {
	clear: both;
	background: #404040;
	color: #ffffff;
	padding: 0;
	text-align: center;
	font-size: 11px; font-size: 1.1rem;
}



/* -----------------------------------------------------------------------------------------------
	7. flash section       
-------------------------------------------------------------------------------------------------- */

.message,
#flashMessage {
	display:none;
	position:absolute;
	z-index:10;
	width:700px;
	top:70px;
	margin: 0 auto;
	padding:100px 20px 90px 20px;
	background:#444444;
	filter: alpha(opacity=70); -moz-opacity:0.80; opacity:0.80;
	border-radius: 10px; -webkit-border-radius: 10px; -moz-border-radius: 10px;
	text-align:center;
	color:#ffffff;
}
.message,
#flashMessage {
	font-size: 1.8rem;
	line-height:2.0;
}
.message,
#flashMessage a  {
	color:#ffffff;
}




/* -----------------------------------------------------------------------------------------------
	8. shared blocks
-------------------------------------------------------------------------------------------------- */
.section {
	margin: 20px 0 70px 0;
}
.actions img {
	width: 24px;
}

/* -----------------------------------------------------------------------------------------------
	9. each contents block
-------------------------------------------------------------------------------------------------- */
.Users_login .wapper {
	background: #f4f4f4;
}
.Users_login .main {
	width: 70%;
	margin: 100px auto 30px auto;
	background: #f4f4f4;
}
.Users_login .page_title {
	text-align: center;
}
.loginWIndow {
	width: 80%;
 	margin: 0 auto;
}
.Users_login label {
	width: 15%;
	float: left;
	padding-top: 20px;
	height: 40px;
	font-size: 1.8rem;
}
.Users_login .form input[type="text"], .Users_login  input[type="password"] {
	width: 85%;
	float: left;
	height: 40px;
}


.selectedLine {
    border: 2px solid #009999;   
    background: #ffffe8;
}
.deletedLine {
    border: 2px solid #888888;   
    background: #d8d8d8;
}
.topic_kind_1 { background: #999999; color: #ffffff; }
.topic_kind_2 { background: #33aa00; color: #ffffff; }
.topic_kind_3 { background: #aa0000; color: #ffffff; }
.topic_kind_4 { background: #ff9933;}
.topic_kind_5 { background: #000088; color: #ffffff; }


.topic_headline {
    border: 2px solid #000000;
}

/* ck editer */


/* -- fin ------------------------------------------------------------------------------------------ */
