@font-face {
	font-family: 'Rubik';
	font-weight: 300;
	font-style: normal;
	src:
				local('Rubik Light'),
				local('Rubik-Light'),
				url(../../../font/Rubik-Light.ttf) format('truetype');
}
@font-face {
	font-family: 'Rubik';
	font-weight: 600;
	font-style: normal;
	src:
				local('Rubik Regular'),
				local('Rubik-Regular'),
				url(../../../font/Rubik-Regular.ttf) format('truetype');
}
@font-face {
	font-family: 'Rubik';
	font-weight: 700;
	font-style: normal;
	src:
				local('Rubik SemiBold'),
				local('Rubik-SemiBold'),
				url(../../../font/Rubik-SemiBold.ttf) format('truetype');
}

@font-face {
    font-family: 'Rubik';
    font-weight: 400;
    font-style: normal;
    src:
            local('Rubik Regular'),
            local('Rubik-Regular'),
            url(../../../font/Rubik-Regular.ttf) format('truetype');
}


:root {
  --page-width: 1080px;
  --page-padding-x: 16px;
}

html,
body {
    font-family: 'Rubik', Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #14161a;
}
* {
    box-sizing: border-box;
}

#app {
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dd,
dt,
ul,
ol,
li,
body,
pre,
u {
  margin: 0;
  padding: 0;
}

input,
button,
textarea {
	font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans,
		Helvetica Neue, sans-serif;
  padding: 0;
  margin: 0;
  outline: 0;
  resize: none;
  border: 0;
  background: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}
li {
  list-style-type:none;
}
img,
svg,
canvas {
  display: block;
}
.flex-c {
  display: flex;
  align-items: center;
}
.flex-sb-c {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-fs-c {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

::-webkit-scrollbar-thumb {
  background: #8b8b8b;
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

input[type='number'] {
  -moz-appearance: textfield; /* Firefox */
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}


/**
 header start
 */

header {
    height: 80px;
    border-bottom: 1px solid #f2f2f2;
}
header a {
    display: inline-block;
    z-index: 999;
}
header.hide-menu .content-box {
    width: 1080px;
    justify-content: flex-start;
}
header.hide-menu .header-info {
    display: none;
}
@media (max-width: 768px) {
    header.hide-menu .content-box {
        width: 100%;
    }
}
header .content-box {
    width: auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 155px;
}
header .header-info {
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 45px;
}
header .header-store {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 88px;
    height: 36px;
    font-size: 16px;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    background-color: #f90;
    transition: all 300ms;
}
header .header-store::before {
    content: "";
    width: 17px;
    height: 16px;
    background-image: url(https://img.videone.ai/uploads/pages/ja/header/icon-cart.svg);
}
header .header-store:hover {
    background-color: #ff5900;
}
header .header-menu-switch {
    display: none;
}
header .header-menu {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 50px;
    list-style: none;
}
header .header-menu_item > .item-title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #1f1f1f;
    cursor: pointer;
    transition: all 300ms;
}
header .header-menu_item > .item-title:hover {
    color: #2e83e5;
}
header .header-menu_item > .item-more {
    position: absolute;
    z-index: 10;
    display: flex;
    gap: 10px;
    width: 894px;
    height: 0;
    padding: 0 10px;
    border-radius: 0 0 10px 10px;
    border: 1px solid #f2f2f2;
    border-top: none;
    background: #fff;
    box-shadow: 0 32px 54px -12px rgba(16, 24, 40, 0.14);
    overflow: hidden;
    transition: all 500ms;
}
header .header-menu_item > .item-more.music-one {
    left: -245px;
}
header .header-menu_item > .item-more.video-one {
    left: -388px;
}
header .header-menu_item .product-hot {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 252px;
    border-radius: 8px;
    background: #f2f5fc;
    padding: 20px 15px;
}
header .header-menu_item .product-hot_cover {
    position: relative;
    margin-bottom: 15px;
}
header .header-menu_item .product-hot_cover::before {
    content: "";
    position: absolute;
    bottom: 10px;
    left: -35px;
    width: 70px;
    height: 70px;
    background-image: url(https://img.videone.ai/uploads/pages/ja/header/tag-hot.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
header .header-menu_item .product-hot_title {
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    color: #333;
    margin-bottom: 10px;
}
header .header-menu_item .product-hot_desc {
    font-size: 10px;
    text-align: center;
    line-height: 1.6;
    color: #4a4a4a;
    padding: 0 6px;
    margin-bottom: 10px;
}
header .header-menu_item .product-hot_link {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 10px;
    text-decoration: none;
    color: #2e83e5;
    margin-bottom: 15px;
}
header .header-menu_item .product-hot_link::after {
    content: ">>>";
    transition: all 300ms;
}
header .header-menu_item .product-hot_link:hover::after {
    transform: translateX(5px);
}
header .header-menu_item .product-hot_win,
header .header-menu_item .product-hot_mac {
    display: none;
    gap: 12px;
}
header .header-menu_item .product-hot_win.active,
header .header-menu_item .product-hot_mac.active {
    display: flex;
}
header .header-menu_item .product-hot_win .product-hot_download {
    gap: 5px;
}
header .header-menu_item .product-hot_win .product-hot_download::before {
    content: "";
    width: 10px;
    height: 10px;
    background-image: url(https://img.videone.ai/uploads/pages/ja/icon-win-blue.svg);
    background-size: 100% 100%;
}
header .header-menu_item .product-hot_win .product-hot_download:hover::before {
    background-image: url(https://img.videone.ai/uploads/pages/ja/icon-win-white.svg);
}
header .header-menu_item .product-hot_mac .product-hot_download {
    gap: 5px;
}
header .header-menu_item .product-hot_mac .product-hot_download::before {
    content: "";
    width: 10px;
    height: 10px;
    background-image: url(https://img.videone.ai/uploads/pages/ja/icon-mac-blue.svg);
    background-size: 100% 100%;
}
header .header-menu_item .product-hot_mac .product-hot_download:hover::before {
    background-image: url(https://img.videone.ai/uploads/pages/ja/icon-mac-white.svg);
}
header .header-menu_item .product-hot_download {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 104px;
    height: 30px;
    font-size: 10px;
    text-decoration: none;
    color: #2e83e5;
    border-radius: 4px;
    border: 1px solid #2e83e5;
    background: #fff;
    transition: all 300ms;
}
header .header-menu_item .product-hot_download:hover {
    color: #fff;
    border-color: #2e83e5;
    background: #2e83e5;
}
header .header-menu_item .product-hot_buy {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 104px;
    height: 30px;
    font-size: 10px;
    text-decoration: none;
    color: #fff;
    border-radius: 4px;
    background: #2e83e5;
    transition: all 300ms;
}
header .header-menu_item .product-hot_buy:hover {
    background: #0169df;
}
header .header-menu_item .product-list {
    flex: 1;
    height: 100%;
    display: flex;
    flex-flow: row wrap;
    gap: 15px;
}
header .header-menu_item .product-list_title {
    width: 100%;
    height: 20px;
    color: #2e83e5;
    font-size: 16px;
    border-left: 3px solid #2e83e5;
    padding-left: 5px;
}
header .header-menu_item .product-list_item {
    position: relative;
    width: 295px;
    height: 88px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 8px;
    border: 1px solid #e2ebff;
    background: #fff;
    padding-left: 25px;
    text-decoration: none;
    transition: all 300ms;
}
header .header-menu_item .product-list_item .item-area {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
header .header-menu_item .product-list_item .item-title {
    font-size: 14px;
    color: #333;
}
header .header-menu_item .product-list_item .item-desc {
    font-style: normal;
    font-size: 12px;
    color: #696969;
}
header .header-menu_item .product-list_item.hot::after {
    content: "";
    position: absolute;
    top: -5px;
    right: -4px;
    width: 60px;
    height: 60px;
    background-image: url(https://img.videone.ai/uploads/pages/ja/header/tag-popular-products.svg);
    background-size: 100% 100%;
}
header .header-menu_item .product-list_item.new::after {
    content: "";
    position: absolute;
    top: -4px;
    right: -3px;
    width: 60px;
    height: 60px;
    background-image: url(https://img.videone.ai/uploads/pages/ja/header/tag-new-product.svg);
    background-size: 100% 100%;
}
header .header-menu_item .product-list_item.occupy {
    border: none;
    background: none;
}
header .header-menu_item .product-list_item:hover {
    background: #f2f5fc;
}
header .header-menu_item.is-more {
    position: relative;
    height: 100%;
}
header .header-menu_item.is-more > .item-title {
    height: 100%;
    gap: 8px;
}
header .header-menu_item.is-more > .item-title::after {
    content: "";
    width: 10px;
    height: 7px;
    background-image: url(https://img.videone.ai/uploads/pages/ja/header/icon-more.svg);
    transform: translateY(2px);
    transition: all 300ms;
}
header .header-menu_item.is-more.active > .item-title {
    color: #2e83e5;
}
header .header-menu_item.is-more.active > .item-title::after {
    background-image: url(https://img.videone.ai/uploads/pages/ja/header/icon-more-hover.svg);
    transform: translateY(0) rotate(180deg);
}
header .header-menu_item.is-more.active .item-more {
    padding: 10px;
    z-index: 11;
}
header .header-search {
    position: relative;
    overflow: hidden;
}
header .header-search.active {
    overflow: unset;
}
header .header-search.active .header-search_inner {
    z-index: 3;
    width: 300px;
}
header .header-search_open {
    position: relative;
    z-index: 2;
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(https://img.videone.ai/uploads/pages/ja/header/icon-search.svg);
    cursor: pointer;
}
header .header-search_open:hover {
    background-image: url(https://img.videone.ai/uploads/pages/ja/header/icon-search-hover.svg);
}
header .header-search_inner {
    position: absolute;
    top: 50%;
    right: -30px;
    z-index: 1;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 2px 8px;
    width: 0;
    height: 36px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #f2f2f2;
    transition: all 300ms;
}
header .header-search_icon-search {
    width: 16px;
    height: 16px;
    background-image: url(https://img.videone.ai/uploads/pages/ja/header/icon-search.svg);
    cursor: pointer;
}
header .header-search_input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    color: #1f1f1f;
}
header .header-search_close {
    width: 16px;
    height: 16px;
    background-image: url(https://img.videone.ai/uploads/pages/ja/header/icon-search-close.svg);
    background-size: 100% 100%;
    cursor: pointer;
}
header .header-area {
    height: 100%;
    display: flex;
    align-items: center;
}
header .header-area.large-gap {
    gap: 45px;
}
header .header-area.small-gap {
    gap: 15px;
}
header .header-member-center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 36px;
    font-size: 16px;
    color: #1f1f1f;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid #d2d2d2;
    background-color: #fff;
    transition: all 300ms;
    cursor: pointer;
}
header .header-member-center:hover {
    color: #fff;
    border-color: #2e83e5;
    background-color: #2e83e5;
}
header .header-download-win,
header .header-download-mac {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 130px;
    height: 36px;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    background-color: #2e83e5;
    transition: all 300ms;
    display: none;
}
header .header-download-win.active,
header .header-download-mac.active {
    display: flex;
}
header .header-download-win:hover,
header .header-download-mac:hover {
    background-color: #005bc3;
}
@media (max-width: 768px) {
    header {
        height: 54px;
    }
    header .content-box {
        position: relative;
        z-index: 999;
        width: 100%;
        justify-content: space-between;
        gap: 0;
        padding: 0 15px;
    }
    header .content-box::after,
    header .content-box::before {
        display: none;
    }
    header .header-logo img {
        width: 110px;
        height: 22px;
    }
    header .header-info {
        flex-direction: row-reverse;
        gap: 10px;
    }
    header .header-area.large-gap {
        gap: 0;
    }
    header .header-area.small-gap {
        gap: 0;
    }
    header .header-store {
        width: 68px;
        height: 22px;
        font-size: 12px;
    }
    header .header-store::before {
        width: 12px;
        height: 10px;
        background-size: 100% 100%;
    }
    header .header-menu-switch {
        display: block;
        width: 15px;
        height: 15px;
        background-image: url(https://img.videone.ai/uploads/pages/ja/header/icon-menu-switch.svg);
        background-size: 100% 100%;
        margin-left: 10px;
    }
    header .header-menu-switch.active {
        background-image: url(https://img.videone.ai/uploads/pages/ja/header/icon-search-close.svg);
        transform: scale(2);
    }
    header .header-menu {
        position: absolute;
        top: 54px;
        left: 0;
        width: 100%;
        height: 0;
        flex-direction: column;
        gap: 0;
        background-color: #fff;
        box-shadow: 0 32px 54px -12px rgba(16, 24, 40, 0.14);
        overflow: hidden;
        transition: all 500ms;
    }
    header .header-menu_item {
        width: 100%;
        min-height: auto;
    }
    header .header-menu_item > .item-title {
        width: 100%;
        height: 44px;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #f2f2f2;
        padding: 0 15px;
    }
    header .header-menu_item > .item-title:hover {
        color: #1f1f1f;
    }
    header .header-menu_item > .item-more {
        position: unset;
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
        height: 0;
        border: none;
        border-top: none;
        background: #fff;
        box-shadow: unset;
        overflow: hidden;
    }
    header .header-menu_item > .item-more.music-one {
        left: 0;
    }
    header .header-menu_item > .item-more.video-one {
        left: 0;
    }
    header .header-menu_item .product-hot {
        width: 100%;
        background: transparent;
        padding: 0;
    }
    header .header-menu_item .product-hot_title {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
        width: 100%;
        height: 54px;
        font-weight: normal;
        font-size: 14px;
        color: #1f1f1f;
        margin-bottom: 10px;
        padding: 0 15px;
        border-bottom: 1px solid #f2f2f2;
    }
    header .header-menu_item .product-hot_title::after {
        content: "";
        width: 38px;
        height: 38px;
        background-image: url(https://img.videone.ai/uploads/pages/ja/header/tag-hot.svg);
        background-size: 100% 100%;
    }
    header .header-menu_item .product-hot_cover,
    header .header-menu_item .product-hot_desc,
    header .header-menu_item .product-hot_link,
    header .header-menu_item .product-hot_win,
    header .header-menu_item .product-hot_mac,
    header .header-menu_item .product-hot_download,
    header .header-menu_item .product-hot_buy {
        display: none;
    }
    header .header-menu_item .product-list {
        gap: 0;
    }
    header .header-menu_item .product-list_title {
        display: none;
    }
    header .header-menu_item .product-list_item {
        width: 100%;
        height: 34px;
        border: none;
        padding: 0 15px;
    }
    header .header-menu_item .product-list_item .item-area {
        width: 100%;
        height: 100%;
        gap: 0;
    }
    header .header-menu_item .product-list_item .item-logo {
        display: none;
    }
    header .header-menu_item .product-list_item .item-title {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
        font-weight: normal;
        font-size: 14px;
        padding-left: 15px;
    }
    header .header-menu_item .product-list_item .item-desc {
        display: none;
    }
    header .header-menu_item .product-list_item.hot::after {
        display: none;
    }
    header .header-menu_item .product-list_item.hot .item-title::after {
        content: "";
        width: 60px;
        height: 19px;
        background-image: url(https://img.videone.ai/uploads/pages/ja/header/tag-popular-products-mobile.svg);
        background-size: 100% 100%;
    }
    header .header-menu_item .product-list_item.new::after {
        display: none;
    }
    header .header-menu_item .product-list_item.new .item-title::after {
        content: "";
        width: 50px;
        height: 18px;
        background-image: url(https://img.videone.ai/uploads/pages/ja/header/tag-new-product-mobile.svg);
        background-size: 100% 100%;
    }
    header .header-menu_item .product-list_item.occupy {
        display: none;
    }
    header .header-menu_item .product-list_item:hover {
        background: unset;
    }
    header .header-menu_item.is-more {
        height: auto;
        border-bottom: 1px solid #f2f2f2;
        padding-bottom: 0;
    }
    header .header-menu_item.is-more > .item-title {
        height: 44px;
        gap: 8px;
        border: none;
    }
    header .header-menu_item.is-more > .item-title::after {
        width: 12px;
        height: 12px;
        background-image: url(https://img.videone.ai/uploads/pages/ja/header/icon-add.svg);
        transform: unset;
    }
    header .header-menu_item.is-more.active > .item-title {
        color: #1f1f1f;
        border-bottom: 1px solid #f2f2f2;
    }
    header .header-menu_item.is-more.active > .item-title::after {
        width: 12px;
        height: 2px;
        background-image: url(https://img.videone.ai/uploads/pages/ja/header/icon-minus.svg);
        background-repeat: no-repeat;
        transform: unset;
    }
    header .header-menu_item.is-more.active .item-more {
        padding: 0;
    }
    header .header-member-center {
        width: 68px;
        height: 22px;
        font-size: 12px;
    }
    header .header-search,
    header .header-download-win,
    header .header-download-mac {
        display: none;
    }
    header .header-search.active,
    header .header-download-win.active,
    header .header-download-mac.active {
        display: none;
    }
}


/**
header end
 */

/**
footer start
 */

footer {
    background: #1b3042;
}

footer .footer-menu {
    padding: 50px 0;
}
.container {
    max-width: var(--page-width);
    margin: 0 auto;
}
footer .footer-menu .container {
    display: flex;
    justify-content: space-between;
}
footer .footer-menu .container .footer-menu-item{
    flex: 0 0 18%;
}

footer .footer-menu .container .footer-menu-item:last-child {
    flex: 0 0 21%;
}

footer .footer-menu .menu-item_title {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

footer .footer-menu .menu-item_info {
    display: flex;
    flex-direction: column;
}
footer .footer-menu .menu-item_info p {
    font-weight: 700;
    font-size: 12px;
    color: #eaeaea;
    padding-bottom: 30px;
}

footer .footer-menu .menu-item_info .popup  {
    background: linear-gradient(93.03deg, #4596E5 -9.17%, #4539CC 105.48%);
    border-radius: 8px;
    border: none;
    width: fit-content;
    height: 44px;
    display: inline-block;
    line-height: 44px;
    padding: 0 20px;
    font-weight: bolder;
    margin-top: 0;
    color: #eaeaea;
    outline: none;
}

footer .footer-menu .item-info_link {
    font-size: 12px;
    font-weight: lighter;
    color: #eaeaea;
    line-height: 2;
    margin-bottom: 8px;
}

footer .footer-menu .item-info_link:hover {
    color: #1e96ec;
}

footer .footer-menu .menu-item_desc {
    font-size: 12px;
    font-weight: lighter;
    color: #eaeaea;
    line-height: 2;
    width: 204px;
}

footer .footer-menu .menu-item_subscribe {
    width: 202px;
    height: 44px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(93.03deg, #4596e5 -9.17%, #4539cc 105.48%);
    outline: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 20px 0 30px;
}

.newsletter-email {
    width: 227px;
    height: 39px;
    background: #ffffff;
    border-radius: 6px;
    margin-bottom: 20px;
    position: relative;
}

.newsletter-email .newsletter-btn {
    position: absolute;
    width: 30px;
    height: 39px;
    border: none;
    outline: none;
    background-color: inherit;
    top: 0;
    right: 4px;
    padding: 0;
}
.newsletter-email .newsletter-btn::after {
    content: '';
    display: block;
    position: absolute;
    right: -4px;
    top: 0;
    background: url('https://img.videone.ai/uploads/pages/ja/arrow_red.svg') no-repeat;
    background-size: 7.1px 12.1px;
    background-position: center center;
    width: 30px;
    height: 39px;
    cursor: pointer;
}
.newsletter .tips {
    width: 180px;
    height: 39px;
    font-size: 14px;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translateX(100%);
    line-height: 1.6;
    padding-left: 10px;
    color: #67c23a;
    display: flex;
    align-items: center;
}
.newsletter .tips.active {
    color: #f56c6c;
}
/*.newsletter-email::after {*/
/*  content: '';*/
/*  display: block;*/
/*  position: absolute;*/
/*  right: 13px;*/
/*  top: 13.9px;*/
/*  background: url('https://img.videone.ai/uploads/pages/ja/arrow_red.svg');*/
/*  background-size: 100%;*/
/*  width: 7.1px;*/
/*  height: 12.1px;*/
/*  cursor: pointer;*/
/*}*/

.newsletter-input {
    height: 39px;
    font-size: 16px;
    outline: none;
    border: none;
    margin-left: 10px;
    font-weight: 300;
    font-size: 16px;
    line-height: 187.5%;
    /* font-family: r-l; */
    color: #2d374b;
}

footer .footer-menu .menu-item_media {
    display: flex;
    margin-top: 35px;
}

footer .footer-menu .media-subitem {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(243, 243, 243, 0.1);
    border-radius: 10px;
    margin-right: 25px;
}

footer .footer-copyright {
    border-top: 1px solid #eaeaea;
    padding: 20px 0;
}

footer .footer-copyright .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .footer-copyright .copyright-text {
    font-size: 14px;
    font-weight: normal;
    color: #eaeaea;
}

footer .footer-copyright .language-box {
    position: relative;
    width: 100px;
}

footer .footer-copyright .language-current {
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

footer .footer-copyright .language-current_icon {
    width: 17px;
    height: 17px;
    background: url(https://img.videone.ai/uploads/pages/ja/language.svg) no-repeat center /
    100% 100%;
}

footer .footer-copyright .language-current_text {
    font-size: 12px;
    font-weight: normal;
    color: #d7daed;
    margin: 0 10px;
}

footer .footer-copyright .language-current_arrow {
    width: 10px;
    height: 10px;
    background: url(https://img.videone.ai/uploads/pages/ja/down-arrow.svg) no-repeat center / 100% 100%;
    filter: brightness(0.8);
    transition: all 0.4s;
}

footer .footer-copyright .language-current.active .language-current_arrow {
    transform: rotate(180deg);
}

footer .footer-copyright .language-list {
    position: absolute;
    bottom: 30px;
    background: #2c465c;
    width: 120px;
    display: none;
    flex-direction: column;
}

footer .footer-copyright .language-list.active {
    display: flex;
}

footer .footer-copyright .language-list_item {
    font-size: 12px;
    font-weight: lighter;
    color: #d7daed;
    padding: 8px 5px 8px 10px;
}

footer .footer-copyright .language-list_item:hover {
    color: #2c465c;
    background: #d7daed;
}

.email-from {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index:9999;
}
.email-from .mask {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.email-from .email-from-content {
    width: 320px;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #274866;
    border-radius: 4px;
}
.email-from .email-from_close{
    width: 30px;
    height: 30px;
    cursor: pointer;
    margin-top: -10px;
    margin-right: -10px;
    position: absolute;
    top: 0;
    right: 0;
}
.email-from .email-from_title {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}
.email-from .email-from_des {
    margin-top: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.email-from .from-box {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.email-from .from-box .email-email {
    flex: 1;
    padding-left: 10px;
    margin-right: 10px;
    border-radius: 4px;
    background-color: #FFF;
    font-size: 14px;
}
.email-from .from-box .from-btn {
    height: auto;
    padding: 10px;
    margin: 0;
    border-radius: 4px;
    background-color: #3b90b3;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}
.email-from .error{
    display: none;
    color: #fa5656;
    font-size:14px;
    margin-top: 10px;
}

@media (max-width: 770px) {
    html {
        font-size: 0.2666667vw;
    }

    footer .footer-menu {
        padding: 20rem 16px;
    }

    footer .footer-menu .container {
        flex-direction: column;
    }

    footer .footer-menu .footer-menu-item {
        padding-top: 30rem;
        border-bottom: 1rem solid #404f5d;
    }

    footer .footer-menu .menu-item_header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20rem;
    }

    footer .footer-menu .menu-item_header.active .menu-item_icon {
        transform: rotate(0);
    }

    footer .footer-menu .menu-item_title {
        font-size: 16rem;
        margin-bottom: 0;
    }

    footer .footer-menu .menu-item_icon {
        width: 15rem;
        height: 15rem;
        background: url(https://img.videone.ai/uploads/pages/ja/down-arrow.svg) no-repeat center / 100% 100%;
        transform: rotate(180deg);
        transition: all 0.4s;
    }

    footer .footer-menu .menu-item_info {
        padding-bottom: 30rem;
    }

    footer .footer-menu .item-info_link {
        font-size: 12rem;
        margin-bottom: 8rem;
    }

    footer .footer-menu .menu-item_desc {
        font-size: 12rem;
        width: 220rem;
    }

    .newsletter-email {
        width: 227rem;
        height: 39rem;
        border-radius: 6rem;
        margin-bottom: 25rem;
    }

    .newsletter-input {
        height: 39rem;
        font-size: 16rem;
        margin-left: 10rem;
        font-size: 16rem;
    }

    .newsletter .tips {
        width: 227rem;
        height: 39px;
        font-size: 14rem;
        position: absolute;
        left: 0;
        transform: translateY(100%);
        line-height: 1.3;
        padding-left: 10px;
        color: #67c23a;
        bottom: 0;
    }

    /*.newsletter-email::after {*/
    /*  right: 13rem;*/
    /*  top: 13.9rem;*/
    /*  width: 7.1rem;*/
    /*  height: 12.1rem;*/
    /*}*/

    footer .footer-menu .menu-item_media {
        /* width: 202rem; */
        height: 44rem;
        font-size: 14rem;
        border-radius: 5rem;
        margin: 20rem 0 30rem;
    }

    footer .footer-menu .media-subitem {
        width: 50rem;
        height: 50rem;
        border-radius: 10rem;
        margin-right: 25rem;
    }

    footer .footer-copyright {
        border-top: 1px solid transparent;
        padding: 0 16px 20rem;
    }

    footer .footer-copyright .container {
        flex-flow: column-reverse;
        gap: 15rem;
    }

    footer .footer-copyright .copyright-text {
        font-size: 12rem;
    }

    footer .footer-copyright .pay-info img{
        width: 100%;
    }

    footer .footer-copyright .language-box {
        display: none;
    }
}

.return-top {
    position: fixed;
    right: 1%;
    bottom: 10%;
    height: 50px;
    width: 50px;
    background-image: url(https://img.videone.ai/uploads/pages/ja/return.png);
    background-color: #4d6c82;
    color: #fff;
    /*display: none;*/
    background-position: center center;
    background-repeat: no-repeat;
    text-align: center;
    cursor: pointer;
    z-index: 999;
}
.return-top:hover {
    background-color: #1e2426
}

@media (max-width: 770px) {
    .return-top {
        /*display: none !important;*/
    }
}

.media-footer {
    width: 150px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
  }

  .media-icons {
    width: calc(33.33% - 10px);
    text-align: left;
  }

  .media-icons img {
    width: 32px;
    height: 32px;
  }

/*activity area*/
.activity-promotion{
    width: 100%;
    height: auto;
    position: fixed;
    bottom: 0;
    z-index: 99999;
}
.activity-promotion .activity-img{
    width: 100%;
    position: relative;
}
.activity-promotion .close{
    position: absolute;
    right: 100px;
    top: 10px;
    z-index: 999;
}
.activity-promotion .mobile{
    display: none;
}
@media screen and (max-width: 768px) {
    .activity-promotion{
        position: sticky;
        top: 0;
        left: 0;
    }
    .activity-promotion .desktop{
        display: none;
    }
    .activity-promotion .mobile{
        display: block;
    }
    .activity-promotion .close{
        right: 10px;
        top: 2px;
    }
}