/* style.css */

body {
    font-family: Arial, sans-serif;
    font-size: 11pt;
    margin: 0;
    padding: 0;
}

h2 {
    text-align: center;
    font-size: 23px;	/*文字サイズ*/
    margin:10px auto 10px;
}
p{
    margin:10px auto 10px;
}

a:link    {
  font-size: 11pt;
  text-decoration:none;
  color: #ff6600 ;
}
a:visited {
  font-size: 11pt;
  text-decoration:none;
  color:#009900 ;
}
a:active  {
  font-size: 11pt;
  text-decoration:none;
  color:#ff0000 ;
}
a:hover   {
  font-size: 11pt;
  text-decoration:underline;
  color:#ff0000 ;
}

table {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    border-collapse: collapse;
}

td {
    padding: 10px;
}

form {
    margin: 0;
    font-size: 12pt;
}

input[type="submit"],
input[type="reset"] {
    background-color: #4CAF50;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
input, select {
font-size: 100%;
}

/*footerブロック
---------------------------------------------*/
footer {
	clear: both;
	text-align: center;	/*センタリング*/
	padding: 10px 0 20px 0;	/*上下、左右ボックス内の余白*/
}
footer a {text-decoration: none;color: #ff6600;}

/* Responsive Design Styles
---------------------------------------------*/
@media only screen and (max-width: 600px) {

h2 {
    text-align: center;
    font-size: 20px;	/*文字サイズ*/
    font-weight: bold;
}

p{
    font-size: 10.5pt;
    margin:10px auto 10px;
}

table.td {
    display: block;
    width: 100%;
    }

}

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

h2 {
    font-size:18px;	/*文字サイズ*/
    font-weight: bold;
}

/*段落タグ*/
.contents p {
	p{font-size:90%;}
	padding: 5px 0px 5px;		/*上、左右、下への余白*/
}
/*表設定*/
table {
    display: block;
    width: 100%;
    }

 p{font-size:90%;}

}


