@charset "utf-8";
* {
	margin:0; padding:0;
}
input, button, select, textarea {
	-webkit-appearance: none;
}
body {
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	line-height:1.5;
	color: #444444;
	background-color: #eeeeee;
}
/*============================================
ヘッダ
============================================*/
div#header {
	width: 100%;
	background-color: #ffbb00;
	display:table;
}
h1 {
	padding: 8px;
	font-size: 140%;
	color: #ffffff;
	display: table-cell;
	text-align: left;
}
h1 > a{
	color: #ffffff;
	text-decoration: none;
}
.headerlink{
	padding: 8px;
	display: table-cell;
	text-align: right;
}
/*============================================
メインメニュー
============================================*/
a {
	text-decoration: none;
	color: #444444;
}
.main {
	display:block;
	margin: 0 auto;
	width: 96%;
	max-width: 500px;
}
.contents {
	margin: 8px 0px;
	padding: 8px;
	background-color: #ffffff;
	box-shadow: 1px 1px 1px rgba(204, 204, 204, 0.5);
	border-radius: 3px;
	min-height: 50px;
	word-break: break-all;
}
.right{
	display: block;
	margin: 0 0 0 auto;
}
.center{
	text-align: center;
}
#menuright{
	float: right;
}
button,input[type="image"] {
	margin-left: 25px;
	font-weight: bold;
	color: #444444;
	background-color: #eeeeee;
	border: none;
}
/*============================================
DnDページ
============================================*/
ul {
	list-style: none;
}
.main_DnD {
	display:block;
	margin: 0 auto;
	width: 80%;
	max-width: 500px;
}
/*============================================
loginページ
============================================*/
h2,h3 {
	line-height: 2;
	font-size: 110%;
}
div#banner {
	padding: 60px 10px 60px 10px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.login {
	text-align: center;
}
input[type="text"],input[type="button"],input[type="submit"] {
	width:250px;
	border:solid 1px #ccc;
	padding:15px 15px;
	margin: 10px;
	font-weight:bold;
	background-color: #ffffff;
	cursor:pointer;
}
/*============================================
modal-multi.css
============================================*/
.modal-content {
	font-size: 100%;
	width: 90% ;
	margin-left: auto;
	margin-right: auto;
	max-height: 400px;
	margin: 0;
	padding: 10px 15px;
	border: 2px solid #aaa;
	background: #fff;
	position: fixed;
	display: none;
	z-index: 2;
	overflow: auto;
}
.modal-content textarea {
	font-size: 100%;
	width: 100%;
}
.modal-content select {
	font-size: 140%;
}
.modal-content form {
	text-align: center;
}
#modal-overlay {
	z-index: 1;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 120%;
	background-color: rgba( 0,0,0, 0.75 );
}
.button-link {
}
.button-link:hover{
	cursor: pointer;
	color: #f00;
}
.large {
	padding:15px;
	font-size:1.2em;
}
/*============================================
フッター
============================================*/
footer {
	line-height: 2;
	text-align: center;
	font-size: 90%;
	font-weight: bold;
}
footer > a{
	color: #444444;
	text-decoration: none;
	font-weight: normal;
}
/*============================================
問合せフォーム
============================================*/
input[type="radio"] {
  display: none;
}
label {
  position: relative;
  display: inline-block;
  padding: 3px 3px 3px 20px;
  cursor: pointer;
}
label::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  margin-top: -8px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 100%;
}
input[type="radio"]:checked + label::after {
  position: absolute;
  content: '';
  top: 50%;
  left: 4px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #3498db;
  border-radius: 100%;
}