/* 공통스타일링 */
.innerWrapper {
  padding: 1rem 1.5rem 1.5rem 1.5rem;
}
.homeinnerWrapper{
  padding: 1.5rem;
}
.contentHeader {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  position: relative;
  border-bottom: 0.2rem solid #efefef;
}

.contentHeader button {
border: none;
background-color: transparent;
cursor: pointer;
margin-right: 10px;
display: flex;
align-items: center;
}
.contentHeader h1 {
text-align: center;
margin: 0;
font-size: 2rem;
font-weight: 700;
}
.contentHeader img {
width: 5rem;
position: absolute;
left: 3%;
}

img {
  width: 100%;
}
.minimar {
  margin-bottom: 2rem;
}

/* index 영역 */
.indexBackgroundImage {
width: 100%;
min-height: 100vh;
overflow: hidden;
background-image: url(../img/index-background.png);
background-size: 100% 100vh;
}
.indexText {
width: 40%;
margin: 0 auto;
display: block;
padding: 70% 0 50% 0;
}
.indexImg {
width: 80%;
margin: 0 auto;
display: block;
padding-bottom: 10%;
}
.indexLoad {
width: 75%;
margin: 0 auto;
display: block;
padding-bottom: 20%;
}



/* 홈영역 */
.backgroundcolorwrapper {
margin: 0;
padding: 0;
}
.homeHeader {
display: flex;
align-items: center;
justify-content: center;
padding: 1rem;
border-bottom: 0.2rem solid #f2f2f2;
}
.homeHeaderimg {
width: 18%;
}
.homeHeaderimg img {
width: 100%;
}
.homeTitle {
  display: flex;
  border-bottom: 0.1rem solid #ededed;
  margin-bottom: 2rem;
  padding-bottom: 0.2rem;
}
.homeTitle img {
  width: 2rem;
  margin-right: 0.5rem;
}
.homeTitle h1 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
}

.threeBtn {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.threeBtn a {
  width: 30%;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 600;
}
.threeBtn a img {
  padding: 0 1.5rem 0.5rem 1.5rem;
}

/* faq영역 */

.qnaToggleBox {
  background-color: #f7f9f9;
  border-radius: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0.2rem 0.2rem 0.3rem #e5e5e5;
}
.qnaToggleBox:first-child {
  margin-top: 2rem;
  border-top: 0.1rem solid #ffcccc;
}
.qnaToggleBox:last-child {
  margin-bottom: 3rem;
}


.qnaToggleBox h1 {
  font-size: 1.7rem;
  font-weight: 600;
}

.qnaToggleBox .content {
  padding: 2rem;
  font-size: 1.6rem;
  line-height: 1.3;
  background-color: #f7f9f9;
  color: #797a7a;
}
.bold {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 600;
}

.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;
}
.toggleButton.active {
  background-color: #4477dc;
  color: #fff;
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
}
.backgroundImgWrapper {
  background: url(../img/sub-background.png);
  height: 100%;
  max-height: 50vh;
  padding-bottom: 3rem;
}


/* 공통영역 */
h2 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
}
.blueFont {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: #3b71db;
}
h5 {
  font-size: 1.2rem;
  color: #bcbcbc;
}





.notice_wrap {
	margin: 2rem 2rem 3rem;
}
.notice_wrap h2 {
	position: relative;
	font-size: 1.4rem;
	line-height: 1.4;
	color: #5b5b5b;
	font-weight: 800;
	margin-bottom: 1rem;
	text-align: center;
}
.notice_wrap h2::after {
	position: absolute;
	content: "";
	left: 50%;bottom: -.3rem;
	width: 2rem;
	height: 1px;
	background-color: #62a3e7;
	transform: translateX(-50%);
}
.notice_wrap pre {
	font-size: 1.2rem;
	line-height: 1.4;
	color: #787878;
	text-align: center;
}



