@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Oswald:400,700|Roboto:200,300,300i,400,700');
/* -------------------------------------------
Layout
------------------------------------------- */
body{
	font-size: 1em;
	line-height: 1.4;
	font-weight: 400;
	color: #fff;
	background: #000;
	height: calc(100% - 2em);
	font-family: 'Oswald', sans-serif;
	  -webkit-font-smoothing: antialiased;
	  -moz-osx-font-smoothing: grayscale;
}

/* -------------------------------------------
Elements
------------------------------------------- */
/*img*/
img {
	max-width: 100%;
	height: auto;
}

/*a*/
a {
	color:#FF0;
	text-decoration:none;
	transition: 0.3s ease-out;
}
a:hover {
	color:#0071BC;
	text-decoration:none;
}
header a,
footer a,
#menu a,
aside#privacy a{
	color:#000;
	text-decoration:none;
	transition: 0.3s ease-out;
}
header a:hover,
footer a:hover,
#menu a:hover,
aside#privacy a:hover {
	color:#0071BC;
}
article a img,
nav a img {
	transition: 0.3s ease-out;
}
article a:hover img,
nav a:hover img {
	transform: scale(1.1,1.1);
}


/*figure*/
figure {
	position: relative;
}

/*hedding*/
h1 {
	font-family: 'Oswald', sans-serif;
	font-size: 2.25em;
	font-weight: 600;
	text-align: center;
	margin-bottom: 0.25em;
}
h2 {
	font-family: 'Oswald', sans-serif;
	margin-bottom: 0.5em;
}
h3 {
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	font-size: 1.75em;
}

/*form*/

/* -------------------------------------------
layout
------------------------------------------- */
/*Wrap*/
div#wrap {
	position: relative;
	min-height: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	display: -webkit-box; /* Android4.3以下、Safari3.1〜6.0 */
	display: -webkit-flex; /* Safari6.1以降 */	
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /*IE10*/
	-webkit-flex-wrap: wrap; /* Safari6.1以降 */
	justify-content: center;
	-ms-flex-pack: center; /*IE10*/
	-webkit-box-pack: center; /* Android4.3以下、Safari3.1〜6.0 */
	-webkit-justify-content: center; /* Safari6.1以降 */	
	align-items: center;
	-ms-flex-align: center; /*IE10*/
	-webkit-box-align: center; /* Android4.3以下、Safari3.1〜6.0 */
	-webkit-align-items: center; /* Safari6.1以降 */	
	align-content: center;
	-ms-flex-line-pack: center; /*IE10*/
	-webkit-align-content: center; /* Safari6.1以降 */
}

/*Inner*/
.inner {
	width: 94%;
	max-width: 1024px;
}
.inner:after {
	display: block;
	content: '';
	clear: both
}
.inner.container {
	position: relative;
}

/*article*/
article {
	margin: 0 0 0;
	width: 100%;
	position: relative;
}

/*section*/
section {
	margin-top: 0em;
	margin-bottom: 4em;
	padding: 0 0 2em;
	position: relative;
}
section:nth-last-of-type(1) {
	margin-bottom: 0;
}

section div.entrybox {
	margin: 1em;
}
section div.entrybox:after {
	display: block;
	clear: both;
	content: '';
}

/* -------------------------------------------
Header
------------------------------------------- */

/* -------------------------------------------
Navigatiron
------------------------------------------- */
.inner.container nav {
	position: absolute;
	left:0;
	right: 0;
	bottom: 4em;
	width: 50%;
	margin: auto;
}
.inner.container nav ul {
	display: flex;
	flex-wrap: wrap;
	/* justify-content: space-between; 20250711 space-aroundに変更*/
	justify-content: space-around;
}
.inner.container nav ul li {
	width: 18%;
}
.inner.container nav.djschool {
	position: absolute;
	left:0;
	right: 0;
	width: 70%;
	margin: auto;
}
.inner.container nav.djschool ul {
	display: flex;
	flex-wrap: wrap;
	/* justify-content: space-between; 20250711 無効*/
}
.inner.container nav.djschool ul li {
	width: 20%;
	text-align: center;
	line-height: 1;
}
.inner.container nav.djschool ul li a {
	font-size: 1.25em;
	color: #fff;
	transition: 0.3s ease-out;
	display: block;
}
.inner.container nav.djschool ul li a:hover {
	color: #ff0;
	transform: scale(1.1,1.1);
}

/* -------------------------------------------
Slider
------------------------------------------- */

/* -------------------------------------------
SideBar
------------------------------------------- */

/* -------------------------------------------
Footer
------------------------------------------- */
footer#sitefooter {
	height: 2em;
	position: relative;
	display: block;
	width: 100%;
}
footer#sitefooter p {
	text-align: center;
	font-size: 0.85em;
	font-family: 'Oswald', sans-serif;
}


/* -------------------------------------------
Pagetop
------------------------------------------- */
/* トップに戻るボタン */
#page-top {
	position: fixed;
	bottom: 1%;
	right: 1%;
	font-size: 100%;
	z-index: 100000;
	line-height: 1;
	width: 3em;
	padding: 1em 1em 0;
}
#page-top a {
	border-top: solid 1px #4e3b3c;
	text-decoration: none;
	color: #4e3b3c;
	text-align: center;
	display: block;
}
#page-top a:hover {
	text-decoration: none;
}

/* -------------------------------------------
Pages
------------------------------------------- */
.inner.container h2 {
	text-align: center;
	font-size: 2.25em;
	margin-bottom: 0;
}

/* -------------------------------------------
MediaQuery
------------------------------------------- */
/*SmartPhone*/
@media screen and (max-width:640px) {
	body {
		font-size: 4.25vw;
		/*overflow-x: hidden;*/
	}
	.pc_img { display:none; }
	.sp_img { display:block; }
	
	.inner.container {
		margin-bottom: 1em;
	}
	
	.inner.container nav {
		bottom: 0em;
		width: 90%;
	}
	/*.inner.container nav.djschool {
		bottom: -3.5em;
		width: 80%;
	}*/
	
	.inner.container nav {
		position: absolute;
		left:0;
		right: 0;
		bottom: 0;
		width: 70%;
		margin: auto;
	}
	.inner.container nav ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.inner.container nav ul li {
		width: 18%;
	}
	.inner.container nav.djschool {
		position: relative;
		left:0;
		right: 0;
		top: 0em;
		width: 70%;
		margin: auto;
	}
	.inner.container nav.djschool ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.inner.container nav.djschool ul li {
		width: 45%;
		margin-bottom: 1em;
		text-align: center;
		line-height: 1;
	}
	
}

@media screen and (min-width:641px) {
	.pc_img { display:block; }
	.sp_img { display:none; }
	
}

/*Tablet*/
@media screen and (min-width:641px) and (max-width:1023px) {
	
	.inner.container nav {
		bottom: 1em;
		width: 70%;
	}
	.inner.container nav.djschool {
		bottom: -2em;
		width: 60%;
	}
	
}

/*PC*/
@media screen and (min-width:1024px) {
	
	.inner.container nav {
		bottom: 4em;
	}
	.inner.container nav.djschool {
		bottom: -0.5em;
	}

}
