@charset "Shift_JIS";

/*==============================================
共通 ここまで
================================================*/
#stamprally {
    max-width:900px;
    box-sizing: border-box;
    margin: 0 auto;
	padding-bottom:1.5em;
	background: rgb(170,208,250);
    background: linear-gradient(308deg, rgba(170, 208, 250, 1) 0%, rgb(137 207 253) 47%, rgb(249 255 255) 100%);
}
#stamprally  .smp_none{
    display: none !important;
}
#stamprally  img{
    width: 100%
}
#stamprally  a{
    display: block;
    position: relative;
}  
#stamprally  a:hover{
    opacity: 0.9;
}
/*==============================================
全体枠
================================================*/
#stamprally .bg {
    background: #42ade3;
    padding-bottom: 2em;
}
#stamprally section {
    margin: 2px auto;
    background: #FFF;
    padding: 2% 6%;
    max-width: 700px;
    box-sizing: border-box;
}
#stamprally section#stamp {
    border: 5px solid #f54142;
    margin-top:0;
    border-radius: 9px;
}
#stamprally section#period {
    margin-top: 2em;
}
/*==============================================
ボタン
================================================*/
.black-btn_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 1em;
}
.black-btn_wrap p{
    font-size: 1em;
    color: #fff;
    margin-bottom: 2%;
}
.black-btn {
    padding: .8em 0;
    background-color: #eb0012;
    color: #FFF !important;
    font-size: 1.1em;
    border-radius: 5px;
    margin: .5% auto 0;
    width: 50%;
    text-align: center;
}
.black-btn:hover{
    color: #FFF !important;
}
.black-btn:after {
    position: absolute;
    display: inline-block;
    vertical-align: middle;
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    top: 3%;
    bottom: 0;
    right: 8%;
    margin: auto;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all .3s ease 0s;
}
/*==============================================
テキスト
================================================*/
#stamprally p {
    font-size: 1em;
}
#stamprally h4 {
    font-size: 1.4em;
    color: #222;
    margin-bottom: .8%;
}
#stamprally .inner-img{
    text-align: center;
    margin-top: 1em;
}
/*==============================================
特典テーブル
================================================*/
#stamprally .gift-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: .5em;
}
#stamprally .gift-list dt,
#stamprally .gift-list dd {
    text-align: center;
    font-size: 1.5em;
    border: 1px solid #fff;
    padding: .3em 0;
    background: #fbf9e9;
}
#stamprally .gift-list dt {
    width: 39%;
    color: #e22c4a;
}
#stamprally .gift-list dd {
    width: 59%;
    color: #f16c38;
}
#stamprally .gift-list dt:nth-of-type(1){
    background:  #e22c4a;
    color: #fff;
}
#stamprally .gift-list dd:nth-of-type(1) {
    background: #f16c38;
    color: #fff;
}
/*==============================================
スタンプカード
================================================*/
#stamprally .stamp-list{
    display: grid;
    gap: 1em;
    grid-template-columns: repeat(4, 1fr);
    margin: 0 auto 1.5em auto;
    max-width: 500px;
}
#stamprally .stamp-list li{
    position: relative;
}
#stamprally .stamp-list li::before{
    content: '';
    bottom: -.4em;
    right: -.6em;
    width: 27%;
    height: 27%;
    position: absolute;
    background-image: url(/IMAGE/STAMPRALLY/yubi.webp);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    z-index: 3;
}
#stamprally .stamp-list li img{
    border-radius: 10px;
}
/***** liにclassがついた時の処理 *****/
/*共通*/
#stamprally .stamp-list li.clear::after,
#stamprally .stamp-list li.zumi::after {
    content: '';
    top: .1em;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 82%;
    background-position: center;
}
#stamprally .stamp-list li.clear img,
#stamprally .stamp-list li.zumi img{
    opacity: 0.5;
}
#stamprally .stamp-list li.clear::before,
#stamprally .stamp-list li.zumi::before{
    display: none;
}
/*clear*/
#stamprally .stamp-list li.clear::after {
    background-image: url(/IMAGE/STAMPRALLY/stamp_clear.webp);
}
/*zumi*/
#stamprally .stamp-list li.zumi::after {
    background-image: url(/IMAGE/STAMPRALLY/stamp_zumi.webp);
}