/* ======================================================
 * parts_pc.css
 * ------------------------------------------------------
 * - Common
 * Media Queries
 * Print
====================================================== */
/* -----------------------------------------------------
  * Common
------------------------------------------------------*/
.parts-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 400px;
  min-height: 58px;
  margin: 0 auto;
  padding: 10px;
  font-size: clamp(16px, 1.4641288433vw, 20px);
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: #ff0000;
  border-radius: 10px;
}
.parts-btn.disabled {
  pointer-events: none;
  color: #ddd;
  background: #fb6262;
}
.parts-btn--agree {
  gap: 20px;
  font-size: clamp(14px, 1.317715959vw, 18px);
  color: #000;
  background: #fff;
  border: 1px solid #858585;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
}

.a-blank::after {
  display: inline-block;
  background-image: url(/common-files/img/cmn_sprite_ic01.png);
  background-repeat: no-repeat;
  vertical-align: middle;
  content: "";
  width: 12px;
  height: 10px;
  background-position: 0px -80px;
  position: relative;
  top: -2px;
  margin: 0 6px;
}

.a-blank--white::after {
  background-image: url(/common-files/img/cmn_sprite_ic01.png);
  background-repeat: no-repeat;
  background-position: -40px -80px;
}

.os-windows .parts-btn--agree {
  font-weight: 500;
}

@media (hover: hover) {
  .parts-btn:hover {
    background: #cf0212;
  }
  .parts-btn--agree:hover {
    background: #e8e8e8;
  }
}/*# sourceMappingURL=parts_pc.css.map */