@import "reset.css";

:root {
    --mainColor: #1bc7bc;
}
.wrap {width:100%;max-width: 1440px;padding: 0 20px;margin: 0 auto;position: relative;}
.flexSb {display: flex;justify-content: space-between;}
.flex {display: flex;}
.secBg {overflow: hidden;position: relative;padding-bottom: 56.25%;}
.secBg iframe {position: absolute;width: 100%;height: 100%;object-fit: cover;left: 0;}

.ellipsis {overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 3;-webkit-box-orient: vertical;white-space: normal;height: 3em;line-height: 1.6;letter-spacing: -0.22px;}
.tt {margin-bottom: 75px;}
.tt h3 {font-size:60px;font-weight: bold;margin-bottom: 20px;}
.tt p {font-size: 20px;font-weight: 600;color: #6f6f6f;word-break: keep-all;}
.material-symbols-outlined {font-variation-settings: 'FILL' 1, 'wght' 200, 'GRAD' 0, 'opsz' 20}
.color , .green {color: var(--mainColor);}
.poppins {font-family: "Poppins", serif;}

/* header */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: #fff;
  height: 100px;
  padding: 0 100px;
  transition: 0.5s;
}
header > .flexSb {
    align-items: center;

    height: 100px;
}
header .gnb {
  display: flex;
  align-items: center;
  height: 100%;
}
header .gnb > li {
    position: relative;
}
header li.active > a {
    color: var(--mainColor);
}
header .gnb > li > a {
  font-size: 18px;
  font-weight: bold;
    display: block;
    padding: 0 42px;
}
header .snb {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10;
  display: none;
    padding: 20px;
}
header .snb a {
    font-size:16px;
    text-align: center;
    display: block;
}
header .snb li + li {
    margin-top: 15px;
}

header li:hover > a {
  color: var(--mainColor);
}
header.active {
  background: #fff;
    height: 340px;
}
header.active #bar span {
  background: #000;
}
header.active .gnb > li:not(.active) > a {
  color: #000;
}
header.active .gnb li:hover > a {
  color: var(--mainColor);
}
header.visible-hidden {
  transform: translateY(-120%);
}
header.visible {
  transform: translateY(0);
  height: 70px;
}
header.visible .snb {
  top:70px
}


#bar {
  display: none;
  width: 26px;
  height: 16px;
  position: relative;
}

#bar span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
  transition: 0.5s;
}

#bar span:nth-child(1) {
  top: 0;
}

#bar span:nth-child(2) {
  top: 50%;
  width: 80%;
  transform: translateY(-50%);
}

#bar span:nth-child(3) {
  top: 14px;
}
.quick-menu {
    position: fixed;
    top:50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 8;
    width: 150px;
    border-radius: 8px;
    box-shadow: 1.47px 1.47px 27px 0px rgba(35, 80, 77, 0.13);
}
.quick-menu div {
    background-color: var(--mainColor);
    color: #fff;
    padding: 16px 20px;
    border-radius: 8px 8px 0 0;
    font-size: 16px;
    font-weight: bold;
    font-family: "Poppins", serif;
}
.quick-menu a {
    padding: 36px 15px;
    display: block;
    text-align: center;
    font-size: 20px;
    color: #454f56;
    font-weight: bold;
    background: #fff;
    border-radius:0 0 8px 8px;
}
.quick-menu a span {
    display: block;
    margin-top: 30px;
}

/* main */
body {
    padding-top: 100px;
}
section {
    overflow: hidden;
}
.sec01 {
    position: relative;
    z-index: 9;
}
.main_swiper .swiper-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.main_swiper .swiper-slide01 {
    background-image: url(../img/main/mainImg.jpg);
}
.main_swiper .swiper-slide02 {
  background-image: url(../img/main/mainImg02.jpg);
}
.main_swiper .swiper-slide03 {
  background-image: url(../img/main/mainImg03.jpg);
}
.main_swiper .swiper-slide .swiper-txt {
    position:  absolute;
    top:50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    color: #fff;
    padding-bottom: 130px;
}
.main_swiper .swiper-slide .swiper-txt h2 {
    font-size:110px;
    font-weight: 700;
    font-family: "Poppins", serif;
    line-height: 1;
}
.main_swiper .swiper-slide .swiper-txt p {
    margin-top: 40px;
    font-size:24px;
    line-height: 1.58;
    white-space: pre-line;
}
.swiper-btm {
    position: absolute;
    top:calc(50% + 130px);
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
}
.swiper-btm .flex {
    align-items: center;
    gap:10px
}
.swiper-btm .flex > * {
    position: static !important
}
.swiper-button-next:after, .swiper-button-prev:after {
    display: none;
}
.swiper-btm .swiper-pagination {
    width: auto;
    display: flex;
    align-items: center;
}
.swiper-btm .swiper-button-next, .swiper-btm .swiper-button-prev {
    color: #fff;
    width: auto;
    height: auto;
    margin: 0;
}
.swiper-btm  .swiper-pagination-bullet {
    width: 60px;
    height: 2px;
    background: #fff;
}

.playBtn span {
    color: #fff;
    display: block;
}
.playBtn.pause .play {
    display: block;
}
.playBtn .play {
    display: none;
}
.playBtn.pause .pause {
    display: none;
}


.sec02 {
    padding: 100px 0;
}
.sec02 .tt h3 {
    font-size:60px;
    font-family: "Poppins", serif;
}
.sec02 .tt {
    margin-bottom: 90px;
}
.sec02 .img {
    bottom: 0;
    right: 0;
    position: absolute;
}
.sec02 .con h4 {
    font-size: 44px;
    margin-bottom: 40px;
    font-weight: 700;
}
.sec02 .con span{
    color: var(--mainColor);
}
.sec02 .con p {
    color: #6f6f6f;
    font-size:20px;
    line-height: 1.8;
    word-break: keep-all;
    white-space: pre-line;
}
.sec02 .con p b {
    color: #000;
}
.sec02 .con p + p {
    margin-top: 40px;
}
.viewMore {
    margin-top: 60px;
    font-size:16px;
    width: 210px;
    height: 64px;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:12px;
    transition:0.5s
}
.viewMore span {
    transition: 0.5s;
    display: inline-block;
    width: 24px;
    height: 13px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image: url("../img/main/more_arrow.png");
}
.viewMore:hover{
    gap:24px;
    background: var(--mainColor);
    border-color: var(--mainColor);
    color: #fff;
}
.viewMore:hover span {
    background-image: url("../img/main/more_arrow_w.png");
}


.sec03 , .sec04, .sec06 {
    padding: 140px 0;
}
.sec03 {
    background: #edf6f5;
}
.sec03 ul {
    display: flex;
    gap: 17px;
}
.sec03 ul li {
    flex:1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    padding-bottom: 33.333%;
}
.sec03 ul li:nth-child(2) {
    background: url(../img/main/business_img02.png) no-repeat center / cover;
}
.sec03 ul li:nth-child(3) {
    background: url(../img/main/business_img03.png) no-repeat center / cover;
}
.sec03 ul li:nth-child(1) {
    background: url(../img/main/business_img01.png) no-repeat center / cover;
}

.sec03 ul li:nth-child(4) {
    background: url(../img/main/business_img04.png) no-repeat center / cover;
}

.sec03 ul li a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.sec03 ul li a h4 {
    color: var(--mainColor);
    font-size:60px;
    font-family: "Poppins", serif;
    margin-bottom: 20px;
    line-height: 1;
}
.sec03 ul li a b {
    display: block;
    color: #fff;
    font-size:40px;
    font-weight: 800;
}
.sec03 ul li a p {
    color: #fff;
    opacity: 0.5;
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}
.sec03 ul li a .more span {
    transition: 0.5s;
    display: inline-block;
    width: 24px;
    height: 13px;
    background-image: url("../img/main/more_arrow_w.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.sec03 ul li:hover a .more span {margin-left: 10px;background-image: url("../img/main/more_arrow_c.png");}
.sec03 ul li a .more {transition:0.3s;font-size:14px;width: 125px;height: 48px;border: 1px solid #fff;display: flex;align-items: center;justify-content: center;gap:8px;font-family: "Poppins", serif;color: #fff;}
.sec03 ul li:hover a{
    background: rgba(27, 199, 188, 0.8);
    transition: 0.3s;
}
.sec03 ul li:hover a h4 {
    color: #fff;
}
.sec03 ul li:hover a .more {
    color: var(--mainColor);
    background: #fff;
}

.sec04 ul {
    display: flex;
    gap: 34px;
    flex-wrap: wrap;
}
.sec04 ul li {
    width: calc((100% - 68px) / 3);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    padding-bottom: 38.433%;
    border:1px solid #b5b5b5;
}
.sec04 ul li a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.sec04 ul li .hover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 421px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
    background: rgba(27, 199, 188, 0.8);
}
.sec04 ul li .hover span {
    width: 180px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    color: #1bc7bc;
    background-color: #fff;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
}
.sec04 ul li:hover .hover {
    opacity: 1;
}
.sec04 ul li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sec04 ul li .txt {
    position: absolute;
    text-align: center;
    bottom: 0;
    width: 100%;
    font-size:30px;
    font-weight: 700;
    padding: 30px;
    background: #fff;
}
.sec04 ul li .txt span.number {
  display: inline-block;
  font-weight: 900;
  font-family: "Poppins", serif;
  padding-right: 20px;
  margin-top: 10px;
  font-size: 36px;
  color: white;
  border-right: 1px solid #d6d6d6;
  -webkit-text-stroke: 2px #1bc7bc;
  letter-spacing: 1px;
}
.pL20 {
  padding-left: 20px;
}

.sec05 {
    padding: 120px 0;
    text-align: center;
    background: url("../img/main/interaction_bg.jpg") no-repeat center / cover;
}
.sec05 .tt h3 {
    color: #fff;
}
.sec05 .tt p {
    color: #fff;
    opacity: 0.7;
}
.sec05 .youtube {
    max-width: 920px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}
#thumbnail {
    position: absolute;
    z-index: 2;
}
#thumbnail img {
    width: 100%;
    max-width: inherit;
}

.sec06 .secTt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}
.sec06 .secTt .more img{
    margin-left: 20px;
    transition: 0.5s;
}
.sec06 .secTt .more {
    font-size:16px;
    font-weight: 600;
}
.sec06 .secTt .more:hover img {
    margin-left: 30px;
}
.sec06 .secTt .tt {
    margin-bottom: 0;
}
.sec06 ul {
    display: flex;
    gap: 34px;
}
.sec06 ul li {
    flex:1;
     border-radius: 7px;
    /* border-radius: 20px;*/
    overflow: hidden;
    border:1px solid #c9c9c9
}
.sec06 ul li a .txt{
    padding: 45px 40px 0 40px;
}
.sec06 ul li a .txt span {
    display: block;
    font-size: 16px;
    line-height: 1.4;
    margin-top: 1rem;
}
.sec06 ul li a .txt h4 {
  color:#333;
    font-size:22px;
    margin-top: 5px;
    font-weight: bold;
	    height: 55px;
}
.sec06 ul li a .txt div {
    margin-top: 30px;
    font-size:18px;
    font-weight: 600;
    color: #717171;
    line-height: 1.666;
}

/*company*/

.subTop {
  height: 720px;
  background-image: url(../img/company/topImg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  /*margin-bottom: 140px;*/
    display: flex;
    justify-content: end;
    flex-direction: column;
    padding-bottom: 200px;
}
.subTop .wrap h2 {
  font-size: 72px;
  font-weight: 600;
  color: #fff;
}

.companyCon .wrap h3 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 30px;
} 
.companyCon .wrap p {
  word-break: keep-all;
  color: #6f6f6f;
  font-size: 20px;
  line-height: 36px;
  width: 100%;
  display: block;
  margin-bottom: 40px;
}
.companyCon .wrap .greeting b {
  display: inline-block;
  font-weight: 700;
  width: 100%;
  font-size: 30px;
  margin-top: 30px;
  color: #1bc7bc;
}
.companyCon .wrap .greeting p {
  width: 83%;
  font-size: 20px;
  line-height: 36px;
  color: #585858;
  margin: 30px 0 70px;
  word-break: keep-all;
}
.companyCon .wrap .greeting .com_img {
  margin: 0 0 100px 0;
}
.patents {
  background: #eff4f3;
  padding: 100px 0 50px;
  display: block;
}
.patents_m {
  display: none;
}
.patentsImg {
  width: 100%;
  display: flex;
    align-items: center;
}
h5 {
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 30px 0;
}
.copy {
  padding: 100px 0 0 0;
  display: block;
}
.copy_m {
  display: none;
}
.patentsImg .patents_con {
  width: 245px;
  /*width: 245px;
  height: 454px;*/
}
.patentsImg .patents_con img {
  border: 1px solid #d0d0d0;
  box-shadow: 7px 7px #efefef;
  width: 100%;
  margin-bottom: 20px;
}
.patentsImg .patents_con p {
  font-size: 18px;
  display: inline-block;
  line-height: 26px;
  padding-bottom: 20px;
  color: #585858;
  text-align: center;
  white-space: pre-line;
}
.mR30 {
  margin-right: 30px;
}

.companyCon .history {
  display: flex;
  justify-content: space-between;
  margin-bottom: 140px;
}
.companyCon .history .historyImg {
  width: 446px;
  height: 446px;
  border-radius: 20px;
  background-image: url(../img/company/history_img.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;  
}
.companyCon .history .historyImg h4 {
  font-size: 26px;
}
.companyCon .history .historyImg strong {
  font-size: 60px;
}
.companyCon .history .historyTxt {
  box-sizing: border-box;
  padding-left: 40px;
}

.map_con {
  display: flex;
  justify-content: space-between;
  margin: 0 0 140px 0;
}
.map_con .mapImg {
  width: 48%;
  margin: 0 30px 0 0;
}
.map_con .address {
  width: 48%;
  margin: 15px 0 0 0;
}
.map_con .address em {
  display: inline-block;
  font-style: normal;
  color: #1bc7bc;
  font-weight: bold;
  font-size: 20px;
  padding-bottom: 10px;
}
.map_con .address p {
  color: #585858;
  font-size: 20px;
  margin-bottom: 35px;
  line-height: 36px;
}

.map_con .address p a {
  color: #585858;
  font-size: 20px;
  margin-bottom: 35px;
  line-height: 36px;
}
.map_con .address p a:hover {
  color: #1bc7bc;
  text-decoration: underline;
}



/********************** use info ************************/
#sec01 {
  background: url("/img/section2_bg.jpg") no-repeat center center / cover;
}

#sec02 {
  background: url("/img/section3_bg.jpg") no-repeat center center / cover;
}

#sec03 {
  background: url("/img/section4_bg.jpg") no-repeat center center / cover;
}

#sec04 {
  background: url("/img/section5_bg.jpg") no-repeat center center / cover;
  text-align: center;
}

.subTop .wrap h2 {
    font-size: 72px;
    font-weight: 600;
    color: #fff;
}
.subMenu {
 max-width:1440px;
    margin: 30px auto;
	padding: 0 20px;
}
.subMenu .flex {
    align-items: center;
}
.subMenu ul .goHome {
 
    margin-right:20px; 
}
.subMenu > ul > li {
    position: relative;
}
.subMenu .active > a , .subMenu .active button {
    color: var(--mainColor);
}
.subMenu_dropMenu span {
    transition:0.3s;
}
.subMenu_dropMenu.on span {
    transform: rotate(180deg);
}
.subMenuDropDownMenu {
    width: 100%;
    padding: 10px;
    position: absolute;
    z-index: 10;
    display: none;
}
.subMenu > ul > li ul {
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    width: 100%;
    background: #fff;
    padding: 10px 20px;
    border-radius: 8px;
}
.subMenu > ul > li ul a {
    font-size:14px;
    line-height: 2;
}
.subMenu > ul > li:not(.goHome) button {
    padding:0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 160px;
    color: #333;
    border-left:1px solid rgba(255,255,255,0.2);
    font-size:18px
}


#useInfo * {
  font-family: 'Spoqa Han Sans Neo', 'sans-serif' !important
}

#useInfo {
  padding-bottom: 215px;
}

#useInfo_main {
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../img/sub/useInfoMainImg.jpg") no-repeat center center / cover;
  margin-bottom: 80px;
}
#business #useInfo_main {
  background: url("../img/sub/businessMainImg.jpg") no-repeat center center / cover;
}

#useInfo_main h3 {
  font-size: 40px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.35;
  letter-spacing: -0.8px;
  text-align: center;
  color: #fff;
}

h2.sub-tit {
  font-size: 50px;
  font-weight: bold;
  letter-spacing: -0.8px;
  text-align: center;
  color: #222;
  padding-bottom: 40px;
  position: relative;
}


/*h2.sub-tit b {
  color: var(--color2)
}

h2.sub-tit:after {
  content: '';
  display: block;
  width: 96px;
  height: 6px;
  background: var(--color2);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

*/

section#content {
  max-width: 1040px;
  padding: 0 20px;
  margin: 120px auto 0;
}

#useInfo h4 {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: -0.8px;
  color: #222;
  margin-bottom: 24px;
}

#useInfo ul {
  display: flex;
  gap: 24px;
}

#useInfo ul li {
  flex: 1
}

#useInfo ul li .sec01_txt {
  padding: 20px 8px;
}

#useInfo ul li small {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.8px;
  color: #222;
  display: block;
}

#useInfo ul li b {
  font-size: 22px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.36;
  letter-spacing: -0.5px;
  text-align: left;
  margin: 8px 0 16px;
  display: block;
}

#useInfo ul li b span {
  color: var(--color2);
}

#useInfo ul li p {
  font-size: 13px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.54;
  letter-spacing: -0.5px;
  text-align: left;
  color: #9b9b9b;
  padding-left: 10px;
  position: relative;
}

#useInfo ul li p:before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #9b9b9b;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/*brand story*/
:root {
  --color: #1b9a34;
  --color2: #8bc22f;
}
.sub-menu {
  position: sticky;
  text-align: center;
  top: 5%;
  left: 0;
  margin: 0 auto;
  z-index: 5;
  transition: 0.5s;
}
html {
  font-size: 16px;
}
.sub-menu a {
  font-size: 22px;
  color: #9B9B9B;
  font-weight: 500;
/*  background: #F2F2F2;*/
  border-radius: 100px;
  padding: 1.5rem 2.5rem;
  text-decoration: none;
  margin-left: 10px;
}

.sub-menu a:nth-child(1) {
  margin-left: 0;
}

.sub-menu a.active {
  color: #fff;
  background:var(--color2)
}

#brandStory * {
  font-family: 'Spoqa Han Sans Neo', 'sans-serif' !important;
}
#brandStory #content {
  overflow: visible;
}
.brandStory {
  position: relative;
  margin: 60px auto 0;
}

.brandStory .inner h6 {
  font-weight: bold;
  letter-spacing: -0.05em;
  text-align: center;
  font-size: 3rem;
  color: #222
}

.brandStory .inner h6 img {
  vertical-align: sub
}

.brandStory .inner h6 em {
  position: relative;
  font-style: normal;
  color: var(--color2);
  font-size:2rem
}
.brandStory .inner h6 + p {
  text-align: center;
  font-size:20px;
  margin: 24px 0 80px;
}
.brandStory .inner h6 + p b {
  font-weight: 400;
  color: var(--color2);
}

.brandStory .subSec01 {
  margin-top: 160px
}
.brandStory h6 span {
  font-size:22px;
  margin-bottom: 8px;
  display: block;
}
.brandStory h6 b {
  color: var(--color2);
}
.brandStory .subSec01 ul {
  display: flex;
  flex-wrap: wrap;
  gap:20px
}

.brandStory .subSec01 ul li {
  width: calc((100% - 20px) / 2);
}
.brandStory .subSec01 ul li .sec01_txt {
  padding: 20px 0 70px;
  font-size:24px
}
.brandStory .subSec01 ul li small {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}


/*.brandStory .subSec02 {
  margin-top: 160px
}
*/
.brandStory .subSec02 .pointWrap {
  position: relative;
  display: flex;
  gap: 3rem;
  padding: 60px 0;
}
.brandStory .subSec02 .pointWrap>div {
  flex:1
}
.brandStory .subSec02 .pointWrap>div.txtWrap {
  padding: 2rem 0;
}
.brandStory .subSec02 .pointWrap:nth-of-type(1) {
  padding-top: 80px
}

.brandStory .subSec02 .imgWrap {
  position: relative;
}
.brandStory .subSec02 .txtWrap span {
  color: var(--color2);
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 1rem;
  display: block;
}
.brandStory .subSec02 .txtWrap strong {
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: -0.05em;
  font-size: 2.5rem;
  color: #020202;
  display: block;
}
.brandStory .subSec02 .txtWrap em {
  font-style: normal;
}

.brandStory .subSec02 .txtWrap p {
  font-weight: 200;
  line-height: 1.3;
  letter-spacing: -0.05em;
  margin-top: 20px;
  font-size: 1.5rem;
  color: #333
}

.brandStory .subSec02 .pointWrap:nth-child(even) {
  flex-direction: row-reverse;
}

.brandStory .subSec03 {
  padding: 120px 0
}

.brandStory .subSec03 h6 {
  margin-bottom: 60px
}

.brandStory .subSec03 ul {
  display: flex;
  gap:1.5rem;
  flex-wrap: wrap;
}

.brandStory .subSec03 ul li {
  width: calc((100% - 3rem) / 3);
}

.brandStory .subSec03 ul li .txtWrap {
  position: relative;
}

.brandStory .subSec03 ul li .txtWrap strong {
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: -0.05em;
  font-size: 22px;
  color: #333;
  margin-bottom: 8px;
  padding-top: 1.5rem;
  display: block;
}

.brandStory .subSec03 ul li .txtWrap p {
  font-weight: 200;
  letter-spacing: -0.05em;
  font-size: 14px;
  color: #333
}

/* business */

#business #useInfo ul li b {
  font-size:19px
}
#business section#content {
  max-width: 100%;
  padding: 0;
}
.inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

#business .brandStory .subSec02 .pointWrap:nth-child(even) {
  flex-direction: row;
  text-align: right;
}
#business .brandStory .subSec02 .pointWrap:nth-child(odd) {
  flex-direction: row-reverse;
}
#business .brandStory .subSec02 .pointWrap {
  position: relative;
  display: flex;
  gap: 0;
  padding: 60px 0;
}
#business  .brandStory .subSec02 .txtWrap {
  position: relative;
  z-index: 2;
}
#business  .brandStory .subSec02 .txtWrap p span {
  display: inline;
  font-weight: 400;
}
#business .brandStory .subSec02 .txtWrap > span {
  color: #222;
  font-weight: bold;
  font-size:22px
}
#business .brandStory .subSec02 .txtWrap strong {
  font-size:3rem;
  position: relative;
  display: inline-block;
  z-index: 2;
}
#business .brandStory .subSec02 .txtWrap strong:after {
  content: "";
  position: absolute;
  top:-15px;
  left: 0;
  width: 141%;
  height: 44px;
  z-index: -1;
  background: url("../img/sub/business0201_txt.png") no-repeat center / 100% auto;
}
#business .brandStory .subSec02 .pointWrap:nth-child(2) .txtWrap strong:after {
  top:-15px;
  left: auto;
  right:0;
  width: 67%;
  background: url("../img/sub/business0202_txt .png") no-repeat center / 100% auto;
}
#business .brandStory .subSec02 .imgWrap {
  width: 50vw;
  position: absolute;
  top:0;
  left: 50%;
  z-index: 1;
  overflow: hidden;
}
#business .brandStory .subSec02 .pointWrap:nth-child(2) .imgWrap{
  left: auto;
  right: 50%;
}
#business .brandStory .subSec02 .pointWrap + .pointWrap {
  margin-top: 120px;
}


/* footer */

footer {
    position: relative;
    background: #f4f7f7;
    padding: 70px 0;
}
#top {
    position: absolute;
    top: -70px;
    right:100px;
    z-index: 2;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mainColor);
    opacity: 0.4;
    transition: 0.5s;
    color: #fff;
}
#top:hover {
    opacity: 1;
}
footer h4 {
    color: #5e5e5e;
    font-weight: bold;
    font-size:18px;
    font-family: "Poppins", serif;
    margin-bottom: 30px;
}
footer .fnb {
    font-size:16px;
    line-height: 1.375;
    color: #6b6b6b;
    font-weight: 400;
}
footer p {
    font-size:14px;
    color: #6b6b6b;
    margin-top: 20px;
}
footer ul.sns_wrap {
    display: flex;
    margin-top: 40px;
    gap:20px;
    align-items: center;
}






/* ¡æ ´Ù¸¥ ¸ðµç ½ºÅ¸ÀÏ ·Îµå ÈÄ, ÀÌ°É ¸Ç ¾Æ·¡¿¡! */
@media screen and (max-width: 768px) {

 header > .flexSb {
    align-items: center;

    height:60px;
}


  /* ÇÜ¹ö°Å º¸ÀÌ±â */
  #bar {
    display: block !important;
  }
  /* ¸ð¹ÙÀÏ: ³×ºñ ¼û±â±â */
  #mainNav {
    display: none !important;
    width: 100%;
  }
  /* open Å¬·¡½º°¡ ÀÖÀ¸¸é º¸ÀÌ±â */
  #mainNav.open {
    display: block !important;
  }
  /* ¼¼·Î ¸Þ´º·Î º¯°æ */
  #mainNav .gnb {
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
  }
  #mainNav .gnb li {
    margin: 0;
  }
}
/* µ¥½ºÅ©Å¾¿¡¼­´Â ÇÜ¹ö°Å ¼û±â±â */
@media screen and (min-width: 769px) {
  #bar {
    display: none !important;
  }
}

@media screen and (max-width:768px) {
  /* (1) ÀüÃ¼ nav ¾Ö´Ï¸ÞÀÌ¼Ç */
  #mainNav {
    position: absolute; top:50px; left:0; width:100%;
    background:#fff; overflow:hidden;
    max-height:0; transition:max-height .3s ease;
  }
  #mainNav.open { max-height:100vh; }

  /* (2) 1Â÷ ¸Þ´º(li) ¿­ ¶§ ¼­ºê ¾Ö´Ï¸ÞÀÌ¼Ç */
  #mainNav .hasDepth02 .snb {
    overflow:hidden;
    max-height:0;
    transition:max-height .3s ease;
  }
  #mainNav .hasDepth02.open .snb {
    max-height:500px; /* ÃæºÐÈ÷ Å©°Ô */
  }
}



/* °¢ ¼­ºêº° ¹è°æ 
.subTop:has(.subImg_sub2) { background-image: url(../img/sub/sub2_bg.jpg); }
.subTop:has(.subImg_sub3) { background-image: url(../img/sub/sub3_bg.jpg); }*/

/* 2depth ¼¼ºÐÈ­ 
.subTop:has(.subImg_sub2_1) { background-image: url(../img/sub/sub2_1_bg.jpg); }
.subTop:has(.subImg_sub2_2) { background-image: url(../img/sub/sub2_2_bg.jpg); }
.subTop:has(.subImg_sub2_3) { background-image: url(../img/sub/sub2_3_bg.jpg); }
.subTop:has(.subImg_sub3_1) { background-image: url(../img/sub/sub3_1_bg.jpg); }*/



/* ´ë¸Þ´ºº° ¹è°æÀÌ¹ÌÁö - 6°³ */
.subTop:has(.subImg_introduce) { background-image: url(/img/sub/bg_introduce.jpg); }
.subTop:has(.subImg_business) { background-image: url(/img/sub/bg_business.jpg); }
.subTop:has(.subImg_product) { background-image: url(/img/sub/bg_product.jpg); }
.subTop:has(.subImg_portfolio) { background-image: url(/img/sub/bg_portfolio.jpg); }
.subTop:has(.subImg_quote) { background-image: url(/img/sub/bg_quote.jpg); }
.subTop:has(.subImg_notice) { background-image: url(/img/sub/bg_notice.jpg); }



.subTop .subIntro {
    text-align: left;
    color: #fff;
}
.subTop .subIntro_sub {
    display: block;
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 15px;
}
.subTop .subIntro_title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
}
.subTop .subIntro_content {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
}