.footer-contents {
  /* background: rgb(85, 85, 85); */
  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;
}

.login-container {
  display: flex;
  justify-content: space-between;
  text-align: center;
  padding: 0;
  margin-top: 5px;
  width: 100%;
  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.top-icon {
    width: 25px;
    height: auto;
    padding: 4px;
    filter: none;
    margin-right: 0;
} */

img.icon.chat-icon {
  /*　↓ SNS表示を使用していないものは非表示にする @SC 2025/06/18 */
  width: 32px;
  /*　↑ SNS表示を使用していないものは非表示にする @SC 2025/06/18 */
  height: auto;
  padding: 3px;
  filter: none;
  margin-right: 0;
}

/*　↓ SNS表示を使用していないものは非表示にする @SC 2025/06/18 */
img.icon.okinitalk-icon.chat {
  width: 32px;
}
/*　↑ SNS表示を使用していないものは非表示にする @SC 2025/06/18 */

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 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.guest-footer__item {
  display: flex;
}

.guest-footer__item:first-child {
  flex: 1.4;
}

.guest-footer__item:last-child {
  flex: 0.6;
}

.guest-footer__button {
  width: 100%;
  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: #fff; */
  background-color: #e50012;
}

.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: 767px) {
  .footer-contents {
    display: block;
  }
}

@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 {
  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;
}

.event-banner-container a {
  display: block;
  text-align: center;
}

.event-banner-container img {
  max-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 {
    bottom: 60px;
  }

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