* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'NanumSquare', sans-serif;
}

body {
  font-family: 'NanumSquare', sans-serif;
  overflow-x: hidden;
  background: #fffbf8;
}

ul, ol {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

button {
  border: none;
  cursor: pointer;
}

button, a, input {
  outline: none;
}

.display-flex {
  display: flex;
}

.x-space-between {
  justify-content: space-between;
}

.x-center {
  justify-content: center;
}

.section-1>div, .section-4>div {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.header {
  height: 40px;
  border-bottom: 1px solid #ebebeb;
}

.header a {
  border-right: 1px solid #ebebeb;
  padding: 0 30px;
  padding-top: 13px;
}

.header a:first-child {
  border-left: 1px solid #ebebeb;
}



.section-4 {
  padding: 0px 0 150px;
  background: #ffffff;
}

.section-4>div {
  background: #efe9e0;
  padding: 50px 95px;
  position: relative;
}

.section-4 form {
  position: absolute;
  background: #e7dccd;
  width: calc(100% + 20px);
  max-width: 1120px;
  height: 90px;
  left: -10px;
  top: 115px;
  padding: 0 105px;
  display: flex;
  align-items: center;
}

.section-4 form input {
  background: #fff;
  border: none;
  height: 50px;
  color: #262626;
  font-size: 20px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  width: 800px;
}

.section-4 form button {
  padding: 0 20px;
  height: 50px;
  color: #fff;
  font-size: 20px;
  background-color: #197435;
  border: none;
  font-weight: 400;
}

.section-4 h3 {
  margin-bottom: 140px;
  font-size: 30px;
  color: #efe9e0;
}

.section-4 li p {
  background: url("../img/bottom-1.png") no-repeat 100% 100%;
  width: 800px;
  height: 50px;
  line-height: 50px;
  color: #262626;
  padding: 0 20px 0 70px;
  position: relative;
  word-break: break-all;
}

.section-4 li p::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 15px;
  width: 25px;
  height: 19px;
  background: url("../img/bottom-2.png");
}

.section-4 li span {
  font-size: 16px;
  color: #615a54;
  line-height: 1.3;
  margin-left: 10px;
  margin-top: 5px;
}

.section-4 li+li {
  margin-top: 20px;
}

/* ÆäÀÌÂ¡ */
.pagination {
  display: flex;
  margin-top: 50px;
  justify-content: center;
}

.pagination a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #bbb;
  width: 34px;
  height: 34px;
  margin: 0 2px;
  border: 1px solid #ddd;
  color: #ddd;
}

.pagination a.is-clicked {
  border-color: #555;
  color: #555;
}

.pagination .first, .pagination .prev, .pagination .next, .pagination .last {
  border: none;
}

.pagination .first, .pagination .last {
  background: url("../img/arrow-1.png");
}

.pagination .prev, .pagination .next {
  background: url("../img/arrow-2.png");
}

.pagination .last, .pagination .next {
  transform: rotate(180deg);
}
/* ÆäÀÌÂ¡ */