* {
	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 {
	line-height: 2rem;
	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;
}

/*トップのコンテンツ全体*/
#topContents {
	background: white;
	margin-bottom: 180px;
	padding-bottom: 120px;
	position: relative;
}

.topcopy-position {
	position: absolute;
	bottom: 25%;
	left: 0;
	z-index: 3;
}

.topcopy, .bg-wrap {
	position: relative;
	display: inline-block;
	margin-top: 5px;
}

.topcopy.is-animated .bg-wrap::before {
	animation: bg 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	background: linear-gradient(90deg, rgba(35, 161, 5, 1) 0%, rgba(3, 174, 42, 1) 35%, rgba(0, 255, 98, 1) 100%);
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform-origin: left center;
}

.topcopy, .bg-wrap, .inn {
	opacity: 0;
	color: #fff;
	display: inline-block;
	font-size: 36px;
	font-weight: bold;
	padding: 5px 15px;
	position: relative;
	z-index: 1;
}

.displayon {
	transition: all 0.3s;
	opacity: 1;
}

@keyframes bg {
	0% {
		opacity: 0;
		transform: scaleX(0) translateX(-5%);
	}

	30% {
		transform: scaleX(1) translateX(0);
	}

	100% {
		transform: scaleX(1) translateX(0);
	}

	30%, 100% {
		opacity: 1;
	}
}

.banner {
	position: absolute;
	top: 75%;
	overflow: hidden;
	z-index: 2;
	width: 100%;
}

/*NEXT MATCH円内部分*/
.nextMatchAll {
	text-align: left;
	display: flex;
	align-items: center;
	color: green;
	justify-content: space-between;
	flex-wrap: wrap;
}

.nextMatchChild1 {
	top: 0px;
	z-index: 2;
	background: white;
	text-align: center;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	border: 5px solid green;
	margin-left: -30px;
}

.nextMatchChild1_text {
	padding-top: 30px;
}

.nextMatchChild1_text a {
	color: white;
	background: green;
	border: 1px solid green;
	text-decoration: none;
}

.nextMatchChild2 {
	top: 100px;
	left: 100px;
	z-index: 1;
	width: 250px;
	height: 250px;
	border-radius: 50%;
	background: green;
}

.bunner-to-match {
	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;
}

.bunner-circle-button {
	padding-top: 1rem;
}

.greenArrowPic {
	border-right: solid 5px green;
	border-bottom: solid 4px green;
	transform: skew(45deg);
	width: 90%;
	height: 20px
}

/*scrollのアニメーション*/
.scrolldown1 {
	height: 100%;
	/*全体の高さ*/
	position: relative;
}

.scrolldown1 span {
	/*描画位置*/
	position: absolute;
	left: -1.5rem;
	top: -50px;
	/*テキストの形状*/
	color: gainsboro;
	font-size: 1rem;
	letter-spacing: 0.1em;
	transform: rotate(90deg);
}

/* 線の描写 */
.scrolldown1::after {
	content: "";
	/*描画位置*/
	position: absolute;
	top: 0;
	/*線の形状*/
	width: 2px;
	height: 100px;
	background: gainsboro;
	z-index: 3;
	/*線の動き1.4秒かけて動く。永遠にループ*/
	animation: pathmove 1.4s ease-in-out infinite;
	opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
	0% {
		height: 0;
		top: 0px;
		opacity: 0;
	}

	30% {
		height: 150px;
		opacity: 1;
	}

	100% {
		height: 0;
		top: 150px;
		opacity: 0;
	}
}

.topics {
	height: calc(25vw - 100px);
	width: calc(50vw - 50px);
	max-height: 280px;
	min-height: 180px;
	min-width: 380px;
}

.topics ul {
	height: 100%;
	display: flex;
	list-style: none;
	background: linear-gradient(90deg, rgba(35, 161, 5, 1) 0%, rgba(3, 174, 42, 1) 35%, rgba(0, 255, 98, 1) 100%);
	width: 100%;
	justify-content: space-around;
	align-items: center;

}

.topics ul li {
	position: relative;
	width: 38%;
	height: 80%;
	transition: 0.3s;
}

.topics ul li img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	display: inline-block;
}

.topics .topics-title {
	width: 15%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.topics ul li:nth-child(3) {
	margin-right: 20px;
}

.topicsAll {
	height: 200px;
	background: green;
	display: flex;
	bottom: 20px;
	right: 0px;
}


.topics_text {
	color: white;
	transform: rotateZ(-90deg);
	font-size: 30px;
}

.topicsChild1 {
	margin-left: auto;
}

.topicsChild2 {
	margin-left: 10px;
}
.topics_head a{
	width: 100%;
	height: 100%;
}
figure.hover-parent {
	width: 100%;
	max-width: 400px;
	height: 100%;
	position: relative;
	margin-bottom: 30px;
	overflow: hidden;
}
figcaption.hover-mask {
	padding: 4px;
	width: 100%;
	max-width: 400px;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,0,0,0.5);
	opacity: 0;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition:all 0.3s ease;
}
figure.hover-parent:hover .hover-mask {
	opacity: 1;
}

/* #topic1:hover{
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
}

#topic1:hover p{
	color: white;
	word-break: break-all;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
} */

.topics-smart {
	width: 100%;
	padding: 5px;
	display: none;
}

.topics-smart ul {
	font-weight: bold;
	list-style: none;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.topics-smart ul li {
	width: 50%;
}

.topics-smart ul li:nth-child(2), .topics-smart ul li:nth-child(3), .topics-smart ul li:nth-child(4) {
	font-size: 12px;
}


.close {
	opacity: 0;
	transition: 0.3s;
}

.showtopic {
	opacity: 1;
	transition: 0.3s;
}


/*ここからニュースセクション*/
#news {
	margin-bottom: 150px;
	overflow: hidden;
}

.news_time{
	padding-left: 4px;
}
.news_text{
	margin-top: 8px;
	padding-left: 4px;
	padding-right: 4px;
	text-align: justify;
	word-break: break-word;
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.titleNews {
	color: #25a444;
	font-size: 2.5rem;
	font-weight: bold;
	border-bottom: 3px solid #25a444;
	display: flex;
}

.titleNews_smalltext {
	font-size: 1rem;
	margin-left: auto;
	margin-top: auto;
	margin-bottom: 1rem;
}

.titleNews_smalltext a {
	text-decoration: none;
	color: #25a444;
}

.newsContents {
	position: relative;
	display: flex;
	justify-content: space-between;
	margin: 30px auto 0 auto;
	height: calc(50vw - 100px);
	min-height: 250px;
	max-height: 350px;
	overflow: hidden;
	width: 100%;
	color: black;
	text-decoration: none;

}


/*ニュースの矢印*/
.arrow {
	position: relative;
	display: inline-block;
	padding: 0 0 0 16px;
	color: #000;
	vertical-align: middle;
	text-decoration: none;
	font-size: 15px;
	cursor: pointer;
}

.arrow::before,
.arrow::after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}

.rightarrowPic, .leftarrowPic {
	box-sizing: border-box;
	width: 45px;
	height: 45px;
	border: 1px solid green;
	background: green;
	opacity: 0.7;
}

.leftarrowPic::after {
	left: 17px;
	width: 15px;
	height: 15px;
	top: 0;
	border-top: 3px solid white;
	border-right: 3px solid white;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);

}

.rightarrowPic::after {
	left: 8px;
	width: 15px;
	height: 15px;
	border-top: 3px solid white;
	border-right: 3px solid white;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.rightarrow {
	position: absolute;
	right: 0;
	top: calc(50% + 30px);
}

.leftarrow {
	position: absolute;
	left: 0;
	top: calc(50% + 30px);
}

.newsContents a {
	display: inline-block;
}

/*ニュースの記事4件*/

.newsContents ul {
	height: 100%;
	position: absolute;
	list-style: none;
	display: flex;
	justify-content: space-between;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}
.newsContents ul a{
	text-decoration: none;
	color: #000;
}

.newsContents ul li {
	margin-right: 10px;
	box-shadow: 0px 0px 10px -5px #777777;
	border-radius: 10px;
	cursor: pointer;

}

.newsContents img {
	border-radius: 10px 10px 0 0;
	width: 100%;
	object-fit: cover;
	display: block;
	height: 50%;
	cursor: default;
}

.article {
	border-radius: 0 0 10px 10px;
	height: 50%;
	display: flex;
	flex-direction: column;
	justify-content: space-betweem;
	background: white;
}

.article p {
	display: inline-block;
	padding: 5px;
}



.newsDate {
	color: gray;
	font-size: 0.8rem;
}

.newsArticle {
	height: 60%;
	overflow: hidden;
}

.newsArticle a {
	text-decoration: none;
	color: black;
	font-size: 14px;
	overflow: hidden;
}

.newsArticle a:hover {
	transition: all 0.3s;
	color: gray;
}

.newsTag {
	border: 2px solid #25a444;
	border-radius: 1rem;
	display: inline-block;
	padding: 0 1rem;
	color: #25a444;
	text-decoration: none color:green;
	font-size: 0.8rem;
}

.newsix {
	text-align: right;
	font-size: 14px;
	color: #25a444;
}

.tag-match {
	background: #ff0707;
	display: inline-block;
	padding: 0 1rem;
	color: white;
	text-decoration: none;
}

.tag-team {
	background: #21bbd7;
	display: inline-block;
	padding: 0 1rem;
	color: white;
	text-decoration: none;
}

.line2 {
	border-right: 50px solid transparent;
	border-bottom: solid 2.5rem #25a444;
	width: 45vw;
	height: 0;
}

/*ここからMatchのセクション*/
#match {
	padding-top: 50px;
	background: white;
	padding-bottom: 150px;
}


.titleMatch {
	display: flex;
	border-bottom: 3px solid #25a444;
	font-size: 2.5rem;
	font-weight: bold;


}

.titleMatch_smalltext {
	font-size: 1rem;
	margin-right: auto;
	margin-top: auto;
	margin-bottom: 1rem;
}

.titleMatch_smalltext a {
	text-decoration: none;
	color: #25a444;
}

.titleMatch_bigtext {
	margin-left: auto;
}

.matchCategory {
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
	list-style: none;
	padding-top: 30px;
}

.matchCategory li {
	width: 30%;
	padding: 0 15px;
	color: white;
	text-align: center;
}

.matchCategory li a {
	display: inline-block;
	color: white;
	margin: 0.2rem 0.2rem;
	text-decoration: none;
	font-size: 1rem;
}

.matchCategory div {
	padding-bottom: 1rem;
}

.matchCategory li img {
	width: 100%;
	object-fit: cover;
}

.kidsPic {
	background: linear-gradient(135deg, rgba(37, 164, 68, 0.5), rgba(19, 98, 4, 0.5)),
		url(../../images/kids.jpg);
}

.studentsPic {
	background: linear-gradient(135deg, rgba(37, 164, 68, 0.5), rgba(19, 98, 4, 0.5)),
		url(../../images/students.jpg);
}

.seniorPic {
	background: linear-gradient(135deg, rgba(37, 164, 68, 0.5), rgba(19, 98, 4, 0.5)),
		url(../../images/senior.jpg);
}

.kidsPic, .studentsPic, .seniorPic {
	background-size: cover;
	background-position: center;
}

.categoryTitle {
	font-size: 1.5rem;
	font-weight: bold;
	padding: 1rem 0;
}

.categoryEx {
	font-size: 1rem;
	padding-bottom: 1.5rem;
}

.button-schedule {
	background: linear-gradient(rgba(255, 200, 110, 1), rgba(250, 0, 0, 1));
	padding: 0.2rem 0.5rem;
}

.button-result {
	background: linear-gradient(rgba(180, 255, 10, 1), rgba(20, 200, 30, 1));
	padding: 0.2rem 1.5rem;
}

/*スケジュールと試合結果の表*/

#tabs {
	display: flex;
	flex-wrap: wrap;
	width: 80%;
	margin: 0 auto;

}

input[name="tab_item"] {
	display: none;
}

.tab_item {
	text-align: center;
	font-size: 1.2rem;
	padding: 0.2rem 0;
	color: white;
	position: relative;
	width: 50%;
	height: 2rem;
	line-height: 2rem;
	background-color: green;
	transition: 0.5s;
	opacity: 0.5;
	cursor: pointer;
}

.tab_item::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-color: transparent #fff transparent transparent;
	border-width: 0px 2rem 2.4rem 2rem;
}

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

.tab_content table {
	width: 100%;
}

#tabs #schedule:checked {
	opacity: 1;
	transition: 0.5s;
}

#tabs #schedule:checked~#schedule_content, #tabs #result:checked~#result_content {
	height: auto;
	overflow: auto;
	opacity: 1;
	transition: 0.5s;
}

#tabs input:checked+.tab_item {
	opacity: 1;
}

.tab_content table {
	border-collapse: collapse;
	border: gray;
}

.tab_content table th {
	padding: 10px;
	background-color: #25a444;
	border: solid 1px white;
	color: white;
}

.tab_content table td {
	padding: 10px;
	border: solid 1px gray;
}

.tab_content table td:nth-child(1) {
	width: 31%;
}

.tab_content table td a {
	color: black;
}


.tag-circle {
	border: 2px solid #25a444;
	border-radius: 1rem;
	display: inline-block;
	padding: 0 1rem;
	color: #25a444;
	text-decoration: none;
}

.tag-kids {
	border-radius: 1.2rem;
	display: inline-block;
	padding: 0 1rem;
	border: solid 2px #ff0707;
	color: #ff0707;
	text-decoration: none;
	font-size: 0.5rem;
}

.tag-high {
	border-radius: 1.2rem;
	display: inline-block;
	padding: 0 1rem;
	border: solid 2px #21bbd7;
	color: #21bbd7;
	text-decoration: none;
	font-size: 0.5rem;
}

.tag-senior {
	border-radius: 1.2rem;
	display: inline-block;
	padding: 0 1rem;
	border: solid 2px #ff7800;
	color: #ff7800;
	text-decoration: none;
	font-size: 0.5rem;
}

/*ここからLOCAL*/
#local {
	padding-top: 50px;
	margin-bottom: 150px;
}

.titleLocal {
	color: #25a444;
	font-size: 2.5rem;
	font-weight: bold;
	border-bottom: 3px solid #25a444;

}

#local ul {
	display: flex;
	flex-wrap: wrap;
	width: 80%;
	list-style: none;
	margin: 0 auto;
	padding-top: 30px;
}

#local ul li {
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.local-category li {
	display: inline-block;
	height: 200px;
}

.local-category li a {
	display: inline-block;
	display: flex;
	height: 200px;
	flex-direction: column;
	justify-content: center;
	background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 152, 79, 0.8));
	width: 100%;

}

.team {
	background-image: url("../../images/team.jpg");
	background-size: cover;
	background-position: center center;
}

.facility {
	background-image: url("../../images/facility2.jpg");
	background-size: cover;
	background-position: center center;
}

.kids {
	background-image: url("../../images/kids.jpg");
	background-size: cover;
	background-position: center center;
}

.women {
	background-image: url("../../images/women.jpg");
	background-size: cover;
	background-position: center center;
}

#local ul li a {
	color: white;
	text-decoration: none;
	font-size: 1rem;
	text-align: center;

}

#local ul li a h3 {
	font-weight: bold;
	font-size: 1.5rem;
}

.local-button {
	font-size: 2rem;
}

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

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


.titlePickup_text {
	margin-left: auto;
}

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

#pickup ul {
	padding-top: 2rem;
	padding-bottom: 200px;
	display: flex;
	list-style: none;
	max-width: 1280px;
	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");
}

.pickupList3 {
	width: 33.4%;
	background-image: url("../../images/about.jpg");
	background-size: cover;
	background-position: center 50%;
}

.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;
	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;
}

.pop {
	transform: translateY(20%);
	opacity: 0;
}

.popup {
	opacity: 1;
	transition: 0.5s;
	transform: translateX(0);
}

/*ここからスライドショーのクラス*/

.slideshowAll {
	width: 80%;
	height: 75vh;
	max-height: 600px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	z-index: 2;
}

.slideshowAll img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.top-bottom {
	object-position: bottom;
}

.top-top {
	object-position: top;
}

.slide1 {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

.slide2 {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
}

.slide3 {
	width: 80%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

.start1 {
	width: 100%;
	height: 100%;
	transform: translateX(-70%) scale(0.8);
	opacity: 0.5;
	z-index: 2;
}

.start2 {
	width: 100%;
	height: 100%;
	transform: translateX(-50%) scale(1);
	opacity: 1;
	z-index: 3;
}

.start3 {
	width: 100%;
	height: 100%;
	transform: translateX(-30%) scale(0.8);
	opacity: 0.5;
	z-index: 1;
}

.x {
	width: 100%;
	height: 100%;
	transition: all 1.2s ease-in-out;
	transform: translateX(-50%) scale(1);
	opacity: 1;
	z-index: 3;
}

.y {
	width: 100%;
	height: 100%;
	transition: all 1.2s ease-in-out;
	transform: translateX(-30%) scale(0.8);
	opacity: 0.5;
	z-index: 1;
}

.z {
	width: 100%;
	height: 100%;
	transition: all 1.2s ease-in-out;
	transform: translateX(-70%) scale(0.8);
	opacity: 0.5;
	z-index: 2;
}

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

@media (max-width:1024px) {

	/*トップコンテンツ*/
	#topContents {
		padding-bottom: 120px;
		margin-bottom: 100px;
	}

	.slideshowAll {
		height: calc(55vw - 50px);
		width: calc(100% - 100px);
	}

	.slide1, .slide2, .slide3 {
		width: 100%;
	}

	.topcopy-position {
		bottom: 30%;
	}

	.topcopy, .bg-wrap, .inn {
		font-size: 24px;
		padding: 3px 15px;
	}

	.fixed {
		position: fixed;
		width: 100%;
	}

	/*トップのピックアップ*/
	.nextMatchChild1 {
		height: 200px;
		width: 200px;
		border: 3px solid green;
	}

	.nextMatchChild1_text {
		padding-top: 20px;
	}

	.nextMatch-inner p {
		font-size: 12px;
	}

	.bunner-to-match {
		font-size: 12px;
		padding: 0.2rem 0.3rem;
	}



	/*ニュースのコンテンツ*/
	.article p {
		font-size: 0.8rem;
	}


	/*ローカルのコンテンツ*/
	.local-button {
		font-size: 1.5rem;
		font-weight: bold;
	}


	/*共通項目*/
	nav ul {
		display: none;
	}

	#navbtn {
		display: block;
	}

	#tabs {
		width: 100%;
	}

	.tab_item {
		width: 49%;
		margin-bottom: 5px;
	}

	.contact1, .about1 {
		font-size: 1.2rem;
		font-weight: bold;

	}

	.footer-table {
		width: 95%;
	}


}

@media (max-width:600px) {


	/*トップのコンテンツ*/
	#topContents {
		margin-bottom: 80px;
	}

	.slideshowAll {
		height: calc(70vw);
		width: calc(100%);
	}

	.banner {
		top: calc(70vw);
	}

	.slide1, .slide2, .slide3 {
		width: 100%;
	}

	.topcopy, .bg-wrap, .inn {
		font-size: 18px;
		padding: 2px 8px;
	}

	.topcopy-position {
		bottom: 40%;
	}

	/*ピックアップのコンテンツ*/

	.nextMatchChild1, .scrolldown1 {
		display: none;
	}

	.topics {
		width: 100%;
		min-height: 130px;
		min-width: 100%;
	}

	.topics ul {
		width: 100%;
		padding: 0;
	}

	.topics ul li:nth-child(1) {
		width: 10%;
	}

	.topics_text {
		font-size: 20px;
	}

	.topics ul li:nth-child(2), .topics ul li:nth-child(3) {
		width: 45%;
		height: 80%;
		margin: 0 2%;
	}

	.topics-smart {
		display: none;
	}

	.close {
		opacity: 0.5;
	}

	/*ニュースのコンテンツ*/
	#news {
		margin-bottom: 80px;
	}

	.titleNews h1 {

		font-size: 1.5rem;
	}

	.newsContents ul {
		overflow: scroll-x;

	}

	.newsArticle a {
		font-size: 12px;

	}

	.rightarrow, .leftarrow {
		display: none;
	}

	/*マッチのコンテンツ*/

	#match {
		padding-bottom: 80px;
	}

	.titleMatch h1 {
		font-size: 1.5rem;
	}

	.matchCategory {
		flex-direction: column;
	}

	.matchCategory li {
		width: 90%;
		margin: 0 auto;
	}

	.categoryTitle {
		font-size: 18px;
		padding: 0.3rem 0;
	}

	.categoryEx, .button-schedule, .button-result {
		font-size: 12px;
	}

	.tab_item {
		font-size: 12px;
		font-weight: bold;
		width: 50%;
	}

	.tab_item::after {
		display: none;
	}

	.tab_content table {
		font-size: 12px;
		min-width: 400px;
	}

	.tab_content table td {
		padding: 2px;
	}

	.tag-circle {
		padding: 0 0.2rem;
		margin-bottom: 2px;
	}

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

	#local {
		margin-bottom: 80px;
	}

	.titleLocal h1 {
		font-size: 1.5rem;

	}

	#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;
	}

	.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;
	}
}