.ani-elem {
    --duration: 1s;
    --delay: 0s;
    --play-state: paused;
    --y: 100px;
}

.ani-elem.run-animate {
    --play-state: running;
}

.ani-target {
    animation-duration: var(--duration);
    animation-delay: var(--delay);
    animation-play-state: var(--play-state);
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}

.ani-clip-up {
    display: block;
    overflow: hidden;
}

.ani-clip-up > span {
    display: block;
    translate: 0 100%;
    animation-name: ClipUp;
    will-change: translate;
}

.ani-fade-in-up {
    opacity: 0;
    translate: 0 var(--y);
    animation-name: FadeIn, SlideUp;
    will-change: translate, opacity;
}

@keyframes ClipUp {
    0% {
        translate: 0 100%;
    }
    100% {
        translate: 0 0;
    }
}

@keyframes SlideUp {
    0% {
        translate: 0 var(--y);
    }
    100% {
        translate: 0 0;
    }
}

@keyframes FadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

body {
    -ms-overflow-style: none;
}
.hydrogen-wrapper {
    color: #191919;
}
.hydrogen-wrapper img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}
.hydrogen-wrapper img.img-full {
    width: 100%;
    max-width: none;
}

.hydrogen-wrapper .img-centered {
    position: relative;
    height: var(--height);
    overflow: hidden;
}
.hydrogen-wrapper .img-centered img {
    position: absolute;
    left: 50%;
    top: 0;
    width: 1920px;
    height: 100%;
    margin-left: -960px;
    max-width: none;
}
.hydrogen-wrapper .bg-gray {
    background-color: #F6F4F3;
}

.hydrogen-wrapper .move-detail {
    --color: #999;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 22px;
    color: var(--color);
}
.hydrogen-wrapper .move-detail::after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-color: var(--color);
    mask-image: url("../../images/brandstory/jms_hydrogen/ic_move_detail.svg");
    mask-position: center -1px;
    mask-repeat: no-repeat;
    mask-size: 16px;
    margin-left: 4px;
}

.hmj-container.hydrogen-wrapper {
    padding: 0;
}
.hydrogen-wrapper .contents-sec {
    padding: 80px 0;
    position: relative;
    display: block;
    font-size: 16px;
}
.hydrogen-wrapper .container {
    width: 1120px;
    margin: 0 auto;
}
.hydrogen-wrapper .cont-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.hydrogen-wrapper .cont-wrapper .img-box {
    width: 100%;
    height: auto;
}
.hydrogen-wrapper .cont-wrapper .text-box {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}
.hydrogen-wrapper .out-link, .hydrogen-wrapper .out-link:hover {
    color: #1C6BBA;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-decoration-line: underline;
}

/* section1 */


/* tab-section */
.hydrogen-wrapper .tab-nav-section {
    margin-top: 16px;
    --tab-height: 58px;
    position: relative;
    height: var(--tab-height);
}
.hydrogen-wrapper .tab-nav-section .contents-tab {
    translate: 0 0;
}
.hydrogen-wrapper .tab-nav-section .contents-tab.is-floating {
    position: fixed;
    left: 0;
    right: 0;
    background: #fff;
    top: var(--sub-h);
    z-index: 15;
    transition-duration: .2s;
}
.hydrogen-wrapper .tab-nav-section .contents-tab.is-floating.is-show {
    translate: 0 calc(var(--header-h));
    transition-duration: .4s;
}
.ios .hydrogen-wrapper .tab-nav-section .contents-tab.is-floating {
    transition-delay: .05s;
}
.ios .hydrogen-wrapper .tab-nav-section .contents-tab.is-floating.is-show {
    transition-delay: .075s;
}
.hydrogen-wrapper .tab-nav-section .tab-list {
    display: flex;
}
.hydrogen-wrapper .tab-nav-section .tab-item {
    flex: 1;
}
.hydrogen-wrapper .tab-nav-section .tab-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 16px;
    font-weight: 500;
    line-height: 58px;
    color: #666666;
    text-decoration: none;
}
.hydrogen-wrapper .tab-nav-section .tab-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: #ccc;
}
.hydrogen-wrapper .tab-nav-section .tab-link.is-active {
    color: #191919;
}
.hydrogen-wrapper .tab-nav-section .tab-link.is-active::after {
    height: 3px;
    background-color: #1c6bba;
}

/* tab-content-section */
.hydrogen-wrapper .tab-content-head {
    padding: 100px 0;
}
.hydrogen-wrapper .tab-content-head-tit h1 {
    font-size: 40px;
    font-weight: 500;
    line-height: 64px;
}
.hydrogen-wrapper .tab-content-head-text {
    margin-top: 40px;
}
.hydrogen-wrapper .tab-content-head-text p {
    font-size: 20px;
    line-height: 32px;
}

.hydrogen-wrapper .tab-flex-content-wrapper {
    padding: 100px 0;
}
.hydrogen-wrapper .tab-flex-content {
    margin-top: 80px;
    display: flex;
    gap: 40px;
}
.hydrogen-wrapper .tab-flex-content:first-child {
    margin-top: 0;
}
.hydrogen-wrapper .tab-flex-content.content-reverse {
    flex-direction: row-reverse;
}

.hydrogen-wrapper .tab-flex-content .img-box {
    flex: 0 0 480px;
}
.hydrogen-wrapper .img-box video {
    display: block;
}
.hydrogen-wrapper .tab-flex-content .content-box {
    flex: 1;
}
.hydrogen-wrapper .tab-flex-content .content-box .content-tit {
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 500;
    line-height: 38px;
}
.hydrogen-wrapper .tab-flex-content .content-box .content-text.large {
    font-size: 20px;
    line-height: 32px;
}
.hydrogen-wrapper .tab-flex-content .content-box .content-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}
.hydrogen-wrapper .tab-banner-content-01 {
    position: relative;
}
.hydrogen-wrapper .tab-banner-content-01 .content-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.hydrogen-wrapper .tab-banner-content-01 .content-box .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.hydrogen-wrapper .tab-banner-content-01 .content-box .banner-tit {
    font-size: 32px;
    font-weight: 500;
    line-height: 52px;
    color: #fff;
    text-align: center;
}
.hydrogen-wrapper .tab-banner-content-01 .content-box .banner-btn {
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
    max-width: 314px;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    line-height: 54px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 4px;
}
.hydrogen-wrapper .tab-block-content {
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.hydrogen-wrapper .tab-block-content .img-box .img-text {
    padding: 24px 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    text-align: center;
}
.hydrogen-wrapper .tab-block-content .content-box .content-tit {
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 500;
    line-height: 38px;
}
.hydrogen-wrapper .tab-block-content .content-box .content-text {
    margin-top: 24px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

/* blue-background-content */
.hydrogen-wrapper .blue-background-content {
    padding: 100px 0;
    background-color: #002C5F;
    color: #fff;
}

.hydrogen-wrapper .blue-background-content .content-tit {
    font-size: 40px;
    font-weight: 500;
    line-height: 64px;
}

.hydrogen-wrapper .blue-background-content .quote-text-box {
    position: relative;
    padding-left: 96px;
}
.hydrogen-wrapper .blue-background-content .quote-text-icon {
    position: absolute;
    left: 0;
    top: -24px;
    font-size: 120px;
    font-weight: 500;
    line-height: 1;
}
.hydrogen-wrapper .blue-background-content .content-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
}
.hydrogen-wrapper .blue-background-content .bottom-box {
    margin-top: 40px;
    text-align: right;
}

/* technology-section */
.hydrogen-wrapper .technology-section .tab-content-head {
    padding: 100px 0 0;
}
.hydrogen-wrapper .technology-section .tab-flex-content-wrapper-01 {
    padding: 24px 0 100px;
}
.hydrogen-wrapper .technology-section .tab-flex-content-wrapper-02 .tab-flex-content .content-tit {
    margin-bottom: 8px;
}
.hydrogen-wrapper .technology-section .tab-flex-content-wrapper-02 .content-sub-tit {
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 500;
    line-height: 38px;
    color: #0793EA;
}
.hydrogen-wrapper .technology-section .tab-flex-content-wrapper-02 .content-sub-tit sub {
    font-size: 55%;
}
.hydrogen-wrapper .technology-section .video-box-07 {
    display: flex;
    align-items: center;
    aspect-ratio: 480 / 342;
    overflow: hidden;
}
.hydrogen-wrapper .technology-section .tab-flex-content-wrapper-02 .tab-block-content {
    padding: 0;
    margin-top: 100px;
}

/* ecosystem-section */
.hydrogen-wrapper .ecosystem-section .tab-content-head {
    padding: 100px 0 0;
}

/* closing-section */
.hydrogen-wrapper .closing-section .closing-text {
    font-size: 20px;
    line-height: 32px;
}
.hydrogen-wrapper .closing-section .closing-text.last-text {
    margin-top: 24px;
    font-weight: 500;
}

/* link-banner-section */
.hydrogen-wrapper .link-banner-sec {
    padding: 100px 0 0;
}
.hydrogen-wrapper .link-banner-sec .banner-content-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hydrogen-wrapper .link-banner-sec .banner-content-box .banner-text {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 30px;
}

.hydrogen-wrapper .link-banner-sec .banner-content-box .banner-btn {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hydrogen-wrapper .link-banner-sec .banner-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hydrogen-wrapper .link-banner-sec .banner-img-box a {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}

.hydrogen-wrapper .link-banner-sec .banner-img-box a .banner-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    left: 72px;
    top: 50%;
    transform: translateY(-50%);
}

.hydrogen-wrapper .link-banner-sec .banner-img-box a .banner-text p {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    line-height: 38px;
}
.hydrogen-wrapper .link-banner-sec .banner-img-box .move-detail {
    --color: #fff;
}

/* share-section */
.hydrogen-wrapper .share-section {
    padding: 80px 0;
}
.hydrogen-wrapper .share-section .container {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.hydrogen-wrapper .share-section .card-cont {
    display: flex;
    gap: 20px;
}
.hydrogen-wrapper .share-section .card-cont li {
    width: 33.33%;
    height: 200px;
    cursor: pointer;
    overflow: hidden;
}
.hydrogen-wrapper .share-section .card-cont a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}
.hydrogen-wrapper .share-section .card-cont a h5 {
    position: absolute;
    top: 24px;
    left: 24px;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    line-height: 38px;
    letter-spacing: -0.96px;
}
.hydrogen-wrapper .share-section .card-cont a::before {
    position: absolute;
    content: "";
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: url("../../images/brandstory/jms_hydrogen/card-btn.png") center center / contain no-repeat;
}
.hydrogen-wrapper .share-cont {
    display: flex;
    flex-direction: column;
    gap: 17px;
}
.hydrogen-wrapper .share-cont p {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
}
.hydrogen-wrapper .share-cont .link-sns {
    display: flex;
    align-items: center;
    gap: 32px;
}
.hydrogen-wrapper .share-cont .link-sns li {
    width: 30px;
    height: 30px;
}

/* popup */
.layer-popup-wrap.popup-example .layer-popup-body .layer-cont {
    display: flex;
    flex-direction: column;
}
.layer-popup-wrap.popup-example .layer-scroll {
    flex: 1 0 calc(100% - 128px);
    height: calc(100% - 128px);
    overflow-y: auto;
}
.layer-popup-wrap.popup-example .layer-btn-area {
    margin-top: 32px;
}

@media screen and (min-width: 1921px) {
    .hydrogen-wrapper .img-centered {
        height: auto;
    }
    .hydrogen-wrapper .img-centered img {
        position: static;
        width: 100%;
        margin-left: 0;
    }
}

@media screen and (max-width: 1119px) {
    .hydrogen-wrapper .contents-sec {
        padding: 40px 0;
        font-size: 14px;
    }
    .hydrogen-wrapper .container {
        width: 100%;
        padding: 0 20px;
    }
    .hydrogen-wrapper .out-link, .hydrogen-wrapper .out-link:hover {
        font-size: 14px;
        line-height: 22px;
    }

    .hydrogen-wrapper .img-centered {
        height: auto;
    }
    .hydrogen-wrapper .img-centered img {
        position: static;
        margin-left: 0;
        width: 100%;
    }

    .hydrogen-wrapper .move-detail {
        font-size: 12px;
        line-height: 20px;
    }

    /* tab-nav-section */
    .hydrogen-wrapper .tab-nav-section {
        margin-top: 0;
        --tab-height: 52px;
    }
    .hydrogen-wrapper .tab-nav-section .tab-list {
        gap: 40px;
    }
    .hydrogen-wrapper .tab-nav-section .tab-item {
        flex: 0 0 auto;
    }
    .hydrogen-wrapper .tab-nav-section .tab-link {
        font-size: 13px;
    }
    .hydrogen-wrapper .tab-nav-section .tab-link::after {
        height: 0;
    }

    /* tab-content-section */
    .hydrogen-wrapper .tab-content-head {
        padding: 40px 0;
    }
    .hydrogen-wrapper .tab-content-head-tit h1 {
        font-size: 24px;
        line-height: 38px;
    }
    .hydrogen-wrapper .tab-content-head-text {
        margin-top: 16px;
    }
    .hydrogen-wrapper .tab-content-head-text p {
        font-size: 16px;
        line-height: 26px;
    }
    .hydrogen-wrapper .tab-flex-content-wrapper {
        padding: 40px 0;
    }
    .hydrogen-wrapper .tab-flex-content {
        margin-top: 40px;
        flex-direction: column;
        gap: 20px;
    }
    .hydrogen-wrapper .tab-flex-content.content-reverse {
        flex-direction: column;
    }
    .hydrogen-wrapper .tab-flex-content .img-box {
        flex: 0 0 100%;
    }
    .hydrogen-wrapper .tab-flex-content .content-box .content-tit {
        margin-bottom: 16px;
        font-size: 18px;
        line-height: 30px;
    }
    .hydrogen-wrapper .tab-flex-content .content-box .content-text {
        font-size: 14px;
        line-height: 22px;
    }

    .hydrogen-wrapper .tab-banner-content-01 .content-box .banner-tit {
        font-size: 16px;
        line-height: 26px;
    }
    .hydrogen-wrapper .tab-banner-content-01 .content-box .banner-btn {
        margin: 20px auto 0;
        max-width: 320px;
        font-size: 13px;
        line-height: 46px;
    }
    .hydrogen-wrapper .tab-block-content {
        padding: 40px 0;
    }
    .hydrogen-wrapper .tab-block-content .img-box .img-text {
        padding: 10px 0;
        font-size: 13px;
        line-height: 20px;
    }
    .hydrogen-wrapper .tab-block-content .content-box .content-text {
        margin-top: 16px;
        font-size: 14px;
        line-height: 22px;
    }

    /* blue-background-content */
    .hydrogen-wrapper .blue-background-content {
        padding: 60px 0 40px;
    }
    .hydrogen-wrapper .blue-background-content-01 {
        padding: 40px 0;
    }
    .hydrogen-wrapper .blue-background-content .content-tit {
        font-size: 24px;
        line-height: 38px;
    }
    .hydrogen-wrapper .blue-background-content .quote-text-box {
        padding-left: 47px;
    }
    .hydrogen-wrapper .blue-background-content .quote-text-icon {
        top: -22px;
        left: -5px;
        font-size: 74px;
    }
    .hydrogen-wrapper .blue-background-content .content-text {
        font-size: 16px;
        line-height: 26px;
    }
    .hydrogen-wrapper .blue-background-content .bottom-box .content-text {
        font-size: 14px;
        line-height: 22px;
    }

    /* closing-section */
    .hydrogen-wrapper .closing-section {
        padding: 40px 0;
    }
    .hydrogen-wrapper .closing-section .closing-text {
        font-size: 16px;
        line-height: 26px;
    }

    /* technology-section */
    .hydrogen-wrapper .technology-section .tab-content-head {
        padding: 40px 0 0;
    }
    .hydrogen-wrapper .technology-section .tab-flex-content-wrapper-01 {
        padding: 24px 0 40px;
    }
    .hydrogen-wrapper .technology-section .tab-flex-content {
        gap: 16px;
    }
    .hydrogen-wrapper .tab-flex-content .content-box .content-text.large {
        font-size: 16px;
        line-height: 26px;
    }
    .hydrogen-wrapper .technology-section .tab-flex-content-wrapper-02 .tab-flex-content .content-tit {
        margin-bottom: 4px;
    }
    .hydrogen-wrapper .technology-section .tab-flex-content-wrapper-02 .content-sub-tit {
        margin-bottom: 20px;
        font-size: 18px;
        line-height: 30px;
    }
    .hydrogen-wrapper .technology-section .tab-flex-content-wrapper-02 .tab-block-content {
        margin-top: 40px;
    }
    .hydrogen-wrapper .technology-section .tab-block-content .content-box {
        display: flex;
        flex-direction: column;
    }
    .hydrogen-wrapper .technology-section .tab-block-content .content-box .img-box {
        order: 1;
    }
    .hydrogen-wrapper .technology-section .tab-block-content .content-box .content-tit {
        order: 2;
    }
    .hydrogen-wrapper .technology-section .tab-block-content .content-box .content-text {
        order: 3;
        margin-top: 20px;
    }
    .hydrogen-wrapper .tab-block-content .content-box .content-tit {
        margin-bottom: 0;
        margin-top: 20px;
        font-size: 18px;
        line-height: 30px;
    }

    /* ecosystem-section */
    .hydrogen-wrapper .ecosystem-section .tab-content-head {
        padding: 40px 0 0;
    }


    /* link-banner-section */
    .hydrogen-wrapper .link-banner-sec {
        padding: 80px 0 0;
    }
    .hydrogen-wrapper .link-banner-sec .banner-content-box {
        padding: 40px 20px;
    }
    .hydrogen-wrapper .link-banner-sec .banner-content-box .banner-text {
        margin-bottom: 22px;
        font-size: 16px;
        line-height: 28px;
        text-align: center;
    }

    .hydrogen-wrapper .link-banner-sec .banner-img-box a .banner-text {
        left: 24px;
    }

    .hydrogen-wrapper .link-banner-sec .banner-img-box a .banner-text p {
        font-size: 18px;
        line-height: normal;
    }

    .hydrogen-wrapper .link-banner-sec .banner-img-box img {
        width: 100%;
    }

    /* share-section */
    .hydrogen-wrapper .share-section {
        padding: 100px 0;
    }
    .hydrogen-wrapper .share-section .container {
        gap: 80px;
    }
    .hydrogen-wrapper .share-section .card-cont {
        flex-direction: column;
    }
    .hydrogen-wrapper .share-section .card-cont li {
        width: 100%;
        height: auto;
    }
    .hydrogen-wrapper .share-section .card-cont a h5 {
        margin-top: -15px;
        top: 50%;
        font-size: 18px;
        line-height: normal;
        letter-spacing: -0.72px;
    }
    .hydrogen-wrapper .share-section .card-cont a::before {
        top: 50%;
        transform: translateY(-50%);
        width: 45px;
        height: 45px;
        background: url("../../images/brandstory/jms_hydrogen/card-btn-mo.png") center center / contain no-repeat;
    }
    .hydrogen-wrapper .share-cont {
        gap: 10px;
    }

    
}