@charset "utf-8";

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　初期設定　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

*{
	margin: 0px;
	padding: 0px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

img{
	vertical-align: middle;
	max-width: 100%;
	height: auto;
}

a {
	COLOR: #000099;
}
a:hover {
	COLOR: #aa0000; TEXT-DECORATION: none;
}
a:visited {
	COLOR: #663366;
}

h2 a {
	COLOR: #000099; TEXT-DECORATION: none;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝　ページレイアウト　＝＝＝＝＝＝＝＝＝＝＝＝＝ */

body{
	width: 100%;
	-webkit-text-size-adjust: 100%;
}
@media only screen and (min-width:769px) {
	body{
		width: 1080px;
		padding: 0px 15px;
		margin: 0px auto;
	}
}

header{
	width: 100%;
	margin-bottom: 25px;
}

#main{
	width: 100%;
	margin: 15px 0px;
	padding: 0px 15px;
}
@media only screen and (min-width:769px) {
	#main{
		width: 758px;
		float: left;
		margin-left: -15px;
	}
}

aside{
	width: 100%;
	margin: 30px 0px;
	padding: 0px 15px;
	float: left;
}
#sidebar-1{
	width: 100%;
	float: left;
}
#sidebar-2{
	display: none;
}
#sidebar-3{
	width: 100%;
	float: left;
}

@media only screen and (min-width:769px) {
	aside{
		width: 300px;
		margin: 0px 0px;
		padding: 0px 0px;
		float: right;
	}
	#sidebar-1{
		width: 300px;
		margin: 20px 0px;
		display: block;
	}
	#sidebar-2{
		width: 300px;
		margin: 20px 0px;
		display: block;
	}
	#sidebar-3{
		width: 300px;
		margin: 20px 0px;
		display: block;
	}
}

aside:after{
	display: table;
	content: "";
	clear: both;
}

footer{
	width: 100%;
	clear: both;
	padding: 15px 20px;
	background: #999;
}


/* ＝＝＝＝＝＝＝＝＝＝＝＝＝　ナビゲーション　＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

navi  {
	width: 100%;
	display: block;
	margin-top: 10px;
}

navi ul  {
	font-size: 15px;
	padding-left: 5px;
	background: #f5f5f5;
	border-bottom: solid 1px #dcdcdc;
	line-height: 24px;
}
@media only screen and (min-width:530px) {
navi ul  {
	font-size: 15px;
	padding-left: 10px;
	background: #f5f5f5;
	border-bottom: solid 1px #dcdcdc;
	line-height: 36px;
}
}


navi ul li {
        display: inline;
        list-style-type: none;
}

navi ul li:before {
        content: " ｜ ";
}

navi ul li:first-child:before {
        content:"";
}


/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　パンくず用　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

navi ol  {
	font-size: 15px;
	padding-left: 5px;
	background: #f5f5f5;
	border-bottom: solid 1px #dcdcdc;
	line-height: 24px;
}
@media only screen and (min-width:530px) {
navi ol  {
	font-size: 15px;
	padding-left: 10px;
	background: #f5f5f5;
	border-bottom: solid 1px #dcdcdc;
	line-height: 36px;
}
}


navi ol li {
        display: inline;
        list-style-type: none;
}

navi ol li:before {
        content: " > ";
}

navi ol li:first-child:before {
        content:"";
}


/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　メイン用　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

#main section{
	margin-bottom: 40px;
}

h1,h2{
	color: #000;
	line-height: 1.2;
	border-bottom: solid 2px #000;
	margin-bottom: 8px;
	max-height: 999999px;
}
h3{
	color: #666;
	line-height: 1.2;
	border-bottom: solid 2px #666;
	margin-bottom: 8px;
	max-height: 999999px;
}
h1{font-size: 20px;}
h2{font-size: 18px;}
h3{font-size: 16px;}
@media only screen and (min-width:530px) {
	h1{font-size: 24px;}
	h2{font-size: 20px;}
	h3{font-size: 17px;}
}

.con{
	text-align: justify;
	font-size: 15px;
	line-height: 1.5;
	max-height: 999999px;
}
@media only screen and (min-width:530px) {
	.con{
		font-size: 16px;
	}
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　コンテンツ用　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.gmap{
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
}
.gmap iframe, .gmap object, .gmap embed{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

/*Google mapをJavaScript APIで設置する場合*/
#map_canvas{
	position: relative;
	padding: 0 0 56%;
	height: 0;
	overflow: hidden;
}

#map{
width:100%;
height:450px;
margin: 0px 0px;
border:1px solid #000000;
}
@media only screen and (min-width:530px) {
#map{
width:100%;
height:650px;
margin: 0px 0px;
border:1px solid #000000;
}
}

.yoko UL {
width:100%; 
font-size: 15px;
margin: 0px;
padding-left:5px;
padding-top: 10px;
list-style-type: none;
} 

.yoko LI {
margin:0 13px 11px 0;
display:inline-block;  
/display:inline;/*IE7*/  
/zoom:1;/*IE7*/  
zoom:1; 
}

.tate UL {
	font-size: 15px;
}

.tate LI {
	PADDING-TOP: 10px;
	PADDING-bottom: 5px;
	MARGIN-LEFT: 20px;
}

.tate LI a {
	font-size: 17px;
	font-weight: bold;
}

.tate-font-n UL {
	font-size: 15px;
}

.tate-font-n LI {
	PADDING-TOP: 10px;
	PADDING-bottom: 5px;
	MARGIN-LEFT: 20px;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝　フッター用　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

footer ul{
	width: 100%;
	margin-bottom: 30px;
	list-style-type: none;
}
@media only screen and (min-width:769px) {
	footer ul{
		width: 240px;
	}
}

footer li{
	width: 50%;
	float: left;
}

footer li a{
	display: block;
	color: #FFF;
	font-size: 13px;
	line-height: 45px;
	padding-left: 10px;
	text-decoration: none;
}
@media only screen and (min-width:769px) {
	footer li a{
		color: #FFF;
		line-height: 24px;
	}
}

footer li a:hover{
	color: #FFF;
	background: #C30;
}

footer ul:after{
	display: table;
	content: "";
	clear: both;
}

#select-layout{
	margin-bottom: 30px;
	text-align: right;
	color: #FFF;
	font-size: 13px;
}

#PC-site,#MO-site{
	padding: 5px 8px;
	border: solid 1px #999;
	display: none;
}

#copyright{
	text-align: right;
	color: #FFF;
	font-size: 12px;
}

@media only screen and (min-width:530px) {
	#copyright br{
		display: none;
	}
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝　グリッドシステム　＝＝＝＝＝＝＝＝＝＝＝＝＝ */

.row{
	margin: 10px -15px;
}
.row:after{
	display: table;
	content: "";
	clear: both;
}

.spa{
	margin: 10px 15px;
}

.sm-1-div, .sm-2-div, .sm-3-div, .sm-4-div{
	display: block;
	float: left;
	padding: 0px 15px;
}
.sm-1-div{width: 100%;}
.sm-2-div{width:  50%;}
.sm-3-div{width:  33.33333333%;}
.sm-4-div{width:  25%;}
@media only screen and (min-width:530px) {
	.bg-1-div{width: 100%;}
	.bg-2-div{width:  50%;}
	.bg-3-div{width:  33.33333333%;}
	.bg-4-div{width:  25%;}
}


/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝　汎用クラス　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/* 縦方向の間隔調整 */
.height-space{
	height: 0px;
	margin-bottom: 40px;
}

.height-space25{
	height: 0px;
	margin-bottom: 25px;
}

/* 画面－内余白ゼロ */

.sm-nopad{
		padding: 0;
}


