@media screen and (min-width: 600px) {

	#media-main{
		width: 95vw;
		height: 30vw;
		position: relative;
		background-size: cover;
		margin: 5vw 2.5vw 0 2.5vw;
		border-radius: 3vw 3vw 0 0;
		display: flex;
		justify-content: center;
		align-items: center;
		overflow: hidden;
		animation: up 1s backwards;
	}
	main::before{
		content: "";
		width: 100vw;
		height: 5vw;
		position: absolute;
		left: 0vw;
		top: -5vw;
		background-color: #fff;
	}
	#media-main::after{
		content: "";
		width: 95vw;
		height: 30vw;
		background-color: #000;
		opacity: .2;
		position: absolute;
		left: 0;
		top: 0;
	}
	#media-main > h1{
		width: 40vw;
		font-size: 3.5vw;
		line-height: 4.5vw;
		color: #fff;
		margin: 0 2.5vw;
		z-index: 1;
	}
	#media-main > p{
		width: 35vw;
		font-size: 1vw;
		line-height: 2vw;
		color: #fff;
		margin: 0 2.5vw;
		z-index: 1;
	}


	#breadol{
		width: 95vw;
	    display: flex;
	    align-content: center;
	    justify-content: center;
	    list-style: none;
	    position: absolute;
	    left: 0vw;
	    bottom: 2vw;
	    padding: 5vw 0 0 0;
	    margin: 0;
	    z-index: 1;
	}
	#breadol > li{
	    font-size: 1.2vw;
	    color: #fff;
	    line-height: 1vw;
	    display: flex;
	}
	#breadol > li > a{
	    color: #fff;
	    margin-right: 2vw;
	    display: block;
	    position: relative;
	    font-weight: bold;
	}
	#breadol > li > a::after{
		content: "";
		display: block;
		width: .2vw;
		height: 1.2vw;
		background-color: #fff;
		position: absolute;
		top: -.1vw;
		right: -1.1vw;		
	}
	#media-text{
		width: 95vw;
		margin: 0 2.5vw;
		animation: up 1s backwards;
		animation-delay: .2s;
	}
	#media-text > article{
		width: 95vw;
		min-height: 45vw;
		display: flex;
		margin: 1vw 0;
		background-color: #f6f6f6;
		position: relative;
	}
	#media-text > article::before{
		content: "";
		width: 45vw;
		height: 100%;
		position: absolute;
		top: 0;
		right: 0;
		background-color: #eee;
	}
	#media-text > article:last-of-type{		
		border-radius: 0 0 3vw 3vw;
		overflow: hidden;
	}
	.article-img{
		width: 45vw;
		height: 45vw;
		position: sticky;
		left: 0;
		top: calc(50vh - 22.5vw);
		border: none;
	}
	.article-div{
		width: 40vw;
		margin: 5vw;
	}
	.article-div > h2{
		font-size: 2vw;
		line-height: 3vw;
		margin: 1vw 0;
	}
	.article-div > h3{
		font-size: 1vw;
		line-height: 2vw;
		margin: 1vw 0;
	}
	.article-div > p{
		font-size: 1vw;
		line-height: 2vw;
		margin: .5vw 0;
	}

	#date-div{
		width: 15vw;
		height: 3vw;
		line-height: 3vw;
		font-size: .9vw;
		color: #666;
		margin: 0 40vw;
		text-align: center;
		background-color: #eee;
		border-radius: 0 0 1.5vw 1.5vw;
	}


	.line{
		display: flex;
		align-items: center;
		margin: 1vw 0;
	}
	.line-1{
		font-size: 1.2vw;
		font-weight: bold;
		margin-right: 1vw;
	}
	.line-2{
		width: 25vw;
		height: 1vw;
		border-radius: 1vw;
		background-color: #fff;
		overflow: hidden;
	}
	.line-2 > div{
		height: 1vw;
		background: linear-gradient(150deg, #E69D13 0%, #FB8B24 100%);
	}
	.line-3{
		font-size: 2vw;
		font-weight: bold;
		margin-left: 1vw;
		color: #E69D13;
	}


	.article-number{
		font-size: 15vw;
		line-height: 15vw;
		font-weight: bold;
		color: #666;
	}
}



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

	#media-main{
		width: 95vw;
		padding: 15vw 0 20vw 0;
		position: relative;
		background-size: cover;
		background-position: center;
		margin: 15vw 2.5vw 0 2.5vw;
		border-radius: 9vw 9vw 0 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		overflow: hidden;
		animation: up 1s backwards;
	}
	main::before{
		content: "";
		width: 100vw;
		height: 5vw;
		position: absolute;
		left: 0vw;
		top: -5vw;
		background-color: #fff;
	}
	#media-main::after{
		content: "";
		width: 95vw;
		height: 100%;
		background-color: #000;
		opacity: .2;
		position: absolute;
		left: 0;
		top: 0;
	}
	#media-main > h1{
		width: 80vw;
		font-size: 9.5vw;
		line-height: 12.5vw;
		color: #fff;
		text-align: center;
		z-index: 1;
	}
	#media-main > p{
		width: 80vw;
		font-size: 4vw;
		line-height: 8vw;
		color: #fff;
		text-align: center;
		margin: 5vw 10vw;
		z-index: 1;
	}


	#breadol{
		width: 95vw;
	    display: flex;
	    align-content: center;
	    justify-content: center;
	    list-style: none;
	    position: absolute;
	    left: 0vw;
	    bottom: 6vw;
	    padding: 15vw 0 0 0;
	    margin: 0;
	    z-index: 1;
	}
	#breadol > li{
	    font-size: 3.6vw;
	    color: #fff;
	    line-height: 3vw;
	    display: flex;
	}
	#breadol > li > a{
	    color: #fff;
	    margin-right: 6vw;
	    display: block;
	    position: relative;
	    font-weight: bold;
	}
	#breadol > li > a::after{
		content: "";
		display: block;
		width: .6vw;
		height: 3.6vw;
		background-color: #fff;
		position: absolute;
		top: -.3vw;
		right: -3.3vw;		
	}
	#media-text{
		width: 95vw;
		margin: 0 2.5vw;
		animation: up 1s backwards;
		animation-delay: .2s;
	}
	#media-text > article{
		width: 95vw;
		margin: 3vw 0;
		background-color: #f6f6f6;
		position: relative;
	}
	#media-text > article::before{
		content: "";
		width: 95vw;
		height: 95vw;
		position: absolute;
		bottom: 0;
		left: 0;
		background-color: #eee;
	}
	#media-text > article:last-of-type{		
		border-radius: 0 0 9vw 9vw;
		overflow: hidden;
	}
	.article-img{
		width: 95vw;
		height: 95vw;
		position: relative;
		z-index: 1;
		border: none;
	}
	.article-div{
		width: 85vw;
		padding: 10vw 5vw;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	.article-div > h2{
		font-size: 8vw;
		line-height: 10vw;
		margin: 4vw 0;
	}
	.article-div > p{
		font-size: 4vw;
		line-height: 8vw;
		margin: 2vw 0;
	}
	.article-div > h3{
		font-size: 4vw;
		line-height: 8vw;
		margin: 2vw 0;
	}

	#date-div{
		width: 45vw;
		height: 9vw;
		line-height: 9vw;
		font-size: 2.7vw;
		color: #666;
		margin: 0 25vw;
		text-align: center;
		background-color: #eee;
		border-radius: 0 0 4.5vw 4.5vw;
	}


	.line{
		margin: 3vw 0;
	}
	.line-1{
		font-size: 6vw;
		font-weight: bold;
		margin-bottom: 3vw;
	}
	.line-2{
		width: 80vw;
		height: 4vw;
		border-radius: 4vw;
		background-color: #fff;
		overflow: hidden;
	}
	.line-2 > div{
		height: 4vw;
		background: linear-gradient(150deg, #E69D13 0%, #FB8B24 100%);
	}
	.line-3{
		font-size: 8vw;
		font-weight: bold;
		margin-top: 2vw;
		color: #E69D13;
	}


	.article-number{
		font-size: 45vw;
		line-height: 45vw;
		font-weight: bold;
		color: #666;
	}
}




