@charset "UTF-8";
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -25%, 0);
    transform: translate3d(0, -25%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -25%, 0);
    transform: translate3d(0, -25%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

html {
  min-width: 100%;
}

body {
  font: 1em/1.6 Arial, 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif, 'Microsoft YaHei';
  min-width: 320px;
  overflow-x: hidden;
  background: #fff;
  color: #000;
  image-rendering: -webkit-optimize-contrast;
}

a {
  outline: none;
  behavior: expression(this.onFocus=this.blur());
  text-decoration: none;
  color: #000;
}

:focus {
  outline: none;
}

a:focus,
a:active,
a:hover {
  outline: 0;
  -moz-outline-style: none;
}

img {
  max-width: 100%;
  height: auto;
  -moz-user-select: none;
  -webkit-user-select: none;
  margin: 0 auto;
}

textarea,
select,
input[type="text"],
input[type='number'],
input[type="button"],
input[type="search"],
input[type="submit"],
button,
input[type="radio"] {
  -webkit-appearance: none;
  border-radius: 0;
  box-shadow: 0;
  border: 0;
}
textarea:focus,
select:focus,
input[type="text"]:focus,
input[type='number']:focus,
input[type="button"]:focus,
input[type="search"]:focus,
input[type="submit"]:focus,
button:focus,
input[type="radio"]:focus {
  outline: 0;
}

#container {
  position: relative;
  left: 0;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

.menu--inview .site-menu-panel {
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  display: block;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
}
.menu--inview .site-menu-mask {
  display: block;
}
.menu--inview .headroom.headroom--unpinned {
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
  position: relative;
}

/* header */
.site-header {
  border-bottom: 6px solid #8b0000;
  width: 100%;
  background-color: #fff;
  z-index: 3;
  top: 0;
  left: 0;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.site-header--fixed {
  position: fixed;
}
.site-header .container {
  height: 91px;
  max-width: 100%;
}
.site-header .logo {
  position: absolute;
  top: 43px;
  left: 32px;
  width: 198px;
  height: 36px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  background-image: url(../images/header/pvigo-logo_C.png);
}
.zh-TW .site-header .logo {
  background-image: url(../images/header/pvigo-logo_C.png);
}
.zh-CN .site-header .logo {
  background-image: url(../images/header/pvigo-logo_D.png);
  width: 194px;
}
.en-US .site-header .logo {
  background-image: url(../images/header/pvigo-logo_E.png);
  width: 218px;
}
.ja-JP .site-header .logo {
  background-image: url(../images/header/pvigo-logo_J.png);
  width: 259px;
}
.site-header .naip-logo {
  position: absolute;
  top: 10px;
  left: 18px;
  width: 179px;
  height: 25px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  background-image: url(../images/header/naip-logo_C.png);
}
.zh-TW .site-header .naip-logo {
  background-image: url(../images/header/naip-logo_C.png);
}
.zh-CN .site-header .naip-logo {
  background-image: url(../images/header/naip-logo_D.png);
  width: 179px;
}
.en-US .site-header .naip-logo {
  background-image: url(../images/header/naip-logo_E.png);
  width: 225px;
}
.ja-JP .site-header .naip-logo {
  background-image: url(../images/header/naip-logo_J.png);
  width: 179px;
}
.site-header .group-title {
  position: absolute;
  bottom: 4px;
  left: 18px;
  line-height: 1;
  -moz-user-select: none;
  -webkit-user-select: none;
  letter-spacing: -0.16px;
}
.site-header .header-top {
  position: absolute;
  top: 10px;
  right: 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.site-header .header-link {
  font-size: 13px;
}
.site-header .header-link li {
  position: relative;
  padding: 0 10px;
  display: block;
}
.site-header .header-link li:first-child {
  padding-left: 0;
}
.site-header .header-link li:first-child:before {
  display: none;
}
.site-header .header-link li:before {
  content: "";
  height: 14px;
  width: 1px;
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  background-color: #000;
}
.site-header .header-link a {
  text-decoration: none;
  display: block;
}
.site-header .header-link a:hover {
  color: #8b0000;
}
.site-header .header-link .sub-menu {
  position: absolute;
  top: 100%;
  right: 0;
  white-space: nowrap;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 5px;
  width: 12em;
}
.site-header .header-link .sub-menu li {
  padding: 0;
}
.site-header .header-link .sub-menu li:before {
  display: none;
}
.site-header .header-link .sub-menu a {
  padding: 5px;
}
.site-header .header-link .sub-menu a:hover {
  color: #fff;
  background: #8b0000;
}
.site-header .header-link .sub-menu span {
  padding: 5px;
}
.site-header .language {
  position: relative;
  width: 186px;
  height: 27px;
  border-radius: 6px;
  border: 2px solid #707070;
}
.site-header .language .form-control {
  font-size: 14px;
  height: 23px;
  padding: 0;
  line-height: 23px;
  padding-left: 52px;
  width: 100%;
  text-align: left;
  display: block;
}
.site-header .language .form-control:after {
  position: absolute;
  top: 10px;
  right: 10px;
  pointer-events: none;
}
.site-header .language .icon-globe {
  position: absolute;
  top: 1px;
  left: 7px;
  background-image: url(../images/header/icon-globe.png);
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}
.site-header .language:before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 2px;
  right: 2px;
  pointer-events: none;
  background-color: #fff;
}
.site-header .language:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 3px 0 3px;
  border-color: #000000 transparent transparent transparent;
  position: absolute;
  top: 10px;
  right: 10px;
  pointer-events: none;
}

.header--sticky {
  padding-top: 97px;
}

.site-menu-panel {
  position: fixed;
  top: 76px;
  right: 3px;
  width: 320px;
  height: auto;
  background-color: #fff;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  z-index: 4;
  display: none;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  border: solid 2px #d1d0d0;
  border-radius: 15px;
  margin-top: 15px;
}
.site-menu-panel:before, .site-menu-panel:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}
.site-menu-panel:before {
  top: -17px;
  right: 20px;
  border-width: 0 14px 17px 14px;
  border-color: transparent transparent #d1d0d0 transparent;
}
.site-menu-panel:after {
  top: -15px;
  right: 22px;
  border-width: 0 12px 15px 12px;
  border-color: transparent transparent #ffffff transparent;
}

.site-menu-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  z-index: 1;
}

.site-menu {
  font-size: 20px;
}
.site-menu a {
  display: block;
  text-decoration: none;
  line-height: 27px;
  cursor: pointer;
}
.site-menu a.active {
  text-decoration: underline;
}
.site-menu a.hover {
  text-decoration: underline;
}
.site-menu__top {
  padding: 10px 27px 0;
  max-height: calc(80vh - 100px);
  overflow: auto;
}
.site-menu__top a {
  text-align: left;
  color: #000;
  padding: 8px;
  border-bottom: 1px solid #707070;
}
.site-menu__top a[data-toggle='collapse'] {
  text-decoration: none !important;
}
.site-menu__top li:last-child a {
  border-bottom: 0;
}
.site-menu__top .sub-menu {
  border-bottom: 1px solid #707070;
}
.site-menu__top .sub-menu a {
  background-color: #efefef;
  border-bottom: 1px solid #fff;
  padding: 8px 17px;
  padding-right: 5px;
}
.site-menu__top .sub-menu a.active {
  text-decoration: underline;
}
.site-menu__top .sub-menu a.hover {
  text-decoration: underline;
}
.site-menu__top .sub-menu span {
  background-color: #f9f9f9;
  border-bottom: 1px solid #fff;
  padding: 8px 17px;
  padding-right: 5px;
  color: #9d9d9d;
  display: block;
}
.site-menu__bottom {
  background-color: #870000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  padding: 10px;
  border-radius: 0 0 15px 15px;
  font-size: 18px;
}
.site-menu__bottom li {
  position: relative;
}
.site-menu__bottom li:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  height: 20px;
  width: 1px;
  background-color: #fff;
}
.site-menu__bottom li:first-child:before {
  display: none;
}
.site-menu__bottom a {
  color: #fff;
  padding: 0 14px;
  font-weight: 700;
}

.header-breadcrumb {
  position: absolute;
  right: 18px;
  bottom: 3px;
}

.breadcrumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  color: #000;
  font-size: 14px;
  line-height: 1.36;
}
.breadcrumb .breadcrumb-item {
  padding: 0 6px;
  position: relative;
}
.breadcrumb .breadcrumb-item:before {
  content: "/";
  position: absolute;
  top: 0;
  left: -2px;
  font-size: 1.15em;
}
.breadcrumb .breadcrumb-item:first-child:before {
  display: none;
}
.breadcrumb .breadcrumb-item:last-child {
  padding-right: 0;
}
.breadcrumb a {
  color: #5a5a5a;
}
.breadcrumb .active {
  color: #000;
}
.breadcrumb .icon-home {
  background-image: url(../images/header/icon-home.svg);
  width: 13px;
  height: 13px;
  top: -1px;
  position: relative;
}

.menu-trigger {
  position: absolute;
  top: 28px;
  right: 18px;
  display: none;
}

.c-hamburger {
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  z-index: 999;
  background-color: transparent;
  -moz-transition: -moz-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}
.c-hamburger:focus {
  outline: none;
}
.c-hamburger span {
  display: block;
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 5px;
  background: #8b0000;
  border-radius: 0;
  -moz-transition: -moz-transform 0s 0.3s;
  -o-transition: -o-transform 0s 0.3s;
  -webkit-transition: -webkit-transform 0s;
  -webkit-transition-delay: 0.3s;
  transition: transform 0s 0.3s;
}
.c-hamburger span::before,
.c-hamburger span::after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  height: 5px;
  background-color: #8b0000;
  border-radius: 0;
  -moz-transition-duration: 0.3s, 0.3s;
  -o-transition-duration: 0.3s, 0.3s;
  -webkit-transition-duration: 0.3s, 0.3s;
  transition-duration: 0.3s, 0.3s;
  -moz-transition-delay: 0.3s, 0s;
  -o-transition-delay: 0.3s, 0s;
  -webkit-transition-delay: 0.3s, 0s;
  transition-delay: 0.3s, 0s;
}
.c-hamburger span::before {
  top: -10px;
  right: 0;
  -moz-transition-property: top, -moz-transform;
  -o-transition-property: top, -o-transform;
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, transform;
}
.c-hamburger span::after {
  bottom: -10px;
  right: 0;
  -moz-transition-property: bottom, -moz-transform;
  -o-transition-property: bottom, -o-transform;
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
}
.c-hamburger.active span {
  background: none;
}
.c-hamburger.active span::before {
  top: 0;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-hamburger.active span::after {
  bottom: 0;
  left: 0;
  right: 0;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.c-hamburger.active span::before, .c-hamburger.active span::after {
  -moz-transition-delay: 0s, 0.3s;
  -o-transition-delay: 0s, 0.3s;
  -webkit-transition-delay: 0s, 0.3s;
  transition-delay: 0s, 0.3s;
}

.sitemap-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
  display: none;
}
.sitemap-mask.show {
  display: block;
}

.sitemap-trigger {
  cursor: pointer;
}
.sitemap-trigger.active {
  color: #870000;
}

.sitemap-panel {
  position: fixed;
  top: 97px;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 2;
  font-size: 20px;
  padding: 34px 5.8% 0;
  display: none;
  color: #aaa;
}
.sitemap-panel .sitemap-container {
  max-width: 1200px;
  margin: 0 auto;
}
.sitemap-panel .text-small {
  font-size: .8rem;
}
.sitemap-panel.show {
  display: block;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  max-height: calc(100vh - 97px);
  overflow: auto;
}
.sitemap-panel.show .sitemap-container {
  padding-bottom: 34px;
}
.sitemap-panel a {
  display: block;
  text-decoration: none;
  line-height: 27px;
  font-size: 20px;
  letter-spacing: .1em;
  cursor: pointer;
  padding: 4px 10px;
}
.sitemap-panel a:hover, .sitemap-panel a:active, .sitemap-panel a.active {
  background-color: #870000;
  color: #fff;
  font-weight: 700;
}
.sitemap-panel a:hover .icon-cart, .sitemap-panel a:active .icon-cart, .sitemap-panel a.active .icon-cart {
  background-image: url(../images/header/icon-cart_white.svg);
}
.sitemap-panel .disabled {
  color: #aaa;
  padding: 4px 10px;
  display: block;
}
.sitemap-panel .sitemap-line {
  width: 100%;
  margin: 24px 40px;
  height: 1px;
  background-color: #ccc;
}
.sitemap-panel .sitemap-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  margin: 0 -3.6%;
}
.sitemap-panel .sitemap-menu li {
  padding: 2px 0;
  position: relative;
}
.sitemap-panel .plus-icon {
  margin-left: -25px;
  width: calc(100% + 25px);
}
.sitemap-panel .plus-icon a {
  padding-left: 35px;
}
.sitemap-panel .plus-icon .icon-cart {
  width: 18px;
  height: 18px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  background-image: url(../images/header/icon-cart.svg);
  position: absolute;
  top: 9px;
  left: 7px;
}
.sitemap-panel .sitemap-item {
  width: calc(100% / 4 - 3.6% * 2);
  margin: 0 3.6%;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .sitemap-panel .sitemap-item {
    width: calc(100% / 4 - 3.6% * 2 - 1px);
  }
}
.sitemap-panel .sitemap-item__header {
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: .1em;
  border-bottom: 1px solid #000;
  padding: 2px 10px;
  margin-bottom: 5px;
  color: #000;
}

.en-US .sitemap-panel a,
.ja-JP .sitemap-panel a {
  letter-spacing: .4px;
}
.en-US .sitemap-panel .plus-icon,
.ja-JP .sitemap-panel .plus-icon {
  margin-left: -30px;
  width: calc(100% + 30px);
}
.en-US .sitemap-panel .plus-icon a,
.ja-JP .sitemap-panel .plus-icon a {
  padding-left: 40px;
}
.en-US .sitemap-panel .plus-icon .icon-cart,
.ja-JP .sitemap-panel .plus-icon .icon-cart {
  top: 9px;
  left: 12px;
}
.en-US .sitemap-panel .sitemap-menu,
.ja-JP .sitemap-panel .sitemap-menu {
  margin: 0 -3.6%;
}
.en-US .sitemap-panel .sitemap-item,
.ja-JP .sitemap-panel .sitemap-item {
  width: calc(100% / 3 - 3.6% * 2);
  margin: 0 3.6%;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .en-US .sitemap-panel .sitemap-item,
  .ja-JP .sitemap-panel .sitemap-item {
    width: calc(100% / 3 - 3.6% * 2 - 1px);
  }
}
.en-US .sitemap-panel .sitemap-item__header,
.ja-JP .sitemap-panel .sitemap-item__header {
  letter-spacing: 0.44px;
}

@media (max-width: 1200px) {
  .sitemap-panel {
    padding-right: 25px;
    padding-left: 25px;
  }
  .sitemap-panel .sitemap-menu {
    margin: 0 -15px;
  }
  .sitemap-panel .sitemap-item {
    width: calc(100% / 4 - 15px * 2);
    margin: 0 15px;
  }
}
@media screen and (max-width: 1200px) and (-ms-high-contrast: active), (max-width: 1200px) and (-ms-high-contrast: none) {
  .sitemap-panel .sitemap-item {
    width: calc(100% / 4 - 15px * 2 - 1px);
  }
}
@media (max-width: 1200px) {
  .sitemap-panel .sitemap-line {
    margin: 24px 15px;
  }

  .en-US .sitemap-panel .sitemap-menu,
  .ja-JP .sitemap-panel .sitemap-menu {
    margin: 0 -15px;
  }
  .en-US .sitemap-panel .sitemap-item,
  .ja-JP .sitemap-panel .sitemap-item {
    width: calc(100% / 3 - 15px * 2);
    margin: 0 15px;
  }
}
@media screen and (max-width: 1200px) and (-ms-high-contrast: active), (max-width: 1200px) and (-ms-high-contrast: none) {
  .en-US .sitemap-panel .sitemap-item,
  .ja-JP .sitemap-panel .sitemap-item {
    width: calc(100% / 3 - 15px * 2 - 1px);
  }
}

/* footer */
.site-footer {
  width: 100%;
  position: relative;
  z-index: 0;
}
.en-US .site-footer {
  font-size: 15px;
}
.site-footer a {
  cursor: pointer;
}
.site-footer a:hover, .site-footer a:active {
  text-decoration: underline;
}
.site-footer .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  max-width: 100%;
}
.site-footer__top {
  background-color: #5d1b1b;
  padding: 12px 0;
}
.site-footer__top .container {
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.site-footer__bottom {
  background-color: #fff;
  padding: 6px 0;
}
.site-footer .footer-info {
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: calc(100% - 132px);
}
.site-footer .footer-info a {
  color: #fff;
  text-decoration: none;
}
.site-footer .footer-info a:hover, .site-footer .footer-info a:active {
  text-decoration: underline;
}
.site-footer .footer-info .tel {
  pointer-events: none;
}
.site-footer .footer-info__item {
  padding-right: 30px;
  padding-left: 28px;
  line-height: 32px;
  position: relative;
}
.site-footer .footer-info__item:nth-child(2):before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: block;
}
.is-mobile .site-footer .footer-info__item:nth-child(2):before {
  display: none;
}
.site-footer .footer-info__item .icon {
  position: absolute;
  top: 6px;
  left: 0;
}
.site-footer .icon-mail {
  background-image: url(../images/footer/icon-mail.svg);
}
.site-footer .icon-phone {
  background-image: url(../images/footer/icon-phone.svg);
}
.site-footer .icon-placeholder {
  background-image: url(../images/footer/icon-placeholder.svg);
}
.site-footer .logo-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  width: 132px;
}
.site-footer .logo {
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-left: 20px;
}
.site-footer .logo-aipla {
  background-image: url(../images/footer/aipla.png);
  width: 61px;
  height: 10px;
}
.site-footer .logo-inta {
  background-image: url(../images/footer/inta.png);
  width: 32px;
  height: 32px;
}
.site-footer .footer-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.site-footer .footer-link li {
  position: relative;
  padding: 0 10px;
  display: block;
}
.site-footer .footer-link li:first-child {
  padding-left: 0;
}
.site-footer .footer-link li:last-child:before {
  display: none;
}
.site-footer .footer-link li:before {
  content: "";
  height: 14px;
  width: 1px;
  display: block;
  position: absolute;
  top: 4px;
  right: 0;
  background-color: #000;
}
.site-footer .footer-link a {
  text-decoration: none;
}
.site-footer .footer-link a:hover {
  color: #0012ff;
}

.sticky-block {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1;
  -moz-transition: bottom 0.5s ease;
  -o-transition: bottom 0.5s ease;
  -webkit-transition: bottom 0.5s ease;
  transition: bottom 0.5s ease;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16), 0 0 0 1px #d4d4d4 inset;
  background-color: #fff;
  padding: 7px;
  padding-bottom: 16px;
  border-radius: 5px;
}
.sticky-block.change-position {
  bottom: 105px;
}
.sticky-block li {
  border-bottom: 1px solid #d4d4d4;
}
.sticky-block li:last-child {
  border-bottom: 0;
}
.sticky-block .mobile {
  display: none;
}
.sticky-block .pad {
  display: none;
}
.is-mobile .sticky-block .pad {
  display: block;
}
.sticky-block a {
  padding: 9px 0;
  display: block;
  position: relative;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  line-height: 21px;
  color: #8b0000;
  text-decoration: none;
}
.sticky-block a:hover, .sticky-block a:active {
  text-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
}
.is-mobile .sticky-block a:hover {
  text-shadow: none;
}
.sticky-block .icon {
  width: 20px;
  height: 20px;
  display: block;
  margin: 0 auto 3px;
}
.sticky-block .icon-phone {
  background-image: url(../images/footer/icon-sticky-phone.svg);
}
.sticky-block .icon-mail {
  background-image: url(../images/footer/icon-sticky-mail.svg);
}
.sticky-block .icon-chat {
  background-image: url(../images/footer/icon-sticky-chat.svg);
}
.sticky-block .icon-top {
  background-image: url(../images/footer/icon-sticky-top.svg);
}
.sticky-block .sticky-block__close {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #8b0000;
  width: 100%;
  height: 16px;
  border-radius: 0 0 5px 5px;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/footer/icon-sticky-close.svg);
}

.is-mobile .sticky-tooltip {
  display: none;
}

.conatct-model .modal-content {
  max-width: 324px;
  min-height: 304px;
  border-radius: 5px;
  border: solid 1px #707070;
  margin: 0 auto;
  text-align: center;
  font-size: 20px;
  line-height: 1.75;
}
.conatct-model .modal-body {
  padding: 1rem;
  padding-top: 42px;
}
.conatct-model .close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  opacity: 1;
}
.conatct-model .close .icon {
  width: 32px;
  height: 32px;
}
.conatct-model .close .icon-close {
  background-image: url(../images/footer/icon-close.svg);
}
.conatct-model .icon-block {
  width: 73px;
  height: 73px;
  border: 3px solid #8b0000;
  margin: 0 auto 22px;
  display: block;
  border-radius: 50%;
  position: relative;
}
.conatct-model .icon-block .icon {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.conatct-model .icon-block .icon-phone {
  background-image: url(../images/footer/icon-sticky-phone.svg);
}
.conatct-model .title {
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: .2em;
  color: #8b0000;
  margin-bottom: 20px;
}
.en-US .conatct-model .title, .ja-JP .conatct-model .title {
  letter-spacing: .1em;
}
.conatct-model .title .main-text {
  display: block;
  font-weight: 700;
}
.conatct-model a {
  text-decoration: none;
}

@media (max-width: 480px) {
  .en-US .site-footer .copyright {
    max-width: 275px;
    margin: 0 auto;
  }
}
/* section */
.site-content {
  position: relative;
  z-index: 0;
  overflow: hidden;
  min-height: calc(100vh - 97px);
}

.icon {
  width: 20px;
  height: 20px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.version {
  padding: 0 20px;
  color: #777;
  font-size: 12px;
  line-height: 30px;
  font-family: arial;
  -moz-user-select: none;
  -webkit-user-select: none;
}

/* Trademark Integration */
.TR_integration {
  font-size: 20px;
  line-height: 1.75;
  background-image: url(../images/TR_integration/bg-TR_integration.jpg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
}
.TR_integration .kv {
  position: relative;
  margin-bottom: 60px;
  -moz-user-select: none;
  -webkit-user-select: none;
}
.TR_integration .kv-title {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  color: #fff;
}
.TR_integration .kv-list {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  color: #fff;
}
.TR_integration .kv-image {
  position: relative;
  z-index: 1;
  height: 500px;
  overflow: hidden;
}
.TR_integration .kv-image img {
  position: absolute;
  z-index: 1;
  display: block;
  margin: 0 auto;
  top: 0;
  right: 0;
  max-width: inherit;
  height: 100%;
}
.TR_integration .kv-main {
  background-image: url(../images/TR_integration/TR_integration_service_banner_text_C.png);
  background-position: left center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 920px;
  height: 100%;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  font-size: 0;
  color: transparent;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.zh-TW .TR_integration .kv-main {
  background-image: url(../images/TR_integration/TR_integration_service_banner_text_C.png);
  background-size: 419px 193px;
}
.zh-CN .TR_integration .kv-main {
  background-image: url(../images/TR_integration/TR_integration_service_banner_text_D.png);
  background-size: 420px 194px;
}
.en-US .TR_integration .kv-main {
  background-image: url(../images/TR_integration/TR_integration_service_banner_text_E.png);
  background-size: 412px 238px;
}
.TR_integration .section {
  padding-bottom: 60px;
  max-width: 920px;
  margin: 0 auto;
}
.TR_integration .section .item:last-child .text-block {
  margin-bottom: 0;
}
.TR_integration .section-header {
  position: relative;
  overflow: hidden;
  padding: 10px 20px;
  font-size: 26px;
  line-height: 36px;
  color: #fff;
  font-weight: 700;
  border-radius: 5px 5px 0 0;
  letter-spacing: .2em;
  margin-bottom: 20px;
}
.TR_integration .section-header span {
  position: absolute;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
  font-size: 85px;
  line-height: 1.41;
  font-family: arial;
  opacity: .1;
  font-weight: 400;
  -moz-user-select: none;
  -webkit-user-select: none;
}
.TR_integration .section-header img {
  display: block;
  margin: 0;
}
.TR_integration .section-content {
  padding: 0 20px;
}
.TR_integration .feature-1 .section-header {
  background-color: #984b13;
}
.TR_integration .feature-1 .title {
  border-bottom-color: #984b13;
}
.TR_integration .feature-1 .title--bg1 {
  background-image: url(../images/TR_integration/TR-feature-1-1.png);
}
.TR_integration .feature-1 .title--bg2 {
  background-image: url(../images/TR_integration/TR-feature-1-2.png);
}
.TR_integration .feature-1 .title--bg3 {
  background-image: url(../images/TR_integration/TR-feature-1-3.png);
}
.TR_integration .feature-2 .section-header {
  background-color: #ac3b00;
}
.TR_integration .feature-2 .title {
  border-bottom-color: #ac3b00;
}
.TR_integration .feature-2 .title--bg1 {
  background-image: url(../images/TR_integration/TR-feature-2-1.png);
}
.TR_integration .feature-2 .title--bg2 {
  background-image: url(../images/TR_integration/TR-feature-2-2.png);
}
.TR_integration .feature-2 .title--bg3 {
  background-image: url(../images/TR_integration/TR-feature-2-3.png);
}
.TR_integration .feature-3 .section-header {
  background-color: #8b0000;
}
.TR_integration .feature-3 .title {
  border-bottom-color: #8b0000;
}
.TR_integration .feature-3 .title--bg1 {
  background-image: url(../images/TR_integration/TR-feature-3-1.png);
}
.TR_integration .feature-3 .title--bg2 {
  background-image: url(../images/TR_integration/TR-feature-3-2.png);
}
.TR_integration .feature-3 .title--bg3 {
  background-image: url(../images/TR_integration/TR-feature-3-3.png);
}
.TR_integration .item p {
  max-width: 846px;
}
.TR_integration .item .text-block {
  padding-left: 18px;
  margin-bottom: 36px;
}
.TR_integration .title {
  border-bottom-style: solid;
  border-bottom-width: 4px;
  background-repeat: no-repeat;
  background-size: auto 44px;
  background-position: 0 0;
  height: 48px;
  -moz-user-select: none;
  -webkit-user-select: none;
  margin-bottom: 10px;
}
.TR_integration .title span {
  display: block;
  text-align: center;
  padding-left: 55px;
  width: 252px;
  letter-spacing: .2em;
  padding-top: 10px;
  line-height: 34px;
  font-size: 22px;
  font-weight: 700;
}
.en-US .TR_integration .title span {
  letter-spacing: 0;
}
.TR_integration .indent {
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.TR_integration p {
  text-align: justify;
  text-justify: distribute;
  color: #010101;
}
.en-US .TR_integration p {
  text-align: justify;
}

@media (min-width: 1921px) {
  .TR_integration .kv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (max-width: 960px) {
  .TR_integration .kv {
    margin-bottom: 40px;
  }
  .TR_integration .kv-image {
    height: 312px;
  }
  .TR_integration .kv-main {
    max-width: 648px;
    width: calc(100% - 7.8% * 2);
  }
  .TR_integration .container {
    padding: 0 7.8%;
  }
  .TR_integration .section {
    max-width: 648px;
    padding-bottom: 40px;
  }
  .TR_integration .item .text-block {
    padding: 0 19px;
  }
  .en-US .TR_integration p {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .TR_integration .section {
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .TR_integration {
    font-size: 16px;
    line-height: 1.5;
  }
  .TR_integration .kv {
    margin-bottom: 15px;
  }
  .TR_integration .kv-image {
    height: 208px;
  }
  .TR_integration .kv-main {
    left: 10%;
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
    background-image: url(../images/TR_integration/TR_integration_service_banner_text-sm_C.png);
    background-size: 280px 141px;
  }
  .zh-TW .TR_integration .kv-main {
    background-image: url(../images/TR_integration/TR_integration_service_banner_text-sm_C.png);
    background-size: 280px 141px;
  }
  .zh-CN .TR_integration .kv-main {
    background-image: url(../images/TR_integration/TR_integration_service_banner_text-sm_D.png);
    background-size: 280px 141px;
  }
  .en-US .TR_integration .kv-main {
    background-image: url(../images/TR_integration/TR_integration_service_banner_text-sm_E.png);
    background-size: 260px 152px;
  }
  .TR_integration .container {
    padding: 0;
  }
  .TR_integration .section {
    padding-bottom: 15px;
  }
  .TR_integration .section-header {
    border-radius: 0;
    text-align: center;
    text-indent: .2em;
    font-size: 22px;
  }
  .en-US .TR_integration .section-header img {
    margin: 0 auto;
    max-height: 30px;
  }
  .TR_integration .section-service {
    padding-left: 10%;
    padding-right: 10%;
  }
  .TR_integration .section-content {
    padding-left: 10%;
    padding-right: 10%;
  }
  .TR_integration .item .text-block {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .TR_integration .kv-image img {
    top: 50%;
    right: 50%;
    -moz-transform: translateX(50%) translateY(-50%);
    -ms-transform: translateX(50%) translateY(-50%);
    -webkit-transform: translateX(50%) translateY(-50%);
    transform: translateX(50%) translateY(-50%);
  }
}
@media (max-width: 320px) {
  .TR_integration .kv-main {
    background-size: 100% auto;
  }
  .zh-TW .TR_integration .kv-main, .zh-CN .TR_integration .kv-main, .en-US .TR_integration .kv-main {
    background-size: 100% auto;
  }
}
.is-mobile .mobile-hide {
  display: none !important;
}
.is-mobile .site-footer .footer-info .tel {
  pointer-events: auto;
}

@media (min-width: 1200px) {
  .to-top {
    right: calc(50% - 580px);
  }
}
@media (max-width: 940px) {
  .site-footer__top {
    padding: 16px 0;
  }

  .menu-trigger {
    display: block;
  }

  .site-header .header-link {
    display: none;
  }
  .site-header .header-top {
    top: 35px;
    right: 105px;
  }
  .site-header .header-breadcrumb {
    display: none;
  }
  .site-header .language {
    display: none;
  }

  .sitemap-mask {
    display: none;
  }

  .sitemap-panel {
    display: none;
  }

  .sticky-block {
    right: 12px;
  }
  .sticky-block .pad {
    display: block;
  }
  .sticky-block.change-position {
    bottom: 150px;
  }
}
@media (max-width: 640px) {
  .headroom {
    -moz-transition: -moz-transform 0.25s ease-in-out;
    -o-transition: -o-transform 0.25s ease-in-out;
    -webkit-transition: -webkit-transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out;
    will-change: transform;
  }
  .headroom.headroom--pinned {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .headroom.headroom--unpinned {
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  #container.menu--inview {
    left: 0;
  }
  #container .sticky-block {
    right: 0;
  }
  #container .sticky-block.change-position {
    position: relative;
    bottom: 0;
  }

  .menu-trigger {
    top: 13px;
  }

  .header--sticky {
    padding-top: 75px;
  }

  .site-header .container {
    height: 69px;
  }
  .site-header .logo {
    top: 36px;
    left: 29px;
    width: 150px;
    height: 27px;
  }
  .zh-TW .site-header .logo {
    background-image: url(../images/header/pvigo-logo_C.png);
  }
  .zh-CN .site-header .logo {
    background-image: url(../images/header/pvigo-logo_D.png);
    width: 146px;
  }
  .en-US .site-header .logo {
    background-image: url(../images/header/pvigo-logo_E.png);
    width: 164px;
  }
  .ja-JP .site-header .logo {
    background-image: url(../images/header/pvigo-logo_J.png);
    width: 196px;
  }
  .site-header .naip-logo {
    top: 10px;
    left: 18px;
    width: 134px;
    height: 20px;
  }
  .zh-TW .site-header .naip-logo {
    background-image: url(../images/header/naip-logo_C.png);
  }
  .zh-CN .site-header .naip-logo {
    background-image: url(../images/header/naip-logo_D.png);
    width: 134px;
  }
  .en-US .site-header .naip-logo {
    background-image: url(../images/header/naip-logo_E.png);
    width: 164px;
  }
  .ja-JP .site-header .naip-logo {
    background-image: url(../images/header/naip-logo_J.png);
    width: 134px;
  }
  .site-header .group-title {
    bottom: 25px;
    left: 105px;
    font-size: 20px;
  }
  .site-header .header-top {
    top: 53px;
    right: calc(100% - 168px);
    width: 148px;
  }
  .site-header .header-top .dropdown-toggle {
    padding-left: 35px;
  }

  .site-footer .container {
    padding: 0 16px;
    font-size: 14px;
  }
  .site-footer__top {
    display: none;
  }
  .site-footer__top .container {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .site-footer .footer-info {
    margin-bottom: 6px;
    display: block;
    width: 100%;
  }
  .site-footer .footer-info__item {
    line-height: 1.44;
    padding-bottom: 10px;
    padding-right: 0;
  }
  .site-footer .footer-info .icon {
    top: 0;
  }
  .site-footer .logo-group {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .site-footer .logo {
    margin-left: 8%;
    margin-right: 8%;
  }
  .site-footer .logo-aipla {
    background-image: url(../images/footer/aipla_s.png);
    width: 122px;
    height: 23px;
  }
  .site-footer .logo-inta {
    background-image: url(../images/footer/inta_s.png);
    width: 69px;
    height: 27px;
  }
  .site-footer .footer-link {
    margin: 0 auto;
  }
  .site-footer .footer-link li:nth-child(1) {
    padding-left: 10px;
  }
  .site-footer .footer-link li:nth-child(2) {
    padding-left: 10px;
  }
  .site-footer .copyright {
    text-align: center;
    width: 100%;
  }

  .version {
    padding: 0 16px;
  }

  .site-menu-mask {
    background-color: rgba(0, 0, 0, 0.7);
  }

  .site-menu-panel {
    display: none;
    top: 0;
    right: 0;
    width: 100%;
    border: 0;
    border-radius: 0;
    margin-top: 0;
    z-index: 2;
  }
  .site-menu-panel:before, .site-menu-panel:after {
    display: none;
  }

  .menu--inview .site-menu-panel {
    top: 75px;
    max-height: calc(100vh - 75px);
    display: block;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
  }

  .site-menu {
    font-size: 18px;
  }
  .site-menu__top {
    padding: 0 25px;
    max-height: calc(100vh - 75px - 60px - 47px);
  }
  .site-menu__bottom {
    font-size: 16px;
    border-radius: 0;
  }

  .sticky-block {
    position: fixed;
    top: inherit;
    bottom: 0;
    right: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -3px 6px 0 rgba(0, 0, 0, 0.2);
    padding: 0;
    border-radius: 0;
  }
  .sticky-block ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
  }
  .sticky-block li {
    position: relative;
    margin-bottom: 0;
    width: calc(100% / 4);
    border: 0;
  }
  .sticky-block li:first-child:before {
    display: none;
  }
  .sticky-block li:before {
    content: "";
    height: 26px;
    width: 1px;
    display: block;
    position: absolute;
    top: 17px;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);
  }
  .sticky-block a {
    box-shadow: none;
    width: 100%;
    background-color: transparent;
    padding: 8px 0;
  }
  .sticky-block .sticky-block__close {
    display: none;
  }
  .sticky-block .mobile {
    display: block;
  }
  .sticky-block .pad {
    display: none;
  }
  .is-mobile .sticky-block .pad {
    display: none;
  }

  .sticky-tooltip {
    display: none;
  }
}
@media (max-height: 209px) {
  #container .sticky-block.change-position {
    position: absolute;
  }
}
@media all and (orientation: landscape) and (max-height: 600px) {
  .to-top {
    position: absolute;
  }
}
