.container { /* PC, Table */ 
	width: 1000px;
	margin: auto;
	background-color: #f7f7ee;
}
@media only screen and (max-width: 599px) { /* smartPhone */
	.container {
		width: 100%;
		/* padding: 0 10px 0 5px; */
	}
}

/* ------------------------------------------------------- ヘッダ */
.header {
	margin-bottom: 5px;
	height: 60px;
	background-color: #DFDACA;
}
@media only screen and (max-width: 599px) { /* smartPhone */
	.header {
		height: auto;
		padding-bottom: 2px;
		background-color: #DFDACA;
	}
}

.header img {
	float: left;
	margin-right: 10px;
}

.header .yomi {
	text-align: left;
	font-size: small;
	margin-top: 5px;
}
@media only screen and (max-width: 599px) { /* smartPhone */
	.header .yomi {
		font-size: small;
		padding-top: 0px;
		padding-bottom: 0px;
		margin-top: 0px;
		margin-bottom: 0px;
		margin-left: 5px;
	}
}

h1 {
	padding: 0;
	margin: 0;
	margin-bottom: 5px;
	padding-top: 15px;
	text-align: left;
	font-size: x-large;
}
@media only screen and (max-width: 599px) { /* smartPhone */
	h1 {
		padding: 0;
		margin: 0;
		clear: both;
		padding-top: 5px;
		margin-left: 5px;
		font-size: large;
	}
}

.fullsize{
	margin: 15px 0 35px 0;
	text-align: center;
}


/* ------------------------------------------------------- 説明 */

.article {
	display: flex;
	flex-direction: row;
	width: 100%;
}
@media only screen and (max-width: 599px) { /* smartPhone */
	.article {
		display: block;
	}
}	

.article-ad {
	flex-basis: 380px;
	padding: 10px;
}
@media only screen and (max-width: 599px) { /* smartPhone */
	.article-ad {
		flex: 0;
		width: 0;
		height: 0;
		padding: 0;
	}
}	
	
.article-contents {
	flex-basis: 620px;
	padding: 10px 0px 10px 15px;
}
@media only screen and (max-width: 599px) { /* smartPhone */
	.article-contents {
		flex-basis: 100%;
		padding: 10px 5px 10px 5px;
	}
}	

.article-photo {
	flex-basis: 480px;
}

.note-sum{
	font-size: large;
	font-weight: bold;
	line-height: 1.8em;
	margin: 15px 0 15px 0;
}
@media only screen and (max-width: 599px) { /* smartPhone */
	.note-sum{
		line-height: 1.5em;
		font-size: medium;
		padding: 0 5px 0 5px;
	}
}

.note{
	line-height: 1.8em;
	margin: 15px 0 15px 0;
}
@media only screen and (max-width: 599px) { /* smartPhone */
	.note{
		line-height: 1.5em;
		font-size: medium;
		padding: 0 5px 0 5px;
	}
}

.scene {
	list-style: none;
	padding-left: 0;
	display: flex;
	flex-wrap: wrap;
	text-align: center;
	margin: 0;
}
.item{
	font-size: 90%;
	margin: 5px 10px 5px 0;
	padding: 4px 8px 4px 8px;
	border-radius: 4px;
}
@media screen and (max-width: 599px) { /* smartPhone */
	.item {
		margin: 5px 2px 5px 5px;
	}
}
.on {
	font-weight: bold;
	color: black;
	background-color: #DADACF;
}
.off {
	color : gray;
	background-color: #DADACF;
}


/* ------------------------------------------------------- スポットページ */

/* ------------------------------------- 左領域 */
.photo_area {
	width: 450px;
	margin-top: 20px;
	margin-left: 0;
	float: left;
}
@media only screen and (max-width: 599px) { /* smartPhone */
	.photo_area {
		width: 100%;
		margin-top: 5px;
		margin-left: 0px;
		float: none;
	}
}

.photo_area .photo{
	text-align:right;
	font-size: small;
	padding-bottom: 5px;
	margin-bottom: 50px;
	border: solid 1px #ccc;
	padding: 4px;
}
@media only screen and (max-width: 599px) { /* smartPhone */
	.photo_area .photo{
		border: none;
		padding: 0;
		margin-bottom: 20px;
	}
}

/* ------------------------------------- 夜景100選 */
.yakei_info_area {
}
@media only screen and (max-width: 599px) { /* smartPhone */
	.yakei_info_area {
		margin-top: 10px;
	}
}	

.yakei100 {
	float: left;
	font-size: x-large;
	margin-bottom: 5px;
	padding: 10px 16px 6px 16px;
	color: white;
	background-color: #950025;
	border-radius: 6px;
	-webkit-border-radius: 4px;	/* Safari,Google Chrome用 */  
	-moz-border-radius: 4px;	/* Firefox用 */
}
@media only screen and (max-width: 599px) { /* smartPhone */
	.yakei100 {
		margin-left: 5px;
	}
}

/* 夜景100選のリンク */
.yakei100 a{
	color: white;
	text-decoration: none;
}


/* 新日本三大夜景・夜景100選公式サイト */
.more {
	float: left;
	padding-left: 10px;
	vertical-align: text-bottom;
	padding-top: 15px;
}
@media only screen and (max-width: 599px) { /* smartPhone */
	.more {
		padding-top: 7px;
		padding-bottom: 7px;
		font-size: small;
	}
}

/* SNSリンク枠 */
#info_area .sns {
	float: right;
}

/* 住所 */
.address{
	text-align:right;
	background-color: #DADACF;
	padding: 5px;
}


/* ★評価、トワイライト */
.star_area {
	float: left;
	font-size: large;
	padding-left: 20px;
	line-height: 1.5em;
}

.time_area {
	float: right;
	line-height: 1.5em;
}
@media only screen and (max-width: 599px) { /* smartPhone */
	.time_area {
		both: clear;
		float: left;
		margin-left: 5px;
	}
}

.star_item_area {
	float: left;
}
@media only screen and (max-width: 599px) { /* smartPhone */
	.star_item_area {
		margin-left: 5px;
	}
}

.star_rank_area {
	marign: 10px 0 10px 0;
	padding-left: 5px;
	float: left;
}

/* 車内鑑賞、徒歩、施設 */

table.spot_item {
	margin: 20px 0 0 0;
}

.spot_item th {
	white-space: nowrap;
}

.spot_item th, td {
	font-size: small;
	padding: 5px;
}
@media only screen and (max-width: 599px) { /* smartPhone */
	.spot_item th, td {
		font-size: small;
		padding: 2px;
	}
}

.spot_item th {
	background-color: #DADACF;
	font-weight:normal;
}


/* ------------------------------------- FAQ */

dl.faq dt:before,
dl.faq dd:before{
	padding: 8px 10px 8px 5px;
}
dl.faq dt:before{
	content:"Q";
}
dl.faq dd:before{
	content:"A";
}
dl.faq dd{
	margin-left: 0;
	padding: 10px 5px 25px 0;
}


/* ------------------------------------- 想い出 */
.omoide_item_area {
	float: left;
	width: 180px;
	background-color: #DADACF;
	padding: 5px;
	margin-bottom: 10px;
}

.note_small{
	line-height: 1.8em;
	padding-bottom: 2px;
	margin-top: 15px;
	margin-bottom: 20px;
	overflow: hidden;
}
@media only screen and (max-width: 599px) { /* smartPhone */
	.note_small{
		line-height: 1.5em;
		margin-top: 0;
		padding: 10px 5px 5px 5px;
	}
}

.memories_name{
	font-size: small;
	color: gray;
}

.memories_btn{
	margin-top: 20px;
	margin-right: 20px;
	font-size: large;
}
@media only screen and (max-width: 599px) { /* smartPhone */
	.memories_btn{
		margin-right: 100px;
		font-size: large;
	}
}

/* google地図 iframe版 */
.gmap_iframe{
	width: 1000px;
	height: 450px;
	border: 0;
}
@media only screen and (max-width: 599px) { /* smartPhone */
	.gmap_iframe{
		width: 95%;
		height: 350px;
	}
}

.maphelp {
	margin-top: 5px;
	text-align: center;
}

.anothermap {
	margin-top: 5px;
	text-align: right;
}
@media only screen and (max-width: 599px) { /* smartPhone */
	.anothermap {
		margin-top: 20px;
		margin-right: 5px;
	}
}	

/* ------------------------------------- 下領域 近隣夜景*/


/* 近くの夜景 */
.nearly {
	clear: both;
	float: left;
	width: 240px;
	background-color: #DFDACA;
	padding: 5px;
}
@media only screen and (max-width: 599px) { /* smartPhone */
	.nearly {
	}
}

/* 夜景スポット一覧領域 */
.grid_pref_spot {
	clear: both;
}

.grid_pref_spot ul {
	padding: 0px;
	margin: 0px;
}

.grid_pref_spot li {
	display: block;
	position: relative;
	width: 240px;
	height: 390px;
	margin: 4px 4px 20px 4px;
	padding: 0px;
	float: left;
	list-style: none;
	background-color:#ffffff;
	border: solid 1px gray;
}
@media only screen and (max-width: 599px) { /* smartPhone */
	.grid_pref_spot li {
		position: relative;
		width: 95%;
		height: auto;
		margin: 5px 5px 20px 5px;
		float: left;
		list-style: none;
		background-color:#ffffff;
		border: solid 1px gray;
	}
}

.grid_pref_spot img {
	padding: 0px;
	vertical-align: bottom;
}

.grid_pref_spot .photo {
	position: relative;
	margin: 0px;
	padding: 0px;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 599px) { /* smartPhone */
	.grid_pref_spot .photo {
		position: relative;
		width: 50%;
	}
}
@media only screen and (max-device-width: 320px) { /* smartPhone */
	.grid_pref_spot .photo {
		position: relative;
		width: 50%;
	}
}

.grid_pref_spot .left {
	float:left;
}

@media only screen and (min-device-width:320px) and (max-device-width:599px) {
.grid_pref_spot .right {
		float:right;
		padding: 10px;
	}
}
@media only screen and (max-device-width: 320px) { /* iPhone4 */
.grid_pref_spot .right {
		float:right;
		padding: 3px;
	}
}


.grid_pref_spot .photocmt{
	position: absolute;
	right: 0px;
	top: 0px;
	color: #ffffff;
	background-color: rgba(0,0,0,0.4);
	width: auto;
	padding: 5px;
	margin: 0px;
}
@media only screen and (max-width: 599px) { /* smartPhone */
	.grid_pref_spot .photocmt{
		position: absolute;
		right: auto;
		left: 0px;
		top: 0px;
		color: #ffffff;
		background-color: rgba(0,0,0,0.4);
		width: auto;
		padding: 3px;
		margin: 0px;
	}
}

.grid_pref_spot .photocmtlen{
	position: absolute;
	right: 0px;
	bottom: 0px;
	color: #C8C4B7;
	background-color: rgba(0,0,0,0.4);
	width: auto;
	padding: 2px;
	margin: 0px;
}

.grid_pref_spot .name {
	padding: 3px;
	background-color: #DADACF;
}

.grid_pref_spot .adr {
	text-align:right;
}

.grid_pref_spot .cmt {
	margin-top: 5px;
	text-indent: 1em;
	padding: 2px;
}

.grid_pref_spot .info {
	position: absolute;
	bottom: 0;
	padding-bottom: 5px;
	/* width: 240px; */
}
@media only screen and (max-width: 599px) { /* smartPhone */
	.grid_pref_spot .info {
		position: relative;
		top: 10px;
		padding-bottom: 5px;
		/* width: 240px; */
	}
}

.grid_pref_spot .item {
	float: left;
	width: 60px;
	height: auto;
	color: gray;
	vertical-align: top;
}
@media only screen and (max-width: 599px) { /* smartPhone */
	.grid_pref_spot .item {
		margin-left: 3px; 
	}
}

.grid_pref_spot .star {
	float: left;
    margin: 10px 0 0 0;
	width: 80px;
	color: orange;
}

.grid_pref_spot .etc {
	float: right;
	width: 100px;
}
@media only screen and (max-width: 599px) { /* smartPhone */
	.grid_pref_spot .etc {
		clear: both;
		float: right;
		width: auto;
		padding: 5px;
		margin: 0px; 
	}
}


.grid_pref_spot .mark {
	padding: 1px 6px;
	background-color: #CFD1DA;
	border-radius: 4px;
	-webkit-border-radius: 4px;	/* Safari,Google Chrome用 */  
	-moz-border-radius: 4px;	/* Firefox用 */
}

.grid_pref_spot a {
	display: block;
	color: #000000;
	text-decoration: none;
}

.grid_pref_spot a:hover {
	display: block;
	color: #D50000;
	text-decoration: underline;
}

.grid_pref_spot a:visited {
	display: block;
	color: #000000;
}

/* ------------------------------------- エリアメニュー*/

/* エリア選択領域 上段*/
.menu_bottom { /* PC, Table */ 
}

.menu_ad { /* PC, Table */ 
	width: 340px;
	float: left;
}

.menu_list{ /* PC, Table */ 
	float: left;
}

.menu_bottom_ad{
	height: 350px;
}


.area_menu {
	width: 600px;
	height: auto;
	margin: 0 20px 20px 0;
	padding: 10px 10px;
	border-top: 3px solid #DFDACA;
	border-radius: 0 0 3px 3px;
	box-shadow: 2px 2px 4px #aaa, -2px 2px 4px #aaa;
	font-size: 14px;
	background-color: #fff;
	color:#333;
}
@media only screen and (max-width: 599px) { /* smartPhone */
	.area_menu {
		float: left;
		margin: 0 0 20px 5px;
		padding: 15px 5px;
		width: 95%;
		height: auto;
	}
}

.area_menu ul {
  list-style-type : none;
  margin: 0;
  padding: 0;
}

.area_menu li {
	float: left;
	width: 250px;
	line-height: 10px;
	margin: 5px 0 5px 15px;
	padding: 5px;
	list-style: none;
}
@media only screen and (max-width: 599px) { /* smartPhone */
	.area_menu li {
		font-size: 12px;
		width: 48%;
		margin: 0 0 7px 0;
		padding: 3px;
		list-style: none;
		line-height: 150%;
	}
}

.ranking {
  padding: 20px 10px;
}
@media only screen and (max-width: 599px) { /* smartPhone */
	.ranking {
	  padding: 10px 0 25px 0;
	}
}

.area_label {
  padding: 10px 10px;
}
@media only screen and (max-width: 599px) { /* smartPhone */
	.area_label {
	  padding: 0 0 5px 0;
	}
}


/* 夜景特集 */
.special_box{
	display: flex;
	flex-wrap: wrap;
	padding: 5px 0 5px 10px;
}

.special_rep{
	margin: 0 30px 0 0;
	width: 45%;
}
@media screen and (max-width: 599px) {
	.special_rep{
		width: 100%;
		margin: 5px 10px 5px 5px;
	}
}

.special_rep img{
	width: 100%;
}

.special_rep_title {
	margin: 10px 0 20px 5px;
}

