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

/* グローバル変数 */
:root {
	--color-green: #03773c;
	--color-red: #ED0051;
}

/* SPで表示、PCで非表示 */
.display_sp {
	display: block;
}
.display_pc {
	display: none;
}

/* common */
html {
	height: 100%;
    font-size: 16px;
}
body {
	font-family: 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', Meiryo,'Osaka','ＭＳ Ｐゴシック','MS PGothic','Helvetica','Arial',sans-serif;
	height: 100vh;
	text-align: center;
	line-height: 1.7;
	color: #1f1f1f;
	background: top center/100% url("../img/bg.png");
}
a {
	color: #0082FF;
	text-decoration: underline;
	display: block;
}
a:hover {
    opacity: 0.7;
	transition: opacity .3s;
}
img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
	image-rendering: -webkit-optimize-contrast;
	vertical-align: bottom;
	display: block;
	margin: 0 auto;
}
span {
	font-weight: 700;
}
span.red {
	color: var(--color-red);
}

/* メインビジュアル */
.mainvisual {
	width: 100vw;
}

/* コンテンツ */
.container {
	max-width: 1200px;
	margin: 2rem auto;
	padding: 0 4%;
}

/* 配信概要 */
#desc {
	border: 3px solid var(--color-green);
	max-width: 600px;
	margin: 2rem auto;
	background-color: #FFFFFF;
}
.inner {
	margin: 1rem auto;
	padding: 0 4%;
}
#desc .inner {
	margin: 1.5rem auto 1rem;
}
.subtitle {
	background: var(--color-green);
	color: #FFFFFF;
	margin: 2rem auto 1rem;
	padding: 0.3rem;
	max-width: 120px;
	font-weight: 600;
}
.subtitle:first-of-type {
	margin-top: 1rem;
}
.notice {
	margin-top: 2rem;
	font-size: 0.875rem;
}

/* コーナー＆出演者 */
.content {
	border: 3px solid var(--color-green);
	margin: 2rem auto;
	background-color: #FFFFFF;
	max-width: 1000px;
}
.parts {
	margin: 0 auto 2rem;
}
#content_2 .parts, #content_4 .parts {
	max-width: 680px;
}

/* バナーリスト */
.bnr_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: 6rem auto 0;
}
.bnr_list img {
	margin: 1rem;
	max-width: 200px;
	border: 1px solid #CCCCCC;
}

/* footer */
footer {
	padding: 1rem 0;
}
.copyright {
	font-size: 0.8rem;
	margin-top: 2rem;
	line-height: 1.2;
}

/* ページトップへ */
/*
#toTop {
    display: none;
    position: fixed;
    right: 15px;
    bottom: 15px;
}
#toTop a{
    display: block;
    font-size: 0;
    width: 50px;
    height: 50px;
    text-align: center;
    background: #1B7F56;
	opacity: 0.8;
    border-radius: 50%;
    line-height: 50px;
}
#toTop a i{
    font-size: 20px;
    color:#fff;
    line-height: 50px;
}
*/


/* for PC */
@media screen and (min-width: 768px),print {
	
	/* SPで非表示、PCで表示 */
	.display_sp {
		display: none;
	}
	.display_pc {
		display: block;
	}
	
	/* common */
	html {
		font-size: 18px;
	}
	body {
		background-size: 40%;
	}
	span {
		font-size: 1.2rem;
	}
	
	/* コンテンツ */
	.container {
		margin: 3rem auto;
	}
	
	/* 配信概要 */
	.subtitle {
		font-size: 1.2rem;
		padding: 0.3rem;
		max-width: 180px;
	}


}