/* 공통스타일링 */
.innerWrapper {
  padding: 3rem 1.5rem 1.5rem 1.5rem;
}
.homeinnerWrapper{
  padding: 0rem 1.5rem 1.5rem 1.5rem;
}
.contentHeader {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.contentHeader img {
width: 3rem;
}

/* index 영역 */
.indexBackgroundImage {
  background: url(../img/index_bg.png);
  background-size: cover;
  position: relative;
  min-height: 100vh;
  }
  .indexLogo {
  width: 40%;
  margin: 0 auto;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%); 
  top: 10%;
  }
  .indexText {
  width: 20%;
  margin: 0 auto;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%); 
  top: 40%;
  }
  .indexLoad {
  width: 25%;
  margin: 0 auto;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%); 
  bottom: 20%;
  }
  
  .indexBackgroundImage a img {
    width: 90%;
    display: block;
    margin: 0 auto;
    margin-bottom: 2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%); 
  }
  
  



/* 홈영역 */
.backgroundcolorwrapper {
  background: url(../img/index_bg.png);
  background-size: cover;
  position: relative;
  min-height: 100vh;
}
.homeHeader {
display: flex;
align-items: center;
justify-content: center;

}
.backgroundcolorwrapper a img {
  border-radius: 50%;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(140, 140, 140, 0.305);
}
.homeHeaderimg {
width: 30%;
}
.homeHeaderimg img {
width: 100%;
}
.menu1 {
  position: absolute;
  top: 10%;
  left: 5%;
}
.menu2 {
  position: absolute;
  top: 30%;
  right: 5%;
}
.menu3 {
  position: absolute;
  bottom: 30%;
  left: 5%;
}
.menu4 {
  position: absolute;
  bottom: 10%;
  right: 5%;
}
.backgroundcolorwrapper a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.backgroundcolorwrapper a h1 {
  text-align: center;
  line-height: 1.3;
  font-size: 1.6rem;
  color: #fff;
}
.backgroundcolorwrapper a img {
  width: 60%;
  margin-bottom: 1.5rem;
}

/* WhatIsAdhd 영역 */
.title {
  display: flex;
  width: 100%;
  align-items: center;
  margin-bottom: 2rem;
}
.title img {
  width: 2.5rem;
  margin-right: 0.5rem;
}
.title h1 {
  font-size: 1.8rem;
  font-weight: 500;
}
.topcontent {
  line-height: 1.5;
  color: #767473;
  font-size: 1.6rem;
}

.qnaToggleBox {
  border-top: 0.1rem solid #e3e3e3;
}
/* .botbor {
  border-bottom: 0.1rem solid #e3e3e3;
} */

.qnaToggleBox h1 {
  font-size: 1.7rem;
  font-weight: 600;
}
.qnaToggleBox img {
  margin-right: 0.5rem;
}

.qnaToggleBox .content {
  padding: 3rem 2rem;
  font-size: 1.6rem;
  line-height: 1.3;
  color: #5e5b5a;
}

.toggleButton {
  width: 100%;
  margin-right: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem 1.5rem 2rem;
}
.toggleButton img {
  width: 1.5rem;
  margin-left: 1rem;
}
.toggleColor {
  text-align: left; /* 텍스트를 왼쪽 정렬로 설정 */
  margin: 0; /* 기본 마진 제거 */
  padding: 0; /* 기본 패딩 제거 */
  line-height: 1.3;
}

.threeBtn {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 2rem;
}
.threeBtn a {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 25%;
}
.threeBtn a img{
  width: 70%;
  margin-bottom: 0.5rem;
}
.threeBtn a h1{
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.3;
  font-weight: 500;
  color: #6d6b6b;
}
.contentBox {
  padding: 1rem;
  background-color: #e6f1f4;
  box-shadow: 0.2rem 0.2rem 0.2rem #ccc;
  margin-bottom: 2rem;
  border-radius: 1rem;
}
.contentBox h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #575454;
  margin-bottom: 1.5rem;
}
.contentBox pre {
  font-size: 1.6rem;
  color: #6d6d6d;
  line-height: 1.3;
}
.mar2 {
  margin-bottom: 2rem;
}

.swiper-slide a {
  height: 12rem;
  width: 100%;
  box-shadow: 0.3rem 0.3rem 0.5rem #eee;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1rem;
  margin-bottom: 2rem;
}

.swiper-slide img {
  width: 30%;
  margin-bottom: 1rem;
}
.swiper-slide h1 {
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}
/* 모달 */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* 반투명한 검정 배경 */
  z-index: 9999; /* 다른 요소 위에 표시하기 위한 z-index 값 */
  display: none;
}
.modalContent {
  width: 80%;
  z-index: 100;
  background-color: #fff;
  border-radius: 1rem;
  position: fixed;
  padding: 2rem 2rem 4rem 2rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /
}
.modal .contentImg {
  display: block;
  width: 30%;
  margin: 0 auto;
  margin-bottom: 3rem;
  margin-top: 5rem;
}
.modal h1 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.3;
}
.modal pre {
  font-size: 1.6rem;
  line-height: 1.3;
  margin-bottom: 5rem;
}
.modalX {
  display: flex;
  justify-content: end;
}
.modalX img {
  width: 2rem;
}

.blackBG {
  background-color: rgba(0, 0, 0, 0.7);
  height: 100vh;
  position: relative;
  z-index: 99;
}
.footerimg {
  position: relative;
  z-index: 1;
}
.mar6 {
  margin-bottom: 6rem;
}

/* child 영역 */
.childContent h1 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.childContent h3 {
  text-align: center;
  font-size: 1.6rem;
  color: #6d6b6b;
}


/* check 영역 */
.test {margin-bottom: 10rem;display: flex;flex-direction: column;}
.test h2 {margin-bottom: 2rem;font-size: 2rem;line-height: 1.3;font-weight: 600;text-align: center;}
.radio_wrap {display: flex;justify-content: space-between;}
.radio_wrap li {
    list-style: none;
    text-align: center;
    display: flex;flex-direction: column;justify-content: center;align-items: center;
    width: 25%;
    position: relative;
}
.radio_wrap li input {
    /* border: 2px solid #aaa; */
    position: absolute;
}
.radio_wrap li div {
    font-size: 1.2rem;line-height: 1.2;color: #878686;
    position: absolute;
    left: 50%;
    top:3.2rem;
    width: 100%;
    transform: translateX(-50%);
}
.radio_wrap label {display: block;background-color: #e2e2e2;border-radius: 50%;cursor: pointer;}
.radio_wrap input[type="radio"]:checked + .circle1 {background-color: #f1f0e8;}
.radio_wrap input[type="radio"]:checked + .circle2 {background-color: #eee0c9;}
.radio_wrap input[type="radio"]:checked + .circle3 {background-color: #BFD5DD;}
.radio_wrap input[type="radio"]:checked + .circle4 {background-color: #66A7BC;}
.radio_wrap input[type="radio"]:checked + .circle5 {background-color: #507989;}
.radio_wrap input[type="radio"]:checked + label div {color: #000;font-weight: bold;}
.radio_wrap .circle1 {width: 1.2rem;height: 1.2rem;}
.radio_wrap .circle2 {width: 1.55rem;height: 1.6rem;}
.radio_wrap .circle3 {width: 1.95rem;height: 1.9rem;}
.radio_wrap .circle4 {width: 2.25rem;height: 2.25rem;}
.radio_wrap .circle5 {width: 2.5rem;height: 2.5rem;}
/* .radio_wrap .circle1 {width: 12px;height: 12px;}
.radio_wrap .circle2 {width: 15px;height: 15px;}
.radio_wrap .circle3 {width: 18px;height: 18px;}
.radio_wrap .circle4 {width: 22px;height: 22px;} */
/* 광고모달 */
.coopang_wrap {position:fixed;left: 0;top: 0;width: 100%;height: 100%;display: flex;justify-content: center;align-items: center;flex-direction: column;background-color: #fff;overflow-y: scroll;z-index: 1000;}
.coopang_wrap .p1 {text-align: center;font-size: 1.8rem;line-height: 1.4;color:#111;margin:3rem 0;font-weight:bold;}
.coopang_wrap .p2 {text-align: center;font-size: 1.4rem;line-height: 1.2;color:#666;margin-bottom:2rem;}
.coopang_wrap .p3 {text-align: center;font-size: 1.2rem;line-height: 1.2;color:#aaa;margin-bottom:1rem;}
.coopang_wrap .link {position:relative;width: calc(100% - 6rem);max-width: 700px;border-radius: 10rem;border:none;background-color: #9ac67d;margin-bottom: 1.5rem;box-shadow: 2px 2px 10px rgba(0, 0, 0, .2);}
.coopang_wrap .link p {color: #fff;font-size: 1.6rem;font-weight:600;width:calc(100% - 8rem);margin:0 auto;padding:1.5rem 0;}
.coopang_wrap .link .cancel {position:absolute;right:1rem;top:50%;width:3rem;height:3rem;transform:translateY(-50%);border-radius:10rem;background-color:#fff;}
.coopang_wrap .link .cancel p {color:#9ac67d;padding: 0;width: 100%;height: 100%;display: flex;align-items: center;justify-content: center;}
.coopang_wrap .link .cancel span {position: absolute;left:20%;top:50%;width: 60%;height: 2px;transform-origin: center;background-color: #9ac67d;display: none;}
.coopang_wrap .link .cancel span:nth-of-type(1){transform: rotate(45deg);}
.coopang_wrap .link .cancel span:nth-of-type(2){transform: rotate(-45deg);}


/* 전면광고 */
.fullAd_wrap {position: fixed;left: 0;top: 0;width: 100%;height:100vh;display: flex;align-items: center;flex-direction: column;justify-content: center;background-color: rgba(0, 0, 0, .4);backdrop-filter: blur(3px);z-index: 1000;}
.fullAd_wrap .info {font-size: 1.6rem;line-height: 1.4;color:#fff;}
.fullAd_wrap .time {position: absolute;transform: translateX(-50%);left: 50%;top: 1.5rem;padding: 1rem 3rem;color: #666;z-index: 1000;font-weight: 500;border-radius: 10rem;background-color: #fff;box-shadow: 0 0 .5rem rgba(0, 0, 0, .2);font-size: 1.6rem;}
.fullAd_wrap .ins_wrap {position: absolute;top: 50%;left: 50%;width: 100%;transform: translate(-50%, -50%);height: fit-content;}

.bottomText {
    margin-top: 2rem;
}


.testBtn {
  width: 100%;
  padding: 2rem;
  display: flex;
  justify-content: space-around;
}
.testBtn button {
  width: 15%;
  font-size: 1.4rem;
}
.testBtn button img {
  width: 100%;
  margin-bottom: 0.5rem;
}
.resultBtn img {
  width: 100%;
  display: block;
  margin: 0 auto;
}
.testTopText {
  text-align: center;
}
.testTopText h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.testTopText h3 {
  font-size: 1.6rem;
  margin-bottom: 5rem;
  line-height: 1.3;
}
.test h4 {
  font-size: 1.6rem;
  color: #666;
  text-align: center;
  margin-bottom: 2rem;
}


/* result 영역 */
.result {
  padding: 3rem;
}
.result h1 {
  text-align: center;
  font-size: 3rem;
  line-height: 1.3;
  font-weight: 600;
}
.result span {
  text-align: center;
  font-size: 3rem;
  line-height: 1.3;
  color: #507989;
  font-weight: 600;
}
.result h3 {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.3;
  color: #696767;
  margin-top: 3rem;
  margin-bottom: 3rem;
  font-weight: 600;
}
.result pre {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.3;
  color: #767474;

}

.result .blueFont {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.3;
  color: #507989;

}
.marmar {
  margin-bottom: 5rem;
}
.fourBtn {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 10rem 2rem 2rem 2rem;
  flex-wrap: wrap;
}
.fourBtn a {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  margin-bottom: 2rem;
}
.fourBtn a img{
  width: 35%;
  margin-bottom: 0.5rem;
}
.fourBtn a h1{
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.3;
  font-weight: 500;
  color: #6d6b6b;
}
.noeasyBox {
  margin-top: 5rem;
  margin-bottom: 5rem;
  position: relative;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.noeasyBox div {
  font-size: 1.6rem;
  font-weight: 500;
}
hr {
  border: 0;
  height: 1px;
  width: 30%;
  text-align: center;
}
.miniBtn {
  position: absolute;
  width: 1.5rem;
  left: 20%;
}
.botText {
  font-size: 1.2rem;
  color: #9d9c9c;
  display: block;
  padding: 2rem;
  line-height: 1.3;
  text-align: center;
}