.page-bingo-setting .content__2col__right {
  padding-bottom: 50px;
}
.bingo-color-box {
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 4px;
  padding: 1.5em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.reset-game {
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.reset-game__btn {
  display: block;
  width: 100%;
  background: #f2f2f2;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  font-weight: 700;
  text-align: center;
  padding: 1em;
  transition: all 0.2s ease;
}
.reset-game__btn:hover {
  opacity: 0.7;
}
.reset-game__list {
  font-size: 1.2rem;
}
.reset-game__list li {
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 0.65em;
}
.reset-game__list li::before {
  content: "・";
}
@media screen and (max-width: 768px) {
  .btn-start-game {
    pointer-events: none;
    background: #ccc !important;
  }
}
.bingo-setting {
  padding: 30px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.bingo-setting:nth-child(1) {
  margin-top: 50px;
}
.bingo-setting__head {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 1em;
}
.icon-help {
  cursor: pointer;
}
.icon-help::before {
  content: "";
  display: inline-block;
  width: 1em;
  aspect-ratio: 1/1;
  background: url(/images/main/icon/help.svg) no-repeat center/contain;
  margin-right: 10px;
  vertical-align: sub;
  transform: translateY(-1px);
}
.icon-help:hover {
  opacity: 0.85;
}
.bingo-setting__flex {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: 15px;
}
.bingo-setting__flex dt {
  width: 20rem;
  flex-shrink: 0;
}
.bingo-setting__flex dd {
  width: calc(100% - 20rem);
}
.bingo-setting__input {
  width: 100%;
}
.bingo-setting__team {
  display: flex;
  align-items: center;
  gap: 20px;
}
.bingo-setting__team input {
  width: 5em;
}
.bingo-setting__team p {
  font-size: 1.4rem;
}
.device-switch {
  width: 180px;
  background-color: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  position: relative;
}
.device-switch__slider {
  display: inline-block;
  width: 50%;
  height: 100%;
  border-radius: 25px;
  position: absolute;
  z-index: -1;
  transition: 0.4s;
  transform: translateX(0);
  z-index: 10;
}
.device-switch__slider.slide-right {
  transform: translateX(100%);
}
.device-switch__inner {
  width: 50%;
  display: inline-block;
  padding: 0.8em;
  text-align: center;
  cursor: pointer;
  z-index: 20;
  color: rgba(0, 0, 0, 0.4);
  transition: 0.4s;
}
.device-switch__inner.active {
  color: #fff;
}
.app-qr__btn a {
  display: inline-block;
  font-weight: 500;
  background-color: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 15px;
  cursor: pointer;
  position: relative;
  transition: 0.2s;
}
.app-qr__btn a:hover {
  border-color: #000;
}
.custom-checkbox {
  display: inline;
}
.custom-checkbox__inner {
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: center;
}
.custom-checkbox__inner input[type="checkbox"] {
  appearance: none;
  width: 18px;
  aspect-ratio: 1/1;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.custom-checked {
  display: none;
  width: 18px;
  aspect-ratio: 1/1;
  background: #1b7afc;
  border-radius: 4px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.custom-checked::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 11px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  bottom: 5px;
  left: 6px;
}
.custom-checkbox input[type="checkbox"]:checked ~ .custom-checked {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .bingo-setting {
    padding: 25px 0;
  }
  .bingo-setting:nth-child(1) {
    margin-top: 0;
  }
  .bingo-setting__flex dt {
    width: 100%;
  }
  .bingo-setting__flex dd {
    width: 100%;
  }
}
