/* ----- S : Sub Visual ---- */
.sub-visual {
  padding: 119px 0 72px;
}

.sub-visual.sv3-1, .sub-visual.sv3-2,
.sub-visual.sv3-3, .sub-visual.sv3-4 {
  background-color: #f5f5f5;
}

.sub-visual-container {
  max-width: 1430px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.sub-navigation-inner {
  display: flex;
  align-items: center;
  padding: 0 0 20px;
}

.sub-navigation-inner .home {
  margin-right: 25px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  
  color: #656565;
}

.sub-navigation-inner .line {
  width: 1px;
  height: 12px;
  background-color: #656565;
}

.sub-navigation-inner .depth {
  position: relative;
  padding: 0 25px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #656565;
}

.sub-navigation-inner .depth::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: #656565;
}

.sub-navigation-inner .depth--02 {
  font-weight: 700;
  color: #9cc813;
}

.sub-navigation-inner .depth--02::after {
  display: none;
}

.sub-visual-title  {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #074377;
}

@media(max-width:1200px) {
  .sub-visual {
    padding: 105px 0 60px;
  }
  
  /* .sub-navigation-inner {
    padding: 0 0 20px;
  } */
  
  .sub-navigation-inner .home {
    margin-right: 20px;
    font-size: 1.6rem;
  }
  
  .sub-navigation-inner .line {
    height: 12px;
  }
  
  .sub-navigation-inner .depth {
    padding: 0 20px;
    /* font-size: 1.6rem; */
  }
  
  .sub-navigation-inner .depth::after {
    transform: translateY(-50%);
    height: 12px;
  }
  
  .sub-visual-title  {
    font-size: 3.6rem;
  }
}

@media(max-width:1024px) {
  .sub-visual {
    padding: 90px 0 50px;
  }
  
  .sub-navigation-inner {
    padding: 0 0 15px;
  }
  
  .sub-navigation-inner .home {
    margin-right: 15px;
    font-size: 1.4rem;
  }
  
  .sub-navigation-inner .line {
    height: 10px;
  }
  
  .sub-navigation-inner .depth {
    padding: 0 15px;
    font-size: 1.4rem;
  }
  
  .sub-navigation-inner .depth::after {
    transform: translateY(-50%);
    height: 10px;
  }
  
  .sub-visual-title  {
    font-size: 3.2rem;
  }
}

@media(max-width:768px) {
  .sub-visual {
    padding: 80px 0 45px;
  }
  
  .sub-navigation-inner .home {
    margin-right: 12px;
    font-size: 1.3rem;
  }
  
  .sub-navigation-inner .line {
    height: 10px;
  }
  
  .sub-navigation-inner .depth {
    padding: 0 12px;
    font-size: 1.3rem;
  }
  
  .sub-navigation-inner .depth::after {
    transform: translateY(-50%);
    height: 10px;
  }
  
  .sub-visual-title  {
    font-size: 2.8rem;
  }
}

@media(max-width:500px) {
  .sub-visual {
    padding: 70px 0 45px;
  }
  
  
  .sub-navigation-inner .home {
    margin-right: 10px;
    font-size: 1.2rem;
  }
  
  .sub-navigation-inner .line {
    height: 8px;
  }
  
  .sub-navigation-inner .depth {
    padding: 0 10px;
    font-size: 1.2rem;
  }
  
  .sub-navigation-inner .depth::after {
    transform: translateY(-50%);
    height: 8px;
  }
  
  .sub-visual-title  {
    font-size: 2.4rem;
  }
}
/* ----- E : Sub Visual ---- */
/* ----- S : Tab-nav ---- */
.tab-nav {
  border-bottom: 1px solid #bcbcbc;
}

.tab-nav-container {
  display: flex;
  align-items: center;
  max-width: 1430px;
  margin: 0 auto;
}

.tab-nav-item {
  position: relative;
  width: 200px;
  height: 46px;
}

.tab-nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #555;
}


.tab-nav-item.on::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #9cc813;
}

.tab-nav-item.on a {
  font-weight: 700;
  color: #074377;
}

@media(max-width:1200px){
  .tab-nav-item {
    width: 180px;
    height: 40px;
  }
  .tab-nav-item.on::after {
    width: 100%;
    height: 4px;
  }
}

@media(max-width:1024px){
  .tab-nav-item {
    width: 160px;
    height: 35px;
  }
  
  .tab-nav-item a {
    font-size: 1.6rem;
  }
  
  .tab-nav-item.on::after {
    width: 100%;
    height: 3px;
  }
}

@media(max-width:768px){
  .tab-nav-item {
    width: 50%;
  }
  
  .tab-nav-item a {
    font-size: 1.4rem;
    text-align: center;
  }
}

@media(max-width:500px){
  .tab-nav-item a {
    font-size: 1.2rem;
  }
}
/* ----- E : Tab-nav ---- */

/* ----- S : Common ---- */
.sec {
  padding: 160px 0 120px;
}

.sec-title {
  margin-top: -9px;
  text-align: center;
  font-size: 4.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.view .sec,
.solution .sec,
.component .sec,
.community .sec,
.contact .sec {
  padding-top: 80px;
}


@media(max-width:1200px) {
  .sec {
    padding: 140px 0 105px;
  }
  
  .sec-title {
    margin-top: -8px;
    font-size: 4rem;
  }
  
  .view .sec,
  .solution .sec,
  .component .sec,
  .community .sec,
  .contact .sec {
    padding-top: 70px;
  }
}

@media(max-width:1024px) {
  .sec {
    padding: 120px 0 90px;
  }
  
  .sec-title {
    margin-top: -7px;
    font-size: 3.6rem;
  }
  
  .view .sec,
  .solution .sec,
  .component .sec,
  .community .sec,
  .contact .sec {
    padding-top: 60px;
  }
}

@media(max-width:768px) {
  .sec {
    padding: 105px 0 80px;
  }
  
  .sec-title {
    margin-top: -6px;
    font-size: 3.2rem;
  }
  
  .view .sec,
  .solution .sec,
  .component .sec,
  .community .sec,
  .contact .sec {
    padding-top: 50px;
  }
}

@media(max-width:500px) {
  .sec {
    padding: 90px 0 70px;
  }
  
  .sec-title {
    margin-top: -5px;
    font-size: 2.8rem;
  }
  
  .view .sec,
  .solution .sec,
  .component .sec,
  .community .sec,
  .contact .sec {
    padding-top: 45px;
  }
}
/* ----- E : Common ---- */

/* ----- S : Story ---- */
.story .sec01 {
  padding-bottom: 0;
}

.story .sec01 .logo {
  position: relative;
  width: 480px;
  aspect-ratio: 6.666 / 1;
  margin: 0 auto 75px;
  overflow: hidden;
}

.story .sec01 .logo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.story .sec01 .txt {
  margin-bottom: 78px;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.333;
}

.story .sec01 .visual-area .bg {
  position: relative;
  max-width: 1080px;
  width: 56.25%;
  aspect-ratio: 2 / 1;
  margin: 0 auto;
  transition: all 1s ease;
}

.story .sec01 .visual-area .bg .img {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  background: url('/child/img/sub/company/story/sec01_visual.png'), center, no-repeat;
  background-size: cover;
}

.story .sec01 .visual-area .visual-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.story .sec01 .visual-area .visual-txt span {
  font-weight: 700;
}

.story .sec01 .visual-area .visual-txt01 {
  width: 100%;
  font-size: 4rem;
  letter-spacing: -0.02em;
  line-height: 1.6;
  transition: all .8s ease;
}

.story .sec01 .visual-area .visual-txt02 {
  min-width: 735px;
  display: none;
  font-size: 5.6rem;
  line-height: 1.428;
  letter-spacing: -0.02em;
  transition: all .5s ease;
  transition-delay: 1s;
}

.story .sec01 .visual-area .visual-txt02 p {
  opacity: 0;
  transform: translateY(100%);
  transition: all .5s ease;
  transition-delay: 1s;
}

.story .sec01 .visual-area.on .bg {
  max-width: 100%;
  width: 100%;
}

.story .sec01 .visual-area.on .visual-txt01 {
  display: none;
}

.story .sec01 .visual-area.on .visual-txt02 {
  display: block;
}

.story .sec01 .visual-area.on .visual-txt02 p {
  opacity: 1;
  transform: translateY(0);
}

.story .sec02 .sec-title {
  margin-bottom: 70px;
}

.story .sec02 .history {
  position: relative;
}

.story .sec02 .his-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% - 267px);
  background-color: #7b7b7b;
}

.story .sec02 .his-box {
  display: flex;
  align-items: center;
  gap: 0 100px;
  margin-bottom: 76px;
  padding: 0 40px;
}

.story .sec02 .his-box:last-of-type {
  margin-bottom: 0;
}

.story .sec02 .his-box-even {
  flex-direction: row-reverse;
}

.story .sec02 .his-box > div {
  width: 50%;
  /* padding: 0 40px; */
}

.story .sec02 .his-box .lt {
  padding-left: 40px;
}

.story .sec02 .his-box .rt  {
  max-width: 560px;
}

.story .sec02 .his-box .rt .img {
  position: relative;
  width: 100%;
  aspect-ratio: 1.33 / 1;
}

.story .sec02 .his-box .rt .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.story .sec02 .his-box-even .lt {
  padding-left: 140px;
}

.story .sec02 .his-year {
  position: relative;
  margin-bottom: 19px;
}

.story .sec02 .his-year p {
  display: flex;
  align-items: center;
  font-size: 4.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #074377;
}

.story .sec02 .his-year p::after {
  content: "";
  display: block;
  margin-left: 40px;
  width: 120px;
  height: 1px;
  background-color: #7b7b7b;
}

.story .sec02 .his-year .pin {
  position: absolute;
  top: calc(50% - 12px);
  right: 0;
  transform: translateX(50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #9cc813;
}

.story .sec02 .his-box-even .his-year .pin {
  left: -140px;
  transform: translateX(-50%);
}

.story .sec02 .his-con p {
  position: relative;
  padding-left: 15px;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.8;
}

.story .sec02 .his-con p::before {
  content: "·";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-size: inherit;
  font-weight: 900;
  color: #9cc813;
}

.story .sec02 .his-box.aos-animate .pin {
  animation: pinAni 1.4s infinite;
  animation-delay: .2s;
}

@keyframes pinAni {
  0% {
    box-shadow: 0 0 0 0px rgba(156, 200, 19, 1);
  }
  99% {
    box-shadow: 0 0 0 8px rgba(156, 200, 19, 0.1);
  }
  100% {
    box-shadow: 0 0 0 8px rgba(156, 200, 19, 0);
  }
}

@media(max-width:1330px) {
  .story .sec02 .his-year .pin {
    right: -49px;
  }
  
  .story .sec02 .his-box-even .his-year .pin {
    left: -183px;
  }
}

@media(max-width:1200px) {
  .story .sec01 .logo {
    width: 430px;
    margin: 0 auto 65px;
  }
  
  .story .sec01 .txt {
    margin-bottom: 70px;
    font-size: 2.2rem;
  }
  
  .story .sec01 .visual-area .bg {
    width: 65%;
  }

  .story .sec01 .visual-area .visual-txt01 {
    font-size: 3.6rem;
  }
  
  .story .sec01 .visual-area .visual-txt02 {
    min-width: 735px;
    font-size: 4.8rem;
  }
  
  .story .sec02 .sec-title {
    margin-bottom: 60px;
  }
  
  .story .sec02 .his-line {
    width: 2px;
    height: 90.5%;
  }

  .story .sec02 .his-box {
    gap: 0 90px;
    margin-bottom: 65px;
    padding: 0;
  }

  .story .sec02 .his-box:last-of-type {
    margin-bottom: 0;
  }

  .story .sec02 .his-box > div {
    width: 50%;
  }

  .story .sec02 .his-box .lt {
    padding-left: 35px;
  }

  .story .sec02 .his-box .rt .img {
    aspect-ratio: 1.33 / 1;
  }

  .story .sec02 .his-box-even .lt {
    padding-left: 35px;
  }

  .story .sec02 .his-year p {
    font-size: 4.4rem;
  }

  .story .sec02 .his-year p::after {
    margin-left: 35px;
    width: 105px;
    height: 1px;
  }

  .story .sec02 .his-year .pin {
    right: -44px;
    width: 18px;
    height: 18px;
  }

  .story .sec02 .his-box-even .his-year .pin {
    left: -79px;
  }

}

@media(max-width:1024px) {
  .story .sec01 .logo {
    width: 370px;
    margin: 0 auto 55px;
  }
  
  .story .sec01 .txt {
    margin-bottom: 60px;
    font-size: 2rem;
  }
  
  .story .sec01 .visual-area .visual-txt01 {
    font-size: 3.2rem;
  }
  
  .story .sec01 .visual-area .visual-txt02 {
    min-width: 590px;
    font-size: 4.2rem;
  }
  
  .story .sec02 .sec-title {
    margin-bottom: 50px;
  }
  
  .story .sec02 .his-line {
    width: 2px;
    height: 86.5%;
  }

  .story .sec02 .his-box {
    gap: 0 80px;
    margin-bottom: 55px;
    align-items: start;
  }

  .story .sec02 .his-box:last-of-type {
    margin-bottom: 0;
  }

  .story .sec02 .his-box .lt {
    padding-left: 30px;
  }

  .story .sec02 .his-box .rt .img {
    aspect-ratio: 1.33 / 1;
  }

  .story .sec02 .his-box-even .lt {
    padding-left: 30px;
  }

  .story .sec02 .his-year {
    margin-bottom: 15px;
  }

  .story .sec02 .his-year p {
    font-size: 4rem;
  }

  .story .sec02 .his-year p::after {
    margin-left: 30px;
    width: 90px;
    height: 1px;
  }

  .story .sec02 .his-year .pin {
    right: -39px;
    width: 16px;
    height: 16px;
  }

  .story .sec02 .his-box-even .his-year .pin {
    left: -69px;
  }

  .story .sec02 .his-con p {
    padding-left: 15px;
    font-size: 1.8rem;
  }
}

@media(max-width:768px) {
  .story .sec01 .logo {
    width: 320px;
    margin: 0 auto 45px;
  }
  
  .story .sec01 .txt {
    margin-bottom: 50px;
    font-size: 1.8rem;
  }
  
  .story .sec01 .visual-area .bg {
    width: 68%;
    aspect-ratio: 1 / 1;
  }
  
  .story .sec01 .visual-area .visual-txt01 {
    font-size: 2.6rem;
  }
  
  .story .sec01 .visual-area .visual-txt02 {
    min-width: 500px;
    font-size: 3.4rem;
  }
  
  .story .sec02 .sec-title {
    margin-bottom: 45px;
  }
  
  
  .story .sec02 .his-line {
    width: 1px;
    left: 0;
    height:100%;
  }

  .story .sec02 .his-box {
    flex-direction: column-reverse;
    align-items: start;
    gap: 20px 0;
    margin-bottom: 45px;
    padding-left: 15px;
  }

  .story .sec02 .his-box:last-of-type {
    margin-bottom: 0;
  }

  .story .sec02 .his-box > div {
    width: 100%;
  }

  .story .sec02 .his-box .lt,
  .story .sec02 .his-box-even .lt {
    padding-left: 25px;
  }

  .story .sec02 .his-box .rt {
    max-width: 100%;
  }
  
  .story .sec02 .his-box .rt .img {
    aspect-ratio: 6 / 1;
    overflow: hidden;
  }

  .story .sec02 .his-box .rt .img img {
    height: auto;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
  }

  .story .sec02 .his-year {
    margin-bottom: 12px;
  }

  .story .sec02 .his-year p {
    font-size: 3.6rem;
  }

  .story .sec02 .his-year p::after {
    margin-left: 25px;
    width: 80px;
  }

  .story .sec02 .his-year .pin {
    right: auto;
    left: -54px;
    width: 14px;
    height: 14px;
  }

  .story .sec02 .his-box-even .his-year .pin {
    left: -40px;
  }

  .story .sec02 .his-con p {
    padding-left: 12px;
    font-size: 1.6rem;
  }
  
}

@media(max-width:500px) {
  .story .sec01 .logo {
    width: 250px;
    margin: 0 auto 40px;
  }
  
  .story .sec01 .txt {
    margin-bottom: 45px;
    font-size: 1.6rem;
  }
  
  .story .sec01 .visual-area .bg {
    width: 75%;
  }
  
  .story .sec01 .visual-area .visual-txt01 {
    font-size: 1.8rem;
  }
  
  .story .sec01 .visual-area .visual-txt02 {
    min-width: 330px;
    font-size: 2.4rem;
  }
  
  .story .sec02 .sec-title {
    margin-bottom: 40px;
  }
  

  .story .sec02 .his-box {
    gap: 15px 0;
    margin-bottom: 40px;
    padding-left: 10px;
  }

  .story .sec02 .his-box:last-of-type {
    margin-bottom: 0;
  }

  .story .sec02 .his-box .lt,
  .story .sec02 .his-box-even .lt {
    padding-left: 20px;
  }

  .story .sec02 .his-year {
    margin-bottom: 10px;
  }

  .story .sec02 .his-year p {
    font-size: 3rem;
  }

  .story .sec02 .his-year p::after {
    margin-left: 20px;
    width: 70px;
  }

  .story .sec02 .his-year .pin {
    top: calc(50% - 7px);
    right: auto;
    left: -40px;
    width: 10px;
    height: 10px;
  }

  .story .sec02 .his-box-even .his-year .pin {
    left: -30px;
  }

  .story .sec02 .his-con p {
    padding-left: 10px;
    font-size: 1.4rem;
  }
  
}

/* ----- E : Story ---- */

/* ----- S : Mission ---- */
.mission .sec01 .sec-title {
  margin-bottom: 70px;
}

.mission .sec01 .container {
  display: flex;
  align-items: start;
  gap: 0 40px;
}

.mission .sec01 .con {
  width: 50%;
  overflow: hidden;
}

.mission .sec01 .con .box {
  position: relative;
  width: 100%;
  aspect-ratio: 1.0625 / 1;
  padding: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}

.mission .sec01 .con .box01 {
  background-image: url('/child/img/sub/company/mission/sec01_img01.png');
}

.mission .sec01 .con .box02 {
  background-image: url('/child/img/sub/company/mission/sec01_img02.png');
}

.mission .sec01 .con .box::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 2px solid #a9a9a9;
  transition: all .3s ease-in;
}

.mission .sec01 .con .more-btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, 50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #fff;
  transition: all .3s ease-in;
  cursor: pointer;
}

.mission .sec01 .con .more-btn span {
  position: absolute;
  width: 24px;
  height: 24px;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/child/img/sub/company/mission/sec01_more.png');
}

.mission .sec01 .con .text {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all .4s ease-in;
}

.mission .sec01 .con .text p {
  font-size: 4rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #fff;
  text-align: center;
}

.mission .sec01 .con .text span {
  font-weight: 700;
}

.mission .sec01 .con.on .text {
  transform: translateY(0);
}

.mission .sec01 .con.on .more-btn {
  display: none;
}

.mission .sec01 .con.on .box::after {
  display: none;
}

@media(max-width:1200px) {
  .mission .sec01 .sec-title {
    margin-bottom: 60px;
  }
  
  .mission .sec01 .container {
    gap: 0 35px;
  }
  
  .mission .sec01 .con .box {
    aspect-ratio: 1.0625 / 1;
    padding: 10px;
  }
  
  .mission .sec01 .con .box::after {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 2px solid #a9a9a9;
  }
  
  .mission .sec01 .con .more-btn {
    width: 105px;
    height: 105px;
  }
  
  .mission .sec01 .con .more-btn span {
    width: 22px;
    height: 22px;
    top: 25px;
  }
  
  .mission .sec01 .con .text p {
    font-size: 3.4rem;
  }
}

@media(max-width:1024px) {
  .mission .sec01 .sec-title {
    margin-bottom: 50px;
  }
  
  .mission .sec01 .container {
    gap: 0 30px;
  }

  .mission .sec01 .con .box {
    aspect-ratio: 1.0625 / 1;
    padding: 10px;
  }
  
  .mission .sec01 .con .box::after {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 2px solid #a9a9a9;
  }
  
  .mission .sec01 .con .more-btn {
    width: 90px;
    height: 90px;
  }
  
  .mission .sec01 .con .more-btn span {
    width: 20px;
    height: 20px;
    top: 20px;
  }
  
  .mission .sec01 .con .text p {
    font-size: 2.8rem;
  }
}

@media(max-width:768px) {
  .mission .sec01 .sec-title {
    margin-bottom: 0;
    width: 120px;
  }
  
  .mission .sec01 .container {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 30px 0;
  }
  
  .mission .sec01 .con {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    overflow: hidden;
  }
  
  .mission .sec01 .con .box {
    position: relative;
    aspect-ratio: 1 / 0.5;
    width: calc(100% - 200px);
    padding: 8px;
  }
  
  .mission .sec01 .con .box::after {
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    border: 1px solid #a9a9a9;
  }
  
  .mission .sec01 .con .more-btn {
    position: absolute;
    top: 50%;
    left: 0;
    transform: rotate(90deg) translate(-50%, 50%);
    width: 80px;
    height: 80px;
  }
  
  .mission .sec01 .con .more-btn span {
    width: 16px;
    height: 16px;
    top: 25px;
  }
  
  .mission .sec01 .con .text p {
    font-size: 2.2rem;
  }
}

@media(max-width:500px) {
  .mission .sec01 .sec-title {
    width: 100%;
    margin-bottom: 25px;
  }
  
  .mission .sec01 .container {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 50px 0;
  }
  
  .mission .sec01 .con {
    display: block;
    width: 100%;
    overflow: hidden;
  }
  
  .mission .sec01 .con .box {
    position: relative;
    aspect-ratio: 1.5 / 1;
    width: 100%;
    padding: 6px;
  }
  
  .mission .sec01 .con .box::after {
    width: calc(100% - 12px);
    height: calc(100% - 12px);
  }
  
  .mission .sec01 .con .more-btn {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: rotate(0) translate(-50%, 50%);
    width: 70px;
    height: 70px;
  }
  
  .mission .sec01 .con .more-btn span {
    width: 15px;
    height: 15px;
    top: 17px;
  }
  
  .mission .sec01 .con .text p {
    font-size: 2rem;
  }
}
/* ----- E : Mission ---- */

/* ----- S : Certificate ---- */
.certificate .sec01 {
  min-height: 1030px;
}

@media(max-width:1200px) {
  .certificate .sec01 {
    min-height: 830px;
  }
}

@media(max-width:1024px) {
  .certificate .sec01 {
    min-height: 730px;
  }
}

@media(max-width:768px) {
  .certificate .sec01 {
    min-height: 530px;
  }
}
/* ----- E : Certificate ---- */

/* ----- S : Agentship ---- */
/* ----- E : Agentship ---- */

/* ----- S : Brand ---- */
.brand .sec01  {
  padding-bottom: 80px;
}

.brand .sec02  {
  padding-top:0;
}

.brand .sec01 .logo {
  position: relative;
  width: 335px;
  aspect-ratio: 5.234 / 1;
  margin: 0 auto 81px;
}

.brand .logo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.brand .sec01 .logo img {
  background-image: url('/child/img/sub/brand/sec01_logo.png');
}

.brand .sec02 .logo {
  position: relative;
  width: 432px;
  aspect-ratio: 6.75 / 1;
  margin: 0 auto 81px;
}

.brand .sec02 .logo img {
  background-image: url('/child/img/sub/brand/sec02_logo.png');
}

.brand .sec01 .img {
  display: flex;
  align-items: start;
  gap: 0 40px;
  margin-top: 68px;
}

.brand .sec01 .img .box {
  position: relative;
  width: 100%;
  aspect-ratio: 1.545 / 1;
  overflow: hidden;
}

.brand .sec01 .img .box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.brand .sec01 .img .box::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  transition: all .5s ease-out;
  transition-delay: .15s;
  background-color: #fff;
}

.brand .sec01 .img .box:nth-of-type(2):after {
  transition-delay: .3s;
}

.brand .ideology {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1080px;
  width: 100%;
  aspect-ratio: 2.686 / 1;
  margin: 0 auto 74px;
}

.brand .ideology .bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/child/img/sub/brand/sec01_img.png');
}

.brand .ideology p {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px 0;
  position: relative;
  z-index: 1;
  width: 33.333%;
  height: 100%;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  text-align: center;
}

.brand .ideology p span {
  display: block;
  font-size: 2.4rem;
  font-weight: 500;
}

.brand .txt {
  font-size: 2.4rem;
  line-height: 1.33;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-align: center;
}

.brand .txt p {
  margin-bottom: 33px;
}

.brand .txt p:last-of-type {
  margin-bottom: 0;
}

.brand .sec02 .txt p:last-of-type {
  font-weight: 700;
}


.brand .txt em {
  font-style: normal;
  font-family: "NotoSansKR";
}

.brand .txt span {
  font-weight: 700;
  color: #074377;
}

.brand .txt i {
  font-style: normal;
  color: #9cc813;
}

.brand .img .box.aos-animate::after {
  top: -100%;
}

@media(max-width:1200px) {
  .brand .sec01  {
    padding-bottom: 70px;
  }
  
  .brand .sec02  {
    padding-top:0;
  }
  
  .brand .sec01 .logo {
    width: 300px;
    margin: 0 auto 70px;
  }

  .brand .sec02 .logo {
    width: 400px;
    margin: 0 auto 70px;
  }
  
  .brand .sec01 .img {
    gap: 0 25px;
    margin-top: 60px;
  }
  
  .brand .ideology {
    margin: 0 auto 65px;
  }
  
  .brand .ideology p {
    font-size: 3.2rem;
  }
  
  .brand .ideology p span {
    font-size: 2.2rem;
  }
  
  .brand .txt {
    font-size: 2.2rem;
  }
  
  .brand .txt p {
    margin-bottom: 30px;
  }
  
  .brand .txt p:last-of-type {
    margin-bottom: 0;
  }

}

@media(max-width:1024px) {
  .brand .sec01  {
    padding-bottom: 60px;
  }
  
  .brand .sec02  {
    padding-top:0;
  }
  
  .brand .sec01 .logo {
    width: 270px;
    margin: 0 auto 60px;
  }

  .brand .sec02 .logo {
    width: 340px;
    margin: 0 auto 60px;
  }
  
  .brand .sec01 .img {
    gap: 0 15px;
    margin-top: 50px;
  }
  
  .brand .ideology {
    margin: 0 auto 55px;
  }
  
  .brand .ideology p {
    gap: 14px 0;
    font-size: 2.8rem;
  }
  
  .brand .ideology p span {
    font-size: 2rem;
  }
  
  .brand .txt {
    font-size: 2rem;
  }
  
  .brand .txt p {
    margin-bottom: 25px;
  }
  
  .brand .txt p:last-of-type {
    margin-bottom: 0;
  }
}

@media(max-width:768px) {
  .brand .sec01  {
    padding-bottom: 50px;
  }
  
  .brand .sec02  {
    padding-top:0;
  }
  
  .brand .sec01 .logo {
    width: 220px;
    margin: 0 auto 50px;
  }

  .brand .sec02 .logo {
    width: 290px;
    margin: 0 auto 50px;
  }
  
  .brand .sec01 .img {
    gap: 0 10px;
    margin-top: 45px;
  }
  
  .brand .ideology {
    margin: 0 auto 45px;
  }
  
  .brand .ideology p {
    gap: 12px 0;
    font-size: 2.4rem;
  }
  
  .brand .ideology p span {
    font-size: 1.8rem;
  }
  
  .brand .txt {
    font-size: 1.8rem;
  }
  
  .brand .txt p {
    margin-bottom: 20px;
  }
  
  .brand .txt p:last-of-type {
    margin-bottom: 0;
  }

}

@media(max-width:500px) {
  .brand .sec01  {
    padding-bottom: 45px;
  }
  
  .brand .sec02  {
    padding-top:0;
  }
  
  .brand .sec01 .logo {
    width: 180px;
    margin: 0 auto 45px;
  }

  .brand .sec02 .logo {
    width: 230px;
    margin: 0 auto 45px;
  }
  
  .brand .sec01 .img {
    gap: 0 5px;
    margin-top: 40px;
  }
  
  .brand .ideology {
    margin: 0 auto 40px;
  }
  
  .brand .ideology p {
    gap: 10px 0;
    font-size: 1.8rem;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  }
  
  .brand .ideology p span {
    font-size: 1.6rem;
  }
  
  .brand .txt {
    font-size: 1.6rem;
  }
  
  .brand .txt p {
    margin-bottom: 15px;
  }
  
  .brand .txt p:last-of-type {
    margin-bottom: 0;
  }

}

@media(max-width:360px) {
  .brand .ideology p {
    gap: 8px 0;
    font-size: 1.6rem;
  }
  
  .brand .ideology p span {
    font-size: 1.4rem;
  }
  
  .brand .txt {
    font-size: 1.4rem;
  }

}
/* ----- E : Brand ---- */

/* ----- S : Product ---- */
.product .e-tab {
  display: flex;
  align-items: start;
  margin-bottom: 40px;
}

.product .e-tab-item {
  position: relative;
  width: 174px;
  height: 48px;
  background-color: #f9f9f9;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #556;
}

.product .e-tab-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.product .e-tab-item a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #a9a9a9;
  border-left: none;
  background-color: transparent;
}

.product .e-tab-item:first-of-type a::after {
  border-left: 1px solid #a9a9a9;
}

.product .e-tab-item.on {
  background-color: #074377;
  font-weight: 600;
  color: #fff;
}

.product .e-tab-item.on a::after {
  display: none;
}

@media(max-width:1200px) {
  .product .e-tab {
    margin-bottom: 35px;
  }
  
  .product .e-tab-item {
    width: 174px;
    height: 48px;
    font-size: 1.6rem;
  }
  
}

@media(max-width:1024px) {
  .product .e-tab {
    margin-bottom: 30px;
  }
  
  .product .e-tab-item {
    width: 174px;
    height: 45px;
    font-size: 1.4rem;
  }
  
}

@media(max-width:768px) {
  .product .e-tab {
    width: 100%;
    margin-bottom: 25px;
  }
  
  .product .e-tab-item {
    width: 25%;
    height: 40px;
    font-size: 1.3rem;
  }
  
}

@media(max-width:500px) {
  .product .e-tab {
    flex-wrap: wrap;
  }
  
  .product .e-tab-item:nth-of-type(1) a::after,
  .product .e-tab-item:nth-of-type(3) a::after {
    border-left: 1px solid #a9a9a9;
  }

  .product .e-tab-item:nth-of-type(2) a::after,
  .product .e-tab-item:nth-of-type(4) a::after {
    border-right: 1px solid #a9a9a9;
  }

  .product .e-tab-item:nth-of-type(1) a::after,
  .product .e-tab-item:nth-of-type(2) a::after {
    border-bottom: none;
  }
  
  .product .e-tab-item {
    width: 50%;
    height: 35px;
    font-size: 1.2rem;
  }
  
}
/* ----- E : Product ---- */

/* ----- S : Contact us ---- */
.contact .heading {
  margin: -4px 0 33px;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.33;
}

.contact .form-table {
  display: flex;
  align-items: start;
  gap: 0 80px;
  margin-bottom: 32px;
}

.contact .form-table02 {
  display: block;
}

.contact .form-table:last-of-type {
  margin-bottom: 0;
}

.contact .form-table .box {
  width: 50%;
}

.contact .form-table .row {
  display: flex;
  align-items: center;
  gap: 0 20px;
  width: 100%;
  padding: 23px 20px;
  margin-bottom: 32px;
  border-bottom: 1px solid #555;
}

.contact .form-table .row02 {
  align-items: start;
}

.contact .form-table02 .row02 {
  margin-bottom: 77px;
}

.contact .form-table .th {
  width: 100px;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.contact .form-table .th span {
  color: #fe2828;
  font-weight: 700;
}

.contact .form-table .td {
  width: calc(100% - 120px);
}


.contact .form-table .td  input {
  width: 100%;
  height: 100%;
  font-size: 2rem;
  letter-spacing: -0.02em;
}

.contact .form-table .td textarea {
  width: 100%;
  height: 160px;
  resize: none;
  overflow: auto;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
}

.contact .form-table .agree .th {
  width: 100%;
  margin-bottom: 18px;
}

.contact .form-table .agree-text {
  width: 100%;
  height: 200px;
  padding: 15px 20px;
  margin-bottom: 20px;
  overflow: auto;
  border: 1px solid #c9c9c9;
}

.contact .form-table .agree-text p {
  font-size: 1.8rem;
  line-height: 1.33;
  letter-spacing: -0.02em;
}

.contact .form-table label {
  position: relative;
  display: flex;
}

.contact .form-table label input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.contact .form-table label i {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  margin-top: 2px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/child/img/bbs/agree_check.png');
}

.contact .form-table label p {
  width: calc(100% - 28px);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.contact .form-table label input[type='checkbox']:checked ~ i {
  background-image: url('/child/img/bbs/agree_checked.png');
}

.contact .button--submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 56px;
  margin: 78px auto 0;
  background-color: #505050;
  border-radius: 10px;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}

@media(max-width:1200px) {
  .contact .heading {
    margin: -4px 0 30px;
    font-size: 2.2rem;
  }
  
  .contact .form-table {
    gap: 0 70px;
    margin-bottom: 30px;
  }
  
  .contact .form-table .row {
    gap: 0 20px;
    padding: 20px;
    margin-bottom: 25px;
  }
  
  .contact .form-table02 .row02 {
    margin-bottom: 70px;
  }
  
  .contact .form-table .th {
    width: 100px;
    font-size: 2rem;
  }
  
  .contact .form-table .td {
    width: calc(100% - 120px);
  }
  
  .contact .form-table .td  input {
    font-size: 2rem;
  }
  
  .contact .form-table .td textarea {
    height: 140px;
    font-size: 1.8rem;
  }
  
  .contact .form-table .agree .th {
    margin-bottom: 18px;
  }
  
  .contact .form-table .agree-text {
    height: 200px;
    padding: 15px 18px;
    margin-bottom: 20px;
  }
  
  .contact .form-table .agree-text p {
    font-size: 1.8rem;
  }
  
  .contact .form-table label i {
    width: 18px;
    height: 18px;
    margin-right: 10px;
  }
  
  .contact .form-table label p {
    width: calc(100% - 28px);
    font-size: 1.6rem;
  }
  
  .contact .button--submit {
    width: 370px;
    height: 50px;
    margin: 70px auto 0;
    font-size: 2rem;
  }
}

@media(max-width:1024px) {
  .contact .heading {
    margin: -3px 0 25px;
    font-size: 2rem;
  }
  
  .contact .form-table {
    gap: 0 60px;
    margin-bottom: 25px;
  }
  
  .contact .form-table .row {
    gap: 0 15px;
    padding: 15px;
    margin-bottom: 25px;
  }
  
  .contact .form-table02 .row02 {
    margin-bottom: 60px;
  }
  
  .contact .form-table .th {
    width: 80px;
    font-size: 1.8rem;
  }
  
  .contact .form-table .td {
    width: calc(100% - 95px);
  }
  
  .contact .form-table .td  input {
    font-size: 1.8rem;
  }
  
  .contact .form-table .td textarea {
    height: 120px;
    font-size: 1.6rem;
  }
  
  .contact .form-table .agree .th {
    margin-bottom: 15px;
  }
  
  .contact .form-table .agree-text {
    height: 180px;
    padding: 15px 15px;
    margin-bottom: 15px;
  }
  
  .contact .form-table .agree-text p {
    font-size: 1.6rem;
  }
  
  .contact .form-table label i {
    width: 15px;
    height: 15px;
    margin-right: 10px;
  }
  
  .contact .form-table label p {
    width: calc(100% - 25px);
    font-size: 1.4rem;
  }
  
  .contact .button--submit {
    width: 340px;
    height: 45px;
    margin: 60px auto 0;
    font-size: 1.8rem;
  }
}

@media(max-width:768px) {
  .contact .heading {
    margin: -2px 0 20px;
    font-size: 1.8rem;
  }
  
  .contact .form-table {
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
  }
  
  .contact .form-table .box {
    width: 100%;
  }
  
  .contact .form-table .row {
    gap: 0 10px;
    padding: 10px;
    margin-bottom: 25px;
  }
  
  .contact .form-table02 .row02 {
    margin-bottom: 60px;
  }
  
  .contact .form-table .th {
    width: 70px;
    font-size: 1.6rem;
  }
  
  .contact .form-table .td {
    width: calc(100% - 80px);
  }
  
  .contact .form-table .td  input {
    font-size: 1.6rem;
  }
  
  .contact .form-table .td textarea {
    height: 110px;
    font-size: 1.4rem;
  }
  
  .contact .form-table .agree .th {
    margin-bottom: 12px;
  }
  
  .contact .form-table .agree-text {
    height: 160px;
    padding: 12px;
    margin-bottom: 12px;
  }
  
  .contact .form-table .agree-text p {
    font-size: 1.4rem;
  }
  
  .contact .form-table label i {
    width: 12px;
    height: 12px;
    margin-right: 8px;
  }
  
  .contact .form-table label p {
    width: calc(100% - 20px);
    font-size: 1.3rem;
  }
  
  .contact .button--submit {
    width: 310px;
    height: 40px;
    margin: 50px auto 0;
    font-size: 1.6rem;
  }
}

@media(max-width:500px) {
  .contact .heading {
    margin: -1px 0 20px;
    font-size: 1.6rem;
  }
  
  .contact .form-table .row {
    flex-direction: column;
    align-items: start;
    gap: 10px 0;
    padding: 8px;
    margin-bottom: 20px;
  }
  
  .contact .form-table02 .row02 {
    margin-bottom: 50px;
  }
  
  .contact .form-table .th {
    width: 100%;
    font-size: 1.4rem;
  }
  
  .contact .form-table .td {
    width: 100%;
  }
  
  .contact .form-table .td  input {
    font-size: 1.4rem;
  }
  
  .contact .form-table .td textarea {
    height: 100px;
    font-size: 1.3rem;
  }
  
  .contact .form-table .agree .th {
    margin-bottom: 10px;
  }
  
  .contact .form-table .agree-text {
    height: 150px;
    padding: 10px;
    margin-bottom: 10px;
  }
  
  .contact .form-table .agree-text p {
    font-size: 1.3rem;
  }
  
  .contact .form-table label i {
    width: 10px;
    height: 10px;
    margin-right: 6px;
    margin-top: 2px;
  }
  
  .contact .form-table label p {
    width: calc(100% - 16px);
    font-size: 1.2rem;
  }
  
  .contact .button--submit {
    width: 280px;
    height: 35px;
    margin: 45px auto 0;
    font-size: 1.4rem;
  }
}
/* ----- E : Contact us ---- */

/* ----- S : Location ---- */
.location .sec01 {
  overflow: hidden;
}

.location .inner {
  position: relative;
  width: 100%;
  aspect-ratio: 2.666 /1;
  margin-bottom: 80px;
}

.location .inner .map {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.location .list {
  display: flex;
  align-items: start;
  justify-content: center;
}

.location .list li:first-of-type {
  width: 34.285%;
  padding-right: 12px;
}

.location .list li:nth-of-type(2) {
  width: 34.5%;
  padding-right: 5px;
}

.location .list li .tit {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}

.location .list li .tit i {
  position: relative;
  display: block;
  width: 36px;
  height: 36px;
  margin-right: 20px;
}

.location .list li .tit i img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.location .list li .tit p {
  width: calc(100% - 56px);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.location .list li .tit p span {
  display: block;
}

.location .list li .txt {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

/* 2024.12.12 추가 */
.custom_zoomcontrol {
  position: absolute;
  z-index: 10;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}

.custom_zoomcontrol .zoom-box {
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  border: 1px solid #7b7b7b;
  overflow: hidden;
}

.custom_zoomcontrol .zoom {
  display: block;
  position: relative;
  width: 35px;
  height: 35px;
  background-color: #fff;
  cursor: pointer;
}

.custom_zoomcontrol .zoom:first-of-type {
  border-bottom: 1px solid #7b7b7b;
}

.custom_zoomcontrol .zoom img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  transform: translate(-50%, -50%);
}


.custom_zoomcontrol .zoom.reset {
  border: 1px solid #7b7b7b;
  border-radius: 5px;
}
@media(max-width:1200px) {
  .location .inner {
    margin-bottom: 70px;
  }
  
  .location .list li .tit {
    margin-bottom: 30px;
  }
  
  .location .list li .tit i {
    width: 30px;
    height: 30px;
    margin-right: 20px;
  }
  
  .location .list li .tit p {
    width: calc(100% - 50px);
    font-size: 2.4rem;
  }
  
  .location .list li .txt br {
    display: none;
  }
}

@media(max-width:1024px) {
  .location .inner {
    margin-bottom: 60px;
  }
  
  .location .list {
    gap: 0 10px;
  }
  
  .location .list li .tit {
    margin-bottom: 25px;
  }
  
  .location .list li .tit i {
    width: 25px;
    height: 25px;
    margin-right: 20px;
  }
  
  .location .list li .tit p {
    width: calc(100% - 45px);
    font-size: 2.2rem;
  }
  
  .location .list li .txt {
    font-size: 1.8rem;
  }
}

@media(max-width:768px) {
  .location .inner {
    aspect-ratio: 1.5 / 1;
    margin-bottom: 50px;
  }
  
  .location .list {
    flex-direction: column;
    align-items: start;
    gap: 20px 0;
  }
 
  .location .list li {
    width: 100%;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
  }
  
  .location .list li:first-of-type {
    width: 100%;
    padding-right: 0;
  }

  .location .list li:nth-of-type(2) {
    width: 100%;
  }

  .location .list li .tit {
    margin: 0 0 10px;
  }
  
  /* .location .list li .tit i {
    width: 25px;
    height: 25px;
    margin-right: 20px;
  } */
  
  .location .list li .tit p {
    /* width: calc(100% - 45px); */
    font-size: 2rem;
  }
  
  .location .list li .txt {
    font-size: 1.6rem;
  }
  
  .custom_zoomcontrol  {
    gap: 6px 0;
  }
  
  .custom_zoomcontrol .zoom {
    width: 28px;
    height: 28px;
  }
}


@media(max-width:500px) {
  .location .inner {
    margin-bottom: 45px;
  }
  
  .location .list {
    flex-direction: column;
    align-items: start;
    gap: 15px 0;
  }
 
  .location .list li {
    padding-bottom: 15px;
  }
  
  .location .list li .tit {
    margin: 12px 0;
  }
  
  /* .location .list li .tit i {
    width: 25px;
    height: 25px;
    margin-right: 20px;
  } */
  
  .location .list li .tit p {
    /* width: calc(100% - 45px); */
    font-size: 1.8rem;
  }
  
  .location .list li .txt {
    font-size: 1.4rem;
  }
}
/* ----- E : Location ---- */