/* modal */

.Js_modal_store_open {
  cursor: pointer;
  display: block;
  width: fit-content;
}
.js_modal_store {
  display: none;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
}

.js_modal_store_bg {
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  height: 100vh;
  width: 100%;
}

.js_modal_store_content {
  background: #ffffff;
  position: absolute;
  padding: 30px;
  overflow-y: scroll;
  height: 650px;
  width: 900px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transition: 0.5s;
  border-radius: 24px;
}

.js_modal_store_content h3 {
  margin: 0 0 16px;
  padding: 4px;
  font-size: 2.4rem;
  font-weight: 900;
  text-align: center;
  border-bottom: solid 1px #595757;
}

.js_modal_store_content ul {
  width: 100%;
  margin-bottom: 24px;
  padding: 0;
  list-style: none;
}

.js_modal_store_content ul li {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: stretch;
  margin: 12px 0;
}

.js_modal_store_content ul li p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 704px;
  font-size: 1.6rem;
  line-height: 1.8;
}

.js_modal_store_content ul li p:first-child {
  justify-content: center;
  width: 112px;
  background-color: #595757;
  color: #fff;
  border-radius: 8px;
  padding: 8px 4px;
}
.close_btn_position {
  text-align: center;
  width: fit-content;
  margin: 10px auto 0;
  padding: 2% 4%;
  background-color: #bfbfbf;
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
}

.s .js_modal_store_content {
  width: 90vw;
  height: 80vh;
  max-height: 780px;
  padding-left: 3%;
  padding-right: 3%;
}
.s .js_modal_store_content h3 {
  margin: 0 0 3vw;
  padding: 0.8vw;
  font-size: 4vw;
}
.s .js_modal_store_content ul {
  margin-bottom: 6vw;
}
.s .js_modal_store_content ul li {
  margin: 2vw 0;
}
.s .js_modal_store_content ul li p {
  width: 81%;
  font-size: 2.88vw;
}
.s .js_modal_store_content ul li p:first-child {
  width: 17%;
  padding: 1.2vw 0.8vw;
}
.s .close_btn_position {
  padding: 2% 6%;
  font-size: 10px;
}

.pg-bluelabel {
  background: #225496;
  color: #fff;
}
