@charset "utf-8";

div, p, strong, span, b, ul, li, h1, h2, h3, h4, h5 {word-break: keep-all;}
img {max-width: 100%;}

.title {margin-bottom: 50px;}
.title .en {
    font-size: 80px;
    font-weight: 900;
    opacity: 0.06;
    line-height: 1;
    margin-bottom: -30px;
}
.title h3 {
    font-size: 50px;
    font-weight: 300;
}
.title h3 b {font-weight: 800;}
.desc {
    font-size: 20px;
    line-height: 1.7;
}
.more-btn {
    background: #18a8a3;
    border-radius: 8px 20px 20px 20px;
    padding: 0 30px;
    height: 60px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 200px;
    width: fit-content;
    transition: all .2s;
    border: none;
}
.more-btn b {font-size: 18px;}
.more-btn .arrow {
    width: 14px !important;
    aspect-ratio: 14 / 12;
}
.more-btn .arrow .color {
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5px;
}
.more-btn:hover {background: #64b16b;}
.more-btn.light {
    background: #e8efef;
    color: #18a8a3;
}
.more-btn.light .arrow .color {stroke: #18a8a3;}
.more-btn.light:hover {
    background: #18a8a3;
    color: #fff;
}
.more-btn.light:hover .arrow .color {stroke: #fff;}
.arrow-btn {
    height: 50px;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.arrow-btn .arrow {
    width: 19px !important;
    aspect-ratio: 19 / 16;
    transform: rotate(-45deg);
}
.arrow-btn .arrow .color {
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5px;
}
@media all and (max-width: 1024px) {
    .desc {font-size: 18px;}
}
@media all and (max-width: 767px) {
    .title {margin-bottom: 20px;}
    .title .en {
        font-size: 24px;
        margin-bottom: -10px;
    }
    .title h3 {font-size: 26px;}
    .desc {
        font-size: 15px;
        line-height: 1.5;
    }
    .more-btn {
        padding: 0 16px;
        border-radius: 4px 10px 10px 10px;
        height: 45px;
        min-width: 150px;
    }
    .more-btn b {font-size: 15px;}
    .arrow-btn {
        width: 36px;
        height: 36px;
    }
}

/*main*/
.main section {
    position: relative;
    padding: 120px 0;
}
.main .container {max-width: 1500px;}
.main .hero {
    height: 100dvh;
    background: #000;
}
.main .hero .txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    z-index: 2;
    color: #fff;
    width: 100%;
    padding: 0 16px;
}
.main .hero .txt p {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 4px;
}
.main .hero .txt strong {
    display: block;
    font-size: 80px;
    margin: 25px 0 50px;
    line-height: 1.2;
}
.main .hero .txt .more-btn {margin: 0 auto;}
.main .hero .video-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
}
.main .hero .video-slider video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main .hero .scroll {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
    z-index: 2;
    text-align: center;
}
.main .hero .scroll p {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1;
    color: #fff;
}
.main .hero .scroll img {animation: scroll 1s ease-in-out 0s infinite alternate;}
@keyframes scroll {
    0%{transform:translate(0,15px);}
    100%{transform:translate(0,0);}
}
.main .business {padding-bottom: 0;}
.main .business ul li {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 50px 0;
}
.main .business ul li .container {
    display: flex;
    flex-wrap: wrap;
}
.main .business ul li .txt {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    width: 40%;
    padding: 50px 0;
    padding-right: 50px;
}
.main .business ul li .txt h4 {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 40px;
}
.main .business ul li .img {width: 60%;}
.main .business ul li .img img {
    max-width: none;
    width: 100%;
}
.main .strengths {background: url(/img/assets/main_strengths_bg.jpg) center / cover no-repeat;}
.main .strengths ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.main .strengths ul li {
    flex: 1;
    background: #fff;
    padding: 70px 50px;
}
.main .strengths ul li .ico {height: 98px;}
.main .strengths ul li h4 {
    font-size: 30px;
    font-weight: 800;
    margin: 50px 0 40px;
}
.main .media .tab-menu {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}
.main .media .tab-menu li {
    font-size: 24px;
    font-weight: 800;
    opacity: 0.3;
    transition: all .2s;
    cursor: pointer;
}
.main .media .tab-menu li:hover,
.main .media .tab-menu li.active {opacity: 1;}
.main .media .content {
    display: flex;
    flex-wrap: wrap;
}
.main .media .tab-content {width: 70%;}
.main .media .tab-content > div {display: none;}
.main .media .tab-content > div.active {display: block;}
.main .media .link {
    width: 30%;
    padding-left: 50px;
}
.main .media .link a {
    background: #f4f6f8;
    padding: 50px 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}
.main .media .link a:last-child {margin-bottom: 0;}
.main .media .link .txt {width: calc(100% - 60px)}
.main .media .link .txt b {
    font-size: 20px;
    display: block;
    color: #697070;
    font-weight: 800;
    margin-top: 15px;
}
.main .media .link .blog .arrow-btn {background: #03c75a;}
.main .media .link .youtube .arrow-btn {background: #ff0000;}
.main .media .board-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.main .media .board-list li {width: calc((100% - 60px)/3);}
.main .media .board-list li:last-child {margin-right: 0;}
.main .media .board-list li a {display: block;}
.main .media .board-list li .img {
    aspect-ratio: 330 / 250;
    overflow: hidden;
}
.main .media .board-list li .img span {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    display: block;
    transition: all .2s;
}
.main .media .board-list li:hover .img span {transform: scale(1.1)}
.main .media .board-list li .txt {margin-top: 30px;}
.main .media .board-list li .txt .subject {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap:break-word;
    line-height: 1.4em;
    height: 2.8em;
    overflow: hidden;
}
.main .media .board-list li .txt .date {
    font-size: 14px;
    color: #666;
}
@media all and (max-width: 1300px) {
    .main .business ul li .txt {
        padding: 0;
        padding-right: 50px;
    }
    .main .media .link a {padding: 30px;}
    .main .media .link a .txt {
        width: 100%;
        margin-bottom: 20px;
    }
    .main .media .link .arrow-btn {margin-left: auto;}
}
@media all and (max-width: 1024px) {
    .main .business ul li .txt h4 {
        font-size: 40px;
        margin-bottom: 20px;
    }
    .main .strengths ul li {
        flex: auto;
        width: 100%;
        text-align: center;
    }
    .main .media .tab-content,
    .main .media .link {width: 100%;}
    .main .media .link {
        padding: 50px 0 0;
        display: flex;
        gap: 15px;
    }
    .main .media .link a {
        flex: 1;
        margin: 0;
    }
    .main .media .link .txt img {height: 28px;}
}
@media all and (max-width: 991px) {
    .main .business ul li .txt {
        width: 100%;
        padding: 0 0 50px;
        text-align: center;
    }
    .main .business ul li .txt .more-btn {margin: 30px auto 0;}
    .main .business ul li .img {width: 100%;}
}
@media all and (max-width: 767px) {
    .main section {padding: 60px 0;}
    .main .hero .txt p {font-size: 14px;}
    .main .hero .txt strong {
        font-size: 40px;
        margin: 15px 0 20px;
    }
    .main .business ul li {padding: 30px 0;}
    .main .business ul li .txt {padding-bottom: 30px;}
    .main .business ul li .txt h4 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .main .business ul li .txt .more-btn {margin-top: 20px;}
    .main .strengths ul li {padding: 30px;}
    .main .strengths ul li .ico {height: auto;}
    .main .strengths ul li .ico img {
        max-width: 100px;
        max-height: 60px;
    }
    .main .strengths ul li h4 {
        font-size: 20px;
        margin: 25px 0 15px;
    }
    .main .media .tab-menu {
        gap: 20px;
        margin-bottom: 20px;
    }
    .main .media .tab-menu li {font-size: 18px;}
    .main .media .board-list li {width: 100%;}
    .main .media .board-list li .txt {margin-top: 15px;}
    .main .media .board-list li .txt .subject {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .main .media .link {
        padding-top: 30px;
        gap: 10px;
    }
    .main .media .link a {padding: 15px;}
    .main .media .link a .txt {margin-bottom: 10px;}
    .main .media .link .txt img {height: 18px;}
    .main .media .link .txt b {
        font-size: 16px;
        margin-top: 10px;
    }
}

/*sub*/
.sub section {padding: 120px 0;}
.sub section:first-child {padding-top: 0;}
.sub .title {margin-bottom: 80px;}
@media all and (max-width: 767px) {
    .sub section {padding: 60px 0;}
    .sub .title {margin-bottom: 20px;}
}

/*greeting*/
.sub-greeting {
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
}
.sub-greeting > div {flex: 1;}
.sub-greeting .txt .sign {
    display: flex;
    align-items: center;
    gap: 0 10px;
    margin-top: 60px;
}
.sub-greeting .txt .sign .symbol {width: 28px;}
.sub-greeting .txt .sign b {
    font-size: 16px;
    color: #666;
}
.sub-greeting .img {position: relative;}
.sub-greeting .img::before {
    content: "";
    background: #64b16b;
    width: 30%;
    height: 20px;
    display: block;
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 1;
}
.sub-greeting .img::after {
    content: "";
    background: #64b16b;
    width: 20px;
    height: 28%;
    display: block;
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 1;
}
.sub-greeting .img img {
    max-width: none;
    width: 100%;
}
@media all and (max-width: 1024px) {
    .sub-greeting > div {
        flex: auto;
        width: 100%;
    }
}
@media all and (max-width: 767px) {
    .sub-greeting {gap: 40px;}
    .sub-greeting .txt .sign {margin-top: 30px;}
    .sub-greeting .txt .sign .symbol {width: 20px;}
    .sub-greeting .txt .sign b {font-size: 14px;}
    .sub-greeting .txt .sign img:last-child {width: 40px;}
    .sub-greeting .img::before {
        height: 10px;
        top: -10px;
        right: -10px;
    }
    .sub-greeting .img::after {
        width: 10px;
        top: -10px;
        right: -10px;
    }
}

/*story*/
.sub-story {text-align: center;}
.sub-story img {margin-top: 60px;}
@media all and (max-width: 767px) {
    .sub-story img {margin-top: 30px;}
}

/*meaning*/
.sub-meaning .logo {text-align: center;}
.sub-meaning .logo p {
    font-size: 50px;
    font-weight: 100;
    color: #d1d1d1;
    gap: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}
.sub-meaning .logo p b {
    color: #868686;
    font-weight: 800;
}
.sub-meaning .logo strong {
    display: block;
    font-size: 30px;
    margin: 70px 0 40px;
}
.sub-meaning .logo strong span {color: #18a8a3;}
.sub-meaning .mascot {background: #f5f6fa;}
.sub-meaning .mascot ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 80px;
}
.sub-meaning .mascot ul li > div {width: 50%;}
.sub-meaning .mascot ul li .img {
    background: #fff;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sub-meaning .mascot ul li .txt {padding-left: 80px;}
.sub-meaning .mascot ul li .txt h4 {
    font-size: 40px;
    color: #fff;
    border-radius: 8px 20px 20px 20px;
    padding: 6px 25px;
    display: inline-block;
    margin-bottom: 50px;
}
.sub-meaning .mascot ul li:first-child .txt h4 {background: #9cc391;}
.sub-meaning .mascot ul li:last-child {margin-bottom: 0;}
.sub-meaning .mascot ul li:last-child .img {order: 2;}
.sub-meaning .mascot ul li:last-child .txt {
    order: 1;
    padding-left: 0;
    padding-right: 80px;
}
.sub-meaning .mascot ul li:last-child .txt h4 {background: #70b0ad;}
@media all and (max-width: 767px) {
    .sub-meaning .logo p {
        font-size: 30px;
        gap: 12px;
        margin-bottom: 30px;
    }
    .sub-meaning .logo p img {width: 30px;}
    .sub-meaning .logo .img {max-width: 200px;}
    .sub-meaning .logo strong {
        font-size: 20px;
        margin: 30px 0 20px;
    }
    .sub-meaning .mascot ul li {margin-bottom: 40px;}
    .sub-meaning .mascot ul li > div {width: 100%;}
    .sub-meaning .mascot ul li .img {order: 1 !important;}
    .sub-meaning .mascot ul li .img img {max-height: 200px;}
    .sub-meaning .mascot ul li .txt {
        padding: 30px 0 0 !important;
        order: 2 !important;
    }
    .sub-meaning .mascot ul li .txt h4 {
        font-size: 24px;
        padding: 3px 15px;
        margin-bottom: 20px;
        border-radius: 4px 10px 10px 10px;
    }
}

/*vision*/
.sub-vision section {
    border-bottom: 1px solid rgba(0,0,0,0.2);
    padding: 100px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
}
.sub-vision section:first-child {padding-top: 0;}
.sub-vision section:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.sub-vision .title {
    width: 38%;
    padding-right: 50px;
}
.sub-vision .content {width: 62%;}
.sub-vision .content strong {
    display: block;
    font-size: 30px;
    margin-bottom: 40px;
}
.sub-vision .vision img {margin-top: 50px;}
.sub-vision .mission ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 50px;
}
.sub-vision .mission ul li {
    flex: 1;
    background: #f1f3f8;
    border-radius: 8px 20px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: #74767b;
    padding: 20px;
    min-height: 150px;
}
.sub-vision .values ul li {
    border-bottom: 1px solid #dfdfdf;
    padding: 50px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
}
.sub-vision .values ul li:first-child {padding-top: 0;}
.sub-vision .values .number {
    width: 40px;
    font-size: 20px;
    font-weight: bold;
    color: #c0c3ca;
    margin-top: 2px;
}
.sub-vision .values h4 {
    font-size: 36px;
    color: #18a8a3;
    width: 17%;
}
.sub-vision .values .desc {
    width: calc(83% - 40px);
    border-left: 1px solid #dfdfdf;
    padding-left: 50px;
    min-height: 68px;
    text-align: left;
}
@media all and (max-width: 1024px) {
    .sub-vision .title {
        width: 100%;
        text-align: center;
        padding: 0;
    }
    .sub-vision .content {
        width: 100%;
        text-align: center;
    }
    .sub-vision .vision img {
        max-width: none;
        width: 100%;
    }
}
@media all and (max-width: 767px) {
    .sub-vision section {padding: 40px 0;}
    .sub-vision .content strong {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .sub-vision .vision img {margin-top: 20px;}
    .sub-vision .mission ul {margin: 10px 0 20px;}
    .sub-vision .mission ul li {
        flex: auto;
        width: 100%;
        border-radius: 4px 10px 10px 10px;
        font-size: 16px;
        padding: 12px;
        min-height: auto;
    }
    .sub-vision .values ul li {padding: 20px 0;}
    .sub-vision .values .number {
        font-size: 15px;
        width: 100%;
        margin-bottom: 5px;
    }
    .sub-vision .values h4 {
        width: 100%;
        font-size: 24px;
    }
    .sub-vision .values .desc {
        width: 100%;
        border: none;
        min-height: auto;
        padding: 20px 0 0;
        text-align: center;
    }
}

/*esg*/
.sub-esg .top {text-align: center;}
.sub-esg .top .title + strong {
    font-size: 30px;
    display: block;
    margin-bottom: 40px;
}
.sub-esg .top .title + strong span {color: #18a8a3;}
.sub-esg .top .esg-list {
    margin-top: 80px;
    border-top: 1px solid #111;
}
.sub-esg .top .esg-list > li {
    border-bottom: 1px solid rgba(0,0,0,0.2);
    padding: 80px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
}
.sub-esg .top .esg-list > li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.sub-esg .top .esg-list > li .img {
    width: 23%;
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.sub-esg .top .esg-list > li .img p {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
}
.sub-esg .top .esg-list > li .txt {
    width: 77%;
    padding-top: 20px;
    padding-left: 80px;
    text-align: left;
}
.sub-esg .top .esg-list > li .txt .desc {margin-bottom: 70px;}
.sub-esg .top .esg-list > li .txt .desc:last-child {margin-bottom: 0;}
.sub-esg .top .esg-list > li .txt .desc strong {
    display: block;
    font-size: 24px;
    margin-bottom: 30px;
}
.sub-esg .top .esg-list > li .txt .desc ul {margin: 20px 0 50px;}
.sub-esg .top .esg-list > li .txt .desc ul li {
    background: #f1f3f8;
    padding: 8px 20px;
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
}
.sub-esg .top .esg-list > li .txt .desc ul li:last-child {margin-bottom: 0;}
.sub-esg .top .esg-list > li .txt .desc ul li img {}
.sub-esg .top .esg-list > li .txt .desc ul li span {}
.sub-esg .bottom {
    background: url(/img/assets/esg_bg.jpg) center / cover no-repeat;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
    padding: 150px 0;
}
@media all and (max-width: 767px) {
    .sub-esg .top .title + strong {
        font-size: 20px;
        margin: 30px 0 20px;
    }
    .sub-esg .top .esg-list {margin-top: 40px;}
    .sub-esg .top .esg-list > li {padding: 30px 0;}
    .sub-esg .top .esg-list > li .img {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    .sub-esg .top .esg-list > li .img p {font-size: 20px;}
    .sub-esg .top .esg-list > li .txt {
        width: 100%;
        padding: 25px 0 0;
    }
    .sub-esg .top .esg-list > li .txt .desc {margin-bottom: 40px;}
    .sub-esg .top .esg-list > li .txt .desc strong {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .sub-esg .top .esg-list > li .txt .desc ul {margin: 10px 0 20px;}
    .sub-esg .bottom {padding: 100px 0;}
}

/*business*/
.sub-business ul li {
    border-top: 1px solid rgba(0,0,0,0.2);
    padding-top: 100px;
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.sub-business ul li:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}
.sub-business ul li > div {width: 50%;}
.sub-business ul li .txt {padding-right: 50px;}
.sub-business ul li .txt .number {
    font-size: 20px;
    font-weight: bold;
    color: #c0c3ca;
}
.sub-business ul li .txt .title {margin: 20px 0 40px;}
.sub-business ul li .txt .coupang {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.sub-business ul li .txt .coupang b {
    font-size: 24px;
    font-weight: 800;
    opacity: 0.3;
}
.sub-business ul li .img img {
    max-width: none;
    width: 100%;
}
.sub-business ul li:last-child .txt {
    order: 2;
    padding-left: 100px;
    padding-right: 0;
}
.sub-business ul li:last-child .img {order: 1;}
@media all and (max-width: 991px) {
    .sub-business ul li > div {width: 100%;}
    .sub-business ul li .txt {
        padding: 0 0 50px !important;
        order: 1 !important;
    }
    .sub-business ul li .img {order: 2 !important;}
}
@media all and (max-width: 767px) {
    .sub-business ul li {
        padding-top: 40px;
        margin-top: 40px;
    }
    .sub-business ul li .txt {padding-bottom: 30px !important;}
    .sub-business ul li .txt .number {font-size: 15px;}
    .sub-business ul li .txt .title {margin: 5px 0 20px;}
    .sub-business ul li .txt .coupang {
        margin-top: 20px;
        gap: 10px;
    }
    .sub-business ul li .txt .coupang img {height: 18px;}
    .sub-business ul li .txt .coupang b {font-size: 18px;}
}