@charset "UTF-8";
/* CSS Document */

/*2カラム設定*/
/*PC*/
@media only screen and (min-width: 1025px) {
	.content {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		position: relative;
		width: 1150px;
		height: auto;
		margin: 50px auto 0 auto;
	}
	
	.main {
		position: relative;
		width: 800px;
		height: auto;
	}
	
	.side {
		position: relative;
		width: 300px;
		height: auto;
	}
}

/*SMP*/
@media only screen and (max-width: 1024px) {
	
	
}

/*トップページ*/
/*PC*/
@media only screen and (min-width: 1025px) {
	/*メインビジュアル*/
	#t_mv {
		position: relative;
		width: 100%;
		height: auto;
	}
	
	#t_mv img {
		display: block;
		position: relative;
		width: 100%;
		height: 450px;
		object-fit: cover;
		object-position: center;
	}
	
	/*タイトル_共通*/
	.t_title {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto 20px auto;
	}
	
	.t_title h2 {
		position: relative;
		padding: 6px 0 6px 20px;
		margin: 0 auto 20px auto;
		font-size: 20px;
		font-weight: bold;
		letter-spacing: 1px;
		line-height: 20px;
		text-align: left;
	}
	
	.t_title h2::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 7px;
		height: 100%;
		background: #C9B254;
	}
	
	/*勉強ジンジャー*/
	#t_study {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto 40px auto;
	}
	
	/*配信情報*/
	#t_streaming {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto 40px auto;
	}
}

/*SMP*/
@media only screen and (max-width: 1024px) {
	
	
}