@charset "shift_jis";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #000;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";/*文字サイズ、行間、フォント指定*/
	background: #dff5fd;	/*背景色*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
	vertical-align: bottom;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #000;	/*リンクテキストの色*/
}
a:hover {
	color: #ed0000;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテナー
---------------------------------------------------------------------------*/
#container {
	margin: 0px auto;
	width: 984px;	/*ブロック幅*/
	text-align: center;
}

/*ロゴ
---------------------------------------------------------------------------*/
h1 img {
	padding: 20px 0px;
}

/*h2タグ
---------------------------------------------------------------------------*/
h2 {
	clear: both;
	margin-bottom: 15px;
	font-size: 100%;
	color: #fff;	/*文字色*/
	background: #35a7c6;	/*背景色、背景画像の読み込み*/
	padding: 3px 10px;	/*上下、左右へとる余白*/
	/*text-shadow: 1px 1px 1px #000033*/}

/*ENTERとLEAVEのボタン
---------------------------------------------------------------------------*/
ul#menu {
	width: 420px;
	margin: 0px auto;
}
ul#menu li a {
	font-size: 150%;
	text-decoration: none;
	display: block;
	letter-spacing: 1em;	/*文字間隔を少し広めにとる設定。*/
	text-align: center;		/*文字をセンタリング*/
	padding: 10px 10px 10px 10px;		/*上下、左右への余白*/
	color: #fff;			/*文字色*/
	background: #35a7c6;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#35a7c6C), to(#35a7c6));	/*グラデーション*/
	background: -webkit-linear-gradient(#35a7c6, #35a7c6 49%, #35a7c6 50%);	/*同上*/
	background: linear-gradient(#35a7c6, #35a7c6 49%, #35a7c6 50%);			/*同上*/
	border: solid 1px #FFFFFF;	/*枠線の線種、幅、色*/
	-webkit-box-shadow: 0px 0px 30px rgba(255,255,255,0.3) inset, 0px 5px 15px #5d5d5d;	/*内側への影。右・下・ぼかし幅・色。と、外側への影。*/
	box-shadow: 0px 0px 30px rgba(255,255,255,0.3) inset, 0px 5px 15px #5d5d5d;			/*同上*/
	text-shadow: none;
    border-radius: 10px;        /* CSS3草案 */  
    -webkit-border-radius: 10px;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 10px; 
/*かどまる*/	
font-weight: bold;	/*太字に*/
}
/*「OVER 18 YEARS」などの小さい文字装飾*/
ul#menu li a span {
	display: block;
	font-size: 18px;	/*文字サイズ*/
	font-weight: normal;
	letter-spacing: normal;
}
/*マウスオン時*/
ul#menu li a:hover {
	background: #fff;	/*背景色*/
	color: #000;	/*文字色*/
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: none;
}

/*footer
---------------------------------------------------------------------------*/
footer {
	clear: both;
	padding-top: 15px;
	padding-bottom: 15px;
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
}



/*ここからタブレット用（481px〜800px）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (min-width:481px) and (max-width:800px){

/*コンテナー
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin: 10px;
}

}



/*ここからスマートフォン用（480px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (max-width : 480px){

/*コンテナー
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin: 10px;
}

/*ロゴ
---------------------------------------------------------------------------*/
h1 img {
	width: 90%;
	height: auto;
}

/*ENTERとLEAVEのボタン
---------------------------------------------------------------------------*/
ul#menu {
	width: 100%;
}
ul#menu li a {
	margin: 0px 1%;
	width: 47%;
}

}
