.footer-contents {
    background: rgba(50, 50, 50, 0.7);
    box-shadow: 0 -1px 2px rgb(0, 0, 0, 0.3);
    position: fixed;
    bottom: 0;
    z-index: 104;
    height: 60px;
    width: 100%;
    overflow: hidden;
    display:  none;
}

@media screen and (max-width:767px){
    .footer-contents {
        display:  block;
    }
}

.login-container {
    display: flex;
    justify-content: space-between;
    text-align: center;
    padding: 0;
    margin: 5px auto;
    width: 100%;
    max-width: 1000px;
    list-style: none;
}

.login-container li {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.icon-container {
    width: auto;
    height: 30px;
    margin-bottom: 5px;
}

img.icon.chat-icon {
    width: 32px;
    height: auto;
    padding: 3px;
    filter: none;
    margin-right: 0;
}

img.icon.okinitalk-icon.chat {
    width: 32px;
}

img.icon.okinitalk-icon {
    width: 45px;
    height: auto;
    padding: 3px;
    filter: none;
    margin-right: 0;
}

img.icon.myshop-icon {
    width: 30px;
    height: auto;
    filter: none;
    margin-right: 0;
}

img.icon.mygirl-icon {
    width: 30px;
    height: auto;
    padding: 4px;
    filter: none;
    margin-right: 0;
}

img.icon.mypage-icon {
    width: 30px;
    height: auto;
    filter: none;
    margin-right: 0;
}

.text-container {
    margin-top: 5px;
    text-align: center;
}

.login-container li a {
    display: block;
    font-size: 12px;
    color: #fff;
    text-decoration: none;
}

.login-container li span {
    display: block;
    margin-top: 5px;
}

/*　↓ 未ログイン時 */
.guest-footer__container {
    height: 60px;
    margin: 0 auto;
    padding: 0.5em;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .5rem;
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
    width: 100%;
    box-sizing: border-box;
}

.guest-footer__item {
    flex: 1;
}

.guest-footer__button {
    width: auto;
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    color: #333;
}

.guest-footer__button-register {
    min-width: 150px;
    background-color: #a01b1f;
}

.guest-footer__button-register span {
    color: #fff;
}

.guest-footer__button-login {
    min-width: 100px;
    background-color: #fff;
}

.guest-footer__button-text {
    text-align: center;
}

.guest-footer__button-text span {
    white-space: nowrap;
}
/*　↑ 未ログイン時 */

@media screen and (max-width:400px){
    .login-container li a {
        font-size: 10px;
    }
}

@media screen and (max-width: 310px) {
    .guest-footer__item:last-child {
        display: none;
    }

    .guest-footer__button-register {
        width: 100%;
    }
}

/* ↓ 多言語チャット未読件数表示 @SC 2024/11/25 */
.unread_number.footer-chat-badge {
    width: 20px;
    height: 20px;
    background-color: rgb(220 38 38);
    border-radius: 50%;
    position: absolute;
    color: #ffffff;
    text-align: center;
    line-height: 20px;
    font-size: 11px;
    display: none;
    white-space: nowrap;
    top: -2px;
    right: -8px;
    z-index: 1;
}

/* フッターのチャットアイコン位置調整 */
.icon-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* チャットアイコンのサイズに合わせて位置調整 */
.chat-icon {
    position: relative;
}

/* 未読件数がある場合の表示 */
.unread_number.footer-chat-badge.unread_show {
    display: block;
}
/* ↑ 多言語チャット未読件数表示 @SC 2024/11/25 */


/* ↓ イベントページ用バナー追加　@SC 2025/1/24 */
.event-banner-container {
    display: none;
    box-sizing: border-box;
    width: 100%;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.4);
    position: fixed;
    bottom: 0px;
    left: 0;
    z-index: 103;
}

@media screen and (max-width:767px) {
    .event-banner-container {
        height: 150px;
        bottom: 60px;
    }
}

.event-banner-container a {
    text-align: center;
    width: fit-content;
    margin: 0 auto;
}

.event-banner-container img {
    height: 140px;
}

.event-banner-close {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.9);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

@media screen and (max-width:767px) {
    .event-banner-container {
        height: 110px;
        bottom: 60px;
    }

    .event-banner-container img {
        height: 100px;
    }
}
/* ↑ イベントページ用バナー追加　@SC 2025/1/24 */
