@charset "UTF-8";
br.sp {
  display: inline-block;
}
@media screen and (min-width: 767px) {
  br.sp {
    display: none;
  }
}
br.pc {
  display: none;
}
@media screen and (min-width: 767px) {
  br.pc {
    display: inline-block;
  }
}

.cbs__modal {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}
.cbs__modal.is-open {
  visibility: visible;
  opacity: 1;
}
.cbs__modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
@media screen and (min-width: 1025px) {
  .cbs__modal-overlay {
    padding: 40px;
  }
}
.is-open .cbs__modal-overlay {
  opacity: 1;
  visibility: visible;
}
.cbs__modal-dialog {
  position: relative;
  max-width: 1140px;
  width: 100%;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
@media screen and (min-width: 1025px) {
  .cbs__modal-dialog {
    transform: translateY(-20px) scale(0.75);
    max-height: calc((100vh - 60px) * 1.2);
  }
}
@media screen and (min-width: 1367px) {
  .cbs__modal-dialog {
    transform: translateY(-20px) scale(1);
    max-height: calc(100vh - 80px);
  }
}
.is-open .cbs__modal-dialog {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (min-width: 1025px) {
  .is-open .cbs__modal-dialog {
    transform: translateY(0) scale(0.75);
  }
}
@media screen and (min-width: 1367px) {
  .is-open .cbs__modal-dialog {
    transform: translateY(0) scale(1);
  }
}
.cbs__modal-close {
  position: absolute;
  top: 8px;
  right: 4px;
  width: 34px;
  height: 34px;
  padding: 0;
  background: #fff;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.25s ease;
}
@media screen and (min-height: 946px) {
  .cbs__modal-close {
    top: 38px;
  }
}
@media screen and (min-width: 767px) {
  .cbs__modal-close {
    top: 40px;
    right: 16px;
    width: 48px;
    height: 48px;
  }
}
@media screen and (min-width: 1025px) {
  .cbs__modal-close {
    top: -30px;
    right: -30px;
    width: 60px;
    height: 60px;
  }
}
.cbs__modal-close::before, .cbs__modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #000;
  transition: background-color 0.25s ease;
}
@media screen and (min-width: 767px) {
  .cbs__modal-close::before, .cbs__modal-close::after {
    width: 24px;
    height: 3px;
  }
}
@media screen and (min-width: 1025px) {
  .cbs__modal-close::before, .cbs__modal-close::after {
    width: 26px;
    height: 4px;
  }
}
.cbs__modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.cbs__modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.cbs__modal-close:hover {
  background: #EB6002;
}
.cbs__modal-close:hover::before, .cbs__modal-close:hover::after {
  background: #fff;
}
.cbs__modal-close span {
  display: none;
}

.cbs__content {
  position: relative;
  padding: 20px;
  box-sizing: border-box;
  height: 100vh;
}
@media screen and (min-width: 767px) {
  .cbs__content {
    padding: 60px 40px;
  }
}
@media screen and (min-width: 1025px) {
  .cbs__content {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 5px;
    padding: 0 0 84px;
  }
}

.cbs__body {
  overflow-y: auto;
  height: calc(100vh - 100px - 40px);
  border-radius: 5px;
}
@media screen and (min-height: 946px) {
  .cbs__body {
    padding-top: 30px;
  }
}
@media screen and (min-width: 767px) {
  .cbs__body {
    padding-top: 0;
    height: calc(100vh - 100px - 100px);
  }
}
@media screen and (min-width: 1025px) {
  .cbs__body {
    height: calc(100% - 84px);
    border-radius: 0;
  }
}
.cbs__body-in {
  background: #FFE8D6;
  padding: 15px 10px 0;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .cbs__body-in {
    padding: 20px 30px 0;
  }
}
.cbs__body .cbs__ttl {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  margin: 0;
  color: #000;
  line-height: 1.4;
}
@media screen and (min-width: 767px) {
  .cbs__body .cbs__ttl {
    font-size: 32px;
    font-size: 2rem;
  }
}
.cbs__body .cbs__note {
  font-size: 10px;
  font-size: 0.625rem;
  text-align: center;
  margin: 5px 0 0;
  line-height: 1.6;
}
@media screen and (min-width: 767px) {
  .cbs__body .cbs__note {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.cbs__body-footer {
  padding: 16px;
  margin-left: -10px;
  width: calc(100% + 20px);
  background: #EB6002;
  color: #fff;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
}
@media screen and (min-width: 1025px) {
  .cbs__body-footer {
    display: none;
  }
}

.cbs__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px auto 0;
  padding: 0 10px;
}
@media screen and (min-width: 1025px) {
  .cbs__list {
    flex-direction: row;
    gap: 30px;
    padding: 0 0 30px;
  }
}

.cbs__item {
  flex: 1;
  min-width: 0;
  border-radius: 5px;
  padding: 16px 13px 30px;
  background: #fff;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .cbs__item {
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 24px;
    padding-bottom: 10px;
  }
}
.cbs__item:not(:last-child)::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("../images/icon-plus.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 5;
}
@media screen and (min-width: 1025px) {
  .cbs__item:not(:last-child)::before {
    top: 27px;
    left: auto;
    right: -35px;
    bottom: auto;
    width: 40px;
    height: 40px;
    transform: none;
  }
}
.cbs__item-footer {
  border-top: 1px solid #FFE8D6;
  margin-top: 20px;
  padding-top: 20px;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .cbs__item-footer {
    padding-top: 15px;
    margin-top: 0;
  }
}
.cbs__item-ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  margin: 0 0 15px;
  padding: 0 0 10px;
  border-bottom: 1px solid #FFE8D6;
  height: 32px;
}
@media screen and (min-width: 1025px) {
  .cbs__item-ttl {
    height: 38px;
    padding-bottom: 24px;
    font-size: 22px;
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 1280px) {
  .cbs__item-ttl {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.cbs__item-ttl::before {
  content: "";
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.cbs__item:nth-child(1) .cbs__item-ttl::before {
  width: 37px;
  height: 29px;
  background-image: url("../images/icon-cam.svg");
}
@media screen and (min-width: 1025px) {
  .cbs__item:nth-child(1) .cbs__item-ttl::before {
    width: 45px;
    height: 35px;
  }
}
.cbs__item:nth-child(2) .cbs__item-ttl::before {
  width: 49px;
  height: 23px;
  background-image: url("../images/icon-lens.svg");
}
@media screen and (min-width: 1025px) {
  .cbs__item:nth-child(2) .cbs__item-ttl::before {
    width: 57px;
    height: 27px;
  }
}
.cbs__item:nth-child(3) .cbs__item-ttl::before {
  width: 46px;
  height: 32px;
  background-image: url("../images/icon-acc.svg");
}
@media screen and (min-width: 1025px) {
  .cbs__item:nth-child(3) .cbs__item-ttl::before {
    height: 36px;
  }
}
.cbs__item-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cbs__select-label {
  display: block;
}

.cbs__custom-select {
  position: relative;
  width: 100%;
}
.cbs__custom-select select {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.cbs__custom-select-button {
  width: 100%;
  padding: 8px 10px 8px 15px;
  font-size: 14px;
  font-size: 0.875rem;
  color: #000;
  border: 1px solid #FFE8D6;
  outline: 1px solid transparent;
  outline-offset: 0;
  border-radius: 5px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.25s ease, outline-color 0.25s ease;
  background: #fff;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 767px) {
  .cbs__custom-select-button {
    font-size: 16px;
    font-size: 1rem;
  }
}
.cbs__custom-select-button:hover, .cbs__custom-select-button:focus-visible {
  border-color: #EB6002;
}
.cbs__custom-select-button::after {
  content: "";
  display: block;
  width: 12px;
  height: 8px;
  background-image: url("../images/icon-dropdown-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
@media screen and (min-width: 767px) {
  .cbs__custom-select-button::after {
    width: 14px;
    height: 10px;
  }
}
.cbs__custom-select-button.is-open::after {
  transform: translateY(-50%) rotate(180deg);
}
.cbs__custom-select-dropdown {
  position: fixed;
  max-height: 170px;
  overflow-y: auto;
  background: #fff;
  border: 0;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 12px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px;
  border-radius: 5px;
  padding: 6px;
  z-index: 10001;
  display: none;
  box-sizing: border-box;
}
@media screen and (min-width: 767px) {
  .cbs__custom-select-dropdown {
    max-height: 195px;
  }
}
@media screen and (min-width: 1025px) {
  .cbs__custom-select-dropdown {
    max-height: 146.25px;
  }
}
@media screen and (min-width: 1280px) {
  .cbs__custom-select-dropdown {
    max-height: 195px;
  }
}
.cbs__custom-select-dropdown.is-open {
  display: block;
}
.cbs__custom-select-dropdown.is-above {
  box-shadow: rgba(0, 0, 0, 0.15) 0px -4px 12px 0px, rgba(0, 0, 0, 0.1) 0px -2px 4px 0px;
}
.cbs__custom-select-option {
  font-weight: 700;
  padding: 7px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 1025px) {
  .cbs__custom-select-option {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 1280px) {
  .cbs__custom-select-option {
    font-size: 16px;
    font-size: 1rem;
  }
}
.cbs__custom-select-option:hover, .cbs__custom-select-option.is-active {
  background: #FFE8D6;
}
.cbs__custom-select-option.is-selected {
  color: #EB6002;
}
.cbs__custom-select-option.is-selected::after {
  content: "";
  display: block;
  width: 12px;
  height: 8px;
  background-image: url("../images/icon-option-before.svg");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
@media screen and (min-width: 767px) {
  .cbs__custom-select-option.is-selected::after {
    width: 14px;
    height: 9px;
  }
}

/* -- 追記ここまで -- */
.cbs__add-btn {
  margin-top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  height: 30px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  background: #000;
  color: #fff;
  border: 0;
  outline: 1px solid transparent;
  outline-offset: -4px;
  border-radius: 100px;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, outline-color 0.25s ease;
}
@media screen and (min-width: 767px) {
  .cbs__add-btn {
    font-size: 16px;
    font-size: 1rem;
  }
}
.cbs__add-btn:hover, .cbs__add-btn:focus-visible {
  outline-color: #fff;
}

.btn-reset-wrap {
  text-align: center;
}

.btn_reset {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0 auto;
  padding: 0;
  font-size: 12px;
  font-size: 0.75rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 700;
}
@media screen and (min-width: 767px) {
  .btn_reset {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.btn_reset svg {
  display: inline-block;
  width: 24px;
  height: 24px;
}
.btn_reset svg path {
  stroke: #EB6002;
}
.btn_reset:hover {
  text-decoration: underline;
}
.btn_reset.sp {
  display: inline-flex;
}
@media screen and (min-width: 1025px) {
  .btn_reset.sp {
    display: none;
  }
}
.btn_reset.pc {
  display: none;
}
@media screen and (min-width: 1025px) {
  .btn_reset.pc {
    display: inline-flex;
  }
}

[id^=btn_reset_] {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0 auto;
  font-size: 12px;
  font-size: 0.75rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 700;
}
@media screen and (min-width: 767px) {
  [id^=btn_reset_] {
    font-size: 14px;
    font-size: 0.875rem;
    margin-top: 0;
  }
}
[id^=btn_reset_]::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../images/icon-reset.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 767px) {
  [id^=btn_reset_]::before {
    width: 18px;
    height: 18px;
  }
}
[id^=btn_reset_]:hover {
  text-decoration: underline;
}

.cbs__results {
  background: #555;
  overflow: hidden;
  text-align: center;
  color: #fff;
  height: 100px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.cbs__results.is-active {
  background: #EB6002;
}
@media screen and (min-width: 640px) {
  .cbs__results {
    height: 114px;
  }
}
@media screen and (min-width: 1025px) {
  .cbs__results {
    height: 84px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    box-sizing: border-box;
    border-radius: 0 0 5px 5px;
  }
}

@media screen and (min-width: 1025px) {
  .cbs__result-main {
    display: flex;
    flex-direction: row;
    gap: 24px;
  }
}
.cbs__result-lg {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0 0 10px;
  color: #fff;
  line-height: 1.4;
}
@media screen and (min-width: 1025px) {
  .cbs__result-lg {
    font-size: 24px;
    font-size: 1.5rem;
    margin-top: -5px !important;
    transform: translateY(6px);
  }
}
.cbs__result-lg span {
  line-height: 1;
  font-size: 40px;
  font-size: 2.5rem;
  display: inline-block;
  margin: 0 5px 0 10px;
  font-weight: 400;
  transform: translateY(2px);
}
@media screen and (min-width: 1025px) {
  .cbs__result-lg span {
    font-size: 50px;
    font-size: 3.125rem;
  }
}
.cbs__result-lg .label {
  font-size: 16px;
  font-size: 1rem;
  margin: 0;
}
@media screen and (min-width: 1025px) {
  .cbs__result-lg .label {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.cbs__result-sm {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
  gap: 10px;
}
@media screen and (min-width: 1025px) {
  .cbs__result-sm {
    gap: 2px;
    margin-top: 3px;
    flex-direction: column;
    align-items: flex-end;
  }
}
.cbs__result-sm p {
  font-size: 13px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-weight: 700;
}
@media screen and (min-width: 1025px) {
  .cbs__result-sm p {
    font-size: 16px;
    font-size: 1rem;
  }
}
.cbs__result-sm p span {
  line-height: 1;
  font-size: 16px;
  font-size: 1rem;
  margin: 0 2px 0 3px;
  font-weight: 400;
}
@media screen and (min-width: 1025px) {
  .cbs__result-sm p span {
    font-size: 20px;
    font-size: 1.25rem;
    margin: 0 3px 0 5px;
  }
}

@keyframes shake-vertical {
  0%, 100% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(3px);
  }
  40% {
    transform: translateY(-1px);
  }
  60% {
    transform: translateY(2px);
  }
  80% {
    transform: translateY(-1px);
  }
}
@keyframes shake-horizontal {
  0%, 100% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(-2px);
  }
  20% {
    transform: translateX(2px);
  }
  30% {
    transform: translateX(-3px);
  }
  40% {
    transform: translateX(3px);
  }
  50% {
    transform: translateX(-2px);
  }
  60% {
    transform: translateX(2px);
  }
  70% {
    transform: translateX(-1px);
  }
  80% {
    transform: translateX(1px);
  }
  90% {
    transform: translateX(-1px);
  }
}
#total_cb_price_wrap {
  display: inline-block;
  font-size: inherit;
  margin: 0;
  transform: none;
}
#total_cb_price_wrap.shake-v {
  animation: shake-vertical 0.5s ease;
}
#total_cb_price_wrap.shake-h {
  animation: shake-horizontal 0.4s ease;
}
