@charset "utf-8";
@import url(../fonts/font.css);

html {
  font-size: 62.5%;
}

body {
  font-family: "Nanum Gothic", sans-serif;
  font-size: 1.6rem;
  color: #333;
  letter-spacing: -0.03rem;
  line-height: 1;
}

h3 {
  font-size: 5rem;
  font-weight: 700;
}

h4 {
  font-size: 3.2rem;
  line-height: 1.7;
}

p {
  line-height: 1.7;
}

input {
  height: 36px;
  padding: 0 8px;
  width: 100%;
}

textarea:focus,
input:focus {
  outline: none;
}

textarea {
  width: 100%;
  height: 34rem;
  background-color: #f5f5f5;
  border: 0;
  resize: none;
}

section {
  height: 100vh;
  margin-bottom: 180px;
}

.wrap {
  position: relative;
  max-width: 100%;
}

.container {
  max-width: 1420px;
  margin: 0 auto;
}

.required {
  color: #ff0000;
}

.mb-3 {
  margin-bottom: 3px;
}

header .badge_wrap {
  padding: 10px;
  opacity: 0.8;
  background: #0047ff;
  box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
  border-radius: 12px 0 0 12px;
  top: 200px;
  right: 0;
  z-index: 2;
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all 0.2s;
}
header .badge_wrap:hover {
  opacity: 1;
}
header .badge_wrap > img {
  width: 15px;
}
header .badge_wrap .badge {
  overflow: hidden;
  cursor: pointer;
}
header .badge_wrap .badge:first-child {
  margin-bottom: 8px;
}
header .badge_wrap .badge img {
  border-radius: 8px;
  box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.15);
  width: 3.2rem;
}

.header_wrap {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header_wrap h1.logo img {
  width: 19rem;
}

nav {
  width: 100%;
  align-items: center;
  position: fixed;
  z-index: 2;
  background: #fff;
}
nav.sticky {
  left: 0;
  background: rgba(255, 255, 255, 0.6);
  position: fixed;
  z-index: 222;
  filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.25));
}
.gnb {
  position: relative;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}
.gnb h1 {
  position: absolute;
  left: 24rem;
}
.gnb ul {
  display: flex;
  align-items: center;
  gap: 56px;
  position: absolute;
  right: 24rem;
}
.gnb ul li {
  position: relative;
  z-index: 2;
}
.gnb ul li a {
  font-size: 1.6rem;
  font-weight: 400;
}
.gnb li a:hover {
  color: #02298d;
}
.gnb li a:before {
  content: "";
  width: 0%;
  height: 10px;
  position: absolute;
  top: 10px;
  left: 0px;
  z-index: -1;

  transition-timing-function: cubic-bezier(0.8, 0.09, 1, 0.44);
  transition-delay: 100ms;
  transition: all 300ms cubic-bezier(1, 0, 0, 1) 0ms;
}
.gnb li a:hover:before {
  content: "";
  width: 100%;
  height: 10px;
  position: absolute;
  top: 10px;
  left: 0px;
  z-index: -1;
  background: rgb(0 41 255 / 45%);
}

.main {
  height: 375px;
  position: relative;
  margin-bottom: 0;
  background: url(../images/img_mainbg.png) no-repeat;
  background-size: cover;
  padding-bottom: 250px;
}
.main h2 {
  font-size: 4.8rem;
  font-weight: 700;
  color: #454545;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 2;
  width: 80rem;
  padding: 44px 0;
  border-radius: 26px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(5px);
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.main h2 {
  background: linear-gradient(135deg, #e6edff3d 0%, #e6edff3d 40%, #ffffffb4 50%, #e6edff3d 60%, #e6edff3d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6edff3d', endColorstr='#e6edff3d',GradientType=1 );
  background-repeat: no-repeat;
  background-position: 0px;
  background-size: 300%;
}
.main h2 {
  animation: light 2s infinite;
  -webkit-animation: light 2s infinite;
}
@keyframes light {
  0% {
    background-position: -1000px;
  }

  100% {
    background-position: 0px;
  }
}

@-webkit-keyframes light {
  0% {
    background-position: -1000px;
  }

  100% {
    background-position: 0px;
  }
}
.main h2 strong {
  color: #356dfc;
}

#section01 {
  padding-top: 100px;
}
#section01 .title_wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
#section01 .title_wrap h3 {
  display: flex;
  align-items: center;
  gap: 20px;
}
#section01 .title_wrap h3 img {
  width: 35rem;
}
#section01 .title_wrap p {
  color: #666;
  font-size: 1.8rem;
}
#section01 .content_wrap {
  display: flex;
  align-items: center;
  gap: 75px;
  margin-top: 80px;
}
#section01 .content_wrap img {
  width: 50%;
}
#section01 .content_wrap .text_box h4 {
  margin-bottom: 54px;
  max-width: 92%;
}
#section01 .content_wrap .text_box p {
  margin-bottom: 16px;
}

#section02 {
  background-color: #f3f3f3;
  display: flex;
  justify-content: space-between;
  position: relative;
}
#section02 .tab_wrap {
  background-color: #f8f8f8;
  padding: 0 46px;
}
#section02 .tab_wrap h3 {
  text-align: center;
  padding: 83px 0 57px;
}
#section02 .tab_wrap .tab_menu {
  display: flex;
  flex-direction: column;
}
#section02 .tab_wrap .tab_menu li a:before,
#section02 .tab_wrap .tab_menu li a:before {
  content: "";
  width: 18px;
  height: 24px;
  background: url(../images/icon_arrow_gray.png) no-repeat center;
  background-size: 18px;
  display: inline-block;
  position: absolute;
  right: 46px;
  top: 50%;
  transform: translateY(-50%);
}
#section02 .tab_wrap .tab_menu li a:hover:before,
#section02 .tab_wrap .tab_menu li a.active:before {
  content: "";
  width: 18px;
  height: 24px;
  background: url(../images/icon_arrow.png) no-repeat center;
  background-size: 18px;
  display: inline-block;
  position: absolute;
  right: 46px;
  top: 50%;
  transform: translateY(-50%);
}
#section02 .tab_wrap .tab_menu li a:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #e7e7e7;
  position: absolute;
  left: 0;
  top: 120%;
}
#section02 .tab_wrap .tab_menu li:last-child a:after {
  display: none;
}
#section02 .tab_wrap .tab_menu li {
  min-height: 160px;
  height: 100%;
}
#section02 .tab_wrap .tab_menu li a {
  color: #999;
  display: block;
  padding: 46px 100px;
  font-size: 2.6rem;
  position: relative;
  /* margin-top: 62px; */
  transition: all 0.3s;
}
#section02 .tab_wrap .tab_menu li a:hover,
#section02 .tab_wrap .tab_menu li a.active {
  border-radius: 100px;
  background: #356dfc;
  box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.25);
  color: #fff;
}
#section02 .tab_wrap .tab_menu li a:hover,
#section02 .tab_wrap .tab_menu li a.active {
  border-radius: 100px;
  background: #356dfc;
  box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.25);
  color: #fff;
}
#section02 .tab_content {
  position: relative;
  top: 5%;
}
#section02 .tab_content > div {
  display: none;
}
#section02 .content_wrap {
  width: calc(100% - 70rem);
  padding: 0 46px;
}
#section02 .content_wrap .title_wrap {
  margin-bottom: 20px;
}
#section02 .content_wrap .title_wrap h4 {
  font-weight: 800;
  font-size: 3.6rem;
  margin-bottom: 36px;
}
#section02 .content_wrap .title_wrap span {
  font-weight: 800;
  color: #0047ff;
  font-size: 2.4rem;
}
#section02 .content_wrap .title_wrap p {
  font-size: 2rem;
  font-weight: 700;
  color: #666;
}
#section02 .content_wrap .content {
  position: relative;
  z-index: 2;
}
#section02 .content_wrap .content li {
  list-style-type: disc;
  margin-bottom: 26px;
  margin-left: 32px;
  line-height: 1.6;
}
#section02 .content_wrap img {
  position: absolute;
}
#section02 .content_wrap .tab_content .img_wrap {
  padding-top: 40px;
}
#section02 .content_wrap .tab_content .img01 {
  width: 50%;
  top: 98%;
  left: 0;
}
#section02 .content_wrap .tab_content .img02 {
  width: 50%;
  top: 98%;
  left: 50%;
}

#section03 {
  padding-top: 100px;
  margin-bottom: 0;
  position: relative;
}
/* #section03:after {
  content: "";
  display: inline-block;
  background: url(../images/img_project.png) no-repeat;
  width: 55rem;
  height: 36rem;
  position: absolute;
  right: 19%;
  top: -3%;
  z-index: -1;
} */
#section03 .title_wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
#section03 .title_wrap p {
  text-align: center;
}
#section03 .content_wrap ul {
  margin-top: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  width: 100%;
}
#section03 .content_wrap ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
#section03 .content_wrap ul li span {
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  color: #555;
}

#section04 {
  padding-top: 130px;
  margin-bottom: 0;
  background-color: #fbfcff;
}
#section04 .title_wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
#section04 .title_wrap h3 {
  display: flex;
  align-items: center;
  gap: 6px;
}
#section04 .title_wrap h3 img {
  width: 35rem;
}
#section04 .title_wrap p {
  text-align: center;
}
#section04 .content_wrap {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#section04 .content_wrap ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  padding: 0 16px;
}
#section04 .content_wrap ul li {
  max-width: 340px;
  width: 100%;
  height: 340px;
  border-radius: 33px;
  background: #fff;
  box-shadow: 0px 0px 19px 1px rgba(1, 79, 173, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
}
#section04 .content_wrap ul li h4 {
  font-weight: 700;
  color: #356dfc;
  font-size: 2.6rem;
  margin-bottom: 10px;
}
#section04 .content_wrap .btn {
  color: #fff;
  padding: 20px 70px;
  border-radius: 38px;
  font-size: 3.2rem;
  font-weight: 700;
  margin-top: 100px;
  background-color: #0029ff;
  position: relative;
  transition: all 0.4s;
  box-shadow: 0 4px 12px rgb(0 43 255 / 60%);
  transform: translateY(-5px);
}
#section04 .content_wrap .btn {
  animation: colorShift 5000ms infinite ease-in;
}
#section04 .content_wrap .btn:hover,
#section04 .content_wrap .btn:focus {
  animation: borderPulse 1000ms infinite ease-out, colorShift 5000ms infinite ease-in, hoverShine 200ms;
}
/* Declate color shifting animation */
@keyframes colorShift {
  0%,
  100% {
    background: #0029ff;
  }
  33% {
    background: #0051ff;
  }
  66% {
    background: #0084ff;
  }
}
/* Declare border pulse animation */
@keyframes borderPulse {
  0% {
    box-shadow: inset 0px 0px 0px 5px rgba(255, 255, 255, 0.4), 0px 0px 0px 0px rgba(255, 255, 255, 1);
  }
  100% {
    box-shadow: inset 0px 0px 0px 3px rgba(117, 117, 255, 0.2), 0px 0px 0px 10px rgba(255, 255, 255, 0);
  }
}
/* Declare shine on hover animation */
@keyframes hoverShine {
  0% {
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
  }
  50% {
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  }
  100% {
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.4) 100%);
  }
}

footer {
  background-color: #f5f5f5;
  padding: 45px 16px;
}
.footer-info ul {
  display: flex;
  justify-content: space-between;
}
.footer-info ul li {
  color: #555;
  flex: 1;
}
.footer-info ul li:last-child {
  margin-bottom: 0;
}
.footer-info ul li.logo_wrap {
  flex: 1.6;
}
.footer-info ul li .logo {
  width: 20rem;
  margin-bottom: 14px;
}
.footer-info ul li .copyright {
  color: #777;
}
.footer-info ul li h5 {
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-info ul li p {
  font-size: 1.4rem;
}
.footer-info ul li p span {
  color: #777;
  display: inline-block;
  width: 44%;
}
.footer-info ul li.address {
  flex: 1.2;
}
.footer-info ul li.contact p span {
  width: 29%;
}

#to_top {
  width: 48px;
  height: 48px;
  background-color: #666;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1;
  box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.5);
  transition: all 0.4s;
}
#to_top:hover {
  transform: scale(1.1) !important;
  box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.25);
}
#to_top img {
  transform: rotate(270deg);
  width: 2.4rem;
}

#nav_toggle {
  width: 28px;
  height: 20px;
  display: none;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 9999;
}
#nav_toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #1a5bff;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
#nav_toggle span:nth-child(1) {
  top: 0px;
}
#nav_toggle span:nth-child(2),
#nav_toggle span:nth-child(3) {
  top: 7px;
}
#nav_toggle span:nth-child(4) {
  top: 14px;
}
#nav_toggle.active span:nth-child(1) {
  top: 7px;
  width: 0%;
  left: 50%;
}
#nav_toggle.active span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#nav_toggle.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#nav_toggle.active span:nth-child(4) {
  top: 7px;
  width: 0%;
  left: 50%;
}
.full_nav {
  position: fixed;
  background: #fff;
  top: 0;
  right: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  overflow: hidden;
}
.nav_group {
}
.nav_group > .info {
  margin-left: -8rem;
  position: relative;
}
.nav_group > .info:after {
  position: absolute;
  top: 20%;
  left: 150%;
  content: "";
  display: inline-block;
  width: 1px;
  height: 300px;
  background: #d8d8d8;
}
.nav_logo {
  width: 250px;
  padding: 3rem 5rem 5rem;
}
.nav_log img {
  width: 100%;
}
.full_nav.open {
  opacity: 1;
  visibility: visible;
  z-index: 555;
  height: 100vh;
  right: 100%;
}
.full_nav.open li {
  -webkit-animation: fadeInRight 0.5s ease forwards;
  animation: fadeInRight 0.5s ease forwards;
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
}
.full_nav.open li:nth-of-type(2) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.full_nav.open li:nth-of-type(3) {
  -webkit-animation-delay: 0.45s;
  animation-dnnelay: 0.45s;
}
.full_nav.open li:nth-of-type(4) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.full_nav .full_nav_menu {
  position: relative;
}
.full_nav ul {
  display: inline-block;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  left: 6rem;
}
.full_nav ul li {
  display: block;
  position: relative;
  opacity: 0;
}
.full_nav ul li a {
  display: block;
  position: relative;
  text-decoration: none;
  overflow: hidden;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
.full_nav_menu.nav-hide {
  display: none;
}
.full_nav .nav_group ul .depth01 > a {
  position: relative;
}
.full_nav .nav_group ul .depth01 a {
  font-size: 3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 16px;
}
.full_nav .nav_group ul li a:hover:before {
  display: none;
}
.full_nav .nav_group ul .depth01 img {
  width: 2rem;
}

/* ================ 태블릿 ================ */
@media screen and (max-width: 1024px) and (min-width: 768px) {
  section {
    margin-bottom: 150px;
    height: initial;
  }
  h3 {
    font-size: 4rem;
  }
  h4 {
    font-size: 2rem;
  }
  .main {
    height: 100vh;
  }
  .gnb h1 {
    left: 2rem;
  }
  .gnb > ul {
    display: none;
  }
  .gnb.sticky #nav_toggle {
    margin-left: 94%;
  }
  .full_nav.open {
    right: 0;
  }
  .full_nav .nav_group {
    padding: 8rem 0;
    width: 100%;
  }
  #nav_toggle {
    display: block;
    margin-left: 94%;
  }
  .main ul.tit.tit_top,
  .main ul.tit.tit_bottom {
    left: 50%;
    transform: translateX(-50%);
  }
  .main ul.tit li {
    width: 60px;
    height: 80px;
    font-size: 5rem;
  }
  /* .main h2 {
    width: 70rem;
    font-size: 3.6rem;
  } */
  #section01 {
    margin-bottom: 150px;
    padding: 100px 16px 0;
  }
  #section01 .content_wrap .text_box h4 {
    margin-bottom: 20px;
  }
  #section02 {
    flex-direction: column;
    gap: 30px;
    padding: 54px 0 0 16px;
  }
  #section02 .tab_wrap {
    height: initial;
  }
  #section02 .tab_wrap .tab_menu li a {
    padding: 28px 103px;
    margin: 20px 0;
  }
  #section02 .content_wrap {
    width: initial;
    padding: 0 0 340px;
  }
  #section02 .content_wrap .title_wrap h4 {
    font-size: 2.8rem;
  }
  #section02 .content_wrap .title_wrap span {
    font-size: 2rem;
  }
  #section02 .tab_wrap .tab_menu li {
    min-height: 122px;
  }
  #section02 .content_wrap .tab_content > div {
    max-width: 98%;
  }
  #section02 .content_wrap .tab_content .img01 {
    width: 50%;
    top: 90%;
    left: 0;
  }
  #section02 .content_wrap .tab_content .img02 {
    width: 50%;
    top: 90%;
    left: 50%;
  }
  #section03 {
    margin-bottom: 150px;
    padding-top: 100px;
  }
  #section03:after {
    background-size: 35rem;
    width: 35rem;
    height: 22rem;
    right: 0%;
    top: -5%;
  }
  #section04 .content_wrap ul {
    flex-wrap: wrap;
  }
  #section04 .content_wrap ul li {
    padding: 0 8px;
    width: 370px;
  }
  #section04 .content_wrap .btn {
    margin: 50px 0;
    font-size: 2.8rem;
  }
  footer {
    padding: 30px 16px;
  }
  .footer-info.container {
    margin-bottom: 0;
  }
  .footer-info ul {
    flex-direction: column;
  }
  .footer-info ul li {
    margin-bottom: 22px;
  }
  .footer-info ul li h5 {
    margin-bottom: 8px;
  }
  #to_top {
    right: 45px;
    bottom: 45px;
  }
}
/* ================ 모바일 ================ */
@media screen and (max-width: 767px) {
  section {
    overflow: hidden;
    margin-bottom: 150px;
  }
  h3 {
    font-size: 2.6rem;
  }
  h4 {
    font-size: 2rem;
  }
  p {
    font-size: 1.4rem;
  }
  .gnb {
  }
  .gnb h1 {
    left: 2rem;
  }
  .gnb > ul {
    display: none;
  }
  .gnb.sticky #nav_toggle {
    margin-left: 86%;
  }
  .header_wrap h1.logo img {
    width: 14rem;
  }
  .full_nav.open {
    right: 0;
  }
  .full_nav .nav_group {
    padding: 8rem 0;
    width: 100%;
  }
  .full_nav .nav_group ul .depth01 a {
    font-size: 2rem;
  }
  .full_nav .nav_group ul .depth01 img {
    width: 1.6rem;
  }
  #nav_toggle {
    display: block;
    margin-left: 86%;
  }
  .main ul.tit.tit_top,
  .main ul.tit.tit_bottom {
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
  }
  .main ul.tit li {
    width: 40px;
    height: 60px;
    font-size: 3rem;
    line-height: 60px;
  }
  /* .main h2 {
    width: 32rem;
    font-size: 2.4rem;
    padding: 16px 10px;
  } */
  #section01 {
    margin-bottom: 100px;
    padding: 100px 16px 0;
    height: initial;
  }
  #section01 .title_wrap h3 img {
    width: 20rem;
  }
  #section01 .title_wrap p {
    font-size: 1.4rem;
  }
  #section01 .content_wrap {
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
  }
  #section01 .content_wrap img {
    width: 100%;
  }
  #section01 .content_wrap .text_box h4 {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  #section01 .content_wrap .text_box p {
    font-size: 1.4rem;
  }
  #section02 {
    flex-direction: column;
    margin-bottom: 150px;
    padding: 0 16px;
    height: initial;
  }
  #section02 .tab_wrap {
    height: initial;
    padding: 0;
    background-color: initial;
  }
  #section02 .content_wrap .title_wrap {
    margin: 0 16px 20px 0;
  }
  #section02 .content_wrap .content li {
    margin: 0 16px 26px 32px;
  }
  #section02 .tab_wrap .tab_menu li a {
    padding: 16px 0;
    margin: 8px 4px;
    font-size: 1.6rem;
    text-align: center;
  }
  #section02 .tab_wrap .tab_menu li a:after {
    top: 140%;
  }
  #section02 .content_wrap {
    width: initial;
    padding: 30px 0;
  }
  #section02 .content_wrap .title_wrap h4 {
    font-size: 2.4rem;
  }
  #section02 .content_wrap .title_wrap span {
    font-size: 1.6rem;
  }
  #section02 .content_wrap .title_wrap p {
    font-size: 1.6rem;
  }
  #section02 .content_wrap .content li {
    font-size: 1.4rem;
  }
  #section02 .tab_wrap h3 {
    padding: 83px 0 26px;
  }
  #section02 .tab_wrap .tab_menu {
    flex-wrap: wrap;
    flex-direction: initial;
  }
  #section02 .tab_wrap .tab_menu li {
    width: 50%;
    min-height: 64px;
    border-left: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
    box-sizing: border-box;
  }
  #section02 .tab_wrap .tab_menu li:first-child,
  #section02 .tab_wrap .tab_menu li:nth-child(3) {
    border-left: none;
  }
  #section02 .tab_wrap .tab_menu li:nth-child(3),
  #section02 .tab_wrap .tab_menu li:nth-child(4) {
    border-bottom: none;
  }
  #section02 .tab_wrap .tab_menu li a:after {
    display: none;
  }
  #section02 .tab_wrap .tab_menu li a:before,
  #section02 .tab_wrap .tab_menu li a:before {
    display: none;
  }
  #section02 .tab_wrap .tab_menu li a:hover:before,
  #section02 .tab_wrap .tab_menu li a.active:before {
    display: none;
  }
  #section02 .tab_wrap .tab_menu li a:hover,
  #section02 .tab_wrap .tab_menu li a.active {
    border-radius: 22px;
  }
  /* #section02 .tab_wrap .tab_menu li span {
    display: none;
  } */
  #section02 .content_wrap .tab_content > div {
    max-width: 100%;
  }
  #section02 .content_wrap .tab_content .img_wrap {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 90%;
  }
  #section02 .content_wrap .tab_content .img01 {
    width: initial;
    position: initial;
  }
  #section02 .content_wrap .tab_content .img02 {
    width: initial;
    position: initial;
  }
  #section03 {
    padding-top: 100px;
    padding-bottom: 100px;
    height: initial;
  }
  #section03:after {
    background-size: 24rem;
    width: 24rem;
    height: 21rem;
    right: 0%;
    top: -2%;
  }
  #section03 .content_wrap ul {
    margin-top: 50px;
    flex-direction: column;
  }
  #section03 .content_wrap ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  #section03 .content_wrap ul li img {
    width: 80%;
  }
  #section03 .content_wrap ul li span {
    font-size: 2rem;
  }
  #section04 {
    height: initial;
  }
  #section04 .title_wrap h3 img {
    width: 20rem;
  }
  #section04 .content_wrap ul {
    flex-wrap: wrap;
  }
  #section04 .content_wrap ul li {
    padding: 0 8px;
    max-width: 275px;
  }
  #section04 .content_wrap ul li h4 {
    font-size: 2rem;
  }
  #section04 .content_wrap .btn {
    margin: 50px 0;
    font-size: 2rem;
  }
  footer {
    padding: 30px 16px;
  }
  .footer-info.container {
    margin-bottom: 0;
  }
  .footer-info ul {
    flex-direction: column;
  }
  .footer-info ul li {
    margin-bottom: 20px;
  }
  .footer-info ul li .logo {
    width: 16rem;
    margin-bottom: 3px;
  }
  .footer-info ul li h5 {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
  .footer-info ul li p {
    font-size: 1.2rem;
  }
  .footer-info ul li p span {
    width: 29%;
  }
  header .badge_wrap {
    display: none;
  }
  #to_top {
    width: 40px;
    height: 40px;
    right: 35px;
    bottom: 35px;
  }
  #to_top img {
    width: 2rem;
  }
}
