@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;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝　ページレイアウト　＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* body要素 */
body{
	width: 100%;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	padding-top: 50px;
}
@media only screen and (min-width:651px) {
	body{
		padding-top: 0px;
	}
}
@media only screen and (min-width:801px) {
	body{
		width: 1030px;
		padding: 0px 15px;
		margin: 0px auto;
	}
}

/* header要素 */
header{
	width: 100%;		/* 小画面では100%幅 */
}

#hlink1{
	display: none;
}
@media only screen and (min-width:480px) {
	#hlink1{
		display: block;
	}
}

#hlink2{
	display: block;
}
@media only screen and (min-width:480px) {
	#hlink2{
		display: none;
	}
}

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

/* aside要素 */
aside{
	width: 300px;			/* 小画面では300px幅固定 */
	margin: 20px auto;
}
//#sidebar-2{
//	display: none;			/* サイドバーの一部は表示しない */
//}
@media only screen and (min-width:651px) {	/* 中画面ではサイドバーを2列表示 */
	aside{
		width: 620px;
	}
	#sidebar-1{
		width: 300px;
		float: left;
	}
	#sidebar-2{
		width: 300px;
		float: right;
		display: block;
	}
}
@media only screen and (min-width:801px) {	/* 大画面では右側に300px幅固定で配置 */
	aside{
		width: 300px;
		float: right;
	}
}

aside:after{	/* clearfix処理 */
	display: table;
	content: "";
	clear: both;
}

/* footer要素 */
footer{
	width: 100%;
	clear: both;
	padding: 15px 20px;
	background: #000;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　ヘッダー　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

h1{
	display: block;		/* ブロックレベル要素に変更 */
	float: left;
	color: #FFFFFF;
	font-size: 16px;
	font-weight: normal;
	margin: 0px 15px 5px;
	padding: 7px 10px 7px;
	background: #FF4400;

    border-radius: 10px;        /* CSS3草案 */  
    -webkit-border-radius: 10px;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 10px;   /* Firefox用 */  

}
@media only screen and (min-width:651px) {
	h1{
		font-size: 20px;
		margin: 5px 0px 5px;
	}
}

#logo{
	display: block;		/* ブロックレベル要素に変更 */
	float: left;
	width: 180px;
	margin: 15px 0px 3px 10px;
}
@media only screen and (min-width:651px) {
	#logo{
		width: 270px;	/* 中画面以上はロゴ大きめ */
	}
}

#header-top-link{		/* リンクは左側に横並びで配置 */
	float: left;
	margin: 5px 10px 5px;
	list-style-type: none;
//	background: gold;
	height: 70px;
	width: 90%;
}
@media only screen and (min-width:651px) {
	#header-top-link{		/* リンクは右側に横並びで配置 */
		margin: 0px 10px 5px;
	}
}
@media only screen and (min-width:801px) {
	#header-top-link{		/* リンクは右側に横並びで配置 */
		float: right;
		margin: 10px 10px 5px;
		width: 50%;
	}
}

#header-top-link li{
	display: inline-block;
	margin-left: 10px;
}

#header-top-link a{
	display: block;
	text-decoration: none;
}

#header-top-link img{
	height: 30px;
}
@media only screen and (min-width:651px) {
	#header-top-link img{
		height: 18px;				/* 中画面以上はアイコン小さめ */
		padding-right: 5px;
	}
}

@media only screen and (min-width:651px) {
	#header-top-link div{
	}
}

#header-top-link span{
	display: none;		/* 小画面では文字表示無し */
}
@media only screen and (min-width:651px) {
	#header-top-link span{
		display: inline;	/* 中画面以上はフォントサイズ指定で表示 */
		color: #666;
		font-size: 15px;
	}
}

#header-top:after{	/* clearfix処理 */
	display: table;
	content: "";
	clear: both;
}

#header-img{	/* ヘッダー画像を指定 */
	height: 200px;		/* 小画面では小さめ */
	background-image: url("/img/header-img.jpg");
	background-size: cover;			/* 全体を覆うように配置 */
	background-position: bottom;	/* 下を基準に配置 */
}
@media only screen and (min-width:651px){
	#header-img{
		height: 250px;		/* 中画面では中くらい */
	}
}
@media only screen and (min-width:801px) {
	#header-img{
		height: 300px;		/* 大画面では大きめ */
	}
}

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

#sp-menu{					/* メニューボタンは小画面のみで使用 */
	position: fixed;		/* 最上段に固定表示 */
	top: 0px;
	left: 0px;
	width: 100%;
	background: #000000;
	color: #FFFFFF;
	font-weight: bold;
	font-size: 16px;
	padding-left: 15px;
	line-height: 45px;
}
@media only screen and (min-width:651px) {
	#sp-menu{
		display: none;		/* メニューボタンは中画面以上で非表示 */
		position: static;
	}
}

#sp-menu img{
	height: 30px;			/* メニューボタンの書式設定 */
	padding-bottom: 4px;
	margin-right: 8px;
}

nav ul{
	list-style-type: none;	/* マーカー無し */
	display: none;
	position: fixed;		/* メニュー項目はメニューボタンの直下から固定表示 */
	top: 45px;
	left: 0px;
	width: 100%;
}
@media only screen and (min-width:651px) {
	nav ul{
		display: block;
		position: static;
	}
}

nav li{
	width: 50%;
	float: left;
	border-bottom: solid 2px #666666;	/* 小画面では各項目の下側に枠線 */
}
nav li:nth-child(odd){
	border-right: solid 2px #666666;	/* 小画面では奇数番目の項目は右側に枠線 */
}
@media only screen and (min-width:651px) {
	nav li{
		width: 16.66666667%;			/* 各項目は1/6幅で表示 */
		border-right: solid 2px #666666;	/* 中画面以上では各項目は右側に枠線 */
		border-bottom: none;			/* 下側の枠線は無し */
	}
	nav li:last-child{
		border-right: none;				/* 最後の要素は右側の枠線無し */
	}
}

nav a{		/* リンク機能のa要素の書式設定 */
	display: block;
	background: #333333;
	color: #FFFFFF;
	font-weight: bold;
	font-size: 13px;
	line-height: 45px;
	padding-left: 15px;
	text-decoration: none;
}
@media only screen and (min-width:651px) {
	nav a{
		line-height: 36px;	/* 中画面以上では高さを変更 */
		text-align: center;
		padding-left: 0;
	}
}

nav a:hover{	/* マウスオーバー時の書式設定 */
	background: #C03000;
}

nav ul:after{	/* clearfix処理 */
	display: table;
	content: "";
	clear: both;
}

@media only screen and (min-width:651px) {
	nav {
		display: none;
	}
	nav ul {
		display: none;
	}
}

nav2 ul{
	list-style-type: none;	/* マーカー無し */
	display: none;
	position: fixed;		/* メニュー項目はメニューボタンの直下から固定表示 */
	top: 45px;
	left: 0px;
	width: 100%;
}
@media only screen and (min-width:651px) {
	nav2 ul{
		display: block;
		position: static;
	}
}

nav2 li{
	width: 50%;
	float: left;
	border-bottom: solid 2px #666666;	/* 小画面では各項目の下側に枠線 */
}
nav2 li:nth-child(odd){
	border-right: solid 2px #666666;	/* 小画面では奇数番目の項目は右側に枠線 */
}
@media only screen and (min-width:651px) {
	nav2 li{
		width: 16.66666667%;			/* 各項目は1/6幅で表示 */
		border-right: solid 2px #666666;	/* 中画面以上では各項目は右側に枠線 */
		border-bottom: none;			/* 下側の枠線は無し */
	}
	nav2 li:last-child{
		border-right: none;				/* 最後の要素は右側の枠線無し */
	}
}

nav2 a{		/* リンク機能のa要素の書式設定 */
	display: block;
	background: #333333;
	color: #FFFFFF;
	font-weight: bold;
	font-size: 13px;
	line-height: 45px;
	padding-left: 15px;
	text-decoration: none;
}
@media only screen and (min-width:651px) {
	nav2 a{
		line-height: 36px;	/* 中画面以上では高さを変更 */
		text-align: center;
		padding-left: 0;
	}
}

nav2 a:hover{	/* マウスオーバー時の書式設定 */
	background: #C03000;
}

nav2 ul:after{	/* clearfix処理 */
	display: table;
	content: "";
	clear: both;
}

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

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

#sns-icon-area {
	margin-top: 5px;
	display: table;
	padding: 0 0 0 2px
}

#sns-icon-area>div {
	margin-bottom: 1em;
	margin-right: 1em;
	float:left;
}

.sns-icon {
	height: 32px;
}

#main #boxArea1 {
	margin-top: 5px;
}
#main #boxArea2 {
	margin-bottom: 5px;
}

#boxArea1>div {
	margin-bottom: 1em;
	margin-right: 0.5em;
}
#boxArea2>div {
	margin-bottom: 1em;
	margin-right: 0.5em;
}

h2{
	color: #336;
	font-size: 16px;
	font-weight: bold;
	padding: 0px 6px;
	line-height: 1.2;
	border-bottom: dashed 1px #336;
	margin-bottom: 8px;
}
h3{
	font-size: 14px;
	font-weight: normal;
}
h4{
	font-size: 12px;
	font-weight: normal;
}
@media only screen and (min-width:651px) {
	h2{
		font-size: 18px;
	}
	h3{
		font-size: 16px;
	}
	h4{
		font-size: 14px;
	}
}

.navi-list {
	font-size: 12px;
	margin-top : -5px;
	padding-left : 5px;
	padding-right : 5px;
	padding-bottom : 5px;
	line-height: 25px;
}
@media only screen and (min-width:401px) {
	.navi-list {
		font-size: 14px;
	}

	.navi-list br{
		display: none;	/* 中画面以上では改行不要 */
	}
}

.info-list dl{
	font-size: 14px;
//	background-color : gold;
	padding-top : 5px;
	padding-left : 10px;
	padding-right : 10px;
	padding-bottom : 5px;
}

.info-list dt{
	float : left;
	width : 6em;
	padding-top : 5px;
	padding-bottom : 3px;
}

.info-list dd{
	margin-left : 4em;
	padding-top : 3px;
	padding-bottom : 3px;
	padding-left : 1em;
}

.info-list dd:after{	/* clearfix処理 */
	display: table;
	content: "";
	clear: both;
}

.info-list-g p{
	padding-top : 5px;
	padding-left : 5px;
	padding-right : 5px;
	padding-bottom : 5px;
	font-size: 14px;
}

.info-list-g dl{
	font-size: 14px;
//	background-color : gold;
	padding-top : 5px;
	padding-left : 5px;
	padding-right : 5px;
	padding-bottom : 5px;
}

.info-list-g dt{
	float : left;
	width : 10em;
	padding-top : 5px;
	padding-bottom : 3px;
}

.info-list-g dd{
	margin-left : 4em;
	padding-top : 3px;
	padding-bottom : 3px;
	padding-left : 1em;
}

.info-list-g dd:after{	/* clearfix処理 */
	display: table;
	content: "";
	clear: both;
}

.info-list-l p{
	padding-top : 5px;
	padding-left : 5px;
	padding-right : 5px;
	padding-bottom : 5px;
	font-size: 14px;
}

.info-list-l table{
	border: 1;
	bordercolor: 888800
	border-collapse: collapse;
	font-size: 14px;
//	background-color : gold;
	padding-top : 5px;
	padding-left : 5px;
	padding-right : 5px;
	padding-bottom : 5px;
}

.info-list-st p{
	padding-top : 5px;
	padding-left : 5px;
	padding-right : 5px;
	padding-bottom : 5px;
	font-size: 14px;
}

.info-list-st table{
	border-collapse: collapse;
	font-size: 14px;
//	background-color : gold;
	padding-top : 5px;
	padding-left : 5px;
	padding-right : 5px;
	padding-bottom : 5px;
}

.info-list-st table td{
	border: solid 1px black;
	bordercolor: 888800;
	padding-top : 5px;
	padding-left : 5px;
	padding-right : 5px;
	padding-bottom : 5px;
}

.info-list-c p{
	padding-top : 5px;
	padding-left : 5px;
	padding-right : 5px;
	padding-bottom : 5px;
	font-size: 14px;
}

.info-list-c table{
	border-collapse: collapse;
	font-size: 14px;
//	background-color : gold;
}

.info-list-c table th{
	font-weight: normal;
	width : 64px;
}

.info-list-c table td{
	padding-top : 5px;
	padding-left : 2px;
	padding-right : 2px;
	padding-bottom : 5px;
}

.info-list-qa p{
	padding-top : 5px;
	padding-left : 5px;
	padding-right : 5px;
	padding-bottom : 5px;
	font-size: 14px;
}

.info-list-qa table{
//	border-collapse: collapse;
	font-size: 14px;
	background-color : #EEEEEE;
	width : 100%;
	padding-top : 5px;
	padding-left : 5px;
	padding-right : 5px;
	padding-bottom : 5px;
}

.info-list-qa table th{
	text-align: justify;
	width : 8em;
	padding-top : 2px;
	padding-left : 2px;
	padding-right : 2px;
	padding-bottom : 2px;
}

.info-list-qa table td{
	padding-top : 2px;
	padding-left : 2px;
	padding-right : 2px;
	padding-bottom : 2px;
}

.info-list-qa textarea {
    width: 100%;
    height: 160px;
}

.box-keisai {
	border: 1px solid #CCC;
	margin-bottom: 20px;
	margin-left: 12px;
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 2px;
}

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

.shop-info-div {
	background-color: gold;
	border: solid 2px darkgoldenrod;
	margin: 3px 0px 0px;
	padding: 4px 2px;
}
.shop-info-div:after {	/* clearfix処理 */
	display: table;
	content: "";
	clear: both;
}

.shop-address {
	float: left;
	font-size: 12px;
	padding-top: 4px;
	padding-left: 8px;
}
@media only screen and (min-width:651px) {
	.shop-address {
		font-size: 15px;
	}
}

.chirashi-info-div {
	background-color: khaki;
	border-top: solid 1px darkgoldenrod;
	border-left: solid 1px darkgoldenrod;
	border-bottom: solid 1px darkgoldenrod;
	border-right: solid 1px darkgoldenrod;
	padding: 0px;
	width: 100%;
	float: left;
	margin: 0px 0px 3px;
//	margin: 0px 0px 0px;
}
.chirashi-info-div hr {
	width: 99%;
}

.chirashi-subinfo-div {
	padding: 0px;
}

.chirashi-comment-div {
	width: 75%;
	float: left;
	padding: 2px 8px;
	font-size: 14px;
	font-weight: normal;
}
@media only screen and (min-width:401px) {
	.chirashi-comment-div {
		width: 80%;
	}
}
@media only screen and (min-width:651px) {
	.chirashi-comment-div {
		font-size: 16px;
	}
}

.chirashi-url-div {
	display: inline-block;
	float: left;
	margin: 2px 0px;
y}

.chirashi-url-div a {
	display: block;
	border-radius: 8px;        /* CSS3草案 */  
    -webkit-border-radius: 8px;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 8px;   /* Firefox用 */  
	color: #FFFFFF;
	background: #FF4400;
	font-size: 10px;
	line-height: 16px;
	text-align: center;
	text-decoration: none;
	margin: 5px 0px;
	padding: 2px 4px;
}
@media only screen and (min-width:651px) {
	.chirashi-url-div a {
		border-radius: 10px;        /* CSS3草案 */  
    	-webkit-border-radius: 10px;    /* Safari,Google Chrome用 */  
	    -moz-border-radius: 10px;   /* Firefox用 */  
		font-size: 12px;
		margin: 5px 0px;
		padding: 2px 4px;
	}
	.chirashi-url-div hr {
		display: none;
	}
}

.chirashi-info-div:after {	/* clearfix処理 */
	display: table;
	content: "";
	clear: both;
}

.ad-info-div {
//	height: 60px;
	margin-top: 5px;
	margin-bottom: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
}

.dshop-info-div {
	background-color: lemonchiffon;
	border: solid 2px darkgoldenrod;
	padding: 4px 6px;
}


.dshop-info-div:after {	/* clearfix処理 */
	display: table;
	content: "";
	clear: both;
}

.dshop-info-div #gmap {
//	margin-top: 5px;
//	margin-bottom: 10px;
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 75%;
}

.dshop-info-div #gmap iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.dshop-info-div .message {
	margin-left: 5px;
}
@media only screen and (max-width:400px) {
	.dshop-info-div .message {
		font-size: 14px;
	}
}

.dchirashi-info-div {
	background-color: lemonchiffon;
	border: solid 2px darkgoldenrod;
	padding: 4px 6px;
}

.dchirashi-info-div:after {	/* clearfix処理 */
	display: table;
	content: "";
	clear: both;
}

.dchirashi-subinfo-div {
	padding: 0px;
}

.dchirashi-comment-div {
	width: 100%;
	float: left;
	padding: 2px 8px;
}

.dchirashi-url-div {
	display: inline-block;
	float: float;
	margin: 2px 0px;
}

.dchirashi-info-div:after {	/* clearfix処理 */
	display: table;
	content: "";
	clear: both;
}

.dchirashi-url-div a {
	display: inline-block;
	border-radius: 8px;        /* CSS3草案 */  
    -webkit-border-radius: 8px;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 8px;   /* Firefox用 */  
	color: #FFFFFF;
	background: #FF4400;
	font-size: 10px;
	line-height: 16px;
	text-align: center;
	text-decoration: none;
	margin: 5px 10px;
	padding: 2px 4px;
}
@media only screen and (min-width:651px) {
	.dchirashi-url-div a {
		border-radius: 10px;        /* CSS3草案 */  
    	-webkit-border-radius: 10px;    /* Safari,Google Chrome用 */  
	    -moz-border-radius: 10px;   /* Firefox用 */  
		font-size: 12px;
	}
}

.chirashi-iflist {
	frameborder: none;
	width: 300px;
	height: 240px;
}
@media only screen and (min-width:401px) {
	.chirashi-iflist {
		width: 100%;
	}
}

#main-bottom{
		float: left;
		display: block;
}
@media only screen and (min-width:801px) {
	#main-bottom{
		float: left;
		display: block;
	}
}

#main-bottom:after{	/* clearfix処理 */
	display: table;
	content: "";
	clear: both;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝　サイドバー用　＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

.banner1{	/* バナーの書式設定 */
	margin-bottom: 15px;
	text-align: center;
	font-size: 14px;
	padding-top: 15px;
	overflow: hidden;
}

.banner2{	/* バナーの書式設定 */
	margin-bottom: 15px;
	text-align: center;
	font-size: 14px;
	padding-top: 15px;
	overflow: hidden;
}

.banner3{	/* バナーの書式設定 */
	margin-bottom: 15px;
	text-align: center;
	font-size: 14px;
	padding-top: 15px;
	overflow: hidden;
}


aside p{	/* asideのp要素の書式設定 */
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 10px;
}
aside h3{
	font-size: 15px;
}

.banner-div  {
	border: none;
	margin-bottom: 5px;
	padding-bottom: 5px;
	padding-right: 5px;
}
.banner-div table.banner {
	border: none;
	width: 300px;
}
.banner-div table.banner td {
	width: 150px;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 6px;
}

.tayori-div  {
	border: none;
	margin-bottom: 15px;
	padding-bottom: 5px;
	padding-right: 5px;
	font-size: 14px;
}
.tayori-div table.tayori {
	border-top: solid 1px darkkhaki;
	border-bottom: solid 1px darkkhaki;
	border-right: solid 1px darkkhaki;
	border-left: solid 1px darkkhaki;
	width: 300px;
}
.tayori-div table.tayori td {
	border-top: 1px dashed darkgreen;
	padding: 0px;
}
.tayori-div table.tayori td.tayori-comment-div {
	width: 250px;
}

.tayori-url-div a {
	display: inline-block;
	border-radius: 8px;        /* CSS3草案 */  
    -webkit-border-radius: 8px;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 8px;   /* Firefox用 */  
	color: #FFFFFF;
	background: #40C000;
	font-size: 10px;
	line-height: 16px;
	text-align: center;
	text-decoration: none;
	margin: 3px 1px;	/* 上下 左右 */
	padding: 6px 1px;
}
@media only screen and (min-width:651px) {
	.tayori-url-div a {
		border-radius: 10px;        /* CSS3草案 */  
    	-webkit-border-radius: 10px;    /* Safari,Google Chrome用 */  
	    -moz-border-radius: 10px;   /* Firefox用 */  
		font-size: 12px;
	}
}

.tayori-div table.blood {
	border-top: solid 1px darkkhaki;
	border-bottom: solid 1px darkkhaki;
	border-right: solid 1px darkkhaki;
	border-left: solid 1px darkkhaki;
	width: 300px;
}
.tayori-div table.blood td {
	border-top: 1px dashed darkgreen;
	padding: 0px;
}
.tayori-div table.blood td.blood-place-div {
	width: 150px;
}


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

footer ul{
	width: 100%;	/* 中画面以下では100%幅 */
	margin-bottom: 30px;
	list-style-type: none;
}
@media only screen and (min-width:651px) {
	footer ul{
		width: 600px;	/* 大画面では600px固定 */
	}
}

footer li{
	width: 50%;		/* 小画面以下では2列で表示 */
	float: left;
}
@media only screen and (min-width:651px) {
	footer li{
		width: 33%;	/* 中画面以上では3列で表示 */
	}
}

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:801px) {
	footer li a{
		line-height: 24px;
	}
}

footer li a:hover{	/* マウスオーバー時の書式設定 */
	background: #C30;
}

footer ul:after{	/* clearfix処理 */
	display: table;
	content: "";
	clear: both;
}

#copyright{
	text-align: right;	/* 小画面では右寄せ */
	color: #FFF;
	font-size: 12px;
}

@media only screen and (min-width:651px) {
	#copyright br{
		display: none;	/* 中画面以上では改行不要 */
	}
}


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

.row{
	margin: 10px -15px;
}
.row:after{		/* clearfix処理 */
	display: table;
	content: "";
	clear: both;
}

.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:651px) {
	.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;
}

/* 小画面－内余白ゼロ */
@media only screen and (max-width:650px) {
	.sm-nopad{
		padding: 0;
	}
}

