
#__arc-consent-bnr {
  display: none;;
  box-sizing: border-box;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 25px;
  padding-right: 40px;
  background: #cccccc80;
}
#__arc-consent-bnr * {
  font-size: 12px;
  margin: 0;
  padding: 0;
}
.__arc-cst-bnr-content {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}
.__arc-cst-bnr-txt {
  flex: 1;
}
@media screen and (max-width: 520px) {
  .__arc-cst-bnr-txt {
    width: 100%;
  }
}
.__arc-cst-bnr-btn {
  width: 120px;
}
@media screen and (max-width: 520px) {
  .__arc-cst-bnr-btn {
    width: 100%;
  }
}
  .__arc-cst-bnr-btn-accept {
    cursor: pointer;
    background: #000;
    border: 2px solid #000;
    color: #FFF;
    width: 100%;
    padding: .5em !important;
    border-radius: 9999px;
  }
  .__arc-cst-bnr-btn-accept:hover {
    background: #FFF;
    color: #000;
  }

.__arc-cst-bnr-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
}
  .__arc-cst-bnr-close-icn {
    display: block;
    position: relative;
    width: 20px;
    height: 20px;
    /* float: right; */
    cursor: pointer;
  }
  .__arc-cst-bnr-close-icn::before, .__arc-cst-bnr-close-icn::after { /* 共通設定 */
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px; /* 棒の幅（太さ） */
    height: 20px; /* 棒の高さ */
    background: #666;
  }
  .__arc-cst-bnr-close-icn::before {
    transform: translate(-50%,-50%) rotate(45deg);
  }
  .__arc-cst-bnr-close-icn::after {
    transform: translate(-50%,-50%) rotate(-45deg);
  }