#weather-box {
	width: auto;
	height: auto;
	margin-top: 5px;
	background: url(../img/weather/bg.jpg) center center no-repeat;
	overflow: hidden;
}

/* 天気予報部分 */
#weather-inner {
	width: 1400px;
	overflow: hidden;
	position: relative;
}
#weather-inner .weather-item {
	width: 200px;
	height: auto;
	padding: 24px 0;
	float: left;
	font-weight: bold;
}
#weather-inner .weather-item .date {
	margin-bottom: 16px;
	text-align: center;
}
#weather-inner .weather-item .date span {
	display: inline-block;
	padding: 3px 10px;
	background: #fff;
	border-radius: 3px;
}
#weather-inner .weather-item .icon-pop {
	display: table;
	width: 100%;
	margin-bottom: 14px;
}
#weather-inner .weather-item .icon-pop p {
	display: table-cell;
	width: 50%;
	text-align: center;
	vertical-align: middle;
}
#weather-inner .weather-item .icon-pop .icon {
	padding-left: 24px;
}
#weather-inner .weather-item .icon-pop .pop {
	padding-right: 24px;
}
#weather-inner .weather-item .icon-pop .pop .pop-head {
	display: block;
	margin-left: 6px;
	background: #7b4d11;
	color: #fff;
	font-size: 13px;
	border-radius: 3px 3px 0 0;
}
#weather-inner .weather-item .icon-pop .pop .pop-body {
	display: block;
	margin-left: 6px;
	background: #fff;
	font-size: 15px;
	border-radius: 0 0 3px 3px;
}
#weather-inner .weather-item .high-low {
	display: table;
	margin: 0 auto;
}
#weather-inner .weather-item .high-low .hl-head {
	display: table-cell;
	background: #7b4d11;
	margin-right: 10px;
	padding: 0 6px;
	color: #fff;
	border-radius: 3px 0 0 3px;
}
#weather-inner .weather-item .high-low .high {
	display: table-cell;
	padding: 4px 3px 4px 6px;
	background: #fff;
	color: #d23737;
}
#weather-inner .weather-item .high-low .low {
	display: table-cell;
	padding: 4px 6px 4px 3px;
	background: #fff;
	color: #1c81b6;
	border-radius: 0 3px 3px 0;
}

/* 翌日・前日 */
#weather-nav {
	display: table;
	width: 100%;
	background: #306e0e;
	color: #fff;
	font-weight: bold;
}
#weather-nav div {
	display: table-cell;
	width: 50%;
	text-align: center;
}
.weather-nav-item {
	display: block;
	padding: 8px 0;
	cursor: pointer;
}
.weather-nav-item .txt-weather-nav {
	display: inline-block;
	line-height: 16px;
}
.weather-nav-item .icon-weather-nav {
	display: inline-block;
	width: 16px;
	height: 16px;
	vertical-align: middle;
}
.weather-nav-item .icon-weather-nav .svg-item {
	fill: #fff;
}
#weather-nav #yesterday {
	display: none;
}
.weather-nav-item .icon-yesterday {
	margin-right: 4px;
}
.weather-nav-item .icon-tomorrow {
	margin-left: 4px;
}