/* グレードレース特集ページ--------------- */
/* 目次 -------------------------------- 

１．全般
２．ヘッダー
３．サイトメニュー
４．コンテンツ
５．フッター
６．コンテンツ中身
		６−１：見出し（h2〜h5）
		６−２：ボックス
		６−３：テーブル各種
		６−４：その他
７．想定番組
８．優勝者の横顔


★のところを変更すればＯＫ

   ------------------------------------- */
/* -------------------------------- 目次 */

/* --------------------------------------------- */
/* １．全般 -------------------------------- */
/* --------------------------------------------- */
@charset "UTF-8";
/* ===== base ===== */

div,dl {
-moz-box-sizing: border-box; /* Firefox */
-webkit-box-sizing: border-box; /* Safari 3 */
-ms-box-sizing: border-box; /* Internet Explorer 8 */
box-sizing: border-box; /* Opera */
}

* { margin: 0;
	padding: 0;}

a {outline: none;}

img{
	border:none;
	vertical-align:top;}

body {
		background-position:0px 0px;
		width: 100%;
		font-family: "Meiryo UI", "Osaka", "Osaka-等幅", "MS PGothic","ＭＳ Ｐゴシック", sans-serif;
		font-size: 16px;
		color: #333333;
		line-height: 150%;
	/* ★背景 */
		/* グラデ 角度 色1→色2  */	background: linear-gradient(130deg,#FCC, #669);
		}

#boxBig {/* サイトメニュー・コンテンツ真ん中寄せ */
		margin: 0px auto;
		width: 1202px;
		background-color: #ffffff;
		border: solid 1px #357;							/* ★線色 */
		}

/* --------------------------------------------- */
/* ２．ヘッダー -------------------------- */
/* --------------------------------------------- */

#header {
		margin: 0 auto 0px;
		height: 326px;
		width: 1200px;
		background-image:url('images/top.jpg');
		background-position:0;
		background-repeat:no-repeat;
		color:#FF0000;
		text-indent: -9999px;
		border-bottom: 1px solid #333;
		 }
 @media all and (-ms-high-contrast:none){/* IE用の位置合わせ */
 #header {
		margin: 69px auto 0px;
		height: 326px;
		width: 1200px;
		background-image:url('images/top.jpg');
		background-position:0;
		background-repeat:no-repeat;
		color:#FF0000;
		text-indent: -9999px;
		 }}

/* --------------------------------------------- */
/* ３．メニュー -------------------- */
/* --------------------------------------------- */

#menu {
		margin: 0;
		width: 1200px;
		display: block;
		font-size: 18px;
		text-align: center;
		z-index: 999;
		position: fixed;/* 固定 */
		top: 327px;
		position: -webkit-sticky; /* safari対応 */
		position: sticky;
		top: 0;
	/* ★背景 */
		/* 単色 */		background: #336;
		/* 斜め 色*/	/*background-image: linear-gradient(-45deg, #ffffff 25%, #cccccc 25%,#cccccc 50%,#ffffff 50%, #ffffff 75%,#cccccc 75%, #cccccc 7px);*/
		/* 斜め 太さ*/	/*background-size: 20px 20px;*/
		/* グラデ 角度 色1→色2  */	/*background: linear-gradient(-135deg, #EEAA77, #9944DD);*/
	/* ★メニュー下の線 */
		height: 70px;
		/* 実線 太さ 色  */	border-bottom: solid 2px #333;
		}

#menu ul {
		padding: 0px;
		list-style-type: none;}
#menu li {
		padding: 0;
		margin: 0;}
#menu ul li{
		display: inline; } 
 
.button {
		position: relative;
		display: inline-block;
		font-weight: bold;
		padding: 20px 20px;
		text-decoration: none;
		color: #FCC;						/* ★メニューの文字色 */
		transition: .3s;
}

.button:hover {
	/* ★オンマウス時の背景色 */
		/* 単色 */		background:
							repeating-conic-gradient(
							from 0deg at 80% 50%,
							#cc99ff80 0% 8.25%,
							#ffccff80 8.25% 16.5%,
							#99cccc80 16.5% 25%
							),
							repeating-conic-gradient(
							from 15deg at 50% 50%,
							#99ccff80 0% 8.25%,
							#ffcccc80 8.25% 16.5%,
							#ccccff80 16.5% 25%
							),
							repeating-conic-gradient(
							from 0deg at 20% 50%,
							#ff99ccff 0% 8.25%,
							#cc99ccff 8.25% 16.5%,
							#ccffffff 16.5% 25%
							);
						border-radius: 50px;/*角の丸み*/
						color: #336;		/* ★オンマウス時のメニューの文字色 */
}

/* --------------------------------------------- */
/* ４．コンテンツ 箱-------------------------- */
/* --------------------------------------------- */

#contents {
		width: 1000px;
		padding: 0;
		margin: 0px auto;
		background-color: #ffffff;
		color: #333333;}

/* --------------------------------------------- */
/* ５．フッター ---------------------------- */
/* --------------------------------------------- */

#footer {/**/
		clear: both;
		margin: 40px auto 0px;
		width: 100%;
		height: 50px;
		color: #333333;
		text-align: center;}

/* --------------------------------------------- */
/* ６．コンテンツ中身 -------------------------- */
/* --------------------------------------------- */

/* ６−１：見出し------------------ */

h2{ /* 各ページのタイトル */
		width: 540px;
		height: 40px;
		margin: 50px auto 30px;
		text-align: center;
		font-size: 42px;
		position: relative;
		 	border-bottom: solid 4px #cd98b3;				/* ★下線の色 右 */
}

h2:after {
		position: absolute;
		content: " ";
		display: block;
		bottom: -4px;
	 	border-bottom: solid 4px #cd98b3;					/* ★下線の色 左 */
		width: 30%;
}

h3{ /* 大項目 「優勝者コメント・これまでの成績」*/
		font-size: 20px;
		color: #936;								/* ★文字色 */
		padding: 5px;
		margin-bottom: 5px;}

.s{     font-size: 13px;
		font-weight: normal;
        color: #333;
        padding-left: 5px;}


/* h4 は想定番組で使用↓↓↓↓ */


h5{ /* 小項目 */
		font-size: 20px;
		color: #333;								/* ★文字色 */
		text-decoration: bold;
		padding-bottom: 20px;}


/* ６−２：ボックス------------------ */


.colorBox {/*参考データ・優勝者コメント 色つきボックス*/
		margin:0px auto 50px auto;
		width: 100%;
		padding: 40px;
		border:1px solid #333;					/* ★枠線 */
		background-color:#fbf7e6;					/* ★色 */
		border-collapse:collapse;
		border-spacing:0;
		empty-cells:show;
		clear:both}

.colorBox p{
		margin-bottom: 20px;}

.colorBox img{
		margin: 5px;}
		
.colorBox ul {/*想定番組*/
		padding: 10px 10px;
		margin: 0px 0px 0px 100px;
		list-style-type: none;}
.colorBox li {/*想定番組*/
		text-align: left;
		padding: 0px;
		margin: 20px 0px 10px 120px;}
		
.colorBox dl {/*優勝者の横顔（特別競輪等優勝歴）*/
		padding:10px 20px;
		padding-top: 15px;
		margin: 0px;
		list-style-type: none;}
.colorBox dt {/*優勝者の横顔（特別競輪等優勝歴）*/
		clear: both;
		width: 450px;
		padding-left: 20px;
		margin-bottom: 5px;
		float: left;}
.colorBox dd {/*優勝者の横顔（特別競輪等優勝歴）*/
		margin-bottom: 5px}

.box1 {/*ファンサービス注記*/
		margin-bottom: 30px;
}


/* ６−３：テーブル------------------ */

table.Tstyle1 {/*テーブル（th・td真ん中寄せ）：ファン・テレビ*/
		width: 1000px;}
.Tstyle1 th{
		text-align:center;}
.Tstyle1 td{
		text-align:center;}

table.Tstyle2 {/*テーブル（th真ん中寄せ、td左寄せ）：ファン*/
		width: 1000px;}
.Tstyle2 th{
		text-align:center;}
.Tstyle2 td{
		text-align:left;}


table.Tstyle3 {/*テーブル（th・td真ん中寄せ）：優勝者の横顔*/
		width: 500px;}
.Tstyle3 th{
		text-align:center;}
.Tstyle3 td{
		text-align:center;}


table{
		border:1px solid #333;						/* ★表の線 */
		background-color:#ffffff;
		border-collapse:collapse;
		border-spacing:0;
		empty-cells:show;
		width: 710px;
		margin-bottom: 30px;}
th{
		border:1px solid #333;						/* ★表の線 */
		background-color:#ffd207;					/* ★表の項目部・背景 */
		color:#000;									/* ★表の項目部・文字色 */
		font-weight: normal;
		padding: 2px;}
td{
		border:1px solid #333;						/* ★表の線 */
		background-color: #ffffff;
		padding: 2px;}


/* ６−4：写真------------------ */

.photo_w {
		color: #333333;
		margin: 10px auto;
		text-align: center;
		}

/* --------------------------------------------- */
/* ７．優勝者の横顔 -------------------------- */
/* --------------------------------------------- */
.win {
		float: left;
		width: 1000px;
		display: block;
		clear:both;}

.winSell {
		float: left;
		margin: 3px 0;
		width: 1000px;
		display: block;}

.winSell img {
		margin: 10px 72px 20px 72px;}

.winSell_top {
		float: right;
		margin: -280px -1px 10px 20px;
		width: 450px;
		display: block;}




/* ８．変更履歴 -------------------------------

2018.04.01 139 雛形作成
2019.01.19 139 「7.想定番組」追加

-------------------------------------------- */

