
@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,b,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}



/*================================================
 *  一般・共通設定
 ================================================*/
* {
	margin: 0;
	padding: 0;
}

html {
	height: 100%;
	overflow-y: scroll;
}

body {
	font-size:18px;
	color:#a3301d;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
	line-height:1.7;
	height: 100%;
	background: linear-gradient(to bottom,rgba(250,243,202,1.0),rgba(238,222,135,1.0));
}

body:before {  
	content: '';/*ボックス作成*/
  	position: fixed;
  	top: 0;
  	bottom: 0;
  	right: 0;
  	left: 0;
	z-index: -1;
  	background:rgba(236,222,151,0.4);
}

body:after {  
	content: '';/*ボックス作成*/
  	position: fixed;
  	top: 0;
  	bottom: 0;
  	right: 0;
  	left: 0;
	z-index: -2;
  	background-image:url(../images/bg.jpg);
	background-position: top center;
	background-size: 100% auto ;
	background-repeat: no-repeat;
}

#contents {
	position:relative;
	overflow:hidden;
	width:1200px;
	margin:0 auto;
	height:100%;
	text-align: center;
	padding: 50px 0px;
}


h1	{
	position: relative;
	text-align:center;
	color: #a3301d;/*gohstwhite;*/
    font-size: 32px;
	font-weight: bold;
	line-height: 1.5em;
/*	text-shadow: 1px 1px 10px white, -1px 1px 10px yellow, 1px -1px 10px yellow, -1px -1px 10px yellow;*/
}

h1 > span {
	font-weight: bold;
	}

p {
	margin:1em 0;
}


ul {
	text-align:center;
	list-style:none;
}

li {
	width:19%;
	display: inline-block ;
	margin:0;
	padding:0;
}

ul li a {
		text-decoration:none;
	}
	
.menu {
	display:block;
	padding:4px 0;
	font-size:14px;
	font-weight: bold;
	text-decoration:none;
	/*border-radius: 50px; -webkit-border-radius: 50px; -moz-border-radius: 50px; */
	margin: 10px 5px;/*テキストが長くなったら左右を変更*/
	color:black;
	background: linear-gradient(/*to right,*/rgba(240,230,210,0.8),rgba(180,170,140,0.8));
	border:2px solid #fffff9;
	/*box-shadow: 1px 1px 5px rgba(210,0,69,0.6) , -1px 1px 5px rgba(210,0,69,0.6) , 1px -1px 5px rgba(210,0,69,0.6) , -1px -1px 5px rgba(210,0,69,0.6) ;*/
	letter-spacing: 0.25em;
}
.menu span {
	color: #a3301d;
	font-weight: bold;
	font-size: 1.5em;
}
	
.menu:hover  {
	color:#fffff9;
	background: linear-gradient(rgba(165,42,42,0.8), rgba(165,42,42,1),rgba(165,42,42,0.8));
	/*text-shadow: 1px 1px 3px #316cba, -1px 1px 3px #316cba, 1px -1px 3px #316cba, -1px -1px 3px #316cba*/;
	border:2px solid #fffff9;
}

.menu:hover span {
	color: #fffff9;
	font-weight: bold;
	font-size: 1.5em;
}


.copy {
	padding-top:50px;
	font-size:13px;
	color:#a3301d;/*ghostwhite*/;
	right: 0;
  	left: 0;
	bottom:0;
	text-align: center;
	width:100%;
	/*text-shadow: 1px 1px 6px darkred, -1px 1px 6px darkred, 1px -1px 6px darkred, -1px -1px 6px darkred;*/
}

.inline{
	display: inline-block;
}




/*================================================
 *  タブレット向けデザイン
 ================================================*/
/* スクロールバーを考慮して20px大きいサイズで切り替え */
@media screen and (max-width:1199px) {
	
	body:after {  
	background-size: 150% auto ;
	}
		
	#contents {
	width:100%;
	}


}

/*================================================
 *  スマートフォン向けデザイン
 ================================================*/
@media screen and (max-width:767px) {
	
	body:after {  
	background-size: 300% auto ;
	}
	
	h1,p	{
    font-size:15px;
	}
	
	ul {
	width:100%;
	display: block ;
	}
	
	li{
	width:80%;
	}
	
	.copy p {
	font-size:11px;
	}

	.menu {
	font-size:11px;
	}


}

