﻿@CHARSET "utf-8";
/*------------------------------------------------------------------------------
	共通
------------------------------------------------------------------------------*/
html,body	{
	padding: 0px;
	margin: 0px;
	height:100%;
}

form {
	display: inline;
}

a	{
	color: #333;
}

ul {
	list-style-type: none;
}

textarea {
	resize: vertical;
}

.require_mark	{
	color: #fd6c8b;
}

.error	{
	color: #fc2757;
}

.frame	{
	padding: 20px;
	background-color: #F8F8F8;
}

.require	{
	padding: 10px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	border: solid 1px #ccc;
}

.scroll	{
	overflow: scroll;
}

.title_bar	{
	min-width: 960px;
	background: #eee;
}

.title_bar_name	{
	width: 200px;
	padding: 15px 20px;
	background: #ddd;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	display: inline-block;
}

.title_bar_btn	{
	padding: 15px 20px;
	border-right: solid 1px #888;
	cursor: pointer;
	font-size: 14px;
	display: inline-block;
}
/*------------------------------------------------------------------------------
	ボタン
------------------------------------------------------------------------------*/
.btn_or {
	display: inline-block;
	font-size: 14px;
	padding: 5px 10px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
 	cursor: pointer;
	text-align: center;
	border: solid 1px #888;
	background-color: white;
}

.btn_or:disabled	{
	background-color: #aaa;
	color: white;
	cursor: auto;
}
/*------------------------------------------------------------------------------
	main-contents
------------------------------------------------------------------------------*/
.wrapper	{
	min-width: 960px;
	font-size: 12px;
}

.column_container	{
	display: -webkit-flex;
	display: flex;
}

.column_contents	{
	flex: 1;
	order: 2;
}

.column_navi	{
	width: 200px;
	height: 100vh;
	padding: 20px;
	background: #eee;
	order: 1;
	position: -webkit-sticky;
	position: sticky;
	top: 0;
}
/*------------------------------------------------------------------------------
	メニュー
------------------------------------------------------------------------------*/
.menu {
	position: relative;
/*	width: 100%;*/
	height: 50px;
	background: #2862AE;
	min-width: 960px;
}

.menu > li {
	float: left;
	width: 160px;
	height: 50px;
	line-height: 50px;
	background: #2862AE;
	text-align: center;
}

.menu > li.config {
	float: right;
	width: 80px;
}

.menu > li a {
	display: block;
	color: #fff;
}

ul.menu__second-level {
	visibility: hidden;
	opacity: 0;
	z-index: 1;
}

.menu > li:not(.config):hover {
	background: #4684D5;
	-webkit-transition: all .5s;
	transition: all .5s;
}

.menu__second-level li a:hover {
	background: #4684D5;
}

.menu > li.menu__single {
	position: relative;
}

li.menu__single ul.menu__second-level {
	position: absolute;
	top: 40px;
	width: 100%;
	background: #2862AE;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}

li.menu__single:hover ul.menu__second-level {
	top: 50px;
	visibility: visible;
	opacity: 1;
}
/*------------------------------------------------------------------------------
	footer
------------------------------------------------------------------------------*/
.footer	{
	width: 100%;
	padding: 5px 0px 0px 0px;
	border-top: solid 1px #CCCCCC;
	color: #666666;
	text-align: center;
	height: 20px;
	z-index: 120;
	background-color: #FFF;
}
/*------------------------------------------------------------------------------
	private
------------------------------------------------------------------------------*/
.license {
	padding: 20px;
	border: solid 1px #ccc;
	border-radius: 4px;
	cursor: pointer;
}
/*------------------------------------------------------------------------------
	アップロードダイアログ
------------------------------------------------------------------------------*/
.upload_dialog	{
	width: 350px;
	padding: 30px 10px;
	background-color: #FFFFFF;
	border: solid 2px #808080;
	font-size: 12px;
	text-align: center;
	position: absolute;
	display: none;
}

.upload_image	{
	width: 200px;
	height: 200px;
	margin-bottom: 5px;
	border: solid 1px #808080;
}

.upload_image_100	{
	width: 100px;
	height: 100px;
	margin-bottom: 5px;
	border: solid 1px #808080;
}

.upload_image_150	{
	width: 150px;
	height: 150px;
	margin-bottom: 5px;
	border: solid 1px #808080;
}

.upload_image_180	{
	width: 180px;
	height: 180px;
	margin-bottom: 5px;
	border: solid 1px #808080;
}
/*------------------------------------------------------------------------------
	テキストエリア
------------------------------------------------------------------------------*/
.area_text {
	width: 100%;
	height: 100vh;
	border: solid 1px #D0D0D0;
	margin: 0px;
	padding: 0px;
}
/*------------------------------------------------------------------------------
	協賛
------------------------------------------------------------------------------*/
div.sponsor	{
	margin-top: 5px;
	padding-right: 20px;
	display: inline-block;
}

div.sponsor	span	{
	cursor: pointer;
}
/*------------------------------------------------------------------------------
	3点リーダー
------------------------------------------------------------------------------*/
.dotted3	{
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
