@charset "utf-8";

/* PC
-------------------------------------------------- */
@media screen and (min-width:1200px){
	#top{
		background: #000000;
		padding: 60px 0 100px;
	}

	.mv{
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
	}

	.mv img{
		width: 100%;
	}

	h1{
		font-size: 24px;
		color: #ffffff;
		text-align: center;
		margin: 40px 0 60px;
	}

	.schedule{
		box-sizing: border-box;
		width: 90%;
		max-width: 600px;
		margin: 0 auto;
		border-top: 1px solid #ffffff;
		border-bottom: 1px solid #ffffff;
		padding: 40px 0;
	}

	.dete{
		color: #ffffff;
		font-family: 'Oswald', 'Noto Sans JP', '游ゴシック', YuGothic, 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
		font-size: 34px;
		line-height: 34px;
		font-weight: 400;
		text-align: center;
	}

	.dete sub{
		font-size: 18px;
		vertical-align: baseline;
		margin-left: 0.2em;
		margin-right: 0.2em;
	}

	.txt{
		font-size: 14px;
		text-align: center;
		color: #ffffff;
		margin: 30px 0 0;
		line-height: 2em;
		letter-spacing: 0.05em;
		position: relative;
	}
	
	.txt .spOnly{
		display: none;
	}

	.txt::after{
		content: "";
		display: block;
		width: 50px;
		height: 1px;
		background: #ffffff;
		margin: 40px auto;	
	}

	.price{
		text-align: center;
		color: #e4bc00;
		font-size: 20px;
		font-weight: 600;
		margin-top: 50px;
	}

	.price span{
		font-size: 15px;
	}

	.linkwrap{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		box-sizing: border-box;
		width: 90%;
		max-width: 620px;
		margin: 50px auto 0;
	}

	.linkwrap .item,
	.linkwrap .shop{
		display: block;
		box-sizing: border-box;
		width: 50%;
		max-width: 300px;
		text-align: center;
		font-size: 14px;
		padding: 20px 0;
		text-decoration: none;
		position: relative;
		overflow: hidden;
		z-index: 1;
	}

	.linkwrap .item{
		background: #cc0000;
		color: #ffffff;
	}

	.linkwrap .shop{
		background: #ffffff;
		color: #000000;
		border: 1px solid #cccccc;
	}

	.linkwrap .item::before{
		background: #e4bc00;
		position: absolute;
		top: 0;
		left: 0;
		content: "";
		width: 100%;
		transform: skewY(-10deg) scale(1, 0);
		height: 140px;
		transform-origin: left top;
		transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
		z-index: -1;
	}
	.linkwrap .item:hover::before{transform: skewY(-10deg) scale(1, 1);}

	.linkwrap .shop::before{
		background: #cccccc;
		position: absolute;
		top: 0;
		left: 0;
		content: "";
		width: 100%;
		transform: skewY(-10deg) scale(1, 0);
		height: 140px;
		transform-origin: left top;
		transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
		z-index: -1;
	}
	.linkwrap .shop:hover::before{transform: skewY(-10deg) scale(1, 1);}

	.linkwrap .item::after,
	.linkwrap .shop::after{
		display: block;
		content: "";
		width: 14px;
		height: 14px;
		position: absolute;
		top: 50%;
		right: 20px;
		transform: rotate(45deg);
		margin-top: -8px;
		/*transition: 0.3s;*/
	}

	.linkwrap .item::after{
		border-top: 1px solid #ffffff;
		border-right: 1px solid #ffffff;
	}

	.linkwrap .shop::after{
		border-top: 1px solid #000000;
		border-right: 1px solid #000000;
	}

	#lineup,
	#award{
		padding-top: 100px;
		background: #efefef;
	}

	#award{
		padding-bottom: 100px;
	}

	#theme{
		padding: 100px 0;
	}

	#card{
		padding: 100px 0;
		background: #e4bc00;
	}

	#pickup{
		padding: 100px 0;
		background: #efefef;
	}

	#lineup h2{
		font-size: 38px;
		text-align: center;
		font-weight: normal;
	}

	#lineup ul{
		display: flex;
		justify-content: space-between;
		width: 100%;
		max-width: 1200px;
		margin: 100px auto 0;
	}

	#lineup ul li{
		width: 33%;
		max-width: 386px;
	}

	#lineup ul a{
		display: block;
		box-sizing: border-box;
		background: #ffffff;
		border: 1px solid #e4bc00;
		border-radius: 6px;
		color: #000000;
		text-decoration: none;
		font-size: 16px;
		font-weight: 600;
		padding: 20px 0;
		text-align: center;
		position: relative;
		transition: 0.3s;
	}
	#lineup ul a:hover{
		background: #e4bc00;
		color: #ffffff;
	}

	#lineup ul a::after{
		display: block;
		content: "";
		width: 10px;
		height: 10px;
		position: absolute;
		top: 50%;
		right: 20px;
		transform: rotate(45deg);
		margin-top: -8px;
		transition: 0.3s;
	}

	#lineup ul a::after{
		border-right: 1px solid #000000;
		border-bottom: 1px solid #000000;
	}
	#lineup ul a:hover::after{
		border-right: 1px solid #ffffff;
		border-bottom: 1px solid #ffffff;
	}

	h3{
		font-size: 24px;
		font-weight: 600;
		text-align: center;
	}

	.represent{
		display: flex;
		justify-content: center;
		margin: 100px auto 0;
	}

	.represent li{
		width: 50%;
		max-width: 470px;
		margin: 0 10px 20px;
	}

	.represent li img{
		width: 100%;
	}

	.premiumList{
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		max-width: 1200px;
		margin: 0 auto 100px;
		gap: 6px;
	}

	.premiumList li{
		width: 100%;
		max-width: 195px;
	}

	.premiumList li img{
		width: 100%;
	}

	.osusume{
		display: flex;
		justify-content: center;
		gap: 0 20px;
		margin-top: 100px;
	}

	.osusume li{
		width: 100%;
		max-width: 270px;
	}

	.osusume li img{
		width: 100%;
	}

	.osusume li a:hover{
		opacity: 0.8;
	}
}

/* SP
-------------------------------------------------- */
@media screen and (max-width:1199px){
	#top{
		background: #000000;
		padding: 0px 0 50px;
	}

	.mv{
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
	}

	.mv img{
		width: 100%;
	}

	h1{
		font-size: 18px;
		color: #ffffff;
		text-align: center;
		margin: 40px 0 40px;
	}

	.schedule{
		box-sizing: border-box;
		width: 90%;
		max-width: 600px;
		margin: 0 auto;
		border-top: 1px solid #ffffff;
		border-bottom: 1px solid #ffffff;
		padding: 40px 0;
	}

	.dete{
		color: #ffffff;
		font-family: 'Oswald', 'Noto Sans JP', '游ゴシック', YuGothic, 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
		font-size: 22px;
		line-height: 22px;
		font-weight: 400;
		text-align: center;
	}

	.dete sub{
		font-size: 16px;
		vertical-align: baseline;
		margin-left: 0.2em;
		margin-right: 0.2em;
	}

	.txt{
		font-size: 14px;
		text-align: center;
		color: #ffffff;
		margin: 30px 0 0;
		line-height: 1.8em;
		letter-spacing: 0.05em;
		position: relative;
	}
	
	.txt .spOnly{
		display: block;
	}

	.txt::after{
		content: "";
		display: block;
		width: 50px;
		height: 1px;
		background: #ffffff;
		margin: 40px auto;	
	}

	.price{
		text-align: center;
		color: #e4bc00;
		font-size: 20px;
		font-weight: 600;
		margin-top: 40px;
	}

	.price span{
		font-size: 15px;
	}

	.linkwrap{
		display: flex;
		flex-wrap: wrap;
		flex-wrap: wrap;
		box-sizing: border-box;
		width: 90%;
		max-width: 620px;
		margin: 30px auto 0;
	}

	.linkwrap .item,
	.linkwrap .shop{
		display: block;
		box-sizing: border-box;
		width: 100%;
		max-width: 300px;
		text-align: center;
		font-size: 14px;
		padding: 15px 0;
		text-decoration: none;
		position: relative;
		overflow: hidden;
		z-index: 1;
		margin: 10px auto;
	}

	.linkwrap .item{
		background: #cc0000;
		color: #ffffff;
	}

	.linkwrap .shop{
		background: #ffffff;
		color: #000000;
		border: 1px solid #cccccc;
	}

	.linkwrap .item::before{
		background: #e4bc00;
		position: absolute;
		top: 0;
		left: 0;
		content: "";
		width: 100%;
		transform: skewY(-10deg) scale(1, 0);
		height: 140px;
		transform-origin: left top;
		transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
		z-index: -1;
	}
	.linkwrap .item:hover::before{transform: skewY(-10deg) scale(1, 1);}

	.linkwrap .shop::before{
		background: #cccccc;
		position: absolute;
		top: 0;
		left: 0;
		content: "";
		width: 100%;
		transform: skewY(-10deg) scale(1, 0);
		height: 140px;
		transform-origin: left top;
		transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
		z-index: -1;
	}
	.linkwrap .shop:hover::before{transform: skewY(-10deg) scale(1, 1);}

	.linkwrap .item::after,
	.linkwrap .shop::after{
		display: block;
		content: "";
		width: 14px;
		height: 14px;
		position: absolute;
		top: 50%;
		right: 20px;
		transform: rotate(45deg);
		margin-top: -8px;
		/*transition: 0.3s;*/
	}

	.linkwrap .item::after{
		border-top: 1px solid #ffffff;
		border-right: 1px solid #ffffff;
	}

	.linkwrap .shop::after{
		border-top: 1px solid #000000;
		border-right: 1px solid #000000;
	}

	#lineup,
	#award{
		padding-top: 50px;
		background: #efefef;
	}

	#award{
		padding-bottom: 50px;
	}

	#theme{
		padding: 50px 0;
	}

	#card{
		padding: 50px 0;
		background: #e4bc00;
	}

	#pickup{
		padding: 50px 0;
		background: #efefef;
	}

	#lineup h2{
		font-size: 24px;
		text-align: center;
		font-weight: normal;
	}

	#lineup ul{
		width: 90%;
		max-width: 1200px;
		margin: 40px auto 0;
	}

	#lineup ul li{
		width: 100%;
		margin-top: 10px;
	}

	#lineup ul a{
		display: block;
		box-sizing: border-box;
		background: #ffffff;
		border: 1px solid #e4bc00;
		border-radius: 6px;
		color: #000000;
		text-decoration: none;
		font-size: 14px;
		font-weight: 600;
		padding: 15px 0;
		text-align: center;
		position: relative;
		transition: 0.3s;
	}
	#lineup ul a:hover{
		background: #e4bc00;
		color: #ffffff;
	}

	#lineup ul a::after{
		display: block;
		content: "";
		width: 10px;
		height: 10px;
		position: absolute;
		top: 50%;
		right: 20px;
		transform: rotate(45deg);
		margin-top: -8px;
		transition: 0.3s;
	}

	#lineup ul a::after{
		border-right: 1px solid #000000;
		border-bottom: 1px solid #000000;
	}
	#lineup ul a:hover::after{
		border-right: 1px solid #ffffff;
		border-bottom: 1px solid #ffffff;
	}

	h3{
		font-size: 16px;
		font-weight: 600;
		text-align: center;
	}

	.represent{
		width: 90%;
		display: flex;
		justify-content: space-between;
		margin: 50px auto 0;
	}

	.represent li{
		width: 49%;
		margin: 2% 0 3%;
	}

	.represent li img{
		width: 100%;
	}

	.premiumList{
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		width: 90%;
		max-width: 1200px;
		margin: 0 auto 50px;
		gap: 3%;
	}

	.premiumList li{
		width: 31%;
		margin-bottom: 3%;
	}

	.premiumList li img{
		width: 100%;
	}

	.osusume{
		display: flex;
		justify-content: center;
		width: 90%;
		gap: 0 10px;
		margin: 50px auto 0;
	}

	.osusume li{
		width: 100%;
		max-width: 270px;
	}

	.osusume li img{
		width: 100%;
	}

	.osusume li a:hover{
		opacity: 0.8;
	}
}