﻿@charset "utf-8";
/* -----------------------------------------------------------
	#header
----------------------------------------------------------- */
body{
	background:#f2f2f2 url(../img/mk_bg.gif) repeat-x left top;
}
span.error{
	margin-left:5px;
	color:#ff0000;
}
#header{
	width:100%;
/*	padding-top:10px;
	position:relative;*/
position: fixed;
top:0;  
left:0;
background:#ffffff;
z-index:1;

}
h1{
	font-size:131%;
	margin:0;
	line-height:30px;
/*	padding-left:20px;*/
	position:relative;
	width:500px;
/*border:1px solid gray;*/
}
#siteTitle{
	width:80%;
	min-width:900px;
	margin:0 auto;
	position:relative;
}
#siteTitle h1{
	float:left;
	width:317px;
	height:0;
	overflow:hidden;
	padding-top:62px;
	background:url(../../default/img/common/logo.png) left top no-repeat;
}

/*ＣＳＳのみでドロップダウン*/
/*IEでzindexのバグ*/
.navi{
	position: relative;
	width:100%;
	margin-top:10px;
	padding:0;
	height:40px;
	/*background: #000000;*/
	background:url(../img/shop_navbg_off.gif);
	clear:both;
} 
#dropmenu{ 
	width:80%;
	min-width:900px;
	text-align:center;
	margin: 0 auto;
	background: #000000;
}
#dropmenu li{
	position: relative;
	width: 25%;/*項目が10コで10%*/
	float: left;
	margin: 0;
	padding: 0;
	text-align: center;
	list-style: none;
}
#dropmenu li a{
	display: block;
	line-height:40px;
	margin: 0;
	color: #fff;
	text-decoration: none;
	border-right: 1px solid #ffffff;
	border-left: 1px solid #ffffff;
}
#dropmenu li:hover > a{
/*
マウスを乗せたときの色の設定
メインメニュー、サブメニュー共通
*/
	background:#ffffff url(../img/shop_navbg_on.gif);
/*	background: #6e7c0c;*/
	color: #000;
/*	color: #eff7b1;	*/
}
#dropmenu > li:hover > a{
/*
メインメニューにマウスを乗せたときに上側の角を丸くします。
「 > 」をはさむことで子要素のみに適用するため、
孫要素にあたるサブメニューのリンクには適用されません。
*/
	border-radius: 3px 3px 0 0;

}
#dropmenu li ul{
/*
サブメニューの設定
「#dropmenu li」を基準に絶対値で表示位置を指定
「top: 100%;」でメインメニューの真下に表示
*/
	list-style: none;
	position: absolute;
	top: 100%;
	left: 0;
	margin: 0;
	padding: 0;
	border-radius: 0 0 3px 3px;/*下側の角を丸くしています*/
	z-index: 500;
	clear:both;
	width:100%;
	
}
#dropmenu li:last-child ul{
/*
サブメニューの幅はメインメニューの2倍に設定
一番右のサブメニューが右側にはみ出るので防ぐために一番右のサブメニューのみ
メインメニュー1つ分左にずらします。
*/
/*	left: -100%;*/
	width: 100%;

}
#dropmenu li ul li{
/*
サブメニュー内のli設定
横幅はメインメニューの2倍なので、メインメニューと一緒に幅がいいという場合は→100%
transitionでオンマウス時の変化に動きを付けています。
初期状態では「overflow: hidden;」「height: 0;」で表示されないようにしています
*/
	overflow: hidden;
/*	width: 200%;*/
	width: 100%;
	height: 0;
	color: #fff;
	-moz-transition: .2s;
	-webkit-transition: .2s;
	-o-transition: .2s;
	-ms-transition: .2s;
	transition: .2s;
}
#dropmenu li ul li a{
/*
サブメニューのリンク
メインメニューのリンクと違う部分のみ記述
*/
	padding: 0 15px;
/*	background: #6e7c0c;*/
	text-align: left;
	font-size: 12px;
	font-weight: normal;
	border:solid 1px #fff;
	background:url(../img/shop_navbg_off.gif);

}
#dropmenu li:hover ul li{
/*
メインメニューにマウスを乗せた際のサブメニュー
heightは「#dropmenu li ul li a」の上下のpadding各13pxとfont-size12pxの合計の値
上下のボーダーを重ねています
*/
	overflow: visible;
	height: 38px;
/*	border-top: 1px solid #7c8c0e;*/
/*	border-bottom: 1px solid #616d0b;*/

}
#dropmenu li:hover ul li:first-child{
/*
一番番上のサブメニューの上のボーダーと、一番下のサブメニューの下のボーダーは必要ないので消す
*/
	border-top: 0;
}
#dropmenu li:hover ul li:last-child{
/*
番上のサブメニューの上のボーダーと、一番下のサブメニューの下のボーダーは必要ないので消す
*/
	border-bottom: 0;
}
#dropmenu li:hover ul li:last-child a{
/*下の角を丸くします*/
	border-radius: 0 0 3px 3px;
}

#status{
/*
	position:absolute;
	right:0px;
	top:0px;
*/
	line-height:30px;
	text-align:right;
	margin:0;
	width:350px;
	float:right;
	margin-bottom:10px;
/*border:1px solid gray;*/
}
#status span{
	line-height:30px;
	float:right;
	display:block;
}
#status span a:link,#status span a:visited{
	background:url(../img/btn_logout.png) no-repeat center center;
	text-align:center;
	height:30px;
	width:100px;
	display:block;
	text-decoration:none;
	color:#222;
	margin-left:0.5em;
}
#header_image{
	width:250px;
	height:50px;
	float:left;
	display:block;
/*border:1px solid gray;*/
}


#wrap{
	height:auto;
	min-height:100%;
	width:100%;
	position:relative;
}
body > #wrap {
	height: auto;
}

#contents{
	padding-bottom:100px;
	clear:both;
padding-top:150px;

}

/**/
h2{
	color:#ffffff;
	position:relative;
	padding:5px 10px;
	border:#cfcfcf 1px solid;
	border-radius:5px;
		-webkit-border-radius:5px;
		-moz-border-radius:5px;
	font-weight:bold;
	/*background:#fafafa;*/
	background:#893177;
	z-index: 0;
}
h2 a{
	position:relative;
		left:2em;
		bottom:3px;
/*	color:#fe731b;*/
	color:#ffffff;
	font-size:70%;
	font-weight:normal;
	padding-left:3px;
	z-index:0;
}

div.sys_link{
	color:#ffffff;
	position:relative;
	padding:5px 10px;
	border:#cfcfcf 1px solid;
	border-radius:5px;
		-webkit-border-radius:5px;
		-moz-border-radius:5px;
	font-weight:bold;
	/*background:#fafafa;*/
	background:gray;
	z-index: 0;
}

div.sys_link a{
	position:relative;
		left:2em;
/*		bottom:3px;*/
/*	color:#fe731b;*/
	color:#ffffff;
/*	font-size:70%;*/
	font-weight:normal;
	padding:3px;
	z-index:0;
	text-decoration:none;
}

#preview{
	margin:0 auto 10px;
	text-align:right;
	width:400px;
	float:right;
}

#preview img {
	margin-top:6px;
}
/* -----------------------------------------------------------
	#login
----------------------------------------------------------- */
#login{
	margin:0 auto 0 auto;
	position:relative;
	padding:100px 0 150px 0;
	clear:both;
	border-top:5px solid #a53c8f;
}
#login_box{
	width:310px;
	padding:10px 20px;
	background:#e9e7ff;
	border:1px solid #d8d8d8;
	margin:0 auto;
}
#login_box h1{
	padding:0;
	width:auto;
	text-align:center;
}
#login_box dl{
	margin:0;
}
#login_box dt{
	width:80px;
	float:left;
	margin:0 0 10px 0;
	line-height:30px;
	height:30px;
	clear:left;
}
#login_box dd{
	margin:0 0 10px 90px;

}
#login_box dd span{
	color: #FF0000;
	margin-top: 5px;
}
#login dd input{
	width:210px;
	background:#FBFBFB;
	border:1px solid #D8D8D8;
	font-size: 20px;
}
#login_btn input{
	width:310px;
	height:40px;
	font-size:116%;
}
/* ---contents*/
#contents{
	width:80%;
	min-width:900px;
	margin:0 auto;
	
}
#contents table{
	width:100%;
	border:1px solid #a6a6a6;
	margin:15px 0 0 0;
}

#contents table.inoue{
	width:500px;
	border:solid 1px gray;
	padding:10px;
}

#contents table.order{
	width:800px;
	border:solid 1px red;
/*	padding:10px;*/
}

#contents table.goods{
	width:600px;
	border:solid 1px blue;
/*	padding:10px;*/
}

/* ---buttuns*/
.actionButtons{
	height:45px;
	margin:1em 0;
}
.actionButtons li{
	list-style-type:none;
	float:left;
	margin:0;
}
.actionButtons a:link,.actionButtons a:visited{
	background:url(../img/btn_submit_off.png) no-repeat center center;
	display:block;
	width:145px;
	line-height:45px;
	text-align:center;
	color:#FFFFFF;
	text-decoration:none;
	font-weight:bold;
}
.actionButtons a:hover{
	background:url(../img/btn_submit_on.png) no-repeat center center;
}
.actionButtons input{
	background:url(../img/btn_submit_off.png) no-repeat center center;
	display:block;
	width:145px;
	line-height:45px;
	text-align:center;
	color:#FFFFFF;
	text-decoration:none;
	font-weight:bold;
	border:0;
	height:45px;
	cursor:pointer;
}
/* ---icon*/
.icon{
	margin-right:5px;
}
/* --page-navi*/
.page-navi{
	text-align:center;
	margin:1em 0;
}
.page-navi span a:link,.page-navi span a:visited{
	background-color:#eaedf7;
	border:1px solid #7b87ba;
	display:inline-block;
	padding:6px 8px;
	color:#1e2b65;
	text-decoration:none;
	font-size:14px;
}
.page-navi span a:hover{
	background:#656ba7;
	color:#FFFFFF;
}
.page-navi span{
	margin:0 3px;
}
.page-navi .focused{
	background-color:#FFFFF;
	border:1px solid #7b87ba;
	display:inline-block;
	padding:6px 8px;
	color:#6f7aaa;
	text-decoration:none;
	font-size:14px;
}
/* --mail_member page-navi*/
.address-page-navi{
	text-align:center;
	margin:1em 0;
}
.address-page-navi span a:link,.address-page-navi span a:visited{
	background-color:#eaedf7;
	border:1px solid #7b87ba;
	display:inline-block;
	padding:6px 8px;
	color:#1e2b65;
	text-decoration:none;
	font-size:14px;
}
.address-page-navi span a:hover{
	background:#656ba7;
	color:#FFFFFF;
}
.address-page-navi span.focused a:hover{
	background:#eaedf7;
	color:#1e2b65;
	cursor:default;
}
.address-page-navi span{
	margin:0 3px;
}
.all{
	padding-left:13px;
}
.all input{
	margin-right:10px;
}

/* -----------------------------------------------------------
	form
----------------------------------------------------------- */
.even td {
	background:#f2f2f2;
}
/*---post_add*/
.column-one-add table{
/*	width:150px;*/
	border-top:1px solid #a6a6a6;
}
.column-one-add th{
	width:150px;
	text-align:left;
	border-left:1px solid #a6a6a6;
	border-right:1px solid #a6a6a6;
	border-bottom:1px solid #a6a6a6;
	padding:15px;
	font-weight:normal;
	background:#e8e8e7;
}
.column-one-add td{
	border-left:1px solid #a6a6a6;
	border-right:1px solid #a6a6a6;
	border-bottom:1px solid #a6a6a6;
	padding:10px;
	background:#fff;
}



.column-one-list{
	background:#FFFFFF;
}
.column-one-list th{
	text-align:left;
	padding:10px 10px 10px 0;
	font-weight:normal;
	border-bottom:1px solid #a6a6a6;
	background:#e8e8e7;
}
.column-one-list td{
	padding:10px  0;
}
.column-one-list td a:link,.column-one-list td a:visited{
	color:#222;
	text-decoration:none;
}
.column-one-list td a:hover,
.f-list td span a:hover{
	color:#666;
}
.checkedit{
	width:25px;
	text-align:right;
	padding-right:10px !important;

}
/*---post_list*/
.deletebtn a:link,.deletebtn a:visited{
	float:right;
	width:16em;
	background:#f6f2b4;
	border:1px solid #dacf9b;
	line-height:2;
	display:block;
	text-align:center;
	text-decoration:none;
	margin-right:10px;
	color:#222222;
}
.deletebtn a:hover{
	border:1px solid #ab9f5f;
	color:#222222 !important;
}
.p-edit,.p-delete{
	margin-left:5px;
}

/*---トピックス一覧*/

.t-list {
	font-size:12px;
}
.column-one-list th {
	font-size:12px;
	font-weight: bold;
}

.t-list .edititem01{

}
.t-list .edititem02{
	width:70px;
}
.t-list .edititem03{
	width:120px;
}
.t-list .edititem04{
	width:200px;
}
.t-list .edititem07{
	width:80px;
}
.t-list .edititem09{
	width:120px;
}

/*---お問い合わせ確認*/
.contact-first-c{
	padding-left:10px !important;
}

.t-list .contact-c01{
	width:130px;
}

.t-list .contact-c02{
	width:150px;
}

.t-list .contact-c03{
	width:220px;
}


#actionMenu .post-btn input{
	background:url(../img/btn_submit_off.png) no-repeat center center;
	display:block;
	width:145px;
	line-height:35px;
	height:40px;
	text-align:center;
	color:#FFFFFF;
	text-decoration:none;
	font-weight:bold;
	margin:0 auto;
	border:0;
	cursor:pointer;
}

#actionMenu .post-btn input:hover,#actionMenu .post-btn input:focus{
	background:url(../img/btn_submit_on.png) no-repeat center center;
}
#actionMenu h2{
	background:url(../img/h2_actionMenu.png) repeat-x center center;
	height:30px;
	width:158px;
	line-height:30px;
	color:#FFFFFF;
	font-size:13px;
	padding-left:10px;
	margin:0 0 10px 0;
}
.subMenu{
	margin:10px 15px;
}
.subMenu li{
	list-style-type:none;
	margin:0.5em 0;
}
.subMenu a:link,.subMenu a:visited{
	text-decoration:none;
	color:#222;
}
.subMenu a:hover{
	color:#666;
}
#actionMenu .delete-btn{
	text-align:center;
	margin:0;
}
#actionMenu .delete-btn input{
	padding:3px 5px;
	cursor:pointer;
}
.estate{
	width:622px;
	float:right;
}
#contents .count td{
	padding:10px;
	font-size:116%;
}
.image-delete input{
	cursor:pointer;
	font-size:110%;
}
.sort_btn{
	padding:0 0 10px 0 !important;
	text-align:center;

}
.sort_btn div{
	position:relative;
	z-index:2;
}
.sort_btn ul{
	width:21px;
	height:22px;
	background:url(../img/btn_sort.png)no-repeat center center;
	margin:0;
	display:inline-block;
	line-height:0;
	position:relative;
}
.sort_btn li{
	margin:0;
	list-style-type:none;
}
.sort_btn li a:link,.sort_btn li a:visited{
	display:block;
	width:21px;
	height:11px;
	text-indent:-9999px;

}
.add-image{
	text-align:center;
	padding:10px 0 !important;
}
.add-image input{
	width:300px;
	height:40px;
	cursor:pointer;

}
/*---メールマガジン　テンプレート一覧*/
.m_list{
	background:#FFFFFF;
}
.m_list .edititem02{
	width:200px;
}
.m_list .edititem03{
	width:400px;
}
/*---メールマガジン　ユーザー一覧*/
.u_list .edititem02{
	width:550px;
}
/*---メールマガジン　ユーザー詳細*/
#detail-user{
	background-image:none;
	height:400px;
	padding:10px;
	width:500px;
}
#detail-user table{
	background:#fff;
	margin:10px;
	width:460px;
}
#detail-user th{
	width:100px;
	text-align:left;
	border:1px solid #a6a6a6;
	padding:15px;
	font-weight:normal;
	background:#e8e8e7;
}
#detail-user td{
	border:1px solid #a6a6a6;
	padding:10px;
	background:#fff;
}
#detail-user .actionButtons{
	width:145px;
	margin:0 auto;
}
#detail-user h4{
	font-size:16px;
	text-align:center;
	margin:0;
}


/*************************** tachimori 2012/01.27 ****************************************************/
table.column-one-list th{
padding-left:10px;
}
table.column-one-list td{
padding-left:10px;
padding-right:10px;
border:1px solid silver;
background:#ffffff;
}

/* vacantadjust */
.month_select {
float:left;
}

p.date_label{
width:200px;
text-align:center;
padding-top:5px;
padding-bottom:5px;
color:white;
background-color:#3399CC;
margin-top:20px;
font-weight:bold;
font-size:14px;
clear:both;
}

p.this_month,
p.prev_month,
p.next_month{
width:100px;
height:20px;
line-height:20px;
text-align:center;
background-color:#FFFF99;
border:1px solid #FFCC33;
float:left;
margin-right:10px;
margin-top:20px;
}
p.this_month{
background-color:#FFCC33;
border:1px solid #FFCC33;
}


select#select_insert{
width:50px;
}

.attention{
color:red;
}

td.input_image input{
margin-bottom:10px;
}

td.input_image span{
display:inline-block;
width:60px;
}

#errorText {
	margin:20px;
	padding:20px;
	color:#CC0000;
	background-color:#FFFFFF;
	border:1px solid #CCCCCC;
	line-height: 1.8em;
}


.admin_navi{
	margin-left:auto;
	margin-right:auto;
	text-align:center;
	width:auto;
	height:36px;
	background-color:#000000;
	color:#ffffff;
}
.admin_navi ul li{
/*	float:left;*/
	color:#ffffff;
	list-style-type:none;
}

.admin_navi a:link,.admin_navi a:visited{
	float:left;
	color:#ffffff;
	text-decoration:none;
	display:block;
	padding:9px;
	background-color:#000000;
	display:block;
	border-left:inset 2px #ffffff;
}
.admin_navi a:hover{
	padding:9px;
	background-color:#ff0000;
}

/* カレンダー */
table.calender th
	{
		border:solid 1px black;
		width:200px;
		height:30px;
	}
table.calender .sunday,
table.calender .saturday
	{
		background-color:red;
	}
table.calender td
	{
		vertical-align:top;
		border:solid 1px black;
		height:80px;
		background-color:silver
	}
table.calender td.today
	{
		vertical-align:top;
		background-color:#f0e68c;/*khaki*/

	}
table.calender td.visible
	{
		vertical-align:top;
		background-color:#fff	
	}
table.calender td p
	{
	
	}
table.calender td p.day
	{
		font-size:100%;

	}

table.calender td p.holiday
	{
		color:red;
	}
/*************************** inoue 2016/01.07 ****************************************************/

div#shop_index div.comment p{
font-weight:bold;
font-size:120%;
}


div#contents div.systemnote {
	width:35%;
	float:right;
	padding:10px;
	background-color:#ffffff;
}

div#contents div.systemnote p{
}
div#contents div.course {
	width:60%;
	border-top:2px solid silver;
	padding-bottom:20px;
	float:left;
}

div#contents div.course p{
	font-size:120%;
	font-weight:bold;
	padding-top:10px;
}

div#contents table{
	width:100%;
	background-color:silver;
}

div#contents table th{
	text-align:left;
	padding:10px;
}

div#contents table td{
	text-align:left;
	padding:10px;
}

div#contents div.system {
	border-top:2px solid silver;
	clear:both;
}

div#contents div.system p{
	font-size:120%;
	font-weight:bold;
	padding-top:10px;
}

div#contents div.course_view {
	clear:both;
/*	border:1px solid gray;*/
}


div#contents div.system_view {
	clear:both;
/*	border:1px solid gray;*/
}





/*-----------ドラッグ関係--------------*/
.draggable {
	display: inline-block;
	/*display-横並び（格子）になる*/
	vertical-align: top;
/*	width: 100px;*/
/*	height: 30px;*/
/*	zoom: 1;*/
	border:solid gray 1px;
	background-color:#ffffff;
/*	float:left;*/

}


div.drg_data{
/*	width: 100px;*/
	float:left;
	padding:5px 15px;
}

div.action{
float:left;
}


div#contents p.stay_name {
	width:80px;
/*	float:left;*/
}

div#contents p.stay_form {
	width:200px;

}

div#contents div#shop_entry_button{
height:200px;
background-color:#ecfefc;
}


div#contents div.shoparea {
	width:200px;

	border:1px solid garay;
}

div#contents div.shoparea_view {
}
div#contents div.shoparea_view p{
padding:10px 10px;
background-color:#ebe1ee;
margin-top:20px;
	border-bottom:2px solid #c0c0c0;
}
