@charset "UTF-8";

/*------------------------------------------------------
このファイルの概要
このファイルは大枠のCSSに関する定義のエリアです。
基本的なCSSはこちらで定義しております。
トップページはtop.css
サブページはsub.cssで定義しております。

------------------------------------------------------*/

/*インポート属性*/
@import url("./div.css");
@import url("./top.css");
@import url("./fontsize.css");
@import url("./mp.css");
@import url("./top.css");
@import url("./client.css");
@import url("./table.css");
@import url("./nav.css");
@import url("./camera.css");
@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
/*

@import url("./client.css");
@import url("./padding.css");
@import url("./margin.css");
@import url("./fontsize.css");
@import url("./color.css");


@import url("./form.css");
@import url("./camera.css");*/

/*---------------------------------
	全て一旦zero
-----------------------------------*/
*{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

body,article,section,table,
div,pre,p,blockquote, form,
dl,dt,dd,li,h1,h2,h3,h4,h5,h6, 
embed,object,
header,footer,article,aide
 { 
	margin: 0;
	padding: 0;
	vertical-align: baseline; 
	font-size: 100.01%;
}

/*	基本部分
------------------------------------------------------*/

body{
	color: #111111;
	background: #FFF;
	/*background: #DDDDDD;*/
	font-family:"Lucida Grande", "メイリオ","Meiryo", "30D230E930AE30CE89D230B420Pro20W3", "30e130a430ea30aa", "FF2DFF3320FF3030B430B730C330AF", "Osaka", verdana, arial, sans-serif;
	font-size: 14px;
	line-height: 180%;
	/*background:url(../images/bg.jpg) center top;*/
}

img{
	/*画像下の空白を埋める為のおまじない*/
	vertical-align: bottom;
}

address{
	margin: 0;
	font-style: normal;
	font-size: 10px;
	text-align: center;
}

/* リストタグ解除 */
.list{
	list-style: none;
	margin: 0;
	padding: 0;
}

.listzero{
	list-style: none;
	margin: 0;
	padding: 0;
	line-height: 100%;
}

.listzero li{
	margin: 0;
	padding: 0;
	line-height: 100%;
}

/*ナビゲーション*/
ul.subList{
	list-style-type:none;
	margin:0;
	padding:0;

}

.subList li {
	height: 44px;
	line-height: 100%;
	text-align: center;
	font-weight: bold;
	border-bottom: 1px dotted #666666;

	/* IE10 Consumer Preview */ 
	background-image: -ms-linear-gradient(top, #EFEFEF 0%, #CCCCCC 100%);

	/* Mozilla Firefox */ 
	background-image: -moz-linear-gradient(top, #EFEFEF 0%, #CCCCCC 100%);

	/* Opera */ 
	background-image: -o-linear-gradient(top, #EFEFEF 0%, #CCCCCC 100%);

	/* Webkit (Safari/Chrome 10) */ 
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #EFEFEF), color-stop(1, #CCCCCC));

	/* Webkit (Chrome 11+) */ 
	background-image: -webkit-linear-gradient(top, #EFEFEF 0%, #CCCCCC 100%);

	/* W3C Markup, IE10 Release Preview */ 
	background-image: linear-gradient(to bottom, #EFEFEF 0%, #CCCCCC 100%);

	/* for IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.gradient
		(startColorStr=#EFEFEF,  endColorStr=#CCCCCC, GradientType=0); 
	/* for IE 8 */ 
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#EFEFEF,  
		endColorstr=#CCCCCC, GradientType=0)"; 
	/* for  Safari, Google Chrome etc */ 
	background: -webkit-gradient(linear, center top,center bottom, 
		from(#EFEFEF),to(#CCCCCC));
	/* for Firefox etc */ 
	background: -moz-linear-gradient(bottom,#CCCCCC,#EFEFEF);
		zoom : 1;

}



.subList li a{
	padding: 17px 10px 15px 20px;
	font-size: 12px;
	margin: 0 10px;
	text-decoration: none;
	text-align: left;
	color: #333333;
	display: block;
	border-right: 1px dotted #DDDDDD;
	background: url(../images/htag/sub.gif) no-repeat center left ;
	list-style: none;
}

.subList li a:hover{
	margin: 0 10px;
	color: #FF0000;
	text-decoration: none;
	display: block;
	border-right: 1px dotted #DDDDDD;

}

.price{
	font-family: 'Anton', sans-serif;
	color: #CC0000;
	font-size: 48px;
}

/*リンクの色*/
a{
	color: #0052a8;
}

a:hover{
	color: #FF0000;
}


a img{
	border: 0;
}

.boxShadow{
	/*box-shadow*/
	box-shadow: 5px 5px 10px #CCC;
	-webkit-box-shadow: 5px 5px 10px #CCC;
	-moz-box-shadow: 5px 5px 10px #CCC;
	/*ボックスのデザイン*/
	padding:10px;
	border:1px solid #ccc;
}

.boxShadow20{
	/*box-shadow*/
	box-shadow: 5px 5px 10px #CCC;
	-webkit-box-shadow: 5px 5px 10px #CCC;
	-moz-box-shadow: 5px 5px 10px #CCC;
	/*ボックスのデザイン*/
	padding:20px;
	border:1px solid #ccc;
}

.off{
	display: none;
}

.bold{
	font-weight: bold;
}


.line{
	border:none;
	border-top:dashed 1px #CCCCCC;
	height:1px;color:#FFFFFF;
}


/*	文字寄せ
------------------------------------------------------*/
.textL{
	text-align: left;
}

.textC{
	text-align: center;
}

.textR{
	text-align: right;
}

/*	画像寄せ
------------------------------------------------------*/
.imgLeft,
.imgLeft10{
	float: left;
	margin: 0 10px 10px 0;
}

.imgRight,
.imgRight10{
	float: right;
	margin: 0 0 10px 10px;
}

.imgLeft20{
	float: left;
	margin: 0 20px 0 0;
}

.imgRight20{
	float: right;
	margin: 0 0 20px 20px;
}

.pankuzu {
	margin: 10px auto;
}

/*	htag属性　#003f97
------------------------------------------------------*/
.title{
	text-align: center;
	vertical-align:middle;
	display:table-cell;
	color: #003f97;
	height: 120px;
	font-size: 32px;
	line-height: 100%;
	font-weight: lighter;
}

.title2{
	color:#003f97;
	margin-top: 5px;
	padding: 14px 10px;
	font-size: 18px;
	line-height: 100%;
	border-top: 5px solid #003f97;
	border-bottom: 1px solid #003f97;
	margin-bottom: 20px;
}

.title3{
	color:#003f97;
	margin-top: 5px;
	padding: 14px 10px;
	font-size: 18px;
	line-height: 100%;
	border-top: 5px solid #003f97;
	border-bottom: 1px solid #003f97;
	margin-bottom: 20px;
}

/*
.htag{
	border-color:#59a2e1;
	height: 36px;
	padding: 12px 0 0 20px;
	margin: 5px 0 0 0;
	font-size: 14px;
	line-height: 16px;
	background-repeat: no-repeat;
	background-image: url(../images/htag/htag.png);
}*/

.htag{
	border-top: #003f97 3px solid;
	background: #EFEFEF;
	padding: 10px;
	color: #003f97;
}

.htag2{
	margin: 10px 0 0px 0;
	padding: 8px;
	border-width:0 0 5px 0 ;
	border-color:#59a2e1;
	border-style:solid;
	background:#ebf4ff;
	color:#003f97;
	font-size: 16px;
	line-height:140%;
	font-weight:bold;
}

.htag3{
	background: #003f97;
	padding: 10px;
	color: #FFF;
}

.htag4{
	margin: 10px 0;
	height: 24px;
	color: #003f97;
	padding: 0px 0 0 18px;
	font-size: 16px;
	line-height: 100%;
	background-image: url(../images/htag/htag4.png);
	background-repeat: no-repeat;
}

.htag5{
	font-size: 16px;
	color:#003366;
	padding: 5px 10px;
	background: #FFCC00;
}

.htag6{
	margin: 10px 0 0 0;
	padding: 8px;
	border-width:0 0 1px 0 ;
	border-color:#b61936;
	border-style:solid;
	background:#EEEEEE;
	color:#003366;
	font-size: 16px;
	line-height:140%;
	font-weight:bold;
}

.kihonBox{
	border-right: solid 1px #DDDDDD;
	border-left: solid 1px #DDDDDD;
	border-bottom: 1px solid #DDDDDD;
	margin-bottom: 10px;
	padding: 10px;
}

.midashiBox{
	border: solid 5px #7D0000;
	margin: 0 0 10px 0;
	padding: 10px;
	background-image: url(../images/midashiBox.gif);
}

.kihonBox2{
	background-repeat: repeat-y;
	font-size: 90%;
	background:#ebf4ff;
	margin:  0 0 10px 0;
	padding: 10px;
}

.important{
	background-repeat: repeat-y;
	font-size: 90%;
	line-height: 150%;
	background: #EEEEEE;
	border: 1px solid #CCCCCC; 
	margin: 0 0 10px 0;
	padding: 10px;
}

/*	pagetop
------------------------------------------------------*/
#page-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	font-size: 77%;
}
#page-top a {
	background: #666;
	text-decoration: none;
	color: #fff;
	width: 100px;
	padding: 30px 0;
	text-align: center;
	display: block;
	border-radius: 5px;
}
#page-top a:hover {
	text-decoration: none;
	background: #999;
}

/*	clear属性
------------------------------------------------------*/

.cr{
	clear: both;
}

.clear{
	text-align: right;
	clear: both;
}

.clearfix:after {
   content: ".";
   display: block;
   clear: both;
   height: 0;
   visibility: hidden;
}
.clearfix { display: inline-block; }
/* exlude MacIE5 \*/
* html .clearfix { height: 1% }
.clearfix {display:block;}
/* end MacIE5 */

/*	角丸属性
------------------------------------------------------*/
.kadomaru10{
	border: 1px solid;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}

.kadomaru5{
	border: 1px solid #666666;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

/*必須項目*/
.hissu{
	background: #FF0000;
	color: #FFFFFF;
	padding: 0.1em 0.2em;
	font-size: 11px;
	margin-left: 10px;
	border: 1px solid #F00;
	border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}