/* popup */
.pc {
  display: block;
}

.mobile {
  display: none !important;
}

.layer-popup {
  /* position: absolute; */
  z-index: 9999;
  background-color: #fff;
  box-shadow: 2px 3px 10px #555;
  border-radius: 10px;
  height: auto !important;
}

.layer-popup:nth-child(1) {
  left: 0;
}

.layer-popup img {
  width: 100%;
  height: 100% !important;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.layer-popup .show-chk-wrap {
  display: flex;
  padding: 6px 10px;
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
}

.layer-popup .show-chk-wrap a {
  font-size: 16px;
  color: #505050;
  cursor: pointer;
}

.layer-popup .show-chk-wrap a:hover {
  color: #222;
  font-weight: 600;
  transition: 0.3s;
}

.close-popup {
  box-sizing: border-box;
  padding: 4px 12px;
  border: 1px solid #999;
  border-radius: 4px;
}

.close-popup:hover {
  border: 1px solid #505050; 
  background-color:#505050; 
  color: #fff !important;
  transition: 0.3s;
}

.popup-space {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  top: 5%;
  left: 5%;
  gap: 10px;
  /* align-items: center; */
  z-index: 100;
}


/* main */
#main {
  background: url(../img/main-bg.png);
  background-position: center center !important;
  background-size: cover !important;
  display: flex;
  flex-direction: column;
  gap: 140px;
  align-items: center;
  overflow: hidden;
  padding: 180px 0 0;
}

.main-div {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.main-tit-div {
  display: flex;
  gap: 8px;
  align-items: start;
}

.main-tit-div>p {
  color: #00512C;
  font-family: "esamanru OTF";
  font-size: 52px;
  line-height: normal;
  letter-spacing: -1.3px;
}

.main-div>p {
  text-align: center;
  font-family:"esamanru OTF Bold";
  font-size: 80px;
  line-height: normal;
  letter-spacing: -2px;
  background: linear-gradient(180deg, #00813E 0%, #00512C 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-img-container {
  display: flex;
  align-items: center;
  position: relative;
  justify-self: center;
}

.main-txt {
  width: 515px;
  position: absolute;
  left: 47%;
  transform: translateX(-50%);
  top: -105px;
}

.main-img {
  width: 820px;
  z-index: 5;
  margin-right: -110px
}

.main-img2 {
  width: 820px;
  margin-left: -110px
}


/* section2 */
#section2 {
  background: #F9C634;
  display: flex;
  padding: 60px 0 120px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 100px;
}

.section-tit-div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.section-tit-div>p:first-child {
  color: #111;
  text-align: center;
  font-family: "esamanru OTF";
  font-size: 40px;
  line-height: 150%; /* 60px */
  letter-spacing: -1px;
}

.section-tit-div>p:last-child {
  color: #111;
  font-family: "esamanru OTF Bold";
  font-size: 80px;
  line-height: 130%;
  letter-spacing: -2px;
  text-align: center;
}

.st2-container {
  max-width: 1360px;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.st2-percent1 {
  border-radius: 200px 0px 0px 200px;
  border: 10px solid #FFF;
  background: #AF6A23;
  /* background: linear-gradient(90deg, #AF6A23 19%, #E78D31 19%, #E78D31 100%); */
  box-shadow: 0px 24px 32px 0px rgba(0, 0, 0, 0.10);
  display: flex;
  width: 550px;
  height: 300px;
  box-sizing: border-box;
  padding: 40px 0px 40px 90px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
  background-position: right;
  animation: fillGradientReverse 3s ease-in-out forwards;
  position: relative;
  overflow: hidden;
}

.st2-percent1::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #AF6A23 19%, #E78D31 19%, #E78D31 100%);
  /* transform: translateX(100%);  */
  animation: 
    fillLeftInitial 2.5s ease-in-out 0s 1 forwards, /* 초기 애니메이션 */
    fillLeftRepeat 6.5s ease-in-out 2.5s infinite; /* 반복 애니메이션 */
  z-index: 5;
}

@keyframes fillLeftInitial {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}

@keyframes fillLeftRepeat {
  0% {
    transform: translateX(100%);
  }
  26.3% { /* 2.5s / 9.5s * 100 */
    transform: translateX(0%);
  }
  100% {
    transform: translateX(0%); /* 유지 */
  }
}

.st2-percent1>p:first-child, .st2-percent2>p:first-child {
  color: #FFF;
  font-family: "esamanru OTF";
  font-size: 40px;
  line-height: 150%;
  letter-spacing: -1px;
  z-index: 10;
}

.st2-percent1>p:last-child, .st2-percent2>p:last-child {
  color: rgba(255, 255, 255, 0.65);
  font-family: "esamanru OTF Bold";
  font-size: 100px;
  line-height: 100%; /* 100px */
  letter-spacing: -2.5px;
  z-index: 10;
}

.st2-percent2 {
  display: flex;
  width: 550px;
  height: 300px;
  padding: 40px 90px 40px 0px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 0px 200px 200px 0px;
  border: 10px solid #FFF;
  background:  #00512C;
  background-position: left;
  box-shadow: 0px 24px 32px 0px rgba(0, 0, 0, 0.10);
  position: relative;
  overflow: hidden;
}

.st2-percent2::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #00A650 54%, #00512C 54%, #00512C 100%);
  animation: 
    fillRightInitial 2.5s ease-in-out 0s 1 forwards, /* 초기 애니메이션 */
    fillRightRepeat 6.5s ease-in-out 2.5s infinite; /* 반복 애니메이션 */
  z-index: 5;
}

@keyframes fillRightInitial {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}

@keyframes fillRightRepeat {
  0% {
    transform: translateX(-100%);
  }
  26.3% { /* 2.5s / 9.5s * 100 */
    transform: translateX(0%);
  }
  100% {
    transform: translateX(0%); /* 유지 */
  }
}

.st2-img {
  width: 50%;
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.st2-bottom-tit {
  color: #333;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: 150%; /* 48px */
  letter-spacing: -0.8px;
}


/* section3 */
#section3 {
  background: linear-gradient(180deg, rgba(0, 103, 60, 0.00) 78%, #00673C 78%, #00673C 100%), #F0EDEA;
  display: flex;
  box-sizing: border-box;
  padding: 120px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  align-self: stretch;
}

#section3 .section-tit-div>p:last-child>span {
  background: var(--gradient-g, linear-gradient(180deg, #00A650 0%, #00512C 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#section3 .section-tit-div>p:last-child>.g {
  background: var(--gradient-g, linear-gradient(180deg, #06743b 0%, #00512C 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.st3-tit {
  color: #333;
  text-align: center;
  font-size: 24px;
  line-height: 150%; /* 36px */
  letter-spacing: -0.6px;
}

.st3-container {
  max-width: 1370px;
  width: 90%;
  display: flex;
  gap: 30px;
  justify-content: center;
}

.st3-box {
  width: 25%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.st3-img-div {
  aspect-ratio: 8 / 5;
  overflow: hidden;
}

.st3-img-div>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.st3-img-div:hover>img {
  transform: scale(1.1);
}

.st3-box-div {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  box-sizing: border-box;
  padding: 20px 10px;
  background: #FFF;
}

.st3-box-div>p:first-child {
  color: #000;
  text-align: center;
  font-family: "esamanru OTF Medium";
  font-size: 28px;
  line-height: normal;
  letter-spacing: -0.7px;
}

.st3-box-div>p:last-child {
  color: #505050;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.5px;
}


/* section4 */
#section4 {
  background: #00673C;
  display: flex;
  box-sizing: border-box;
  padding: 60px 0px 120px 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: -2px;
}

#section4 .section-tit-div>p:last-child>span {
  background: var(--gradient-yellow, linear-gradient(0deg, #FFB700 19.2%, #FDDA73 77.68%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.st4-container {
  max-width: 1280px;
  width: 90%;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.st4-box {
  width: calc(33.3% - 27px);
  border-radius: 27px;
  background: #FFF;
  box-shadow: 0px 8px 24px 0px rgba(44, 12, 12, 0.15);
  display: flex;
  box-sizing: border-box;
  padding: 10px;
  flex-direction: column;
  flex-shrink: 0;
}

.st4-box-inner {
  width: 100%;
  border-radius: 20px;
  border: 3px solid #00A650;
  background: linear-gradient(132deg, #FFF 34.77%, #FFF 47.36%, #EFE9E2 47.36%, #FFF 70.33%, #FFF 91.41%);
  box-shadow: 0px 8px 24px 0px rgba(75, 14, 14, 0.15);
  display: flex;
  height: 140px;
  box-sizing: border-box;
  padding: 10px;
  justify-content: center;
  align-items: center;
  position: relative;
}

.st4-box-check {
  position: absolute;
  left: 20px;
  top: 15px;
}

.st4-box-inner>b {
  color: #333;
  text-align: center;
  font-size: 28px;
  line-height: 130%; /* 36.4px */
  letter-spacing: -0.7px;
}


/* section5 */
#section5 {
  background: url(../img/section5/st5-bg.png);
  background-position: center center !important;
  background-size: cover !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  box-sizing: border-box;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.st5-tit {
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: 150%; /* 48px */
  letter-spacing: -0.8px;
  z-index: 5;
}

.st5-container {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.st5-graph-tit {
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: absolute;
  z-index: 5;
  left: -200px;
  top: 30%;
}

.st5-graph-tit>p:first-child {
  color: #FFF;
  font-family: "esamanru OTF Medium";
  font-size: 40px;
  line-height: 140%; /* 56px */
  letter-spacing: -1px;
}

.st5-graph-tit>p:last-child {
  background: #000;
  box-sizing: border-box;
  padding: 5px 10px;
  color: #FFF;
  font-family: "esamanru OTF Bold";
  font-size: 64px;
  line-height: 140%; /* 89.6px */
  letter-spacing: -1.6px;
}

.st5-graph-tit>p:last-child>span {
  background: linear-gradient(95deg, #FFB700 52.69%, #FDDA73 81.03%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.st5-graph {
  width: 100%;
  transform: translateX(9%);
}

.st5-bg {
  border-radius: 0 0 200px 200px;
  background: #00673C;
  width: 500px;
  height: 550px;
  position: absolute;
  top: -160px;
  left: -250px;
}

.st5-bg2 {
  width: 500px;
  height: 550px;
  position: absolute;
  right: -250px;
  border-radius: 200px 200px 0px 0px;
  background: #00673C;
  bottom: 0;
}

.st5-img {
  width: 16%;
  position: absolute;
  left: 0;
  top: 23%;
}

.st5-img2 {
  position: absolute;
  width: 22%;
  right: 0;
  bottom: 10px;
  z-index: 3;
}


/* section6 */
#section6 {
  background: #00673C;
  display: flex;
  padding: 120px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

#section6 .section-tit-div>p:last-child {
  display: flex;
  align-items: center;
  gap: 20px;
}

.st6-tit {
  width: 520px;
  margin-bottom: 10px;
}

.st6-container {
  max-width: 1320px;
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.st6-top-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.st6-top-div>p, .st6-top-div>div {
  width: 40%;
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: 150%; /* 48px */
  letter-spacing: -0.8px;
}

.st6-top-div>div {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.st6-logo {
  width: 204px;
}

.st6-graph-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.st6-graph-div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.green-graph {
  width: 38%;
  border-radius: 100px 0px 0px 100px;
  display: flex;
  background: rgba(0, 0, 0, 0.20);
  height: 60px;
  box-sizing: border-box;
  padding: 0px 20px;
  justify-content: flex-end;
  align-items: center;
  flex-shrink: 0;
  position: relative;
}

.green-graph>span {
  color: #FFF;
  text-align: right;
  font-size: 28px;
  font-weight: 600;
  line-height: 150%; /* 42px */
  letter-spacing: -0.7px;
  z-index: 7;
}

.g-graph1 {
  background: #164628;
}

.st6-graph-div>p {
  width: 34%;
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: 150%; /* 48px */
  letter-spacing: -0.8px;
  white-space: nowrap;
}

.yellow-graph {
  border-radius: 0px 100px 100px 0px;
  background: rgba(0, 0, 0, 0.20);
  width: 38%;
  display: flex;
  height: 60px;
  box-sizing: border-box;
  padding: 0px 20px;
  justify-content: flex-start;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.yellow-graph>span {
  color: #000;
  font-size: 28px;
  font-weight: 600;
  line-height: 150%; /* 42px */
  letter-spacing: -0.7px;
  z-index: 10;
}

.yellow-graph::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px 100px 100px 0px;
  border-top: 2px solid rgba(255, 255, 255, 0.30);
  background: linear-gradient(90deg, #FFB700 0%, #FDDA73 100%);
  z-index: 5;
}

.y-graph1::after {
  animation: 
  fillRightInitial2 2.5s ease-in-out 0s 1 forwards, /* 초기 애니메이션 */
  fillRightRepeat2 6.5s ease-in-out 2.5s infinite; /* 반복 애니메이션 */
}

.y-graph2::after {
  animation: 
    fillRightInitial3 2.5s ease-in-out 0s 1 forwards, /* 초기 애니메이션 */
    fillRightRepeat3 6.5s ease-in-out 2.5s infinite; /* 반복 애니메이션 */
}

.y-graph3::after {
  animation: 
    fillRightInitial4 2.5s ease-in-out 0s 1 forwards, /* 초기 애니메이션 */
    fillRightRepeat4 6.5s ease-in-out 2.5s infinite; /* 반복 애니메이션 */
}

.y-graph4::after {
  animation: 
    fillRightInitial5 2.5s ease-in-out 0s 1 forwards, /* 초기 애니메이션 */
    fillRightRepeat5 6.5s ease-in-out 2.5s infinite; /* 반복 애니메이션 */
}

@keyframes fillRightInitial2 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(-10%);
  }
}

@keyframes fillRightRepeat2 {
  0% {
    transform: translateX(-100%);
  }
  26.3% { /* 2.5s / 9.5s * 100 */
    transform: translateX(-10%);
  }
  100% {
    transform: translateX(-10%); /* 유지 */
  }
}

@keyframes fillRightInitial3 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(-80%);
  }
}

@keyframes fillRightRepeat3 {
  0% {
    transform: translateX(-100%);
  }
  26.3% { /* 2.5s / 9.5s * 100 */
    transform: translateX(-80%);
  }
  100% {
    transform: translateX(-80%); /* 유지 */
  }
}

@keyframes fillRightInitial4 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(-70%);
  }
}

@keyframes fillRightRepeat4 {
  0% {
    transform: translateX(-100%);
  }
  26.3% { /* 2.5s / 9.5s * 100 */
    transform: translateX(-70%);
  }
  100% {
    transform: translateX(-70%); /* 유지 */
  }
}

@keyframes fillRightInitial5{
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(-30%);
  }
}


@keyframes fillRightRepeat5 {
  0% {
    transform: translateX(-100%);
  }
  26.3% { /* 2.5s / 9.5s * 100 */
    transform: translateX(-30%);
  }
  100% {
    transform: translateX(-30%); /* 유지 */
  }
}

.g-graph2::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 20%;
  height: 100%;
  border-radius: 100px 0px 0px 100px;
  background: #164628;
  z-index: 5;
}

.g-graph3::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  border-radius: 100px 0px 0px 100px;
  background: #164628;
  z-index: 5;
}

#section6>p {
  color: #FFF;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: -0.5px;
  width: 90%;
  margin-top: -26px;
}

/* section7 */
#section7 {
  background: #f1eeea;
  display: flex;
  justify-content: center;
  align-items: center;
}

.st7-container {
  display: flex;
  width: 100%;
  padding: 0 0 120px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  border-radius: 0px 0px 200px 0px;
  background: #005330;
}

.st7-line {
  width: 1px;
  height: 120px;
}

.st7-top-tit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.st7-top-div {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
}

.st7-top-div>span {
  text-align: center;
  font-family: "esamanru OTF Bold";
  font-size: 80px;
  line-height: 130%; /* 104px */
  letter-spacing: -2px;
  background: var(--gradient-yellow, linear-gradient(0deg, #FFB700 19.2%, #FDDA73 77.68%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.st7-top-tit>p {
  color: #FFF;
  text-align: center;
  font-family: "esamanru OTF";
  font-size: 40px;
  line-height: 150%; /* 60px */
  letter-spacing: -1px;
}

.st7-box-container {
  max-width: 1360px;
  width: 90%;
  display: flex;
}

.st7-box {
  width: 52%;
  height: 381px;
  background-size: cover !important;
  background-position: center center !important;
  position: relative;
}

.st7-box.box1 {
  background: url(../img/section7/st7-img.png);
  margin-right: -10px;
}

.x-mark {
  width: 84px;
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}

.st7-box.box2 {
  background: url(../img/section7/st7-img2.png);
  margin-left: -10px;
  border-radius: 20px;
  border: 5px solid #FFB700;
}

.p-box {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  line-height: 150%; /* 36px */
  letter-spacing: -0.6px;
  border-radius: 20px;
  border: 1px solid #FFF;
  background: #111;
  display: inline-flex;
  box-sizing: border-box;
  padding: 20px;
  justify-content: center;
  align-items: center;
  position: absolute;
}

.p-box.box1 {
  left: 30px;
  bottom: 68px;
}

.p-box.box2 {
  bottom: 28px;
  right: 42px;
}

.o-mark {
  width: 100px;
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}

.y-box {
  border-radius: 20px;
  border: 5px solid  #FFB700;
  background: #111;
  display: inline-flex;
  box-sizing: border-box;
  padding: 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #FFF498;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: 150%; /* 48px */
  letter-spacing: -0.8px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  white-space: nowrap;
}

.mo-svg {
  display: none;
}


/* section8 */
#section8 {
  background: url(../img/section8/st8-bg.png);
  background-position: center center !important;
  background-size: cover !important;
  padding: 120px 0;
  display: flex;
  justify-content: center;
}

.st8-container {
  max-width: 920px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

#section8 .section-tit-div>p:last-child {
  color: #191919;
}

#section8 .section-tit-div>p:last-child>.span1 {
  background: var(--gradient-g, linear-gradient(180deg, #00A650 0%, #00512C 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#section8 .section-tit-div>p:last-child>.span2 {
  background: var(--gradient-g, linear-gradient(180deg, #017137 0%, #00512C 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.st8-container>p {
  width: 100%;
  padding: 10px 0;
  color: #FFF;
  text-align: center;
  font-family: "esamanru OTF Bold";
  font-size: 48px;
  line-height: 150%; /* 72px */
  letter-spacing: -1.2px;
  border-radius: 8px;
  background: #01522D;
}

.st8-container>p>span {
  color: #FDDA73;
}

.recommend-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.st8-flex-wrap {
  width: 100%;
  display: flex;
  gap: 40px;
}

.st8-flex-wrap .st8-wrap {
  width: 50%;
}

.st8-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.st8-wrap>p {
  width: 100%;
  display: flex;
  box-sizing: border-box;
  padding: 15px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: linear-gradient(92deg, #191919 1.65%, #603813 100%);
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: 150%; /* 48px */
  letter-spacing: -0.8px;
}

.st8-div {
  background: #FFF;
  height: 272px;
  display: flex;
  box-sizing: border-box;
  padding: 0px 20px;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.st8-div>svg {
  transform: translateY(-60%);
}

.plus {
  transform: translateY(-90%) !important;
}

.person-div {
  width: 150px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.transparent-div {
  width: 10%;
}

.p-icon {
  width: 100%;
}

.person-div>p {
  color: #000;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: 150%; /* 48px */
  letter-spacing: -0.8px; 
}

.st8-flex-div {
  height: 272px;
  justify-content: space-between;
  align-items: center;
  display: flex;
  background: #FFF;
}

.st8-flex-div .st8-div {
  height: unset;
}

.st8-flex-div>hr {
  display: block !important;
  opacity: 1;
  width: 2px;
  height: 213px;
  background: #8E877E;
  margin: 0 !important;
}


/* section9 */
#section9 {
  background: #E1D9D1;
}

.st9-container {
  border-radius: 200px 0px 0px 0px;
  background: #00512C;
  display: flex;
  padding: 120px 0px;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

#section9 .section-tit-div>p:last-child>span {
  background: var(--gradient-yellow, linear-gradient(0deg, #FFB700 19.2%, #FDDA73 77.68%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.st9-container>div {
  color: rgba(255, 255, 255, 0.80);
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: 150%; /* 48px */
  letter-spacing: -0.8px;
}

.st9-map {
  max-width: 1360px;
  width: 90%;
}


/* section10 */
#section10 {
  background: #e3e1d5;
  display: flex;
  justify-content: center;
}

.st10-container {
  width: 100%;
  background: url(../img/section10/st10-bg.png);
  background-position: center center !important;
  background-size: cover !important;
  border-radius: 0px 0px 200px 0px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 120px 0;
  align-items: center;
  margin-top: -2px;
  position: relative;
  overflow: hidden;
}

.st10-graph {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}

.st10-mo-graph {
  display: none;
  width: 100%;
  position: absolute;
  left: 0;
  top: 23%;
  object-fit: cover;
}

.st10-tit-div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFF;
  text-align: center;
  font-family: "esamanru OTF Bold";
  font-size: 80px;
  line-height: 140%; /* 112px */
  letter-spacing: -2px;
  gap: 25px;
  z-index: 5;
}

.st10-tit {
  width: 709px;
}

.st10-inner-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  width: 90%;
  z-index: 5;
}

.counter-div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFF;
  text-align: center;
  font-family: "esamanru OTF Bold";
  font-size: 80px;
  line-height: 140%; /* 112px */
  letter-spacing: -2px;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.counter {
  display: flex;
  align-items: center;
  gap: 15px;
}

.digit {
  display: flex;
  width: 90px;
  height: 120px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.50);
  background: linear-gradient(180deg, #111 0%, #777 66.5%, #111 69.5%);
  color: #FFF;
  text-align: center;
  font-family: "esamanru OTF Bold";
  font-size: 80px;
  line-height: normal;
  letter-spacing: -2px;
}

.digit:nth-child(2) {
  margin-right: -5px;
}

.st10-inner-container>p  {
  color: #FFF;
  text-align: center;
  font-family: "esamanru OTF Bold";
  font-size: 80px;
  line-height: 140%; /* 112px */
  letter-spacing: -2px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.line-txt {
  color: #191919;
  text-align: center;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #FFF;
}

.st10-img {
  width: 40%;
}


/* section11 */
#section11 {
  background: url(../img/section11/st11-bg.png);
  background-size: cover !important;
  background-position: bottom !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -2px;
  padding-top: 120px;
  height: 950px;
  position: relative;
  overflow: hidden;
}

.st11-container {
  max-width: 1380px;
  width: 90%;
  display: flex;
  flex-direction: column;
  z-index: 5;
}

.news-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news {
  width: 540px;
  margin-left: 10px;
}

.news2 {
  width: 560px;
}

.trophy {
  max-width: 870px;
  width: 60%;
  position: absolute;
  bottom: 1%;
}

.st11-txt-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -30px;
}

.st11-txt-wrap>p {
  width: 540px;
  color: #111;
  text-align: center;
  font-family: "esamanru OTF Bold";
  font-size: 80px;
  line-height: 140%; /* 112px */
  letter-spacing: -2px;
}

.st11-txt-wrap>p>span {
  background: var(--gradient-red, linear-gradient(180deg, #F5821F 0%, #E50B16 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.st11-chicken {
  max-width: 500px;
  width: 40%;
  position: absolute;
  left: 6%;
  bottom: 5%;
}

.st11-chicken2 {
  max-width: 500px;
  width: 40%;
  position: absolute;
  bottom: 5%;
  right: 4%;
}


/* section12 */
#section12 {
  background: url(../img/section12/st12-bg.png);
  background-size: cover !important;
  background-position: bottom !important;
  display: flex;
  flex-direction: column;
  margin-top: -2px;
  padding-top: 200px;
  height: 900px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.st12-container {
  max-width: 1200px;
  width: 90%;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: start;
  margin-left: 15px;
}

.st12-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.st12-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.st12-div {
  display: flex;
  gap: 23px;
  align-items: end;
}

.award {
  max-width: 690px;
  width: 60%;
  margin-left: -230px;
}

.mo-award {
  display: none;
}

.st12-div-tit {
  display: flex;
  align-items: center;
  color: #FFF;
  text-align: center;
  font-size: 45.908px;
  font-weight: 600;
  line-height: 150%; /* 68.863px */
  letter-spacing: -1.148px;
  gap: 5px;
}

.percent {
  width: 86px;
  margin-left: 15px;
}

.st12-middle-div {
  position: relative;
}

.st12-mo-div {
  display: none;
}

.st12-middle-div>p {
  color: #FFF;
  font-family: "esamanru OTF Bold";
  font-size: 100px;
  line-height: 150%; /* 150px */
  letter-spacing: -2.5px;
}

.st12-middle-div>div {
  color: #FFFED9;
  text-align: center;
  font-family: "esamanru OTF Bold";
  font-size: 103px;
  line-height: 150%; /* 154.5px */
  letter-spacing: -2.575px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: -25px;
}

.light {
  width: 231px;
  position: absolute;
  left: -19%;
  top: 20%;
}

.st12-tit {
  width: 396px;
  margin-bottom: 10px;
}

.st12-bottom-div {
  color: #FFF;
  font-size: 16px;
  font-weight: 300;
  line-height: 150%; /* 24px */
  letter-spacing: -0.4px;
}

.st12-bottom-div>span {
  color: #F8CE8C;
}


/* section13 */
#section13 {
  background: url(../img/section13/st13-bg.png);
  background-size: cover !important;
  background-position: center center !important;
  display: flex;
  flex-direction: column;
  margin-top: -2px;
  padding: 140px 0 120px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 50px;
}

.st13-top-container {
  max-width: 1160px;
  width: 90%;
  display: flex;
  justify-content: space-between;
  gap: 80px;
  position: relative;
}

.st13-award-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.st13-award-div>img {
  height: 170px;
}

.st13-div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.st13-div>p {
  color: #FFF;
  text-align: center;
  font-family: "esamanru OTF";
  font-size: 36px;
  line-height: 150%; /* 54px */
  letter-spacing: -0.9px;
}

.st13-tit {
  width: 80%;
}

.hr-div {
  border: 0.5px solid #765100;
}

.st13-bottom-container {
  width: 90%;
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: center;
}

.st13-img {
  width: 300px;
}


/* section14 */
#section14 {
  background: url(../img/section14/st14-bg.png);
  background-size: cover !important;
  background-position: center center !important;
  display: flex;
  flex-direction: column;
  margin-top: -2px;
  padding: 120px 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 50px;
}

.st14-tit {
  width: 549px;
}

.st14-container {
  max-width: 1360px;
  height: 550px;
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.st14-tit-div {
  display: flex;
  flex-direction: column;
  align-items: end;
  margin-left: auto;
}

.st14-tit-div>p {
  color: #FFF;
  text-align: right;
  -webkit-text-stroke-color: #FFF;
  font-family: "esamanru OTF";
  font-size: 36px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 46.8px */
  letter-spacing: -0.9px;
}

.st14-tit-div>div, .st14-tit-div2>p {
  color: #FFF;
  font-family: "esamanru OTF Bold";
  font-size: 56px;
  line-height: 130%;
  letter-spacing: -1.4px;
}

.st14-tit-div>div>span, .st14-tit-div2>p>span {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #FFF;
  color: transparent;
}

.st14-tit-div2 {
  display: flex;
  flex-direction: column;
}

.st14-bubble {
  max-width: 517px;
  width: 40%;
  position: absolute;
  right: 0;
  bottom: -7%;
}


/* section15 */ 
#section15 {
  background: #F0ECE7;
  display: flex;
  padding-top: 120px;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.menu-container {
  max-width: 1380px;
  width: 90%;
  display: flex;
  padding: 50px 0;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  border-radius: 40px;
  background: #FFF;
}

.st15-tit {
  display: flex;
  align-items: end;
  gap: 20px;
  color: #000;
  text-align: center;
  font-family: "esamanru OTF Bold";
  font-size: 80px;
  line-height: 120%; /* 96px */
  letter-spacing: -2px;
  justify-content: center;
}

.st15-logo {
  width: 43%;
}

.menu-wrap {
  width: 100%;
  display: flex;
  box-sizing: border-box;
  padding: 0 90px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #FFF;
}

.menu-wrap.r {
  background: #230404;
  padding: 40px 90px;
}

.menu-tit-div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-tit-div>p:first-child {
  color: #FFF;
  text-align: center;
  font-family: "esamanru OTF Bold";
  font-size: 32px;
  line-height: 42px; /* 131.25% */
  letter-spacing: -0.8px;
  display: flex;
  box-sizing: border-box;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
}

.menu-tit-div>p:first-child.r {
  background: #EB2127;
}

.menu-tit-div>p:first-child.y-bg {
  background: #E78D31;
}

.menu-tit-div>p:first-child.g-bg {
  background: #00A650;
}

.menu-tit-div>p:last-child {
  color: #505050;
  font-size: 24px;
  font-weight: 500;
  line-height: 28px; /* 116.667% */
  letter-spacing: -0.6px;
  word-break: keep-all;
}

.menu-img-div {
  width: 100%;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.menu-img {
  width: calc(25% - 30px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.menu-img>img {
  width: 100%;
}

.menu-img>p {
  color: #333;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 28px; /* 116.667% */
  letter-spacing: -0.6px;
  white-space: nowrap;
}

.menu-img>p>span {
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.375px;
}

.side-img-div {
  gap: 10px;
}

.side {
  width: calc(16.8% - 10px);
}


/* 900px */
.mi-br {
  display: none;
}

/* 750px */
.ta-br {
  display: none;
}

/* 650px */
.mo-br2 {
  display: none;
}

/* 600px */
.mo-br {
  display: none;
}

/* 480px */
.xs-br {
  display: none;
}


@media(min-width: 1700px) {
  .trophy {
    max-width: 870px;
    width: 70%;
    position: absolute;
    bottom: 3%;
  }
  .st11-chicken, .st11-chicken2 {
    max-width: 700px;
    width: 60%;
    bottom: 1%;
  }
}

@media(max-width: 1450px) {
  .st2-percent1, .st2-percent2 {
    width: 500px;
    height: 250px;
  }
  .st2-percent1>p:first-child, .st2-percent2>p:first-child {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st2-percent1>p:last-child, .st2-percent2>p:last-child {
    font-size: 88px;
    letter-spacing: -2.2px;
  }
  .st2-percent1 {
    padding: 40px 0px 40px 70px;
  }
  .st2-percent2 {
    padding: 40px 70px 40px 0;
  }
  .x-mark, .o-mark {
    top: 60px;
  }
  .st7-box {
    height: 350px;
  }
  .p-box {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .y-box {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .news {
    width: 500px;
  }
  .news2 {
    width: 520px;
  }
  .st11-txt-wrap>p {
    font-size: 72px;
    letter-spacing: -1.8px;
  }
  .menu-wrap {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .menu-tit-div>p:first-child {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .menu-tit-div>p:last-child, .menu-img>p {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .menu-img>p>span {
    font-size: 12px;
    line-height: 18px; /* 150% */
    letter-spacing: -0.3px;
  }
}

@media(max-width: 1400px) {
  .st3-container {
    flex-wrap: wrap;
  }
  .st3-box {
    width: calc(40% - 15px);
  }
  .st5-graph-tit>p:first-child {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st5-graph-tit>p:last-child {
    font-size: 56px;
    letter-spacing: -1.4px;
  }
  .st5-bg {
    width: 400px;
    left: -200px;
  }
  .st5-bg2 {
    width: 400px;
    height: 450px;
    right: -200px;
  }
}

@media(max-width: 1300px) {
  .st10-tit-div {
    flex-direction: column;
    gap: 0;
  }
  .st10-inner-container>p, .counter-div, .line-txt, .digit {
    font-size: 64px;
    letter-spacing: -1.6px;
  }
  .digit {
    width: 80px;
    height: 100px;
  }
  .news {
    width: 460px;
  }
  .news2 {
    width: 480px;
  }
  .st11-txt-wrap>p {
    width: 470px;
    font-size: 64px;
    letter-spacing: -1.6px;
  }
  .trophy {
    width: 65%;
  }
  .st12-div-tit {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .percent {
    width: 65px;
  }
  .st12-middle-div>p {
    font-size: 88px;
    letter-spacing: -2.2px;
  }
  .st12-middle-div>div {
    font-size: 90px;
    letter-spacing: -2.25px;
  }
  .st12-tit {
    width: 340px;
  }
  .light {
    left: -22%;
    top: 15%;
  }
  .st13-img {
    width: 23%;
  }
}

@media(max-width: 1250px) {
  .st6-container {
    gap: 20px;
  }
  .st6-top-div>p, .st6-top-div>div {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st6-logo {
    width: 184px;
  }
   .st6-graph-div>p, .green-graph>span, .yellow-graph>span {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .x-mark, .o-mark {
    top: 40px;
  }
  .st7-box {
    height: 330px;
  }
  .p-box {
    font-size: 18px;
    letter-spacing: -0.45px;
    padding: 15px;
  }
  .y-box {
    font-size: 24px;
    letter-spacing: -0.6px;
    padding: 15px;
  }
}

@media (max-width: 1200px) {
  .main-tit-div>p {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .main-div>p {
    font-size: 64px;
    letter-spacing: -1.6px;
  }
  .main-img, .main-img2 {
    width: 720px;
  }
  .main-txt {
    width: 465px;
    left: 49%;
  }
  .section-tit-div>p:first-child, .st7-top-tit>p {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .section-tit-div>p:last-child, .st7-top-div>span, .st10-tit-div, .st15-tit {
    font-size: 64px;
    letter-spacing: -1.6px;
  }
  .st2-bottom-tit {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st4-container {
    gap: 20px;
  }
  .st4-box {
    width: calc(33.3% - 14px);
  }
  .st4-box-inner>svg {
    top: 10px;
    left: 15px;
    width: 45px;
    height: 40px;
  }
  .st4-box-inner>b {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st6-tit {
    width: 420px;
    margin-bottom: 5px;
  }
  .pc-svg {
    width: 800px;
  }
  .st8-container>p {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st8-wrap>p, .person-div>p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st9-container>div {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st10-tit {
    width: 570px;
  }
  .trophy {
    width: 70%;
  }
  #section12 {
    height: 750px;
    padding-top: 120px;
  }
  #section15 {
    padding-top: 80px;
  }
  .st15-logo {
    width: 40%;
  }
  .menu-container {
    gap: 40px;
  }
  .menu-wrap {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .menu-tit-div>p:first-child {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .menu-tit-div>p:last-child, .menu-img>p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .menu-img>p>span {
    font: 10px;
    line-height: 16px;
    letter-spacing: -0.25px;
  }
  .st13-top-container, .st13-bottom-container {
    gap: 50px;
  }
  .st13-award-div>img {
    height: 130px;
  }
  .st13-img {
    width: 25%;
  }
  .st14-tit {
    width: 480px;
  }
  .st14-tit-div>p {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st14-tit-div>div, .st14-tit-div2>p {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .st14-bubble {
    width: 37%;
  }
  #section6>p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
}

@media(max-width: 1100px) {
  .st2-percent1>p:first-child, .st2-percent2>p:first-child {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st2-percent1>p:last-child, .st2-percent2>p:last-child {
    font-size: 64px;
    letter-spacing: -1.6px;
  }
  .st2-percent1, .st2-percent2 {
    width: 370px;
    height: 220px;
  }
  .st2-percent1 {
    padding: 40px 0px 40px 50px;
  }
  .st2-percent2 {
    padding: 40px 50px 40px 0;
  }
  .st5-container {
    width: 60%;
  }
  .st5-graph-tit {
    left: -50px;
    top: 55%;
  }
  .st5-graph {
    transform: translateX(10%);
  }
  .st5-bg, .st5-bg2, .st5-img, .st5-img2 {
    display: none;
  }
  .x-mark {
    width: 74px;
  }
  .o-mark {
    width: 90px;
  }
  .p-box.box1 {
    bottom: 95px;
  }
  #section11 {
    height: auto;
    padding-bottom: 55px;
  }
  .st11-container {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
  }
  .st11-txt-wrap {
    flex-direction: column;
    justify-content: center;
    margin: 0;
  }
  .news-wrap {
    width: 80%;
    flex-direction: column;
    margin-left: 20px;
  }
  .news, .news2 {
    width: 100%;
    margin: 0;
  }
  .news2 {
    margin-top: -90px;
  }
  .trophy {
    position: static;
    max-width: unset;
    width: 100%;
    margin-top: -60px;
  }
  .st11-chicken {
    max-width: unset;
    width: 50%;
    left: 0;
    bottom: 3%;
  }
  .st11-chicken2 {
    max-width: unset;
    width: 55%;
    right: -4%;
    bottom: 3%;
  }
  .st12-div>img {
    width: 85px;
  }
  .st12-div-tit {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .percent {
    width: 50px;
  }
  .st12-middle-div>p {
    font-size: 72px;
    letter-spacing: -1.8px;
  }
  .st12-middle-div>div {
    font-size: 76px;
    letter-spacing: -1.9px;
  }
  .st12-tit {
    width: 280px;
    margin-bottom: 6px;
  }
  .light {
    width: 160px;
    left: -18%;
    top: 18%;
  }
  #section12 {
    height: 650px;
    padding-top: 100px;
  }
}

@media(max-width: 1000px) {
  .st4-box-inner {
    height: 120px;
  }
  .st4-box-inner>b {
    font-size: 20px;
    letter-spacing: -0.5px;  
  }
  .st4-box-inner>svg {
    width: 40px;
    height: 35px;
  }
  .st6-container {
    gap: 12px;
  }
  .st6-graph-div>p>span {
    display: none;
  }
  .st6-top-div>p, .st6-top-div>div {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st6-logo {
    width: 164px;
  }
  .st6-graph-div>p, .green-graph>span, .yellow-graph>span {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st6-graph-div>p {
    width: 150px;
  }
  .st6-graph-wrap {
    gap: 6px;
  }
  .green-graph, .yellow-graph {
    width: 41%;
    height: 55px;
    padding: 0 10px;
  }
  .st6-top-div>p, .st6-top-div>div {
    width: 42%;
  }
  .st8-div {
    padding: 0 15px;
    gap: 10px;
    height: 240px;
  }
  .st8-flex-div {
    height: 240px;
  }
  .st8-flex-div>hr {
    height: 80%;
  }
  .person-div {
    width: 140px;
  }
  .st8-div>svg {
    width: 45px;
    height: 45px;
  }
  .plus {
    width: 25px !important;
    height: 25px !important;
  }
  .st10-inner-container {
    flex-direction: column;
    gap: 20px;
  }
  .st10-inner-container>p, .counter-div {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  .st10-img {
    width: 60%;
  }
  .st10-graph {
    display: none;
  }
  .st10-mo-graph {
    display: block;
  }
  #section12 {
    height: auto;
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .st12-container {
    flex-direction: column;
    align-items: center;
    margin: 0;
  }
  .st12-wrapper {
    gap: 7.5px;
  }
  .st12-wrap {
    align-items: center;
  }
  .st12-middle-div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .light {
    left: -14%;
    top: 20%;
  }
  .st12-pc-div {
    display: none;
  }
  .st12-mo-div {
    display: block;
    text-align: center;
    margin-top: -100px;
  }
  .pc-award {
    display: none;
  }
  .mo-award {
    width: 70%;
    display: flex;
    margin: 0;
  }
  .menu-container {
    gap: 30px;
  }
  .menu-tit-div {
    flex-direction: column;
    gap: 8px;
    align-items: start;
  }
  .menu-wrap.r {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

@media(max-width: 900px) {
  .pc {
    display: none !important;
  }
  .mobile {
    display: block !important;
  }
  .layer-popup .show-chk-wrap {
    margin-top: 0;
  }
  .layer-popup .show-chk-wrap a {
    font-size: 14px;
    line-height: 20px; /* 142.857% */
    letter-spacing: -0.35px;
  }
  .layer-popup .show-chk-wrap .x-btn {
    padding: 0 15px;
  }
  .mi-br {
    display: block;
  }
  #main {
    gap: 120px;
  }
  .main-tit-div>svg, .st7-top-div>svg {
    width: 20px;
    height: 12px;
  }
  .main-tit-div>p {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .main-div>p {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .main-img {
    width: 570px;
    margin-right: -75px;
  }
  .main-img2 {
    width: 570px;
    margin-left: -75px;
  }
  .main-txt {
    width: 370px;
    top: -80px;
  }
  #section2 {
    gap: 60px;
  }
  .section-tit-div>p:first-child, .st7-top-tit>p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .section-tit-div>p:last-child, .st7-top-div>span, .st10-tit-div, .st11-txt-wrap>p, .st15-tit {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .st2-percent1>p:first-child, .st2-percent2>p:first-child {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st2-percent1>p:last-child, .st2-percent2>p:last-child {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .st2-percent1, .st2-percent2 {
    width: 320px;
    height: 180px;
    border: 5px solid #FFF;
  }
  .st2-percent1 {
    padding: 40px 0px 40px 40px;
  }
  .st2-percent2 {
    padding: 40px 40px 40px 0;
  }
  .st2-bottom-tit {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st3-box {
    width: calc(50% - 15px);
  }
  .st3-tit {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st3-box-div>p:first-child {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st3-box-div>p:last-child {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st4-container {
    gap: 16px;
    justify-content: center;
  }
  .st4-box {
    width: calc(50% - 8px);
  }
  .st5-container {
    width: 70%;
  }
  .st5-tit {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st6-tit {
    width: 320px;
  }
  .st7-box-container {
    flex-direction: column;
  }
  .st7-box {
    width: 100%;
  }
  .st7-box.box1 {
    border-radius: 20px 20px 0 0;
    margin-bottom: -5px;
    margin-right: 0;
  }
  .st7-box.box2 {
    margin-top: -5px;
    margin-left: 0;
  }
  .p-box.box1 {
    left: 18%;
  }
  .p-box.box2 {
    right: 20%;
  }
  .pc-svg {
    width: 600px;
  }
  .st9-container>div {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  #section10 {
    background: #d8d4c8
  }
  .st10-tit {
    width: 450px;
  }
  .st10-inner-container>p, .counter-div, .line-txt, .digit  {
    font-size: 56px;
    letter-spacing: -1.4px;
  }
  .digit {
    width: 70px;
    height: 85px;
  }
  .news2 {
    margin-top: -70px;
  }
  #section11 {
    padding-bottom: 45px;
  }
  .st11-chicken {
    width: 70%;
    left: -5%;
    bottom: 2%;
  }
  .st11-chicken2 {
    display: none;
  }
  .st12-div-tit {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .percent {
    width: 50px;
    margin-left: 7px;
  }
  .st12-middle-div>p {
    font-size: 56px;
    letter-spacing: -1.4px;
  }
  .st12-middle-div>div {
    font-size: 58px;
    letter-spacing: -1.45px;
    margin-top: -15px;
  }
  .st12-tit {
    width: 215px;
  }
  .light {
    width: 130px;
    left: -15%;
  }
  #section15 {
    padding-top: 60px;
  }
  .menu-container {
    padding: 40px 0;
  }
  .st15-logo {
    width: 35%;
  }
  .menu-tit-div>p:first-child {
    padding: 4px 8px;
  }
  .menu-img-div {
    gap: 20px;
  }
  .menu-img {
    width: calc(25% - 15px);
  }
  .menu-wrap {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .menu-wrap.r {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .st13-top-container {
    gap: 40px;
  }
  .st13-award-div {
    gap: 24px;
  }
  .st13-award-div>img {
    height: 100px;
  }
  .st13-bottom-container {
    gap: 20px;
  }
  .st13-img {
    width: 27%;
  }
  .st13-div>p {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st14-container {
    height: 500px;
  }
  .st14-tit {
    width: 390px;
  }
  .st14-tit-div>p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st14-tit-div>div, .st14-tit-div2>p {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .st14-bubble {
    width: 45%;
  }
  #section6>p {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
}

@media(max-width: 800px) {
  .recommend-wrap, .st8-flex-wrap {
    gap: 20px;
  }
  .person-div {
    width: 130px;
  }
}

@media (max-width: 768px) {
  .layer-popup {
    position: fixed;
    top: 0;
    left: 0;
  }
  .st2-percent1, .st2-percent2 {
    width: 250px;
    height: 150px;
  }
  .st2-img {
    width: 55%;
  }
  #section6 .section-tit-div>p:last-child {
    flex-direction: column;
    gap: 0;
  }
  .st13-div {
    gap: 4.8px;
  }
  .st13-div>p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
}

@media(max-width: 750px) {
  .st6-top-div>p, .st6-top-div>div {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st6-logo {
    width: 134px;
  }
  .st6-graph-div>p, .green-graph>span, .yellow-graph>span {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st6-graph-div>p {
    width: 140px;
  }
  .green-graph, .yellow-graph {
    width: 40%;
    padding: 0 10px;
  }
  .st6-top-div>p, .st6-top-div>div {
    width: 40%;
  }
  .pc-svg {
    display: none;
  }
  .mo-svg {
    display: block;
  }
  .person-div {
    width: 120px;
  }
  .st8-div>svg {
    width: 35px;
    height: 35px;
  }
  .plus {
    width: 20px !important;
    height: 20px !important;
    transform: translateY(-120%) !important;
  }
  .st8-container>p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st8-wrap>p, .person-div>p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st8-wrap>p {
    padding: 10px 7px;
  }
  .st8-div, .st8-flex-div {
    height: 200px;
  }
  #section14 {
    background: url(../img/section14/st14-mo-bg.png);
    background-size: 150% !important;
  }
  .st14-bubble {
    display: none;
  }
  .st14-container {
    flex-direction: column-reverse;
    height: 650px;
  }
}

@media(max-width: 700px) {
  .st5-graph-tit>p:first-child {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st5-graph-tit>p:last-child {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .person-div {
    width: 110px;
  }
  .news2 {
    margin-top: -60px;
  }
  #section11 {
    padding-bottom: 35px;
  }
  .trophy {
    margin-top: -40px;
  }
}

@media(max-width: 650px) {
  .mo-br2 {
    display: block;
  }
  .st3-box-div {
    padding: 10px;
    gap: 5px;
    min-height: 104px;
  }
  #section6 {
    padding: 80px 0;
    gap: 40px;
  }
  .st6-container {
    gap: 8px;
  }
  .st6-top-div>p, .st6-top-div>div {
    font-size: 18px;
    letter-spacing: -0.55px;
    width: 40%;
  }
  .st6-logo {
    width: 94px;
  }
  .st6-graph-wrap {
    gap: 5px;
  }
  .st6-graph-div {
    gap: 2.5px;
  }
  .st6-graph-div>p {
    width: 140px;
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .green-graph>span, .yellow-graph>span {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .green-graph, .yellow-graph {
    width: 40%;
    height: 40px;
    padding: 0 5px;
  }
  .green-graph, .green-graph::after {
    border-radius: 25px 0px 0px 25px;
  }
  .yellow-graph, .yellow-graph::after {
    border-radius:  0px 25px 25px 0px;
  }
  .person-div {
    width: 100px;
  }
  .st8-div, .st8-flex-div {
    height: 180px;
  }
  #section13 {
    padding: 120px 0 100px;
    gap: 40px;
  }
  .st13-top-container {
    flex-direction: column;
  }
  .st13-tit {
    width: 60%;
  }
  .st13-bottom-container {
    gap: 5px;
  }
  .st13-img {
    width: calc(33% - 2.5px);
  }
}

@media (max-width: 600px) {
  .layer-popup {
    left: 5% !important;
  }
  .mo-br {
    display: block;
  }
  #main {
    gap: 90px;
    padding: 180px 0 40px;
  }
  .main-tit-div>svg {
    width: 11.88px;
    height: 7.65px;
  }
  .main-tit-div>p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .main-div>p {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .main-img {
    width: 470px;
    margin-right: -130px;
  }
  .main-img2 {
    width: 470px;
    margin-left: 0;
  }
  .main-txt {
    width: 320px;
    top: -70px;
  }
  #section2 {
    padding: 40px 0 80px;
    gap: 70px;
  }
  .section-tit-div {
    gap: 4px;
  }
  .section-tit-div>p:first-child, .st7-top-tit>p {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .section-tit-div>p:last-child, .st7-top-div>span {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st2-percent1>p:first-child, .st2-percent2>p:first-child {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .st2-percent1>p:last-child, .st2-percent2>p:last-child, .st10-tit-div, .st15-tit {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st2-percent1, .st2-percent2 {
    width: 210px;
    height: 130px;
    border: 5px solid #FFF;
    gap: 2.426px;
  }
  .st2-percent1 {
    padding: 40px 0px 40px 25px;
  }
  .st2-percent2 {
    padding: 40px 25px 40px 0;
  }
  .st2-img {
    width: 60%;
  }
  .st2-bottom-tit {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  #section3, #section5 {
    padding: 80px 0;
    gap: 40px;
  }
  .st3-container {
    gap: 16px;
  }
  .st3-box {
    border-radius: 6px;
  }
  .st3-box-div {
    min-height: 84px;
  }
  .st3-box-div>p:first-child {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st3-box-div>p:last-child {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st3-tit {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  #section4 {
    padding: 40px 0 80px;
    gap: 40px;
  }
  .st4-container {
    gap: 10px;
  }
  .st4-box {
    width: calc(50% - 5px);
    padding: 5px;
    border-radius: 13.5px;
    box-shadow: 0px 4px 12px 0px rgba(44, 12, 12, 0.15);
  }
  .st4-box-inner {
    height: 100px;
    border-radius: 10px;
    border: 1.5px solid #00A650;
    background: linear-gradient(132deg, #FFF 34.77%, #FFF 47.36%, #EFE9E2 47.36%, #FFF 70.33%, #FFF 91.41%);
    box-shadow: 0px 4px 12px 0px rgba(75, 14, 14, 0.15);
  }
  .st4-box-inner>svg {
    left: 5.125px;
    top: 5.625px;
    width: 30px;
    height: 25px;
  }
  .st4-box-inner>b {
    font-size: 16px;
    line-height: 130%; /* 20.8px */
    letter-spacing: -0.4px;
  }
  .st5-tit {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st5-container {
    width: 65%;
  }
  .st5-graph-tit {
    gap: 1.5px;
    top: 50%;
    left: -23px;
  }
  .st5-graph-tit>p:first-child {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st5-graph-tit>p:last-child {
    font-size: 32px;
    letter-spacing: -0.8px;
    padding: 2.5px 5px;
  }
  .st6-tit {
    width: 230px;
  }
  .st7-container {
    gap: 40px;
    border-radius: 0 0 80px 0;
    padding-bottom: 80px;
  }
  .st7-line {
    width: 2px;
    height: 50px;
  }
  .st7-top-div>svg {
    width: 17.82px;
    height: 11.475px;
  }
  .st7-box {
    height: 210px;
  }
  .st7-box.box2 {
    border-radius: 10px;
    border: 2.5px solid #FFB700;
  }
  .p-box {
    font-size: 14px;
    letter-spacing: -0.35px;
    padding: 10px;
    border-radius: 10px;
    border: 0.5px solid #FFF;
  }
  .p-box.box1 {
    left: 7%;
    bottom: 45px;
  }
  .p-box.box2 {
    right: 7%;
    bottom: 24px;
  }
  .y-box {
    padding: 10px;
    border-radius: 10px;
    font-size: 18px;
    letter-spacing: -0.45px;
    border: 2.5px solid #FFB700;
    bottom: 16.5px;
  }
  .x-mark {
    width: 50px;
    top: 30px;
  }
  .o-mark {
    width: 60px;
    top: 30px;
  }
  #section8 {
    padding: 80px 0;
  }
  .st8-container {
    gap: 40px;
  }
  .st8-container>p {
    padding: 10px 0;
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .recommend-wrap, .st8-flex-wrap {
    gap: 14.4px;
  }
  .st8-div {
    gap: 7.2px;
    padding: 0px 7.2px;
  }
  .st8-wrap {
    border-radius: 4.32px;
  }
  .st8-wrap>p, .person-div>p {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .st8-wrap>p {
    padding: 5.4px 3.6px;
  }
  .person-div {
    width: 95px;
    gap: 4.32px;
  }
  .st8-flex-div>hr {
    width: 0.72px;
  }
  .st8-div, .st8-flex-div {
    height: 160px;
  }
  .st8-div>svg {
    width: 25px;
    height: 25px;
  }
  .plus {
    width: 15px !important;
    height: 15px !important;
  }
  .st9-container {
    padding: 80px 0;
    gap: 40px;
    border-radius: 80px 0 0 0;
  }
  .st9-container>div {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st10-container {
    padding: 80px 0;
    gap: 40px;
    border-radius: 0 0 80px 0;
  }
  .st10-tit {
    width: 284px;
  }
  .st10-inner-container>p, .counter-div, .line-txt, .digit {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .st10-inner-container>p, .counter-div {
    gap: 10px;
  }
  .counter {
    gap: 7.5px;
  }
  .digit:nth-child(2) {
    margin-right: -2.5px;
  }
  .line-txt {
    -webkit-text-stroke-width: 1px;
  }
  .digit {
    width: 45px;
    height: 60px;
    border-radius: 4px;
    border: 0.5px solid rgba(255, 255, 255, 0.50);
  }
  .st10-img {
    width: 80%;
  }
  #section11 {
    padding-top: 80px;
    padding-bottom: 20px;
  }
  .st11-txt-wrap>p {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .news-wrap {
    width: 100%;
  }
  .news2 {
    margin-top: -40px;
  }
  .trophy {
    margin-top: -20px;
  }
  #section12 {
    padding-top: 50px;
    padding-bottom: 80px;
  }
  .st11-chicken {
    width: 70%;
    left: -15%;
    bottom: 2%;
  }
  .st12-div {
    gap: 7px;
  }
  .st12-div-tit {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .percent {
    width: 45px;
  }
  .st12-wrap {
    gap: 7px;
  }
  .st12-middle-div>p {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .st12-middle-div>div {
    font-size: 50px;
    letter-spacing: -1.25px;
    gap: 10px;
  }
  .st12-tit {
    width: 190px;
  }
  .light {
    width: 110px;
    left: -14%;
    top: 19%;
  }
  .st12-mo-div {
    font-size: 14px;
    letter-spacing: -0.35px;
    margin-top: -70px;
  }
  .menu-container {
    gap: 20px;
    border-radius: 20px;
  }
  #section15 {
    padding-top: 20px;
  }
  .st15-tit {
    gap: 10px;
  }
  .st15-logo {
    width: 138px;
  }
  .menu-wrap {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .menu-wrap.r {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
  .menu-tit-div>p:first-child {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.5px;
    padding: 2px 5px;
  }
  .menu-tit-div>p:last-child {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.35px;
  }
  .menu-img-div {
    gap: 20px;
    justify-content: center;
  }
  .menu-img {
    gap: 8.8px;
    width: calc(45% - 10px);
  }
  .side-img-div {
    gap: 4px 8px;
  }
  .side {
    width: calc(25% - 6px);
  }
  .menu-img>p {
    font-size: 13.2px;
    line-height: 15.4px; /* 116.667% */
    letter-spacing: -0.33px;
  }
  .side>p {
    font-size: 9.9px;
    line-height: 11.55px; /* 116.667% */
    letter-spacing: -0.248px;
  }
  .menu-img>p>span {
    font-size: 7.013px;
    line-height: 11.55px;
    letter-spacing: -0.175px;
  }
  #section14 {
    padding: 80px 0;
  }
  .st14-container {
    flex-direction: column-reverse;
    height: 500px;
  }
  .st14-tit {
    width: 270px;
  }
  .st14-tit-div>div, .st14-tit-div2>p {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st14-tit-div>div>span, .st14-tit-div2>p>span {
    -webkit-text-stroke-width: 1.5px;
  }
  .st14-tit-div>p {
    font-size: 20px;
    letter-spacing: -0.5px; 
  }
  #section6>p {
    font-size: 12px;
    letter-spacing: -0.3px;
    margin-top: -24px;
  }
}

@media(max-width: 550px) {
  .st6-top-div>p, .st6-top-div>div {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st6-logo {
    width: 51px;
  }
  .st6-graph-wrap {
    gap: 3px;
  }
  .st6-graph-div>p {
    width: 75px;
    font-size: 12px;
    letter-spacing: -0.3px;
  }
  .green-graph>span, .yellow-graph>span {
    font-size: 10px;
    letter-spacing: -0.25px;
  }
  .green-graph, .yellow-graph {
    width: 42%;
    height: 30px;
  }
  .person-div {
    width: 85px;
  }
}

@media (max-width: 480px) {
  .main-img {
    width: 350px;
    margin-right: -100px;
  }
  .main-img2 {
    width: 350px;
  }
  .main-txt {
    width: 220px;
    top: -48px;
    left: 48%;
  }
  #section2 {
    gap: 60px;
  }
  .st2-percent1>p:first-child, .st2-percent2>p:first-child {
    font-size: 9.706px;
    letter-spacing: -0.243px;
  }
  .st2-percent1>p:last-child, .st2-percent2>p:last-child {
    font-size: 24.265px;
    letter-spacing: -0.607px;
  }
  .st2-percent1, .st2-percent2 {
    width: 150px;
    height: 90px;
    border: 2.426px solid #FFF;
  }
  .st2-percent1 {
    padding: 9.706px 0px 9.706px 21.838px;
  }
  .st2-percent2 {
    padding: 9.706px 21.838px 9.706px 0px;
  }
  .st2-img {
    width: 55%;
  }
  .xs-br {
    display: block;
  }
  .st3-box-div>p:first-child {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .st3-box-div>p:last-child {
    font-size: 13px;
    letter-spacing: -0.325px;
  }
  .st3-box-div {
    min-height: 72px;
  }
  .st4-box-inner {
    height: 80px;
  }
  .st4-box-inner>svg {
    width: 27px;
    height: 22px;
  }
  .green-graph, .yellow-graph {
    width: 40.5%;
    height: 25px;
  }
  .st7-box {
    height: 190px;
  }
  .p-box {
    font-size: 12px;
    letter-spacing: -0.3px;
  }
  .y-box {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .x-mark {
    width: 40px;
    top: 25px;
  }
  .o-mark {
    width: 50px;
    top: 25px;
  }
  .st8-container>p {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .person-div {
    width: 65px;
  }
  .st8-wrap>p, .person-div>p {
    font-size: 12px;
    letter-spacing: -0.3px;
  }
  .st8-div, .st8-flex-div {
    height: 120px;
  }
  .st8-div>svg {
    width: 18px;
    height: 18px;
  }
  .plus {
    width: 12px !important;
    height: 12px !important;
  }
  .xs-no-br {
    display: none;
  }
  #section11 {
    padding-bottom: 30px;
  }
  .news-wrap {
    margin-left: 15px;
  }
  .trophy {
    margin-top: -40px;
  }
  .st12-div>img {
    width: 75px;
  }
  .st12-div-tit {
    font-size: 20.455px;
    letter-spacing: -0.511px;
  }
  .percent {
    width: 40px;
  }
  .st12-middle-div>p {
    font-size: 44.557px;
    letter-spacing: -1.114px;
  }
  .st12-middle-div>div {
    font-size: 45.893px;
    letter-spacing: -1.147px;
  }
  .st12-tit {
    width: 177px;
  }
  .light {
    width: 100px;
    left: -14%;
    top: 19%;
  }
  .mo-award {
    width: 80%;
  }
  .st12-mo-div {
    font-size: 12px;
    letter-spacing: -0.3px;
    margin-top: -50px;
  }
  .st13-tit {
    width: 70%;
  }
  #section14 {
    background-size: cover !important;
  }
  .st14-container {
    height: 423px;
  }
  .st14-tit {
    width: 220px;
  }
  .st14-tit-div>div, .st14-tit-div2>p {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  #section6>p {
    font-size: 10px;
    letter-spacing: -0.25px;
  }
}

@media(max-width: 400px) {
  .main-img {
    width: 320px;
    margin-right: -90px;
  }
  .main-img2 {
    width: 310px;
  }
  .main-txt {
    width: 200px;
    top: -45px;
    left: 49%;
  }
  #section2 {
    gap: 40px;
  }
  .st2-percent1, .st2-percent2 {
    height: 75px;
  }
  .st2-img {
    width: 55%;
  }
  .st4-box-inner>svg {
    width: 21.75px;
    height: 18.75px;
  }
  .st5-container {
    width: 73%;
  }
  .green-graph>span, .yellow-graph>span {
    font-size: 9px;
    letter-spacing: -0.25px;
  }
  .green-graph, .yellow-graph {
    width: 38.5%;
    height: 20px;
  }
  .st6-top-div>p, .st6-top-div>div {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .p-box.box1 {
    left: 4%;
  }
  .p-box.box2 {
    right: 4%;
  }
  .person-div {
    width: 60px;
  }
  .st8-div, .st8-flex-div {
    height: 100px;
  }
  .st13-div>p {
    font-size: 21.6px;
    letter-spacing: -0.54px;
  }
}

@media(max-width: 370px) {
  .st4-box-inner>b {
    font-size: 15px;
    letter-spacing: -0.375px;
  }
  .st9-container>div {
    font-size: 15px;
    letter-spacing: -0.375px;
  }
}
