@charset "UTF-8";
/* CSS Document */

/*========= フローティングバナー ===============*/
.banner {
    position: fixed;
    margin: 15px 10px;
    z-index: 99998;
    bottom: 350px;
    right: 0;
}
.banner a {
    text-decoration: none;
}

.banner-icon {
    color: #f8f8f8;
    font-size: 35px;
}

.banner-back {
    width: 80px;
    background-color: #fff;
    border-radius: 25px;
}

.banner-top {
    padding: 20px;
    border-radius: 25px 25px 0px 0px;
    background: -moz-radial-gradient(#EBD7E3, #A35160 70%);
    background: -webkit-radial-gradient(#EBD7E3, #a35160 70%);
    background: radial-gradient(#EBD7E3, #a35160 70%);
}

.banner-copy{
	font-size: 24px;
	display: table-cell;
	position: relative;
	text-align: center;
	vertical-align: middle;
	writing-mode: vertical-rl;
}

.banner-bottom {
    padding: 25px 0px 30px 13px;
	line-height: 1.6;
}

.banner-body {
    width: 80px;
    background: #a35160;
    color: #f8f8f8;
    font-weight: bold;
    text-align: center;
    border-radius: 25px;
    -webkit-box-shadow: 0 0 7px rgb(0 0 0 / 40%);
    box-shadow: 0 0 7px rgb(0 0 0 / 40%);
}
.banner-body:hover {
    transition: opacity 0.3s ease;
    opacity: 0.7;
}

.banner-close {
    font-weight: bold;
    position: absolute;
    top: -2px;
    right: -4px;
    z-index: 99999;
    padding: 6px 8px;
    border: none;
    background-color: #f8f8f8;
    border-radius: 25px;
    cursor: pointer;
    -webkit-box-shadow: 0 0 7px rgb(0 0 0 / 40%);
    box-shadow: 0 0 7px rgb(0 0 0 / 40%);
}

@media screen and (max-width: 750px) {
	.banner {
        width: 100%;
        margin: 0px;
		bottom: 0 !important;
   }
  .banner-icon {
        font-size: 28px;
    }
    .banner-body {
        width: 100%;
        border-radius: 0px;
    }
    .banner-back {
        width: 100%;
        margin: 0px auto;
        border-radius: 0px;
    }
    .banner-top {
        padding: 5px;
        border-radius: 0px;
        background: -moz-linear-gradient(#A35160 50%, #EBD7E3);
        background: -webkit-linear-gradient(#A35160 50%, #EBD7E3);
        background: linear-gradient(#A35160 50%, #EBD7E3);
    }
    .banner-bottom {
         display: none;
    }
    .banner-copy {
        display: none;
	}
   .banner-copy::after {
        font-size: 12px;
        margin-top: 1.4px;
        margin-left: 12px;
        top: initial;
        right: initial;
    }
    .banner-close {
        top: 8px;
        right: 15px;
    }
    .banner-copy-br {
        display: none;
    }
}