* {
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  font-family: "Open Sans";
  font-style: normal;
}

a {
  text-decoration: none;
  color: #333333;
}

li {
  list-style: none;
}

.pc_style {
  display: block;
}

.mobile_style {
  display: none;
}


/*common header */
header {
  box-sizing: border-box;
  height: 80px;
  border-bottom: 1px solid #f2f2f2;
}

header .container::before,
header .container::after {
  display: none;
}

/* header.hide-menu .container {
  width: 1080px;
  justify-content: flex-start;
} */

@media (max-width: 768px) {
  header.hide-menu .container {
    width: 100%;
    justify-content: space-between;
  }
}

header .container {
  width: auto;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 155px;
}

header .header-logo>img {
  display: block;
}

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(../../../img/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: 100;
  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(../../../img/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(../../../img/icon-win-blue.svg);
  background-size: 100% 100%;
}

header .header-menu_item .product-hot_win .product-hot_download:hover::before {
  background-image: url(../../../img/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(../../../img/icon-mac-blue.svg);
  background-size: 100% 100%;
}

header .header-menu_item .product-hot_mac .product-hot_download:hover::before {
  background-image: url(../../../img/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: 264px;
  height: 85px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 8px;
  border: 1px solid #e2ebff;
  background: #fff;
  padding-left: 22px;
  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(../../../img/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(../../../img/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(../../../img/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(../../../img/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(../../../img/header/icon-search.svg);
  cursor: pointer;
}

header .header-search_open:hover {
  background-image: url(../../../img/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(../../../img/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(../../../img/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: 14px;
  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 .container {
    position: relative;
    z-index: 999;
    width: 100%;
    justify-content: space-between;
    gap: 0;
    padding: 0 15px;
  }

  header .container::after,
  header .container::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(../../../img/header/icon-menu-switch.svg);
    background-size: 100% 100%;
    margin-left: 10px;
  }

  header .header-menu-switch.active {
    background-image: url(../../../img/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(../../../img/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(../../../img/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(../../../img/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(../../../img/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(../../../img/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 login-member */
header .login-member {
  display: flex;
  align-items: center;
  width: max-content;
  border: none;
}

header .login-member .login-member-btn {
  border-radius: 8px;
  border: 1px solid #4E8CFF;
  background: #FFF;
  padding: 5px 10px 7px 10px;
  color: #4E8CFF;
  font-size: 14px;
  transition: all 0.3s;
  line-height: normal;
}

header .login-member .login-member-btn:hover {
  background: #4E8CFF;
  color: #FFF;
}

header .login-member .avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  overflow: hidden;
}

header .login-member .avatar img {
  width: 100%;
  height: 100%;
}

header .login-member .avatar:hover {
  border: 1px solid #002E99;
}

header .login-member .loading-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

header .login-member .loading-box .loading-box-inner {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: url(../../home/images/loading-d.png) no-repeat center center;
  background-size: cover;
  animation: rotate 1s linear infinite;
}

header .login-member .loading-box .loading-box-inner:hover {
  background: url(../../home/images/loading-h.png) no-repeat center center;
  background-size: cover;
}

/*common footer */
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background: #1B3042;
}

footer .footer-top {
  display: flex;
  justify-content: space-between;
  width: 1080px;
  margin-top: 50px;
}

footer .footer-top .item .item-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  color: #FFFFFF;
}

footer .footer-top .item ul {
  display: flex;
  flex-flow: column nowrap;
  margin-top: 20px;
}

footer .footer-top .item ul li a {
  font-weight: 400;
  font-size: 13px;
  line-height: 238.4%;
  color: #D7DAED;
}

footer .footer-top .item ul li a:hover {
  color: #1b52cb;
}

footer .footer-top .item:nth-child(5) {
  width: 20%;
}

footer .footer-top .item:nth-child(5) .item-desc {
  font-weight: 400;
  font-size: 13px;
  line-height: 238.4%;
  color: #D7DAED;
  margin-top: 20px;
}

footer .footer-top .item:nth-child(5) .buy {
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 10px 20px;
  background: linear-gradient(93.03deg, #4596E5 -9.17%, #4539CC 105.48%);
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  line-height: 238.4%;
  text-align: center;
  color: #FFFFFF;
  margin: 20px 0;
}

footer .footer-top .item:nth-child(5) .buy:hover {
  color: #000000;
}

footer .footer-top .item:nth-child(5) .other-link {
  width: 100%;
  display: flex;
}

footer .footer-top .item:nth-child(5) .other-link .link-item {
  width: 50px;
  height: 50px;
  background: rgba(243, 243, 243, 0.1);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  width: 1080px;
  margin: 20px 0;
  border-top: 1px solid rgba(215, 218, 237, 0.2);
  padding-top: 20px;
}

footer .footer-bottom .copyright {
  font-weight: 400;
  font-size: 14px;
  line-height: 238.4%;
  color: #D7DAED;
}

footer .footer-bottom .languange {
  position: relative;
  width: 120px;
  height: 30px;
}

footer .footer-bottom .languange .current-languange {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

footer .footer-bottom .languange .current-languange .icon {
  display: block;
  width: 20px;
  height: 20px;
  background: url('https://cdn.tunefab.jp/img/languange-icon.svg') no-repeat;
  background-size: 100% 100%;
}

footer .footer-bottom .languange .current-languange .text {
  font-weight: 400;
  font-size: 13px;
  line-height: 238.4%;
  color: #D7DAED;
}

footer .footer-bottom .languange .current-languange .arrow {
  display: block;
  width: 15px;
  height: 15px;
  background: url('https://cdn.tunefab.jp/img/languange-arrow.svg') no-repeat;
  background-size: 100% 100%;
  transition: all 0.5s;
}

footer .footer-bottom .languange .current-languange-choose .arrow {
  transform: rotate(180deg);
}

footer .footer-bottom .languange .other-languange {
  box-sizing: border-box;
  position: absolute;
  bottom: 40px;
  left: -10px;
  width: 130px;
  padding-left: 10px;
  background: #2c465c;
  display: none;
}

footer .footer-bottom .languange .other-languange li a {
  font-weight: 400;
  font-size: 13px;
  line-height: 238.4%;
  color: #D7DAED;
}

footer .footer-bottom .languange .other-languange li a:hover {
  color: #4596E5;
}


@media screen and (max-width: 768px) {
  .pc_style {
    display: none !important;
  }

  .mobile_style {
    display: block;
  }

  /*common footer */
  footer {
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    width: 100%;
    background: #1B3042;
    padding: 20px;
  }

  footer .mobile_container {
    width: 100%;
  }

  footer .mobile_container .mobile_top {
    width: 100%;
  }

  footer .mobile_container .mobile_top .top_item {
    height: 50px;
    overflow: hidden;
    border-bottom: 1px solid #3d4f5e;
  }

  footer .mobile_container .mobile_top .top_item .item-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    line-height: 50px;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
  }

  footer .mobile_container .mobile_top .top_item .item-title::after {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    background: url('../../../img/arrow_white.svg') no-repeat;
    background-size: 100% 100%;
    transition: all 0.5s;
  }

  footer .mobile_container .mobile_top .top_item .item-title-choose::after {
    transform: rotate(180deg);
  }

  footer .mobile_container .mobile_top .top_item ul {
    margin-bottom: 10px;
  }

  footer .mobile_container .mobile_top .top_item ul li a {
    font-weight: 400;
    font-size: 11px;
    line-height: 238.4%;
    color: #EAEAEA;
  }

  footer .mobile_container .mobile_top .top_item:nth-child(5) .item-desc {
    color: #FFFFFF;
    font-size: 12px;
    margin-top: 20px;
  }

  footer .mobile_container .mobile_top .top_item:nth-child(5) .buy {
    display: inline-block;
    color: #FFFFFF;
    background: linear-gradient(93.03deg, #4596E5 -9.17%, #4539CC 105.48%);
    border-radius: 8px;
    padding: 10px 40px;
    margin: 20px 0;
  }

  footer .mobile_container .mobile_top .top_item:nth-child(5) .other-link {
    display: flex;
    padding-bottom: 20px;
  }

  footer .mobile_container .mobile_top .top_item:nth-child(5) .other-link .link-item {
    width: 50px;
    height: 50px;
    background: rgba(243, 243, 243, 0.1);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
  }

  footer .mobile_container .mobile_bottom {
    font-weight: 300;
    font-size: 10px;
    line-height: 174.4%;
    color: #FFFFFF;
    padding-top: 20px;
  }
}