
/* =======================================
 FRAME
======================================== */

html,body {
	background-color: #111;
	text-align: center;
	font-size: 16px;
}

/* container */
	.container {
		max-width: 960px;
	}

	section {
		padding-top: 3rem;
		padding-bottom: 4rem;
	}

	section#masademy-comment {
		padding-top: 0;
		padding-bottom: 0;
		position: relative;
	}

	section#masademy-comment img {
		width: 100%;
		height: auto !important;
	}

/* PC & SP */
.pc {	display: block;}
.sp {	display: none; height: auto;}

	@media screen and (max-width:767px) { 
	.pc {	display: none;}
	.sp {	display: block;}
	}

/* =======================================
 HEADER
======================================== */
	header {
		width: 100%;
		height: 0;
		padding-top: 20%;
		position: relative;
	}

	header h2.date {
		position: absolute;
		top: 65%;
		color: #FF0;
  font-size: 2rem;
  position: absolute;
  width: 100%;
  text-align: center;
  font-family: serif;
	}

	.white-space {
		color: #FFF;
		text-align: left;
		position: absolute;
		bottom: 2%;
		left: 5%;
	}
	.white-space ul {
		padding-top: 1rem !important;
	}
	.white-space ul li {
		font-size: .8rem !important;
		line-height: 1rem !important;
		color: #FFF !important;
	}


	@media screen and (min-width:768px) and ( max-width:1123px) {
		header h2.date {
			font-size: 1.1em;
		}
	}

	@media screen and (max-width:767px) { 
		header h2.date {
			font-size: .8em;
		}
		.white-space {
			position: relative;
			bottom: auto;
			left: auto;
			padding: 1rem;
		}
		.white-space span {
			font-size: .6rem;
		}
	}


/* =======================================
 FOOTER
======================================== */
	footer {
		margin-top: 3rem;
	}

	p.copyright {
		margin-top: 1rem;
		color: #FFF;
	}


/* =======================================
 BORDER
======================================== */
.border-1 {
	border-top: 1px dashed #F00;
	width: 95%;
	margin: 2rem auto;
}
.border-1:before {
	content:"●";
	float: left;
	color: red;
	margin-top: -14px;
	margin-left: -5px;
}
.border-1:after {
	content:"●";
	float: right;
	color: red;
	margin-top: -14px;
	margin-right: -5px;
}

.border-2 {
	border-top: 1px solid #FFE86F;
	width: 95%;
	margin: 2rem auto;
	position: relative;
}
.border-2:before {
	content:"●";
	float: left;
	color: #FFE86F;
	position: absolute;
	top: -14px;
	left: -5px;
}
.border-2:after {
	content:"●";
	float: right;
	color: #FFE86F;
	position: absolute;
	top: -14px;
	right: -5px;
}

.border-frame {
	width: 80%;
	border: 5px double #FFF;
	margin: 1rem auto;
	padding: .5rem;
	color: #FFF;
	text-align: left;
	font-size: .8rem;
}


/* =======================================
 ITEM BOX
======================================== */
#main >.container {
	border: 1px solid #F00;
	background-color: #000;
	color: #FFF;
}

#main ul,#main ul li {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
#main ul li:nth-of-type(1){
	color: #FFE86F;
	font-weight: bold;
	font-size: 1.2rem;
}
#main ul li:nth-of-type(2){
	color: #FFF;
	font-weight: normal;
	font-size: .9rem;
}
#main ul li:nth-of-type(3){
	color: #FFF;
	font-weight: normal;
	font-size: .7rem;
}

	@media screen and (min-width:768px) and ( max-width:1123px) {
		#main ul li:nth-of-type(1){
			font-size: .9rem;
		}
		#main ul li:nth-of-type(2){
			font-size: .7rem;
		}
		#main ul li:nth-of-type(3){
			font-size: .6rem;
		}
	}

	@media screen and (max-width:767px) { 
		#main ul li:nth-of-type(1){
			font-size: .9rem;
		}
		#main ul li:nth-of-type(2){
			font-size: .7rem;
		}
		#main ul li:nth-of-type(3){
			font-size: .6rem;
		}
	}


