@charset "utf-8";

.window {
	margin: 0em;
	padding: 0em;
	overflow:hidden;
	border: 1px solid #666;
	background-color: #fff;
		
	-moz-box-shadow: 0px 0px 10px #000000;
	-webkit-box-shadow: 0px 0px 10px #000000;
	box-shadow: 0px 0px 10px #000000;

	z-index:99;
	
	box-sizing: border-box;
	-webkit-box-sizing: border-box;

	border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-o-border-radius: 0.3em;
	-ms-border-radius: 0.3em;
}

/* 固定 */
.window.top_fixed {
	position:fixed;
	left:0em;
	top:0em;
	
	z-index:100;
}

.window.bottom_fixed {
	position:fixed;
	left:0em;
	bottom:0em;
	
	z-index:98;
}

.window * {
	/* 内側に線を引く */
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.window .window_title {
	margin: 0px;
	padding: 0.5em;
	font-size: 12pt;
	font-style: normal;
	line-height: 1.2em;
	font-weight: bold;
	color: #FFF;
	
	vertical-align:middle;
	
	background: #ccc; /* Old browsers */
	background: -moz-linear-gradient(top,  #ccc 0%, #999 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ccc), color-stop(100%,#999)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ccc 0%,#999 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ccc 0%,#999 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ccc 0%,#999 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #ccc 0%,#999 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ccc', endColorstr='#999',GradientType=0 ); /* IE6-9 */
}

.window_close, .window_min {
	margin: 0.1em;
	padding: 0.4em 0.6em;
	float: right;
	cursor:pointer;
	font-size: 12pt;
	font-style: normal;
	line-height: 1.2em;
	font-weight: bold;

	background:#eee;

	border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-o-border-radius: 0.3em;
	-ms-border-radius: 0.3em;
}

.window_close:hover, .window_min:hover {
	background:#C4F4F2;
	opacity:70%;
}

/*
.window_min {
	margin: 0.2em 0.5em;
	padding: 0.2em;
	float: right;
	cursor:pointer;
	font-size: 12pt;
	font-style: normal;
	line-height: 1.2em;
	font-weight: bold;
	color: #FFF;
	
	border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-o-border-radius: 0.3em;
	-ms-border-radius: 0.3em;

}
*/

.window_status {
	font-size: 12pt;
	font-style: normal;
	line-height: 1.2em;
	font-weight: normal;
	margin: 0px;
	padding: 3px;
	background-color: #EEEEEE;
	clear: both;
	cursor: default;
}

.window_size {
	margin: 0px;
	padding: 2px;
	float: right;
	cursor: se-resize;
}

.window li {
	float: left;
	clear: none;
	margin: 1px;
	padding: 1px;
	text-align: center;
	list-style-position: inside;
	list-style-type: none;
	font-size: 11pt;
	line-height: 1em;
	font-weight: normal;
}

.window p {
	margin: 0px;
	padding: 0.2em;
}

.window a {
	margin: 0px;
	padding: 0px;
	text-decoration: none;
}

.window a:hover {
	background:#eee;
	opacity:70%;
}

/* ********************************* *
 * ツールバー
 * ********************************* */

.toolbar {
	margin: 0em;
	padding: 0.2em;
	width:100%;
	
	background-image: none;
	background-color: #eee;
	
	/*border-top:1px solid #fff;*/
	border-bottom:1px solid #999;
	text-align:left;
}

.toolbar .window_title {
	margin: 0px;
	padding: 0.2em;
	font-size: 10pt;
}

.toolbar .window_close, .toolbar .window_min {
	margin: 0.1em;
	padding: 0.2em;
	font-size: 10pt;
	line-height: 1em;
}


.toolbar a {
	margin: 0em;
	padding: 0.2em 0.4em;
	display: block;
	
	min-height:1.8em;
	
	color:#333;
	cursor:pointer;
	text-shadow:1px 1px 0px #fff;
	text-decoration: none;

	background:#f5f5f5;
	border:#a9a9a9 1px solid;
	border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-o-border-radius: 0.3em;
	-ms-border-radius: 0.3em;
}

.toolbar a:hover {
	background:#C4F4F2;
	opacity:70%;
}

.toolbar ul {
	margin: 0px;
	padding: 0px;
	overflow: hidden;
}

.toolbar li {
	margin: 1px 0px;
	padding: 0px;
	overflow: hidden;
	float:none;
	display: inline-block;
	vertical-align:middle;
}

/*
.toolbar button {
	margin: 1px;
	padding: 2px;
	border-top: 1px solid #CCCCCC;
	border-right: 1px solid #999999;
	border-bottom: 1px solid #999999;
	border-left: 1px solid #CCCCCC;
}
*/

.toolbar input[type=button] {
	margin: 0.1em;
	padding: 0.2em 0.4em;
	font-size: 10pt;
}

/* ********************************* *
 * ポップアップ
 * ********************************* */
.popup {
	position: absolute;
	width:auto;
	height:auto;
	/*
	margin-left:-25%;
	margin-top:-25%;
	*/
	top: 50%;
	left: 50%;

	/* 要素の大きさの半分引く（CSS3） */
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);

	text-align: left;	
	
	border: 1px solid #666;
	background-color: #fff;
	z-index:999;
		
	-moz-box-shadow: 0px 0px 10px #000000;
	-webkit-box-shadow: 0px 0px 10px #000000;
	box-shadow: 0px 0px 10px #000000;
}

/* 760px 以上 */
@media print, screen and (min-width: 760px) {
	.popup {
		width:90%;
	}
}

.popup iframe {
	width:100%;
	height:auto;
	max-height:5em;
	background:#EEE;
}
.popup .title {
	margin: 0px;
	padding: 0.5em;
	color: #FFF;
	text-shadow:0px 0px 1px #666;
	background: #cedce7; /* Old browsers */
	background: -moz-linear-gradient(top,  #cedce7 0%, #596a72 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#cedce7), color-stop(100%,#596a72)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #cedce7 0%,#596a72 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #cedce7 0%,#596a72 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #cedce7 0%,#596a72 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #cedce7 0%,#596a72 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cedce7', endColorstr='#596a72',GradientType=0 ); /* IE6-9 */
	font-size: larger;
}

.popup .close {
	margin: 0px;
	padding: 0px;
	top: 0px;
	float: right;
}

.popup .close a {
	margin: 1px;
	padding: 0.25em;
	cursor:pointer;
	font-weight: bold;
	color: #FFF;
	
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-o-border-radius: 3px;
	-ms-border-radius: 3px;

	background: #97b2bf; /* Old browsers */
	background: -moz-linear-gradient(top,  #97b2bf 0%, #dceaf4 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#97b2bf), color-stop(100%,#dceaf4)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #97b2bf 0%,#dceaf4 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #97b2bf 0%,#dceaf4 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #97b2bf 0%,#dceaf4 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #97b2bf 0%,#dceaf4 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#97b2bf', endColorstr='#dceaf4',GradientType=0 ); /* IE6-9 */}

.popup .body {
	margin: 0px;
	padding: 0.5em;
}
.popup .tail {
	margin: 0px;
	padding: 0.5em;
	text-align: right;
}

.overlay {
	z-index:998;
	display:block;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:120%;
	background-color:rgba(0,0,0,0.75);
}

/* ********************************* *
 * カレンダー：日時対応版
 * ********************************* */
.calendar.datetime {
	margin: 0px;
	padding: 0.5em;
	font-size: 10.5pt;
	line-height: 1.4em;
	overflow:hidden;
}
.calendar.datetime a {
	width: 100%;
	height:100%;
	cursor:pointer;
	color:#555;
}

.calendar.datetime .current {
	box-shadow: 0 0 0 2px #178FE5 inset;
}
.calendar.datetime .event {
	background-color: #99D3FF;
}


.calendar.datetime table {
	margin: 0em;
	padding: 0em;
	width: 12em;
	height:10em;
	float: left;
	border: solid 1px #dddddd;
	vertical-align:central;
	text-align: center;
	border-collapse: collapse;
}

.calendar.datetime caption {
	position:relative;
}

.calendar.datetime caption .prev {
	position:absolute;
	left:0.5em;
	width:1.5em;
}

.calendar.datetime caption .today {
	position:absolute;
	left:2.5em;
	width:1.5em;
}

.calendar.datetime caption .next {
	position:absolute;
	right:0.5em;
	width:1.5em;
}

.calendar.datetime th {
	width: 14.2857142%;
	border: 1px solid #DDD;
	color:#999;
}
.calendar.datetime td {
	width: 14.2857142%;
	border: 1px solid #DDD;
}
.calendar.datetime td.in {
}
.calendar.datetime .time {
	margin-left:0.5em;
	float: left;
}
.calendar.datetime .time ul {
	margin:0em;
	padding:0em;
	height:11em;
	list-style-type: none;
	overflow-x:hidden;
	overflow-y:scroll;
	border: solid 1px #dddddd;
}
.calendar.datetime .time li {
}
.calendar.datetime .time li a {
	padding:0em 0.5em;
}

.calendar.datetime .desc {
	margin-left:0.5em;
	/*float: left;*/
	width:auto;
	height:12em;
}

.calendar.datetime .desc ul {
	margin:0em;
	padding:0em;
	height:11em;
	list-style-type: none;
}
.calendar.datetime .desc li {
	padding-left:1em;
	padding-bottom:1em;
	float:left;
	display:block;
}
.calendar.datetime .desc li a {
	margin:0em;
	padding:0.25em;
	height:auto;
	display:block;
	
	border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-o-border-radius: 0.3em;
	-ms-border-radius: 0.3em;
	
	background-color: #31A9EE;	
	color: #ffffff;
}

/* ********************************* *
 * 編集セクション
 * ********************************* */

/* 編集セクションスタイル */
.section_editor {
	display:block;
	margin:0em;
	padding:0em;
	text-align:left;
}

.section_editor input
, select
, button
, textarea {
	/* ビュー投稿でフォーム要素に変更がっても矯正する */
/*
    font-family: "メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック",sans-serif;
    font-size: 10.5pt;
    font-style: normal;
    line-height: 1.4em;
    box-sizing: border-box;
*/
}

/* 編集用iframe */
.section_editor .editor {
	/*overflow:hidden;*/
	/*overflow-y:scroll;*/
	text-align: left;
	background-color: #ffffff;
	width: 100%;
	height: 100%;
	/*max-height: 2000px;*/
	padding: 0px;
	border: 1px solid #666666;
	box-sizing: border-box;
}

/* 編集ツールバー */
.editwindow {
	margin: 0em;
	padding: 0em;
	width: 100%;
	height:auto;
	
	border:none;

	-moz-box-shadow:none;
	-webkit-box-shadow:none;
	box-shadow:none;
	
}

.description {
	margin: 0px;
	/*padding: 0.2em;*/
	width: 100%;
}

.displayoff {
	display: none;
}

/* ********************************* *
 * ビュー投稿用の補正スタイル
 * ********************************* */

/* ポストフォーム */ 
.postform {
	margin:0.2em;
	padding:0em;
	overflow:hidden;
	
}

/* ナビセクション */
.postnavi {
	margin:0em;
	padding:0.5em;
	background:#fff;
	
}

/* アクションセクション */
.postaction {
	margin:0em;
	padding:0.5em;
	background:#eee;
	
}

/* ********************************* *
 * メディアビュー
 * ********************************* */

.mediaview {
	margin: 0em;
	padding: 0em;
	overflow:hidden;
	
	width:100%;
	/*height: 15em;*/
	z-index:98;

	text-align:left;

	font-size: 11pt;
	line-height: 1.2em;
	/*background-color: #fff;*/

	-moz-box-shadow: 0px 0px 10px #000000;
	-webkit-box-shadow: 0px 0px 10px #000000;
	box-shadow: 0px 0px 10px #000000;
}

.mediaview * {
	/* 内側に線を引く */
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.mediaview ul {
	margin: 0px;
	padding: 2px;
	clear: both;
	list-style-position: inside;
	list-style-type: none;
}

.mediaview li {
	margin: 0px;
	padding: 2px;
	clear: none;
	float: left;
	list-style-position: inside;
	list-style-type: none;
}

.mediaview a:hover {
	background:#C4F4F2;
	opacity:70%;
}

.mediaview .thumbnails {
	margin:0em;
	padding:0em;
	display:block;
	overflow-x:auto;
	overflow-y:hidden;
	width:100%;
	white-space:nowrap;
	-webkit-overflow-scrolling: touch;
}

.mediaview .thumbnails .noarea {
	display:inline-block;
}

.mediaview .thumbnail {
	position:relative;
	display:inline-block;
	overflow:hidden;
	margin:0.2em;
	padding:0.2em;
	width:10em;
	height:10em;
	vertical-align:top;
	white-space:normal;
	
	border: 1px solid #CCCCCC;
	text-align: center;
}

.mediaview .thumbnail input[type=file] {
	display:none;
}

.mediaview .thumbnail .uploadlabel {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin:0.2em;
	padding:0.5em;
	
	color:#333;
	cursor:pointer;
	background:#f5f5f5;
	text-shadow:0px 0px 2px #fff;
	
	border:#a9a9a9 1px solid;
	border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-o-border-radius: 0.3em;
	-ms-border-radius: 0.3em;	
}

.mediaview .thumbnail .uploadlabel:hover {
	background-color: #C4F4F2;
}

.mediaview .thumbnail .delete {
	position:absolute;
	/*overflow:hidden;*/
	left:0px;
	top:0px;
	z-index: 2;
		
	background: #eee;
}

.mediaview .thumbnail .delete a {
	padding:0.4em 0.6em;
	display:inline-block;
	font-size:14pt;
	font-weight: bold;
	color: #000;
	text-decoration: none;
}

.mediaview .thumbnail img {
	position:absolute;
	overflow:hidden;
	left:0em;
	top:0em;
	width: 100%;
	max-height: 100%;
}

/* 送信中アイコン */
.mediaview .thumbnail label img {
	display:none;
	position:absolute;
	overflow:hidden;
	left:50%;
	top:50%;
	width: auto;
	max-height: 100%;
	
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.mediaview .thumbnail p {
	position:absolute;
	overflow:hidden;
	bottom:0.2em;
	margin: 0em;
	padding: 0em;
	font-size: 9pt;	
}

.mediaview input[type=button] {
	padding: 2px;
}
