@charset "utf-8";
/* CSS Document */
	body{
		background: #FFF;
		margin: 0;
		font-size: 13px;
		font-family: 'M PLUS Rounded 1c', sans-serif;
	}

	*{
		box-sizing: border-box;
	}

	a {
		text-decoration: none;
		color: inherit;
	}

	footer{
		background: #000;
		color: #FFF;
		text-align: center;
	}
/* PC */
@media screen and (min-width: 768px) {

	img{
		width: 100%;
		height: auto;
		vertical-align: bottom;
	}
	.page_wrap{
		width: 100%;
		max-width: 1000px;
		margin: 0 auto;
		box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
	}
	
	.ranking{
		padding: 3rem 0;
	}
	
	.ranking_list{
		display: grid;
		grid-template-columns: 1fr 1fr 1fr 1fr;
		grid-gap: 2rem;
		padding: 2rem 2rem 4rem;
		border-bottom: 1px solid #eee;
	}
	
	.product_item{
		padding:0 0 1.5rem;
	}
	
	.product_item img{
		margin-bottom: 0.5rem;
	}
	
	.product_item span{
		display: block;
		text-align: center;
		font-weight: 700;
		line-height: 1.5rem;
	}
	.product_item span.product_price:before{
		content: "￥";
		display: inline-block;
	}
	.product_item span.product_price:after{
		content: "（税込）";
		display: inline-block;
		font-size: 0.6rem;
	}
	.product_link {
		background: #ef841a;
		color: #000;
		margin: 0.5rem auto;
		line-height: 3rem !important;
		border-radius: 1.5rem;
		width: 80%;
	}
	.product_link:after {
		content: "\f105";
		font-family: "FontAwesome";
		display: inline-block;
		margin-left: 0.5rem;
	}
	
	.twitter a{
		pointer-events: none;
	}
	footer{
		font-size: 0.8rem;
		line-height: 2rem;
	}
	.go_to {
		position: fixed;
		bottom: 60px;
		left: 50%;
		width: 320px;
		opacity: 0;
		transform: translateX(50%);
	}

}
/* SP */
@media screen and (max-width: 767px) {

	img{
		width: 100%;
		height: auto;
		vertical-align: bottom;
	}
	.page_wrap{
		width: 100%;
		margin: 0 auto;
	}
	
	
	.ranking{
		padding: 3rem 0;
	}
	
	.ranking_list{
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-gap: 1rem;
		padding: 2rem 1rem;
		border-bottom: 1px solid #eee;
	}
	
	.product_item{
		padding:0 0 1.5rem;
	}
	
	.product_item img{
		margin-bottom: 0.5rem;
	}
	
	.product_item span{
		display: block;
		text-align: center;
		font-weight: 700;
		line-height: 1.5rem;
	}
	.product_item span.product_price:before{
		content: "￥";
		display: inline-block;
	}
	.product_item span.product_price:after{
		content: "（税込）";
		display: inline-block;
		font-size: 0.6rem;
	}
	.product_link {
		background: #ef841a;
		color: #000;
		margin: 0.5rem auto;
		line-height: 3rem !important;
		border-radius: 1.5rem;
		width: 80%;
	}
	.product_link:after {
		content: "\f105";
		font-family: "FontAwesome";
		display: inline-block;
		margin-left: 0.5rem;
	}

	
	.twitter {
		padding-bottom: 6rem;
	}
	
	
	footer{
		font-size: 0.8rem;
		line-height: 2rem;
	}
	.go_to {
		position: fixed;
		bottom: 30px;
		left: 50%;
		width: 70%;
		transform: translateX(-50%);
		opacity: 0;
	}	
	
	
}