﻿/*====================================================================================================*/
/*トップニュース設定========================================================================================*/
/*====================================================================================================*/

body{
	background:#FFFFFF;
}

/*メイン領域*/
#main{
	padding:20px;
	}

/*▼「◇ニュース速報」部分*/
.con_title{
	position: relative;
    width: 100%;
    color:#FF0066;
    font-size: 24px;
    text-align:center;
    font-weight:bold;
}
.con_title:before {
	content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    margin: 0 auto;
    text-align:center;
    background-image: linear-gradient(to right, transparent, #000 25%, #000 75%, transparent);
    background-position: center;
    background-repeat: no-repeat;
}

/*▼速報欄のタイトル*/
.main_title{
	display:table;
	box-sizing:border-box;
	width:100%;
	padding:10px;
	background: #7db9e8; /* Old browsers */
	background: -moz-linear-gradient(top, #7db9e8 0%, #2989d8 50%, #207cca 51%, #1e5799 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7db9e8), color-stop(50%,#2989d8), color-stop(51%,#207cca), color-stop(100%,#1e5799)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #7db9e8 0%,#2989d8 50%,#207cca 51%,#1e5799 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #7db9e8 0%,#2989d8 50%,#207cca 51%,#1e5799 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #7db9e8 0%,#2989d8 50%,#207cca 51%,#1e5799 100%); /* IE10+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7db9e8', endColorstr='#1e5799',GradientType=0 ); /* IE6-9 */
	background: linear-gradient(top, #7db9e8 0%,#2989d8 50%,#207cca 51%,#1e5799 100%); /* W3C */
	/*margin:0 0 30px 0;*/
	/*padding:12px 10px;*/
	color:#FFF;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	border-radius:4px;
	text-shadow:1px 1px 2px #333;
	-webkit-box-shadow:inset 0 0 50px rgba(0,0,0, 0.1);
	
	
	text-align:center;
	font-size:20px;
	font-weight:bold;
}

/*タイトル囲み部分(table親要素)*/
#news_title{
	font-weight:bold;
	font-size:18px;
	color:#FF0066;
}

#news{
	margin:10px 0 0 0;
}


/*-------------------------------------
　(PC表示)
-------------------------------------*/
/* ▼表示領域が500px以上の場合 */
@media screen and (min-width: 500px) {
}

/*==============================================================
　(携帯表示)
==============================================================*/
/* ▼表示領域が500px未満の場合 */
@media screen and (max-width: 599px) {
	#news_title{
	font-size:95%;
}

}

