#shopinfo {
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#CCffffff,endColorstr=#CCffffff); 
	background-color: rgba(255,255,255,0.8);
	box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
	display: block;
	margin-bottom: 80px;
	padding: 0;
	-webkit-transition: background-color .3s,box-shadow .3s;
	transition: background-color .3s,box-shadow .3s;
	width: 100%;
	min-width: 980px;
}

#shopinfo:not(:target) {
	filter:none;
}

#shopinfo:hover {
	background-color: rgba(255,255,255,0.9);
	box-shadow:0px 0px 30px 0px rgba(0,0,0,0.2);
} 

#shopinfo .container {
	padding: 20px;
	box-sizing: border-box;
	display: table;
}

#shopinfo .logo {
	display: table-cell;
	width: 100px;
}

.shop_ttl {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	padding-right: 100px;
	box-sizing: border-box;
}

.floor {
	font-size: 14px;
	color: #222;
	border: 2px solid #222;
	letter-spacing: 0.1em;
	display: inline-block;
	border-radius: 8px;
	padding: 2px 10px;
	margin-bottom: 5px;
	min-width: 60px;
}

.floor > span {
	margin: 0 5px;
}

.shop_name {
	font-size: 24px;
	line-height: 1.5;
	color: #222;
}

.category {
	font-size: 16px;
	line-height: 1.25;
	color: #222;
}

#coupon {
	background: #e85647;
	position: relative;
	width: 560px;
	margin: 0 auto 20px;
}

#coupon .new {
	content: '';
	position: absolute;
	top: 8px;
	right: 8px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 64px 64px 0;
	border-color: transparent #fff transparent transparent;
}

#coupon .new:after {
	position: absolute;
	top: 14px;
	right: -62px;
	font-size: 16px;
	content: 'NEW';
	font-family: 'Roboto Slab', serif ;
	-webkit-font-smoothing: antialiased;
	color: #e85747;
	font-weight: 700;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

#coupon .ttl {
	text-align: center;
	padding: 20px 0;
	font-size: 20px;
	letter-spacing: 0.05em;
	border-bottom: 2px dashed #fff;
}

#coupon .ttl > span {
	display: block;
	margin-top: 10px;
	font-weight: 700;
}

#coupon .detail {
	padding: 40px;
}

#coupon .brand {
	text-align: center;
	font-size: 16px;
	margin-bottom: 8px;
	line-height: 1.5;
}

#coupon .txt {
	font-weight: bold;
	font-size: 20px;
	text-align: center;
	line-height: 1.2;
	margin-bottom: 8px;
}

#coupon .coupon_name {
	font-weight: bold;
	font-size: 28px;
	line-height: 1.5;
	margin-bottom: 8px;
}

#coupon .link {
	font-size: 18px;
	line-height: 1.5;
	margin-bottom: 16px;
	text-align: center;
}

#coupon .link a {
	color: #fff;
	text-decoration: underline;
	padding-left: 20px;
	background: url(/img/pc/dwc/icon_tab.svg) no-repeat left center;
}

#coupon .link a:hover {
	text-decoration: none;
}

#coupon .note {
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 12px;
}

#coupon .expiration_date {
	font-size: 18px;
	line-height: 1.2;
	text-align: right;
	font-weight: bold;
}

.btn-print {
	width: 280px;
	margin: 0 auto 80px;
	color: #fff;
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	padding: 15px 0px;
	border-radius: 8px;
	border: 2px solid #fff;
	box-sizing: border-box;
	letter-spacing: .1em;
	position: relative;
	overflow: hidden;
	display: block;
}

.btn-print:before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	-webkit-transition: background-color .3s;
	transition: background-color .3s;
	background: rgba(0,0,0,0.4) ;
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#66000000,endColorstr=#66000000); 
}

.btn-print:hover:before {
	background: #ffffff;
	background: rgba(255,255,255,1) ;
}

.btn-print:before:not(:target) {
	filter: none;
}

.btn-print:hover {
	color: #000;
}

.btn-print .icon {
	position: absolute;
	top: 50%;
	right: 20px;
	margin-top: -8px;
	width: 12px;
	height: 16px;
	overflow: hidden;
}

.btn-print .cls-1 {
	fill: #fff;
}

.btn-print:hover .cls-1 {
	fill: #000;
}

.btn_index {
	display: block;
	width: 560px;
	margin: 0 auto 80px;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	color: #222;
	padding: 31px 0px;
	background-color: rgb(255,255,255);
	letter-spacing: .1em;
	-webkit-transition: background-color .4s;
	transition: background-color .4s;
	position: relative;
	overflow: hidden;
}

.btn_index:hover {
	background-color: rgb(34,34,34);
	color: #fff;
}

.btn_index .arrow {
	position: absolute;
	top: 50%;
	left: 15px;
	margin-top: -7px;
	opacity: 1;
}

.btn_index:hover .arrow {
	animation: arrow .5s ;
}

.btn_index:hover .arrow .cls-1 {
	fill: #fff;
	fill-rule: evenodd;
}

@keyframes arrow {
	30% {
		left: 15px;
		opacity: 0;
	}
	50% {
		left: 35px;
		opacity: 0;
	}
	100% {
		left: 15px;
		opacity: 1;
	}
}

@media screen and (max-width: 640px) {
	#shopinfo {
		margin-bottom: 30px;
		min-width: 100%;
	}

	#shopinfo .container {
		padding: 10px;
	}

	#shopinfo .logo {
		width: 72px;
		height: 72px;
	}

	#shopinfo .logo img {
		width: 100%;
		height: auto;
	}

	.shop_ttl {
		text-align: left;
		padding-left: 20px;
		padding-right: 0;
	}

	.floor {
		font-size: 10px;
		border: 1px solid #222;
		border-radius: 4px;
		padding: 0px 4px;
		margin-bottom: 5px;
		margin-right: 10px;
		min-width: initial;
	}

	.floor > span {
		margin: 0 2px;
	}

	.shop_name {
		display: inline-block;
		vertical-align: middle;
		font-size: 18px;
		line-height: 1.3;
	}

	.category {
		font-size: 12px;
	}

	#coupon {
		width: 100%;
		margin-bottom: 40px;
	}

	#coupon .new {
		border-width: 0 44px 44px 0;
	}

	#coupon .new:after {
		top: 6px;
		right: -42px;
		font-size: 10px;
	}

	#coupon .ttl {
		padding: 10px 0;
		font-size: 14px;
	}

	#coupon .ttl img {
		width: 39px;
	}

	#coupon .detail {
		padding: 20px;
	}

	#coupon .brand {
		font-size: 12px;
		margin-bottom: 8px;
	}

	#coupon .txt {
		font-size: 14px;
	}

	#coupon .coupon_name {
		font-size: 20px;
	}

	#coupon .link {
		font-size: 14px;
		margin-bottom: 12px;
	}

	#coupon .note {
		font-size: 12px;
	}

	#coupon .expiration_date {
		font-size: 14px;
	}

	.btn-print {
		display: none;
	}

	.btn_index {
		font-size: 14px;
		padding: 16px 0;
		width: 100%;
		margin-bottom: 40px;
	}

	.btn_index .arrow {
		left: 10px;
	}

	@keyframes arrow {
		30% {
			left: 10px;
			opacity: 0;
		}
		50% {
			left: 30px;
			opacity: 0;
		}
		100% {
			left: 10px;
			opacity: 1;
		}
	}
}
