.container {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.inner {
  position: relative;
  max-width: 1356px;
  width: 100%;
  padding: 0 2.8rem;
  margin: auto;
  box-sizing: border-box;
}

/* skip_nav */
#skip_nav {
  position: relative;
  z-index: 9999;
}

#skip_nav a {
  position: absolute;
  top: -40px;
  left: 0;
  width: 200px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  border: none;
  background-color: var(--main-color);
}

#skip_nav a:focus,
#skip_nav a:active {
  top: 0px;
  outline: none;
}

/* header */

body.open {
  height:100%;
  min-height:100%;
  overflow: hidden !important;
  overscroll-behavior: none;
  touch-action: none;
  -webkit-overflow-scrolling: none;
}

.header {
  position: fixed;
  width: 100%;
  background-color: transparent;
  overflow: hidden;
  box-sizing: border-box;
  z-index: 100;
  transition: background-color .8s;
}

.header.fix {
  border-bottom: 1px solid var(--border-sub);
  background-color: var(--white);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 92px;
  padding-left: 6rem;
}

.header .mo {
  display: none;
}

.nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  height: 100%;
  font-size: 1.7rem;
}

.nav ul li:first-child {
  font-family: 'Noto Sans KR';
}

.nav ul li:last-child {
  display: none;
}

.nav ul a {
  position: relative;
  color: var(--white);
  transition: all .5s;
}

.nav ul a:before,
nav ul a:after {
  content: '';
  border-bottom: solid 2px var(--main-color);
  position: absolute;
  bottom: -6px;
  width: 0;
}

.nav ul a:before {
  left: 0;
}

.nav ul a:after {
  right: 0;
}

.nav ul a:hover:before,
.nav ul a:hover:after {
  width: 50%;
}

.nav ul a:before,
.nav ul a:after {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.nav ul a:hover {
  color: var(--main-color);
}

.header.fix .nav h1 .nav_top {
  display: none;
}

.header .nav h1 .nav_scroll {
  display: none;
}

.header.fix .nav h1 .nav_scroll {
  display: block;
}

.header.fix .nav ul a {
  color: var(--text-color);
}

.header.fix .nav ul a:hover {
  color: var(--main-color);
}

.contact_us {
  width: 310px;
  height: 92px;
  font-weight: 500;
  font-size: 1.9rem;
  line-height: 92px;
  background-color: var(--main-color);
  position: relative;
  overflow: hidden;
  transition: .7s;
}

.contact_us:hover {
  font-size: 2rem;
}

.contact_us:after {
  content: '';
  position: absolute;
  top: calc(50% - 60px);
  left: -50px;
  width: 20px;
  height: 170px;
  background: white;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  -webkit-transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0;
}

.contact_us:hover:after {
  left: calc(100% + 50px);
  opacity: 1;
}

.contact_us a {
  color: var(--white);
}

.ham_btn {
  display: none;
  position: relative;
  width: 22px;
  height: 60px;
  line-height: 60px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 11;
}

.ham_btn a {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.header.fix .ham_btn a {
  background-color: #323333;
}

.ham_btn a:nth-child(1) {
  top: 15px;
}

.ham_btn a:nth-child(2) {
  top: 25px;
}

.ham_btn a:nth-child(3) {
  top: 35px;
}

.ham_btn.open {
  position: absolute;
  right: 20px;
}

.ham_btn.open a:nth-child(1) {
  top: 35px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.ham_btn.open a:nth-child(2) {
  opacity: 0;
  left: -20px;
}

.ham_btn.open a:nth-child(3) {
  top: 35px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.header.header_white {
  border-bottom: 1px solid var(--border-sub);
  background-color: var(--white);
}

.header.header_white .nav h1 .nav_top {
  display: none;
}

.header.header_white .nav h1 .nav_scroll {
  display: block;
}

.header.header_white .nav ul a {
  color: var(--text-color);
}

.header.header_white .nav .ham_btn a {
  background-color: var(--text-color);
}

.header.open.header_white .nav ul a {
  color: var(--white);
}

.header.open.header_white .nav .ham_btn a {
  background-color: var(--white);
}

.right_icon {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: fixed;
  right: 6rem;
  bottom: 6.5rem;
  z-index: 3;
}

.go_top {
  font-weight: 700;
  font-size: 1.8rem;
  cursor: pointer;
}

.map_icon p:first-child,
.cs p:first-child {
  text-indent: -999999px;
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
  background-size: 50%;
  box-shadow: rgba(0, 0, 0, .2) 1px 1px 5px;
}

.map_icon p:first-child {
  background: url(/images/map_icon.png) no-repeat center;
  background-color: var(--white);
  position: relative;
  z-index: 1;
}


.map_icon:hover .addre {
  display: block;
}

.addre {
  display: none;
  width: 23.5rem;
  height: 6.4rem;
  padding: 1rem 7rem 0 2rem;
  border-radius: 32px;
  background-color: #171615;
  position: absolute;
  top: 0;
  right: 1px;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.2rem;
  color: var(--white);
}

.cs,
.map_icon {
  position: relative;
}

.cs p:first-child {
  background: url(/images/call_icon.png) no-repeat center;
  background-color: var(--white);
  position: relative;
  z-index: 1;
}

.cs:hover .call_num {
  display: block;
}

.call_num {
  display: none;
  width: 21.5rem;
  height: 6.4rem;
  padding: 1.2rem 7rem 0 2rem;
  border-radius: 32px;
  background-color: var(--sub-color);
  position: absolute;
  top: 0;
  right: 1px;
  font-weight: 900;
  font-size: 2rem;
  color: var(--white);
}

.call_time {
  font-family: 'Noto Sans KR';
  font-weight: 700;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, .6);
}

/* main */

.respon {
  display: none;
}

.main {
  width: 100%;
  height: 100%;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  background-position: center center;
  background-size: 100% 100%;
}

.main_bg {
  width: 100%;
  min-width: 1800px;
  height: 100vh;
  animation: changeimg 18s steps(1) infinite, backsize 18s infinite;
  -webkit-animation: changeimg 18s steps(1) infinite, backsize 18s ease-in-out infinite;
}

@keyframes changeimg {
  0% {
    background: url(../images/main_img01.png) no-repeat center;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.35);
    background-blend-mode: multiply;
  }

  33% {
    background: url(../images/main_img02.png) no-repeat center;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.35);
    background-blend-mode: multiply;
  }

  66% {
    background: url(../images/main_img03.png) no-repeat center;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.35);
    background-blend-mode: multiply;
  }
}

@keyframes backsize {
  0% {
    transform: scale(1.1) translateY(-15px);
    transform-origin: top;
  }

  9% {
    transform: scale(1) translateY(0);
    transform-origin: 50% 16px;
  }

  32.9999% {
    transform: scale(1) translateY(0);
    transform-origin: 50% 16px;
  }

  33% {
    transform: scale(1.1) translateY(-15px);
    transform-origin: top;
  }

  42% {
    transform: scale(1) translateY(0);
    transform-origin: 50% 16px;
  }

  65.999999% {
    transform: scale(1) translateY(0);
    transform-origin: 50% 16px;
  }

  66% {
    transform: scale(1.1) translateY(-15px);
    transform-origin: top;
  }

  75% {
    transform: scale(1) translateY(0);
    transform-origin: 50% 16px;
  }

  99.99999% {
    transform: scale(1) translateY(0);
    transform-origin: 50% 16px;
  }
}

.main .main_wrap {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
}

.main .text_box {
  padding: 0 4rem;
  text-align: left;
  position: absolute;
  bottom: 25rem;
}

.sub_title {
  margin-bottom: 1.2rem;
  font-weight: 600;
  font-size: 2.4rem;
  color: var(--text-sub-color);
}

.title {
  font-weight: 700;
  font-size: 7.2rem;
  line-height: 9rem;
  letter-spacing: 6px;
  color: var(--white);
}

.scroll_down {
  font-size: 1.2rem;
  color: var(--white);
  position: absolute;
  left: 6rem;
  bottom: 6.5rem;
  z-index: 5;
}

.scroll_down p:first-child {
  padding-top: 2px;
  font-weight: 200;
  font-size: 1.2rem;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  transform: rotate(-90deg);
  transform-origin: left top;
}

.scroll_icon {
  text-indent: -9999px;
  margin-top: 0.4rem;
  width: 12px;
  height: 22px;
  border: 1px solid var(--white);
  border-radius: 14px;
  font-weight: 200;
  position: relative;
}

.scroll_icon::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--white);
  position: absolute;
  left: 50%;
  top: 3px;
  animation: scroll 1.5s infinite;
  -webkit-animation: scroll 1.5s infinite;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
}

@keyframes scroll {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 8px);
  }
}

/* index */

/* visual_wrap */
.visual_wrap {
  padding: 10rem 0 15rem;
  background-color: #363636;
}

.visual_wrap .text_wrap>.text_sub {
  margin-bottom: 2.5rem;
  font-weight: 600;
  color: var(--red);
}

.visual_wrap .text_wrap p {
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 4.4rem;
  word-break: keep-all;
  color: #fff;
}

/* link_wrap */
.link_wrap {
  margin-top: 5rem;
}

.center {
  position: relative;
  width: 100%;
  max-width: 1340px;
  padding: 0 2rem;
  margin: auto;
  box-sizing: border-box;
}

.we_do {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20rem;
}

.we_do .img_box {
  width: 50%;
}

.we_do .img_box img {
  width: 100%;
}

.we_do .text_box {
  width: 30%;
  text-align: left;
}

.we_do>.text_box>.tit_sub {
  margin-bottom: 3rem;
  font-weight: 600;
  font-size: 2rem;
  color: var(--light-gray);
}

.we_do>.text_box>h3 {
  margin-bottom: 3rem;
  font-weight: 700;
  font-size: 4.8rem;
  line-height: 6.2rem;
  word-break: keep-all;
}

.we_do>.text_box>.text_sub {
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 3.6rem;
  word-break: keep-all;
}

.we_do>.text_box>.text_sub>span {
  color: var(--text-sub-color);
}

.we_do01 {
  margin-bottom: 10rem;
  opacity: 0;
  transform: translateY(300px);
  transition: opacity 1s, transform 1s;
}

.we_do01.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.we_do01 .text_box {
  width: 44%;
}

.we_do02 {
  opacity: 0;
  transform: translateY(300px);
  transition: opacity 1s, transform 1s;
}

.we_do02.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.we_do02 .text_box {
  width: 50%;
}

.we_do03 {
  gap: 11.5rem;
  margin-bottom: 17.4rem;
  opacity: 0;
  transform: translateY(300px);
  transition: opacity 1s, transform 1s;
}

.we_do03.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.we_do03 .text_box {
  width: 50%;
}

/* plus_wrap */
.plus_wrap {
  margin-bottom: 16.8rem;
}

.plus_img {
  width: 800px;
  height: 720px;
  margin: 0 auto 5.6rem;
  background: url(/images/main_img05.png) no-repeat center;
  background-color: rgba(0, 0, 0, .12);
  background-blend-mode: multiply;
  background-size: cover;
  position: relative;
  transition: width .9s ease-in-out;
}

.plus_img.wide {
  width: 100%;
}

.plus_wrap .inner {
  position: initial;
}

.plus_wrap .text_box {
  position: absolute;
  right: 0;
  bottom: 10.6rem;
  left: 0;
}

.plus_wrap .text_box h4 {
  font-weight: 700;
  font-size: 5.2rem;
  line-height: 7rem;
  color: var(--white);
  word-break: keep-all;
}

.plus_wrap .plus_icon {
  margin-bottom: 2.5rem;
}

.plus_center {
  display: flex;
  flex-flow: row wrap;
  row-gap: 3.5rem;
  justify-content: space-between;
  align-items: flex-end;
  text-align: left;
  margin-bottom: 11rem;
}

.plus_center .plus_name {
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 2.2rem;
}

.plus_center .plus_num {
  font-weight: 600;
  font-size: 5.2rem;
}

.plus_center>div span:last-child {
  font-size: 3rem;
  font-weight: 600;
}

.plus_center div:first-child .plus_num {
  position: relative;
}

.plus_center div:first-child .plus_num::after {
  content: '';
  display: block;
  width: 20px;
  height: 43px;
  background: url(../images/plus_icon.png);
  position: absolute;
  top: -8px;
  left: 13.3rem;
}

.plus_center div:nth-child(3) .plus_num {
  position: relative;
}

.plus_center div:nth-child(3) .plus_num::after {
  content: '';
  display: block;
  width: 20px;
  height: 43px;
  background: url(../images/plus_icon.png);
  position: absolute;
  top: -8px;
  left: 8.1rem;
}

.plus_center>div:last-child {
  display: flex;
  gap: 1.7rem;
}

.plus_center div:last-child .plus_name {
  font-size: 1.8rem;
}

.plus_center div:last-child .plus_num {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 3rem;
}

.plus_num01,
.plus_num02,
.plus_num03,
.plus_num04 {
  display: inline-block;
}


.plpa_logo {
  margin-bottom: 2.7rem;
}

.plus_bottom h5 {
  margin-bottom: 5.2rem;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 5.2rem;
}

.go_plus {
  position: relative;
  text-align: center;
}

.go_plus a {
  overflow: hidden;
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 29.2rem;
  height: 7rem;
  line-height: 7rem;
  color: var(--main-color);
  border-radius: 35px;
  border: 2px solid var(--main-color);
  transition: all 0.3s ease;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, .2);
}

.go_plus a:hover {
  color: var(--white);
}

.go_plus a:before {
  content: '';
  z-index: -1;
  position: absolute;
  background: var(--main-color);
  transition: all .4s ease;
}

.go_plus.goplpa a::before {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
  width: 200%;
  height: 0;
}

.go_plus.goplpa a:hover::before {
  height: 350%;
}

.ll {
  display: none;
}
/* 추가 */
@font-face {
  font-family: 'Freesentation-9Black';
  src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2404@1.0/Freesentation-9Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}
.pg {
  position: relative;
  margin-bottom: 0;
}
.pg .img_box {
  width: 100%;
  overflow: hidden;
}
.pg img {
  width: 100%;
}
.pg .text_box {
  width: 50vw;
  position: absolute;
  right: 0;
  top: 30%;
  color: #fff;
  text-align: left;
}
.pg .text_box h2 {
  font-family: 'Freesentation-9Black';
  color: #fff;
  font-size: 6rem;
  line-height: 1.2;
  word-break: keep-all;
}
.pg .text_box p {
  margin-top: 7rem;
  font-size: 2.8rem;
  word-break: keep-all;
}
.pg-bnr {
  position: relative;
  top: -2px;
  padding: 200px 0;
  background: url(../images/pg-bnr.svg) no-repeat center / cover;
}
.pg-bnr div {
  position: relative;
  padding: 0 10%;
  width: 60vw;
  text-align: left;
  font-size: 4rem;
  filter: brightness(70%);
}
.pg-bnr div h2 {
  font-size: 6rem;
  font-family: 'Freesentation-9Black';
  margin-bottom: 4rem;
  word-break: keep-all;
}
.pg-bnr div p {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--gray);
}
/* footer_top */
.footer_top_wrap {
  padding-top: 22rem;
  padding-bottom: 27.3rem;
  background-color: #242322;
}

.footer_top_wrap .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.footer_top_wrap .left h6 {
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 4.8rem;
  line-height: 6.2rem;
  color: var(--white);
}

.footer_top_wrap .left p {
  margin-bottom: 5.3rem;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 3.2rem;
  color: var(--white);
  word-break: keep-all;
}

.footer_top_wrap .left .hash_tag {
  display: flex;
  gap: 3rem;
  margin-bottom: 9.5rem;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--white);
}

.footer_top_wrap .contact_btn {
  width: 29.2rem;
  height: 7rem;
  border-radius: 35px;
  background-color: var(--text-sub-color);
  overflow: hidden;
}

.footer_top_wrap .contact_btn a {
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 7rem;
  color: var(--white);
}

.footer_top_wrap .right {
  width: 60%;
}

.footer_top_wrap .right .right_top,
.footer_top_wrap .right .right_bottom {
  width: 100%;
  padding: 4.2rem 0;
  border-radius: 21px;
  background-color: #303030;
  color: var(--white);
}

.footer_top_wrap .right .right_top {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 2.4rem;
}

.footer_top_wrap .right .right_top .right_top_img {
  margin-left: 5.2rem;
}

.footer_top_wrap .right .right_top .text_box p:first-child {
  margin-bottom: 1.6rem;
  font-weight: 600;
  font-size: 3rem;
  color: var(--white);
}

.footer_top_wrap .right .right_top .text_box p:last-child {
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 2.8rem;
  color: rgba(255, 255, 255, .6);
}

.footer_top_wrap .right .right_top .text_box .enter {
  display: none;
}

.footer_top_wrap .right .right_bottom {
  padding: 5rem 0;
}

.footer_top_wrap .right .right_bottom .top_text,
.footer_top_wrap .right .right_bottom .bottom_text {
  display: flex;
  gap: 2rem;
  margin-left: 5.2rem;
  font-weight: 300;
  font-size: 1.8rem;
  color: var(--white);
}

.footer_top_wrap .right .right_bottom .top_text {
  margin-bottom: 1.6rem;
}

.footer_top_wrap .right_bottom .bottom_text p {
  padding-right: 3rem;
  line-height: 3rem;
}

/* footer */
.footer {
  padding-bottom: 4.6rem;
  font-weight: 300;
  font-size: 1.4rem;
  background-color: #242322;
}

.footer .footer_wrap {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  row-gap: 3rem;
  justify-content: space-between;
  color: var(--white);
}

.footer .footer_wrap ul {
  display: flex;
}

.footer .footer_wrap ul li {
  display: flex;
}

.footer_wrap ul:first-child li {
  text-decoration: underline;
}

.footer ul:first-child li:first-child {
  padding-right: 2rem;
  border-right: 1px solid #656565;
}

.footer ul:first-child li:last-child {
  padding-left: 2rem;
}

.footer_wrap ul:nth-child(2) {
  gap: 2.2rem;
}

.footer_wrap ul:nth-child(2) li {
  gap: 1.5rem;
}

.footer_wrap ul:nth-child(2) li p:first-child {
  font-weight: 500;
}

.footer_wrap ul:nth-child(2) li p:last-child {
  font-weight: 300;
}

.footer .footer_wrap>p {
  text-align: left;
  line-height: 2.8rem;
  color: rgba(255, 255, 255, .5);
}




@media screen and (max-width:1250px) {
  .main_bg {
    margin-left: -400px;
  }

  .right_icon {
    display: none;
  }
  .pg .text_box h2 {
    font-size: 5rem;
    line-height: 1.2;
  }
  .pg .text_box p {
    margin-top: 5rem;
    font-size: 2.2rem;
  }
}

@media screen and (max-width:1000px) {
  .plus_center>div {
    width: 50%;
  }

  .plus_center .great {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 9.5rem;
    padding: 0rem 4rem;
    border-radius: 8px;
    background-color: var(--back-gray);
  }

  .certi_icon img {
    width: 90%;
  }

  .plus_center .great br {
    display: none;
  }

  .footer_top_wrap .right .right_top .text_box .enter {
    display: block;
  }
  .pg .text_box h2 {
    font-size: 4rem;
    line-height: 1.2;
  }
  .pg .text_box p {
    margin-top: 4rem;
    font-size: 1.8rem;
  }
  .pg-bnr div h2 {
    font-size: 4rem;
  }
  .pg-bnr div p {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 854px) {
  .pg-box {
    left: -23%;
    width: 145%;
}
  .inner {
    padding: 0 2.8rem;
  }

  .header {
    height: 80px;
  }

  .nav {
    height: 80px;
    padding: 0 2.8rem;
  }

  .nav_top img {
    width: 140px;
  }

  .nav_scroll img {
    width: 140px;
  }

  .header .mo {
    display: block;
  }

  .mo_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .ham_btn {
    display: block;
  }

  .nav ul {
    display: none;
  }

  .contact_us {
    display: none;
  }

  .header.open {
    height: 100vh;
    background-color: rgba(28, 29, 29, .92);
  }

  .header.open .logo {
    visibility: hidden;
  }

  .header.open .nav {
    display: block;
    padding: 1rem 0;
  }

  .header.open .nav ul {
    display: flex;
    flex-direction: column;
    gap: 3.3rem;
    justify-content: left;
    align-items: flex-start;
    text-align: left;
  }

  .header.open .nav ul li:last-child {
    display: none;
  }

  .header.open .nav ul a {
    font-weight: 500;
    font-size: 3.2rem;
  }

  .header.open .mo_view {
    margin-top: 5.5rem;
    padding-top: 2.3rem;
    border-top: 1px solid var(--white);
  }

  .header.open .mo_view {
    color: var(--white);
  }

  .header.open .mo_top {
    margin-bottom: 2.2rem;
  }

  .header.open .mo_view .top {
    margin-bottom: 2.3rem;
  }

  .header.open .mo_view .top p:first-child {
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 2rem;
  }

  .header.open .mo_view .top p:nth-child(2) {
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 2.4rem;
  }

  .header.open .mo_view .top p:last-child {
    font-weight: 300;
    font-size: 2rem;
  }

  .header.open .mo_view .mid {
    border-top: 1px solid rgba(255, 255, 255, .2);
    padding-top: 2.8rem;
  }

  .header.open .mo_view .mid .mail,
  .header.open .mo_view .mid .address {
    display: flex;
    gap: 1.7rem;
  }

  .header.open .mo_view .mid .address {
    align-items: center;
  }

  .header.open .mo_view .mid .mail {
    margin-bottom: 1.8rem;
  }

  .header.open .mo_view .mid .address .address_icon {
    padding-top: 6px;
  }

  .header.open .mo_view .mid .address p {
    line-height: 3rem;
  }
  .header .bottom {
    display: none;
  }
  .header.open .bottom {
    display: block;
    padding: 2.8rem;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .header.open .bottom .go_plus {
    width: initial;
    height: 66px;
    border: 1px solid var(--main-color);
    border-radius: 6px;
    background-color: transparent;
  }

  .header.open .bottom .go_plus a {
    height: 100%;
    font-weight: 500;
    font-size: 2.2rem;
    line-height: 66px;
    color: var(--main-color);
    border: none;
  }

  .header.fix.open .nav ul a {
    color: var(--white);
  }

  .header.fix.open .ham_btn a {
    background-color: var(--white);
  }


  .main_bg {
    margin-left: -550px;
  }

  .main .text_box {
    padding: 0 0 0 2.8rem;
    left: 0;
    bottom: 16.9rem;
  }

  .title {
    font-size: 4.2rem;
    line-height: 5.4rem;
  }

  .scroll_down {
    left: 50%;
    transform: translateX(-50%);
  }

  .scroll_icon {
    width: 18px;
    height: 35px;
    border-radius: 15px;
  }

  .scroll_icon::after {
    width: 7px;
    height: 7px;
    top: 5px;
  }
  .pg .text_box {
    width: 54vw;
  }

  @keyframes scroll {
    0% {
      opacity: 1;
    }

    100% {
      opacity: 0;
      transform: translate(-50%, 20px);
    }
  }

  .scroll_down p:first-child {
    display: none;
  }

  .we_do {
    flex-flow: column;
    padding: 0 2.8rem;
  }

  .we_do .img_box {
    width: 100%;
  }

  .we_do .text_box {
    width: 100%;
  }

  .we_do02,
  .we_do03 {
    gap: 7rem;
  }

  .center {
    padding: 0;
  }

  .plus_bottom h5 {
    font-size: 2.2rem;
    line-height: 3.2rem;
    word-break: keep-all;
  }

  .footer_top_wrap .inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 14rem;
  }

  .footer_top_wrap .right {
    width: 100%;
  }

  .footer_top_wrap .right .right_top {
    padding: 3.3rem 0;
  }

  .footer_top_wrap .right .right_top .right_top_img,
  .footer_top_wrap .right .right_bottom .top_text,
  .footer_top_wrap .right .right_bottom .bottom_text {
    margin-left: 3rem;
  }
}

@media screen and (max-width:800px) {
  .plus_img {
    width: 100%;
  }
}

@media screen and (max-width: 742px) {
  .respon {
    display: block;
  }

  .dd {
    display: none;
  }

  .plus_wrap .text_box h4 {
    padding: 0 2.8rem;
  }

  .plus_center>div:last-child {
    gap: 0;
  }

  .certi_icon img {
    width: 69%;
  }
  .pg .text_box h2 {
    font-size: 3rem;
  }
  .pg .text_box {
    top: 25%;
  }
  .pg-bnr {
    background: url(../images/pg-bnr.svg) no-repeat right top / cover;
  }
  .pg-bnr div {
    width: 95vw;
  }
  .pg-bnr div h2 {
    font-size: 3.8rem;
  }
}
@media screen and (max-width:540px) {
  .pg .text_box h2 {
    font-size: 2.4rem;
  }
  .pg .text_box p{
    margin-top:1.8rem;
    font-size: 1.4rem;
  }
}
@media screen and (max-width:414px) {
  .main_bg {
    width: 100%;
    min-width: 414px;
    margin-left: initial;
    height: 737px;
    background-color: rgba(0, 0, 0, .35);
    background-blend-mode: multiply;
    animation: changeimg 18s steps(1) infinite, backsize 18s infinite;
    -webkit-animation: changeimg 18s steps(1) infinite, backsize 18s infinite;
  }

  @keyframes changeimg {
    0% {
      background: url(../images/mo_main_img01.png);
      background-repeat: no-repeat;
      background-position: center;
      background-color: rgba(0, 0, 0, 0.35);
      background-blend-mode: multiply;
    }

    33% {
      background: url(../images/mo_main_img02.png);
      background-repeat: no-repeat;
      background-position: center;
      background-color: rgba(0, 0, 0, 0.35);
      background-blend-mode: multiply;
    }

    66% {
      background: url(../images/mo_main_img03.png);
      background-repeat: no-repeat;
      background-position: center;
      background-color: rgba(0, 0, 0, 0.35);
      background-blend-mode: multiply;
    }
  }

  .we_do>.text_box>h3 {
    font-size: 4.2rem;
    line-height: 5.2rem;
  }

  .plus_center .plus_num {
    font-weight: 600;
    font-size: 5rem;
  }

  .plus_img {
    height: 557px;
    background: url(../images/mo_main_img05.png) no-repeat center;
    background-color: rgba(0, 0, 0, .12);
    background-blend-mode: multiply;
  }

  .plus_wrap .text_box h4 {
    font-size: 3.4rem;
    line-height: 4.6rem;
  }

  .kk {
    display: none;
  }

  .ll {
    display: block;
  }
  .pg .text_box h2 {
    font-size: 2rem;
  }
  .pg .text_box p {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-top: 2rem;
  }
  .pg img {
    position: relative;
    left: -10%;
    width: 130%;
  }
}