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



.home header{
	height: 500px;
}

.home main{
	padding: 20px;
}

.home h2{
	margin: 0 0 20px;
	/*calc((文字サイズの最大値 - 文字サイズの最小値) * ((100vw - 画面幅の最小値px) / (画面幅の最大値 - 画面幅の最小値)) + 文字サイズの最小値px);*/
	font-size: calc((26 - 20) * ((100vw - 320px) / (1000 - 320)) + 20px);
}
/* Safari 7.1+ に適用される（ブラウザをリサイズした際にvwの値が再計算されないバグ対策 */
_::-webkit-full-page-media, _:future, :root, body {
  -webkit-animation: safariFix 1s forwards infinite;
}
@-webkit-keyframes safariFix {
  100% {
    z-index: 1;
  }
}





.logo-container{
	max-width: 1000px;
	margin: 80px auto 0;
	text-align: right;
}
.logo{
	margin: 0 0 50px;
}
.logo img{
	width: 300px;
}



nav .playback a{
	content: url("../img/home/bnr_playback300.jpg");
	border-radius: 10px;
  box-shadow: 5px 5px 5px #4c761b;
}



.media{
	border: 1px solid var(--base-color02);
	height: 350px;
	display: flex;
  align-items: center;
}
.media:nth-child(even){
	flex-direction: row-reverse;
}
.media:not(:last-child){
	margin: 0 0 20px;
}
.media:nth-child(1){
	background-image: url("../img/home/bg-media01_960.jpg");
}
.media:nth-child(2){
	background-image: url("../img/home/bg-media02_960.jpg");
}
.media:nth-child(3){
	background-image: url("../img/home/bg-media03_960.jpg");
}
.media:nth-child(4){
	background-image: url("../img/home/bg-media04_960.jpg");
}


.media .container{
	width: 450px;
	padding: 20px;
}
.media .summary{
	margin: 0 0 20px;
}

/*関連企業・団体*/
.related-organization{
	margin: 100px 0 0;
}
.related-organization h2{
	text-align: center;
}
.related-organization .bnr{
	width: 600px;
	height: 120px;
	margin: 0 auto 20px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	box-shadow: 3px 3px 6px #999;
}
.banners a:last-child .bnr{
	margin: 0 auto;
}
.banners a:nth-child(1) .bnr{
	background-image: url("../img/home/bg-bnr01_600.jpg");
}
.banners a:nth-child(2) .bnr{
	background-image: url("../img/home/bg-bnr02_600.jpg");
}
.banners a:nth-child(3) .bnr{
	background-image: url("../img/home/bg-bnr03_600.jpg");
}
.banners a:nth-child(4) .bnr{
	background-image: url("../img/home/bg-bnr04_600.jpg");
}
.banners a:nth-child(5) .bnr{
	background-image: url("../img/home/bg-bnr05_600.jpg");
}
.banners a:nth-child(6) .bnr{
	background-image: url("../img/home/bg-bnr06_600.jpg");
}


@media screen and (max-width: 1024px) {
}


@media screen and (max-width: 996px) {

}

@media screen and (max-width: 820px) {
	
}


@media screen and (max-width: 768px) {
	

	
	.home header{
		height: 150px;
	}
	
	.logo-container{
		margin: 0;
	}

	
	.logo{
		display: none;
	}

	
	.home p.playback{
		text-align: left;
		padding: 0 20px;
	}
	/*PC用のバナー表示をメニューリスト形式に合わせる*/
	.home p.playback a{
		display: none;
	}


	/*関連企業・団体*/
  .related-organization{
    margin: 50px 0 0;
  }
	.related-organization .bnr{
    width: calc(100% - 20px);
    height: 80px;
    margin: 0 auto 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 3px 3px 6px #999;
  }
	
	.base .media{
		background-image: none;
		height: auto;
	}
}

@media screen and (max-width: 480px) {

  /*関連企業・団体*/
	.related-organization .bnr{
    font-size: 18px;
  }
}