@charset "utf-8";

/* PC
-------------------------------------------------- */
@media screen and (min-width:1160px){
	main{
		background: #f3f3f3;
		padding: 10vh 0;
	}

	.mainInner{
		box-sizing: border-box;
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
	}

	.title_en{
		font-size: 40px;
		line-height: 40px;
		font-weight: 900;
		color: #000000;
		text-align: center;
		letter-spacing: 0.05em;
	}

	.title_jp{
		display: block;
		text-align: center;
		font-size: 14px;
		font-weight: 600;
		color: #333333;
		margin-top: 10px;
	}

	.flexWrap{
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		max-width: 1200px;
		margin: 10vh auto 0;
	}

	/* 商品個別枠 */
	.block{
		box-sizing: border-box;
		width: 100%;
		max-width: 390px;
		background: #ffffff;
		padding: 30px;
		margin: 0 15px 30px 0;
		box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
	}

	.block:nth-child(3n){
		margin-right: 0;
	}

	.date{
		font-size: 14px;
		color: #cc0000;
	}

	.itemLink{
		display: flex;
		justify-content: space-between;
		box-sizing: border-box;
		margin-top: 20px;
		text-decoration: none;
		color: #333333;
	}

	.itemLink:hover{
		text-decoration: underline;
	}

	.itemImg{
		width: 100%;
		max-width: 50px;
	}

	.itemImg img{
		width: 100%;
	}

	.itemName{
		width: 100%;
		max-width: 270px;
		font-size: 14px;
	}

	.gallery{
		margin-top: 30px;
	}

	.gallery img{
		width: 100%;
	}

	.slick-dots{
		display: flex;
		justify-content: center;
		width: 100%;
		margin: 20px auto 0;
	}

	.slick-dots li button{
		display: block;
		box-sizing: border-box;
		width: 8px;
		height: 8px;
		border-radius: 100%;
		border: none;
		background: #ccc;
		text-indent: 100%;
		overflow: hidden;
		margin: 0 5px;
	}

	li.slick-active button{
		background: #333333;
	}

	.movie{
		margin-top: 30px;
		border-top: 1px solid #cccccc;
	}

	.movie p{
		display: block;
		box-sizing: border-box;
		border-bottom: 1px solid #cccccc;
	}

	.movie p a{
		display: flex;
		align-items: center;
		justify-content: space-between;
		box-sizing: border-box;
		font-size: 14px;
		text-decoration: none;
		color: #333333;
		padding: 15px 5px;
		transition: 0.2s;
	}

	.movie i{
		font-size: 14px;
	}

	.movie p a:hover{
		color: #ffffff;
		background: #333333;
	}

	.topLink{
		width: 100%;
		max-width: 510px;
		margin: 5vh auto 0;
		box-shadow: 0 0 4px 0 #c2c2c2;
		overflow: hidden;
	}

	.topLink  a{
		position: relative;
		z-index: 1;
		display: block;
		box-sizing: border-box;
		width: 100%;
		background: url("../img/arrow_right_bk.svg") right 10px center no-repeat, linear-gradient(#ffffff, #f7f7f7);
		background-size: 14px auto, auto;
		text-align: center;
		font-size: 14px;
		text-decoration: none;
		line-height: 60px;
		color: #333333;
		font-weight: 500;
		border-radius: 4px;
		letter-spacing: 0.05em;
		transition: 0.2s;
	}

	.topLink a:hover{
		color: #ffffff;
	}

	.topLink a::before{
		content: "";
		position: absolute;
		inset: 0;
		z-index: -1;
		background: url("../img/arrow_right_wh.svg") right 10px center no-repeat, linear-gradient(#333333, #333333);
		background-size: 14px auto, auto;
		opacity: 0;
		transition: 0.2s;
	}

	.topLink a:hover::before{
		opacity: 1;
		background: url("../img/arrow_right_wh.svg") right 10px center no-repeat, linear-gradient(#333333, #333333);
		background-size: 14px auto, auto;
	}
}

/* SP
-------------------------------------------------- */
@media screen and (max-width:1159px){
	main{
		background: #f3f3f3;
		padding: 6vh 0;
	}

	.mainInner{
		box-sizing: border-box;
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
	}

	.title_en{
		font-size: 30px;
		line-height: 1.2em;
		font-weight: 900;
		color: #000000;
		text-align: center;
		letter-spacing: 0.05em;
	}

	.title_jp{
		display: block;
		text-align: center;
		font-size: 14px;
		font-weight: 600;
		color: #333333;
		margin-top: 10px;
	}

	.flexWrap{
		box-sizing: border-box;
		width: 100%;
		margin: 6vh auto 0;
		padding: 0 10px;
	}

	/* 商品個別枠 */
	.block{
		box-sizing: border-box;
		width: 100%;
		background: #ffffff;
		padding: 30px;
		margin-bottom: 30px;
		box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
	}

	.date{
		font-size: 14px;
		color: #cc0000;
	}

	.itemLink{
		display: flex;
		justify-content: space-between;
		box-sizing: border-box;
		margin-top: 20px;
		text-decoration: none;
		color: #333333;
	}

	.itemLink:hover{
		text-decoration: underline;
	}

	.itemImg{
		width: 15%;
		max-width: 45px;
	}

	.itemImg img{
		width: 100%;
	}

	.itemName{
		width: 80%;
		max-width: 270px;
		font-size: 14px;
	}

	.gallery{
		margin-top: 30px;
	}

	.gallery img{
		width: 100%;
	}

	.slick-dots{
		display: flex;
		justify-content: center;
		width: 100%;
		margin: 20px auto 0;
	}

	.slick-dots li button{
		display: block;
		box-sizing: border-box;
		width: 8px;
		height: 8px;
		border-radius: 100%;
		border: none;
		background: #ccc;
		text-indent: 100%;
		overflow: hidden;
		margin: 0 5px;
	}

	li.slick-active button{
		background: #333333;
	}

	.movie{
		margin-top: 30px;
		border-top: 1px solid #cccccc;
	}

	.movie p{
		display: block;
		box-sizing: border-box;
		border-bottom: 1px solid #cccccc;
	}

	.movie p a{
		display: flex;
		align-items: center;
		justify-content: space-between;
		box-sizing: border-box;
		font-size: 14px;
		text-decoration: none;
		color: #333333;
		padding: 15px 5px;
		transition: 0.2s;
	}

	.movie i{
		font-size: 14px;
	}

	.movie p a:hover{
		color: #ffffff;
		background: #333333;
	}

	.topLink{
		width: 95%;
		margin: 5vh auto 0;
		box-shadow: 0 0 4px 0 #c2c2c2;
		overflow: hidden;
	}

	.topLink  a{
		position: relative;
		z-index: 1;
		display: block;
		box-sizing: border-box;
		width: 100%;
		background: url("../img/arrow_right_bk.svg") right 10px center no-repeat, linear-gradient(#ffffff, #f7f7f7);
		background-size: 14px auto, auto;
		text-align: center;
		font-size: 14px;
		text-decoration: none;
		line-height: 60px;
		color: #333333;
		font-weight: 500;
		border-radius: 4px;
		letter-spacing: 0.05em;
		transition: 0.2s;
	}

	.topLink a:hover{
		color: #ffffff;
	}

	.topLink a::before{
		content: "";
		position: absolute;
		inset: 0;
		z-index: -1;
		background: url("../img/arrow_right_wh.svg") right 10px center no-repeat, linear-gradient(#333333, #333333);
		background-size: 14px auto, auto;
		opacity: 0;
		transition: 0.2s;
	}

	.topLink a:hover::before{
		opacity: 1;
		background: url("../img/arrow_right_wh.svg") right 10px center no-repeat, linear-gradient(#333333, #333333);
		background-size: 14px auto, auto;
	}
}