@media (min-width: 767px) {
	@font-face {
		font-family: 'Noto Sans JP';
		font-style: normal;
		font-weight: 400;
		src: url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff2) format('woff2'),
			url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff) format('woff'),
			url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.otf) format('opentype');
	}

	@font-face {
		font-family: 'Noto Sans JP';
		font-style: normal;
		font-weight: 700;
		src: url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Bold.woff2) format('woff2'),
			url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Bold.woff) format('woff'),
			url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Bold.otf) format('opentype');
	}
}

body {
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.7;
	color: #222;
	margin: 0;
	height: 100%;
	padding: 0;
}

.pc {
	display: block;
}

.sp {
	display: none;
}

@media screen and (max-width: 767px) {
	body {
		background-size: 130% auto;
	}

	.pc {
		display: none;
	}

	.sp {
		display: block;
	}
}

@media print {
	body {
		background-attachment: scroll;
		background-size: auto;
	}
}

.table {
	width: 100%;
	max-width: 100%;
	margin-bottom: 20px;
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
	border: none;
	border-collapse: collapse;
}

.table>thead>tr>th,
.table>thead>tr>td,
.table>tbody>tr>th,
.table>tbody>tr>td,
.table>tfoot>tr>th,
.table>tfoot>tr>td {
	padding: 8px;
	line-height: 1.42857;
	vertical-align: top;
	border-top: 1px solid #ddd;
}

.table>thead>tr>th {
	vertical-align: bottom;
	border-bottom: 2px solid #ddd;
}

.table>caption+thead>tr:first-child>th,
.table>caption+thead>tr:first-child>td,
.table>colgroup+thead>tr:first-child>th,
.table>colgroup+thead>tr:first-child>td,
.table>thead:first-child>tr:first-child>th,
.table>thead:first-child>tr:first-child>td {
	border-top: 0;
}

.table>tbody+tbody {
	border-top: 2px solid #ddd;
}

.table .table {
	background-color: #fff;
}

.btn {
	display: inline-block;
	margin-bottom: 0;
	font-weight: normal;
	text-align: center;
	vertical-align: middle;
	touch-action: manipulation;
	cursor: pointer;
	background-image: none;
	border: 1px solid transparent;
	white-space: nowrap;
	padding: 10px 20px;
	font-size: 14px;
	line-height: 1.42857;
	border-radius: 8px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.btn:focus,
.btn.focus,
.btn:active:focus,
.btn:active.focus,
.btn.active:focus,
.btn.active.focus {
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}

.btn:hover,
.btn:focus,
.btn.focus {
	text-decoration: none;
	color: #fff;
}

.btn:active,
.btn.active {
	outline: 0;
	background-image: none;
	-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
	cursor: not-allowed;
	opacity: 0.65;
	filter: alpha(opacity=65);
	-webkit-box-shadow: none;
	box-shadow: none;
}

a.btn.disabled,
fieldset[disabled] a.btn {
	pointer-events: none;
}

a {
	color: #0080C8;
	-webkit-transition: 0.25s;
	-o-transition: 0.25s;
	transition: 0.25s;
	text-decoration: none;
}

a:hover,
a:active,
a:focus {
	color: #0080C8;
	outline: none;
	text-decoration: underline;
}

p {
	margin-bottom: 20px;
}

.text-center {
	text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6,
figure {
	color: #000;
	font-weight: 400;
	margin: 0 0 20px 0;
}

img {
	max-width: 100%;
}

.mb10 {
	margin-bottom: 10px;
}

.mb20 {
	margin-bottom: 20px;
}

.mb30 {
	margin-bottom: 30px;
}

.mb40 {
	margin-bottom: 40px;
}

.mb50 {
	margin-bottom: 50px;
}

.mb60 {
	margin-bottom: 60px;
}


video {
	width: 100% !important;
	max-width: 100%;
	margin: 0 auto;
}

/** ***************************************************************************
 * ローディング
 * ************************************************************************* */

#loading {
	width: 100vw;
	height: 100vh;
	transition: all 1s;
	background-color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}

.spinner {
	width: 100px;
	height: 100px;
	margin: 200px auto;
	background-color: #709f70;
	border-radius: 100%;
	animation: sk-scaleout 1.0s infinite ease-in-out;
}

/* Loading Animation */
@keyframes sk-scaleout {
	0% {
		transform: scale(0);
	}

	100% {
		transform: scale(1.0);
		opacity: 0;
	}
}

.loader,
.loader:after {
	border-radius: 50%;
	width: 10em;
	height: 10em;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	margin: -5.3em 0 0 -5.3em;
}

.loader {
	font-size: 10px;
	position: relative;
	text-indent: -9999em;
	border-top: 0.3em solid rgba(0, 128, 203, 0.2);
	border-right: 0.3em solid rgba(0, 128, 203, 0.2);
	border-bottom: 0.3em solid rgba(0, 128, 203, 0.2);
	border-left: 0.3em solid rgba(0, 128, 203, 1);
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation: load8 1.1s infinite linear;
	animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes load8 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/* Hide Loading Block */
.loaded {
	opacity: 0;
	visibility: hidden;
}

#page-header {
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	position: relative;
}

.page-cover {
	position: relative;
	padding: 20vw 0;
	overflow: hidden;
}

.page-cover .overlay {
	z-index: 0;
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	opacity: 0.7;
	background-size: cover;
	background-position: center;
}

.page-cover>.page-container {
	position: relative;
}

.page-cover .display-t {
	margin: 0 auto;
	width: 100%;
	position: absolute;
	z-index: 1000;
	transform: translate(-50%, -50%);
	position: absolute;
	top: 40%;
	left: 50%;
}

.page-cover .display-t h1 {
	width: 66vw;
	margin: 0 auto;
	padding: 20px;
}

.page-cover .display-t h2 {
	font-size: 2.5vw;
	font-weight: bold;
	color: #fff;
	position: relative;
	text-shadow: 0 0 8px rgba(0, 0, 0, 1);
}

#tochitele {
	position: absolute;
	left: 20px;
	top: 20px;
	z-index: 5;
}

.logo {
	max-width: 720px !important;
}

@media screen and (max-width: 1279px) {
	.page-cover {
		padding: 20vw 0;
	}
}

@media screen and (max-width: 1023px) {
	.page-cover {
		padding: 20vw 0;
	}
}

@media screen and (max-width: 767px) {
	.page-cover {
		position: relative;
		padding: 20vw 0;
	}

	.page-cover .display-t {
		text-align: center;
	}

	.page-cover .display-t h1 {
		margin: 0 auto;
		width: 80vw;
	}

	.page-cover .display-t h2 {
		font-size: 3.3vw;
	}

	.page-cover .display-t h2 span {
		display: block;
	}

	#tochitele {
		width: 20%;
		left: 10px;
		top: 10px;
	}
}

/** ===========================================================================
 * 動画
 */

#movie {
	width: 100%;
	height: 100%;
	padding-bottom: 0;
}

#movie video {
	width: auto;
	max-width: none;
	min-width: 100%;
	min-height: 100%;
	transform: translate(-50%, -50%);
	position: absolute;
	top: 50%;
	left: 50%;
}

#movie img {
	width: auto;
	max-width: none;
	min-width: 100%;
	min-height: 100%;
	transform: translate(-50%, -50%);
	position: absolute;
	top: 50%;
	left: 50%;
}

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

	#movie {
		width: 100%;
		height: 100%;
		padding-bottom: 0;
	}

	#movie img {
		width: auto;
		max-width: 100%;
		min-width: 100%;
		min-height: 0;
		height: auto;
		transform: translate(-50%, -50%);
		position: absolute;
		top: 50%;
		left: 50%;
	}

	#movie video {
		width: auto;
		max-width: none;
		min-width: 100%;
		min-height: 100%;
		transform: translate(-50%, -50%);
		position: absolute;
		top: 50%;
		left: 50%;
	}

}

section,
#page-link,
#page-footer {
	padding: 0 0 40px;
	clear: both;
	background: #fff;
}

#page-sns {
	padding: 1em 0;
	clear: both;
	background: #fff;
}

.scroll {
	margin-bottom: 2em;
}

.scroll section table {
	width: 100%;
}

section h2 {
	position: relative;
	font-size: 28px;
	font-weight: bold;
	background: #0080CB;
	color: #fff;
	text-align: center;
	padding: 6px 0;
	margin: 0 0 1.5em;
}

section h2:after {
	display: block;
	width: 96px;
	height: 75px;
	background: url(../images/footer.png) no-repeat;
	position: absolute;
	right: 0;
	top: -75px;
	content: "";
}

section h3 {
	font-size: 22px;
	font-weight: bold;
	padding: 0 0 8px 0;
	color: #0080CB;
	border-bottom: 3px solid #0080CB;
}

section h4 {
	font-weight: bold;
	font-size: 18px;
}

section dl {
	width: 100%;
	font-size: 15px;
	border: 5px solid #d00;
	box-sizing: border-box;
	margin: 0 auto 10px;
	display: table;
}

section dl dt {
	display: table-cell;
	vertical-align: middle;
	background: #d00;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	padding: 5px 0;
}

section dl dd {
	display: table-cell;
	vertical-align: middle;
	font-size: 20px;
	padding: 5px 10px;
	background: #FFFBC7;
	font-weight: bold;
}

section table {
	border: 10px solid #0080CB;
	width: 100% !important;
	box-sizing: border-box;
	background: #fff;
	margin-bottom: 20px;
}

section table th,
section table td {
	border: 1px solid #0080CB;
	color: #000;
	text-align: center;
	line-height: 1.5;
}

section table th {
	background: #f2f2f2;
	color: #0080CB;
	padding: 5px;

}

section table td {
	background: #fff;
	padding: 5px;
}

section table td h5 {
	margin-bottom: 0;
	line-height: 1.5;
	font-size: 16px;
	color: #000;
	margin: 5px 0;
	font-weight: bold;
}

section table td.none {
	background: #ccc;
}

section table td span {
	display: block;
	background: #999;
	color: #fff;
	margin: 0 5px 6px;
	padding: 3px 0;
	border-radius: 4px;
	transition: all 0.1s;
}

section table td a:hover {
	text-decoration: none;
	opacity: 0.7;
}

table.card {
	border: none;
	width: 100% !important;
	box-sizing: border-box;
	margin-bottom: 0;
}

table.card td {
	border: none;
}

table.card td:nth-child(1) {
	width: 4em;
}

table.card td:nth-child(3) {
	width: 1em;
}

table.card td:nth-child(2),
table.card td:nth-child(4) {
	width: 11em;
}

@media screen and (max-width: 767px) {
	section h2 {
		font-size: 20px;
		line-height: 1.5;
	}

	section h2:after {
		width: 36px;
		height: 22px;
		background-size: 36px auto;
		top: -22px;
	}

	section h3 {
		line-height: 1.5;
		font-weight: bold;
		color: #0080CB;
		border-bottom: 3px solid #0080CB;
	}

	.scroll {
		overflow: auto;
		white-space: nowrap;
		padding: 10px;
		border: 1px solid #ccc;
	}

	.scroll:before {
		content: '※この表は横にスクロールできます。';
		color: #999;
		font-size: 12px;
		margin-bottom: 5px;
		text-align: left;
	}

	.scroll::-webkit-scrollbar {
		height: 8px;
	}

	.scroll::-webkit-scrollbar-track {
		background: #F1F1F1;
	}

	.scroll::-webkit-scrollbar-thumb {
		background: #BCBCBC;
	}

	section dl {
		display: block;
	}

	section dl dt {
		display: block;
		margin: 0;
	}

	section dl dd {
		display: block;
		margin: 0;
	}
}

.container {
	margin-right: auto;
	margin-left: auto;
	padding-left: 15px;
	padding-right: 15px;
}

.container:before,
.container:after {
	content: " ";
	display: table;
}

.container:after {
	clear: both;
}

@media (min-width: 768px) {
	.container {
		width: 750px;
	}
}

@media (min-width: 992px) {
	.container {
		width: 970px;
	}
}

@media (min-width: 1200px) {
	.container {
		width: 1100px;
	}
}

.page-heading {
	margin-bottom: 3em;
}

.page-heading.page-heading-sm {
	margin-bottom: 2em;
}

@media screen and (max-width: 767px) {
	.page-heading h2 {
		font-size: 24px;
	}
}

#message {
	display: flex;
	justify-content: center;
	/*	justify-content:space-between; */
}

#message>div {
	width: 48%;
	margin: 0 1%;
}

#message img {
	width: 100%;
	vertical-align: bottom;
}

.live {
	position: relative;
	width: 100%;
	max-width: 800px;
	overflow: hidden;
	margin: 0 auto;
}

.live iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.archive {
	display: flex;
	justify-content: space-between;

}

.archive .movie {
	display: block;
	width: 47%;
	max-width: 560px;
	margin: 0 auto 40px;
	position: relative;
	box-sizing: border-box;
	text-align: center;
}

.archive .movie3 {
	width: 31%;
	max-width: 360px;
}

.archive .movie a {
	transition: 0.5s;
	display: block;
	position: relative;
}

.archive .movie a:after {
	font-family: "Font Awesome 5 Free";
	content: "\f144";
	font-weight: 400;
	color: #fff;
	opacity: 0.7;
	font-size: 60px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.archive .movie a:hover {
	opacity: 0.8;
}

.movie-container {
	display: block;
	position: relative;
}

.wrap {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	overflow: hidden;
	margin-bottom: 20px;


}

.wrap img {
	width: 100%;
}

.wrap a i {
	position: absolute;
	font-size: 60px;
	left: 50%;
	top: 50%;
	color: rgba(255, 255, 255, 0.5);
	margin: -30px auto auto -30px;
}

.wrap a:hover i {
	color: #ff0000;
}

.wrap iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

iframe {
	border: none;
}

#sponsor ul {
	list-style: none;
	margin: 0;
	padding: 0;

	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

#sponsor ul li {
	padding: 10px;
	box-sizing: border-box;
	text-align: center;
	align-self: center;
	margin-bottom: 5px;
}

#sponsor ul li.large {
	width: 45%;
	text-align: center;
	margin: 0 2.5% 10px;
}

ul.school {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: left;
	flex-wrap: wrap;
}

ul.school li {
	width: 20%;
	padding: 3px;
	box-sizing: border-box;
	text-align: center;
	align-self: center;
	margin-bottom: 3px;
}

ul.school li a:before {}

@media screen and (max-width: 767px) {
	.archive {
		display: block;

	}

	#sponsor ul {
		display: block;
	}

	#sponsor ul li {
		width: 65%;
		padding: 0;
		margin: 0 auto 5px;
	}

	#sponsor ul li.large {
		width: 80%;
		padding: 0;
		margin: 0 auto 10px;
	}

	ul.school li {
		width: 33%;
	}

	#sponsor ul li.w72 {
		width: 72%;
	}

	#sponsor ul li.w85 {
		width: 85%;
	}

	#sponsor ul li.w35 {
		width: 35%;
	}

	#message {
		display: block;
	}

	#message>div {
		width: 100%;
	}

	.archive .movie {
		width: 100%;
	}
}

.btn {
	border: none !important;
	background: #0080CB;
	color: #fff;
	font-size: 18px;
	padding: 18px 32px;
	margin: 0 5px 10px;
	line-height: 1;
	box-shadow: 0px 3px 0 rgba(0, 0, 0, 0.2);
}

.btn:hover {
	box-shadow: 0px 14px 30px -15px rgba(0, 0, 0, 0.75) !important;
	color: #fff;
	transform: scale(1.04);
}

.fb_iframe_widget>span {
	vertical-align: baseline !important;
	height: 20px !important;
}

#social {
	text-align: center;
}

#social ul {
	list-style: none;
	margin: 0;
}

#social ul li {
	display: inline-block;
	margin: 5px;
	vertical-align: bottom;
	line-height: 1;
	text-align: center;
}

#social ul li:last-child {
	margin-right: 0;
}

#page-footer {
	background: #D9D9D9;
	position: relative;
	padding: 20px 0;
}

#page-footer .copyright .block {
	display: block;
}


.gototop {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	opacity: 1;
}

.gototop.active {
	opacity: 1;
	visibility: visible;
}

.gototop a {
	width: 50px;
	height: 50px;
	display: table;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	text-align: center;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	border-radius: 4px;
}

.gototop a i {
	height: 50px;
	display: table-cell;
	vertical-align: middle;
}

.gototop a:hover,
.gototop a:active,
.gototop a:focus {
	text-decoration: none;
	outline: none;
}