  @charset "UTF-8";

/* ======================================================
 * layout_sp.css
 * ------------------------------------------------------
 * @media only screen and (max-width: 767px)
 * - Common
 * - Header
 * - Main
 * - Footer
 * - Clearfix
====================================================== */

@media only screen and (max-width: 767px) {
	
	body.fixed {
		position: fixed;
	}
	
	/* ------------------------------------------------------
	 * Common
	------------------------------------------------------ */
	.Header,
	.container,
	.licence-text,
	.Footer {
		transition-property: margin-left;
		transition-duration: .2s;
		width: 100vw;
	}
	
	/* ------------------------------------------------------
	 * Header
	------------------------------------------------------ */
	.Header {
	}
	
	/* ----- HeaderBody ----- */
	.HeaderBody {
	}
	
	/* header-identity */
	.header-identity {
		background-color: #fff;
		border-bottom: 1px solid #e0e0e0;
		height: 50px;
		padding-left: 15px;
		width: 100%;
	}
	.identity_logo {
		height: 100%;
	}
	.identity_logo a {
		display: flex;
		align-items: center;
		font-size: 1.0rem;
		font-weight: 700;
		letter-spacing: .1em;
		height: 100%;
	}
	.header-identity .identity_logo img {
		margin-right: 15px;
		width: 90px;
	}
	
	/* gnav */
	
	#toggle-nav {
		background-color: #07ada9;
		cursor: pointer;
		display: block;
		height: 50px;
		width: 50px;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 90;
	}
	
	body.fixed #toggle-nav {
	position: fixed;
}
	
	#toggle-nav span {
		background-color: #FFF;
		display: block;
		height: 2px;
		width: 20px;
		position: absolute;
		top: calc(17px + 7px);
		left: 15px;
		transition: .5s;
	}
	
	#toggle-nav span::before,
	#toggle-nav span::after {
		background-color: #FFF;
		content: "";
		height: 2px;
		width: 20px;
		position: absolute;
		left: 0;
		transition: .5s;
	}
	
	#toggle-nav span::before {
		top: -7px;
	}
	
	#toggle-nav span::after {
		top: 7px;
	}
	
	#toggle-nav.open span {
		background: transparent;
	}
	
	#toggle-nav.open span::before {
		transform: rotate(-45deg);
		top: 0;
	}

	#toggle-nav.open span::after {
		transform: rotate(45deg);
		top: 0;
	}
	
	#gnav {
		background-color: #07ada9;
		display: none;
		height: 100vh;
		width: 100%;
		overflow: auto;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1;
	}
	
#gnav ul {
	margin: 84px auto 0;
	width: 85%;
}
	
#gnav ul li {
	height: 92px;
	border-bottom: 1px solid #a5e2e0;
}
	
#gnav ul li a {
	color: #FFF;
	font-size: 1.8rem;
	letter-spacing: .1em;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
	
	/* ------------------------------------------------------
	 * Main
	------------------------------------------------------ */
	.Main {
	}
	
	/* ----- MainBody ----- */
	.MainBody {
		position: relative;
	}
	
	/* ----- container ----- */
	.container {
	}
	
	/* contents */
	.contents {
		padding: 45px 15px 0;
	}
	
	/* ------------------------------------------------------
	 * Footer
	------------------------------------------------------ */
	.Footer {
		margin-top: 60px;
		padding: 20px 18px 15px;
		background-color: #000;
		position: relative;
	}
	
	/* .footerNavi-list */
	.footerNavi-list {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.footerNavi-list > li {
		min-width: calc((100% - 15px) / 2);
		margin-top: 14px;
		margin-right:15px;
		font-size: 1.3rem;
	}
	.footerNavi-list > li > a {
		position: relative;
		display: inline-block;
		padding-left: 20px;
		color: #fff;
	}
	.footerNavi-list > li > a:before {
		content: "";
		position: absolute;
		top: 6px;
		left: 0;
		width: 8px;
		height: 8px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		-webkit-transform: rotate(45deg);
	  transform: rotate(45deg);
	}
	
	.footerNavi-list li a.a-blank .link_label::after {
		display: inline-block;
		width: 10px !important;
		height: 10px !important;
		margin-left: 8px;
		background: url(/sports/common/images/com_ic01.png) no-repeat 0 0;
		vertical-align: 1px;
		content: "";
	}
	
	/* ----- FooterBody ----- */
	.FooterBody {
		margin-top: 25px;
		padding-top: 20px;
		border-top: 1px solid #1a1a1a;
	}
	
	/* footer-copyright */
	.footer-copyright {
		text-align: center;
	}
	.footer-copyright_label {
		font-size: 1rem;
		color: #cbcbcb;
		line-height: 1;
	}
	
	/* ------------------------------------------------------
	 * Clearfix
	------------------------------------------------------ */
/*	.element::after, {
		clear: both;
		content: "";
		display: block;
	}*/

}

