@charset "UTF-8";
/* カートモーダル上書き */
.cartModalLinks .note {
  display: none;
}
.cartModalLinks .current + .note {
  display: block;
  text-decoration: underline;
  cursor: pointer;
}
.cartModalLinks .current + .note::after {
  content: " ＞";
}

.cartModalSubmit.acceptDisabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

input[type=checkbox] {
  display: none !important;
}

.checkbox {
  position: relative;
  display: inline-block;
  padding: 0 0 0 32px;
  cursor: pointer;
  width: auto;
  line-height: 1;
  box-sizing: border-box;
}

.checkbox::before {
  content: "";
  position: absolute;
  left: 5px;
  display: block;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #ae2d35;
}

.checkbox::after {
  border-right: 2px solid #ae2d35;
  border-bottom: 2px solid #ae2d35;
  content: "";
  display: block;
  height: 12px;
  left: 12px;
  margin-top: -8px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 6px;
}

input[type=checkbox]:checked + .checkbox::after {
  opacity: 1;
}

.l-note {
  margin: 1em 0;
  padding: 1.5em 1em 1.25em;
  border-radius: 10px;
  background: #dddddd;
}

.cartModal .note.noteAgree {
  margin: 0;
  color: #ae2d35;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.noteAgree li + li {
  margin-top: 0.5em;
}

.agree {
  padding: 10px;
  text-align: center;
  color: #ae2d35;
  line-height: 1.5;
}
.agree .note {
  display: block;
  margin-top: 0.5em;
}
.agree .required {
  display: inline-block;
  margin: 0 6px 0 0;
  padding: 4px 6px;
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
  background: #ae2d35;
  border-radius: 3px;
}
.agree .checkbox em {
  font-weight: bold;
}

@media screen and (max-width: 820px) {
  .checkbox {
    font-size: 13px;
  }
  .agree .note {
    margin-top: 1em;
  }
}