@charset "UTF-8";

/*         ORNN COMMON CSS          */
h1, h2, h3, h4, h5, h6, p, li, tr, th, td, .o_title, .o_h1, .o_h2, .o_h3, .o_h4, .o_h5, .o_h6, .o_h7, .o_h8 {font-family: Pretendard, sans-serif; word-break: keep-all; font-style: normal; letter-spacing: -0.03em; margin: 0;}
html.o_html { font-size: 15px; }
/* 1. 와이드 스크린 (> 1800px): 폰트 확대 */
@media all and (min-width: 1800px) {
  html.o_html { font-size: 18px; }
}
/* 2. 태블릿 가로 / 큰 노트북 (<= 1280px) */
@media all and (max-width: 1280px) {
  html.o_html { font-size: 14px; }
}
.o_hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; border: 0; clip: rect(0, 0, 0, 0); overflow: hidden; }
/* .o_section */
.o_section div, .o_section span, .o_section article, .o_section section, .o_section header, .o_section footer, .o_section p, .o_section ul, .o_section li, .o_section fieldset, .o_section legend, .o_section label, .o_section a, .o_section nav, .o_section img { box-sizing: border-box; }
.o_section a { text-decoration: none; }
.o_section img { width: 100%; }
.o_section strong { font-weight: 700; }
.imgBox, .o_imgBox, .o_imgItem { line-height: 0; }
.o_ready { --move: clamp(20px, 5vw, 60px); opacity: 0; transition: opacity 1s ease, transform 1s ease; }
.fadeL { transform: translateX(var(--move)); }
.fadeR { transform: translateX(calc(var(--move) * -1)); }
.fadeU { transform: translateY(var(--move)); }
.fadeD { transform: translateY(calc(var(--move) * -1)); }
.o_ready.active { opacity: 1; transform: translate(0, 0); }

/* 상단 메뉴바 고정 해제 */
header {
  /* position: absolute !important; */
}

.campaign-wrap {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}

/* .o_section */
.o_section {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.o_section .o_wrapper {
  position: relative;
  width: 90%;
  margin: 0 auto;
}
.o_section .o_wrapper._955 {
  max-width: 53.1rem;
}
.o_section .o_wrapper._1200 {
  max-width: 66.7rem;
}
.o_section .o_wrapper._1350 {
  max-width: 75rem;
}

/* o_btnBox */
.o_section .o_btnBox a {
  background: linear-gradient(to right, #005b48 27%, #009465);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.o_section .o_btnBox a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  border: 0.4rem solid #005b48;
  border-radius: 999px;
  opacity: 0;
}
.o_section .o_btnBox a:hover:after {
  -webkit-animation-name: o_ripple-out;
  animation-name: o_ripple-out;
  opacity: 1;
}

/* .o_btnBox._1 */
.o_section .o_btnBox._1 {
  position: relative;
}
.o_section .o_btnBox._1 a {
  display: flex;
  width: 28.4rem;
  height: 6.1rem;
}
.o_section .o_btnBox._1 a span {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  position: relative;
}
.o_section .o_btnBox._1 img {
  width: 6.9rem;
  height: 6.8rem;
  position: absolute;
  top: -27%;
  left: -3%;
  transform: translate(0, 0);
  z-index: 3;
  display: inline-block;
  transform-origin: 85% 85%;
  animation: umbrellaSwing 1.5s ease-in-out infinite;
}

.o_section .o_btnBox._1 a span::before {
  content: "";
  background-image: url("../images/00.brand/arrow_icon.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 1.7rem;
  height: 1.7rem;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(150%, -50%);
}

/* .o_btnBox._2 */
.o_section .o_btnBox._2 a {
  display: flex;
  width: 27.5rem;
  height: 6.4rem;
}
.o_section .o_btnBox._2 a span {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  padding: 0 1.1rem 0 5.4rem;
}
.o_section .o_btnBox._2 a::before {
  content: "";
  background-image: url("../images/00.brand/btn_icon.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 4.6rem;
  height: 4.6rem;
  position: absolute;
  top: 50%;
  left: 0.8rem;
  transform: translate(0, -50%);
}

/* ul */
.o_section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.o_section ul li {
  position: relative;
  padding-left: 0.7em;
}
.o_section ul li + li {
  margin-top: 0.25em;
}
.o_section ul li::before {
  content: "";
  width: 0.25em;
  height: 0.25em;
  border-radius: 50%;
  position: absolute;
  top: 0.6em;
  left: 0;
}

/* animation */
.o_ani-bounce {
  -moz-animation: o_bounce 1.5s infinite ease-in-out;
  -webkit-animation: o_bounce 1.5s infinite ease-in-out;
  -o-animation: o_bounce 1.5s infinite ease-in-out;
  animation: o_bounce 1.5s infinite ease-in-out;
}

/* bounce */
@keyframes o_bounce {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 5%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* button hover */
@keyframes o_ripple-out {
  100% {
    top: -1rem;
    right: -1rem;
    bottom: -1rem;
    left: -1rem;
    opacity: 0;
  }
}

/* button icon */
@keyframes umbrellaSwing {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* *************** */
/* 플로팅배너 영역 (s) */
.o_floatingBtn {
  cursor: pointer;
  width: 10rem;
  position: fixed;
  top: 15%;
  right: 2%;
  z-index: 99;
  opacity: 0;
  transform: translate(100%, 0);
  transition: all 1s ease-in-out !important;
  line-height: 0;
}
.o_floatingBtn.active {
  opacity: 1;
  transform: translate(0, 0);
}
.o_floatingBtn:hover {
  transform: translate(0, -5%);
  transition: all 0.3s ease-in-out !important;
}
/* 플로팅배너 영역 (e) */
/* *************** */

/* ********************************* */
/* o_section_main : 메인 비쥬얼 영역 (s) */
.o_section_main {
  background-image: url("../images/00.main/bg_1.jpg");
  padding: 9rem 0 7.7rem;
}
.o_section_main .o_contentBox figure {
  width: 25.9rem;
  margin: 0;
}
.o_section_main .o_contentBox figure img {
  width: 100%;
}
.o_section_main .o_contentBox figure .o_img._1 {
  transition-delay: 0s;
}
.o_section_main .o_contentBox figure .o_img._2 {
  margin-top: -0.8rem;
  transition-delay: 0.25s;
}

.o_section_main .o_contentBox figure .o_img._3 {
  margin-top: -0.8rem;
  transition-delay: 0.4s;
}
.o_section_main .o_contentBox figure img {
  width: 100%;
}

/* btn */
.o_section_main .o_btnBox._1 {
  margin-top: 1.9rem;
}

/* o_section_main : 메인 비쥬얼 영역 (e) */
/* ********************************* */

/* *************** */
/* o_section_1 (s) */
.o_section_1 {
  background-image: url("../images/01/bg_1.jpg");
  padding: 5.6rem 0 4.8rem;
}
.o_section_1 .o_container {
  width: 50%;
  margin-left: auto;
  text-align: center;
}
.o_section_1 .o_container h3 {
  color: #009465;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.4;
}
.o_section_1 .o_container .o_imgBox_1 {
  padding-top: 2rem;
  height: 25.3rem;
  position: relative;
}
.o_section_1 .o_container .o_imgBox_1 img {
  position: absolute;
}
.o_section_1 .o_container .o_imgBox_1 img._1 {
  width: 19.7rem;
  top: 0;
  right: 0;
  transition-delay: 0.1s;
}
.o_section_1 .o_container .o_imgBox_1 img._2 {
  width: 20.1rem;
  top: 4.6rem;
  left: -1.7rem;
  transition-delay: 0.2s;
}
.o_section_1 .o_container .o_imgBox_1 img._3 {
  width: 23.9rem;
  top: 10.3rem;
  right: -2.6rem;
  transition-delay: 0.3s;
}
.o_section_1 .o_container .o_imgBox_1 img._4 {
  width: 12.2rem;
  top: 15.8rem;
  left: 1.9rem;
  transition-delay: 0.4s;
}
.o_section_1 .o_container .o_imgBox_1 img._5 {
  width: 18.2rem;
  top: 20.3rem;
  right: 1.7rem;
  transition-delay: 0.5s;
}

.o_section_1 .o_container .o_imgBox_2 {
  padding-top: 2.7rem;
  text-align: center;
}
.o_section_1 .o_container .o_imgBox_2 img {
  width: 27.5rem;
}
/* o_section_1 (e) */
/* *************** */

/* *************** */
/* o_section_2 (s) */
.o_section_2 {
  background-image: url("../images/02/bg_1.jpg");
  padding: 4.7rem 0 5.6rem;
}

.o_section_2 .o_imgBox {
  text-align: center;
}
.o_section_2 .o_imgBox._1 img {
  width: 43.1rem;
}
.o_section_2 .o_imgBox._2 {
  padding-top: 3.2rem;
}
.o_section_2 .o_imgBox._2 img {
  width: 50.8rem;
}

.o_section_2 .o_container {
  padding-top: 3.2rem;
}
.o_section_2 .o_container .o_contentBox {
  display: flex;
  justify-content: space-between;
}
.o_section_2 .o_container .o_content {
  width: 24%;
  border-radius: 0.8rem;
  box-shadow: 0.2rem 0.2rem 0.4rem rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
}
.o_section_2 .o_container .o_content::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 5.6rem;
  height: 5.6rem;
  position: absolute;
  bottom: 1.4rem;
  right: 1.4rem;
}
.o_section_2 .o_container .o_content._1::after {
  background-image: url("../images/02/icon_1.png");
}
.o_section_2 .o_container .o_content._2::after {
  background-image: url("../images/02/icon_2.png");
}
.o_section_2 .o_container .o_content._3::after {
  background-image: url("../images/02/icon_3.png");
}
.o_section_2 .o_container .o_content._4::after {
  background-image: url("../images/02/icon_4.png");
}

.o_section_2 .o_container .o_content h4 {
  background-color: #005b48;
  padding: 0.6rem 0;
  text-align: center;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
.o_section_2 .o_container .o_content .o_item {
  background-color: #fff;
  padding: 0.8rem 1.4rem 1.4rem;
  height: 13.3rem;
}
.o_section_2 .o_container .o_content .o_item h3 span {
  color: #009465;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  opacity: 1 !important;
}
.o_section_2 .o_container .o_content .o_item h3 em {
  color: #000;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  font-style: normal;
  padding-left: 0.2em;
}
.o_section_2 .o_container .o_content .o_item ul {
  padding-top: 1rem;
}
.o_section_2 .o_container .o_content .o_item ul li {
  color: #000;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
}
.o_section_2 .o_container .o_content .o_item ul li::before {
  background-color: #000;
}

.o_section_2 .o_container .o_subText {
  color: #9c9898;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  padding-top: 2.2rem;
  text-align: center;
}
/* o_section_2 (e) */
/* *************** */

/* ******************** */
/* o_section_3 slider (s) */
/* o_main-slider */
.o_main-slider {
  position: relative;
}
.o_main-slider .o_slider {
  position: relative;
}

.o_main-slider .o_slider .o_imgBox {
  height: 52.2rem;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.o_main-slider .o_slider._1 .o_imgBox {
  background-image: url("../images/03.slider/img_1.jpg");
}
.o_main-slider .o_slider._2 .o_imgBox {
  background-image: url("../images/03.slider/img_2.jpg");
}
.o_main-slider .o_slider._3 .o_imgBox {
  background-image: url("../images/03.slider/img_3.jpg");
}
.o_main-slider .o_slider._4 .o_imgBox {
  background-image: url("../images/03.slider/img_4.jpg");
}
.o_main-slider .o_slider._5 .o_imgBox {
  background-image: url("../images/03.slider/img_5.jpg");
}
.o_main-slider .o_slider._6 .o_imgBox {
  background-image: url("../images/03.slider/img_6.jpg");
}

/* o_contentBox */
.o_main-slider .o_contentBox {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
}
.o_main-slider .o_contentBox .o_inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.o_main-slider .o_contentBox .o_titleItem {
  width: 35.9rem;
  padding-top: 4.6rem;
}
.o_main-slider .o_contentBox .o_imgItem {
  width: 33.3rem;
  padding-top: 1.7rem;
}
.o_main-slider .o_contentBox .o_textItem {
  padding-top: 1.7rem;
}
.o_main-slider .o_contentBox .o_textItem h4 {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
}
.o_main-slider .o_contentBox .o_textItem._color-b h4 {
  color: #000000;
}
.o_main-slider .o_contentBox .o_textItem h4 + h4 {
  padding-top: 0.8rem;
}

.o_main-slider .o_contentBox .o_subItem {
  padding-top: 1.7rem;
}
.o_main-slider .o_contentBox .o_subItem p {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}
.o_main-slider .o_contentBox .o_subItem span {
  background-color: #005b48;
  padding: 0.2rem 0.6rem;
  border-radius: 0.3em;
}

.o_main-slider .o_contentBox .o_btnBox {
  position: absolute;
  bottom: 6.7rem;
  left: 0;
}

/* o_thumb-slider */
.o_thumb-slider .o_thumb {
  position: relative;
}
.o_thumb-slider .o_thumb._disabled {
  pointer-events: none;
}

.o_thumb-slider .o_imgBox {
  width: 100%;
  cursor: pointer;
  position: relative;
}

.o_thumb-slider .o_textBox {
  background-color: #77787b;
  text-align: center;
}
.o_thumb-slider .o_textBox p {
  color: #d2d2d2;
  font-size: 1.1rem;
  font-weight: 700;
  list-style: 1;
  padding: 0.3rem 0 0.4rem;
}

/* .o_thumb-slider .o_thumb.slick-current::after */
.o_thumb-slider .o_thumb.is-active::after {
  content: "";
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 0 0.2rem #009465;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}
/* .o_thumb-slider .o_thumb.slick-current .o_imgBox::after */
.o_thumb-slider .o_thumb.is-active .o_imgBox::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to top, #009465, rgba(0, 148, 101, 0));
  opacity: 0.3;
}
/* .o_thumb-slider .o_thumb.slick-current .o_textBox */
.o_thumb-slider .o_thumb.is-active .o_textBox {
  background-color: #009465;
}
/* .o_thumb-slider .o_thumb.slick-current .o_textBox p */
.o_thumb-slider .o_thumb.is-active .o_textBox p {
  color: #fff;
}

/* _coming */
.o_thumb-slider .o_thumb._coming .o_imgBox p {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 100%;
  text-align: center;
}
.o_thumb-slider .o_thumb._coming .o_imgBox::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}

/* o_section_3 slider (e) */
/* ******************** */

/* *************** */
/* o_section_4 (s) */
.o_section_4 {
  background-image: url("../images/04/bg_1.jpg");
  padding: 7rem 0 10.6rem;
}
.o_section_4 .o_container .o_imgBox {
  width: 28.3rem;
}

.o_section_4 .o_container .o_textBox {
  padding-top: 1.7rem;
}
.o_section_4 .o_container .o_textBox h5 {
  color: #202020;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
}
.o_section_4 .o_container .o_textBox h5 + h5 {
  padding-top: 0.8rem;
}

.o_section_4 .o_container .o_btnBox {
  padding-top: 1.9rem;
}

.o_section_4 .o_illustBox {
  width: 40.7rem;
  position: absolute;
  top: 38%;
  right: 50%;
  transform: translate(97%, -50%);
}
/* o_section_4 (e) */
/* *************** */

/* ******************* */
/* o_section_video (s) */
.o_section_video {
  background-image: url("../images/video/bg_1.jpg");
  padding: 5.6rem 0;
}
.o_section_video .o_videoBox {
  width: 43.8rem;
  margin: 0 auto;
}
.o_section_video .o_videoBox .o_video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 비율 */
  height: 0;
}
.o_section_video .o_videoBox .o_video .player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
/* o_section_video(e) */
/* ******************* */

/* *************** */
/* o_section_5 (s) */
.o_section_5 {
  background-image: url("../images/05/bg_1.jpg");
  padding: 5.6rem 0;
}

.o_section_5 .o_container .o_titleBox {
  text-align: center;
}
.o_section_5 .o_container .o_titleBox img {
  width: 36.4rem;
}
.o_section_5 .o_container .o_titleBox h3 {
  color: #009365;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  padding-top: 0.8rem;
}
.o_section_5 .o_container .o_titleBox h3 span {
  color: #fff;
  background-color: #009365;
  padding: 0 0.2em;
}

.o_section_5 .o_container .o_inner {
  /*max-width: 53.1rem;*/
  width: 100%;
  margin: 0 auto;
}

.o_section_5 .o_container .o_contentBox._1 {
  width: 100%;
  padding-top: 1rem;
  text-align:center
}

.o_section_5 .o_container .o_contentBox._1 img {width:51.667rem}

.o_section_5 .o_container .o_contentBox._2 {
  display: flex;
  justify-content: space-between;
  gap:0.667rem;
  padding-top: 1.2rem;
}
.o_section_5 .o_container .o_contentBox._2 img {
  width: 24%;
  filter:drop-shadow(3px 3px 5px rgba(0,0,0,0.2));
}
.o_section_5 .o_container .o_contentBox._2 .o_img._1 {
  transition-delay: 0.2s;
}
.o_section_5 .o_container .o_contentBox._2 .o_img._2 {
  transition-delay: 0.4s;
}
.o_section_5 .o_container .o_contentBox._2 .o_img._3 {
  transition-delay: 0.6s;
}
.o_section_5 .o_container .o_contentBox._2 .o_img._4 {
  transition-delay: 0.8s;
}

.o_section_5 .o_container .o_listBox {
  width: 100%;
  padding: 1.6rem 1rem 1.6rem 2.1rem;
  margin-top: 2.3rem;
  display: flex;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 1rem;
}
.o_section_5 .o_container .o_listBox h4 {
  width: 13%;
  color: #272727;
  font-size: 1.4rem;
  font-weight: 700;
  list-style: 1.4;
}
.o_section_5 .o_container .o_listBox ul {
  width: 87%;
}
.o_section_5 .o_container .o_listBox ul li {
  color: #272727;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
.o_section_5 .o_container .o_listBox ul li::before {
  background-color: #272727;
}
.o_section_5 .o_container .o_listBox ul li strong span {
  padding: 0 0.4rem;
}

.o_section_5 .o_container .o_btnBox {
  padding-top: 2.8rem;
}
.o_section_5 .o_container .o_btnBox a {
  margin: 0 auto;
}
/* o_section_5 (e) */
/* *************** */

/* *************** */
/* o_section_6 (s) */
.o_section_6 {
  background-color: #f1f2f2;
  padding: 4.4rem 0 4.7rem;
}

.o_section_6 .o_titleBox {
  text-align: center;
}
.o_section_6 .o_titleBox img {
  width: 29.6rem;
}

/* o_section_6 (e) */
/* *************** */

/* *************** */
/* o_section_7 (s) */
.o_section_7 {
  background-color: #005b48;
  padding: 4.9rem 0 6.1rem;
}

.o_section_7 .o_titleBox {
  text-align: center;
}
.o_section_7 .o_titleBox img {
  width: 47.8rem;
}

.o_section_7 .o_container {
  display: flex;
  justify-content: space-between;
  margin: 2.5rem;
}
.o_section_7 .o_container .o_contentBox {
  width: 24.5%;
  position: relative;
}
.o_section_7 .o_container .o_contentBox .o_textItem {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  text-align: center;
}
.o_section_7 .o_container .o_contentBox .o_textItem .o_inner {
  width: 100%;
  padding-bottom: 2rem;
}
.o_section_7 .o_container .o_contentBox .o_textItem h3 {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0, 0, 0, 0.4);
}
.o_section_7 .o_container .o_contentBox .o_textItem p {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.4;
  padding-top: 0.3rem;
  text-shadow: 1px 1px 0.2rem rgba(0, 0, 0, 0.4);
  padding-top: 0.5rem;
}
.o_section_7 .o_container .o_contentBox .o_textItem a {
  display: block;
  width: 10.8rem;
  height: 3.1rem;
  background-color: #fff;
  color: #009465;
  border-radius: 999px;
  text-align: center;
  margin: 1.1rem auto 0 auto;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 3.1rem;
  position: relative;
}
.o_section_7 .o_container .o_contentBox .o_textItem a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  border: 0.2rem solid #fff;
  border-radius: 999px;
  opacity: 0;
}
.o_section_7 .o_container .o_contentBox .o_textItem a:hover:after {
  -webkit-animation-name: o_ripple-out;
  animation-name: o_ripple-out;
  opacity: 1;
}

.o_section_7 .o_container .o_contentBox._coming .o_textItem a {
  background-color: #c8c8c8;
  color: #5f5f5f;
  pointer-events: none;
}
/* o_section_7 (e) */
/* *************** */

/* *************** */
/* o_section_8 (s) */
.o_section_8 {
  background-image: url("../images/08/bg_1.jpg");
  padding: 6.3rem 0 6.7rem;
}
.o_section_8 .o_container .o_textBox h5 {
  color: #005b48;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
}

.o_section_8 .o_container figure {
  width: 20rem;
  padding-top: 1.1rem;
  margin: 0;
}
.o_section_8 .o_container figure img {
  width: 100%;
}
.o_section_8 .o_container figure .o_img._2 {
  margin-top: -0.8rem;
  transition-delay: 0.25s;
}
.o_section_8 .o_container figure .o_img._3 {
  margin-top: -0.8rem;
  transition-delay: 0.4s;
}

/* btn */
.o_section_8 .o_btnBox._1 {
  margin-top: 1rem;
}

.o_section_8 .o_illustBox {
  width: 47.3rem;
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translate(85%, 0);
}

/* o_section_8 (e) */
/* *************** */

/* section_copy : COPYRIGHT */
.o_section_copy {
  text-align: center;
  background-color: #000;
  padding: 2rem 0;
}

.o_section_copy p {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 1536px) {
  html {
    width: 100% !important;
    overflow-x: hidden !important;
  }

  body {
    overflow: visible !important;
  }

  .campaign-wrap {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
  }
}

.o_section.o_section_6 .company-info {margin-top:4.517rem}
.o_section.o_section_6 .company-info .info-box {width:100%;display:flex;flex-direction:column;gap:2.824rem;align-items:center;justify-content:center;text-align:center}
.o_section.o_section_6 .company-info .info-box .info-txt {font-weight:500;font-size:1.389rem;line-height:140%;letter-spacing:-0.01em;color:#202020}
.o_section.o_section_6 .company-info .info-box .info-txt strong {font-weight:700}
