@charset "UTF-8";
/************************************************************************************/
/************************************* Colors *************************************/
/************************************************************************************/
:root {
  --white:#fff;
  --black:#000;
  --red:#9B0000;
  --blue:#0F0078;
  --light-blue:#5163c0;
  --deep-blue:#05014a;
  --orange:#ff9644;
  --gray-cd:#cdcdcd;
  --gray-af:#afafaf;
  --gray-e8:#e8e8e8;
  --gray-f8:#f8f8f8;
  --gray-fa:#fafafa;
  --gray-f2:#f2f2f2;
  --gray-f5:#f5f5f5;
  --gray-d2:#d2d2d2;
  --gray-d4:#d4d4d4;
  --gray-d5:#d5d5d5;
  --gray-dd:#dddddd;
  --gray-f0:#f0f0f0;
  --gray-f1:#f1f1f1;
  --gray-f3:#f3f3f3;
  --gray-f7:#f7f7f7;
  --gray-7c:#7c7c7c;
  --gray-95: #959595;
  --gray-55: #555555;
  --gray-27: #272727;
  --gray-33: #333333;
  --gray-88: #888888;
  --main-color:#59ac36;
  --point-color:#003366;
  --point01:#010A65;
  --gray-point: #6a6a6a;
  --black-point:#352f36;
  --gray-bg: #f8f8f8;
  --gray-dark-bg: #eaeaea;
  --font-basic: #121212;
  --border-color:#cccccc;
  --border-color2: #bfbfbf;
  --footer-bg: #2a2a2a;
  --instagram: #ff0074;
  --facebook: #0866ff;
  --naver: #03c75a;
  --youtube: #ff0000;
  --kakao: #fee500;
}

/* font-size */
/* absolute-center */
/* transition */
/************************************************************************************/
/*************************************** common ***************************************/
/************************************************************************************/
html {
  font-size: 62.5%;
}

body {
  font-family: "Pretendard", 맑은고딕, "Dotum", 돋움, "Arial", "sans-serif";
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.4;
  word-break: keep-all;
  letter-spacing: -0.025em;
}
@media (max-width: 1024px) {
  body {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}
body a {
  color: var(--font-basic);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--black);
  line-height: 1.4;
  font-weight: 700;
}

a, input, button, select {
  outline-offset: 2px;
  outline-color: var(--font-basic);
}

/* table */
table {
  width: 100%;
}

.wrap-in {
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
  .wrap-in {
    max-width: calc(100% - 64px);
  }
}
@media screen and (max-width: 768px) {
  .wrap-in {
    max-width: calc(100% - 40px);
  }
}
@media screen and (max-width: 320px) {
  .wrap-in {
    max-width: calc(100% - 32px);
  }
}

.wrap-in-c {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .wrap-in-c {
    max-width: calc(100% - 64px);
  }
}
@media screen and (max-width: 768px) {
  .wrap-in-c {
    max-width: calc(100% - 40px);
  }
}
@media screen and (max-width: 320px) {
  .wrap-in-c {
    max-width: calc(100% - 32px);
  }
}

/************************************************************************************/
/*************************************** header ***************************************/
/************************************************************************************/
header {
  position: relative;
  width: 100%;
}
header .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100px;
  max-width: 1400px;
  margin: 0 auto;
}
header .header .logo {
  display: block;
  width: 208px;
  height: 53px;
  background: url(/images/common/logo.svg) no-repeat center/100% 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
header .header .none-visible {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  font-size: 1px;
  line-height: 0;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  margin: -1px;
  padding: 0;
  border: 0;
}
header .header .button {
  color: var(--main-color);
  border: 1px solid var(--main-color);
  font-size: 1.7rem;
  font-weight: 700;
  border-radius: 22px;
  padding: 8px 35px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1024px) {
  header .header .button {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  header .header .button {
    font-size: 1.4rem;
  }
}
header .header .button:hover, header .header .button.active {
  background-color: var(--main-color);
  color: var(--white);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
header .header .menu-toggle {
  display: none;
}
header .header-menu {
  text-align: center;
  width: 100%;
}
header .header-menu > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .header-menu > ul > li {
  position: relative;
}
header .header-menu > ul > li > a {
  font-size: 1.7rem;
  font-weight: 500;
  padding: 0 46px;
  text-align: center;
}
@media (max-width: 1024px) {
  header .header-menu > ul > li > a {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  header .header-menu > ul > li > a {
    font-size: 1.4rem;
  }
}
header .header-menu > ul > li .gnb-2dep {
  display: none;
  position: absolute;
  top: calc(var(--header-height) - 20px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 99;
  width: 16rem;
  text-align: center;
}
header .header-menu > ul > li .gnb-2dep ul {
  background-color: var(--main-color);
  padding: 15px 0px;
  border-radius: 20px;
  margin-top: 20px;
}
header .header-menu > ul > li .gnb-2dep ul li {
  position: relative;
  padding: 8px 10px;
  /*transition: all 0s 0s;*/
}
header .header-menu > ul > li .gnb-2dep ul li a {
  color: var(--white);
}
header .sns-icon {
  margin-right: 15px;
}
header .sns-icon a {
  background: var(--black);
  width: 36px;
  height: 36px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .sns-icon a i {
  background-size: contain;
}
header .sns-icon a .icon-sns-blog {
  width: 20px;
  height: 20px;
  background-image: url("/images/common/sns_blog.svg");
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
}
@media screen and (max-width: 1200px) {
  header .sns-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-left: auto;
  }
}
@media screen and (max-width: 1200px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 101;
    background-color: var(--white);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  header .button {
    display: none;
  }
  header .header {
    height: 64px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  header .header .logo {
    width: 137px;
    height: 35px;
    margin-left: 1.8em;
  }
  header .header .menu-toggle {
    display: inline-block;
    height: 100%;
    margin-right: 1.8em;
  }
  header .header .menu-toggle .ico {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    width: 21px;
    height: 21px;
  }
  header .header .menu-toggle .ico span {
    background-color: var(--black);
    display: block;
    width: 100%;
    height: 2px;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
  }
  header .header .header-menu {
    display: none;
    position: absolute;
    top: 64px;
    width: 100%;
    height: 100vh;
    background-color: var(--main-color);
    overflow: auto;
  }
  header .header .header-menu > ul {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2em 0;
    padding-bottom: calc(64px + 2em);
  }
  header .header .header-menu > ul > li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid var(--white);
  }
  header .header .header-menu > ul > li > a {
    color: var(--white);
    line-height: 1.2;
    padding: 20px 0;
    display: block;
    width: 100%;
    text-align: left;
  }
  header .header .header-menu > ul > li .gnb-2dep {
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: none;
            transform: none;
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
  }
  header .header .header-menu > ul > li .gnb-2dep ul {
    background-color: var(--white);
    margin-top: 0;
    padding: 1.2em;
  }
  header .header .header-menu > ul > li .gnb-2dep ul li a {
    color: var(--black);
  }
  header .header .open-menu .ico {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header .header .open-menu .ico span {
    margin: -1px;
  }
  header .header .open-menu .ico span:nth-child(1) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  header .header .open-menu .ico span:nth-child(2) {
    display: none;
  }
  header .header .open-menu .ico span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

/************************************************************************************/
/*************************************** footer ***************************************/
/************************************************************************************/
footer {
  padding: 3.75em 0;
}
footer .top-cont {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 3.75em;
  margin-bottom: 3.75em;
}
footer .top-cont .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: var(--gray-33);
  font-weight: 500;
  font-size: 1.8rem;
}
@media (max-width: 1024px) {
  footer .top-cont .link {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  footer .top-cont .link {
    font-size: 1.5rem;
  }
}
footer .top-cont .link a {
  position: relative;
  padding-right: 25px;
  margin-right: 25px;
}
footer .top-cont .link a::after {
  content: "";
  display: block;
  width: 1px;
  height: 14px;
  position: absolute;
  background-color: var(--gray-88);
  right: 0;
  top: 4px;
}
footer .top-cont .link a:last-child {
  padding-right: 0;
  margin-right: 0;
}
footer .top-cont .link a:last-child::after {
  display: none;
}
footer .footer-con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .footer-con .text {
  color: var(--gray-55);
  font-weight: 300;
}
footer .footer-con .text ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
footer .footer-con .text ul li {
  margin-bottom: 10px;
  padding-right: 40px;
}
footer .footer-con .text .copy {
  color: var(--gray-95);
}
@media screen and (max-width: 768px) {
  footer .footer-con {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
  }
  footer .footer-con .sns-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media screen and (max-width: 1200px) {
  footer {
    padding: 2.75em 0;
  }
  footer .top-cont {
    padding-bottom: 1.75em;
    margin-bottom: 1.75em;
  }
  footer .top-cont .link {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/************************************************************************************/
/************************************* Colors *************************************/
/************************************************************************************/
:root {
  --white:#fff;
  --black:#000;
  --red:#9B0000;
  --blue:#0F0078;
  --light-blue:#5163c0;
  --deep-blue:#05014a;
  --orange:#ff9644;
  --gray-cd:#cdcdcd;
  --gray-af:#afafaf;
  --gray-e8:#e8e8e8;
  --gray-f8:#f8f8f8;
  --gray-fa:#fafafa;
  --gray-f2:#f2f2f2;
  --gray-f5:#f5f5f5;
  --gray-d2:#d2d2d2;
  --gray-d4:#d4d4d4;
  --gray-d5:#d5d5d5;
  --gray-dd:#dddddd;
  --gray-f0:#f0f0f0;
  --gray-f1:#f1f1f1;
  --gray-f3:#f3f3f3;
  --gray-f7:#f7f7f7;
  --gray-7c:#7c7c7c;
  --gray-95: #959595;
  --gray-55: #555555;
  --gray-27: #272727;
  --gray-33: #333333;
  --gray-88: #888888;
  --main-color:#59ac36;
  --point-color:#003366;
  --point01:#010A65;
  --gray-point: #6a6a6a;
  --black-point:#352f36;
  --gray-bg: #f8f8f8;
  --gray-dark-bg: #eaeaea;
  --font-basic: #121212;
  --border-color:#cccccc;
  --border-color2: #bfbfbf;
  --footer-bg: #2a2a2a;
  --instagram: #ff0074;
  --facebook: #0866ff;
  --naver: #03c75a;
  --youtube: #ff0000;
  --kakao: #fee500;
}

/* absolute-center */
/* transition */
/************************************************************************************/
/************************************* Colors *************************************/
/************************************************************************************/
:root {
  --white:#fff;
  --black:#000;
  --red:#9B0000;
  --blue:#0F0078;
  --light-blue:#5163c0;
  --deep-blue:#05014a;
  --orange:#ff9644;
  --gray-cd:#cdcdcd;
  --gray-af:#afafaf;
  --gray-e8:#e8e8e8;
  --gray-f8:#f8f8f8;
  --gray-fa:#fafafa;
  --gray-f2:#f2f2f2;
  --gray-f5:#f5f5f5;
  --gray-d2:#d2d2d2;
  --gray-d4:#d4d4d4;
  --gray-d5:#d5d5d5;
  --gray-dd:#dddddd;
  --gray-f0:#f0f0f0;
  --gray-f1:#f1f1f1;
  --gray-f3:#f3f3f3;
  --gray-f7:#f7f7f7;
  --gray-7c:#7c7c7c;
  --gray-95: #959595;
  --gray-55: #555555;
  --gray-27: #272727;
  --gray-33: #333333;
  --gray-88: #888888;
  --main-color:#59ac36;
  --point-color:#003366;
  --point01:#010A65;
  --gray-point: #6a6a6a;
  --black-point:#352f36;
  --gray-bg: #f8f8f8;
  --gray-dark-bg: #eaeaea;
  --font-basic: #121212;
  --border-color:#cccccc;
  --border-color2: #bfbfbf;
  --footer-bg: #2a2a2a;
  --instagram: #ff0074;
  --facebook: #0866ff;
  --naver: #03c75a;
  --youtube: #ff0000;
  --kakao: #fee500;
}

/************************************************************************************/
/*************************************** Form ***************************************/
/************************************************************************************/
input[type=text],
input[type=date],
input[type=time],
input[type=number],
input[type=password],
select {
  height: 60px;
  padding: 10px 20px;
  border-radius: 5px;
}
@media (max-width: 1024px) {
  input[type=text],
  input[type=date],
  input[type=time],
  input[type=number],
  input[type=password],
  select {
    height: 52px;
  }
}
@media (max-width: 768px) {
  input[type=text],
  input[type=date],
  input[type=time],
  input[type=number],
  input[type=password],
  select {
    height: 42px;
    padding: 10px 14px;
  }
}

/* font-size */
/************************************************************************************/
/*************************************** landing ***************************************/
/************************************************************************************/
.coming-soon {
  color: #333;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.coming-soon figure {
  width: 80%;
  margin: 0 auto 2em auto;
}
.coming-soon p b {
  font-size: 1.8em;
}

/************************************************************************************/
/*************************************** main ***************************************/
/************************************************************************************/
.visual-wrap .vi-img {
  background: url("/images/main/v_img01.jpg") no-repeat center/cover;
  height: 720px;
}
.visual-wrap .txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: var(--inner);
  width: 90%;
  height: 100%;
  text-align: center;
  color: #fff;
  gap: 30px;
  text-shadow: 0 0 10px #2d2f2e, 0 0 5px #2d2f2e;
}
.visual-wrap .txt .tit {
  font-size: 4.5rem;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .visual-wrap .txt .tit {
    font-size: 3.3rem;
  }
}
@media (max-width: 768px) {
  .visual-wrap .txt .tit {
    font-size: 2.9rem;
  }
}
.visual-wrap .txt .tit span {
  font-size: 5.2rem;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .visual-wrap .txt .tit span {
    font-size: 4.2rem;
  }
}
@media (max-width: 768px) {
  .visual-wrap .txt .tit span {
    font-size: 2.8rem;
  }
}
.visual-wrap .txt p {
  font-size: 1.8rem;
}
@media (max-width: 1024px) {
  .visual-wrap .txt p {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .visual-wrap .txt p {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1200px) {
  .visual-wrap {
    margin-top: 64px;
  }
  .visual-wrap .vi-img {
    height: 520px;
  }
}
@media screen and (max-width: 768px) {
  .visual-wrap .vi-img {
    height: 380px;
  }
}
@media screen and (max-width: 320px) {
  .visual-wrap .vi-img {
    height: 320px;
  }
}

.main-txt span {
  font-size: 1.9rem;
  color: var(--main-color);
  font-weight: 500;
}
@media (max-width: 1024px) {
  .main-txt span {
    font-size: 1.7rem;
  }
}
@media (max-width: 768px) {
  .main-txt span {
    font-size: 1.6rem;
  }
}
.main-txt h3 {
  font-size: 3.6rem;
  color: var(--point-color);
  padding: 10px 0 20px;
}
@media (max-width: 1024px) {
  .main-txt h3 {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .main-txt h3 {
    font-size: 2.4rem;
  }
}
.main-txt p {
  font-size: 1.8rem;
}
@media (max-width: 1024px) {
  .main-txt p {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .main-txt p {
    font-size: 1.5rem;
  }
}

.section-business {
  padding: 6.3em 0;
}
.section-business .cont-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1260px;
  margin: 0 auto;
  gap: 60px;
  padding-top: 4em;
}
.section-business .cont-wrap .cont {
  position: relative;
  width: calc(50% - 30px);
}
.section-business .cont-wrap .cont figure {
  position: relative;
  padding-top: 60%;
  overflow: hidden;
  border-radius: 30px;
}
.section-business .cont-wrap .cont figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.section-business .cont-wrap .cont .cont-tit h4 {
  font-size: 2.2rem;
  color: var(--point-color);
  padding: 20px 0 10px;
}
@media (max-width: 1024px) {
  .section-business .cont-wrap .cont .cont-tit h4 {
    font-size: 1.9rem;
  }
}
@media (max-width: 768px) {
  .section-business .cont-wrap .cont .cont-tit h4 {
    font-size: 1.8rem;
  }
}
.section-business .cont-wrap .cont .cont-tit p {
  font-size: 1.7rem;
  color: var(--black-point);
}
@media (max-width: 1024px) {
  .section-business .cont-wrap .cont .cont-tit p {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .section-business .cont-wrap .cont .cont-tit p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1200px) {
  .section-business .cont-wrap {
    gap: 20px;
    row-gap: 2.5em;
  }
  .section-business .cont-wrap .cont {
    width: calc(50% - 10px);
  }
  .section-business .cont-wrap .cont figure {
    border-radius: 20px;
  }
}
@media (max-width: 480px) {
  .section-business .cont-wrap {
    gap: 20px;
    row-gap: 2.5em;
  }
  .section-business .cont-wrap .cont {
    width: 100%;
  }
}

.section-operational {
  padding: 2.8em 0 6.3em;
}
.section-operational .main-txt {
  text-align: center;
}
.section-operational .oper-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 3em;
  gap: 20px;
}
.section-operational .oper-wrap .oper-bg01 {
  background-image: url("/images/main/oimg01.jpg");
}
.section-operational .oper-wrap .oper-bg02 {
  background-image: url("/images/main/oimg02.jpg");
}
.section-operational .oper-wrap .oper-cont {
  position: relative;
  width: 690px;
  height: 400px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 30px;
}
.section-operational .oper-wrap .oper-cont:hover .text-overlay {
  opacity: 1;
}
.section-operational .oper-wrap .oper-cont:hover .default-text {
  opacity: 0;
}
.section-operational .oper-wrap .oper-cont .default-text {
  position: absolute;
  bottom: 50px;
  left: 50px;
  color: var(--white);
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.section-operational .oper-wrap .oper-cont .default-text span {
  font-size: 1.7rem;
}
@media (max-width: 1024px) {
  .section-operational .oper-wrap .oper-cont .default-text span {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .section-operational .oper-wrap .oper-cont .default-text span {
    font-size: 1.4rem;
  }
}
.section-operational .oper-wrap .oper-cont .default-text h3 {
  color: var(--white);
  font-size: 3.2rem;
  padding-top: 15px;
}
@media (max-width: 1024px) {
  .section-operational .oper-wrap .oper-cont .default-text h3 {
    font-size: 2.6rem;
  }
}
@media (max-width: 768px) {
  .section-operational .oper-wrap .oper-cont .default-text h3 {
    font-size: 2.2rem;
  }
}
.section-operational .oper-wrap .oper-cont .text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* 어두운 오버레이 */
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0; /*기본 상태에서 숨김 */
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
  padding: 70px;
}
.section-operational .oper-wrap .oper-cont .text-overlay h3 {
  color: var(--white);
  font-size: 3.2rem;
  padding-top: 15px;
  position: relative;
}
@media (max-width: 1024px) {
  .section-operational .oper-wrap .oper-cont .text-overlay h3 {
    font-size: 2.6rem;
  }
}
@media (max-width: 768px) {
  .section-operational .oper-wrap .oper-cont .text-overlay h3 {
    font-size: 2.2rem;
  }
}
.section-operational .oper-wrap .oper-cont .text-overlay .icon01::after {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  background: url("/images/main/op_icon.svg") no-repeat center;
  position: absolute;
  right: 0;
  top: 0;
}
.section-operational .oper-wrap .oper-cont .text-overlay .icon02::after {
  content: "";
  display: block;
  width: 80px;
  height: 82px;
  background: url("/images/main/op_icon02.svg") no-repeat center;
  position: absolute;
  right: 0;
  top: 0;
}
.section-operational .oper-wrap .oper-cont .text-overlay p {
  line-height: 1.6;
}
@media screen and (max-width: 1400px) {
  .section-operational .oper-wrap .oper-cont {
    width: calc(50% - 10px);
  }
  .section-operational .oper-wrap .oper-cont .default-text {
    display: none;
  }
  .section-operational .oper-wrap .oper-cont .text-overlay {
    opacity: 1;
  }
}
@media screen and (max-width: 1024px) {
  .section-operational .oper-wrap .oper-cont {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .section-operational .oper-wrap .oper-cont {
    height: 350px;
  }
  .section-operational .oper-wrap .oper-cont .text-overlay {
    padding: 3em;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

.fimg-wrap {
  height: 400px;
  background: url("/images/main/f_img01.jpg") no-repeat center/cover;
  -webkit-transition: all 0.8s 0.1s ease, flex-grow 0.6s ease, -webkit-box-flex 0.6s ease;
  transition: all 0.8s 0.1s ease, flex-grow 0.6s ease, -webkit-box-flex 0.6s ease;
  transition: all 0.8s 0.1s ease, flex-grow 0.6s ease;
  transition: all 0.8s 0.1s ease, flex-grow 0.6s ease, -webkit-box-flex 0.6s ease, -ms-flex-positive 0.6s ease;
}
.fimg-wrap .txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: var(--inner);
  width: 90%;
  height: 100%;
  text-align: center;
  color: #fff;
  gap: 30px;
}
.fimg-wrap .txt .tit {
  font-size: 3.2rem;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .fimg-wrap .txt .tit {
    font-size: 2.6rem;
  }
}
@media (max-width: 768px) {
  .fimg-wrap .txt .tit {
    font-size: 2.2rem;
  }
}
.fimg-wrap .txt p {
  font-size: 1.8rem;
}
@media (max-width: 1024px) {
  .fimg-wrap .txt p {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .fimg-wrap .txt p {
    font-size: 1.5rem;
  }
}
.fimg-wrap .txt a {
  display: inline-block;
  border-radius: 27.5px;
  border: 1px solid var(--white);
  color: var(--white);
  background: rgba(0, 0, 0, 0.2);
  padding: 12px 50px;
  font-size: 1.8rem;
  font-weight: 700;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1024px) {
  .fimg-wrap .txt a {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .fimg-wrap .txt a {
    font-size: 1.5rem;
  }
}
.fimg-wrap .txt a:hover, .fimg-wrap .txt a.active {
  background: rgba(0, 0, 0, 0.8);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1400px) {
  .fimg-wrap {
    height: 320px;
  }
}

/* popup */
.popupDiv {
  max-width: calc(100% - 20px);
  position: absolute;
  top: 67px;
  left: 10px;
  z-index: 900;
}
.popupDiv .popup-control {
  color: var(--white);
  background: var(--black);
  padding: 5px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.popupDiv .popup-control input[type=checkbox] + label {
  padding-left: 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.popupDiv .popup-control input[type=checkbox] + label::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white) url("/images/common/unchecked.png") no-repeat center;
  background-size: 50%;
  margin-right: 1rem;
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
}
.popupDiv .popup-control input[type=checkbox]:checked + label::before {
  background: var(--point-color) url("/images/common/checked.png") no-repeat center;
}
.popupDiv .popup-control button {
  margin-left: auto;
  display: block;
}
