/* -------------------------------- 
import
-------------------------------- */

@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900|Noto+Serif+JP:200,300,400,500,600,700,900|Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&display=swap');


/* -------------------------------- 
Primary style
-------------------------------- */

html * {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	font-family: 'Noto Sans JP', 'Roboto', "Helvetica Neue", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
	color: #555555;
	line-height: 1.8;
    width: 100%;
}

body.noscroll {
    position: fixed;
    overflow-y: scroll;
}

body, html {
	/* important */
	height: 100%;
}
a {
	color: #00396B;
	text-decoration: none;
}

a:hover {
	color: #00396B;
	text-decoration: underline;
}

/* ------------------------------- 
text
-------------------------------- */

.txt_bl {
	color: #00C8C8;
}

/* ------------------------------- 
commmon
-------------------------------- */

#wrap {
	width: 100%;
	/*position: relative;
	z-index: 1000;*/
}

.f_right {
	float: right;
}

.f_left {
	float: left;
}

/* ------------------------------- 
HEADER
-------------------------------- */

#header {
	width: 100%;
	/*position: fixed;
	top: 0px;
	z-index: 888;*/
}

#header .inner {
	padding-top: 16px;
	padding-right: 32px;
	padding-bottom: 16px;
	padding-left: 32px;
	overflow: hidden;
}

#header h1 {
	float: left;
}

#header h1 img{
	vertical-align: middle;
	margin-right: 20px;
}

#header h1 span {
	float: left;
	text-align: left;
	font-size: 12px;
	line-height: 1.5;
	font-weight: 500;
	color: #000000;
	border-left: 1px solid #555555;
	padding-top: 6px;
	padding-left: 20px;
}

#header h1 span a {
	color: #CCC;
	text-decoration: none;
}

#header h1 span a:hover {
	color: #CCC;
	text-decoration: underline;
}

#header h1 em {
	font-size: 20px;
}

/*** ul ***/

#header ul {
	float: right;
	padding-top: 18px;
}

#header li {
	float: left;
	margin-left: 24px;
	font-size: 18px;
	line-height: 22px;
	color: #333333;
	font-weight: 500;
}

#header li img{
	vertical-align: middle;
	margin-right: 10px;
	float: left;
}

#header li span{
	float: left;
}

#header li a{
	color: #333333;
	text-decoration: none;
	-webkit-transition: opacity 0.5s ease-out;
	-moz-transition: opacity 0.5s ease-out;
	-ms-transition: opacity 0.5s ease-out;
}

#header li a:hover{
	filter: alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
}

/* ------------------------------- 
main
-------------------------------- */

/* ----- mainVisual ----- */

#mainVisual {
	width: 100%;
	height: auto;
	position: relative;
}

#mainVisual img {
	width: 100%;
	height: auto;
}

#mainVisual .catch {
	position: absolute;
	top: 50%;
	left: 50%;
	right: auto;
	bottom: auto;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	/*background-color: #FFFFFF;*/
	background-color: rgba(255, 255, 255, 0.9);
	width: 460px;
	border-radius: 10px;
	text-align: center;
	padding-top: 30px;
	padding-right: 30px;
	padding-bottom: 50px;
	padding-left: 30px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#mainVisual h2 {
	font-size: 54px;
	font-weight: 700;
	line-height: 1.4;
	color: #615046;
	margin-bottom: 15px;
}

#mainVisual h2 span{
	display: block;
	font-size: 24px;
	color: #990B2B;
}

#mainVisual h2:before{
	content: url(../css/main_stone.png);
	display: block;
	line-height: 1;
}

#mainVisual p {
	font-size: 18px;
	font-weight: 500px;
	color: #615046;
	line-height: 1.5;
}


/* fullSlideShow
--------------------------- */

.fullSlideShow {
	width: 100%;
	text-align: left;
	position: relative;
	overflow: hidden;
}

.fullSlideShow ul {
	top: 50%;
	left: 50%;
	width: 100%;
	position: fixed; /* absolute or fixed */
	overflow: hidden;
}

.fullSlideShow ul li {
	top: 0;
	left: 0;
	width: 100%;
	display: none;
	position: absolute;
}

.fullSlideShow ul li img {
	width: 100%;
}

.fullSlideShow h2 {
	position: absolute;
	z-index: 900;
	text-align: center;
	left: 50%;
	top: 50%;
	margin-left: -128px;
}

#main_bnr {
	position: absolute;
	z-index: 900;
	text-align: center;
	bottom: 15%;
	width: 100%;
}

#main_bnr ul {
	text-align: center;
}

#main_bnr li {
	display: inline-block;
	margin-right: 20px;
	margin-left: 20px;
	max-width: 280px;
}

.topTab {
	width: 100px;
	height: 60px;
	position: absolute;
	left: 50%;
	bottom: 30px;
	margin-left: -50px;
	z-index: 100;
}

#scrlBtn {
	position: absolute;
}


/* ------------------------------- 
contents
-------------------------------- */

#contents {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	/*overflow: hidden;*/
	padding-top: 60px;
	padding-bottom: 60px;
}

#contents .inner{
	max-width: 1160px;
	margin-right: auto;
	margin-left: auto;
	padding-left: 20px;
	padding-right: 20px;
}

#contents h3 {
	text-align: center;
	font-size: 28px;
	font-weight: 500;
	color: #605046;
	padding-bottom: 30px;
	margin-bottom: 30px;
	background-image: url(../css/icon_gravel.png);
	background-repeat: no-repeat;
	background-position: center bottom;
}

#contents p.read {
	max-width: 860px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

#contents img{
	max-width: 100%;
	height: auto;
}


/* point_wrap
--------------------------- */

.point_wrap {
	padding-left: 20px;
	padding-right: 20px;
	overflow: hidden;
	padding-bottom: 4em;
}

#contents .point_wrap h3{
	background-image: none;
	padding-bottom: 0px;
}

.point_wrap h3 span{
	display: block;
}

.point_wrap {
  width:100%;
  margin: 0 auto;
  max-width: 80%;
}

.point_wrap li{
	width: 100%;
}

.point_box{
	padding-top: 30px;
	padding-bottom: 30px;
	padding-left: 30px;	
}

.point_box h4{
	text-align: left;
	color: #605046;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 20px;
}

.point_box h4 em{
	font-size: 36px;
}

.point_box h4 span img{
	vertical-align: middle;
	float: left;
	margin-right: 30px;
}

.point_box p.sub{
	padding-left: 110px;
	font-size: 14px;
}

.btn_haiso{
	text-align: center;
	position: relative;
	padding-top: 80px;
	padding-bottom: 80px;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}

.ico_dump{
	position: absolute;
	right: -200px;
	bottom: 0px;
	z-index: 11;
}

/* cgv_list
--------------------------- */

.cgv_list {
	width: 100%;
	overflow: hidden;
	padding-top: 60px;
	padding-bottom: 60px;
}

.bg_cgv{
	background-color: #F4F2EB;
}

.bg_wgi{
	background-color: #F7F7F8;
}

.cgv_list ul {
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	margin-top: 30px;
	margin-bottom: 30px;
}

.cgv_list ul::before{
  content:"";
  display: block;
  width: 24%;
  order:1;
}

.cgv_list ul::after{
  content:"";
  display: block;
  width: 24%;
}

.cgv_list li {
	/*margin: 10px;*/
	width: 24%;
	max-width: 300px;
	vertical-align: top;
	background-color: #FFFFFF;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-bottom: 2em;
}
/*
.cgv_list h3 {
	text-align: center;
	font-size: 28px;
	font-weight: 500;
	color: #605046;
	padding-bottom: 30px;
	margin-bottom: 30px;
	background-image: url(../css/icon_gravel.png);
	background-repeat: no-repeat;
	background-position: center bottom;
}
*/
.cgv_list h4 {
	font-size: 14px;
	line-height: 1.5;
	font-weight: 500;
	color: #000000;
	margin-bottom: 10px;
}

.cgv_list p.ph {
	text-align: center;
}

.cgv_list p.caps {
	font-size: 13px;
	line-height: 20px;
}

.cgv_list p.caps span{
	font-size: 12px;
}

.txt_box {
	padding-top: 20px;
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 10px;
	text-align: center;
}

/*02*/

.cgv_list p.ph2 {
	text-align: center;
}

.txt_box2 {
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 20px;
	padding-left: 0px;
	text-align: left;
}


/*hover*/

.cgv_list li a p.caps {
	color: #555;
}

.cgv_list li a:hover{
	filter: alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
	text-decoration: none;
}

.cgv_list li a:hover h4,
.cgv_list li a:hover p.caps{
	filter: alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
	text-decoration: none;
}

.btn_contact{
	width: 100%;
}

.btn_contact ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}

.btn_contact li{
	width: 48%;
	max-width: 480px;
	background-color: transparent;
	display: inline;
	margin: 0 1%;
}

.btn_contact li img{
	max-width: 100%;
	height: auto;
}



/* clr_list
---------------------------

#clr_list {
	max-width: 1120px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 0%;
	margin-bottom: 2%;
	overflow: hidden;
}

.clr_box{
	overflow: hidden;
	float: left;
	}

#clr_list ul {
	-js-display: flex;
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

#clr_list li {
	margin: 10px;
	width: 120px;
	vertical-align: top;
	float: left;
}

#clr_list h2 {
	text-align: center;
	margin-bottom: 20px;
	font-weight: bold;
	font-size: 24px;
	color: #000;
	line-height: 24px;
	border-bottom-width: 5px;
	border-bottom-style: solid;
	border-bottom-color: #A18072;
	padding-bottom: 20px;
	margin-right: 10px;
	margin-left: 10px;
}

#clr_list h2.shirakawa {
	border-bottom-color: #DCD2C6;
}

#clr_list h2.wariguri {
	border-bottom-color: #53556A;
}

#clr_list h3 {
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	background-repeat: no-repeat;
	background-position: center bottom;
	margin-bottom: 20px;
	line-height: 18px;
	color: #000;
}

#clr_list p.caps {
	text-align: center;
	font-size: 14px;
	line-height: 20px;
}

#clr_list li a p.caps {
	color: #555;
}

#clr_list li a:hover{
	filter: alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
}

#clr_list li a:hover h3,
#clr_list li a:hover p.caps{
	filter: alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
	text-decoration: none;
}
--------------------------- */

/* price
--------------------------- */

#price {
	width: 100%;
}

.bg_price{
	background-color: #F2F2F2;
} 

#price .inner {
	max-width: 1120px;
	margin-right: auto;
	margin-left: auto;
	/*overflow: hidden;*/
}

.price_box {
	width: 100%;
	margin-bottom: 4em;
}

.price_box2 {
	width: 100%;
	margin-bottom: 4em;
}

.table_scrl {
	width: 100%;
	overflow-x: scroll;
	-webkit-overflow-scrolling: touch;
}

#price h2 {
	text-align: center;
	font-weight: bold;
	font-size: 34px;
	color: #000;
	margin-bottom: 2em;
}

#price p.read {
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 60px;
	text-align: center;
}

#price h3 {
	text-align: left;
	margin-bottom: 40px;
	background-image: url(../css/icon_dump_s.png);
	background-repeat: no-repeat;
	background-position: left center;
	padding-bottom: 0px;
	padding-left: 100px;
}

#price h4 {
	font-size: 24px;
	font-weight: 600;
	color: #605046;
	text-align: center;
	margin-bottom: 40px;
	background-image: url(../css/icon_dump.png);
	background-repeat: no-repeat;
	background-position: center top;
	padding-top: 180px;
}

#price p {
	/*text-align: left;*/
	margin-top: 10px;
	font-size: 14px;
}

#price p.caution {
	text-align: right;
}

#price p.price {
	text-align: left;
	color: #C30000;
	margin-bottom: 30px;
}

#price p.price_cap {
	text-align: left;
	font-size: 14px;
	clear: both;
	padding-top: 20px;
}

table.shipping {
	width: 100%;
	border-top: 1px solid #95D3CC;
	border-left: 1px solid #95D3CC;
	background-color: #FFFFFF;
	font-size: 14px;
}

table.shipping th,
table.shipping td{
	padding-top: 4px;
	padding-bottom: 4px;
	border-bottom: 1px solid #95D3CC;
	border-right: 1px solid #95D3CC;
	padding-left: 8px;
	padding-right: 9px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

table.shipping th {
	font-weight: 500;
	text-align: center;
	background-color: #E4F2F0;
	vertical-align: top;
}

table.shipping th em{
	font-weight: 600;
	color: #000000;
}

table.shipping td {
	text-align: right;
	width: 11%;
}

table.shipping td.volume {
	width: 12%;
	text-align: left;
	background-color: #F7F7F8;
}

table.shipping td.betto {
	text-align: center;
}


#bnr_contact {
	max-width: 1120px;
	clear: both;
	margin-right: auto;
	margin-left: auto;
	padding-top: 40px;
}

/* mtx_clr
--------------------------- 

#mtx_clr {
	max-width: 1120px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 0%;
	margin-bottom: 5%;
	overflow: hidden;
}

#mtx_clr h3 {
	text-align: center;
	margin-bottom: 30px;
	font-size: 24px;
	font-weight: bold;
	color: #000;
}

#mtx_clr p.num {
	font-size: 14px;
	margin-top: 10px;
	font-weight: bold;
	color: #333;
}

#mtx_clr p.read {
	text-align: center;
}

#mtx_clr ul {
	width: 100%;
	text-align: center;
	border-bottom-width: 5px;
	border-bottom-style: solid;
	border-bottom-color: #C1B9A9;
	padding-bottom: 20px;
	-js-display: flex;
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	
}

#mtx_clr li {
	width: 200px;
	overflow: hidden;
	text-align: center;
	margin-right: 10px;
	margin-left: 10px;
}

#mtx_clr li img {
	max-width: 100%;
	height: auto;
}

.txt_bold {
	font-weight: bold;
}

.cgv_msg {
	border-bottom-width: 5px;
	border-bottom-style: solid;
	border-bottom-color: #C1B9A9;
	padding-bottom: 30px;
	padding-top: 30px;
}
--------------------------- */

/* mtx_catalog
--------------------------- */

#mtx_catalog {
	max-width: 1180px;
	margin-right: auto;
	margin-left: auto;
	overflow: hidden;
	padding-top: 60px;
	padding-bottom: 60px;
}

#mtx_catalog p.num {
	font-size: 12px;
	margin-top: 5px;
}

#mtx_catalog ul {
	text-align: center;
	padding: 1%;
}

#mtx_catalog li {
	margin: 1%;
	overflow: hidden;
	text-align: center;
	display: inline-block;
	vertical-align: top;
}

#mtx_catalog li img {
	max-width: 100%;
	height: auto;
}


/* bnr
--------------------------- */

.bnr_st h2{
	color: #407655;
	font-size: 40px;
	font-weight: bold;
	text-align: center;
}
.bnr_st {
	max-width: 1120px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 60px;
}
.bnr_st img {
	width: 100%;
	height: auto;
}

.bnr_st ul{
	margin: 0px;
	padding: 0px;	
}

.bnr_st li{
	margin-bottom: 20px;
}

.bnr_st li:last-child{
	margin-bottom: 0px;
}

/* caution */

.caution{
	max-width: 1120px;
	margin-right: auto;
	margin-left: auto;
	font-size: 14px;
	}

.ft_bnrbox{
	text-align: center;
	margin-bottom: 30px;
}

/* area_map
--------------------------- */

.area_map {
	max-width: 1120px;
	margin-right: auto;
	margin-left: auto;
	overflow: hidden;
	border: 1px solid #95D3CC;
	border-radius: 8px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.area_map .inner{
	padding-top: 30px;
	padding-bottom: 30px;
	padding-right: 40px;
	padding-left: 40px;
}

#contents .area_map h3 {
	background-color: #E3F2F0;
	background-image: none;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	padding-top: 10px;
	padding-bottom: 15px;
	margin-bottom: 0px;
}

.area_map h3 span{
	display: block;
	font-size: 18px;
}

.area_map h4{
	font-size: 20px;
	color: #000000;
}

.btn_map{
	text-align: center;
	margin-top: 30px;
	margin-bottom: 60px;
}

/* kotsuzai_mov
--------------------------- */

.kotsuzai_mov {
	text-align: left;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	overflow: hidden;
	zoom: 1;
	margin-bottom: 100px;
	padding: 0px;
	}

.kotsuzai_mov h3{
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	background-color: #FFF;
	}

.kotsuzai_mov h4{
	margin-bottom: 5px;
	font-size: 16px;
	color: #009150;
	padding: 0px;
	margin-top: 10px;
	line-height: 20px;
	}

.kotsuzai_mov p{
	margin: 0px;
	padding: 0px;
	}

.kotsuzai_mov ul {
	max-width: 940px;
	margin-left: auto;
	margin-right: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	}
	
.kotsuzai_mov li {
	width: 48%;
	}

.youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}


/* ------------------------------- 
FOOTER
-------------------------------- */

#footer {
	width: 100%;
	background-color: #447457;
	position: relative;
	z-index: 1000;
}
#footer .inner {
	max-width: 1120px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 40px;
	padding-right: 20px;
	padding-bottom: 40px;
	padding-left: 20px;
	overflow: hidden;
}
#footer h3 {
	font-size: 16px;
	font-weight: bold;
	text-align: left;
	color: #FFF;
	margin-bottom: 10px;
}
#footer h3 a {
	color: #FFF;
	text-decoration: none;
}
#footer h3 a:hover {
	color: #FFF;
	text-decoration: underline;
}
#footer p {
	text-align: left;
	color: #FFF;
	font-size: 14px;
}
#footer p a {
	color: #FFF;
	text-decoration: none;
}
#footer p a:hover {
	color: #FFF;
	text-decoration: underline;
}
#footer p.ft_link {
	color: #FFF;
	float: right;
}
#footer p.ft_link span {
	margin-right: 20px;
	font-size: 12px;
}
#page-top {
	position: fixed;
	right: 30px;
	bottom: 30px;
	z-index: 2000;
}

/* ------------------------------- 
NAV
-------------------------------- */

#global_nav {
	width: 100%;
	background-color: #009AA7;
}

#global_nav ul {
	text-align: center;
	overflow: hidden;
	float: none;
}

#global_nav li {
	display: inline-block;
	color: #FFF;
	margin: 0px;
	padding: 0px;
	font-size: 16px;
	line-height: 16px;
	font-weight: normal;
	float: none;
}

#global_nav li a {
	color: #FFF;
	text-decoration: none;
	display: block;
	padding-top: 17px;
	padding-right: 20px;
	padding-bottom: 17px;
	padding-left: 20px;
}

#global_nav li a:hover {
	color: #FFFFFF;
	text-decoration: none;
	background-color: #006B74;
}

#global_nav li.soon {
	display: inline-block;
	padding-top: 17px;
	padding-right: 20px;
	padding-bottom: 17px;
	padding-left: 20px;
	color: #CCCCCC;
}

/* global_sp_nav
===================================*/

#global_sp_nav {
	display: none;
}


/* ------------------------------- 
FOOTER NAV
-------------------------------- */

#footer_nav {
	width: 100%;
	background-color: #009AA7;
	position: relative;
	z-index: 1000;
}

#footer_nav ul {
	text-align: center;
	overflow: hidden;
	float: none;
}

#footer_nav li {
	display: inline-block;
	color: #FFF;
	margin: 0px;
	padding: 0px;
	font-size: 16px;
	line-height: 16px;
	font-weight: normal;
	float: none;
}

#footer_nav li a {
	color: #FFF;
	text-decoration: none;
	display: block;
	padding-top: 17px;
	padding-right: 20px;
	padding-bottom: 17px;
	padding-left: 20px;
}

#footer_nav li a:hover {
	color: #FFFFFF;
	text-decoration: none;
	background-color: #009AA7;
}

#footer_nav li.soon {
	display: inline-block;
	padding-top: 17px;
	padding-right: 20px;
	padding-bottom: 17px;
	padding-left: 20px;
	color: #CCCCCC;
}


/* -----------------------------------------------
  loading
-------------------------------------------------- */

#loader {
	width: 32px;
	height: 32px;
	display: none;
	position: fixed;
	_position: absolute; /* IE6対策 */
	top: 50%;
	left: 50%;
	margin-top: -16px; /* heightの半分のマイナス値 */
	margin-left: -16px; /* widthの半分のマイナス値 */
	z-index: 100;
}
#fade {
	width: 100%;
	height: 100%;
	display: none;
	background-color: #FFFFFF;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 50;
}

/* -----------------------------------------------
  demo
-------------------------------------------------- */

.demo {
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
}

.demo img {
	width: 100%;
	height: auto;
}

/* main_visual
===================================*/

#main_visual {
	width: 100%;
	height: 188px;
	margin: 0;
	position: relative;
	overflow: hidden;
}

#main_visual ul {
	position: relative;
	width: 2800px;
}

#main_visual ul li {
	float: left;
}


/* -----------------------------------------------
  loading
-------------------------------------------------- */


#loader {
    width: 32px;
    height: 32px;
    display: none;
    position: fixed;
    _position: absolute; /* IE6対策 */
    top: 50%;
    left: 50%;
    margin-top: -16px; /* heightの半分のマイナス値 */
    margin-left: -16px; /* widthの半分のマイナス値 */
    z-index: 100;
}
 
#fade {
    width: 100%;
    height: 100%;
    display: none;
    background-color: #FFFFFF;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 50;
}