﻿
@charset "UTF-8";

/* ここには全てのブラウザ共通のスタイルを書きます */

html,body{
	width: 100%;
	height: 100%;
}

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
pre,form,fieldset,input,p,blockquote,th,td {
	margin: 0;
	padding: 0;
}

input[type="submit"],input[type="reset"],
input[type="radio"],input[type="checkbox"],
label,button {
	cursor: pointer;
}

fieldset,img {
	border: 0;
}

ol,ul {
	list-style: none;
}



body {
  /* 画像ファイルの指定 */
  background-image: url(image/monta1.gif);
   
  /* 画像を常に天地左右の中央に配置 */
  background-position: center center;
   
  /* 画像をタイル状に繰り返し表示しない */
  background-repeat: no-repeat;
   
  /* コンテンツの高さが画像の高さより大きい時、動かないように固定 */
  background-attachment: fixed;
   
  /* 表示するコンテナの大きさに基づいて、背景画像を調整 */
  background-size: cover;

  background-attachment:fixed;  /* 背景画像を固定する */
}



* html body {
	text-align: center;
}

a {
	color: #0000FF;
}

a:visited {
	color: #800080;
}

div#wrapper {
	width: 850px;
	margin-left: auto;
	margin-right: auto;
}

* html div#wrapper {
	text-align: left;
}

div#header {
	padding: 5px;
	border-bottom: 1px solid transparent;
}

div#contents {
	width:100%;
}

div#contents:after {
	content:".";
	display:block;
	height:0;
	clear:both;
	visibility:hidden;
}

/*\*//*/
#contents{display:inline-table;}
/**/

div#main {
	float: left;
	display: inline;
	width: 570px;
	padding: 5px;
}

* html div#main {
	width: 580px;
}

* html body div#main {
	width: 570px;
}

div#navi {
	width: 260px;
	float: right;
	display: inline;
	padding: 5px;
}

* html div#navi {
	width: 270px;
}

* html > body div#navi {
	width: 260px;
}

div#footer {
	padding: 5px;
}

div#footer address {
	text-align: center;
	font-style: normal;
}


/* ボタン用CSS */

a{
	text-decoration:none;
	color:#000000;
}
 
.btn1 a{
	color:#FFFFFF;
    -webkit-transition: 0.3s ease-in-out;  
    -moz-transition: 0.3s ease-in-out;  
    -o-transition: 0.3s ease-in-out;  
    transition: 0.3s ease-in-out;  
	background-color:#ea776a;
	display:block;
	border:2px solid #ea776a;
	text-align:center;
	line-height:30px;
	width:160px;
	height:30px;
}
 
.btn1 a:hover{
    opacity: 0.4;  
    filter: alpha(opacity=60);
}

/* ------------------------------------------------
	いちよmediaQueriesの指定を入れておきますが
	スライドショー動作には関連しておりません。
------------------------------------------------ */

/* ===========================================
	デスクトップ系 769 - 1024
=========================================== */
@media screen and (max-width: 1024px) {
	.slideShow {
		width: 800px;
	}
}
/* ===========================================
	タブレット系 749 - 768
=========================================== */
@media screen and (max-width: 768px) {
	.slideShow {
		width: 100%;
	}
}
/* ===========================================
	スマートフォン系 748 - 
=========================================== */
@media screen and (max-width: 748px) {
	.slideShow {
		width: 100%;
	}
}