/* 全ディバイスに適用するCSS */
/* ボディ */
body
{
	margin: 0 ;				/* スペース */
	padding: 0 ;			/* 余白 */
	font-size: 15px ;		/* 文字サイズ */
	line-height:140%;	/* 行の高さ */
	background-color: #993300;
}

a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
	color: #FF0000;
}
a:active {
	text-decoration: none;
}

.index
{
    width: 1000px ;
	margin: 10px auto 0;
	padding: 0 ;		/* 余白 */
}

.index-logo
{
	width: 200px ;		/* 横幅 */
	height: auto ;		/* 高さ */
	text-align: left;
}

/* メイン*/
.main
{
	width: 1000px ;
	margin: 0 auto ;	/* 左右に[auto]を指定することで、真ん中に寄る */
	padding: 0 ;		/* 上下左右の余白を0にしておく */
	background-color: #FFFFFF;
	text-align: center;

}

h1
{
    padding: 10px 0;
	color:#993300;
}

h2
{
    padding: 5px 0;
	color:#FF0000;
	text-align: center;
}

h3
{
    clear:both ;
}

.top
{
    width: 800px ;
	margin: 0 auto ;
	background-color:#FFFFCC;
	border:5px solid #993300;
	text-align: left;
}


/*大枠*/
ul.list-top
{
    padding: 20px 0 0;
    margin: 0 auto ;
    width: 800px ;
	clear:both ;
}

/*枠設定*/
ul.list-top li
{
    padding: 2px 0 2px;
    margin-bottom:5px;
    float: left;
    width: 33.3333333%;
	height: auto;
    box-sizing:border-box;
    display: block;
	text-align:center;
	border-left:1px solid white;
	background-color:#FFCC99;
}

table.style1 {
  border: 1px solid #FFFFFF;
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  table-layout: fixed;
  width: 600px;
}

table.style1 tr {
  background: #FFFFFF;
  border: 1px solid #FF9966;
}
table.style1 th,
table.style1 td {
  padding: 3px 0;
  text-align: left;
}

table.style2 {
  border: 1px solid #FFFFFF;
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  table-layout: fixed;
  width: 800px;
}

table.style2 tr {
  background: #FFFFFF;
  border: 1px solid #FF9966;
}
table.style2 th,
table.style2 td {
  padding: 3px 0;
  text-align: left;
}

table.style3 {
  border: 1px solid #FFFFFF;
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  table-layout: fixed;
  width: 800px;
}

table.style3 tr {
  background: #FFFFFF;
  border: 1px solid #FF9966;
}
table.style3 th
{
  padding: 3px 0;
  text-align: center;
}

table.style3 td {
  padding: 3px 0;
  text-align: left;
}

table.style4 
{
  border: 1px solid #FFFFFF;
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  table-layout: fixed;
  width: 300px;
}

table.style4 tr 
{
  background: #FFFFFF;
  border: 1px solid #FF9966;
}
table.style4 th
{
  padding: 3px 0;
  text-align: center;
}

table.style4 td 
{
  padding: 3px 0;
  text-align: left;
}

.style001
{
  background-color:#FFCC99;
}

.style002
{
  background-color: #FFCCCC;
}

.style003
{
  background-color:#FFFFCC;
}

.style004
{
  background-color:#FFCC99;
  width: 30%;
}

ul.content
{
    padding: 0;
    margin: 0;
    width: 100%;
}

ul.content li
{
    padding: 0;
    margin-bottom:10px;
    float: left;
    width: 33.333333333%;
	height: auto;
    box-sizing:border-box;
    display: block;
    text-align: center;
}

.cut1,
.cut3
{
    padding:5px 0;
	clear:both;
}

.cut2
{
    padding:5px 0;
	display:none;
}

.closing
{
    text-align: center;
	width: 100% ;
	clear:both ;
}

.ads
{
    width: 100% ;
	height: 90px;
	margin: 30px 0 ;
	padding:10px 0;
}

@media screen and ( max-width:1000px )
{

.main
{
	width: 100% ;
	padding: 0 10px ;		/* 左右の余白 */
}

}

@media screen and ( max-width:900px )
{

ul.content li 
{
    width: 50%;
}

.cut3
{
    display:none;
}

.cut2
{
    clear:both;
	display:block;
}

}

@media screen and ( max-width:800px )
{

body
{
	font-size: 13px ;	/* 文字サイズ */
}

.index
{
    width: 100% ;
}

.top
{
    width: 100% ;
}

ul.list-top
{
    width: 100% ;
}

table.style2 
{
  width: 100%;
}

table.style3
{
  width: 100%;
}

.item
{
	width: 100%;
}

}

@media screen and ( max-width:600px )
{

ul.list-top li
{
    width: 50%;
}

table.style1 
{
  width: 100%;
}

  table.style1 thead, 
  table.style2 thead
  {
    display: none;
  }
  table.style1 tr,
  table.style2 tr
   {
    border-bottom: 3px solid #FF9966;
    display: block;
  }
  table.style1 td,
  table.style2 td
  {
    border-bottom: 1px solid #FF9966;
    display: block;
    text-align: centert;
  }
  table.style1 td:before,
  table.style2 td:before
   {
    content: attr(aria-label);
    float: left;
  }

ul.content li 
{
    width: 100%;
}

.cut2
{
    display: none;
}
  
}