@charset "UTF-8";

/*================================================
 *  CSSリセット
 ================================================*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;font-weight:normal;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}



/*================================================
 *  一般・共通設定
 ================================================*/
body {
	font-size:1rem;
	font-family:"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	line-height:1.3;
}

#content {
	width:780px;
	margin:0 auto;
}

#content_login {
	width:500px;
	margin:0 auto;
}


header {
	width:100%;
	margin:0 auto;
	border-bottom:3px solid #ccc;
	text-align:center;
}

a {
	color:#F69;
}
a:hover {
	color:#093;
}

#content h1 {
	font-size:26px;
	line-height:1;
	border-bottom:5px solid #333;
	padding:10px 0;
	margin-bottom:20px;
	text-align:center;
	font-weight:bold;
}

h2 {
	margin-bottom:0.5em;
	font-size:24px;
	color: #099;
	border-left:5px solid #099;
	padding:0 10px;
}

#content h3 {
	margin-bottom:0.25em;
	font-size:18px;
		border-left:5px solid #F69;
			padding:0 10px;
			font-weight:bold;
	
}


h4 {
	margin-bottom:0.25em;
	font-size:16px;
	font-weight:bold;
	color:#099;
}

h5 {
	margin-bottom:0.25em;
	font-size:16px;
	color:#FFF;
	background:#333;
	padding:5px 10px;
}

h6 {
	margin-bottom:0.25em;
	padding-left:5px;
	font-size:16px;
	border-left:5px solid #cf0c0c;
}

p {
	margin:0 0 1em 0;
}

img {
	vertical-align:bottom;
}

em {
	font-weight:bold;
}

strong {
	font-weight:bold;
	color:#ef8100;
}

pre {
	margin:1em 0;
	padding:1em;
}

blockquote {
	margin-bottom:1em;
	padding:1em;
	border:1px dotted #ddd;
	border-left:5px solid #ddd;
}

ul,ol,dl {
	margin:0 0 1em 0;
}
ul li {
	list-style:none;
}
ol li {
	list-style:none;
}
li {
	margin-left:2em;
}

dt {
	margin-bottom:0.5em;
}

dd {
	margin-bottom:1em;
}

table {
	margin-bottom:1em;
	border-collapse:collapse;
	border:1px solid #ccc;
	background:#fff;
	font-size:0.9em;
}
th {
	padding:10px;
	text-align:center;
	vertical-align:middle;
	border:1px solid #ccc;
	background:#95bbc6;
}
td {
	padding:10px;
	text-align:left;
	border:1px solid #ccc;
}

/* フォーム
------------------------------------------------------------*/
input[type="text"], input[type="password"], textarea{
	vertical-align:middle;
	width:95%;
	line-height:100%;
	height:25px;
	border:1px solid #CCC;
	border-radius:3px;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	font-size:100%;
	color:#333;
	background-color: #FFF;
	padding-top: 1px;
	padding-right: 2px;
	padding-bottom: 1px;
	padding-left: 2px;
	margin-bottom:3px;
}

textarea{
height:auto;
line-height:1.5;
width:100%;
}


*:first-child+html input[type="submit"]{padding:3px;}


input[type="button"].first{
	padding: 6px 20px;
border:0;
border-radius:3px;
-webkit-border-radius:3px;
-moz-border-radius:3px;
line-height:1.5;
font-size: 200%;
font-weight: bold;
color:#fff;
margin-bottom:5px;
 background-color: #CC0000; background-image: -webkit-gradient(linear, left top, left bottom, from(#CC0000), to(#C4385B));
 background-image: -webkit-linear-gradient(top, #CC0000, #C4385B);
 background-image: -moz-linear-gradient(top, #CC0000, #C4385B);
 background-image: -ms-linear-gradient(top, #CC0000, #C4385B);
 background-image: -o-linear-gradient(top, #CC0000, #C4385B);
 background-image: linear-gradient(to bottom, #CC0000, #C4385B);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#CC0000, endColorstr=#C4385B);
} 


input[type="button"].first:hover{
 background-color: #CC0000; background-image: -webkit-gradient(linear, left top, left bottom, from(#FF0000), to(#CC0000));
 background-image: -webkit-linear-gradient(top, #FF0000, #CC0000);
 background-image: -moz-linear-gradient(top, #FF0000, #CC0000);
 background-image: -ms-linear-gradient(top, #FF0000, #CC0000);
 background-image: -o-linear-gradient(top, #FF0000, #CC0000);
 background-image: linear-gradient(to bottom, #FF0000, #CC0000);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#FF0000, endColorstr=#CC0000);
}



input[type="submit"].confirm{
	padding: 6px 20px;
border:0;
border-radius:3px;
-webkit-border-radius:3px;
-moz-border-radius:3px;
line-height:1.5;
font-size: 200%;
font-weight: bold;
color:#fff;
margin-bottom:5px;
 background-color: #CC0000; background-image: -webkit-gradient(linear, left top, left bottom, from(#CC0000), to(#C4385B));
 background-image: -webkit-linear-gradient(top, #CC0000, #C4385B);
 background-image: -moz-linear-gradient(top, #CC0000, #C4385B);
 background-image: -ms-linear-gradient(top, #CC0000, #C4385B);
 background-image: -o-linear-gradient(top, #CC0000, #C4385B);
 background-image: linear-gradient(to bottom, #CC0000, #C4385B);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#CC0000, endColorstr=#C4385B);
} 


input[type="submit"].confirm:hover{
 background-color: #CC0000; background-image: -webkit-gradient(linear, left top, left bottom, from(#FF0000), to(#CC0000));
 background-image: -webkit-linear-gradient(top, #FF0000, #CC0000);
 background-image: -moz-linear-gradient(top, #FF0000, #CC0000);
 background-image: -ms-linear-gradient(top, #FF0000, #CC0000);
 background-image: -o-linear-gradient(top, #FF0000, #CC0000);
 background-image: linear-gradient(to bottom, #FF0000, #CC0000);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#FF0000, endColorstr=#CC0000);
}



input[type="submit"],input[type="reset"],input[type="button"]{
	
	padding: 6px 20px;
border:0;
border-radius:3px;
-webkit-border-radius:3px;
-moz-border-radius:3px;
line-height:1.5;
font-size: 110%;
font-weight: bold;
color:#fff;
margin-bottom:5px;
 background-color: #0e0e0e; background-image: -webkit-gradient(linear, left top, left bottom, from(#7d7e7d), to(#0e0e0e));
 background-image: -webkit-linear-gradient(top, #7d7e7d, #0e0e0e);
 background-image: -moz-linear-gradient(top, #7d7e7d, #0e0e0e);
 background-image: -ms-linear-gradient(top, #7d7e7d, #0e0e0e);
 background-image: -o-linear-gradient(top, #7d7e7d, #0e0e0e);
 background-image: linear-gradient(to bottom, #7d7e7d, #0e0e0e);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#7d7e7d, endColorstr=#0e0e0e);
 
 
}

input[type="submit"]:hover,input[type="reset"]:hover,input[type="button"]:hover{
 background-color: #999; background-image: -webkit-gradient(linear, left top, left bottom, from(#CCC), to(#999));
 background-image: -webkit-linear-gradient(top, #CCC, #999);
 background-image: -moz-linear-gradient(top, #CCC, #999);
 background-image: -ms-linear-gradient(top, #CCC, #999);
 background-image: -o-linear-gradient(top, #CCC, #999);
 background-image: linear-gradient(to bottom, #CCC, #999);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#CCC, endColorstr=#999);
}


input[type="button"].grn:hover{
 background-color: #5FC09E; background-image: -webkit-gradient(linear, left top, left bottom, from(#B7E6CC), to(#5FC09E));
 background-image: -webkit-linear-gradient(top, #B7E6CC, #5FC09E);
 background-image: -moz-linear-gradient(top, #B7E6CC, #5FC09E);
 background-image: -ms-linear-gradient(top, #B7E6CC, #5FC09E);
 background-image: -o-linear-gradient(top, #B7E6CC, #5FC09E);
 background-image: linear-gradient(to bottom, #B7E6CC, #5FC09E);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#B7E6CC, endColorstr=#5FC09E);
}







input[type="button"].grn{
	padding: 6px 20px;
border:0;
border-radius:3px;
-webkit-border-radius:3px;
-moz-border-radius:3px;
line-height:1.5;
font-size: 110%;
font-weight: bold;
color:#fff;
margin-bottom:5px;
 background-color: #096; background-image: -webkit-gradient(linear, left top, left bottom, from(#5FC09E), to(#096));
 background-image: -webkit-linear-gradient(top, #5FC09E, #096);
 background-image: -moz-linear-gradient(top, #5FC09E, #096);
 background-image: -ms-linear-gradient(top, #5FC09E, #096);
 background-image: -o-linear-gradient(top, #5FC09E, #096);
 background-image: linear-gradient(to bottom, #5FC09E, #096);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#5FC09E, endColorstr=#096);
} 



input[type="button"].gry{
	padding: 6px 20px;
border:0;
border-radius:3px;
-webkit-border-radius:3px;
-moz-border-radius:3px;
line-height:1.5;
font-size: 110%;
font-weight: bold;
color:#fff;
margin-bottom:5px;
 background-color: #666; background-image: -webkit-gradient(linear, left top, left bottom, from(#CCC), to(#666));
 background-image: -webkit-linear-gradient(top, #CCC, #666);
 background-image: -moz-linear-gradient(top, #CCC, #666);
 background-image: -ms-linear-gradient(top, #CCC, #666);
 background-image: -o-linear-gradient(top, #CCC, #666);
 background-image: linear-gradient(to bottom, #CCC, #666);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#CCC, endColorstr=#666);
} 





/*================================================
 *  汎用クラス
 ================================================*/
.list {
	padding:0 0 0 2em;
}

.list li {
	margin:0;
	padding:0;
	list-style:none;
	text-indent:-1.3em;
}
.list li:before {
	content:"\002605\00a0";
	color:#ffc720;
}

.temp {
	clear:both;
	overflow:hidden;
	margin-bottom:50px;
}

.img {
	float:left;
	width:300px;
}

.text {
	float:right;
	width:450px;
}


.photo img {
	max-width:100%;
}

.logo img
 {
	margin:0 auto;
	text-align:center;
}

/*================================================
 *  ヘッダー
 ================================================*/
header {
	margin-top:20px;
	margin-bottom:20px;
}
header h1 {
	margin-bottom:30px;
}
h1 span {
	font-size:12px;
}

/*================================================
 *  グローバルナビゲーション
 ================================================*/
nav {
	width:100%;
	position:fixed;
	top:0;
	left:0;
	padding:5px 0;
	opacity:0.8;
	background:#000;
	z-index:10;
}
nav ul {
	position:relative;
	float:left;
	left:50%;
	margin:0;
}
nav li {
	position:relative;
	left:-50%;
	float:left;
	list-style:none;
	margin:0;
	padding:0 20px;
}
nav li a {
	color:#fff;
	text-decoration:none;
}
nav li a:hover {
	color:#dfdfdf;
	text-decoration:underline;;
}

/*================================================
 *  メイン
 ================================================*/
section {
	margin-bottom:100px;
}

/*================================================
 *  フッター
 ================================================*/
footer {
	clear:both;
	padding:20px 0;
	font-size:11px;
	text-align:center;
}

#contact
 {
	background:#333;
	margin:15px 0;
	color:#fff;
	padding:10px;
	font-size:1.2em;

}


/*================================================
 *  ページトップへの戻り
 ================================================*/
.totop {
	position:fixed;
	bottom:15px;
	right:15px;
}
.totop a {
	display:block;
	text-decoration:none;
}
.totop img {
	background:#000;
}
.totop img:hover {
	background:#333;
}



/*================================================
 *  追加CSS
 ================================================*/

.red {
		color:#C00;
	}
.s_txt {
		font-size:0.8em;
	}
	
	#login-waku{
		width:90%;
		margin:0 auto;
		border:5px solid #ccc;
		padding:15px;
		    -webkit-border-top-left-radius: 20px;  
    -webkit-border-top-right-radius: 20px;  
    -webkit-border-bottom-right-radius: 20px;  
    -webkit-border-bottom-left-radius: 20px;  
    -moz-border-radius-topleft: 20px;  
    -moz-border-radius-topright: 20px;  
    -moz-border-radius-bottomright: 20px;  
    -moz-border-radius-bottomleft: 20px;  
	}
	
	
	#login-form{
	margin:0 auto;
	}
	
		
	.submit{
	text-align:center;}
	
	.photo{
	padding:15px;
	margin-bottom:25px;
	border:1px solid #999;
	box-shadow:rgba(113, 135, 164, 0.8) 0 3px 15px 0;}
	
	.shophoto{
	float:right;}
	
	.clear{
	clear:both;}


.button {
  display: inline-block;
  width: 200px;
  height: 54px;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
}
.button::before,
.button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.button,
.button::before,
.button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

	
	.button {
  background-color: #333;
  color: #fff;
}
.button:hover {
  background-color: #F69;
  color:#fff;
}

.waku{
  background-color:#FDE1EE;
  padding:10px;
}


/*================================================
 *  タブレット/スマートフォン向けデザイン
 ================================================*/
/* スクロールバーを考慮して20px大きいサイズで切り替え */
@media screen and (max-width:799px) {
	body {
		box-sizing:border-box;
		width:100%;
		padding:0;
	}

	#content {
		width:86%;
		padding:15px;
margin:0 auto;
	}
	
		#content_login{
		width:80%;}

	header {
		width:100%;

	}

header img.logo {
max-width:80%;
height:auto;
}

	#login-waku{
		margin:0 auto;
		padding:15px;

	}

input[type="text"], input[type="password"], textarea{
	vertical-align:middle;
	width:96%;
	line-height:100%;
}


	#content img{
max-width:90%;
height:auto;
}


	
}

/*================================================
 *  スマートフォン向けデザイン
 ================================================*/
@media screen and (max-width:480px) {

.button {
  display: inline-block;
  width: 100%;
  height: 54px;
  margin:10px 0;
}
	
}
