@charset "UTF-8";

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999999;
  display: none;
}
.modal .btn_close {
  position: absolute;
  left: 50%;
  top: -50px;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  padding: 0;
  border: none;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
}
.modal_inner {
  position: absolute;
  /* overflow: hidden; */
  border-radius: 20px;
  width: 50%;
  max-width: 337px;
  max-height: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 30px 20px;
  box-sizing: border-box;
  max-height: 540px;
}
.modal .content {
}
.modal .head {
  margin-bottom: 12px;
}
.modal .head h3 {
  color: var(--text-sub, #4a4a4a);
  text-align: center;
  font-family: 'Noto Sans JP';
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 136%; /* 20.469px */
}
.modal .txt_wrap {
  margin: 0;
  max-height: calc(540px - 170px);
  display: block;
  overflow-y: auto;
  color: var(--text-sub, #4a4a4a);
  font-family: 'Noto Sans JP';
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.46%; /* 17.74px */
}
.modal .txt_wrap::-webkit-scrollbar {
  width: 2px;
  background: #ececec;
  visibility: hidden;
}
.modal .txt_wrap::-webkit-scrollbar-thumb {
  background-color: #d4b589;
  border-radius: 10px;
  visibility: hidden;
}
.modal .txt_wrap.scrolling::-webkit-scrollbar {
  visibility: visible;
}
.modal .txt_wrap.scrolling::-webkit-scrollbar-thumb {
  visibility: visible;
}
.pop_policy ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 10px;
}
.pop_policy ul li:before {
  content: '';
  display: block;
  width: 3px;
  height: 3px;
  background: #4a4a4a;
  border-radius: 9px;
}
.pop_policy .txt {
  width: calc(100% - 12px);
  white-space: pre-line;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  letter-spacing: -0.64px;
}
.pop_policy strong {
  color: #333;
  font-size: 20px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: -0.8px;
}
@media (max-width: 768px) {
  .modal_inner {
    padding: 30px 20px;
    width: 90%;
  }
  .pop_policy .head {
    font-size: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .pop_policy .txt {
    font-size: 14px;
    line-height: 1.3;
  }
  .pop_policy strong {
    font-size: 14px;
    font-weight: 700;
  }
}
