@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #FFF;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";	/*文字サイズ、行間、フォント指定*/
	background: #1d1d1d url(../images/bg1.png);	/*背景色と背景壁紙*/
}
body#top {
	background: url(../images/bg1.png), -webkit-linear-gradient(#25d3ff, #1da5c8 440px, #1d1d1d 441px);	/*背景壁紙とグラデーション*/
	background: url(../images/bg1.png), linear-gradient(#25d3ff, #1da5c8 440px, #1d1d1d 441px);		/*同上*/
}
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;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #FFF;	/*リンクテキストの色*/
}
a:hover {
	color: #25d3ff;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	border-top: 5px solid #25d3ff;	/*上のアクセント用の線の幅、線種、色*/
	background: #000;	/*背景色*/
	margin-bottom: 30px;
}
/*ヘッダーブロックの中*/
header .inner {
	width: 998px;	/*ブロック幅*/
	height: 70px;	/*高さ*/
	position: relative;
	margin: 0px auto;
}
/*h1ロゴの設定*/
header .inner h1 {
	position: absolute;
	left: 20px;	/*innerに対して左から20pxの場所に配置*/
	top: 15px;	/*innerに対して上から20pxの場所に配置*/
}


/*トップ画像
---------------------------------------------------------------------------*/
#mainimg {
	clear: left;
	width: 100%;
	height: auto;
	position: relative;
	margin-bottom: 5px;
}


/*コンテンツ（main,sub,footerを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	width: 998px;
	margin: 0px auto;
	background: #000;		/*背景色*/
	padding: 15px 15px 0px;	/*コンテンツ内の余白*/
	border: 1px solid #333;	/*枠線の幅、線種、色*/
}
/*白コンテンツ用*/
.white #contents {
	background: #FFF;	/*背景色*/
	color: #333;	/*文字色*/
}
.white #contents a {
	color: #333;
}

/*メインコンテンツ（左ブロック）
---------------------------------------------------------------------------*/
#main {
	float: left;	/*左側に回り込み*/
	width: 728px;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
}
/*mainコンテンツのh2タグ設定*/
#main h2 {
	clear: both;
	color: #FFF;
	background: #25d3ff url(../images/arrow1.png) no-repeat 10px center;	/*背景色と矢印画像の読み込み（古いブラウザ用）*/
	background: url(../images/arrow1.png) no-repeat 10px center, url(../images/bg1.png), -webkit-gradient(linear, left top, left bottom, from(#25d3ff), to(#14728a));	/*矢印画像と背景画像とグラデーション*/
	background: url(../images/arrow1.png) no-repeat 10px center, url(../images/bg1.png), -webkit-linear-gradient(#25d3ff, #14728a);	/*同上*/
	background: url(../images/arrow1.png) no-repeat 10px center, url(../images/bg1.png), linear-gradient(#25d3ff, #14728a);			/*同上*/
	font-size: 100%;
	padding: 8px 10px 8px 40px;	/*左から、上、右、下、左への余白*/
	border-top: 5px solid #FFF;	/*上の線の幅、線種、色*/
}
/*mainコンテンツのh3タグ設定*/
#main h3 {
	clear: both;
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #e6e6e6);	/*同上*/
	background: linear-gradient(#FFF, #e6e6e6);			/*同上*/
	font-size: 100%;
	color: #000;		/*文字色*/
	padding: 4px 15px;	/*左から、上下、左右への余白*/
	border-radius: 4px;	/*角丸のサイズ*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 10px 10px 15px;	/*左から、上、左右、下への余白*/
}


/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: right;	/*右側に回り込み*/
	width: 250px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
}
/*白コンテンツ用*/
.white #sub,
.white #sub a {
	color: #FFF;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	font-size: 100%;
	background: #1d1d1d url(../images/bg1.png);	/*背景色と背景画像（※古いブラウザ用）*/
	background: url(../images/bg1.png), -webkit-linear-gradient(#333, #1d1d1d);	/*背景画像とグラデーション*/
	background: url(../images/bg1.png), linear-gradient(#333, #1d1d1d);		/*同上*/
	padding: 10px 0px;	/*上下、左右への余白*/
	color: #FFF;		/*文字色*/
	border-bottom: 3px solid #25d3ff;	/*下線の幅、線種、色*/
	padding-left: 10px;
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#sub ul {
	margin-bottom: 15px;	/*メニューブロックの下にあけるスペース*/
}
/*メニュー１個ごとの設定*/
#sub ul li a {
	text-decoration: none;
	display: block;
	border-bottom: 1px solid #222;	/*下側の線の幅、線種、色*/
	padding-left: 10px;
	background: #000;	/*背景色*/
	color: #FFF;
}
#sub ul li a:hover {
	background: #25d3ff;	/*マウスオン時のボックス色*/
}

/*subコンテンツ内のbox1
---------------------------------------------------------------------------*/
/*subコンテンツ内のbox1設定*/
#sub .box1 {
	background: #14728a;		/*背景色*/
	padding: 10px;				/*ボックス内の余白*/
	margin-bottom: 15px;		/*ボックスの下にあけるスペース*/
}
/*box1の中にメニューが入った場合に下に余分な余白が出るのをなくす設定*/
#sub .box1 > ul {
	margin-bottom: 0;
}


/*フッター設定(copyrightなどが入った最下部ブロック)
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
	color: #FFF;	/*文字色*/
	background: #25d3ff;	/*背景色*/
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
	color: #FFF !important;
}
footer a:hover {
	color: #FFF;
}


/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #FFF !important;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	background: #25d3ff;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 10em;	/*ボックス幅*/
	display: block;
	float: right;
}
/*マウスオン時*/
#pagetop a:hover {
	background: #333;
	color: #FFF;
}

/*広告設定*/
.ad1 {
 text-align: center;
 padding-top: 8px;
 padding-bottom: 8px;
}
.ad2 {
 text-align: center;
 padding-top: 8px;
 padding-bottom: 30px;
}
.ad3 {
 padding-top: 8px;
 padding-bottom: 8px;
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #222;
}
.mb15,
.mb1em {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 15px;
	list-style: disc;
}
.color1 {
	color: #25d3ff;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
.mini1 {
	font-size: 12px;
	line-height: 1.5;
}
figcaption {
	font-size: 11px;
}
img {
	max-width: 100%;
	height: auto;
}



/*ここからタブレット用（481px～800px）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (min-width:481px) and (max-width:800px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	background: #25d3ff url(../images/bg1.png) !important;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロックの中*/
header .inner {
	width: auto;
	height: auto;
	text-align: center;
}
/*h1ロゴの設定*/
header .inner h1 {
	position: static;
	padding-top: 20px;
}


/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
	margin: 0px 10px;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}

/*その他
---------------------------------------------------------------------------*/
/*<body class="s-n">指定の場合にsubブロックも表示させない設定*/
body.s-n #sub {
	display: none;
}
/*tdタグにiframeを読み込んだ場合（GoogleMap用）*/
td iframe {
	height: 300px;
	width: 100%;
}

}



/*ここからスマートフォン用（480px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (max-width : 480px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	background: #25d3ff url(../images/bg1.png) !important;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	border: none;
	margin-bottom: 10px;
}
/*ヘッダーブロックの中*/
header .inner {
	width: auto;
	height: auto;
	text-align: center;
}
/*h1ロゴの設定*/
header .inner h1 {
	position: static;
	padding-top: 20px;
}
header h1 img {
	width: 70%;	/*画面に対してロゴ画像を70％の幅に*/
	height: auto;
}


/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
	margin: 0px 10px;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}


/*その他
---------------------------------------------------------------------------*/
.ws {
	width: 96%;
}
/*<body class="s-n">指定の場合にsubブロックも表示させない設定*/
body.s-n #sub {
	display: none;
}
/*tdタグにiframeを読み込んだ場合（GoogleMap用）*/
.ta1 td iframe {
	height: 300px;
	width: 100%;
}

}
