@charset "UTF-8";
/*
Theme Name: smartzaiko
Author: Jiang Guo Hui
Author URI: http://bridgevision-inventory.com/
Description: smartzaiko WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
*/

*,
*:before,
*:after {
  box-sizing: border-box;
}
* {
  padding: 0;
  margin: 0;
  -webkit-tap-highlight-color: transparent;
}
a:focus,
a:active {
  outline: none;
}
a,
a:focus,
a:hover {
  cursor: pointer;
  text-decoration: none;
  transition: .2s;
}
input:focus, textarea:focus {
  outline: none;
}
html {
  font-size: 62.5%;
}
html, body {
  width: 100%;
  height: 100%;
}
body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 1.6rem;
  line-height: 1.4;
  box-sizing: border-box;
  overflow-y: scroll;
  overflow-x: hidden;
  color: #1D2129;
  background-color: #FFFFFF;
  letter-spacing: 1px;
}
html[lang="zh-CN"] body {
  font-family: "Microsoft YaHei", "PingFang SC", system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Rototo, Helvetica, Arial, sans-serif;
}
html[lang="ja"] body {
  font-family: "游ゴシック", YuGothic, Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Helvetica Neue, Verdana, sans-serif;
  font-weight: 500;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
h2,
h3,
h4 {
  font-weight: normal;
}
.block {
  display: block;
}
.pointer {
  cursor: pointer;
}
.is-required {
  color: #EA1F00;
}
.pt-0 {
  padding-top: 0px;
}
.pb-0 {
  padding-bottom: 0px;
}
.pl-0 {
  padding-left: 0px;
}
.pr-0 {
  padding-right: 0px;
}
.mt-0 {
  margin-top: 0px;
}
.mb-0 {
  margin-bottom: 0px;
}
.ml-0 {
  margin-left: 0px;
}
.mr-0 {
  margin-right: 0px;
}
.mt-5 {
  margin-top: 5px;
}
.mb-5 {
  margin-bottom: 5px;
}
.ml-5 {
  margin-left: 5px;
}
.mr-5 {
  margin-right: 5px;
}
.mt-8 {
  margin-top: 8px;
}
.mb-8 {
  margin-bottom: 8px;
}
.ml-8 {
  margin-left: 8px;
}
.mr-8 {
  margin-right: 8px;
}
.mt-10 {
  margin-top: 10px;
}
.mb-10 {
  margin-bottom: 10px;
}
.ml-10 {
  margin-left: 10px;
}
.mr-10 {
  margin-right: 10px;
}
.mt-16 {
  margin-top: 16px;
}
.mb-16 {
  margin-bottom: 16px;
}
.ml-16 {
  margin-left: 16px;
}
.mr-16 {
  margin-right: 16px;
}
.ml-minus-8 {
  margin-left: -8px;
}
.mr-minus-8 {
  margin-right: -8px;
}
.ml-minus-16 {
  margin-left: -16px;
}
.mr-minus-16 {
  margin-right: -16px;
}
/* 文字单行省略号 */
.sle {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  /* max-width: 130px; */
}
/* 文字多行省略号 */
.mle {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  line-clamp: 2;
}
/* 文字多了自动換行 */
.bw {
  word-break: break-all;
  word-wrap: break-word;
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
.flexc {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flexac {
  display: flex;
  align-items: center;
}
.flexr {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.flexjb {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flexjbab {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #9277F7;
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 6px;
  border: none;
  position: relative;
  background-image: linear-gradient(to right, rgba(23, 37, 42, .3) 100%, transparent 100%);
  background-position: left;
  background-size: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 0.8s ease;
  /* max-width: 240px; */
  height: 40px;
  line-height: 1;
  white-space: nowrap;
}
.button:hover {
  background-size: 100% 100%;
  transition: background-size 0.8s ease;
}
.button-white {
  background-color: #FFFFFF;
  color: #9277F7;
}
.image-wraper {
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-bottom: 25%;
}
.image-wraper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-size {
  width: 100%;
  height: auto;
}
.image-scale {
  overflow: hidden;
  /* border-radius: 12px; */
}
.image-scale img {
  transition: transform 0.8s ease;
  display: block;
  width: 100%;
  height: auto;
}
.image-scale:hover img {
  transform: scale(1.15);
  transform-origin: center center;
  transition: transform 0.8s ease;
}
.no-data {
  text-align: center;
}
#page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#content {
	padding: 72px 0;
  flex: 1;
  display: flex;
}
#main {
  flex: 1;
  /* overflow: auto; */
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.container {
	/* max-width: 1240px; */
  max-width: 1040px;
  margin: 0 auto;
	position: relative;
	padding-left: 16px;
	padding-right: 16px;
  width: 100%;
}
.vertical-align-center {
  margin: auto;
}
/* Header */
header {
	position: fixed;
	z-index: 2000;
	width: 100%;
  background: rgba(255, 255, 255, 0.8);
  height: 72px;
	display: flex;
  justify-content: space-between;
	align-items: center;
  padding: 8px 16px 8px 0;
}
header .header-logo {
	font-size: 0;
  z-index: 1000;
  margin-right: 32px;
  min-width: 250px;
  margin-left: 32px;
}
header .menu-container {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
header .language {
	margin-left: 24px;
}
header .menu {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
header .menu li a {
	position: relative;
	display: inline-block;
	margin-right: 32px;
  color: #1D2129;
  font-size: 18px;
  font-weight: 600;
}
html[lang="ja"] body header .menu li a {
  margin-top: 3px;
}
header .menu li a:after {
  border-bottom: 2px solid #9277F7;
  bottom: -6px;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  transition-duration: 550ms;
  transition-property: width;
  transition-timing-function: cubic-bezier(0.85, 0, 0, 1);
  width: 0
}
header .menu li a:hover {
  color: #9277F7;
}
header .menu li a:hover:after {
  width: 100%;
}

/* Language */
.language {
  position: relative;
  display: inline-block;
}
.language-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #9277F7;
  padding: 5px 16px 6px 12px;
  border: solid 2px #9277F7;
  background-color: #FFFFFF;
  min-width: 160px;
  position: relative;
  border-radius: 6px;
  height: 40px;
}
.lang-flag {
  width: 20px;
  height: auto;
  margin-right: 5px;
  margin-top: 2px;
}
.lang-arrow {
  position: absolute;
  right: 12px;
  transition: transform 0.3s ease;
  width: 8px;
  height: 8px;
  border-left: 2px solid #9277F7;
  border-top: 2px solid #9277F7;
  transform: rotate(225deg);
  margin-bottom: 2px;
}
.language-toggle.active .lang-arrow {
  transform: rotate(405deg);
  margin-top: 8px;
}
.language-dropdown {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  min-width: 160px;
  background-color: #9277F7;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  display: none;
  z-index: 999;
}
.language-dropdown.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.language-dropdown li {
  list-style: none;
}
.language-dropdown a {
  display: flex;
  align-items: center;
  color: #FFFFFF;
  text-decoration: none;
  padding: 8px 16px 10px 12px;
}
.language-dropdown a img {
  margin-right: 5px;
  margin-top: 3px;
}
.language-dropdown .lang-link.disabled {
  opacity: 0.5;
  cursor: default;
}
.language-dropdown .tooltip {
  position: relative;
}
.language-dropdown .tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translate(-100%, -50%);
  background: #000000;
  color: #FFFFFF;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 1.2rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
  z-index: 1000;
}
.language-dropdown .tooltip::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent #000000;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  z-index: 1000;
  pointer-events: none;
}
.language-dropdown .tooltip:hover::after,
.language-dropdown .tooltip:hover::before {
  opacity: 1;
}
/* Breadcrumb */
.breadcrumb {
	border-bottom: solid 1px #DDDDDD;
	padding-bottom: 14px;
	margin-bottom: 16px;
}
.breadcrumb i {
	font-size: 1.6rem;
}
.breadcrumb a {
	color: #1D2129;
}
.breadcrumb a:hover {
	color: #9277F7;
}
/* 返回页面顶端 */
.back-to-top {
  position: fixed;
  bottom: 64px;
  right: max(16px, (100% - 1040px) / 2 - 64px);
  width: 48px;
  height: 48px;
  background-color: #9277F7;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
  justify-content: center;
  align-items: center;
  display: flex;
  padding-top: 8px;
}
.back-to-top .arrow-up {
  width: 16px;
  height: 16px;
  border-left: 2px solid white;
  border-top: 2px solid white;
  transform: rotate(45deg);
}
/* Footer */
footer {
  background-color: #F2F3F5;
  color: #3D3D3D;
  padding-top: 32px;
}
footer .footer-box {
  display: flex;
  margin-left: 96px;
  margin-top: 16px;
}
footer .footer-link-column {
  margin-right: 128px;
}
footer .footer-link li a {
  display: block;
  position: relative;
	color: #1D2129;
  width: fit-content;
  margin-bottom: 24px;
  word-break: break-all;
  font-size: 1.8rem;
  font-weight: 600;
}
footer .footer-link li a:after {
  border-bottom: 2px solid #9277F7;
  bottom: -4px;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  transition-duration: 550ms;
  transition-property: width;
  transition-timing-function: cubic-bezier(0.85, 0, 0, 1);
  width: 0
}
footer .footer-link li a:hover {
  color: #9277F7;
}
footer .footer-link li a:hover:after {
  width: 100%;
}
footer .footer-border {
  height: 1px;
  border-bottom: solid 1px #DDDDDD;
  margin-bottom: 16px;
  width: 100%;
}
footer .footer-location {
  display: flex;
  justify-content: space-between;
}
footer .footer-logo {
  min-width: 136px;
  margin-left: 16px;
}
footer .copyright {
  text-align: center;
	padding: 16px 0;
  margin-top: 8px;
}
/**
* min-width: 767px
*/
@media all and (min-width: 768px) {
  header #top_toggle {
    display: none !important;
  }
  .menu-mobile-container {
    display: none !important;
  }
}

/**
* max-width: 1499px
*/
@media screen and (max-width: 1499px) {
  header .menu li a {
    margin-right: 16px;
  }
  header .menu li a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 65px;
    margin-right: 12px;
    margin-top: 7px;
  }
  /* html[lang="ja"] body header .menu li a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 65px;
    margin-right: 12px;
    margin-top: 7px;
  } */
}
/**
* max-width: 767px
*/
@media screen and (max-width: 767.9px) {
  body {
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: 1.4rem;
    line-height: 1.6;
  }
  header .menu-container {
    display: none;
  }
  header .header-logo {
    margin-left: 16px;
    width: 240px;
  }
  header #top_toggle {
    display: block;
		position: absolute;
    width: 72px;
    height: 72px;
    cursor: pointer;
    background: #9277F7;
    z-index: 1000;
    right: 0;
  }
  header #top_toggle span {
    display: block;
    position: absolute;
    left: 23px;
    width: 30px;
    border-bottom: 1px solid #FFFFFF;
    transition: .2s ease-in-out;
  }
  header #top_toggle span:nth-child(1) {
    top: 18px;
  }
  header #top_toggle span:nth-child(2) {
    top: 23px;
  }
  header #top_toggle span:nth-child(3) {
    top: 28px;
  }
  header #top_toggle .text {
    display: none;
    margin-top: 36px;
    text-align: center;
    font-size: 1.2rem;
    color: #FFFFFF;
  }
  header #top_toggle .text.active {
    display: block;
  }
  header #top_toggle.active {
    /* background: #000103; */
    background-color: rgb(0, 1, 3);
  }
  header #top_toggle.active span:nth-child(1) {
    top: 20px;
    left: 23px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  header #top_toggle.active span:nth-child(2), header #top_toggle.active span:nth-child(3) {
    top: 20px;
    left: 23px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .menu-mobile-container {
    display: none;
    padding: 72px 16px 16px 16px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    background-color: #FFFFFF;
    z-index: 101;
  }
  .menu-mobile-container .language {
    margin: 16px 0 24px 0;
    width: 100%;
  }
  .menu-mobile-container .language .language-dropdown {
    width: 100%;
  }
  .menu-mobile-container .menu-mobile {
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 24px;
  }
  .menu-mobile-container .menu-mobile li a {
    display: block;
    position: relative;
    padding: 8px 16px;
    border-top: 1px solid #E5E5E5;
    color: #3D3D3D;
    font-size: 1.6rem;
  }
  .menu-mobile-container .button {
    width: calc(50% - 11px);
  }
  /* Footer */
  footer .footer-box {
    margin-left: 0px;
    width: 100%;
  }
  footer .footer-link {
    width: 50%;
  }
  footer .footer-link li a {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
  footer .footer-link-column {
    margin-right: 16px;
  }
  footer .footer-location {
    flex-direction: column;
  }
  footer .footer-logo {
    display: none;
  }
  footer .copyright {
  text-align: left;
  }
}
