@charset "UTF-8";
#coupon div {
    box-sizing: border-box;
}
#coupon .mainimage {
    width: 100%;
    padding: 30px 20px;
    background: url(../img/bg_main.jpg) no-repeat center;
    background-size: cover;
    margin-bottom: 10px;
}
#coupon .mainimage .inner {
    max-width: 411px;
    width: 100%;
    padding: 20px;
    margin: 0 auto;
    background: rgba(255,255,255,0.85);
    text-align: center;
}
#coupon .mainimage .inner img {
    vertical-align: middle;
}


#coupon .contentArea {
    max-width: 1220px;
    margin: 0 auto 50px;
}


.couponArea {
    letter-spacing: -0.4em;
    padding-left: 10px;
    padding-right: 10px;
}
.couponArea > * {
    letter-spacing: normal;
}
.couponArea .coupon {
    display: inline-block;
    letter-spacing: normal;
    vertical-align: top;
    width: 48.333333333%;
    margin-bottom: 40px;
}
.couponArea .coupon:nth-child(2n+1) {
    margin-right: 3.333333333%;
}
.couponArea .coupon a {
    display: block;
    text-decoration: none;
}
.couponArea .coupon a .image {
    transition: opacity 0.2s ease;
    margin-bottom: 20px;
}
.couponArea .coupon a .tag {
    margin-bottom: 20px;
}
.couponArea .coupon a:hover .image {
    opacity: 0.7;
}
.couponArea .coupon img {
    vertical-align: bottom;
}
.couponArea .coupon a .title {
    font-size: 18px;
    padding-right: 30px;
    position: relative;
    color: #333;
    margin-bottom: 15px;
    display: inline-block;
}
.couponArea .coupon a .title:after {
    content: '';
    width: 7px;
    height: 10px;
    background: url(../img/icon_tri.png) no-repeat center center;
    position: absolute;
    top: 49%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 3px;
    /*transition: right 0.3s ease ,opacity 0.3s ease;*/
}
.couponArea .coupon a .title:before {
    content: '';
    width: 7px;
    height: 10px;
    background: url(../img/icon_tri.png) no-repeat center center;
    position: absolute;
    top: 49%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 12px;
    opacity: 0;
    /*transition: right 0.3s ease ,opacity 0.3s ease;*/
}
.couponArea .coupon a:hover .title:after {
	animation: arrowafter .5s;
}
.couponArea .coupon a:hover .title:before {
	animation: arrowbefore .5s;
}
@keyframes arrowbefore {
	100% {
        opacity: 1;
        right: 3px;
	}
}
@keyframes arrowafter {
	99% {
        opacity: 0;
        right: -6px;
	}
	100% {
		opacity: 0;
	}
}
.couponArea .coupon a:hover .title {
    color: #cd0035;
}
.couponArea .coupon a .text {
    color: #333;
    font-size: 14px;
    line-height: 2;
}
@media screen and (max-width:640px) {

    .couponArea .coupon {
        display: block;
        width: 100%;
        max-width: 580px;
        margin: 0 auto 30px;
    }
    .couponArea .coupon:nth-child(2n+1) {
        margin-right: auto;
    }
}

.backLink {
    text-align: center;
    margin-bottom: 80px;
}
.backLink a {
    display: inline-block;
    max-width: 280px;
    width: 100%;
    background: #cd0035;
    color: #fff;
    text-decoration: none;
    padding: 18px 0;
    border-radius: 4px;
    transition: opacity 0.2s ease;
}
.backLink a:hover {
    opacity: 0.7;
}
