@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600;1,700&display=swap');


:root {
    font-size: 22px;
    line-height: 1.3;
}

* {
    font-family: 'SUIT', 'Noto Sans KR', 'Apple Gothic', 'Apple SD Gothic Neo', '돋움', 'Dotum', '바탕', 'Batang', 'sans-serif';
    color: #121212;
}

.sound-only {
    position: absolute;
    left: -999px;
    width: 0;
    height: 0;
    text-indent: -999px;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}

body.stop-scroll {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: fixed;
}

.serif {
    font-family: 'Noto Serif Display', serif;
}

section {
    min-height: 100vh;
    position: relative;
}

button {
    border: none;
    font-size: 18px;
    font-weight: 600;
    background-color: transparent;
}
.notice p{
    color: white;
    margin-top: 30px;
    font-size: 18px;
}

.history-title {
    font-size: 60px;
    left: 20%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

/* 애니메이션 */
@-webkit-keyframes ani_fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animated {
    visibility: hidden;
    animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
}

.animated.delay-1s {
    -webkit-animation-delay: .1s;
    animation-delay: .1s;
}

.animated.delay-2s {
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}

.animated.delay-3s {
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}

.animated.delay-4s {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}

.animated.delay-5s {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

.fadeInUp {
    visibility: visible;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}



/*header*/
header {
    width: 100%;
    position:fixed;
    background: white;
    top: 0;
    z-index: 12;
}
header.active{
    background: transparent;
}
header.active::after {
    content: '';
    top: 0;
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: -1;
    background: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0))
}

header .inner {
    width: 1600px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    height: 100px;
    align-items: center;
}

header .gnb-menu .depth01 {
    display: flex;
}

header .gnb-menu .depth01>li {
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

header .gnb-menu .depth01>li>a {
    font-size: 18px;
    font-weight: 600;
    display: block;
    padding: 38px 20px;
}

header .gnb-menu .depth01>li:hover>a {
    font-weight: bold;
}

header .gnb-menu .depth01>li.active>a {
    font-weight: bold;
    position: relative;
}

header .gnb-menu .depth01>li.active>a::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #004DD8;
}

header .gnb-menu .depth02 {
    width: 100%;
    display: none;
    top: 100px;
    position: absolute;
}

header .gnb-menu .depth02 li a {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
    margin-left: 58px;
}

.eng header .gnb-menu .depth01 li:nth-of-type(1) .depth02 li a {
    margin-left: 48px;
}

.eng header .gnb-menu .depth01 li:nth-of-type(3) .depth02 li a {
    margin-left: 52px;
}

.eng header .gnb-menu .depth01 li:nth-of-type(4) .depth02 li a {
    margin-left: 70px;
}

header .gnb-menu .depth01 li:nth-of-type(4) .depth02 li a {
    margin-left: 64px;
}

header .gnb-menu .depth01>li:last-of-type {
    width: auto;
    padding-left: 40px;
}

.eng header .gnb-menu .depth01>li:nth-of-type(2) {
    width: 194px;
}

.eng header.active .gnb-menu .depth01>li:nth-of-type(2) {
    width: 194px;
}

.eng header .gnb-menu .depth01>li:last-of-type {
    width: auto;
}


header .gnb-menu .depth02 li a:hover {
    color: #004DD8;
}

header .gnb-menu .depth01>li.shop>a {
    border: 1px solid black;
    border-radius: 20px;
    padding: 8px 16px;
    margin: 28px 0;
    font-weight: bold;
}

header .gnb-menu .depth01>li.shop>a:hover {
    color: white;
    background-color: #004DD8;
    border: 1px solid #004DD8;
}

header .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    width: 20px;
    height: 14px;
    justify-content: space-between;
    margin-top: 20px;
    display: none;
}

header .mobile-menu-btn div {
    width: 20px;
    height: 2px;
    background-color: #121212;
}

header .mobile-menu-btn div:nth-of-type(2) {
    width: 16px;
}

header .language .current {
    width: 100%;
    height: 100px;
    position: relative;
    padding-right: 20px;
    color: white;
}

header .language .current a {
    color: white;
}

header.active .language .current a,
header.no-fix .language .current a {
    color: #121212;
}

header .language .current svg {
    position: absolute;
    right: -6px;
    width: 22px;
    left: auto;
    top: 50%;
    transform: translate(0, -50%);
}

header .language .current svg rect {
    fill: white;
}

header.active .language .current svg rect,
header.no-fix .language .current svg rect {
    fill: #121212;
}

header .language .lang-option {
    display: none;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 63%;
    transform: translateX(-50%);
    text-align: center;
}

header .language .lang-option.active {
    display: block;
}

header.active .language .lang-option a,
header.no-fix .language .lang-option a {
    font-size: 18px;
    font-weight: 600;
    color: #121212;
}

header .language .lang-option a {
    font-size: 18px;
    font-weight: 600;
    color: white;
}

/*visual*/

.visual {
    width: 100%;
    height: calc(var(--vh, 1vh) * 100);
    transition: 1s;
    position: relative;
}

.visual .text-sect {
    width: 100%;
    height: 50%;
    position: relative;
}
.visual.ceo .text-sect {
    height: 50vh;
}
.visual .page-navi {
    position: absolute;
    bottom: 164px;
    left: 50%;
    transform: translateX(-50%);
}

.visual .page-navi .navi-list {
    display: flex;
}

.visual .page-navi .navi-list li {
    font-size: 18px;
    color: #646464;
    margin-right: 45px;
    position: relative;
}

.visual .page-navi .navi-list li::after {
    content: '';
    position: absolute;
    right: -25px;
    top: 8px;
    background: #cfcfcf;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.visual .page-navi .navi-list li:last-of-type {
    font-weight: 600;
    margin-right: 0;
}

.visual .page-navi .navi-list li:last-of-type::after {
    display: none;
}

.visual .page-title {
    font-size: 72px;
    font-weight: bold;
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 56px;
    line-height: 1.2;
}

.visual .img-sect {
    width: 100%;
    height: 50%;
    background-color: #121212;
    position: relative;
}

.visual .img-sect.ceo {
    height: 100vh;
    position: sticky;
    top: 0;
    background-image: url(../img/company/ceo-img.jpg);
    background-size: cover;
    z-index: -1;
}

.visual .img-sect.product-info {
    background-image: url(../img/productinfo/productinfo-visual.jpg);
    background-size: cover;
    background-position: center;
}
.email-policy.visual .text-sect{
    height: 500px;
}
.email-policy.visual .page-title{
    bottom: 560px;
}


.visual.ceo .scroll-bar-sect {
    bottom: -50vh;
}

.visual.ceo .ceo-title {
    position: absolute;
    bottom: -30vh;
    color: white;
    font-size: 54px;
    line-height: 1.3;
    text-align: center;
    left: 58%;
}

.visual.ceo .text-area {
    width: 1600px;
    margin: 0 auto;
}

.visual.ceo .ceo-text {
    color: white;
    line-height: 1.4;
    text-align: right;
}

.visual.ceo .ceo-text .bold {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-top: 100px;
    display: inline-block;
}

.visual .scroll-bar-sect {
    width: 2px;
    height: 195px;
    background-color: rgba(255, 255, 255, .5);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.visual .scroll-bar {
    width: 2px;
    height: 100px;
    background-color: white;
    position: absolute;
    z-index: 2;
    animation: scroll-bar-ani 1s linear alternate infinite;
}

@keyframes scroll-bar-ani {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(95px);
    }
}

.blue-color {
    color: #004DD8;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.cont-inner .section-title {
    font-size: 60px;
    font-weight: bold;
    text-align: center;
    display: block;
    margin-bottom: 60px;
}

.img-sect.history,
.img-sect.biz,
.img-sect.location,
.img-sect.cert,
.img-sect.living,
.img-sect.gym,
.img-sect.aqua,
.img-sect.rescue,
.img-sect.iot,
.img-sect.blog,
.img-sect.notice,
.img-sect.faq,
.img-sect.buyer {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}


.img-sect.history {
    background: url('../img/company/sub_visual_history.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.img-sect.biz {
    background: url('../img/company/sub_visual_biz.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.img-sect.location {
    background: url('../img/company/sub_visual_location.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.img-sect.cert {
    background: url('../img/company/sub_visual_cert.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.img-sect.living {
    background: url('../img/product/sub_visual_living.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.img-sect.gym {
    background: url('../img/product/sub_visual_gym.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.img-sect.aqua {
    background: url('../img/product/sub_visual_aqua.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.img-sect.rescue {
    background: url('../img/product/sub_visual_rescue.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.img-sect.iot {
    background: url('../img/product/sub_visual_iot.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.img-sect.blog {
    background: url('../img/blog/sub_visual_blog.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.img-sect.notice {
    background: url('../img/support/sub_visual_notice.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.img-sect.faq {
    background: url('../img/support/sub_visual_faq.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.img-sect.buyer {
    background: url('../img/support/sub_visual_buyer.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* ceo */
.visual.ceo {
    height: 230vh;
}

.eng .visual.ceo {
    height: 245vh;
}

.contents.ceo {
    background-color: #f6f6f6;
    height: auto;
    margin: 0;
    padding: 160px 0;
}

.contents.ceo .video {
    width: 100%;
    height: auto;
    min-height: auto;
}

.ceo .video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0px;
    height: 0;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.ceo .inner {
    width: 1280px;
    margin: 0 auto;
    height: 100%;

}

.ceo .inner video {
    width: 100%;
    height: 900px;
    background-color: #222;
}

.ceo .ceo-name {
    color: white;
    margin-top: 80px;
    font-size: 24px;
    margin-left: auto;
    display: inline-block;
}

.ceo .name-sect {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.ceo .ceo-name .bold {
    color: white;
    font-weight: bold;
}

.ceo .signature {
    width: 230px;
    margin-left: 40px;
    margin-top: 50px;
    display: block;
}
.ceo .signature.black{
    display: none;
}
/*contents*/
.contents {
    min-height: 50vh;
}

.eng .search-box input[type=search] {
    width: 316px
}

.sub-sect-title {
    font-size: 60px;
    font-weight: bold;
    line-height: 1.3;
}

.sub-sect-txt {
    font-size: 22px;
    margin-top: 26px;
    line-height: 1.5;
}

.drop-stitch {
    display: flex;
    align-items: center;
    background-color: #000;

}
.drop-stitch .inner{
    width: 100%;
}
.drop-stitch .text-sect {
    width: 1600px;
    margin: 0 auto;
}

.drop-stitch .text-sect .sub-sect-title {
    color: white;
}

.drop-stitch .text-sect .sub-sect-txt {
    color: white;
}

.eng .drop-stitch .text-sect .sub-sect-txt {
    width: 500px;
}

.drop-stitch .text-sect .real-img {
    width: 327px;
    padding: 15px;
    border: 1px solid white;
    margin-bottom: 167px;
    position: relative;
    display: block;
}

.drop-stitch .text-sect .real-img::after {
    content: '';
    width: 2px;
    height: 196px;
    background-color: white;
    position: absolute;
    bottom: -140px;
    left: 50%;
    transform: translateX(-50%);
}

.drop-stitch .img-sect {
    height: 100vh;
    width: 1158px;
    position: absolute;
    top: 0;
    right: 0;
    background: url(../img/company/blue-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: 3;
}

.drop-stitch .img-sect>svg,
.drop-stitch .img-sect>img {
    position: absolute;
    opacity: 0;
    transform: translateY(30px);
}

.drop-stitch.on .img-sect>svg,
.drop-stitch.on .img-sect>img {
    opacity: 1;
    transform: translateY(0px);
}

.drop-stitch .img-sect img:nth-of-type(1) {
    top: 47%;
    left: 20%;
    transition: 2s;
}

.drop-stitch .img-sect img:nth-of-type(2) {
    top: 37%;
    left: 27%;
    transition: 2s .3s;
}

.drop-stitch .img-sect img:nth-of-type(3) {
    top: 41%;
    left: 35%;
    transition: 2s .6s;
}

.drop-stitch .img-sect svg {
    top: 33%;
    left: 40%;

}

.drop-stitch .img-sect svg rect {
    opacity: 0;
    width: 0;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(105) {
    opacity: 1;
    width: 991.111px;
    transition: 3s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(104) {
    opacity: 1;
    width: 991.111px;
    transition: 3s .1s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(103) {
    opacity: 1;
    width: 991.111px;
    transition: 3s .2s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(102) {
    opacity: 1;
    width: 991.111px;
    transition: 3s .3s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(101) {
    opacity: 1;
    width: 991.111px;
    transition: 3s .4s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(100) {
    opacity: 1;
    width: 991.111px;
    transition: 3s .5s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(99) {
    opacity: 1;
    width: 991.111px;
    transition: 3s .6s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(98) {
    opacity: 1;
    width: 991.111px;
    transition: 3s .7s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(97) {
    opacity: 1;
    width: 991.111px;
    transition: 3s .8s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(96) {
    opacity: 1;
    width: 991.111px;
    transition: 3s .9s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(95) {
    opacity: 1;
    width: 991.111px;
    transition: 3s 1s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(94) {
    opacity: 1;
    width: 991.111px;
    transition: 3s 1.1s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(93) {
    opacity: 1;
    width: 991.111px;
    transition: 3s 1.2s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(92) {
    opacity: 1;
    width: 991.111px;
    transition: 3s 1.3s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(91) {
    opacity: 1;
    width: 991.111px;
    transition: 3s 1.4s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(90) {
    opacity: 1;
    width: 991.111px;
    transition: 3s 1.5s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(89) {
    opacity: 1;
    width: 991.111px;
    transition: 3s 1.6s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(88) {
    opacity: 1;
    width: 991.111px;
    transition: 3s 1.7s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(87) {
    opacity: 1;
    width: 991.111px;
    transition: 3s 1.8s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(86) {
    opacity: 1;
    width: 991.111px;
    transition: 3s 1.9s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(85) {
    opacity: 1;
    width: 991.111px;
    transition: 3s 2s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(84) {
    opacity: 1;
    width: 991.111px;
    transition: 3s 2.1s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(83) {
    opacity: 1;
    width: 991.111px;
    transition: 3s 2.2s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(82) {
    opacity: 1;
    width: 991.111px;
    transition: 3s 2.3s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(81) {
    opacity: 1;
    width: 991.111px;
    transition: 3s 2.4s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(80) {
    opacity: 1;
    width: 991.111px;
    transition: 3s 2.5s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(79) {
    opacity: 1;
    width: 991.111px;
    transition: 3s 2.6s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(78) {
    opacity: 1;
    width: 991.111px;
    transition: 3s 2.7s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(77) {
    opacity: 1;
    width: 991.111px;
    transition: 3s 2.8s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(76) {
    opacity: 1;
    width: 991.111px;
    transition: 3s 2.9s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(75) {
    opacity: 1;
    width: 991.111px;
    transition: 3s 3s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(74) {
    opacity: 1;
    width: 991.111px;
    transition: 3s 3.1s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(73) {
    opacity: 1;
    width: 991.111px;
    transition: 3s 3.2s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(72) {
    opacity: 1;
    width: 991.111px;
    transition: 3s 3.3s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(71) {
    opacity: 1;
    width: 991.111px;
    transition: 3s 3.4s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(70) {
    opacity: 1;
    width: 991.111px;
    transition: 3s 3.5s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(69) {
    opacity: 1;
    width: 991.111px;
    transition: 3s 3.6s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(68) {
    opacity: 1;
    width: 991.111px;
    transition: 3s 3.7s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(67) {
    opacity: 1;
    width: 991.111px;
    transition: 3s 3.8s;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(66) {
    opacity: 1;
    transition: 3s 3.9s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(65) {
    opacity: 1;
    transition: 3s 4s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(64) {
    opacity: 1;
    transition: 3s 4.1s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(63) {
    opacity: 1;
    transition: 3s 4.2s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(62) {
    opacity: 1;
    transition: 3s 4.3s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(61) {
    opacity: 1;
    transition: 3s 4.4s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(60) {
    opacity: 1;
    transition: 3s 4.5s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(59) {
    opacity: 1;
    transition: 3s 4.6s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(58) {
    opacity: 1;
    transition: 3s 4.7s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(57) {
    opacity: 1;
    transition: 3s 4.8s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(56) {
    opacity: 1;
    transition: 3s 4.9s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(55) {
    opacity: 1;
    transition: 3s 5s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(54) {
    opacity: 1;
    transition: 3s 5.1s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(53) {
    opacity: 1;
    transition: 3s 5.2s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(52) {
    opacity: 1;
    transition: 3s 5.3s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(51) {
    opacity: 1;
    transition: 3s 5.4s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(50) {
    opacity: 1;
    transition: 3s 5.5s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(49) {
    opacity: 1;
    transition: 3s 5.6s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(48) {
    opacity: 1;
    transition: 3s 5.7s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(47) {
    opacity: 1;
    transition: 3s 5.8s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(46) {
    opacity: 1;
    transition: 3s 5.9s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(45) {
    opacity: 1;
    transition: 3s 6s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(44) {
    opacity: 1;
    transition: 3s 6.1s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(43) {
    opacity: 1;
    transition: 3s 6.2s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(42) {
    opacity: 1;
    transition: 3s 6.3s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(41) {
    opacity: 1;
    transition: 3s 6.4s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(40) {
    opacity: 1;
    transition: 3s 6.5s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(39) {
    opacity: 1;
    transition: 3s 6.6s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(38) {
    opacity: 1;
    transition: 3s 6.7s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(37) {
    opacity: 1;
    transition: 3s 6.8s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(36) {
    opacity: 1;
    transition: 3s 6.9s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(35) {
    opacity: 1;
    transition: 3s 7s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(34) {
    opacity: 1;
    transition: 3s 7.1s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(33) {
    opacity: 1;
    transition: 3s 7.2s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(32) {
    opacity: 1;
    transition: 3s 7.3s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(31) {
    opacity: 1;
    transition: 3s 7.4s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(30) {
    opacity: 1;
    transition: 3s 7.5s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(29) {
    opacity: 1;
    transition: 3s 7.6s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(28) {
    opacity: 1;
    transition: 3s 7.7s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(27) {
    opacity: 1;
    transition: 3s 7.8s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(26) {
    opacity: 1;
    transition: 3s 7.9s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(25) {
    opacity: 1;
    transition: 3s 8s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(24) {
    opacity: 1;
    transition: 3s 8.1s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(23) {
    opacity: 1;
    transition: 3s 8.2s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(22) {
    opacity: 1;
    transition: 3s 8.3s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(21) {
    opacity: 1;
    transition: 3s 8.4s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(20) {
    opacity: 1;
    transition: 3s 8.5s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(19) {
    opacity: 1;
    transition: 3s 8.6s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(18) {
    opacity: 1;
    transition: 3s 8.7s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(17) {
    opacity: 1;
    transition: 3s 8.8s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(16) {
    opacity: 1;
    transition: 3s 8.9s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(15) {
    opacity: 1;
    transition: 3s 9s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(14) {
    opacity: 1;
    transition: 3s 9.1s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(13) {
    opacity: 1;
    transition: 3s 9.2s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(12) {
    opacity: 1;
    transition: 3s 9.3s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(11) {
    opacity: 1;
    transition: 3s 9.4s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(10) {
    opacity: 1;
    transition: 3s 9.5s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(9) {
    opacity: 1;
    transition: 3s 9.6s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(8) {
    opacity: 1;
    transition: 3s 9.7s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(7) {
    opacity: 1;
    transition: 3s 9.8s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(6) {
    opacity: 1;
    transition: 3s 9.9s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(5) {
    opacity: 1;
    transition: 3s 10s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(4) {
    opacity: 1;
    transition: 3s 10.1s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(3) {
    opacity: 1;
    transition: 3s 10.2s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(2) {
    opacity: 1;
    transition: 3s 10.3s;
    width: 991.111px;
}

.drop-stitch.on .img-sect svg rect:nth-of-type(1) {
    opacity: 1;
    transition: 3s 10.4s;
    width: 991.111px;
}

.drop-stitch .img-sect img:nth-of-type(4) {
    top: 20%;
    left: 66%;
    transition: 2s .9s;
}

.drop-stitch .img-sect img:nth-of-type(5) {
    top: 14%;
    left: 75%;
    transition: 2s 1.2s;
}

.drop-stitch .indicate {
    position: absolute;
    z-index: 5;
    right: 860px;
    top: 50%;
}

.drop-stitch .indicate p {
    color: white;
    font-size: 32px;
    font-weight: bold;
}

.drop-stitch .indicate .indecate-1 {
    transform: translate(224px, -240px);
}

.drop-stitch.on .indicate .indecate-1 p {
    opacity: 1;
    transform: translateY(15px);
}

.drop-stitch .indicate .indecate-1 p {
    opacity: 0;
    transition: 1s 1.3s;
    transform: translateY(-20px);
    line-height: 1;
}

.eng .drop-stitch .indicate .indecate-1 p {
    transform: translateY(10px);
    margin-left: -80px;
}

.drop-stitch .indicate .indecate-1 svg {
    transform: translateY(30px) rotate(90deg);
    margin-left: 100px;
    stroke-dashoffset: 300;
    stroke-dasharray: 300;
    transition: 1s 2s;
}

.drop-stitch.on .indicate .indecate-1 svg {
    stroke-dashoffset: 0;
}

.drop-stitch .indicate .indecate-1 img {
    transform: translate(-56px, 88px);
    opacity: 0;
    transition: 1s 2.3s;
}

.drop-stitch.on .indicate .indecate-1 img {
    opacity: 1;
}

.drop-stitch .indicate .indecate-2 {

    transform: translate(80px, -50px);
}

.eng .drop-stitch .indicate .indecate-2 p {
    margin-left: -140px;
    transform: translateY(-10px);
}

.drop-stitch .indicate .indecate-2 p {
    opacity: 0;
    transition: 1s 3s;
    line-height: 1;
}

.drop-stitch.on .indicate .indecate-2 p {
    opacity: 1;
}

.drop-stitch.on .indicate .indecate-2 .line {
    width: 370px;
}

.eng .drop-stitch.on .indicate .indecate-2 .line {
    width: 330px;
}

.eng .drop-stitch .indicate .indecate-2 .line {
    transform: translate(150px, -20px);
}

.drop-stitch .indicate .indecate-2 .line {
    transition: 1s 3.5s;
    width: 0px;
    height: 2px;
    background-color: white;
    position: absolute;
    transform: translate(105px, -20px);
}

.drop-stitch .indicate .indecate-2 img {
    position: absolute;
    transform: translate(460px, -32px);
    opacity: 0;
    transition: 1s 4.3s;
}

.drop-stitch.on .indicate .indecate-2 img {
    opacity: 1;
}

/* firm and flat */
.firm-flat {
    background-color: #004DD8;
    overflow: hidden;
}

.firm-flat.on .img-sect>img {
    opacity: 1;
    transform: translateY(0);
}

.firm-flat .img-sect>img {
    position: absolute;
}

.firm-flat .img-sect {
    transform: scale(.9);
}

.firm-flat .img-sect>img:nth-of-type(7) {
    top: -400px;
    left: -300px;
    opacity: 0;
    transform: translateY(30px);
    transition: 1s;
}

.firm-flat.on .img-sect>img:nth-of-type(7) {
    opacity: 1;
    transform: translateY(0);
}

.firm-flat .img-sect>img:nth-of-type(6) {
    top: -320px;
    left: -300px;
    opacity: 0;
    transform: translateY(30px);
    transition: 1s .4s;
}

.firm-flat.on .img-sect>img:nth-of-type(6) {
    opacity: 1;
    transform: translateY(0);
}

.firm-flat .img-sect>img:nth-of-type(5) {
    top: -120px;
    left: -200px;
    opacity: 0;
    transform: translateY(30px);
    transition: 1s .7s;
}

.firm-flat.on .img-sect>img:nth-of-type(5) {
    opacity: 1;
    transform: translateY(0);
}

.firm-flat .img-sect>img:nth-of-type(4) {
    top: 212px;
    left: -185px;
    opacity: 0;
    transform: translateY(30px) scaleY(0);
    transform-origin: top;
    transition: 1s .9s;
}

.firm-flat.on .img-sect>img:nth-of-type(4) {
    opacity: 1;
    transform: translateY(0) scaleY(1);
}

.firm-flat .img-sect>img:nth-of-type(3) {
    top: 160px;
    left: -200px;
    opacity: 0;
    transform: translateY(30px);
    transition: 1s 1.2s;
}

.firm-flat.on .img-sect>img:nth-of-type(3) {
    opacity: 1;
    transform: translateY(0);
}

.firm-flat .img-sect>img:nth-of-type(2) {
    top: 120px;
    left: -300px;
    opacity: 0;
    transform: translateY(30px);
    transition: 1s 1.5s;
}

.firm-flat.on .img-sect>img:nth-of-type(2) {
    opacity: 1;
    transform: translateY(0);
}

.firm-flat .img-sect>img:nth-of-type(1) {
    top: 200px;
    left: -300px;
    opacity: 0;
    transform: translateY(30px);
    transition: 1s 1.8s;
}

.firm-flat.on .img-sect>img:nth-of-type(1) {
    opacity: 1;
    transform: translateY(0);
}

.firm-flat .text-sect {
    width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    height: 100vh;
}

.firm-flat .text-sect h3,
.firm-flat .text-sect p {
    color: white;
    text-align: right;
}

.eng .firm-flat .text-sect p {
    width: 500px;
}

.firm-flat .text-sect p {
    margin-bottom: 160px;
}

.firm-flat .indicate {
    position: absolute;
    top: 55px;
    left: 890px;
}

.eng .firm-flat .indicate {
    top: 23px;
    left: 818px;
}

.firm-flat .indicate img {
    left: -22px;
    transform: translateY(-14px);
    position: absolute;
}

.firm-flat .indicate p {
    color: white;
    font-size: 32px;
    font-weight: bold;
    position: absolute;
}

.firm-flat .indicate .indecate-1 {
    position: absolute;
    left: -12px;

}

.firm-flat .indicate .indecate-1 svg path {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    transition: 2s;
}

.firm-flat.on .indicate .indecate-1 svg path {
    stroke-dashoffset: 0;
}

.firm-flat .indicate .indecate-1 img {
    opacity: 0;
    transition: 1s 1s;
}

.firm-flat.on .indicate .indecate-1 img {
    opacity: 1;
}

.firm-flat .indicate .indecate-2 img {
    opacity: 0;
    transition: 1s 1s;
}

.firm-flat.on .indicate .indecate-2 img {
    opacity: 1;
}

.firm-flat .indicate .indecate-2 svg path {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    transition: 2s 1s;
}

.firm-flat.on .indicate .indecate-2 svg path {
    stroke-dashoffset: 0;
}

.firm-flat.on .indicate .indecate-1 p {
    opacity: 1;
}

.firm-flat .indicate .indecate-1 p {
    top: 110px;
    left: 265px;
    width: 300px;
    opacity: 0;
    transition: 1s 1s;
}

.firm-flat .indicate .indecate-2 {
    position: absolute;
    left: -50px;
    top: 90px;

}

.firm-flat.on .indicate .indecate-2 p {
    opacity: 1;
}

.firm-flat .indicate .indecate-2 p {
    top: 200px;
    left: 110px;
    width: 300px;
    opacity: 0;
    transition: 1s 2s;
}

/* sustainable */

.sustainable {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    position: relative;
}

.sustainable .text-sect h3,
.sustainable .text-sect p {
    color: white;
    text-align: center;
    z-index: 1;
    position: relative;
}

.eng .sustainable .text-sect p {
    width: 700px;
    margin: 0 auto;
    margin-top: 26px;
}

.sustainable .img-sect img {
    position: absolute;
    z-index: 0;
}

.sustainable .img-sect.main img:nth-of-type(1) {
    top: -20%;
    right: -44%;
    opacity: 0;
    transform: translateX(100px);
    transition: 1s;
    width: 1719px;
    max-width: none !important;
}

.sustainable.on .img-sect.main img:nth-of-type(1) {
    opacity: 1;
    transform: translateX(0);
}

.sustainable .img-sect.main img:nth-of-type(2) {
    top: -35%;
    right: -48%;
    opacity: 0;
    transform: translateX(100px);
    transition: 1s .3s;
    width: 1719px;
    max-width: none !important;
}

.sustainable.on .img-sect.main img:nth-of-type(2) {
    opacity: 1;
    transform: translateX(0);
}

.sustainable .img-sect.main svg {
    position: absolute;
    top: -52%;
    right: -60%;
    transform: translateX(50px);
    opacity: 0;
    transition-delay: .2s;
    max-width: none !important;
}

.sustainable.on .img-sect.main svg {
    opacity: 1;
    transform: translateX(0);
}

.sustainable.on .img-sect.main svg #line-1 {
    stroke-dasharray: 5559;
    animation: sustainable-ani 5s;


}

.sustainable.on .img-sect.main svg #line-2 {
    stroke-dasharray: 5156;
    animation: sustainable-ani-2 4s .1s;
    transform: translateX(0);

}

@keyframes sustainable-ani {
    from {
        stroke-dashoffset: 5559;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes sustainable-ani-2 {
    from {
        stroke-dashoffset: 5156;
    }

    to {
        stroke-dashoffset: 12000;
    }
}

.sustainable .img-sect.sub img:nth-of-type(1) {
    left: -70px;
    bottom: -400px;
    opacity: 0;
    transform: translateX(-50px) scaleX(1.2);
    transition: 1s 2s;
}

.sustainable.on .img-sect.sub img:nth-of-type(1) {
    opacity: 1;
    transform: translateX(0) scaleX(1.2);
}

.sustainable .img-sect.sub img:nth-of-type(2) {
    left: -110px;
    bottom: -490px;
    opacity: 0;
    transform: translateX(-50px);
    transition: 1s 2.3s;
}

.sustainable.on .img-sect.sub img:nth-of-type(2) {
    opacity: 1;
    transform: translateX(0);
}

.sustainable.on .img-sect.sub svg {
    animation: sustainable-ani-3 2.5s 1.5s;
    opacity: 1;
}

.sustainable .img-sect.sub svg {
    position: absolute;
    left: -90px;
    bottom: -460px;
    stroke-dasharray: 3076;
    opacity: 0;
    transition-delay: 1.5s;
}

@keyframes sustainable-ani-3 {
    from {
        stroke-dashoffset: 3076;
    }

    to {
        stroke-dashoffset: 0;
    }
}


/* tpu */

.tpu {
    padding: 160px 0;
}

.tpu .inner {
    width: 1600px;
    margin: 0 auto;
}

.tpu .tpu-list {
    margin-top: 60px;
}

.tpu .tpu-list li {
    padding: 72px 0;
    position: relative;
    border-top: 1px solid black;
}

.tpu .tpu-list li:last-of-type {
    border-bottom: 1px solid black;
}

.tpu .tpu-list li .number {
    font-size: 60px;
    font-style: italic;
    font-weight: bold;
    display: inline-block;
    position: relative;
    margin-right: 75px;
}

.tpu .tpu-list li .number::after {
    content: '';
    height: 50px;
    width: 1px;
    background-color: black;
    position: absolute;
    transform: rotate(20deg);
    top: 18px;
    right: -40px;
}

.tpu .tpu-list li .list-title {
    font-size: 50px;
    font-weight: bold;
}

.tpu .tpu-list li .grey-text {
    position: absolute;
    font-weight: bold;
    font-style: italic;
    font-size: 40px;
    color: #ccc;
    bottom: 50px;
    left: 330px;
    z-index: -1;

}

.tpu .tpu-list li:nth-of-type(6) .grey-text {
    left: 290px;
}



.tpu .tpu-list li .list-txt {
    font-size: 24px;
    color: #333;
    position: absolute;
    left: 720px;
    top: 80px;
    line-height: 1.4;
}

.tpu .tpu-list li .icon-img {
    position: absolute;
    top: 30px;
    left: 400px;
    opacity: 0;
    transition: .5s;
}


.tpu .tpu-list li .icon-img.on {
    opacity: 1;
}

.tpu .tpu-list li:nth-of-type(1) .icon-img {
    left: 430px;
}

.tpu .tpu-list li:nth-of-type(2) .icon-img {
    left: 470px;
}

.tpu .tpu-list li:nth-of-type(3) .icon-img {
    left: 430px;
}

.tpu .tpu-list li:nth-of-type(4) .icon-img {
    left: 430px;
}

.tpu .tpu-list li:nth-of-type(5) .icon-img {
    left: 470px;
}

.tpu .tpu-list li:nth-of-type(6) .icon-img {
    left: 380px;
}

.tpu .tpu-list li:nth-of-type(7) .icon-img {
    left: 520px;
}

/* feature */
.feature {
    background-color: #f6f6f6;
    padding: 160px 0;
    height: 1300px;
    overflow: hidden;
}

.feature .inner {
    width: 1600px;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

.feature .sub-sect-title {
    margin: 60px 0;
    display: inline-block;
}

.feature picture img {
    display: block;
    z-index: 2;
    position: relative;
}

.feature picture:nth-of-type(2) {
    position: absolute;
    top: 0px;
    right: 0;
}

.feature picture:nth-of-type(3) {
    position: absolute;
    bottom: -35px;
    left: 320px;
}

.feature picture:nth-of-type(4) {
    position: absolute;
    bottom: 0px;
    right: 0;
}

.feature picture .figcaption {
    font-size: 36px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.feature picture:nth-of-type(1) .figcaption {
    transform: translate(40px, -40px);
}

.feature picture:nth-of-type(2) .figcaption {
    transform: translate(-47px, -47px);
}

.feature picture:nth-of-type(3) .figcaption {
    transform: translate(-90px, -72px);
}

.feature picture:nth-of-type(4) .figcaption {
    transform: translate(25px, -44px);
}

/* moto */
.moto {
    background-image: url(../img/productinfo/moto-bg.jpg);
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.moto .text-sect {
    width: 1600px;
    margin: 0 auto;
}

.moto .text-sect h3,
.moto .text-sect p {
    color: white;
    text-align: left;
}

/*fixed-btn*/
.fixed-top-btn {
    position: fixed;
    right: 50px;
    bottom: 60px;
    z-index: 5;
    cursor: pointer;
    display: none;
}

/*footer*/
footer {
    background-color: #000;
}

footer .inner {
    width: 1600px;
    padding: 60px 0 86px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

footer .footer-left {
    width: 384px;
}

footer .link-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}

footer .link-list li {
    width: 50%;
    margin-bottom: 18px;
}

footer .link-list li a {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

footer .link-list li a img {
    margin-left: 10px;
}

footer .footer-right {
    width: 735px;
}

footer .footer-right address strong {
    color: white;
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

footer .footer-right address p {
    color: #666;
    display: inline-block;
    font-size: 18px;
    margin-bottom: 6px;
    margin-right: 41px;
    position: relative;
}

footer .footer-right address p::after {
    content: '';
    display: block;
    position: absolute;
    right: -21px;
    background-color: #333;
    width: 1px;
    height: 13px;
    top: 4px;
}

footer .footer-right address p:last-of-type::after,
footer .footer-right address p:nth-of-type(3)::after,
footer .footer-right address p:nth-of-type(5)::after {
    display: none;
}

footer .footer-right address p:nth-of-type(3) {
    margin-right: 0;
}

footer .footer-right .info-list {
    margin: 30px 0;
    display: flex;
}

footer .footer-right .info-list li a {
    font-size: 18px;
    color: #666;
    margin-right: 41px;
    position: relative;
}

footer .footer-right .info-list li a::after {
    content: '';
    display: block;
    position: absolute;
    right: -21px;
    background-color: #333;
    width: 1px;
    height: 13px;
    top: 4px;
}

footer .footer-right .info-list li:last-of-type a::after {
    display: none;
}

footer .footer-right .info-list .bold a {
    font-weight: 600px;
    color: white;
}

footer .footer-right .copyright {
    color: #666;
    font-size: 18px;
    margin-bottom: 25px;
}

footer .footer-right .sns {
    display: flex;
}

footer .footer-right .sns li {
    margin-right: 10px;
}

footer address a {
    color: #999;
}


.contents {
    margin: 160px 0px
}

.contents.mt0 {
    margin: 0px;
    margin-bottom: 160px;

}

.contents.mt0.det .thumb-wrap {
    padding: 0 20px;
}

.cont-inner {
    max-width: 1600px;
    padding: 0;
    margin: 0 auto;
}

.cont-inner.mt0 {
    margin: 0px auto;
    padding: 100px 0px
}

/*----------------------------------------------------
sub tab
----------------------------------------------------*/
.sub-tab {
    display: block;
    text-align: center;
}

.sub-tab li {
    display: inline-block;
    margin-right: 40px;
}

.sub-tab li:last-child {
    margin-right: 0px;
}

.sub-tab li a {
    display: block;
    background: #ffffff;
    border: solid 1px #dddddd;
    border-radius: 50px;
    padding: 20px 30px;
    color: #000000;
    font-size: 30px;
    font-weight: 500;
}

.sub-tab li a:hover {
    background: rgba(0, 77, 216, .1);
    border: solid 1px #004DD8;
}

.sub-tab li.active a {
    background: #004DD8;
    border: none;
    color: #ffffff;
}


/*product tabs*/
.sub-tab li a.after-out::after,
.sub-tab li a.after-in::after,
.sub-tab li a.after-matt::after,
.sub-tab li a.after-tools::after,
.sub-tab li a.after-pool::after,
.sub-tab li a.after-boat::after,
.sub-tab li a.after-board::after,
.sub-tab li a.after-airtent::after,
.sub-tab li a.after-rescue::after,
.sub-tab li a.after-iot::after,
.sub-tab li a.after-event::after {
    display: inline-block;
    content: '';
    margin-left: 8px;
    vertical-align: baseline;
    background-repeat: no-repeat;
}

.sub-tab li a.after-out::after {
    width: 46px;
    height: 18px;
    background: url('../img/product/ico_outdoor.svg');
}

.sub-tab li a.after-in::after {

    width: 30px;
    height: 23px;
    background: url('../img/product/ico_indoor.svg');
}

.sub-tab li a.after-matt::after {
    width: 50px;
    height: 22px;
    background: url('../img/product/ico_matt.svg');
}

.sub-tab li a.after-tools::after {
    width: 30px;
    height: 22px;
    background: url('../img/product/ico_tools.svg');
}

.sub-tab li a.after-pool::after {
    width: 30px;
    height: 24px;
    background: url('../img/product/ico_pool.svg');
}

.sub-tab li a.after-boat::after {
    width: 26px;
    height: 23px;
    background: url('../img/product/ico_boat.svg');
}

.sub-tab li a.after-board::after {
    width: 30px;
    height: 28px;
    background: url('../img/product/ico_board.svg');
}

.sub-tab li a.after-airtent::after {
    width: 32px;
    height: 23px;
    background: url('../img/product/ico_airtent.svg');
}

.sub-tab li a.after-rescue::after {
    width: 32px;
    height: 23px;
    background: url('../img/product/ico_rescue.svg');
}

.sub-tab li a.after-iot::after {
    width: 33px;
    height: 23px;
    background: url('../img/product/ico_iot.svg');
}

.sub-tab li a.after-event::after {
    width: 26px;
    height: 25px;
    background: url('../img/product/ico_event.svg');
}

.sub-tab li.active a.after-out::after {
    background: url('../img/product/ico_outdoor_wh.svg')
}

.sub-tab li.active a.after-in::after {
    background: url('../img/product/ico_indoor_wh.svg');
}

.sub-tab li.active a.after-matt::after {
    background: url('../img/product/ico_matt_wh.svg');
}

.sub-tab li.active a.after-tools::after {
    background: url('../img/product/ico_tools_wh.svg');
}

.sub-tab li.active a.after-pool::after {
    background: url('../img/product/ico_pool_wh.svg');
}

.sub-tab li.active a.after-boat::after {
    background: url('../img/product/ico_boat_wh.svg');
}

.sub-tab li.active a.after-board::after {
    background: url('../img/product/ico_board_wh.svg');
}

.sub-tab li.active a.after-airtent::after {
    background: url('../img/product/ico_airtent_wh.svg');
}

.sub-tab li.active a.after-rescue::after {
    background: url('../img/product/ico_rescue_wh.svg');
}

.sub-tab li.active a.after-iot::after {
    background: url('../img/product/ico_iot_wh.svg');
}

.sub-tab li.active a.after-event::after {
    background: url('../img/product/ico_event_wh.svg');
}


/*----------------------------------------------------
회사소개 - 오시는 길
----------------------------------------------------*/

.map-wrap iframe {
    width: 100%;
}

.map-cont {
    margin-top: 80px;
}

.map-cont .cont-title {
    font-size: 60px;
    display: inline-block;
}

.map-cont .info-list {
    width: 70%;
    border-top: solid 1px #DDDDDD;
    float: right;
}

.map-cont .info-list li {
    border-bottom: solid 1px #EEEEEE;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.map-cont .info-list li .tit {
    width: 30%;
    display: inline-block;
    font-size: 32px;
    color: #004DD8;
    font-weight: 800;
    line-height: 1.3;
}

.map-cont .info-list li .txt {
    width: 70%;
}

.map-cont .info-list li .txt .list {
    margin-bottom: 20px;
}

.map-cont .info-list li .bold {
    display: block;
}

.map-cont .info-list li .txt2 {
    display: block;
    margin: 15px 0px 10px 0;
    font-weight: 500;
}

.map-cont .info-list dt,
.info-list dd {
    display: inline-block;
}

.map-cont .info-list dd {
    margin-right: 8px;
}

.line-box:before {
    width: 60px;
    height: 33px;
    border-radius: 30px;
    display: inline-block;
    font-size: 20px;
    text-align: center;
    display: inline-block;
    line-height: 1.5em;
    margin-right: 5px;
}

.eng .line-box:before {
    width: auto;
    padding: 0 8px;
}

.blue-line::before {
    content: '간선';
    border: solid 1px #2969CC;
    color: #2969CC;
}

.eng .blue-line::before {
    content: 'Main Line';
}

.green-line::before {
    content: '지선';
    border: solid 1px #61AC1E;
    color: #61AC1E
}

.eng .green-line::before {
    content: 'Branch Line';
}

.red-line::before {
    content: '광역';
    border: solid 1px #F52E0A;
    color: #F52E0A
}

.eng .red-line::before {
    content: 'Wide Area';
}

.blue-line2::before {
    content: '좌석';
    border: solid 1px #3D5AA6;
    color: #3D5AA6
}

.eng .blue-line2::before {
    content: 'Seats';
}

.purple-line::before {
    content: '급행';
    border: solid 1px #6B2BB5;
    color: #6B2BB5
}

.eng .purple-line::before {
    content: 'Express';
}

.both {
    clear: both;
}

.product-info-wrap {
    position: relative;
}

/*----------------------------------------------------
회사소개 - 사업소개
----------------------------------------------------*/
body {
    overflow-x: hidden;
}

.product-info-wrap section {
    margin-top: 160px;
}

.product-info-wrap .top-box {
    margin-bottom: 60px;
}


/*프로세스*/

.process-cont {
    margin-top: 60px;
}

.process-box {
    text-align: center;
    position: relative;
}

.process-box::after {
    width: 1180px;
    height: 1px;
    border-top: 1px dashed #cccccc;
    content: '';
    display: block;
    position: absolute;
    top: 74%;
    left: 212px;
    z-index: -1;
}

.process-box li {
    width: calc(20% - 30px);
    display: inline-block;
    text-align: center;
    position: relative;
    vertical-align: top;
}

.eng .process-box .tit {
    font-size: 24px;
    letter-spacing: -.7px;
}

.process-box li:after {
    width: 34px;
    height: 34px;
    content: '';
    display: inline-block;
    background: url('../img/company/ico_next.svg') center no-repeat;
    position: absolute;
    right: -19px;
    top: 29%;
}

.process-box li:last-child::after {
    display: none;
}

.process-box .step,
.process-box .tit {
    display: block;
    color: #004DD8;
    font-weight: 600;
    font-size: 20px;
}

.process-box .tit {
    color: #000000;
    font-weight: 700;
    font-size: 28px;
    margin-top: 15px;
}

.process-box .step::before {
    width: 8px;
    height: 8px;
    display: block;
    content: '';
    border-radius: 30px;
    background: #004DD8;
    position: absolute;
    top: 243px;
    z-index: 9;
    left: 48%;
}

.process-box li .ico-step01:before,
.process-box li .ico-step02:before,
.process-box li .ico-step03:before,
.process-box li .ico-step04:before,
.process-box li .ico-step05:before {
    width: 200px;
    height: 200px;
    display: block;
    border-radius: 50%;
    vertical-align: middle;
    border: solid 1px #dddddd;
    content: '';
    margin: 0px auto 60px;
}

.process-box li .ico-step01:before {
    background: url('../img/company/ico_process01.svg') center no-repeat;
}

.process-box li .ico-step02:before {
    background: url('../img/company/ico_process02.svg') center no-repeat;
}

.process-box li .ico-step03:before {
    background: url('../img/company/ico_process03.svg') center no-repeat;
}

.process-box li .ico-step04:before {
    background: url('../img/company/ico_process04.svg') center no-repeat;
}

.process-box li .ico-step05:before {
    background: url('../img/company/ico_process05.svg') center no-repeat;
}

/*에어박스 제품군*/

.proinfo-wrap {}

.proinfo-cont {
    border-top: solid 1px #000000;
}

.pro-list {
    display: table;
    width: 100%;
    padding: 50px 30px;
    border-bottom: solid 1px #dddddd;
}

.pro-list .left-tit,
.pro-list .right-list {
    display: table-cell;
    vertical-align: middle;
    line-height: 1.3em;
}

.pro-list .left-tit {
    width: 20%;
    font-weight: 600;
    font-size: 42px;
}

.pro-list .right-list {
    width: 80%;
}

.pro-list .right-list li {
    width: calc(20% - 30px);
    display: inline-block;
    text-align: center;
    vertical-align: top;
}

.pro-list .right-list span {
    font-size: 26px;
}

.pro-list .right-list li.ico:before {
    width: 150px;
    height: 150px;
    display: block;
    content: '';
    margin: 0px auto 15px;
}

.pro-list .right-list li.ico-living01:before {
    background: url('../img/company/ico_living01.svg') no-repeat;
}

.pro-list .right-list li.ico-living02:before {
    background: url('../img/company/ico_living02.svg') no-repeat;
}

.pro-list .right-list li.ico-living03:before {
    background: url('../img/company/ico_living03.svg') no-repeat;
}

.pro-list .right-list li.ico-living04:before {
    background: url('../img/company/ico_living04.svg') no-repeat;
}

.pro-list .right-list li.ico-living05:before {
    background: url('../img/company/ico_living05.svg') no-repeat;
}

.pro-list .right-list li.ico-gym01:before {
    background: url('../img/company/ico_gym01.svg') no-repeat;
}

.pro-list .right-list li.ico-gym02:before {
    background: url('../img/company/ico_gym02.svg') no-repeat;
}

.pro-list .right-list li.ico-gym03:before {
    background: url('../img/company/ico_gym03.svg') no-repeat;
}

.pro-list .right-list li.ico-gym04:before {
    background: url('../img/company/ico_gym04.svg') no-repeat;
}

.pro-list .right-list li.ico-aqua01:before {
    background: url('../img/company/ico_aqua01.svg') no-repeat;
}

.pro-list .right-list li.ico-aqua02:before {
    background: url('../img/company/ico_aqua02.svg') no-repeat;
}

.pro-list .right-list li.ico-aqua03:before {
    background: url('../img/company/ico_aqua03.svg') no-repeat;
}

.pro-list .right-list li.ico-aqua04:before {
    background: url('../img/company/ico_aqua04.svg') no-repeat;
}

.pro-list .right-list li.ico-aqua05:before {
    background: url('../img/company/ico_aqua05.svg') no-repeat;
}

.pro-list .right-list li.ico-rescue01:before {
    background: url('../img/company/ico_rescue01.svg') no-repeat;
}

.pro-list .right-list li.ico-rescue02:before {
    background: url('../img/company/ico_rescue02.svg') no-repeat;
}

.pro-list .right-list li.ico-rescue03:before {
    background: url('../img/company/ico_rescue03.svg') no-repeat;
}

.pro-list .right-list li.ico-rescue04:before {
    background: url('../img/company/ico_rescue04.svg') no-repeat;
}

.pro-list .right-list li.ico-rescue05:before {
    background: url('../img/company/ico_rescue05.svg') no-repeat;
}

.pro-list .right-list li.ico-iot01:before {
    background: url('../img/company/ico_iot01.svg') no-repeat;
}

.pro-list .right-list li.ico-iot02:before {
    background: url('../img/company/ico_iot02.svg') no-repeat;
}


/*생산 유형*/
section.type-wrap {
    position: relative;
    width: 100%;
    height: 1580px;
    margin-top: 0;
    margin-bottom: 260px;
}

.cont-inner.type {
    position: relative;
    margin: 0 auto;
    padding: 0 !important;
}

.type-cont {
    height: 900px;
}

.type-cont .cont-title {
    text-align: center;
    padding-bottom: 60px;
    position: sticky;
    top: -60px;
    padding-top: 160px;
    background-color: white;
    z-index: 10;
}

.type-cont .type-img {
    position: sticky;
    top: 240px;
}

.type-cont .type-img::after {
    position: absolute;
    bottom: -780px;
    content: '';
    z-index: -1;
    width: 1920px;
    height: 490px;
    left: -160px;
    background-color: #f6f6f6;
}

.type-cont .type-img li {
    position: absolute;
    width: 880px;
    overflow: hidden;
    top: 0;
    opacity: 0;
    transition: .2s;
}

.type-cont .type-img li.on {
    opacity: 1;
}

.type-wrap picture.img img {
    width: 100%;
    height: 614px;
    border: 1px solid #eee;
}

.type-wrap picture .small-txt {
    display: block;
    font-size: 16px;
    color: #004DD8;
    text-align: right;
    margin-top: 10px;
}

.type-wrap .type-box {
    width: 714px;
    margin-left: auto;
    position: relative;
}

.type-wrap .type-box li {
    position: relative;
    opacity: 1;
}

.type-wrap .type-box li:nth-of-type(1) {
    margin-top: 250px;
}

.type-wrap .type-box li:nth-of-type(2) {
    margin-top: 400px;
    margin-bottom: 160px;
}
.eng .type-wrap .type-box li:nth-of-type(2){
    margin-top: 300px;
}
.type-wrap .type-box li:nth-of-type(3) {
    margin-top: 400px;
    margin-bottom: 160px;
}

.eng .type-wrap .type-box li:nth-of-type(1){
    margin-top: 200px;
}
.eng .type-wrap .type-box li:nth-of-type(2) {
    margin-top: 300px;
}

.type-wrap .type-box li.on {
    opacity: 1;
}

.type-wrap .info {
    padding-left: 130px;
    line-height: 1.5;
}

.type-wrap .info .top {
    display: block;
    line-height: 1.5em;
}

.type-wrap .info .top .tit {
    font-size: 42px;
    display: block;
    z-index: 9;
    line-height: 1.5em;
}

.type-wrap .info .top .gray-tit {
    font-size: 60px;
    color: rgba(204, 204, 204, .5);
    font-family: 'Noto Serif Display', serif;
    font-style: italic;
    z-index: -9;
    position: absolute;
    top: -20px;
    right: 90px;
}
.eng .type-wrap .info .top .gray-tit{
    top: -70px;
    right: 16px;
}

/*담당부서*/
.depart-wrap ul {
    display: flex;
    flex-wrap: wrap;
    border-top: solid 1px #dddddd
}

.depart-wrap li {
    width: calc(33.3333% - 0px);
    display: inline-block;
    border: solid 1px #dddddd;
    border-left: none;
    border-top: none;
    padding: 50px;
}

.depart-wrap li:nth-child(1),
.depart-wrap li:nth-child(4) {
    border-left: solid 1px #dddddd
}

.depart-wrap li strong {
    display: block;
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 600;
}

.depart-wrap dl {
    margin-top: 20px;
}

.depart-wrap dt {
    font-weight: 700;
    color: #004DD8;
    line-height: 1.5em;
    position: relative;
    padding-left: 10px;
}

.depart-wrap dt::before {
    width: 4px;
    height: 4px;
    content: '';
    display: inline-block;
    background: #004DD8;
    position: absolute;
    top: 14px;
    left: 0px;
    border-radius: 10px;
}

.depart-wrap dd {
    line-height: 1.5em;
    padding-left: 12px
}





/*----------------------------------------------------
회사소개 - 회사 연혁
----------------------------------------------------*/
.sub-tab.history {
    position: sticky;
    top: 100px;
    background-color: white;
    z-index: 10;
    padding: 20px;
    margin: -20px 0;
}

.history-wrap {
    position: relative;
    padding-top: 60px;
}

.history-wrap .cont-title.top {
    padding-top: 120px;
}

.history-wrap .cont-title {
    padding-bottom: 80px;
    line-height: 1.3;
    padding-top: 160px;
}

.history-wrap .history-navi {
    position: absolute;
    top: 670px;
    right: 90px;
    z-index: 2;
}

.history-wrap .history-navi.fixed ul {
    position: fixed;
    top: 100px;
    right: 90px;
    z-index: 2;
}

.history-wrap .history-navi li~li {
    margin-top: 28px;
}

.history-wrap .history-navi li a {
    display: block;
    position: relative;
    padding-right: 10px;
    text-align: right;
    font-size: 16px;
    font-weight: 500;
    line-height: 23px;
    color: #999;
}

.history-wrap .history-navi li a:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 1;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #999;
    transform: translateY(-50%);
}

.history-wrap .history-navi li.active a {
    color: #e50019;
}

.history-wrap .history-navi li.active a:after {
    background: #e50019;
}

.history-wrap .term-box {
    height: 570px;
    padding: 300px 260px 80px;
    background: #000 url(../images/sub/bg-history01.png) no-repeat center center;
    background-size: cover;
}

.history-wrap .term-box h3 {
    text-align: left;
    font-size: 80px;
    font-weight: 600;
    line-height: 120px;
    color: #fff;
}

.history-wrap .term-box p {
    margin-top: 20px;
    text-align: left;
    font-size: 36px;
    font-weight: 700;
    line-height: 54px;
    color: #fff;
}

.history-wrap .detail-box {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 0 20px 0px;
}

.history-wrap .detail-box .list {
    float: right;
    margin-right: 50%;
}

.history-wrap .detail-box .list>li::before {
    width: 1px;
    height: 100%;
    display: inline-block;
    content: '';
    background: #DDDDDD;
    position: absolute;
    left: 8px;
    top: 20px;
}

.history-wrap .detail-box .list>li:last-of-type:before {
    display: none;
}

/* .history-wrap .detail-box .list > li{position:relative;padding-left:170px;margin-top:160px;} */
.history-wrap .detail-box .list>li:first-child {
    margin-top: 0px;
}

/* .history-wrap .detail-box .list > li .year{position:absolute;top:0;left:0;z-index:1;font-size:48px;font-weight:600;line-height:1em;} */

.history-wrap .detail-box .list>li {
    position: relative;
    padding-left: 0px;
    padding-bottom: 160px;
    vertical-align: top;
}

.history-wrap .detail-box .list>li:first-of-type {
    padding-top: 0;
}

.history-wrap .detail-box .list>li .year {
    font-size: 48px;
    font-weight: 600;
    line-height: 1em;
    display: inline-block;
    width: 160px;
    vertical-align: top;
    margin-left: 40px;
    position: relative;
}

.history-wrap .detail-box .list ul {
    display: inline-block;
    width: 65%;
}

.history-wrap .detail-box .list>li .year::before {
    width: 18px;
    height: 18px;
    display: inline-block;
    content: '';
    border-radius: 50px;
    border: solid 3px #DDDDDD;
    left: -40px;
    top: 15px;
    position: absolute;
    vertical-align: middle;
    background: #ffffff;
}

.history-wrap .detail-box .list>li ul li {
    position: relative;
    padding-left: 50px;
}

.history-wrap .detail-box .list>li ul li~li {
    margin-top: 20px;
}

.history-wrap .detail-box .list>li ul li .month {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    font-weight: 600;
    color: #004DD8;
    font-size: 32px;
    line-height: 1.5;
    margin-top: 0;
    margin-left: 0;
}

.history-wrap .detail-box .list>li ul li>p {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 20px;
    margin-top: 7px;
    display: inline-block;
    margin-left: 30px;
}

.history-wrap .detail-box .list>li ul li>p:last-child {
    margin-bottom: 0px;
}

.history-wrap .detail-box .img-box {
    position: absolute;
    top: 0;
    right: 20px;
    z-index: 1;
    width: calc(50% - 20px);
    height: 100%;
}

.history-wrap .detail-box .img-box .swiper-slide {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: #000;
}

.history-wrap .detail-box .img-box .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.history-wrap .detail-box .img-box .img01 {
    top: 100px;
    width: 540px;
    height: 300px;
    background: #000;
}

.history-wrap .detail-box .img-box .img02 {
    top: 20px;
    left: auto;
    right: 0;
    width: 200px;
    height: 300px;
    background: #222;
}

.history-wrap .detail-box .img-box .img03 {
    top: 500px;
    left: 260px;
    width: 400px;
    height: 360px;
    background: #222;
}

.history-wrap .detail-box .img-box .img04 {
    top: 950px;
    left: 0px;
    width: 500px;
    height: 360px;
    background: #000;
}

.history-wrap .detail-box .img-box .img05 {
    top: 1200px;
    left: auto;
    right: 0;
    width: 300px;
    height: 260px;
    background: #222;
}

.history-wrap .detail-box .img-box .img06 {
    top: 1600px;
    left: 70px;
    width: 500px;
    height: 319px;
    background: #222;
}

.history-wrap .detail-box .img-box .img07 {
    top: 2100px;
    left: auto;
    right: 40px;
    width: 320px;
    height: 460px;
    background: #000;
}

.history-wrap .detail-box .img-box .img08 {
    top: 2400px;
    left: 70px;
    width: 460px;
    height: 259px;
    background: #222;
}

.history-wrap .detail-box .img-box .img09 {
    top: 160px;
    left: 100px;
    right: 300px;
    width: 500px;
    height: 460px;
    background: #000;
}

.history-wrap .detail-box .img-box .img10 {
    top: 800px;
    left: 300px;
    width: 460px;
    height: 500px;
    background: #222;
}

.history-wrap .detail-box .img-box .img11 {
    top: 1500px;
    left: 0px;
    width: 600px;
    height: 276px;
    background: #222;
}

.history-wrap .detail-box .img-box .img12 {
    top: 2100px;
    left: 300px;
    width: 600px;
    height: 400px;
    background: #222;
}

.history-wrap .detail-box .img-box .img13 {
    top: 2900px;
    left: 0px;
    width: 600px;
    height: 400px;
    background: #222;
}

.history-wrap .detail-box .img-box .img14 {
    top: 3700px;
    left: 200px;
    width: 600px;
    height: 330px;
    background: #222;
}


.history-wrap .detail-box .img-box .img15 {
    top: 100px;
    left: 300px;
    width: 600px;
    height: 400px;
    background: #222;
}

.history-wrap .detail-box .img-box .img16 {
    top: 700px;
    left: 0px;
    width: 600px;
    height: 400px;
    background: #222;
}

.history-wrap .detail-box .img-box .img17 {
    top: 1400px;
    left: 500px;
    width: 300px;
    height: 460px;
    background: #222;
}

.history-wrap .detail-box .img-box .img18 {
    top: 1800px;
    left: 40px;
    width: 400px;
    height: 224px;
    background: #222;
}

.history-wrap .detail-box .img-box .img19 {
    top: 2300px;
    left: 300px;
    width: 300px;
    height: 400px;
    background: #222;
}

.history-wrap .detail-box .img-box .img20 {
    top: 2900px;
    left: 200px;
    width: 600px;
    height: 460px;
    background: #222;
}



/*----------------------------------------------------
board
----------------------------------------------------*/
.board-table {
    display: table;
    width: 100%;
    border-top: 1px solid #000;
}

.board-table.no-txt {
    padding: 40px;
    font-size: 22px;
    text-align: center;
}


/*----------------------------------------------------
board - gallery
----------------------------------------------------*/

/*total*/
.b-total {
    font-size: 22px;
}

.b-total strong {
    font-weight: normal;
}

/*search*/
.board-top {
    display: inline-block;
    width: 100%;
    margin: 40px 0;
}

.search-box {
    float: right;
}

.search-box li {
    display: inline-block;
    vertical-align: top;
    border-bottom: solid 1px #000000;
    font-size: 24px;
}

.search-box select {
    display: inline-block;
    height: 42px;
    width: 100px;
    border: none;
    font-size: 18px;
    line-height: 25px;
    color: #333;
    vertical-align: top;
    font-size: 22px;
    cursor: pointer;
}

.search-box input[type=search] {
    padding: 0px 10px;
    height: 42px;
    border: none;
    font-size: 22px;
}

.btn-search {
    font-size: 0px;
    width: 40px;
    height: 42px;
    background: transparent;
    vertical-align: top;
    border: none;
    cursor: pointer;
}

.btn-search::before {
    width: 25px;
    height: 25px;
    display: inline-block;
    background: transparent url('../img/ico_search.svg') no-repeat;
    content: '';
}

/*gallery list*/
.gallery-list.board-table {
    border-top: none;
}

.gallery-list ul {
    display: flex;
    flex-wrap: wrap;
}

.gallery-list li {
    width: 33.3333%;
    padding-left: 35px;
    margin-bottom: 48px;
}

.gallery-list li:nth-child(1),
.gallery-list li:nth-child(4) {
    padding-left: 0px;
}

.gallery-list li .img_box {
    display: block;
    /* height: 373px; */
    height: 418px;
    background: #F6F6F6 url('../img/thumb_basic.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.gallery-list li .img_box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.2s linear;
}

.gallery-list li .img_box img:hover {
    transform: scale(1.1);
}

.gallery-list li .category {
    position: absolute;
    z-index: 9;
    right: 20px;
    top: 20px;
    border-radius: 50px;
    padding: 8px 20px;
    background: rgba(0, 0, 0, .5);
    text-align: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
}

.gallery-list li .tit {
    display: block;
    margin-top: 15px;
    text-align: left;
    font-size: 26px;
    font-weight: bold;
}

.gallery-list li .txt {
    display: block;
    margin-top: 8px;
    text-align: left;
    font-size: 20px;
    color: #666;
}

/*gallery list02*/
.gallery-list02 li .img_box {
    height: 580px;
}

.gallery-list02 li .tit {
    text-align: center;
}

/*gallery list03*/
.gallery-list03 ul {
    display: block;
    flex-wrap: initial;
    width: 100%;
}

.gallery-list03 li {
    width: 100%;
    display: table;
    padding-left: 0px;
    margin-bottom: 0px;
    padding: 50px 0px;
    border-bottom: solid 1px #dddddd;
}

.gallery-list03 li .img_box {
    display: table-cell;
    width: 530px;
    height: 360px;
}

.gallery-list03 li .info_box {
    display: table-cell;
    padding-left: 50px;
    vertical-align: middle;
}

.gallery-list li .txt {
    vertical-align: middle;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5em;
}

.gallery-list03 li .date {
    font-size: 18px;
    color: #999999;
    display: block;
    margin-top: 100px;
}

.gallery-list03 li:last-child {
    border-bottom: none;
}


/*----------------------------------------------------
board - list
----------------------------------------------------*/

.board-list .t_row {
    display: table-row;
}

.board-list .t_row.b_list:hover {
    background: #f7f7f7;
}

.board-list .t_head.num {
    width: 7%;
}

.board-list .t_head.subject {
    width: 58%;
    text-align: center;
}

.board-list .t_head.files {
    width: 10%;
}

.board-list .t_head.date {
    width: 15%;
}

.board-list .t_head.view {
    width: 10%;
}

.link-style {
    text-decoration: underline;
}

.board-list .t_cell {
    display: table-cell;
    padding: 20px 20px;
    vertical-align: middle;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

.board-list .t_cell:first-child {
    border-left: none;
}

.board-list .t_head {
    font-weight: 600;
}

.board-list .left-line {
    border-left: 1px solid #ddd;
}

.board-list .t_cell.subject p {
    text-align: left;
}

.board-list .t_cell.subject a {
    text-align: left;
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.board_fix {
    background: #e9f4ff;
}

.t_row.b_list.board_fix:hover {
    background: #e9f4ff;
}

.board_fix a {
    font-weight: bold;
    color: #000000;
}

.fix_ico {
    background: #004DD8;
    border-radius: 30px;
    font-size: 12px;
    color: #ffffff;
    padding: 5px 8px;
}

.board-list .t_cell.ico-file::after {
    background: url('../img/ico_files.svg') no-repeat;
    width: 20px;
    height: 27px;
    display: inline-block;
    content: '';
    margin-left: 5px;
}

.board-list .t_cell.ico-file.hidden::after {
    display: none;
}


/*----------------------------------------------------
paging
----------------------------------------------------*/
.tbl-paging {
    margin-top: 30px;
    text-align: center;
}

.tbl-paging a {
    display: inline-block;
    overflow: hidden;
    width: 20px;
    height: 30px;
    vertical-align: top;
    text-indent: -9999px;
    font-size: 0;
}

.tbl-paging a.btn-first {
    background: url('../img/ico_prev_first.svg') no-repeat center center;
}

.tbl-paging a.btn-prev {
    background: url('../img/ico_prev.svg') no-repeat center center;
}

.tbl-paging a.btn-next {
    background: url('../img/ico_next.svg') no-repeat center center;
}

.tbl-paging a.btn-end {
    background: url('../img/ico_next_end.svg') no-repeat center center;
}

.tbl-paging .page {
    display: inline-block;
    padding: 0 5px;
    vertical-align: middle;
}

.tbl-paging .page a {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 0 4px;
    border-radius: 50%;
    vertical-align: top;
    text-align: center;
    text-indent: 0;
    font-size: 16px;
    line-height: 30px;
    color: #999;
}

.tbl-paging .page a:hover,
.tbl-paging .page a.active {
    color: #004DD8;
    font-weight: bold;
}


/*----------------------------------------------------
board - view
----------------------------------------------------*/
.thumb-wrap {
    background: #F6F6F6;
}

.thumb-wrap .thumb-modal {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.thumb-img {
    width: 60%;
}

.thumb-info {
    padding-left: 50px;
    width: 40%;
}

/*thumbnail*/
.thumb-wrap .thumbs-big,
.thumb-wrap .thumbs-small {
    display: inline-block;
    vertical-align: top;
    font-size: 0px;
}

.thumb-wrap .thumbs-big {
    width: 720px;
    height: 565px;
    background: #ffffff;
    background-size: cover;
    position: relative;
    overflow: hidden;
}


.thumb-wrap .thumbs-big img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.2s linear;
}


/* .thumb-wrap .thumbs-big #big {
    width: 720px;
    height: 565px;
    background: #ffffff;
} */


.thumb-wrap .thumbs-small ul {
    margin-left: 5px;
}

.thumb-wrap .thumbs-small li {
    margin-bottom: 10px;
    background: #ffffff;
    cursor: pointer;
}

.thumb-wrap .thumbs-small li:last-child {
    margin-bottom: 0px;
}

/* .thumb-wrap .thumbs-small .small {
    width: 160px;
    height: 105px;
    display: block;
} */


.thumb-wrap .thumbs-small li {
    width: 160px;
    height: 105px;
    background: #ffffff;
    background-size: cover;
    position: relative;
    overflow: hidden;
}


.thumb-wrap .thumbs-small img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.2s linear;
}

/*thumbs info*/
.thumb-info .category {
    background: #004DD8;
    padding: 5px 12px;
    font-size: 18px;
    border-radius: 30px;
    color: #ffffff;
    display: inline-block;
}

.thumb-info .tit {
    display: block;
    font-size: 30px;
    font-weight: 700;
    margin-top: 20px;
    padding-bottom: 24px;
    line-height: 1;
    border-bottom: solid 1px #cccccc;
}

.thumb-info .txt {
    font-size: 24px;
    line-height: 1.5em;
    margin-top: 20px;
    min-height: 304px;
}

.thumb-info .btn-wrap {
    width: 100%;
    display: block;
}

.thumb-info .btn-wrap .btn-blue-line {
    display: block;
    background: #ffffff;
    ;
    border: solid 1px #004DD8;
    color: #004DD8;
    font-weight: 500;
    padding: 20px 0px;
}

.thumb-info .btn-wrap .btn-blue-line:hover {
    background: #004DD8;
    color: #ffffff;
}

/*본문*/
.body-cont {
    min-height: 400px;
    padding: 40px 0;
    border-bottom: solid 1px #dddddd;
    overflow-x: scroll;
}


/*----------------------------------------------------
board - view02
----------------------------------------------------*/


.board-view .t_head.info span {
    padding-right: 15px;
    color: #666666;
}

.board-view .t_head.info span:last-child {
    padding-right: 0px;
}

.board-view .t_head.info span:last-child::before {
    width: 1px;
    height: 13px;
    content: '';
    display: inline-block;
    background: #cccccc;
    margin-right: 18px;
}

.board-view .t_row.title {
    padding: 40px 20px;
    border-bottom: solid 1px #cccccc;
}

.board-view .t_head.tit strong {
    display: block;
    font-size: 30px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.board-view .t_row.body {
    padding: 30px 0px;
    min-height: 500px;
}

.board-view .t_row.file {
    padding: 30px;
    background: #f7f7f7;
}

.board-view .t_row.file li {
    margin-bottom: 30px;
}

.board-view .t_row.file li:last-child {
    margin-bottom: 0px;
}

.board-view .t_row.file strong,
.board-view .t_row.file span {
    display: block;
}


.board-view .t_row.file span a {
    word-break: break-word;
    color: #004DD8;
    font-size: 16px;
}


.board-view .t_row.file strong {
    margin-bottom: 8px;
}

.prev-next {
    display: block;
    margin-top: 30px;
    border-top: solid 1px #dddddd
}

.prev-next li {
    width: 100%;
    border-bottom: solid 1px #dddddd;
    padding: 25px 0px;
}

.prev-next li .prev,
.prev-next li .next {
    margin-right: 20px;
    vertical-align: middle;
}

.prev-next li .prev::after,
.prev-next li .next::after {
    content: '';
    border: solid #004DD8;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    vertical-align: middle;
    margin-top: -5px;
    margin-left: 20px;
}

.prev-next li .prev::after {
    transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
}

.prev-next li .next::after {
    transform: rotate(44deg);
    -webkit-transform: rotate(44deg);
}


.prev-next li .date {
    float: right;
}

.btn-wrap {
    display: block;
    text-align: center;
    margin-top: 80px;
}

.btn-black {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    background: #000000;
    padding: auto 40px;
    text-align: center;
    color: #ffffff;
    font-weight: bold;
    width: 300px;
    height: 90px;
}

.btn-blue {
    display: inline-block;
    background: #004DD8;
    padding: 20px 40px;
    text-align: center;
    color: #ffffff;
}


/*----------------------------------------------------
자주 묻는 질문
----------------------------------------------------*/
.question:first-child {
    border-top: 1px solid #000000;
}

.question {
    position: relative;
    padding: 20px 80px 20px 30px;
    cursor: pointer;
    font-size: 22px;
    border-bottom: 1px solid #dddddd;
    vertical-align: middle;
}

.question::before {
    width: 30px;
    height: 30px;
    background: #004DD8;
    line-height: 30px;
    text-align: center;
    vertical-align: middle;
    border-radius: 50px;
    display: inline-block;
    content: 'Q';
    color: #ffffff;
    margin-right: 5px;
    font-weight: bold;
    vertical-align: middle;
}

.question::after {
    content: '';
    border: solid #A5A5A5;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 5px;
    vertical-align: middle;
    margin-top: -5px;
    margin-left: 20px;
    transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
    position: absolute;
    right: 30px;
    top: 50%;
}

.question.on::after {
    transform: rotate(406deg);
    -webkit-transform: rotate(406deg);
}

.question.on>strong {
    font-weight: bold;
    color: #004DD8;
}

.answer {
    position: relative;
    display: none;
    overflow: hidden;
    background: #FCFCFC;
    padding: 30px;
    vertical-align: top;
    border-bottom: solid 1px #dddddd;
}

.answer::before {
    width: 30px;
    height: 30px;
    line-height: 26px;
    text-align: center;
    vertical-align: middle;
    border-radius: 50px;
    border: solid 1px #004DD8;
    box-sizing: border-box;
    color: #004DD8;
    display: inline-block;
    content: 'A';
    font-weight: bold;
    margin-right: 5px;
    position: absolute;
    top: 30px;
    vertical-align: top;
    background: #ffffff;
}

.answer p {
    display: inline-block;
    padding-left: 50px;
}

.answer p:first-child {
    padding-left: 25px
}

/*----------------------------------------------------
견적문의
----------------------------------------------------*/

.tcetner {
    text-align: center;
    line-height: 1.3em;
}

.cont-title {
    display: block;
    font-size: 60px;
    margin-bottom: 20px;
    line-height: 1em;
}

.form-wrap {
    background: #f7f7f7;
    padding: 100px;
    margin-top: 20px;
}

.form-wrap .tright {
    width: 100%;
    text-align: right;
}

.cell {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 30px 0px 0px;
}

.cell:first-child {
    margin-top: 0px;
}

.col-form-label {
    width: 20%;
    vertical-align: middle;
    font-weight: 600;
}

.col {
    width: 80%;
}

.col input[type="text"],
.col input[type="email"],
.col input[type="tel"],
.col select,
.col textarea {
    width: 100%;
    padding: 12px;
    font-size: 20px;
    vertical-align: top;
    border: solid 1px #DDDDDD;
    vertical-align: middle;
}

.col .double li {
    width: calc(50% - 11px);
    margin-left: 15px;
    display: inline-block;
}

.col .triple li {
    width: calc(33.3333% - 14px);
    margin-left: 15px;
    display: inline-block;
}

.col .double li:first-child,
.col .triple li:first-child {
    margin-left: 0px;
}

.email-policy.visual {
    height: auto;
}

.email-policy.visual .page-title {
    bottom: 300px;
}

.email-policy.visual .page-navi {
    bottom: 400px;
}

.email-policy .email-policy-icon {
    width: 150px;
    display: block;
    margin: 0 auto;
    transform: translateY(240px);
}

.email-policy .artc .grey-box {
    background-color: #f6f6f6;
    padding: 40px;
    box-sizing: border-box;
    margin-bottom: 40px;
}

.email-policy .artc .grey-box.top p {
    line-height: 1.5;
    text-align: center;
    font-size: 22px;
}

.email-policy .artc .grey-box p {
    line-height: 1.4;
    font-size: 20px;
    margin-bottom: 10px;
}

.email-policy .artc .policy-title {
    display: block;
    font-size: 28px;
    padding-top: 30px;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.4;
}

.email-policy .artc .blue {
    color: #004DD8;
    display: block;
    margin-bottom: 20px;
    font-size: 22px;
}

.email-policy .artc li {
    line-height: 1.4;
    margin-left: 16px;
    margin-bottom: 10px;
    position: relative;
    font-size: 20px;
}

.email-policy .artc li::before {
    position: absolute;
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    background-color: #ccc;
    left: -16px;
    top: 14px;
}

.email-policy .artc .sub-list li::before {
    display: none;
}

.email-policy .artc li p {
    margin-left: 24px;
    display: block;
}

.email-policy .artc .grey-box p.mar {
    padding-left: 24px;
    display: inline-block;

}

.email-policy .artc li strong {
    padding-top: 10px;
    display: block;
}

.personal-info-icon {
    width: 150px;
    margin: 0 auto;
    display: block;
    transform: translateY(230px);
}

/* 반응형 */
@media screen and (max-width:1920px) {
    
    .type-cont .type-img::after {
        width: 2000px;
        left: 50%;
        transform: translateX(-50%);
    }

    

    .sustainable .img-sect.main svg {
        right: -1300px;
    }

    .sustainable .img-sect.main img:nth-of-type(1) {
        right: -900px;
    }

    .sustainable .img-sect.main img:nth-of-type(2) {
        right: -1000px;
    }
}

@media screen and (max-width: 1640px) {
    .cont-inner.det {
        padding: 0 20px;
    }
}

@media screen and (max-width:1615px) {



    .thumb-wrap .thumbs-small .small {
        width: 100px;
        height: 100px;
    }

    .process-box::after {
        width: 100%;
        left: 0px;
        top: 232px;
    }

    .process-box .step::before {
        top: 228px;
    }

    .history-wrap {
        padding-top: 120px;
    }

    .history-wrap:last-child {
        margin-bottom: 0px;
    }

    .history-wrap .cont-title {
        margin-top: 0px;
    }

    .sustainable .img-sect.main svg {
        right: -1550px;
        top: -60%;
    }

    .sustainable .img-sect.main img:nth-of-type(1) {
        right: -1150px;
        top: -30%;
    }

    .sustainable .img-sect.main img:nth-of-type(2) {
        right: -1200px;
        top: -45%;
    }

    .sustainable .img-sect.sub svg {
        bottom: -600px;
        left: -180px;
    }

    .sustainable .img-sect.sub img:nth-of-type(2) {
        bottom: -600px;
        left: -180px;
    }

    .sustainable .img-sect.sub img:nth-of-type(1) {
        bottom: -520px;
        left: -150px;
    }
}

@media screen and (max-width:1600px) {
    :root {
        font-size: 18px;
        line-height: 1.3;
    }

    header .inner {
        width: 100%;
        padding: 0 20px;
    }

    header .gnb-menu .depth01>li {
        width: 160px;
    }

    header .language .lang-option {
        left: 54%;
    }

    header .gnb-menu .depth02 li a {
        margin-left: 46px;
    }

    header .gnb-menu .depth01>li:last-of-type {
        padding-left: 20px;
    }

    .eng header .gnb-menu .depth02 li a {
        margin-left: 40px;
    }

    .eng header .gnb-menu .depth01 li:nth-of-type(3) .depth02 li a {
        margin-left: 42px;
    }

    .eng header .gnb-menu .depth01 li:nth-of-type(1) .depth02 li a {
        margin-left: 40px;
    }

    .eng header .gnb-menu .depth01 li:nth-of-type(4) .depth02 li a {
        margin-left: 60px;
    }

    .eng header .gnb-menu .depth01 li:nth-of-type(5) .depth02 li a {
        margin-left: 50px;
    }
    .drop-stitch .indicate{
        right: 45%;
    }
    .firm-flat .indicate{
        top: 25px;
        left: 53%;
    }

    .contents.ceo {
        padding: 140px 0;
    }

    .contents {
        margin: 140px 0px
    }



    .cont-inner {
        padding: 0px 20px;
    }

    footer .inner {
        width: 100%;
        padding: 60px 20px 86px;
    }

    .thumb-wrap .thumbs-big,
    .thumb-wrap .thumbs-small,
    .thumb-wrap .thumbs-small .small {
        width: 100%;
    }
    .thumb-wrap .thumbs-big {height: 340px;}

    .thumb-wrap .thumbs-big img {
        width: 100%;
        height: auto;
        top: 50%;
        transform: translateY(-50%);

    }

    .thumb-wrap .thumbs-small ul {
        margin: 10px 0 0 0;
        width: 100%;
        display: block;
    }

    .thumb-wrap .thumbs-small li {
        display: inline-block;
        vertical-align: top;
        margin-right: 10px;
        width: calc(20% - 10px);
        height: 100px;
    }

    .thumb-wrap .thumbs-small li:last-child {
        margin-right: 0px;
    }


    /*CEO*/
    .visual.ceo .text-area {
        width: 100%;
        padding: 0 20px;
    }

    .ceo .inner video {
        height: 40%;
    }

    .contents.ceo {
        min-height: auto;
    }

    /*연혁*/
    .history-wrap .cont-title {
        margin-bottom: 60px;
        padding-top: 0;
        padding-bottom: 0;
    }

    .history-wrap .cont-title.top {
        padding-top: 0;
    }

    .history-wrap .detail-box .list>li::before {
        left: 28px;
    }

    .history-wrap .detail-box .list ul {
        width: 100%
    }

    .history-wrap .detail-box .list {
        float: none;
    }

    .history-wrap .history-navi {
        display: none;
    }

    .history-wrap .term-box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 140px;
        padding: 0 20px;
    }

    .history-wrap .term-box h3 {
        font-size: 24px;
        font-weight: 600;
        line-height: 36px;
    }

    .history-wrap .term-box p {
        margin-top: 0;
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
    }

    .history-wrap .detail-box {
        position: relative;
        padding: 0px;
    }

    .history-wrap .detail-box .list {
        float: none;
        margin-right: 0;
    }

    .history-wrap .detail-box .list>li {
        padding-left: 0;
        padding-bottom: 80px;
    }

    .history-wrap .detail-box .list>li ul {
        margin-top: 20px;
        padding-left: 60px
    }

    .history-wrap .detail-box .list>li ul li {
        padding-left: 30px;
    }

    .history-wrap .detail-box .list>li .year {
        margin-left: 60px;
    }

    .history-wrap .detail-box .list>li .year::before {
        left: -40px;
    }

    .history-wrap .detail-box .list>li ul li~li {
        margin-top: 10px;
    }

    .history-wrap .detail-box .img-box {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        padding-bottom: 30px;
        margin-top: 15px;
    }

    .history-wrap .detail-box .img-box .swiper-slide {
        position: static;
    }

    .history-wrap .detail-box .img-box .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .history-wrap .detail-box .img-box .img01,
    .history-wrap .detail-box .img-box .img02,
    .history-wrap .detail-box .img-box .img03,
    .history-wrap .detail-box .img-box .img04,
    .history-wrap .detail-box .img-box .img05,
    .history-wrap .detail-box .img-box .img06,
    .history-wrap .detail-box .img-box .img07,
    .history-wrap .detail-box .img-box .img08,
    .history-wrap .detail-box .img-box .img09,
    .history-wrap .detail-box .img-box .img10,
    .history-wrap .detail-box .img-box .img11,
    .history-wrap .detail-box .img-box .img12,
    .history-wrap .detail-box .img-box .img13,
    .history-wrap .detail-box .img-box .img14,
    .history-wrap .detail-box .img-box .img15,
    .history-wrap .detail-box .img-box .img16,
    .history-wrap .detail-box .img-box .img17,
    .history-wrap .detail-box .img-box .img18,
    .history-wrap .detail-box .img-box .img19,
    .history-wrap .detail-box .img-box .img20 {
        width: 100%;
        height: 400px;
    }

    .history-wrap .detail-box .img-box .swiper-pagination {
        position: absolute;
        top: auto;
        bottom: -10px;
        font-size: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .history-wrap .detail-box .img-box .swiper-pagination .swiper-pagination-bullet {
        opacity: 1;
        width: 10px;
        height: 10px;
        margin: 0 5px;
        background: #bcbcbc;
    }

    .history-wrap .detail-box .img-box .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background: #004DD8;
    }

    #history.history-wrap .detail-box .list::before {
        height: 1700px;
    }

    .type-cont .type-img li {
        width: 50%;
    }

    .type-wrap picture.img img {
        height: auto;
    }

    .drop-stitch .img-sect {
        width: 60%;
    }

    .drop-stitch .text-sect {
        width: 100%;
        padding: 0 20px;
    }

    .eng .drop-stitch .indicate {
        right: 45%;
    }

    .firm-flat .text-sect {
        width: 100%;
        padding: 0 20px;
    }

    .tpu .inner {
        width: 100%;
        padding: 0 20px;
    }

    .feature {
        height: auto;
    }

    .feature .sub-sect-title {
        margin: 0px 0px 40px;
    }

    .feature .inner {
        width: 100%;
        padding: 0 20px;
    }

    .feature .inner picture {
        display: block;
    }

    .feature .inner picture:nth-of-type(1) {
        width: 100%;
    }

    .feature .inner picture:nth-of-type(2) {
        margin-top: 40px;
        margin-left: 30%;
        right: auto;
        position: relative;
    }

    .feature .inner picture:nth-of-type(3) {
        width: 100%;
        position: relative;
        bottom: 0;
        left: 200px;
    }

    .feature .inner picture:nth-of-type(4) {
        width: 100%;
        position: relative;
        left: 30%;
    }

    .moto .text-sect {
        width: 100%;
        padding: 0 20px;
    }


}

@media screen and (max-width:1500px) {
    .visual.ceo .ceo-title {
        font-size: 42px;
    }

    .type-cont .type-img li {
        width: 50%;
    }

    .type-wrap picture.img img {
        height: auto;
    }

    .drop-stitch .indicate {
        right: 46%;
    }


}

@media screen and (max-width:1400px) {
    .email-policy.visual .page-navi {
        bottom: 500px;
    }
    header .gnb-menu .depth01>li {
        width: 145px;
    }

    header .gnb-menu .depth02 li a {
        margin-left: 43px;
    }

    header .gnb-menu .depth01 li:nth-of-type(4) .depth02 li a {
        margin-left: 48px;
    }

    .eng header .gnb-menu .depth02 li a {
        margin-left: 30px;
    }

    .eng header .gnb-menu .depth01 li:nth-of-type(1) .depth02 li a {
        margin-left: 30px;
    }

    .eng header .gnb-menu .depth01 li:nth-of-type(5) .depth02 li a {
        margin-left: 40px;
    }

    .eng header .gnb-menu .depth01 li:nth-of-type(3) .depth02 li a {
        margin-left: 34px;
    }

    .eng header .gnb-menu .depth01 li:nth-of-type(4) .depth02 li a {
        margin-left: 53px;
    }

    .eng header .gnb-menu .depth01 li:nth-of-type(5) .depth02 li a {
        margin-left: 44px;
    }

    .process-box::after {
        width: 100%;
        left: 0px;
        top: 62%;
    }

    .process-box .step::before {
        top: 169px;
    }


    .gallery-list li .img_box {
        height: 300px;
    }

    .gallery-list02 li .img_box {
        height: 400px;
    }

    .process-box li:after {
        right: -19px;
        top: 22%;
    }

    .process-box li .ico-step01:before,
    .process-box li .ico-step02:before,
    .process-box li .ico-step03:before,
    .process-box li .ico-step04:before,
    .process-box li .ico-step05:before {
        width: 140px;
        height: 140px;
        background-size: 60%;
    }


    .pro-list .left-tit,
    .pro-list .right-list {
        width: 100%;
        display: block
    }

    .pro-list .right-list li {
        width: calc(20% - 5px);
    }

    .drop-stitch .indicate {
        right: 48%;
    }

    .firm-flat .img-sect {
        transform: scale(.7) translateX(-130px);
        width: 1800px;
    }

    .tpu .tpu-list li .list-txt {
        left: 670px;
        top: 50%;
        transform: translateY(-50%);
    }

    .type-wrap .type-box {
        width: 660px;
    }

    .video-container {
        position: relative;
        padding-bottom: 56.25%;
        padding-top: 30px;
        height: 0;
        overflow: hidden;
    }

    .video-container iframe,
    .video-container object,
    .video-container embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    footer .f-logo {
        width: 160px;
    }

    .visual .img-sect.ceo {
        height: 50vh;
        position: static;
    }
    

    .visual.ceo {
        height: auto;
    }

    .visual.ceo .ceo-text {
        height: auto;
    }

    .eng .visual.ceo {
        height: auto;
    }
    .visual .text-sect{
        height: 50%;
    }
    .visual.ceo .text-area {
        padding: 140px 20px;
    }
    .visual.ceo .ceo-title{
        color: #121212;
    }
    .visual.ceo .ceo-text{
        color: #121212;
    }
    .visual.ceo .ceo-text .bold{
        color: #121212;
    }
    .ceo .ceo-name{
        color: black;
    }
    .ceo .ceo-name .bold{
        color: black;
    }
    .ceo .signature{
        display: none;
    }
    .ceo .signature.black{
        display: block;
    }
    .ceo .ceo-name{
        font-size: 20px;
    }
}

@media screen and (max-width:1300px) {
    .img-sect.blog{
        background: url(../img/blog/sub_visual_blog-mobile.jpg);
        background-position: bottom;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .img-sect.notice{
        background: url(../img/support/sub_visual_notice-mobile.jpg);
        background-position: bottom;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .img-sect.faq{
        background: url(../img/support/sub_visual_faq-mobile.jpg);
        background-position: bottom;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .img-sect.buyer{
        background: url(../img/support/sub_visual_buyer-mobile.jpg);
        background-position: bottom;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .ceo .inner {
        width: 100%;
        padding: 0 20px;
    }
    .firm-flat .indicate{
        left: 65%;
    }

    .eng .drop-stitch .indicate p {
        font-size: 22px;
    }

    .eng .drop-stitch .indicate .indecate-1 p {
        transform: translateY(5px);
        margin-left: -20px;
    }

    .eng .drop-stitch .indicate .indecate-2 p {
        margin-left: -50px;
        transform: translateY(-10px);
    }

    .eng .firm-flat .indicate .indecate-1 p,
    .eng .firm-flat .indicate .indecate-2 p {
        font-size: 22px;
    }
}

@media screen and (max-width:1200px) {
    header:hover{
        background: white;
    }
    .eng header .gnb-menu .depth02 li a{
        margin-left: 0;
    }
    .eng header .gnb-menu .depth01 li:nth-of-type(5) .depth02 li a{
        margin-left: 0;
    }
    header .logo {
        width: 130px;
        margin-top: 0;
    }

    header .inner {
        height: 80px;
    }

    header .gnb-menu {
        width: calc(100% - 40px);
        position: absolute;
        top: 80px;
    }

    header .logo svg {
        width: 150px;
    }

    header.active::after {
        background: white;
    }

    header .mobile-menu-btn {
        display: flex;
        margin-top: 6px;
        cursor: pointer;
    }

    header .language .current {
        height: 80px;
    }

    header .gnb-menu .depth01 {
        width: 100%;
        flex-direction: column;
        flex-wrap: wrap;
        position: relative;
        display: none;
    }

    header.mobile-active .gnb-menu .depth01 {
        width: 100%;
        flex-direction: column;
        flex-wrap: wrap;
        position: relative;
        display: flex;
    }


    header .gnb-menu .depth01>li {
        width: 100%;
    }

    .eng header.active .gnb-menu .depth01>li:nth-of-type(2),
    .eng header.active .gnb-menu .depth01>li,
    header .gnb-menu .depth01>li {
        width: 100%;
    }

    header .gnb-menu .depth01 li:nth-of-type(6) {
        border-bottom: 0;
    }

    header .gnb-menu .depth01>li:last-of-type {
        padding-left: 0;
        position: absolute;
        top: -76px;
        right: 44px;
        border-bottom: 0;
    }

    header .gnb-menu .depth01>li.active>a {
        font-weight: 600;
    }

    header .gnb-menu .depth01>li.active>a::before {
        display: none;
    }

    header .language .lang-option {
        left: 6px;
        transform: translate(0, 0);
    }

    header .gnb-menu .depth01>li>a {
        position: relative;
        padding: 20px 0;
    }

    header .gnb-menu .depth01>li>a::after {
        position: absolute;
        content: "+";
        clear: both;
        width: 20px;
        height: 20px;
        font-size: 18px;
        right: -24px;
    }

    header .gnb-menu .depth01>li:nth-of-type(2)>a::after,
    header .gnb-menu .depth01>li:nth-of-type(6)>a::after {
        display: none;
    }

    header .gnb-menu .depth02>li a {
        padding: 10px 0;
    }

    header .gnb-menu .depth02>li:first-of-type a{
        padding-top: 20px;
    }
    
    header .gnb-menu .depth02>li:last-of-type a{
        padding-bottom: 20px;
    }

    header .gnb-menu .depth02 {
        position: relative;
        top: 0;
        height: auto !important;
    }

    header .gnb-menu .depth02 li a {
        margin-left: 0;
        margin-bottom: 0;
        text-align: center;
        background-color: #f6f6f6;
    }

    header .gnb-menu .depth01 li:nth-of-type(4) .depth02 li a {
        margin-left: 0;
    }

    .eng header.active .gnb-menu .depth01>li,
    header .gnb-menu .depth01>li {
        width: 100%;
    }

    .eng header.active .gnb-menu .depth01>li:nth-of-type(6),
    header .gnb-menu .depth01 li:nth-of-type(6) {
        border-bottom: 0;
    }

    .eng header.active .gnb-menu .depth01>li:last-of-type,
    header .gnb-menu .depth01>li:last-of-type {
        padding-left: 0;
        position: absolute;
        width: auto;
        top: -76px;
        right: 44px;
        border-bottom: 0;
    }

    .eng header .gnb-menu .depth01 li:nth-of-type(1) .depth02 li a {
        margin-left: 0;
    }

    .eng header .gnb-menu .depth01 li:nth-of-type(3) .depth02 li a {
        margin-left: 0;
    }

    .eng header .gnb-menu .depth01 li:nth-of-type(4) .depth02 li a {
        margin-left: 0;
    }
    .sub-tab.history{
        top: 80px;
    }
    .firm-flat .indicate .indecate-2 {
        left: 8px;
        top: 26px;
    }

    footer .footer-right address p {
        display: block;
    }

    footer .footer-right address p::after {
        display: none;
    }

    footer .footer-right {
        width: auto;
    }

    .gallery-list li .img_box {
        height: 260px;
    }

    .gallery-list li .category {
        min-width: 80px;
        font-size: 14px;
        padding: 5px 8px;
        top: 15px;
        right: 15px
    }

    .gallery-list02 li .img_box {
        height: 360px;
    }

    .gallery-list03 li .img_box {
        width: 400px;
    }

    .form-wrap {
        padding: 20px;
    }
    .process-box li:first-of-type .step::before{
        top: 48%;
    }

    .process-box::after {
        top: 57%
    }
    .eng .process-box::after{
        top: 49%;
    }

    .process-box li:after {
        right: -19px;
        top: 18%;
    }

    .process-box .step::before {
        top: 56%
    }

    .process-box li .ico-step01:before,
    .process-box li .ico-step02:before,
    .process-box li .ico-step03:before,
    .process-box li .ico-step04:before,
    .process-box li .ico-step05:before {
        width: 100px;
        height: 100px;
        background-size: 60%;
        margin-bottom: 30px;
    }

    .type-wrap .type-box {
        width: 50%;
    }

    .type-wrap .info {
        padding-left: 30px;
    }

    .type-wrap .type-box li:nth-of-type(1) {
        margin-top: 150px;
    }

    .type-wrap .info .top .gray-tit {
        font-size: 48px;
    }

    .drop-stitch .indicate .indecate-2 {
        transform: translate(45px, -10px);
    }

    .eng .drop-stitch .indicate .indecate-2 p {
        margin-left: 22px;
    }

    .eng .drop-stitch.on .indicate .indecate-2 .line,
    .drop-stitch.on .indicate .indecate-2 .line {
        width: 270px;
        transform: translate(210px, -20px);
    }

    .drop-stitch .indicate .indecate-2 p {
        margin-left: 80px;
    }

    .firm-flat .img-sect {
        transform: scale(.6) translateX(-448px);
        width: 1400px;
    }

    .eng .firm-flat .indicate,
    .firm-flat .indicate {
        left: 504px;
        top: 50px;
    }

    .sustainable .img-sect.main svg {
        right: -1700px;
        top: -60%;
    }

    .sustainable .img-sect.main img:nth-of-type(1) {
        right: -1300px;
        top: -30%;
    }

    .sustainable .img-sect.main img:nth-of-type(2) {
        right: -1350px;
        top: -45%;
    }

    .sustainable .img-sect.sub svg {
        bottom: -700px;
        left: -300px;
    }

    .sustainable .img-sect.sub img:nth-of-type(1) {
        bottom: -600px;
        left: -250px;
        max-width: none !important;
    }

    .sustainable .img-sect.sub img:nth-of-type(2) {
        bottom: -655px;
        left: -260px;
        max-width: none !important;
    }

}

@media screen and (max-width:1100px) {
    .type-cont .type-img::after {
        width: 100%;
        left: 0;
        transform: translateX(0);
    }
    .visual.ceo .ceo-title {
        font-size: 28px;
    }

    .sub-tab {
        overflow-x: auto;
        overflow-y: hidden;
        text-align: left;
        white-space: nowrap;
        /*border-bottom: solid 1px #dddddd; padding-bottom: 15px;*/
        padding: 0px 20px
    }
    .sub-tab.history{
        text-align: center;
    }
    .tpu .tpu-list li .list-txt {
        position: relative;
        left: 0;
        top: auto;
        margin-top: 20px;
        transform: translate(0, 0);
    }

    .tpu .tpu-list li .grey-text {
        bottom: auto;
        top: auto;
        left: auto;
        position: relative;
    }

    .tpu .tpu-list li:nth-of-type(6) .grey-text,
    .tpu .tpu-list li:nth-of-type(7) .grey-text {
        bottom: auto;
        top: auto;
        left: auto;
    }

    .tpu .tpu-list li:nth-of-type(1) .icon-img {
        left: auto;
        right: 20px;
    }
    
    .tpu .tpu-list li:nth-of-type(2) .icon-img {
        left: auto;
        right: 20px;
    }
    
    .tpu .tpu-list li:nth-of-type(3) .icon-img {
        left: auto;
        right: 20px;
    }
    
    .tpu .tpu-list li:nth-of-type(4) .icon-img {
        left: auto;
        right: 20px;
}
    
    .tpu .tpu-list li:nth-of-type(5) .icon-img {
        left: auto;
        right: 20px;
    }
    
    .tpu .tpu-list li:nth-of-type(6) .icon-img {
        left: auto;
        right: 20px;
    }
    
    .tpu .tpu-list li:nth-of-type(7) .icon-img {
        left: auto;
        right: 20px;
    }
}

@media screen and (max-width:980px) {

    .drop-stitch .text-sect .real-img {
        width: 70%;
        margin: 0 auto;
        margin-top: 40px;
        margin-bottom: 0;
    }

    .drop-stitch .text-sect .real-img::after {
        display: none;
    }

    .drop-stitch .text-sect .real-img img {
        width: 100%;
    }

    .drop-stitch .img-sect {
        width: 90%;
        position: relative;
        margin-left: auto;
        height: 600px;
        background-size: auto;
    }

    .drop-stitch {
        height: auto;
        flex-wrap: wrap;
        min-height: auto !important;
    }

    .drop-stitch .text-sect .sub-sect-title {
        text-align: center;
        margin-top: 40px;
    }

    .drop-stitch .text-sect .sub-sect-txt {
        text-align: center;
        margin: 0 auto;
        margin-bottom: 40px;
    }

    .drop-stitch .indicate {
        right: 50%;
    }

    .eng .drop-stitch .indicate {
        right: auto;
        left: -20px;
    }

    .firm-flat .indicate .indecate-1 p,
    .firm-flat .indicate .indecate-2 p {
        font-size: 22px;
    }

    .eng .drop-stitch .indicate p {
        padding-bottom: 0;
    }


    footer .inner {
        flex-wrap: wrap;
    }

    footer .footer-left {
        width: 100%;
    }

    footer .footer-right {
        width: 100%;
        margin-top: 20px;
    }

    footer .link-list {
        max-width: 600px;
    }

    footer .link-list li {
        width: 200px;
    }

    .drop-stitch .img-sect svg {
        margin-top: -50px;
    }

    .drop-stitch .img-sect img {
        margin-top: 0px;
    }

    .drop-stitch .indicate {
        right: 76%;
        top: 80%;

    }

    .drop-stitch.on .indicate .indecate-1 img {
        opacity: 1;
        position: absolute;
        top: 90px;
        right: -33px;
    }

    .drop-stitch .indicate p {
        font-size: 22px;
        margin-left: 40px;
        padding-bottom: 10px;
    }

    .drop-stitch .indicate .indecate-1 {
        transform: translate(224px, -230px);
    }

    .drop-stitch .indicate .indecate-2 p {
        margin-left: 135px;
    }

    .drop-stitch.on .indicate .indecate-2 .line {
        width: 210px;
    }

    .eng .drop-stitch.on .indicate .indecate-2 .line {
        width: 210px;
    }

    .eng .drop-stitch .indicate .indecate-2 p {
        margin-left: 0;
    }

    .drop-stitch .indicate .indecate-2 img {
        transform: translate(400px, -32px);
    }

}

@media screen and (max-width:940px) {

    .pro-list .right-list li.ico:before {
        width: 120px;
        height: 120px;
    }

    .pro-list .right-list li.ico-living01:before,
    .pro-list .right-list li.ico-living02:before,
    .pro-list .right-list li.ico-living03:before,
    .pro-list .right-list li.ico-living04:before,
    .pro-list .right-list li.ico-living05:before,
    .pro-list .right-list li.ico-gym01:before,
    .pro-list .right-list li.ico-gym02:before,
    .pro-list .right-list li.ico-gym03:before,
    .pro-list .right-list li.ico-gym04:before,
    .pro-list .right-list li.ico-aqua01:before,
    .pro-list .right-list li.ico-aqua02:before,
    .pro-list .right-list li.ico-aqua03:before,
    .pro-list .right-list li.ico-aqua04:before,
    .pro-list .right-list li.ico-aqua05:before,
    .pro-list .right-list li.ico-rescue01:before,
    .pro-list .right-list li.ico-rescue02:before,
    .pro-list .right-list li.ico-rescue03:before,
    .pro-list .right-list li.ico-rescue04:before,
    .pro-list .right-list li.ico-rescue05:before,
    .pro-list .right-list li.ico-iot01:before,
    .pro-list .right-list li.ico-iot02:before {
        background-size: 100%;
    }


    .depart-wrap li {
        width: calc(50% - 0px);
    }

    .depart-wrap li:nth-child(3),
    .depart-wrap li:nth-child(5) {
        border-left: solid 1px #dddddd;
    }

    .depart-wrap li:nth-child(4) {
        border-left: none;
    }
}



@media screen and (max-width:910px) {

    :root {
        font-size: 18px;
        line-height: 1.3em;
    }

    section {
        min-height: auto !important;
    }

    .br {
        display: none;
    }

    .gallery-list li {
        width: 50%;
        margin-bottom: 30px;
    }

    .gallery-list li,
    .gallery-list li:nth-child(4) {
        padding-left: 30px;
    }

    .gallery-list li .img_box {
        height: 300px;
    }

    .gallery-list li:nth-child(1),
    .gallery-list li:nth-child(3),
    .gallery-list li:nth-child(5) {
        padding-left: 0px;
    }

    .gallery-list li .tit {
        font-size: 24px;
    }

    .gallery-list li .txt {
        font-size: 18px;
    }

    .gallery-list02 li .img_box {
        height: 360px;
    }

    .gallery-list03 li {
        width: 100%;
    }

    .gallery-list03 li .img_box {
        width: 300px;
    }

    .gallery-list03 li .info_box {
        padding-left: 30px;
    }

    .gallery-list li,
    .gallery-list li:nth-child(4) {
        padding-left: 0px;
    }

    .thumb-wrap .thumb-modal {
        display: block;
    }

    .thumb-img,
    .thumb-info {
        padding: 0px;
        width: 100%;
    }

    .thumb-info {
        margin-top: 30px;
    }

    .thumb-info .txt {
        min-height: auto;
    }

    .cont-title,
    .map-cont .cont-title {
        font-size: 32px
    }

    .cont-title,
    .map-cont .cont-title {
        display: block;
    }

    .map-cont .info-list {
        width: 100%;
        float: none;
        display: block;
    }

    .map-cont .info-list li .tit {
        font-size: 20px;
    }

    .process-box {
        text-align: left;
    }

    .process-box::after,
    .process-box .step::before {
        display: none;
    }

    .process-box li {
        width: calc(50% - 3px);
        margin-bottom: 30px;
    }

    .process-box li:after {
        display: none;
    }

    .process-box .step {
        font-size: 14px
    }

    .process-box .tit {
        font-size: 18px
    }

    .process-box li .ico-step01:before,
    .process-box li .ico-step02:before,
    .process-box li .ico-step03:before,
    .process-box li .ico-step04:before,
    .process-box li .ico-step05:before {
        width: 120px;
        height: 120px;
        background-size: 60%;
        margin-bottom: 10px;
    }

    .drop-stitch .text-sect .sub-sect-title {
        font-size: 32px;
    }

    .drop-stitch .text-sect .sub-sect-txt {
        font-size: 18px;
    }

    .sub-sect-title {
        font-size: 32px;
    }

    .sub-sect-txt {
        font-size: 18px;
    }

    .firm-flat .text-sect p {
        margin-bottom: 40px;
    }

    .eng .firm-flat .indicate,
    .firm-flat .indicate {
        left: 379px;
        top: 46%;
    }

    .sustainable {
        height: 100vh;
    }

    .tpu {
        padding: 40px 0;
    }

    .tpu .tpu-list {
        margin-top: 20px;
    }

    .tpu .tpu-list li {
        padding: 38px 0;
    }

    .tpu .tpu-list li .number {
        font-size: 22px;
    }

    .tpu .tpu-list li .list-title {
        font-size: 22px;
        margin-left: -47px;
    }

    .tpu .tpu-list li .list-txt {
        font-size: 18px;
    }


    .tpu .tpu-list li .number::after {
        height: 20px;
        left: 38px;
        top: 5px;
    }

    .tpu .tpu-list li .grey-text {
        font-size: 20px;
    }


    .tpu .tpu-list li .icon-img {
        width: 80px;
        height: 80px;
    }

    .feature {
        padding: 40px 0;
    }

    .moto {
        padding: 40px 0;
        height: 500px;
    }

    .feature picture .figcaption {
        font-size: 22px;
    }

    .feature picture {
        display: block;
    }

    .feature picture img {
        width: 100%;
    }

    .feature .inner picture:nth-of-type(2) {
        margin-left: 0;
        margin-top: 30px;
    }

    .feature .inner picture:nth-of-type(3) {
        left: 0;
        margin-top: 30px;
    }

    .feature .inner picture:nth-of-type(4) {
        left: 0;
        margin-top: 30px;
    }

    .feature picture:nth-of-type(1) .figcaption {
        transform: translate(0, 10px);
    }

    .feature picture:nth-of-type(2) .figcaption {
        transform: translate(0, 10px);
    }

    .feature picture:nth-of-type(3) .figcaption {
        transform: translate(0, 10px);
    }

    .feature picture:nth-of-type(4) .figcaption {
        transform: translate(0, 10px);
    }

    .sustainable .img-sect.main svg {
        right: -1810px;
        top: -63%;
    }

    .sustainable .img-sect.main img:nth-of-type(2) {
        right: -1500px;
        top: -46%;
    }

    .sustainable .img-sect.main img:nth-of-type(1) {
        right: -1416px;
        top: -31%;
    }
}

@media screen and (max-width:860px) {
    .visual.ceo .ceo-title {
        left: 45%;
    }

    .visual .scroll-bar-sect {
        height: 130px;
    }

    .visual .scroll-bar {
        height: 70px;
    }
}

@media screen and (max-width:786px) {
    header .logo {
        width: 110px;
    }
    header .mobile-menu-btn{
        margin-top: 0;
    }
    header .inner{
        height: 60px;
    }
    header .language .current{
        height: 60px;
    }

    .sub-tab.history{
        top: 59px;
    }
    .eng .email-policy.visual .page-navi{
        bottom: 400px;
    }
    .email-policy.visual .page-navi{
        bottom: 373px;
    }
    .personal-info-icon{
        transform: translateY(338px);
    }
    .video-container {
        position: relative;
        padding-bottom: 56.25%;
        padding-top: 30px;
        height: 0;
        overflow: hidden;
    }

    .video-container iframe,
    .video-container object,
    .video-container embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .visual .page-navi {
        bottom: 120px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .visual .page-navi .navi-list li {
        font-size: 13px !important
    }

    .visual .page-title {
        font-size: 40px !important;
    }

    .contents {
        margin: 60px 0px
    }

    .visual.ceo .text-area {
        padding: 40px 20px;
    }

    .contents.ceo {
        padding: 40px 0;
    }

    .visual.ceo .ceo-text br {
        display: none;
    }

    .ceo .name-sect {
        flex-wrap: wrap;
        flex-direction: column;
    }

    .ceo .signature {
        margin-left: auto;
    }

    .cont-inner {
        margin-top: 40px;
    }

    .eng .firm-flat .indicate{
        left: 20px;
        top: 37%;
    }
    .firm-flat .indicate {
        left: 20px;
        top: 38%;
    }

    .firm-flat .indicate img {
        left: -14px;
    }

    .firm-flat .indicate .indecate-1 {
        left: 104px;
        top: 24px;
    }

    .firm-flat .indicate .indecate-1 svg path,
    .firm-flat .indicate .indecate-2 svg path {
        display: none;
    }

    .firm-flat .indicate .indecate-1 p {
        left: -50px;
        top: 126px;
    }

    .firm-flat .indicate .indecate-1 p::before {
        width: 2px;
        height: 100px;
        position: absolute;
        background-color: white;
        content: '';
        top: -116px;
        left: 50px;
    }

    .firm-flat .indicate .indecate-2 p::before {
        width: 2px;
        height: 149px;
        position: absolute;
        background-color: white;
        content: '';
        top: -164px;
        left: 10px;
    }

    .firm-flat .indicate .indecate-2 p {
        top: 172px;
        left: -10px;
    }

    .firm-flat .indicate .indecate-1 svg,
    .firm-flat .indicate .indecate-2 svg {
        transform: rotate(180deg);
    }

    .history .cont-inner {
        margin-top: 0;
    }

    .sub-tab {
        overflow-x: auto;
        overflow-y: hidden;
        text-align: left;
        white-space: nowrap;
        /*border-bottom: solid 1px #dddddd; padding-bottom: 15px;*/
        padding: 0px 20px
    }

    .sub-tab ul {
        text-align: center;
        font-size: 0;
    }

    .sub-tab li {
        margin-right: 15px;
    }

    .sub-tab li a {
        padding: 10px 15px;
        color: #000000;
        font-size: 20px;
    }

    .sub-tab li a.after-out::after {

        width: 33px;
        height: 13px;
    }

    .sub-tab li a.after-in::after {
        width: 23px;
        height: 17px;
    }

    .sub-tab li a.after-matt::after {
        width: 37px;
        height: 17px;
    }

    .sub-tab li a.after-tools::after {
        width: 23px;
        height: 17px;
    }

    .sub-tab li a.after-pool::after {
        width: 21px;
        height: 17px;
    }

    .sub-tab li a.after-boat::after {
        width: 19px;
        height: 17px;
    }

    .sub-tab li a.after-board::after {
        width: 21px;
        height: 19px;
    }

    .sub-tab li a.after-airtent::after {
        width: 24px;
        height: 17px;
    }

    .sub-tab li a.after-rescue::after {
        width: 24px;
        height: 17px;
    }

    .sub-tab li a.after-iot::after {
        width: 25px;
        height: 17px;
    }

    .sub-tab li a.after-event::after {
        width: 18px;
        height: 17px;
    }

    .pro-list .left-tit {
        font-size: 26px
    }

    .pro-list .right-list span {
        font-size: 18px
    }

    .pro-list .right-list li {
        width: calc(25% - 5px);
        margin: 20px 0;
    }

    .pro-list .right-list li.ico:before {
        width: 120px;
        height: 120px;
    }



    .board-list .t_head {
        display: none !important;
    }

    .board-list .t_row {
        border-bottom: 1px solid #ddd;
        display: block;
        padding: 20px 15px;
    }

    .board-list .t_row:first-child {
        padding: 0px;
    }

    .board-list .t_cell {
        display: inline-block;
        padding: 0px;
        vertical-align: middle;
        border-bottom: none;
        text-align: left;
        border-left: none
    }

    .fix_ico {
        font-size: 12px
    }

    .board-list .t_cell.num {
        font-size: 14px;
    }

    .board-list .t_cell.subject {
        display: block;
    }

    .board-list .t_cell.subject p {
        font-weight: 600;
        font-size: 18px;
        margin-top: 5px;
    }

    .board-list .t_cell.subject a {
        width: 100%;
        text-align: left;
        display: block;
        margin: 5px 0 5px 0;
        font-size: 20px;
        font-weight: 700;
    }

    .board-list .t_cell.ico-file::after {
        display: none;
    }

    .board-list .t_cell.date p,
    .board-list .t_cell.view p {
        font-size: 16px;
        vertical-align: middle;
    }

    .board-list .t_cell.date p::after {
        content: "";
        display: inline-block;
        width: 1px;
        height: 12px;
        background-color: #ddd;
        margin-left: 8px;
        margin-right: 3px;
    }

    .board-list .t_cell.date p::before,
    .board-list .t_cell.view p::before {
        width: 16px;
        height: 16px;
        content: '';
        display: inline-block;
        margin-right: 5px;
        opacity: .5;
    }

    .board-list .t_cell.date p::before {
        background: url('../img/ico_date.svg') no-repeat;
        background-size: cover;
    }

    .board-list .t_cell.view p::before {
        background: url('../img/ico_view.svg') no-repeat;
        background-size: cover;
    }

    .gallery-list li,
    .gallery-list li:nth-child(4) {
        padding-left: 20px;
    }

    .gallery-list li .img_box {
        height: 200px;
    }

    .gallery-list02 li .img_box {
        height: 360px;
    }

    .gallery-list03 li,
    .gallery-list03 li:nth-child(4) {
        padding-left: 0px;
    }

    .b-total {
        font-size: 16px
    }

    .search-box {
        float: none;
    }

    .search-box li,
    .search-box select,
    .search-box input[type=search],
    .btn-search {
        width: 100%;
        font-size: 16px;
    }

    .search-box {
        margin-top: 20px;
    }

    .search-box li {
        border-bottom: none;
    }

    .search-box select,
    .search-box input[type=search] {
        border-bottom: solid 1px #000000;
        margin-bottom: 10px;
    }

    .btn-search {
        font-weight: bold;
        border: solid 1px #000000;
        background: #ffffff;
        color: #000000;
    }

    .btn-search::before {
        width: 13px;
        height: 13px;
        background-size: cover;
        vertical-align: middle;
        margin-right: 5px;
    }


    .btn-black,
    .btn-blue {
        display: block;
        width: 100%;
        padding: 20px 0px;
        height: auto;
    }

    .col .double li,
    .col .triple li,
    .col-form-label,
    .col {
        width: 100%;
        margin-left: 0px;
        margin-bottom: 10px;
    }

    .col .double li:last-child,
    .col .triple li:last-child {
        margin-bottom: 0px;
    }

    .history-wrap {
        padding-top: 145px;
    }

    .history-wrap .detail-box .img-box .img01,
    .history-wrap .detail-box .img-box .img02,
    .history-wrap .detail-box .img-box .img03,
    .history-wrap .detail-box .img-box .img04,
    .history-wrap .detail-box .img-box .img05,
    .history-wrap .detail-box .img-box .img06,
    .history-wrap .detail-box .img-box .img07,
    .history-wrap .detail-box .img-box .img08,
    .history-wrap .detail-box .img-box .img09,
    .history-wrap .detail-box .img-box .img10,
    .history-wrap .detail-box .img-box .img11,
    .history-wrap .detail-box .img-box .img12,
    .history-wrap .detail-box .img-box .img13,
    .history-wrap .detail-box .img-box .img14,
    .history-wrap .detail-box .img-box .img15,
    .history-wrap .detail-box .img-box .img16,
    .history-wrap .detail-box .img-box .img17,
    .history-wrap .detail-box .img-box .img18,
    .history-wrap .detail-box .img-box .img19,
    .history-wrap .detail-box .img-box .img20 {
        width: 100%;
        height: 200px;
        overflow: hidden;
    }

    .history-wrap .detail-box .list>li::before {
        left: 8px;
    }

    .history-wrap .detail-box .list>li .year {
        position: static;
        font-size: 26px;
        margin-left: 40px;
    }

    .history-wrap .detail-box .list>li ul {
        padding-left: 40px;
    }

    .history-wrap .detail-box .list>li {
        padding-bottom: 40px;
    }

    .history-wrap .detail-box .list>li ul li .month {
        font-size: 22px;
    }

    .history-wrap .detail-box .list>li ul li>p {
        font-size: 16px;
        line-height: 24px;
        margin: 0;
        margin-top: 4px;
        margin-left: 20px;
    }

    .history-wrap .detail-box .list>li .year::before {
        left: 0px;
        top: 5px;
    }

    .history-wrap .cont-title {
        margin-bottom: 20px;
    }


    .type-cont .type-img li {
        width: 100%;
        transition: 0;
    }

    .type-wrap .type-box {
        width: 100%;
    }

    .type-wrap .info {
        padding-left: 0;
        padding: 30px;
    }

    .type-wrap .info .top .tit {
        color: white;
        font-size: 28px;
    }

    .type-cont .type-img::after {
        display: none;
    }

    .type-wrap .info p {
        color: white;
    }

    .type-wrap .info p strong {
        color: white;
    }

    .type-wrap .info .top .gray-tit {
        color: rgba(255, 255, 255, .4);
    }

    .type-wrap .type-box li:nth-of-type(3) {
        margin-top: 380px;
    }

    .type-wrap .type-box li:nth-of-type(2) {
        margin-top: 450px;
    }

    .eng .type-wrap .type-box li:nth-of-type(2),
    .eng .type-wrap .type-box li:nth-of-type(3) {
        margin-top: 430px;
    }

    section.type-wrap {
        margin-bottom: 0px;
        height: 1540px;
    }

    .product-info-wrap section {
        margin-top: 0;
    }

    .type-cont .cont-title {
        padding-top: 40px;
        padding-bottom: 0;
        top: 0px;
    }

    .thumb-info .tit {
        font-size: 24px;
    }

    .thumb-info .txt {
        font-size: 18px;
    }

    .product-info-wrap .top-box {
        margin-bottom: 0;
    }

    .type-wrap .type-box li:nth-of-type(1) {
        margin-top: 280px;
    }

    .type-cont {
        top: 60px;
    }

    .type-cont .type-img {
        top: 120px;
    }

    .visual.ceo .ceo-text {
        text-align: center;
    }

    .type-wrap picture.img img {
        width: auto;
        max-width: none !important;
        height: 600px;
    }

    .drop-stitch .indicate .indecate-1 {
        transform: translate(149px, -230px);
    }

    

    .firm-flat .img-sect {
        transform: scale(.6) translate(-300px, -100px);
    }
    .eng .firm-flat .img-sect {
        transform: scale(.6) translate(-300px, -200px);
    }

    .firm-flat .text-sect {
        height: 900px;
    }

    .firm-flat .text-sect br {
        display: none;
    }

    .sustainable .text-sect h3,
    .sustainable .text-sect p {
        width: 100%;
        padding: 0 20px;
    }

    .sustainable .text-sect p br {
        display: none;
    }

    .sustainable {
        height: 930px;
    }

    .tpu .tpu-list li:nth-of-type(1) .icon-img,
    .tpu .tpu-list li:nth-of-type(2) .icon-img,
    .tpu .tpu-list li:nth-of-type(3) .icon-img,
    .tpu .tpu-list li:nth-of-type(4) .icon-img,
    .tpu .tpu-list li:nth-of-type(5) .icon-img {
        left: auto;
        right: 0;
    }

    .tpu .tpu-list li:nth-of-type(6) .icon-img {
        left: auto;
        right: 0;
    }

    .tpu .tpu-list li:nth-of-type(7) .icon-img {
        left: auto;
        right: 0;
    }

    .fixed-top-btn {
        bottom: 20px;
        right: 20px;
    }

    .fixed-top-btn svg {
        width: 50px;
        height: 50px;
    }

    .board-table.no-txt {
        font-size: 18px;
    }

}

@media screen and (max-width:600px) {
    
    .eng .drop-stitch .indicate .indecate-1 p{
        margin-left: 76px;
    }
    .notice p{
        display: none;
    }
    .drop-stitch .img-sect svg {
        left: 45%;
    }

    .history-title {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 246px;
        font-size: 48px;
        line-height: 1.2;
    }

    .product-info-wrap .top-box {
        margin-bottom: 0px;
    }

    .pro-list {
        padding: 30px 0px
    }

    .pro-list .left-tit {
        text-align: center;
    }

    .pro-list .right-list li {
        width: calc(50% - 5px);
        margin: 10px 0;
    }

    .pro-list .right-list li.ico:before {
        margin-bottom: 8px;
    }

    .depart-wrap li,
    .depart-wrap li:nth-child(1),
    .depart-wrap li:nth-child(3),
    .depart-wrap li:nth-child(5) {
        width: 100%;
        border-left: none;
        border-right: none;
        padding: 30px 0px
    }

    .depart-wrap li strong {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .depart-wrap dl {
        margin-top: 10px;
    }

    .map-cont .info-list li {
        display: block;
        padding: 20px 0px;
    }

    .map-cont .info-list li .tit,
    .map-cont .info-list li .txt {
        width: 100%;
    }

    .map-cont .info-list li .tit {
        margin-bottom: 10px;
    }

    .map-cont .info-list dt,
    .info-list dd {
        display: block;
        margin-bottom: 5px;
    }

    .info-list dl.mt10 {
        margin-top: 0px;
    }

    .line-box:before {
        font-size: 16px;
        line-height: 1.5em;
        height: auto;
    }

    .map-cont .info-list li .txt2 {
        margin-top: 10px;
    }

    .visual.ceo .ceo-title {
        left: 50%;
        transform: translateX(-50%);
        bottom: -34vh;
        font-size: 26px;
        padding: 0 20px;
        width: 322px;
    }

    footer .footer-right .info-list {
        flex-wrap: wrap;
    }

    footer .footer-right .info-list li {
        width: 100%;
        margin-bottom: 6px;
    }

    footer .footer-right .info-list li:last-of-type {
        margin-bottom: 0;
    }

    footer .footer-right .info-list li a::after {
        display: none;
    }

    .drop-stitch .img-sect {
        height: 500px;
        width: 100%;
    }

    .tpu .tpu-list li .icon-img {
        display: none;
    }

    .eng .ceo .ceo-name .bold {
        display: block;
        margin-top: 8px;
    }

    .ceo .signature {
        margin-top: 20px;
    }

    .eng .email-policy.visual .page-navi {
        bottom: 350px;
    }
    .eng .email-policy.visual .page-title {
        bottom: 200px;
    }

    
}

@media screen and (max-width:500px) {
    
    .visual.patents .page-navi {
        bottom: 160px;
    }

    .visual.patents .page-title {
        padding: 0 20px;
    }

    .eng .drop-stitch .indicate .indecate-1 p {
        transform: translateY(50px);
        margin-left: 106px;
    }

    .eng .drop-stitch.on .indicate .indecate-1 img {
        right: 16px;
    }

    .eng .drop-stitch.on .indicate .indecate-1 svg {
        transform: rotate(0);
        margin-top: 80px;
    }

    .eng .drop-stitch.on .indicate .indecate-1 svg path {
        transform: rotate(270deg);
    }

    .gallery-list li {
        width: 100%;
    }


    .gallery-list li,
    .gallery-list li:nth-child(4) {
        padding-left: 0px;
    }

    .gallery-list li .img_box {
        height: 180px;
    }

    .gallery-list.gallery-list02 li .img_box {
        height: 360px;
    }

    .gallery-list li .category {
        min-width: 60px;
        font-size: 12px;
        top: 10px;
        right: 10px
    }

    .gallery-list li .tit {
        font-size: 20px;
    }

    .gallery-list li .txt {
        font-size: 16px;
    }

    .gallery-list li .img_box,
    .gallery-list li .info_box {
        display: block;
    }

    .gallery-list li .img_box {
        width: 100%;
    }

    .gallery-list03 li .info_box,
    .gallery-list03 li,
    .gallery-list03 li:nth-child(4) {
        padding-left: 0px;
    }

    .gallery-list03 li .date {
        margin-top: 20px;
    }

    .gallery-list03 li {
        margin-bottom: 0px;
    }

    footer .link-list li {
        width: 50%;
    }

    .drop-stitch.on .indicate .indecate-2 .line {
        width: 100px;
    }

    .drop-stitch .indicate .indecate-2 img {
        transform: translate(300px, -32px);
    }

    .eng .drop-stitch .indicate .indecate-1 {
        transform: translate(64px, -263px);
    }

    .drop-stitch .indicate .indecate-1 {
        transform: translate(139px, -235px);
    }

    .eng .drop-stitch .indicate .indecate-2 {
        transform: translate(45px, -183px);

    }

    .eng .drop-stitch .indicate .indecate-2 {
        transform: translate(45px, -138px);
    }

    .eng .drop-stitch.on .indicate .indecate-2 .line {
        display: none;
    }

    .eng .drop-stitch .indicate .indecate-2 img {
        transform: translate(190px, -32px);
    }

    .eng .firm-flat .text-sect p,
    .eng .sustainable .text-sect p,
    .eng .drop-stitch .text-sect .sub-sect-txt {
        width: 100%;
    }

    .eng .firm-flat .text-sect {
        margin-top: 100px;
    }

    .tpu .tpu-list li .grey-text {
        display: none;
    }

    .prev-next li .date {
        display: none;
    }
    .prev-next li a{
        padding-top: 10px;
    }
    .form-wrap {
        margin: 20px -20px 0;
    }

}

@media screen and (min-height:1081px) {
    .drop-stitch .img-sect img {
        transform: translateY(50px);
    }

    .drop-stitch.on .img-sect img {
        transform: translateY(20px) scaleY(1.2);
    }
}
@media screen and (max-height: 900px){
    .firm-flat .img-sect{
        transform: scale(.7) translateX(-168px);
        width: 1800px;
    }
    .firm-flat .text-sect p{
        margin-bottom: 50px;
    }
}
@media screen and (max-width: 768px) and (max-height: 900px){
    .firm-flat .img-sect {
        transform: scale(.65) translate(-300px, -200px);
    }
    .firm-flat .indicate {
        left: 20px;
        top: 37%;
    }
}
@media screen and (min-width: 769px) and (max-height: 800px){
    .sub-sect-title{
        font-size: 44px;
    }
    .sub-sect-txt{
        font-size: 18px;
    }
    .drop-stitch .indicate p,
    .firm-flat .indicate p{
        font-size: 22px;
    }
    .drop-stitch .indicate p{
        padding-bottom: 10px;
        margin-left: 30px;
    }
    .drop-stitch .indicate .indecate-1 p{
        margin-left: 40px;
    }
    .eng .drop-stitch .indicate .indecate-1 p{
        transform: translateY(15px);
        margin-left: -20px;
    }
    .eng .drop-stitch .indicate .indecate-2 p{
        transform: translateY(0px);
        margin-left: -50px;
    }

    .tpu{
        padding: 60px 0;
    }
    .tpu .tpu-list{
        margin-top: 26px;
    }
    .feature{
        padding: 60px 0 0;
    }
    .feature .sub-sect-title{
        margin: 0 0 26px;
    }
}
@media screen and (max-height: 800px) and (max-width : 1020px){
    .firm-flat .img-sect {
        transform: scale(.6) translate(-300px, -100px);
    }
    .eng .firm-flat .img-sect{
        transform: scale(.6) translate(-300px, -200px);
    }
}
@media screen and (min-height: 1000px) and (max-width: 1200px){
    .firm-flat .img-sect {
        transform: scale(.7) translateX(-300px);
        width: 1800px;
    }
    .eng .firm-flat .img-sect {
        transform: scale(.75) translateX(-300px);
        width: 1800px;
    }
    .eng .firm-flat .indicate, .firm-flat .indicate{
        top: 52%;
    }
}
@media screen and (min-height: 1300px) and (max-width: 1200px){
    .eng .firm-flat .indicate, .firm-flat .indicate{
        left: 573px;
    top: 110px;
    }
}

@media screen and (min-width:2400px){
    .drop-stitch .inner,
    .firm-flat .inner{
        width: 2000px;
        margin: 0 auto;
        position: relative;
    }
    .drop-stitch .inner::after{
        position: absolute;
        content: '';
        width: 1825px;
        height: 100vh;
        top: 0;
        right: -49%;
        background:url(../img/company/blue-bg.png);
        background-repeat: no-repeat;
        background-size: cover;
        z-index: 1;
    }
    
    .drop-stitch .img-sect{
        overflow: visible;
        height: 100%;
        transform: scale(1.2);
        right: 200px;
    }
    
    .drop-stitch{
        align-items: flex-start;
        overflow: hidden;
    }
    .drop-stitch .text-sect{
        margin: 10% auto;
    }
    .sustainable .img-sect.main svg{
        top: -38%;
    }
    .firm-flat .img-sect{
        transform: scale(1.2);
        width: 1600px;
        position: relative;
        margin: 0 auto;
    }
    .drop-stitch .indicate{
        right: 42%;
        top: 34%;
    }
    .firm-flat .indicate{
        left: 1390px;
    }
}
@media screen and (min-width:2600px){
    .drop-stitch .indicate{
        right: 32%;
    }
    .firm-flat .indicate{
        left: 55%;
    }
    .sustainable .img-sect.main svg{
        right: -42%;
        top: -34%;
    }
    .sustainable .img-sect.main img:nth-of-type(1){
        right: -29%;
        top: -13%;
    }
    .sustainable .img-sect.main img:nth-of-type(2){
        top: -22%;
        right: -32%;
    }
}
@media screen and (max-width: 1200px) and (max-height:900px){
    .eng .firm-flat .indicate, .firm-flat .indicate {
        left: 730px;
        top: 67px;
    }
}
@media screen and (max-width:480px) and (max-height:900px) {
    
    .firm-flat .indicate {
        left: 20px;
        top: 300px;
    }
    .eng .firm-flat .indicate {
        left: 20px;
        top: 33%;
    }
    .firm-flat .indicate .indecate-1 p{
        transition: 1s 1.3s;
    }
}

