html,
body {
  height: 100%;
}

body {
  background-color: #333;

  margin: 0px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.div-container,
.div-container2 {
  padding: 0px;
  position: absolute;

  left: 0;
  top: 0;
  width: 1920px;
  height: 1080px;

  display: block;
}

.div-base {
  text-align: center;
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  position: absolute;
}

.div_base {
  text-align: center;

  display: flex;
  justify-content: center;
  align-items: center;
}

.div-base img {
  max-width: 100%;
}

.child_center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.child_left_center {
  display: flex;
  justify-content: left;
  align-items: center;
}

.child_column {
  display: flex;
  justify-content: left;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-direction: column;
}

.left {
  position: absolute;
  left: 0%;
}

.top {
  position: absolute;
  top: 0%;
}

.right {
  position: absolute;
  right: 0%;
}

.bottom {
  position: absolute;
  bottom: 0%;
}

.left-top {
  position: absolute;
  left: 0%;
  top: 0%;
}

.right-top {
  position: absolute;
  right: 0%;
  top: 0%;
}

.left-bottom {
  position: absolute;
  left: 0%;
  bottom: 0%;
}

.right-bottom {
  position: absolute;
  right: 0%;
  bottom: 0%;
}

ul {
  width: 98%;
  height: 98%;
  overflow-y: scroll;
  overflow-x: hidden;
  white-space: nowrap
}

li {
  font-family: 'noto';
  font-size: 30px;
  font-weight: 700;
  color: white;

  position: relative;

  zoom: 1;
  /*
    padding-top:20px;
    padding-bottom:20px;
    margin-top:20px;
    */
  margin-bottom: 12px;
  cursor: pointer;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: left;
}

[data-subject="jp"] li {
  font-family: 'Noto Sans CJK JP', 'noto';
}

[data-subject="sc"] li {
  font-family: 'Mulish', 'Noto Sans CJK SC', 'noto', sans-serif;
}


/*
li img { display:none; }
li:hover img { display:block; position: absolute; top:75%; }
*/

/*
li p { 
    position: absolute;
    width: 100%;
    height: 100%;
    
    color:#9e9e9e;

    margin:0; 
}
*/

/* 임의의 영역 생성 */
.scrollBar {
  position: absolute;
  right: 100px;
  top: 150px;
  width: 1059px;
  height: 740px;
  overflow-y: scroll;
  overflow-x: hidden;
  display: table-row;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-content: flex-start;
  justify-content: flex-start;
}

/* 아래의 모든 코드는 영역::코드로 사용 */
.scrollBar::-webkit-scrollbar {
  width: 7px;
  /* 스크롤바의 너비 */
}

.scrollBar::-webkit-scrollbar-thumb {
  height: 30%;
  /* 스크롤바의 길이 */
  background: #e2e2e2;
  /* 스크롤바의 색상 */

  border-radius: 10px;
}

.scrollBar::-webkit-scrollbar-track {
  background: rgba(33, 122, 244, .1);
  /*스크롤바 뒷 배경 색상*/
  display: none;
}


.popup_title_margin {
  position: relative;
  margin-top: -12px;
  padding-top: 12px;
}


.screenshot_img {
  opacity: 30%;
}

.button_cursor {
  cursor: pointer;
}

.popup_dim {
  width: 1920px;
  height: 1080px;

  background-color: black;
  opacity: 30%;

  position: absolute;
  left: 0px;
  top: 0px;
}

/* 언어 폰트 세트 */
[data-subject="jp"] .lang  {
  font-family: 'Noto Sans CJK JP', 'maple';
}

[data-subject="sc"] .lang  {
  font-family: 'Mulish', 'Noto Sans CJK SC', 'maple', sans-serif;
}

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

/* 페이지 이동 얼랏 추가 */
.alert-container {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}

.alert-container .alert_msg.layer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.alert-container .alert_msg.layer .inner {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 388px;
  height: 212px;
  padding: 30px 24px 40px 24px;
  background-color: #fff;
  border: 4px solid #1f88ff;
  box-shadow: 8px 8px 8px rgba(0,0,0,0.3);
  border-radius: 16px;
  box-sizing: border-box;
}

.alert-container .alert_msg.layer .inner .txt {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'noto';
  font-size: 25px;
  font-weight: 500;
  line-height: 30px;
  color: #444;
  text-align: center;
}

.alert-container .alert_msg .inner .btn_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.alert-container .alert_msg .inner .btn_wrap .btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 110px;
  height: 50px;
  padding: 0;
  background-color: #1f88ff;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  border-radius: 26px;
  border: none;
}

.alert-container .alert_msg .inner .btn_wrap .btn span {
  font-family: 'noto';
  font-size: 22px;
  font-weight: 500;
  line-height: 20px;
  color: #fff;
}
