@charset "utf-8";

html,
body {
  height: 100vh;
  /* ウィンドウ全体の高さを固定 */
  overflow: hidden;
  /* ページ全体のスクロールを防ぐ */
  -ms-overflow-style: none;
  /* IE, Edge のスクロールバー非表示 */
  scrollbar-width: none;
}

.navbar {
  background-color: #fff0ae !important;
}

.d-flex.min-vh-100 {
  margin-top: 71px;
}

#pc-total-menu .p-4.w-30 {
  height: 100%;
}

#pc-total-menu .row-gap-2.d-flex.flex-column.mb-3 .btn.btn-primary.d-flex.align-items-center.justify-content-start.text-start {
  text-align: center;
  padding-left: 33%;
}

.row-gap-2.d-flex.flex-column.mb-3 .btn.btn-primary.d-flex.align-items-center.justify-content-start.text-start .ms-2 {
  width: 100px;
}

.p-2.w-100 #prompt-contents .category {
  width: 48%;
}


div .d-flex .vr {
  height: 10rem;
}

.d-flex.flex-column .p-2 #color-select {
  width: 100%;
  height: 8rem;
}

#color-display {
  height: 7rem;
}

.scrollable-content {
  max-height: 100vh;
  /* 必要に応じて高さを調整 */
  overflow-y: auto;
  -ms-overflow-style: none;
  /* IE, Edge のスクロールバー非表示 */
  scrollbar-width: none;
  padding-bottom: 20vh;
}

.scrollable-table-mobile {
  max-height: 85%;
  /* 必要に応じて高さを調整 */
  overflow-y: auto;
  /* IE, Edge のスクロールバー非表示 */
  scrollbar-width: none;
  padding-bottom: 20vh;
}

.scrollable-table-pc {
  max-height: 39%;
  /* 必要に応じて高さを調整 */
  overflow-y: auto;
  /* IE, Edge のスクロールバー非表示 */
  scrollbar-width: none;
  padding-bottom: 20vh;
}

.scrollable-table-mobile thead {
  position: sticky;
  top: 0;
  background-color: white;
  /* 必要に応じて背景色を調整 */
  z-index: 1;
}

.scrollable-table-pc thead {
  position: sticky;
  top: 0;
  background-color: white;
  /* 必要に応じて背景色を調整 */
  z-index: 1;
}

.accordion-body li+li {
  border-top: 1px solid #00000025;
  list-style: none;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

input[type="number"] {
  text-align: center;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;

}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.tooltip {
  margin-left: 10px !important;
}

.pc-button {
  display: flex;
  align-items: center;
  width: 110px;
  margin: 0 auto;
}

.ads {
  display: flex;
  height: 52px;
}

.custom-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.accordion-button:not(.collapsed) .custom-icon {
  fill: #3d2809;
  /* アコーディオンがアクティブしてる時の色を任意設定 */
}

.form-check-label {
  display: flex;
  align-items: center;
}

.color-display {
  width: 15px;
  height: 15px;
  border: solid 1px #888888;
}

@media (max-width: 992px) {
  #pc-options {
    display: none !important;
  }
}

@media (min-width:992px) {
  #mobile-menu {
    display: none;
  }

  #mobile-footer {
    display: none;
  }

  .w-100.ps-3.pe-3 #prompt-contents .accordion.category.mb-3 {
    width: 49%;
  }

}

@media (max-width:991.98px) {
  .d-flex.min-vh-100 #pc-total-menu {
    display: none;
  }

  .w-100.ps-3.pe-3 #prompt-contents .accordion.category.mb-3 {
    width: 100%;
  }
}

@media (max-width:576.98px) {
  .p-2.w-100 #prompt-contents .accordion.category {
    width: 100%;
  }
}
