/* ↓2025/07/29 */
.pageTopLink {
    bottom: 100px;
}
.loginBannerBox {
    display: block;
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    opacity: 1;
    color: #F2F0F0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 200;
    height: 90px;
    transition: 1s;
}
.loginBannerBox.loginOffItem {
    display: none;
}
.loginBannerBox.hide {
    transform: translateY(90px);
}
.loginBannerBox .banner {
    padding-bottom: 10px;
    width: 100%;
    overflow: hidden;
    padding: 10px;
    box-sizing: border-box;
}

.loginBannerBox .banner p {
    font-size: 11px;
    font-weight: bold;
    padding: 0px 0 5px;
    width: calc(100% - 20px);
    letter-spacing: 0.05em;
    line-height: 1.25em;
}

a.buttonContents {
    border: 2px solid #d60113;
    border-radius: 5px;
    display: inline-flex;
    background-color: #fff4f4;
    color: #d60113;
    align-items: center;
    padding: 5px;
    justify-content: flex-start;
    font-weight: bold;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
}
.heaven-logo-images {
    width: 80px;
}
a.buttonContents img {
    width: 100%;
    object-fit: contain;
    margin: 0 5px 0 0;
}

.loginBannerBox .buttonContents .loginText {
    position: relative;
    display: inline-flex;
    padding: initial !important;
    height: 100%;
    width: calc(100% - 88px);
    align-items: center;
    justify-content: flex-start;
    font-weight: bold;
    font-size: 12px;
}
.loginText span {
    padding: 2px 0 0;
}
.loginText span.right-arrow {
    position: absolute;
    right: 0;
    width: 10px;
    padding: initial !important;
}

.loginText span.right-arrow:after {
    content: "";
    position: absolute;
    display: block;
    width: 5px;
    height: 5px;
    border-top: 2px solid #d60113;
    border-right: 2px solid #d60113;
    right: -4px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    margin: 0 10px 0 0;
}
/* ↑2025/07/29 */