@charset "utf-8"; 

#pageWrap {
  height: 1400px;
}

#pageWrap .page.p1 {
  background: url(../img/p10_1.jpg) no-repeat center / 100%;
}

.draw_row {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 101px;
  top: 665px;
  gap: 2px;
}

.draw--zone {
  position: relative;
  top: unset;
  left: unset;
}

.draw--zone canvas {
  position: absolute;
}

.draw--zone .btn_draw {
  position: absolute;
  left: 14px;
  top: 10px;
  z-index: 999;
}

.draw--zone .draw_tools {
  position: absolute;
  bottom: -90px;
  left: -450px;
  z-index: 2;
}

.iw4 .draw--zone {
  width: 300px;
  height: 400px;
  top: 0px;
  left: 0;
  position: absolute;
}

.iw4 .draw_tools {
  position: absolute;
  top: 308px;
  left: -171px;
}

.input_wrap.iw3 {
  position: absolute;
  left: 200px;
  top: 370px;
  text-align: left;
}
.input_wrap.iw3 .text_wrap{
width:502px;
  height:246px;
}

.input_wrap.iw3 .input {
  width:100%;
  height:100%;
}

.input_wrap.iw2 {
  top: 409px;
  left: 166px;
  width: 622px;
  height: 448px;
  position: absolute;
}

.input_wrap.iw2 canvas {
  width: 610px;
  height: 470px;
}

.input_wrap.iw4 .row {
  display: flex;
  align-items: center;
  gap: 1px;
  height: 38px;
}

.input_wrap.iw4 {
  position: absolute;
  top: 755px;
  left: 293px;
  display: flex;
  /* flex-direction: column; */
}

.input_wrap.iw4 .text_wrap {
  width: 295px;
  height: 50px;
}
.input_wrap.iw4 .text_wrap:first-child {
margin-right: 107px;
}

.input_wrap.iw4 .form2 {
  margin-top: 50px;
}

.input_wrap.iw5 {
  position: absolute;
  bottom: 99px;
  right: 86px;
  /* background: #ddd; */
  width: 803px;
  height: 440px;
  display: grid;
  grid-template: repeat(2, 1fr) / repeat(3, 1fr);
}

.input_wrap.iw5 .draw--zone canvas {
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0;
  position: absolute;
}

.input_wrap.iw5 textarea {
  width: 480px;
  height: 94px;
}


.d1 .draw_tools {
 bottom: -310px;
 left: -185px;
}
.d2 .draw_tools {
 bottom: -310px;
 left: -453px;
}
.d3 .draw_tools {
 bottom: -310px;
 left: -721px;
}
.d4 .draw_tools {
 bottom: -90px;
 left: -186px;
}
.d5 .draw_tools {
 bottom: -88px;
 left: -455px;
}
.d6 .draw_tools {
 bottom: -95px;
 left: -723px;
}

.sound--zone {
  position:absolute;
  right: -70px;
  top: -11px;
}
/** 3번 문항 check_box **/
/* 공통 체크 표시 */
/* .input_wrap.iw2 .check_box {
display: flex;
justify-content: flex-start;
align-items: center;
height: 25px;
gap: 2px;
}
.input_wrap.iw2 .check_box .check_item {
position: relative;
display: flex;
justify-content: flex-start;
align-items: flex-start;
height: 25px;
}
.check_item input[type="checkbox"] {
display: none;
}
.check_item label {
cursor: pointer;
width: 12px;
height: 12px;
border-radius: 4px;
transition: all 0.3s;
}
.check_item input[type="checkbox"]:checked + label {
background: url(../img/check_on.png) 0 0 / 100% 100% no-repeat;
}*/

/* check_box 나의 감정 */
.input_wrap.iw2 .check_box.cw1 {
  width: 233px;
}

.input_wrap.iw2 .check_box.cw1 .check_item:nth-of-type(1), .input_wrap.iw2 .check_box.cw1 .check_item:nth-of-type(3) {
  width: 67px;
}

.input_wrap.iw2 .check_box.cw1 .check_item:nth-of-type(2), .input_wrap.iw2 .check_box.cw1 .check_item:nth-of-type(4) {
  width: 85px;
}

/* check_box 표현 기법 */
.input_wrap.iw2 .check_box.cw2 {
  width: 488px;
}

.input_wrap.iw2 .check_box.cw2 .check_item:nth-of-type(1), .input_wrap.iw2 .check_box.cw2 .check_item:nth-of-type(3) {
  width: 173px;
}

.input_wrap.iw2 .check_box.cw2 .check_item:nth-of-type(2) {
  width: 138px;
}

.input_wrap.iw2 .check_box.cw2 .check_item label {
  margin-top: 3px;
}



/* popup style */
#guidePopup {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1080px;
  height: 1920px;
  background: url(../img/guide_bg.png) 0 0 / 100% 100% no-repeat;
  z-index: 100;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.popHide {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

#guidePopup::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width:1080px;
  height: 1920px;
  background: url(../img/guide_arrow.png) 0 0 / 100% 100% no-repeat;
  animation: blink 1s ease-in-out 3;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.pop_container * {
  color: #fff;
  font-family: 'GyeonggiTitleOTF';
  font-weight: 500;
  font-size: 26px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-shadow: 3px 2px 2px rgba(0, 0, 0, 0.3);
}

.pop_container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.popup_content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 55px 80px;
}

/* popup header */
.pop_header {
  text-align: center;
}

.pop_header h2 {
  margin-bottom: 30px;
  font-size: 40px;
  font-weight: 700;
}

/* 내용 */
.popup_content .pop_cont {
  width: 100px;
  height: auto;
}

.popup_content .pop_cont P {
  position: absolute;
  display: block;
}

.popup_content .pop_cont .txt1 {
  top: 667px;
  left: 787px;
}

.popup_content .pop_cont .txt2 {
  left: 787px;
  top: 765px;
}


.popup_content .pop_cont .txt3 {
  left: 431px;
  top: 1069px;
}

.popup_content .pop_cont .txt4 {
  left: 337px;
  top: 1305px;
}

.popup_content .pop_cont .txt5 {
  left: 238px;
  bottom: 241px;
}

.popup_content .pop_cont .txt6 {
  left: 700px;
  bottom: 230px;
}

/* 닫기 버튼 */
.popup_content .closePopup {
  position: absolute;
  right: 35px;
  top: 65px;
  width: 44px;
  height: 44px;
  background: url(../img/btn_close.png) 0 0 / 100% 100% no-repeat;
}

.popup_content .closePopup span {
  display: block;
  text-indent: -9999em;
}

/* 창 다시 보지 않기 */
.popup_content .pop_bottom {
  position: absolute;
  bottom: 55px;
  left: 50%;
  transform: translateX(-50%);
}

.popup_content .pop_bottom .check_box {
  position: relative;
  height: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.popup_content .pop_bottom .check_box input[type="checkbox"] {
  display: none;
}

.popup_content .pop_bottom .check_box label {
  position: relative;
  width: 26px;
  height: 26px;
}

.popup_content .pop_bottom .check_box label .check {
  cursor: pointer;
  display: inline-block;
  width: 26px;
  height: 26px;
  border-radius: 5px;
  border: 4px solid #fff;
  transition: background-color 0.3s, border-color 0.3s;
}

.popup_content .pop_bottom .check_box input[type="checkbox"]:checked+label .check {
  border: none;
  background: url(../img/guidepop_checked.png) 0 0 / 100% 100% no-repeat;
}