@charset "utf-8";

/*=====================================
common
=====================================*/

body {
	line-height:1.5em;
	text-align:center;
	min-width:1200px;
	color:#333;
	font-size:16px;
}

/* a */
a {
	color:#00b7ee;
	text-decoration:none;
}
a:hover {
	opacity:0.7;
	transition:all 0.5s;
}

.blue-big {
	font-size:20px;
	color:#00b7ee;
}
.blue-txt {
	color:#00b7ee;
}

/* 中央・左・右揃え */
.center {
	text-align:center;
}
.left {
	text-align:left;
}
.right {
	text-align:right;
}

/* margin */
.mb10 {
	margin-bottom:10px;
}
.mb20 {
	margin-bottom:20px;
}
.mb30 {
	margin-bottom:30px;
}
.mb40 {
	margin-bottom:40px;
}
.mb50 {
	margin-bottom:50px;
}
.mb60 {
	margin-bottom:60px;
}
.mb70 {
	margin-bottom:70px;
}
.mb80 {
	margin-bottom:80px;
}
.mb90 {
	margin-bottom:90px;
}
.mb100 {
	margin-bottom:100px;
}

.mr30 {
	margin-right:30px;
}

/* table */
.table {
	text-align:left;
	border:1px solid #00b7ee;
	margin:0 auto 20px;
}
.table th {
	background:#00b7ee;
	color:#FFF;
	padding:20px;
	border-bottom:1px solid #FFF;
	vertical-align:top;
}
.table td {
	padding:20px;
	border-bottom:1px solid #00b7ee;
}
.table .gr {
	background:#f1f1f1;
}


/* 数字リスト */
.num-list {
	counter-reset:number; /*数字をリセット*/
	list-style-type: none!important; /*数字を一旦消す*/
	padding:0.5em;
	text-align:left;
}
.num-list li{
	position: relative;
	padding-left: 30px;
	line-height: 1.5em;
	padding: 0.5em 0.5em 0.5em 30px;
}
.num-list li:before{
	/* 以下数字をつける */
	position: absolute;
	counter-increment: number;
	content: counter(number);
	/*以下数字のデザイン変える*/
	display:inline-block;
	background: #00b7ee;
	color: white;
	font-family: 'Avenir','Arial Black','Arial',sans-serif;
	font-weight:bold;
	font-size: 15px;
	border-radius: 50%;
	left: 0;
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align:center;
}

/* チェックリスト */
.check-list {
	text-align:left;
}
.check-list li {
	background:url(/img/icon_check.png) no-repeat left top;
	padding-left:30px;
}

/* ●リスト */
.circle-list {
	counter-reset:list;
	padding:0;
	text-align:left;
}
.circle-list li{
	position:relative;
	padding: 0 0 0 20px;
	margin: 7px 0 7px 0px;
	line-height: 30px;
}
.circle-list li:before{
	counter-increment: list;
	content: "";
	display: block;
	position: absolute;
	left: 0px;
	height: 10px;
	width: 10px;
	border-radius: 50%;
	background: #00b7ee;
	top: 15px;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

/* faq-block */
.faq-block {
	text-align:left;
}
.faq-block dl {
	margin-bottom:30px;
	padding-bottom:30px;
	border-bottom:1px solid #CCC;
}
.faq-block dt {
	background:url(../img/faq_q_blue.png) no-repeat left 0;
	min-height:42px;
	line-height:42px;
	vertical-align:middle;
	padding-left:60px;
}
.faq-block dd {
	background:url(../img/faq_a.png) no-repeat left 0;
	min-height:42px;
	line-height:42px;
	vertical-align:middle;
	padding-left:60px;
	margin-left:50px;
}


/*=====================================

#header

=====================================*/

#header #mv {
	line-height:0;
	padding:0;
    margin-bottom:30px;
}
#header #mv img {
	width:100%;
	height:auto;
}


/*=====================================

#gnav

=====================================*/

#gnav {
	margin-bottom:50px;
}
#gnav li {
	display:inline-block;
	vertical-align:middle;
    font-size: 20px;
    line-height: 1.8em;
	margin:0 10px;
    border-right: 1px solid #ccc;
    padding: 0 25px 0 0;
}
#gnav li:last-child {
    border: none;
}


/*=====================================

#footer

=====================================*/

#footer {
	width:100%;
    padding: 60px 0 20px;
    color:#fff;
	background:#00b7ee;
}
#footer a {
    color:#fff;
}
#footer .logo {
    font-size: 30px;
    margin-bottom: 30px;
}
#footer .footer-link li {
    display:inline-block;
	vertical-align:middle;
    font-size: 20px;
    line-height: 1.8em;
	margin:0 10px 20px;
    border-right: 1px solid #ccc;
    padding: 0 25px 0 0;
}
#footer .sns li {
    display: inline-block;
    margin: 0 5px 30px;
}
#footer #copyright {
	line-height:30px;
	border-top:1px solid #FFF;
}


/*=====================================

#tournament-page

=====================================*/

#tournament-page {
	width:1000px;
	margin:0 auto 100px;
}

/* end　終了しました */
#tournament-page .end {
	margin-bottom:50px;
	font-size:22px;
	padding:10px;
	position: relative;
	background-color: #f6f6f6;
}
#tournament-page .end a {
	display:block;
}
#tournament-page .end::after {
	position: absolute;
	top: 0;
	right: 0;
	content: '';
	width: 0;
	border-width: 0 16px 16px 0;
	border-style: solid;
	border-color: #fff #fff #ddd #ddd;
	box-shadow: -1px 1px 2px rgba(0, 0, 0, .1);
}

/* result-ttl- 結果発表 */
#tournament-page .result-ttl-gold,
#tournament-page .result-ttl-silver,
#tournament-page .result-ttl-pink {
	font-size:30px;
	font-weight:normal;
	display:inline-block;
	position: relative;
	margin-bottom:40px;
}
#tournament-page .result-ttl-gold {
	color:#d2aa00;
}
#tournament-page .result-ttl-silver {
	color:#b3b3b3;
}
#tournament-page .result-ttl-pink {
	color:#00b7ee;
}

/* band-block */
#tournament-page .band-block {
	margin-bottom:40px;
}
#tournament-page .band-block .name {
	font-size:20px;
	margin-bottom:10px;
	position: relative;
	display: inline-block;
	padding: 0 55px;
}
#tournament-page .band-block .name:before,
#tournament-page .band-block .name:after{
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 45px;
	height: 1px;
	background-color: #00b7ee;
}
#tournament-page .band-block .name:before {left:0;}
#tournament-page .band-block .name:after {right: 0;}

#tournament-page .band-block .school {
	background:url(/img/icon_school.png) no-repeat left top;
	padding-left:30px;
	margin-left:10px;
	font-size:16px;
}

/* map */
#map {
	width:100%;
	height:500px;
}

/* ttl */
#tournament-page .ttl {
	font-size:30px;
	margin-bottom: 70px;
	color:#00b7ee;
}

/* sub-ttl */
#tournament-page .sub-ttl {
	background:#a7e4f6;
	color:#00b7ee;
	font-size:20px;
	padding:10px 0;
	margin-bottom:20px;
}

/* detail-block */
#tournament-page .detail-block {
	width:900px;
	margin:0 auto;
}

/* flow */
#tournament-page .flow {
	display:inline-block;
	vertical-align:top;
	border:3px solid #00b7ee;
	padding:20px;
	width:180px;
	height:120px;
	margin:0 20px 30px;
}
#tournament-page .flow-l {
	border:3px solid #00b7ee;
	padding:20px;
	width:723px;
	margin:0 auto 30px;
}
#tournament-page .flow-ttl {
	color:#00b7ee;
	font-size:20px;
	border-bottom:2px solid #00b7ee;
	margin-bottom:10px;
}
#tournament-page .bg_doc {
	background:url(../img/bg_doc_blue.png) no-repeat 620px 10px;
}
#tournament-page .bg-note {
	background:url(../img/bg_note_blue.png) no-repeat 120px 55px;
}
#tournament-page .bg-camera {
	background:url(../img/bg_camera_blue.png) no-repeat 110px 60px;
}
#tournament-page .bg-card {
	background:url(../img/bg_card_blue.png) no-repeat 110px 60px;
}
#tournament-page .bg_post {
	background:url(../img/bg_post_blue.png) no-repeat 620px 60px;
}


#tournament-page .sponsor-block {
	margin:0 auto 30px;
}
#tournament-page .sponsor-block li {
	display:inline-block;
	margin:0 10px 10px;
    vertical-align: middle;
}


.attention {
    width: 854px;
    margin: 0 auto 30px;
    color:red;
    border: double 3px red;
    padding: 20px;
    font-size: 18px;
}
