.section-title {
  font-family: "GmarketSans", sans-serif;
}

.banner {
  background: linear-gradient(-70deg, #e5e8f4 30%, #4163cf 30%);
}

.slider {
  /* layout */
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  position: relative;
  /* size */
  width: 100%;
}

.slider-item {
  display: flex;
  align-items: center;
  justify-content: center;

  /* position - 버튼 클릭시 left offset값을 적용시키기 위해 */
  position: relative;
  left: 0px;

  /* size */
  width: 100%;
  height: 550px;
  /* flex item의 flex-shrink는 기본값이 1이므로 컨테이너 크기에 맞게 줄어드는데, 슬라이드를 구현할 것이므로 줄어들지 않도록 0을 준다. */
  flex-shrink: 0;

  /* transition */
  transition: left 0.15s;
  font-size: 0;
  margin: 0;
  padding: 0;
}

.slider-item > a {
  width: 100%;
  height: 100%;
  display: block;
}

.slider-button {
  /* layout */
  display: flex;
  justify-content: center;
  align-items: center;

  /* position */
  position: absolute;
  /* 버튼이 중앙에 위치하게 하기위해 계산 */
  top: calc(50% - 16px);

  /* size */
  /* width: 32px;
  height: 32px; */

  /* style */
  border-radius: 100%;
  background-color: #cccc;
  cursor: pointer;
}

.slider-button.prev {
  left: 10px;
}
.slider-button.next {
  right: 10px;
}

.slider-pagination {
  /* layout */
  display: flex;
  gap: 7px;

  /* position */
  position: absolute;
  bottom: 4rem;
  /* left:50%, translateX(-50%)를 하면 가로 가운데로 위치시킬 수 있다. */
  left: 50%;
  transform: translateX(-50%);
}

.slider-pagination li {
  display: inline-block;
  text-indent: -9999rem;
  border-radius: 50%;
  background: #f7f7f7;
  width: 10px;
  height: 10px;
  cursor: pointer;
}

.slider-pagination li.active {
  background: #4163cf;
  transition: 0.3s linear;
  width: 42px;
  border-radius: 4px;
}

.slide00 {
  background: url("../img/main/img_main00.jpg") center 0 no-repeat;
  background-size: 100% 100%;
  background-size: cover;
  width: 100%;
  height: 550px;
}

.slide01 {
  background: url("../img/main/img_main01.png") center 0 no-repeat;
  background-size: 100% 100%;
  background-size: cover;
  width: 100%;
  height: 550px;
}

.slide02 {
  background: url("../img/main/img_main02.jpg") center 0 no-repeat;
  background-size: 100% 100%;
  background-size: cover;
  width: 100%;
  height: 550px;
}

.slide03 {
  background: url("../img/main/img_main03.jpg") center 0 no-repeat;
  background-size: 100% 100%;
  background-size: cover;
  width: 100%;
  height: 550px;
}

.slide04 {
  background: url("../img/main/img_main04.jpg") center 0 no-repeat;
  background-size: 100% 100%;
  background-size: cover;
  width: 100%;
  height: 550px;
}

.slide05 {
  background: url("../img/main/img_main05.png") center 0 no-repeat;
  background-size: 100% 100%;
  background-size: cover;
  width: 100%;
  height: 550px;
}

.why .box-01 li {
  display: flex;
  justify-content: start;
  align-items: center;
  height: 122px;
  background: #e9e9e9;
  color: #222;
}

.why .box-01 li::before {
  content: "";
  display: block;
  background: #ffffff;
  width: 78px;
  height: 78px;
  border-radius: 100%;
  margin: 0 10px 0 5rem;
}

.why .box-01 li:nth-child(1)::before {
  background: #ffffff url("../img/main/ico_why01.png") center center no-repeat;
}

.why .box-01 li:nth-child(2)::before {
  background: #ffffff url("../img/main/ico_why02.png") center center no-repeat;
}

.why .box-01 li:nth-child(3)::before {
  background: #ffffff url("../img/main/ico_why03.png") center center no-repeat;
}

.why .box-01 li:nth-child(4)::before {
  background: #ffffff url("../img/main/ico_why04.png") center center no-repeat;
}

.why .box-01 li:nth-child(5)::before {
  background: #ffffff url("../img/main/ico_why05.png") center center no-repeat;
}

.why .box-01 li:nth-child(6)::before {
  background: #ffffff url("../img/main/ico_why06.png") center center no-repeat;
}

.why .box-02 dl dt::before {
  display: block;
  height: 80px;
  content: "";
}
.why .box-02 dl:nth-child(1) dt::before {
  background: #ffffff url("../img/main/ico_w01.png") center center no-repeat;
}

.why .box-02 dl:nth-child(2) dt::before {
  background: #ffffff url("../img/main/ico_w02.png") center center no-repeat;
}

.why .box-02 dl:nth-child(3) dt::before {
  background: #ffffff url("../img/main/ico_w03.png") center center no-repeat;
}

.why .box-02 dl:nth-child(4) dt::before {
  background: #ffffff url("../img/main/ico_w04.png") center center no-repeat;
}

.why .box-02 dl dt {
  /* color: #4264d0; */
  color: #222222;
  font-size: 1.8rem;
  font-weight: 700;
}

.why .box-02 dl dd {
  margin-top: 12px;
  color: #222222;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.why .youtubeVideo .pagination button {
  border-radius: 2px;
  display: inline-block;
  color: #4264d0;
  border: 1px solid #4264d0;
  font-size: 1.125rem;
  text-align: center;
  padding: 8px 50px;
}

.why .youtubeVideo .pagination button.active {
  background: #4264d0;
  color: #fff;
}

.onestop .box-01 ul {
  margin: 0 2rem;
  width: 100%;
}

.onestop .box-01 ul li {
  position: relative;
  text-align: center;
  min-width: 67px;
}

.onestop .box-01 ul {
  background: url("../img/main/bg-onestop.png") center 25px repeat-x;
}

.onestop .box-01 ul li:nth-child(1) {
  position: relative;
  background: url("../img/main/ico_onestop01.png") top center no-repeat;
  z-index: 2;
}

.onestop .box-01 ul li:nth-child(1)::before {
  content: "";
  position: absolute;
  display: block;
  background: #ffffff;
  width: 12px;
  height: 55px;
}

.onestop .box-01 ul li:nth-child(2) {
  background: url("../img/main/ico_onestop02.png") top center no-repeat;
}

.onestop .box-01 ul li:nth-child(3) {
  background: url("../img/main/ico_onestop03.png") top center no-repeat;
}

.onestop .box-01 ul li:nth-child(4) {
  background: url("../img/main/ico_onestop04.png") top center no-repeat;
}

.onestop .box-01 ul li:nth-child(5) {
  background: url("../img/main/ico_onestop05.png") top center no-repeat;
}

.onestop .box-01 ul li:nth-child(6) {
  background: url("../img/main/ico_onestop06.png") top center no-repeat;
}

.onestop .box-01 ul li:nth-child(7) {
  position: relative;
  background: url("../img/main/ico_onestop07.png") top center no-repeat;
}

.onestop .box-01 ul li:nth-child(7)::after {
  content: "";
  position: absolute;
  display: block;
  background: #ffffff;
  top: 0;
  right: 0;
  width: 18px;
  height: 55px;
}

.onestop .box-01 ul li span {
  margin-top: 70px;
  display: inline-block;
  color: #666666;
  font-size: 0.875rem;
  font-weight: 700;
}

.onestop .box-01 ul li p {
  color: #111111;
  font-weight: 400;
}

.onestop .box-02 article {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.onestop .box-02 article .info {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-left: 2rem;
  min-width: 17rem;
}

.onestop .box-02 article .info h5 {
  font-size: 1.25rem;
  line-height: 1.25rem;
  color: #111111;
  padding: 12px 3px 7px;
  border-bottom: 1px solid #ededed;
}

.onestop .box-02 article .info p {
  color: #666666;
  line-height: 1.25rem;
  padding: 18px 4px 0;
}

.onestop .box-02 article .info .info-btn {
  flex: 1;
  display: flex;
  align-items: flex-end;
}

.onestop .box-02 article .info .info-btn .btn {
  color: #253a5b;
  font-size: 0.875rem;
  font-size: 0.875rem;
  border-radius: 3px;
  border: 1px solid #253a5b;
  background-color: transparent;
  padding: 0.3rem 0.875rem;
  margin-right: 6px;
}

.price .box-01 article {
  box-sizing: border-box;
  position: relative;
  background-color: #fff;
  text-align: center;
  max-width: 300px;
  max-height: 467px;
  width: 23.0769vw;
  color: #666666;
  padding: 1.875rem 0.875rem 3rem;
  filter: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05));
}

.price .box-01 article h5 {
  color: #222222;
  padding-bottom: 8px;
  border-bottom: 1px solid #ededed;
}

.price .box-01 article .image-cover {
  max-width: 120px;
  margin: 15px auto;
}

section article em {
  color: #4264d0;
  font-size: 1.5rem;
  line-height: 1.5rem;
  display: block;
  font-weight: 700;
  position: relative;
  font-style: normal;
}

section article em::after {
  content: "원~";
  font-size: 1rem;
}

.price .box-01 article ul {
  margin: 1rem auto;
  margin-left: 4rem;
  min-height: 6rem;
}

.price .box-01 article ul li {
  color: #666666;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0px;
  text-align: left;
  font-weight: 400;
}

.price .box-01 article ul li::before {
  content: "·";
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
}

.price .box-01 article span {
  border-radius: 2px;
  display: inline-block;
  color: #4264d0;
  border: 1px solid #4264d0;
  font-size: 1.125rem;
  text-align: center;
  padding: 8px 50px;
}

.price .box-01 article:hover {
  filter: drop-shadow(0 25px 25px rgb(175 175 175 / 0.59));
}

.price .box-01 article:hover span {
  background-color: #4264d0;
  color: #fff;
}

.bom {
  background: url("../img/main/bg-bom.jpg") center 72% no-repeat;
}

.promise .box-01 article {
  position: relative;
  background: #fff;
  border-radius: 4px;
  color: #222222;
  font-weight: 400;
  text-align: center;
  padding: 2.5rem 1.25rem 3rem;
  display: flex;
  flex-direction: column;
}

.promise .box-01 article h5 {
  font-size: 1.25rem;
  line-height: 1.25rem;
}

.promise .box-01 article .image-cover {
  margin: 1.5rem auto;
  max-width: 228px;
}

.promise .box-01 article ul li {
  text-align: left;
  font-size: 1.125rem;
  letter-spacing: 0px;
  line-height: 2.25rem;
}

.promise .box-01 article ul li::before {
  background: url("../img/main/ico_check.png") no-repeat 0px 0px;
  content: "";
  width: 14px;
  height: 10px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.promise .box-01 article .btn_area {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

section .btn_area span {
  border-radius: 2px;
  display: inline-block;
  color: #4264d0;
  border: 1px solid #4264d0;
  font-size: 1.125rem;
  text-align: center;
  padding: 8px 50px;
}

.promise .box-01 article:first-child {
  flex: 1;
}

.promise .box-01 article:first-child h5 {
  font-size: 1.5rem;
  line-height: 1.5rem;
}

.promise .box-01 article:first-child p {
  margin-top: 1rem;
  font-size: 0.875rem;
}

.promise .box-01 article:first-child .image-cover {
  max-width: 369px;
}

.promise .box-01 article:not(:first-child) {
  width: 18.5rem;
}

.custom .box-01 article {
  position: relative;
}

.custom .box-01 article .image-cover::after {
  background: url("../img/main/right-arrow-gray.png") no-repeat 0px 0px;
  content: "";
  position: absolute;
  top: 50%;
  right: -35px;
  transform: translateY(-75%);
  display: inline-block;
  vertical-align: middle;
  width: 15px;
  height: 26px;
}

.custom .box-01 article:last-child .image-cover::after {
  background: none;
  width: 0;
  height: 0;
}

.custom .box-01 article span {
  background: #25395b;
  display: block;
  width: 100%;
  padding: 10px 0;
  color: #ffffff;
  font-size: 1.125rem;
}

.reviews .box-01 article {
  position: relative;
  border-radius: 5px;
  background-color: #ffffff;
}

.reviews .box-01 article .description {
  margin: 1.125rem 1.25rem 1.75rem;
  text-align: left;
  position: relative;
}

.reviews .box-01 article .description h5 {
  font-size: 1.125rem;
  color: #222222;
}

.reviews .box-01 article .description span {
  margin-top: 10px;
  font-size: 0.875rem;
  color: #777777;
}

.reviews .box-01 article .description .rating {
  position: aboslute;
  bottom: 0;
  margin-top: 1rem;
}

.reviews .box-01 article .description .star {
  background: url("../img/comm/ico_star.png") center center no-repeat;
  width: 12px;
  height: 11px;
  display: inline-block;
}

.reviews .btn {
  background: #4163cf;
  color: #ffffff;
  padding: 10px 25px;
  font-size: 1.125rem;
}

.board .item {
  /* max-width: 425px; */
  flex: 1;
  height: 300px;
  padding: 60px 40px;
  text-align: left;
  color: #ffffff;
}

.board .item:nth-child(1) {
  background-color: #12b48b;
}

.board .item:nth-child(2) {
  background-color: #1d52a4;
}

.board .item:nth-child(3) {
  background-color: #454545;
}

.board .item .title {
  width: auto;
  height: 45px;
  border-bottom: 1px solid #fff;
  color: inherit;
  position: relative;
}

.board .item .title h4 {
  font-size: 24px;
  letter-spacing: 0px;
  font-weight: 700;
  color: inherit;
}

.board .item .title span {
  position: absolute;
  right: 0;
  top: 2px;

  width: 76px;
  height: 29px;
  border-radius: 15px;
  background-color: #ffffff;
  text-align: center;
  vertical-align: middle;
  display: inline-block;

  font-size: 16px;
  line-height: 29px;
  font-weight: 700;
}

.board .item:nth-child(1) .title span {
  color: #12b48b;
}

.board .item:nth-child(2) .title span {
  color: #1d52a4;
}

.board .item:nth-child(3) .title span {
  color: #454545;
}

.board .item ul {
  width: auto;
  color: inherit;
  margin-top: 20px;
}

.board .item ul li {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0px;
  line-height: 31px;
  height: 31px;
}

.board .item ul li::before {
  content: " ";
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background-color: #fff;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.board .item ul li a {
  color: #fff;
}
