
<style>
	*{
		margin:0;
		padding:0;
	}

a, p, table, td, th, h6, ul, li, img {
	margin:0;
	padding:0;
}


body {
	margin:0 auto;	
	background-color:#f5f5f5;
 font-family:'Noto Sans JP', sans-serif;
}

h1,h2,h3,h4,h5{
	font-family:'Anton';
	color:#25a444;
	margin:0;
	padding:0;
}

	.wrapper {
	width:80vw;
	margin:0 auto;
		max-width:1024px;
}
	.wrapper2 {
	width:80vw;
	margin:0 auto;
		max-width:1024px;
	position:relative;
}

/*ヘッダー部分*/
header{
		background:white;
		z-index:10;
		height:100px;
		display:flex;
		overflow:hidden;
		justify-content:space-between;
		position:relative;
		transition:all 1s;
	
    box-shadow: 0px 0px 15px -5px #777777;
	}

	header h1 {
	margin-left:2rem;
	line-height:100px;
	
}

	header .logoPic{
	width: 380px;
    height: 100px;
    display: block;
    object-fit: contain;
}
#navbtn {
	transition:all 1s;
	width:45px;
	height:45px;
	background:white;
	margin:auto 0;
	position:absolute;
	top:20px;
	right:20px;
	display:none;
}


#navbtn span {
	width:35px;
	height:2px;
	background: #25a444;
	position:absolute;	
}
#navbtn span:nth-child(1){
	left:5px;
	top:11px;
	transition:all 0.2s;	
}
#navbtn span:nth-child(2) {
	left:5px;
	top:21px;

}

#navbtn span:nth-child(3) {
	left:5px;
	top:31px;
	transition:all 0.2s;
}

.open span:nth-child(1) {
	transform:translateY(10px) rotate(45deg);
}
.open span:nth-child(2) {
	opacity:0;
 	top:22.5px;
}
.open span:nth-child(3) {
	transform:translateY(-10px) rotate(-45deg);
}



	nav{
	width:65vw;

	}
	nav ul{
		display:flex;
		list-style:none;
		justify-content:space-between;
				align-items:center;
		margin-right:1rem;
	}
	nav ul li{
		line-height:100px;
	}
	nav ul li a{
		font-size:0.9rem;
		color:green;
		text-decoration:none;
		
	}

#navfull {
	width:100%;
	height:100%;
	position:fixed;
	left:0;
	top:-100%;
	background-color:rgba(37,164,68, 0.98);
	transition:1s;
	z-index:999;
	display:flex;
	justify-content:center;
	align-items:center;
}

#navfull h1 {
	font-size:2rem;
	padding:1rem 0;
	margin:0;
	color:white;
}

#navfull ul{
	list-style:none;
	height:80%;
	width:80%;
	margin:auto 0;
	display:flex;
	flex-direction:column;	

}
#navfull ul li {
	width:100%;
	border-width:80%;
	padding-bottom:0.5rem;
}
.mainmenu {
	font-size:1.5rem;
}
.submenu {
	font-size:1rem;
	margin-left:1rem;
}

#navfull ul li a {
	text-decoration:none;
	color:white;
}
#navfullbtn {
	transition:all 1s;
	width:45px;
	height:45px;
	margin:auto 0;
	position:absolute;
	top:20px;
	right:20px;
}
#navfullbtn span {
	position:absolute;
	width:35px;
	height:2px;
	background:white;		
}
#navfullbtn span:nth-child(1){
	left:5px;
	top:11px;
	transition:all 0.2s;	
		transform:translateY(10px) rotate(45deg);
}
#navfullbtn span:nth-child(2) {
	left:5px;
	top:21px;
		opacity:0;
 	top:22.5px;

}

#navfullbtn span:nth-child(3) {
	left:5px;
	top:31px;
	transition:all 0.2s;
		transform:translateY(-10px) rotate(-45deg);
}

.closenav {
		overflow:hidden;
	display:none;

}
.opennav {
	overflow:scroll;
	transform:translateY(100%);
	transition:all 1s;
	display:block;
  -ms-overflow-style: none;    
   scrollbar-width: none;       
}
.opennav::-webkit-scrollbar {  
        display:none;  
}
/*ここからトップタイトル*/
#toptitle {
	height:400px;
	background:linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../../images/main1.jpg");
	background-position: 5% 10%;
	background-size:cover;
	background-position:center;

}

.toptitlebig {	
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 400px;
}
#toptitle h1 {
	text-align:center;
	font-size:7rem;
	color:white;
}
#toptitle p {
	text-align:center;
	color:white;
	font-size:1.5rem;
}

/* ここからニュースページコンテンツ*/

.bg {
	background:white;
}
#record {
	padding-bottom:100px;	
	display:flex;
	flex-wrap:wrap;
	justify-content:spacebetween;
}

.titleRecord{
		width:100%;
		font-size:2.5rem;
		font-weight:bold;
		color:#25a444;
		border-bottom:3px solid #25a444;
		display:flex;
		margin-bottom:50px;
	
}
.pickup {
	width:100%;
	text-align:right;	
}

.teamsContents{
		width:90%;
		padding-top:30px;
		margin:0 auto;
}

.pickupRecord h3 {
	font-size:2rem;
	text-align:right;
	padding-bottom:1rem;	
}



input[name="recordtab"] {
  display: none;
}
#winner:checked~#winner-contents, #after16:checked~#after16-contents{
	height:auto;
	opacity:1;
	transition:0.5s;
}
#record input:checked + .tab-winner, #record input:checked + .tab-after16 {
	background:green;
	color:white;
	transition:0.3s;
	border:none;

}

.tab-winner, .tab-after16{
	font-weight:bold;
	width:45%;
	border:solid 2px green;
	background:white;
	display:inline-block;
	height:200px;
	color:green;
	display:flex;
	justify-content:center;
	align-items:center;
	cursor:pointer;
	margin-bottom:3rem;
	font-size:1.5rem;		
}
.tab-after16{
	margin-left:auto;
}
#winner-contents, #after16-contents {
	width:100%;
	
}

.tornament-name {
	text-align:center;
	font-size:2rem;
	color:white;
	background: linear-gradient(green 0%, limegreen 100%);
	margin-bottom:0.5rem;
}
#winner-contents table, #after16-contents table{
	width:100%;
	margin:0 auto;
	padding:0 0 3rem 0;
}
#winner-contents table td, #after16-contents table td {
	text-align:center;
	padding:0.2rem;
}

#winner-contents table td:nth-child(3), #after16-contents table td:nth-child(3) {
	text-align:right;
}
#winner-contents table td:nth-child(4), #after16-contents table td:nth-child(4) {
	text-align:right;
}
#winner-contents table td:nth-child(5), #after16-contents table td:nth-child(5) {
	text-align:right;
}
#winner-contents table td:nth-child(6), #after16-contents table td:nth-child(6) {
	text-align:right;
}
#winner-contents table td:nth-child(7), #after16-contents table td:nth-child(7) {
	text-align:left;
}


.tab_contents {
	width: 100%;
	height: 0;
	overflow: hidden;
	opacity:0;
	transition:0.5s;
}



.arrow_s {
  position: relative;
  display: inline-block;
  padding-left: 12px;
  color: #25a444;
  text-decoration: none;
}
.arrow_s:after{
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #25a444;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -6px;
}








.local-menu {
	width:80%;
	margin:0 auto;
}	
.local-menu ul{
	list-style:none;
	display:flex;
	flex-wrap:wrap;
}
.local-menu li {
	width:50%;
	height:50vh;
	text-align:center;
	margin-bottom:1.5rem;
}
.team-photo, .facility-photo {
	position:relative;
}


.local-menu li h3 {
	font-size:2rem;
}
.local-menu li h4 {
	font-size:1.5rem;
}
.local-menu li p {
	font-size:1rem;
}
.local-menu img {
	position:absolute;
	top:0;
	left:0;
	z-index:2;
	display:block;
	width:90%;
	height:90%;
	object-fit:cover;	
}
.team-back, .facility-back {
	position:absolute;
	bottom:3%;
	right:3%;
	width:90%;
	height:90%;
	background:linear-gradient(green 0%, greenyellow 100%);
}
.local-menu a{
	display:inline-block;
	background-image: linear-gradient(green 0%, greenyellow 100%);
	padding:0.5rem 2.5rem;
	color:white;
	font-size:1.2rem;
	cursor:pointer;
	box-shadow:none;
	border-radius:0.8rem;
	margin-top:2rem;
	text-decoration:none;
}
.menu-detail {
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	width:85%;
	border:solid 3px green;
}
.menu-box {
	display:flex;
	justify-content:center;
}



/* ここからピックアップ*//
#pickup　{
		padding-bottom:200px;
}

.titlePickup{
		font-size:2.5rem;
		font-weight:bold;
		color:#25a444;
		border-bottom:3px solid #25a444;
		display:flex;
		margin-bottom:50px;
}


	.titlePickup_text {
		margin-left:auto;
}

	.pickup-title {
	margin-left:auto;
}

#pickup ul{
		padding-top:2rem;
		padding-bottom:200px;
		display:flex;
		list-style:none;
		margin:0 auto;
		height:250px;	
}


#pickup ul li a {
	color:white;
	height:250px;
	text-align:center;
	text-decoration:none;
	background:linear-gradient(rgba(0,0,0,0),rgba(0,100,0,0.8));
	display:flex;
	align-items:center;
	justify-content:center;
	flex-direction:column;


}
	.pickupList1{
		width:33.3%;
		background-image:url("../../images/apply.jpg");
				background-size:cover;
	  background-position: center center;
	
	}
	.pickupList2{
		width:33.3%;
		background-image:url("../../images/history.jpg");
						background-size:cover;
	  background-position: center center;
	}
	.pickupList3{
		width:33.4%;
		background-image:url("../../images/about.jpg");
				background-size:cover;
	  background-position: center center;
	}
.pickup_subtitle {
	font-size:2rem;
	font-weight:bold;

}

	#footerSub{
		background-image:url("../../images/footersub.jpg");
		background-repeat:no-repeat;
		background-size:cover;
		height:400px;
		display:flex;

	}
	.footerSubAbout, .footerSubContact{
	width:100%;
	margin-top:130px;

	
	}
	.about1{
		color:white;
		font-size:2rem;
		margin-bottom:20px;
		text-align:center;
	}
	.about2{
		color:white;
		font-size:0.8rem;
		text-align:center;
	}
	.about2 a{
		color:white;
	}
	.contact1{
		color:white;
		font-size:2rem;
		margin-bottom:10px;
		text-align:center;
	}
	.contact2{
		color:white;
		font-size:0.8rem;
		text-align:center;
	}
	.contact2 a {
		color:white;
	}
	.contact3{
		color:white;
		font-size:0.8rem;
		text-align:center;
		margin-bottom:10px;
	}


.to-contact {
 text-decoration: none;
  background-image: linear-gradient(green 0%, limegreen 100%);
	padding:0.5rem 0.5rem;
	margin-top:1.2rem;
	color:white;
	text-decoration:none;
	font-size:1.2rem;
}
.to-contact-button {

	text-align:center;
	padding-top:1rem;
}


.footer-contact {
	width:80%;
	margin:0 auto;
	display:flex

}
	footer{
		background:#25a444;
		width:100%;
		color:white;
	}

	footer h6{
		text-align:center;

		padding:2rem 0;
		font-size:0.8rem;
	}

.footer-table {
	padding-top:15px;
	width:65%;
	margin:0 auto;
}

.footer-table table {
	width:100%;
}


	.footer-table a {
	color:white;
	line-height:1rem;
	text-decoration:none;
}

.footer-table tr{
	font-size:0.8rem;
	padding-top:10px;
	vertical-align:top;
}

.footer-table td{
	padding:0.5rem;
}


.footer-h {
	font-weight:bold;
	font-size:0.8rem;
	
}

.section-title {
	font-size:2.5rem;
	font-weight:bold

}



.arrow_s {
  position: relative;
  display: inline-block;
  padding-left: 12px;
  color: #25a444;
  text-decoration: none;
}
.arrow_s:after{
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #25a444;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -6px;
}

.arrow_s2 {
  position: relative;
  display: inline-block;
  padding-left: 12px;
  color: white;
  text-decoration: none;
}
.arrow_s2:before{
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent white;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -6px;
}


/*ここからレスポンシブ*/

@media (max-width:1024px){

	.fixed {
	position:fixed;
	width:100%;
	}
#winner-contents, #after16-contents{
 -ms-overflow-style: none;    /* IE, Edge 対応 */
        scrollbar-width: none;       /* Firefox 対応 */
	overflow:hidden;

}

#winner-contents table td, #after16-contents table td {
	font-size:12px;
	padding:0;

} 	
#winner-contents h4 ,#after16-contents h4 {
	font-size:1.2rem;
}
.tab-winner, .tab-after16 {
	font-size:1.2rem;
	height:100px;
	
}

/*ローカルのコンテンツ*/


	.local-menu li {
	max-width:450px;
	max-height:380px;
	min-width:250px;
	min-height:200px;
}
	.local-menu li h3 {
	line-height:1.8rem;
	font-size:1.8rem;
}
	.local-menu li h4 {
	font-size:1rem;
}
	.local-menu li p {
	font-size:12px;
}
	.local-menu li a {
	font-size:16px;
	padding:0.5rem 1rem;
	margin-top:1rem;
}

		
/*共通項目*/
	nav ul {
	display:none;
	}
	#navbtn {
	display:block;
	}
	#tabs {
		width:100%;
	}	
	.tab_item {
	width:50%;
	}
	.contact1, .about1 {
	font-size:1.2rem;
	font-weight:bold;

	} 
	.footer-table {
		width:95%;
	}


}	
@media (max-width:600px){



/*共通トップのコンテンツ*/

	.bg {
	margin-bottom:30px;
}
	.titleGallery, .titleRecord {
	margin:30px 0;
	font-size:1rem;
	}
	#local-top {
	padding-bottom:30px;

}

	#toptitle h1{
	font-size:2.5rem;
	}
	#toptitle p {
	font-size:1.5rem;
}
/*メインコンテンツ*/
.list-olympic, .list-world, .list-world-other, .list-japan, .list-citizen, 
.list-japan-students, .list-highschool, .list-after16-internationl, .list-after16-citizen, 
.list-after16-japan, .list-after16-japan-students, .list-after-16-select-highschool,
.list-after16-highschool, .list-after16-greco-highschool, .list-after16-juniorschool, 
.list-after16-kids, .list-after16-queens, .list-after16-other {
	overflow-x:scroll;
 white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

#winner-contents table , #after16-contents table {
	min-width:600px;

} 	

.tab-winner, .tab-after16 {
	font-size:16px;
}


/*ローカルのコンテンツ*/
.local-menu ul {
	flex-direction:column;
	align-items:center;
}

.local-menu ul li {
	width:100%;
}

.local-menu ul li a {
	padding:0.2rem 0.5rem;
	border-radius:0.5rem;
}




	.titleLocal-top {
	font-size:1rem;

	}
	#local ul {
	width:100%;
	}
	#local ul li {
	width:100%;
	height:120px;
	}

	.local-button {
	font-size:1.2rem;
	font-weight:bold;
	}
	#local ul li a {
		font-size:12px;
		height:120%;
	}

	/*共通項目*/
	.wrapper {
	width:80%;	
	max-width:80%;
	}
		header {
	align-items:center;
		height:75px;
	}
	header h1 {	
	margin-left:1rem;	
	width:65%;
	height:100%;
	}
	nav {
	width:35%;
	}
	header .logoPic {
	width:100%;
	height:100%;
	object-fit:contain;
	display:block;
	}
	#navfull h1{
	font-size:22px;
	line-height:23px;
	}
	.mainmenu {
	font-size:1rem;
	}
	#pickup ul {
	flex-direction:column;
	height:auto;
	padding-bottom:80px;
	
	}
	#pickup ul li {
	width:100%;
	}
	#pickup ul li a {
	font-size:1rem;
	height:150px;
	}	
	.titlePickup {
	font-size:1rem;
	margin-bottom:0;
 }

 .pickup_subtitle {
	font-size:1.5rem;
	
	}
	.footer-contact {
		flex-direction:column;
		
	}
	.footerSubAbout, .footerSubContact {
		word-break:break-all;
		margin-top:0;
		height:50%;
		display:flex;
		flex-direction:column;
		justify-content:center;		
	}
	.footerSubContact {
		padding-bottom:20px;
	}
	.footer-table {
	display:none;
	}
}



</style>
