@charset "UTF-8";
/* CSS Document */

/*------------------------------------------
	content
-------------------------------------------*/
main a { color: #2464a7;}
main a:hover { text-decoration: underline;}

.pan {
	font-size: 1.3rem;
	padding: 8px 0;
	background: #f2f6f9;
}

.pan ul{
	width: 1000px;
	margin: 0 auto;
}

.pan li {
	display: inline;	
	margin: 0 0 0 10px;
}


#contents {
	width: 1000px;
	margin: 50px auto;
	animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;	
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

#contents section {
	margin: 0 auto 40px;
}

.h2Box {
	text-align: center;
	margin-bottom: 40px;
}

.h2Box h2 {
	padding: 10px 0 10px 45px;
	display: inline;
	font-size: 3.2rem;
	font-weight: normal;
}

.h2Box.num01 h2{
	background: url(../images/icon_tit01.gif) no-repeat left center;
	background-size: 40px auto;
}
.h2Box.num02 h2{
	background: url(../images/icon_tit02.gif) no-repeat left center;
	background-size: 40px auto; 
}
.h2Box.num03 h2{
	background: url(../images/icon_tit03.gif) no-repeat left center;
	background-size: 38px auto; 
}

.h2Box.num04 h2{
	background: url(../images/icon_tit04.gif) no-repeat left center;
	background-size: 40px auto; 
}



table {
	border-collapse:collapse;
	width: 800px;
	margin: 0 auto 20px;
	border: 1px solid #CCC;
}
table  tr td:first-child {
	border-left: none;
}

table  tr:first-child td,
table th:first-child{
	border: none;
}
table th{
	font-weight: normal;
	background: #333;
	padding: 8px;
	color: #FFF;
	border-left: 1px solid #CCC;
}

table th:nth-child(3){
	width:27%;
}

table td {
	padding: 8px;
	border-left: 1px solid #CCC;
	border-top: 1px solid #CCC;
}

table td a {
	display: block;
	width:30px;
	font-size: 1.3rem;
	border-radius: 4px;
	padding: 4px 10px;
	text-align: center;
	color: #FFF;
	background: #2464a7;
	box-shadow: 0 2px 0 0 #0d2c4c;
}
table td a:hover {
	background: #0d2c4c;
	background-size: 6px;
	box-shadow: 0 2px 0 0 #05111e;
	text-decoration: none;	
}

h3 {
	font-size: 1.8rem;
	margin-bottom: 20px;
}

/*===========================
	tournament
=============================*/
.detail01 {
	width: 800px;
	margin: 0 auto;
}

.map {
	width: 800px;
	margin: 20px auto;
}
.map p {
	margin-bottom: 20px;
}

.map iframe {
	width: 800px;
	height: 400px;
}

/*===========================
	register
=============================*/
.detail02 {
	width: 560px;
	margin:0 auto;
	text-align: center;
}
.detail02 h3 {
	margin-bottom: 30px;	
}
.detail02 h4 {
	font-size: 1.3rem;
	text-align: left;
	margin-bottom: 15px;
}

.detail02 p {
	text-align: left;	
}

.linkBox {
	width: 510px;
	margin: 30px auto;	
	overflow: hidden;
}
.linkBox li:first-child {
	float: left;
	width: 260px;
}

.linkBox li {
	float: right;
	width: 230px;
}
.linkBox p {
	padding-bottom: 20px;
	text-align: center;
}

.linkBox a {
	width: 200px;	
}

/*===========================
	practice
=============================*/
.detail03 {
	width: 800px;
	margin: 0 auto;
}
.detail03 table {
	width: 800px;	
}
.detail03 table td:last-child {
	width: 120px;
}

.detail03 table td {
	text-align: center;
}
.detail03 table td a {
}

.detail03 .link {
	text-decoration: underline;	
}
.detail03 .link:hover {
	text-decoration: none;	
}

.delete {
	text-decoration: line-through;
}


/*===========================
	faq
=============================*/
.detail04 {
	width: 800px;
	margin: 0 auto;
	padding: 30px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: 3px solid #DEDEDE;
}

.detail04 dl {
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #DEDEDE;
}
.detail04 dl:last-child{
	margin: 0;
	border-bottom: none;	
}

.detail04 dt {
	overflow: hidden;
	width: 100%;
	font-size: 1.8rem;
	font-weight: normal;
	color: #2464a7;
	margin: 10px 0 15px 0;
}
.detail04 dt p {
	float: left;
	padding: 8px 0 0 10px;
}
.detail04 dt span {
	display: block;
	float: left;
	font-size: 1.6rem;
	line-height:1.6rem;
	background: #2464a7;
	color: #FFF;
	border-radius:20px;
	width: 16px;
	height: 16px;
	text-align: center;
	padding: 10px;
}
.detail04 dd  {
	overflow: hidden;
	width: 100%;
}

.detail04 dd p{
	padding: 0 0 0 10px;
	float: left;
	width: 670px;
}

.detail04 dd span {
	display: block;
	float: left;
	background: #ff9d1e;
	font-size: 1.6rem;
	line-height:1.6rem;
	color: #FFF;
	border-radius: 20px;
	width: 16px;
	height: 16px;
	text-align: center;
	padding: 10px;
}






@media screen and ( max-width: 768px ) {
	
/*------------------------------------------
	content
-------------------------------------------*/
.pan { display: none;}

.gnav {
	border-bottom: 1px solid #EDEDED;
}



#contents {
	width: 94%;
	margin: 24px auto;	
	animation: none;
    -webkit-animation: none;
}

#contents section {
	margin: 0 auto 20px;
}

.h2Box {
	margin-bottom: 16px;
}

.h2Box h2 {
	padding: 10px 0 10px 32px;
	font-size: 2.0rem;
}

.h2Box.num01 h2{
	background: url(../images/icon_tit01.gif) no-repeat left center;
	background-size: 28px auto;
}
.h2Box.num02 h2{
	background: url(../images/icon_tit02.gif) no-repeat left center;
	background-size: 26px auto; 
}
.h2Box.num03 h2{
	background: url(../images/icon_tit03.gif) no-repeat left center;
	background-size: 26px auto; 
}

.h2Box.num04 h2{
	background: url(../images/icon_tit04.gif) no-repeat left center;
	background-size: 28px auto; 
}


table {
	width: 100%;
	margin: 0 auto;
}

.scroll {
	margin-bottom: 10px;
	width: 100%;
	overflow:auto;
	white-space: nowrap;
}
.scroll::-webkit-scrollbar{
	height: 5px;
}
.scroll::-webkit-scrollbar-track{
	background: #F1F1F1;
}
.scroll::-webkit-scrollbar-thumb {
	background: #BCBCBC;
}

table th{
	padding: 5px;
}

table td {
	padding: 5px;
}

table td a {
	font-size: 1.1rem;
	padding: 4px 6px;	
}
table td a:hover {
	background: #0d2c4c;
	background-size: 6px;
	box-shadow: 0 2px 0 0 #05111e;
	text-decoration: none;	
}

h3 {
	font-size: 1.5rem;
	margin-bottom: 10px;

}

/*===========================
	tournament
=============================*/
.detail01 {
	width: auto;
}


.map {
	width: auto;
	margin: 10px auto;
	text-align: center;
}
.map p {
	margin-bottom: 10px;
}

.map iframe {
	width: 100%;
	height: 250px;
}


/*===========================
	register
=============================*/
.detail02 {
	width: auto;

}
.detail02 h3 {
	margin-bottom: 15px;	
}
.detail02 br {
	display: none;	
}

.detail02 h4 {
	font-size: 1.3rem;
	margin-bottom: 10px;
	text-align: center;
}


.linkBox {
	width: auto;
	margin: 15px auto;	
}
.linkBox li:first-child {
	float: none;
	margin: 0 auto 15px;
	width: auto;
}

.linkBox li {
	float: none;
	width: auto;
}
.linkBox p {
	padding-bottom: 10px;
}

.linkBox a {
	width: 80%;
	max-width: 300px;
	margin: 0 auto;
}

/*===========================
	practice
=============================*/
.detail03 {
	width: auto;
}
.detail03 table {
	width: 100%;	
}
.detail03 table td:last-child {
	width: auto;
}


/*===========================
	faq
=============================*/
.detail04 {
	width: 100%;
	padding: 0;
	border:none;
}

.detail04 dl {
	margin-bottom: 16px;	
}
.detail04 dl:last-child{
	margin: 0;	
}

.detail04 dt {
	width: 100%;
	font-size: 1.4rem;
	margin: 0 0 10px 0;
}
.detail04 dt p {
	padding: 0 0 0 10px;
	width: calc(100% - 40px);
}
.detail04 dt span,
.detail04 dd span  {
	font-size: 1.3rem;
	line-height:1.2rem;
	border-radius:20px;
	width: 10px;
	height: 10px;
	padding: 8px;
}

.detail04 dd p{
	padding: 0 0 0 10px;
	width: calc(100% - 40px);
}


}
