@charset "UTF-8";
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, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, ar, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}

@font-face {
  font-family: 'Noto Sans TC';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../vendor/fonts/NotoSansTC-Regular.ttf") format("truetype");
}

@font-face {
  font-family: 'Noto Sans TC';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../vendor/fonts/NotoSansTC-Bold.ttf") format("truetype");
}

@-webkit-keyframes ani-scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes ani-scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

body {
  font-family: "Noto Sans TC", "Microsoft JhengHei", "微軟正黑體", sans-serif;
  color: #383737;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.2;
  position: relative;
  overflow-x: hidden;
}

@media (max-width: 991px) {
  body {
    padding-top: 56px;
  }
}

@media (max-width: 767px) {
  body {
    padding-top: 46px;
  }
}

select, button, textarea, input {
  font-family: "Noto Sans TC", "Microsoft JhengHei", "微軟正黑體", sans-serif;
  outline: none;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: none;
}

table {
  border-collapse: collapse;
}

a {
  color: #ffffff;
}

a, a:focus {
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}

a:active {
  outline: none;
}

img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100%;
}

.container {
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 1200px) {
  .container {
    width: 1140px;
    padding-right: 0px;
    padding-left: 0px;
  }
}

@media (min-width: 1400px) {
  .container {
    width: 1350px;
  }
}

@media (min-width: 1599px) {
  .container {
    width: 1500px;
  }
}

.container--xl {
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 1200px) {
  .container--xl {
    width: 1140px;
    padding-right: 0px;
    padding-left: 0px;
  }
}

@media (min-width: 1400px) {
  .container--xl {
    width: 1350px;
  }
}

@media (min-width: 1600px) {
  .container--xl {
    width: 1400px;
  }
}

@media (min-width: 1800px) {
  .container--xl {
    width: 1680px;
  }
}

.pop__container {
  padding-top: 40px;
  padding-bottom: 40px;
}

.pop__close {
  width: 34px;
  height: 34px;
  background: url("../images/pop/pop-close.png");
  background-position: center center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: -30px;
  right: 0;
  z-index: 1;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  cursor: pointer;
}

@media (max-width: 1599px) {
  .pop__close {
    right: 30px;
  }
}

@media (max-width: 767px) {
  .pop__close {
    right: 15px;
  }
}

@media (hover: hover) {
  .pop__close:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.pop__wrap {
  width: 1600px;
  position: relative;
}

@media (max-width: 1599px) {
  .pop__wrap {
    width: 100vw;
  }
}

.pop__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: calc( 100% + 30px);
  margin-left: -15px;
  margin-right: -15px;
  margin-top: 20px;
}

@media (max-width: 374px) {
  .pop__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.pop__btn-item {
  width: calc( 50% - 30px);
  margin-left: 15px;
  margin-right: 15px;
  border: 3px solid #ff3a26;
  -webkit-box-shadow: 0 0 13px rgba(255, 58, 38, 0.6);
          box-shadow: 0 0 13px rgba(255, 58, 38, 0.6);
  font-size: 1.875em;
  letter-spacing: 0.3em;
  line-height: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 34px;
  padding-right: 90px;
  position: relative;
}

@media (max-width: 991px) {
  .pop__btn-item {
    font-size: 1.5em;
    padding-left: 15px;
  }
}

@media (max-width: 767px) {
  .pop__btn-item {
    font-size: 1.125em;
    border-width: 2px;
    width: calc( 50% - 10px);
    margin-left: 5px;
    margin-right: 5px;
    padding-right: 40px;
  }
}

@media (max-width: 480px) {
  .pop__btn-item {
    border-width: 1px;
    font-size: 4vw;
    letter-spacing: 0.1em;
    line-height: 50px;
  }
}

@media (max-width: 374px) {
  .pop__btn-item {
    width: 160px;
    margin-top: 15px;
  }
  .pop__btn-item:first-child {
    margin-top: 0;
  }
}

@media (hover: hover) {
  .pop__btn-item:hover {
    -webkit-animation: ani-scale 0.8s ease infinite;
            animation: ani-scale 0.8s ease infinite;
  }
}

.pop__btn-item::after {
  content: "";
  display: block;
  background: url("../images/pop/pop-btn-arrow-1.png");
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 62px;
  height: 14px;
  position: absolute;
  right: 15px;
  top: calc( 50% - 7px);
}

@media (max-width: 991px) {
  .pop__btn-item::after {
    width: 52px;
    height: 12px;
  }
}

@media (max-width: 767px) {
  .pop__btn-item::after {
    right: 10px;
    width: 30px;
    height: 8px;
    top: calc( 50% - 4px);
  }
}

.pop__btn-item.highlight {
  background: #ff3a26;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.pop__btn-item.highlight::after {
  background: url("../images/pop/pop-btn-arrow-2.png");
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.pop--purchase {
  overflow-x: hidden;
}

.pop--purchase .pop__head {
  width: 1324px;
  height: 90px;
  margin-left: auto;
  margin-right: auto;
  background: url("../images/pop/pop-purchase-title.png");
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  font-size: 1.875em;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  padding-top: 38px;
}

@media (max-width: 1399px) {
  .pop--purchase .pop__head {
    width: 1200px;
    height: 82px;
    padding-top: 32px;
  }
}

@media (max-width: 1199px) {
  .pop--purchase .pop__head {
    width: 100%;
    background-size: auto 100%;
  }
}

@media (max-width: 991px) {
  .pop--purchase .pop__head {
    height: 68px;
    font-size: 1.5em;
    padding-top: 30px;
  }
}

@media (max-width: 767px) {
  .pop--purchase .pop__head {
    font-size: 1.25em;
    padding-top: 22px;
    background: url("../images/pop/pop-purchase-title-sm.png");
    background-position: top center;
    background-size: auto 100%;
    background-repeat: no-repeat;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .pop--purchase .pop__head {
    font-size: 1.125em;
    height: 49px;
    padding-top: 18px;
  }
}

.pop--purchase .pop__body {
  width: 100%;
  background: url("../images/pop/pop-purchase-body-bg-2.png");
  background-position: bottom center;
  background-size: auto;
  background-repeat: no-repeat;
  padding-bottom: 112px;
}

@media (max-width: 767px) {
  .pop--purchase .pop__body {
    background-size: 1200px auto;
    padding-bottom: 30px;
  }
}

.pop--purchase .pop__body-wrap {
  background: url("../images/pop/pop-purchase-body-bg.jpg");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 938px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 14px;
}

@media (max-width: 1399px) {
  .pop--purchase .pop__body-wrap {
    width: 856px;
  }
}

@media (max-width: 991px) {
  .pop--purchase .pop__body-wrap {
    width: 710px;
  }
}

@media (max-width: 767px) {
  .pop--purchase .pop__body-wrap {
    width: 94vw;
  }
}

@media (max-width: 480px) {
  .pop--purchase .pop__body-wrap {
    padding-bottom: 5px;
  }
}

.pop--purchase .pop__body-text {
  font-size: 1.5em;
  color: #c9c9c9;
  line-height: 1.458333;
  text-align: center;
  padding: 22px 90px;
  border-bottom: 14px solid #f0f1f1;
}

@media (max-width: 1399px) {
  .pop--purchase .pop__body-text {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 991px) {
  .pop--purchase .pop__body-text {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 767px) {
  .pop--purchase .pop__body-text {
    font-size: 1.25em;
  }
}

@media (max-width: 480px) {
  .pop--purchase .pop__body-text {
    font-size: 1em;
    padding: 10px 15px;
    border-width: 10px;
  }
}

.pop--purchase .pop__body-title {
  font-size: 1.875em;
  font-weight: 700;
  color: #ff3a26;
  letter-spacing: 0.3em;
  text-shadow: 0 0 13px rgba(255, 22, 0, 0.6);
  width: 514px;
  line-height: 60px;
  background: #252525;
  border: 2px solid #f0f1f1;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: -14px;
  margin-bottom: -34px;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .pop--purchase .pop__body-title {
    font-size: 1.5em;
    line-height: 50px;
    width: 450px;
  }
}

@media (max-width: 767px) {
  .pop--purchase .pop__body-title {
    font-size: 1.25em;
    width: 18em;
  }
}

@media (max-width: 480px) {
  .pop--purchase .pop__body-title {
    width: 90%;
    border-width: 1px;
    margin-top: -10px;
    font-size: 1.125em;
  }
}

.pop--purchase .pop__body-block {
  width: 914px;
  border: 3px solid #ff3a26;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  padding-bottom: 30px;
}

@media (max-width: 1399px) {
  .pop--purchase .pop__body-block {
    width: calc( 100% - 30px);
  }
}

@media (max-width: 767px) {
  .pop--purchase .pop__body-block {
    border-width: 2px;
  }
}

@media (max-width: 480px) {
  .pop--purchase .pop__body-block {
    width: calc( 100% - 10px);
    border-width: 1px;
  }
}

.pop--purchase .pop__body-btn {
  width: 330px;
  font-size: 0.8333333em;
  font-weight: 700;
  color: #ffd4ba;
  background: #ff3a26;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
  padding: 12px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 13px rgba(255, 22, 0, 0.5), 0 -6px 4px #ff744c inset, 0 6px 4px #ff0000 inset;
          box-shadow: 0 0 13px rgba(255, 22, 0, 0.5), 0 -6px 4px #ff744c inset, 0 6px 4px #ff0000 inset;
  margin-top: 20px;
  cursor: pointer;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

@media (max-width: 767px) {
  .pop--purchase .pop__body-btn {
    width: 240px;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .pop--purchase .pop__body-btn {
    font-size: 1em;
  }
}

@media (max-width: 374px) {
  .pop--purchase .pop__body-btn {
    width: 100%;
  }
}

.pop--purchase .pop__body-btn .highlight {
  font-size: 1.6em;
  color: #ffffff;
}

@media (hover: hover) {
  .pop--purchase .pop__body-btn:hover {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}

.pop--purchase .pop__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 26px;
}

@media (max-width: 767px) {
  .pop--purchase .pop__row {
    margin-top: 15px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.pop--purchase .pop__row:first-child {
  margin-top: 0;
}

@media (max-width: 767px) {
  .pop--purchase .pop__row--4 .pop__col {
    width: 50%;
    margin-top: 15px;
  }
  .pop--purchase .pop__row--4 .pop__col:first-child, .pop--purchase .pop__row--4 .pop__col:nth-child(2) {
    margin-top: 0;
  }
  .pop--purchase .pop__row--4 .pop__col:nth-child(odd)::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .pop--purchase .pop__row--3 .pop__col {
    width: 50%;
    margin-top: 15px;
  }
  .pop--purchase .pop__row--3 .pop__col:first-child, .pop--purchase .pop__row--3 .pop__col:nth-child(2) {
    margin-top: 0;
  }
  .pop--purchase .pop__row--3 .pop__col:nth-child(odd)::before {
    display: none;
  }
}

.pop--purchase .pop__col {
  text-align: center;
  font-size: 1.5em;
  color: #ffffff;
  text-shadow: 0 0 13px #ff1600;
  text-align: center;
  padding-left: 35px;
  padding-right: 35px;
  position: relative;
}

@media (max-width: 991px) {
  .pop--purchase .pop__col {
    font-size: 1.25em;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 767px) {
  .pop--purchase .pop__col {
    font-size: 1.125em;
  }
}

@media (max-width: 480px) {
  .pop--purchase .pop__col {
    font-size: 1em;
  }
}

@media (max-width: 374px) {
  .pop--purchase .pop__col {
    font-size: 0.875em;
  }
}

.pop--purchase .pop__col::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc( 50% - 12px);
  left: 0;
  z-index: 1;
  width: 1px;
  height: 24px;
  background: #ffffff;
  -webkit-box-shadow: 0 0 13px #ff1600;
          box-shadow: 0 0 13px #ff1600;
}

.pop--purchase .pop__col:first-child {
  padding-left: 0;
}

.pop--purchase .pop__col:first-child::before {
  display: none;
}

.pop--purchase .pop__col:last-child {
  padding-right: 0;
}

@media (max-width: 767px) {
  .pop--purchase .pop__col:last-child {
    padding-right: 15px;
  }
}

.lity-wrap::after {
  content: "";
  display: block;
  background: url("../images/pop/pop-light.png");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.pop--info {
  overflow-x: hidden;
}

.pop--info .pop__head {
  width: 1324px;
  height: 90px;
  margin-left: auto;
  margin-right: auto;
  background: url("../images/pop/pop-purchase-title.png");
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  font-size: 1.875em;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  padding-top: 38px;
}

@media (max-width: 1399px) {
  .pop--info .pop__head {
    width: 1200px;
    height: 82px;
    padding-top: 32px;
  }
}

@media (max-width: 1199px) {
  .pop--info .pop__head {
    width: 100%;
    background-size: auto 100%;
  }
}

@media (max-width: 991px) {
  .pop--info .pop__head {
    height: 68px;
    font-size: 1.5em;
    padding-top: 30px;
  }
}

@media (max-width: 767px) {
  .pop--info .pop__head {
    font-size: 1.25em;
    padding-top: 22px;
    background: url("../images/pop/pop-purchase-title-sm.png");
    background-position: top center;
    background-size: auto 100%;
    background-repeat: no-repeat;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .pop--info .pop__head {
    font-size: 1.125em;
    height: 69px;
    padding-top: 18px;
  }
}

.pop--info .pop__head .highlight {
  color: #d7f9ff;
}

.pop--info .pop__body {
  width: 100%;
  background: url("../images/pop/pop-purchase-body-bg-2.png");
  background-position: bottom center;
  background-size: auto;
  background-repeat: no-repeat;
  padding-bottom: 112px;
}

@media (max-width: 767px) {
  .pop--info .pop__body {
    background-size: 1200px auto;
    padding-bottom: 30px;
  }
}

.pop--info .pop__body-wrap {
  background: url("../images/pop/pop-purchase-body-bg.jpg");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 938px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 44px;
}

@media (max-width: 1399px) {
  .pop--info .pop__body-wrap {
    width: 856px;
  }
}

@media (max-width: 991px) {
  .pop--info .pop__body-wrap {
    width: 710px;
  }
}

@media (max-width: 767px) {
  .pop--info .pop__body-wrap {
    width: 94vw;
  }
}

@media (max-width: 480px) {
  .pop--info .pop__body-wrap {
    padding-bottom: 15px;
  }
}

.pop--info .pop__body-text {
  padding: 5px;
  border-bottom: 14px solid #f0f1f1;
}

@media (max-width: 480px) {
  .pop--info .pop__body-text {
    padding: 10px 15px;
    border-width: 10px;
  }
}

.pop--info .pop__body-title {
  font-size: 1.875em;
  font-weight: 700;
  color: #ff3a26;
  letter-spacing: 0.3em;
  text-shadow: 0 0 13px rgba(255, 22, 0, 0.6);
  width: 514px;
  line-height: 60px;
  background: #252525;
  border: 2px solid #f0f1f1;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: -14px;
  margin-bottom: -34px;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .pop--info .pop__body-title {
    font-size: 1.5em;
    line-height: 50px;
    width: 450px;
  }
}

@media (max-width: 767px) {
  .pop--info .pop__body-title {
    font-size: 1.25em;
    width: 18em;
  }
}

@media (max-width: 480px) {
  .pop--info .pop__body-title {
    width: 90%;
    border-width: 1px;
    margin-top: -10px;
    font-size: 1.125em;
  }
}

.pop--info .pop__body-box {
  width: 784px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 991px) {
  .pop--info .pop__body-box {
    width: 90%;
  }
}

.pop--info .pop__block {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
}

.pop--info .pop__item {
  width: 240px;
  text-align: center;
}

@media (max-width: 991px) {
  .pop--info .pop__item {
    width: 200px;
  }
}

@media (max-width: 767px) {
  .pop--info .pop__item {
    width: 30%;
  }
}

.pop--info .pop__item-title {
  font-size: 1.5em;
  font-weight: 700;
  color: #ffffff;
}

@media (max-width: 991px) {
  .pop--info .pop__item-title {
    font-size: 1.25em;
  }
}

@media (max-width: 767px) {
  .pop--info .pop__item-title {
    font-size: 1em;
  }
}

.pop--info .pop__item-text {
  border: 2px solid #f0f1f1;
  background: #252525;
  font-size: 4.5em;
  color: #ff3a26;
  text-shadow: 0 0 13px rgba(255, 58, 38, 0.6);
  padding-bottom: 10px;
  margin-top: 5px;
}

@media (max-width: 991px) {
  .pop--info .pop__item-text {
    font-size: 3.75em;
  }
}

@media (max-width: 767px) {
  .pop--info .pop__item-text {
    font-size: 8vw;
    border-width: 1px;
    padding-bottom: 1vw;
  }
}

.pop--info .pop__footer {
  font-size: 1.125em;
  font-weight: 700;
  color: #dfdfdf;
  background: #062100;
  padding: 15px 30px;
  line-height: 1.748;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  text-align: justify;
}

@media (max-width: 767px) {
  .pop--info .pop__footer {
    font-size: 1em;
    padding: 15px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
}

.pop--info .pop__footer .highlight {
  color: #edd69e;
}

.pop--info .pop__footer .sm {
  font-weight: 400;
  font-size: 0.8889em;
}

.navbar {
  background: #ffffff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1030;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: background;
  transition-property: background;
  padding-left: 60px;
  padding-right: 60px;
}

@media (max-width: 1599px) {
  .navbar {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 1399px) {
  .navbar {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 991px) {
  .navbar {
    padding: 8px 15px;
    background: #ffffff;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.29);
            box-shadow: 0 0 3px rgba(0, 0, 0, 0.29);
  }
}

@media (max-width: 480px) {
  .navbar {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.navbar--active {
  background: rgba(255, 255, 255, 0.9);
}

.navbar__logo {
  position: relative;
  display: block;
  width: 150px;
  z-index: 11;
}

@media (max-width: 991px) {
  .navbar__logo {
    width: 130px;
  }
}

@media (max-width: 767px) {
  .navbar__logo {
    width: 120px;
  }
}

@media (max-width: 575px) {
  .navbar__logo {
    width: 77px;
  }
}

.navbar__logo img {
  width: 100%;
  max-width: 100%;
  display: block;
}

.navbar__body {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar__links {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

@media (max-width: 991px) {
  .navbar__links {
    display: none;
  }
}

.navbar__link {
  display: block;
  position: relative;
  padding: 0 35px 20px;
  margin-left: 45px;
}

@media (max-width: 1199px) {
  .navbar__link {
    margin-left: 10px;
    padding-bottom: 14px;
  }
}

.navbar__link:first-child {
  margin-left: 0;
}

.navbar__link::after {
  content: "";
  display: block;
  width: 82px;
  height: 14px;
  background: url("../images/common/navbar-link-icon-1.png");
  background-position: center center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 16px;
  left: calc( 50% - 41px);
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: opacity,-webkit-transform;
  transition-property: opacity,-webkit-transform;
  transition-property: transform,opacity;
  transition-property: transform,opacity,-webkit-transform;
}

@media (max-width: 1199px) {
  .navbar__link::after {
    width: 60px;
    height: 10px;
    left: calc( 50% - 30px);
  }
}

.navbar__link-item {
  position: relative;
  z-index: 1;
  font-size: 1.375em;
  line-height: 60px;
  color: #123979;
  text-align: center;
}

@media (max-width: 1399px) {
  .navbar__link-item {
    font-size: 1.25em;
  }
}

@media (max-width: 1199px) {
  .navbar__link-item {
    font-size: 1.125em;
  }
}

.navbar__link-item:last-child {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
}

.navbar__link:hover, .navbar__link--active {
  background: url("../images/common/navbar-link-bg.jpg");
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.navbar__link:hover::after, .navbar__link--active::after {
  background: url("../images/common/navbar-link-icon-2.png");
  background-position: center center;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.navbar__link:hover .navbar__link-item, .navbar__link--active .navbar__link-item {
  color: #ffffff;
}

.navbar__link:hover .navbar__link-item:first-child, .navbar__link--active .navbar__link-item:first-child {
  opacity: 0;
}

.navbar__link:hover .navbar__link-item:last-child, .navbar__link--active .navbar__link-item:last-child {
  display: block;
}

.navbar__social {
  margin-left: 80px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

@media (max-width: 1599px) {
  .navbar__social {
    margin-left: 30px;
  }
}

@media (max-width: 767px) {
  .navbar__social {
    margin-left: 5px;
  }
}

.navbar__social-item {
  margin-left: 10px;
  width: 54px;
  border-radius: 10em;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

@media (max-width: 1199px) {
  .navbar__social-item {
    width: 40px;
  }
}

@media (max-width: 767px) {
  .navbar__social-item {
    width: 30px;
    margin-left: 5px;
  }
}

.navbar__social-item:first-child {
  margin-left: 0;
}

.navbar__social-item:hover {
  opacity: 0.8;
}

.navbar__social-item img {
  display: block;
}

.navbar__social-item--fb {
  -webkit-box-shadow: 0 5px 10px rgba(52, 112, 210, 0.3);
          box-shadow: 0 5px 10px rgba(52, 112, 210, 0.3);
}

.navbar__social-item--line {
  -webkit-box-shadow: 0 5px 10px rgba(39, 195, 18, 0.3);
          box-shadow: 0 5px 10px rgba(39, 195, 18, 0.3);
}

.footer {
  background: #f5f5f5;
  line-height: 1.46;
  padding-top: 40px;
}

.footer__text {
  font-size: 1.125em;
  font-weight: 700;
  color: #333333;
}

@media (max-width: 1199px) {
  .footer__text {
    font-size: 1.125em;
  }
}

@media (max-width: 767px) {
  .footer__text {
    font-size: 1em;
  }
}

.footer__block {
  text-align: center;
  font-size: 0.875em;
  font-weight: 400;
  color: #f5f5f5;
  letter-spacing: 0.2em;
  margin-top: 40px;
  background: #575757;
  padding: 13px 15px;
}

@media (max-width: 991px) {
  .footer__block {
    padding-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .footer__block {
    padding-bottom: 75px;
  }
}

.footer__block a {
  color: #f5f5f5;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.footer__block a:hover {
  opacity: 0.8;
}

.footer__item {
  display: inline;
  margin-left: 15px;
}

@media (max-width: 767px) {
  .footer__item {
    display: block;
    margin-left: 0;
  }
}

.footer__item::before {
  content: "｜";
  margin-right: 15px;
}

@media (max-width: 767px) {
  .footer__item::before {
    display: none;
  }
}

.footer__item:first-child {
  margin-left: 0;
}

.footer__item:first-child::before {
  display: none;
  margin-right: 0;
}

.kv {
  overflow: hidden;
  position: relative;
}

.kv__wrap {
  background: url("../images/kv/kv-bg.jpg");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1799px) {
  .kv__wrap {
    background-position: center center;
  }
}

@media (max-width: 991px) {
  .kv__wrap {
    padding-bottom: 260px;
    background: url("../images/kv/kv-bg-tb.jpg");
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

@media (max-width: 480px) {
  .kv__wrap {
    padding-bottom: 65vw;
    background: url("../images/kv/kv-bg-mblg.jpg");
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

.kv__wrap::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/kv/kv-bg-2.png");
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  -webkit-animation: 0.8s ease fadeInRight;
          animation: 0.8s ease fadeInRight;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

@media (max-width: 1199px) {
  .kv__wrap::before {
    height: 80%;
    right: -50px;
  }
}

@media (max-width: 991px) {
  .kv__wrap::before {
    right: -4%;
    bottom: 0;
    height: 100%;
    background: url("../images/kv/kv-bg-2-tb.png");
    background-position: center bottom;
    background-size: auto 100%;
    background-repeat: no-repeat;
  }
}

.kv__title {
  width: 956px;
  height: 840px;
  background: url("../images/kv/kv-title.png");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-top: 60px;
  margin-left: -106px;
  position: relative;
  -webkit-animation: zoomIn 0.8s ease;
          animation: zoomIn 0.8s ease;
  text-indent: -99999px;
}

@media (max-width: 1799px) {
  .kv__title {
    width: 770px;
    height: 700px;
    margin-left: 0;
  }
}

@media (max-width: 1599px) {
  .kv__title {
    margin-left: -60px;
  }
}

@media (max-width: 1399px) {
  .kv__title {
    width: 700px;
    height: 620px;
    margin-left: -40px;
  }
}

@media (max-width: 1199px) {
  .kv__title {
    width: 560px;
    height: 510px;
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  .kv__title {
    width: 460px;
    height: 380px;
    margin-top: -30px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .kv__title {
    width: 120%;
    height: 88vw;
    margin-top: -15px;
    margin-left: -10%;
  }
}

.kv__title::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/kv/kv-light.png");
  background-position: center top;
  background-size: 100% auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0;
  -webkit-animation: ani-kv-light 1.6s ease infinite;
          animation: ani-kv-light 1.6s ease infinite;
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

.kv__notice {
  background: #1d3b79;
  padding: 20px 0;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

@media (max-width: 991px) {
  .kv__notice {
    position: relative;
    left: auto;
    bottom: auto;
  }
}

.kv__notice-item {
  font-size: 1.125em;
  font-weight: 700;
  color: #ffffff;
  width: 52%;
  text-align: center;
}

@media (max-width: 1199px) {
  .kv__notice-item {
    width: 60%;
  }
}

@media (max-width: 991px) {
  .kv__notice-item {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .kv__notice-item {
    font-size: 1em;
  }
}

.kv__notice-item--sm {
  font-size: 0.66667em;
  color: #b4cbff;
  letter-spacing: -0.05em;
}

.s1 {
  background: url("../images/s1/s1-bg.jpg"), #eeeeee;
  background-position: center top;
  background-size: auto;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 54px;
  padding-bottom: 120px;
  overflow: hidden;
}

@media (min-width: 1922px) {
  .s1 {
    background-size: 100% auto;
  }
}

@media (max-width: 1799px) {
  .s1 {
    background-size: 1800px auto;
  }
}

@media (max-width: 1599px) {
  .s1 {
    background-size: 1600px auto;
    padding-bottom: 100px;
  }
}

@media (max-width: 1399px) {
  .s1 {
    background-size: 1400px auto;
    padding-bottom: 60px;
  }
}

@media (max-width: 1199px) {
  .s1 {
    padding-top: 30px;
    background: url("../images/s1/s1-bg-md.jpg"), #eeeeee;
    background-position: center top;
    background-size: 660px auto;
    background-repeat: no-repeat;
  }
}

@media (max-width: 480px) {
  .s1 {
    background-size: 136vw auto;
  }
}

.s1 .source {
  margin-top: -13px;
  padding-left: 60px;
  padding-right: 40px;
}

@media (max-width: 1799px) {
  .s1 .source {
    padding-left: 40px;
  }
}

@media (max-width: 1399px) {
  .s1 .source {
    padding-left: 30px;
  }
}

@media (max-width: 1199px) {
  .s1 .source {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 991px) {
  .s1 .source {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 767px) {
  .s1 .source {
    margin-top: 0;
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media (max-width: 480px) {
  .s1 .source {
    margin-top: 15px;
  }
}

.s1::before {
  content: "";
  display: block;
  width: 874px;
  height: 785px;
  background: url("../images/s1/s1-man.png");
  background-position: bottom center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  left: calc( 50vw - 960px);
  bottom: 0;
  pointer-events: none;
}

@media (max-width: 1799px) {
  .s1::before {
    left: calc( 50vw - 860px);
  }
}

@media (max-width: 1599px) {
  .s1::before {
    width: 700px;
    height: 650px;
    left: calc( 50vw - 770px);
  }
}

@media (max-width: 1399px) {
  .s1::before {
    width: 600px;
    height: 550px;
    left: calc( 50vw - 670px);
  }
}

@media (max-width: 1199px) {
  .s1::before {
    bottom: auto;
    top: 20px;
    left: auto;
    right: calc( 50vw - 480px);
    width: 240px;
    height: 220px;
  }
}

@media (max-width: 991px) {
  .s1::before {
    top: 70px;
    right: calc( 50vw - 380px);
  }
}

@media (max-width: 767px) {
  .s1::before {
    right: auto;
    left: calc( 50vw - 280px);
    top: 145px;
    width: 200px;
    height: 180px;
  }
}

@media (max-width: 480px) {
  .s1::before {
    left: calc( 50vw - 220px);
    width: 160px;
    height: 160px;
    top: 90px;
  }
}

@media (max-width: 374px) {
  .s1::before {
    left: calc( 50vw - 200px);
    top: 70px;
  }
}

.s1__wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  padding-right: 30px;
  position: relative;
}

@media (max-width: 1799px) {
  .s1__wrap {
    padding-right: 0;
  }
}

@media (max-width: 1199px) {
  .s1__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.s1__title {
  background: url("../images/s1/s1-title.png");
  background-position: top right;
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 604px;
  height: 260px;
  position: absolute;
  top: 0;
  left: 0;
  text-indent: -9999px;
}

@media (max-width: 1799px) {
  .s1__title {
    width: 550px;
    height: 230px;
  }
}

@media (max-width: 1599px) {
  .s1__title {
    width: 480px;
    height: 210px;
  }
}

@media (max-width: 1599px) {
  .s1__title {
    width: 400px;
    height: 170px;
  }
}

@media (max-width: 1199px) {
  .s1__title {
    position: relative;
    top: auto;
    left: auto;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .s1__title {
    width: 90%;
    height: 34vw;
  }
}

.s1__content {
  width: 1064px;
  margin-left: auto;
  margin-right: 0;
  padding-top: 60px;
  position: relative;
}

@media (max-width: 1799px) {
  .s1__content {
    width: 900px;
    padding-right: 60px;
  }
}

@media (max-width: 1399px) {
  .s1__content {
    width: 800px;
    padding-top: 30px;
    padding-right: 60px;
  }
}

@media (max-width: 1199px) {
  .s1__content {
    width: 960px;
    padding-right: 0;
    margin-right: auto;
    text-align: center;
  }
}

@media (max-width: 991px) {
  .s1__content {
    width: 720px;
  }
}

@media (max-width: 767px) {
  .s1__content {
    width: calc( 100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media (max-width: 480px) {
  .s1__content {
    padding-top: 15px;
  }
}

.s1__tab {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: calc( 100% - 14px);
  margin-left: -7px;
  margin-right: -7px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 30px;
}

@media (max-width: 1799px) {
  .s1__tab {
    padding-left: 0;
  }
}

@media (max-width: 991px) {
  .s1__tab {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 767px) {
  .s1__tab {
    width: 480px;
  }
}

@media (max-width: 480px) {
  .s1__tab {
    width: calc( 100% - 8px);
    margin-left: -4px;
    margin-right: -4px;
  }
}

.s1__tab-item {
  width: 172px;
  height: 44px;
  line-height: 44px;
  background: url("../images/s1/s1-tab-item-1.png");
  background-position: top center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  font-size: 1.5em;
  font-weight: 700;
  color: #beddf4;
  text-align: center;
  margin-left: 7px;
  margin-right: 7px;
  cursor: pointer;
}

@media (max-width: 991px) {
  .s1__tab-item {
    margin-top: 14px;
  }
  .s1__tab-item:nth-child(1) {
    margin-top: 0;
  }
  .s1__tab-item:nth-child(2) {
    margin-top: 0;
  }
  .s1__tab-item:nth-child(3) {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .s1__tab-item {
    width: 140px;
    font-size: 1.25em;
    height: 40px;
    line-height: 40px;
  }
}

@media (max-width: 480px) {
  .s1__tab-item {
    width: calc( 33.33% - 8px);
    margin-left: 4px;
    margin-right: 4px;
    line-height: 32px;
    height: 32px;
    font-size: 4.4vw;
  }
}

.s1__tab-item--active {
  color: #69421e;
  background: url("../images/s1/s1-tab-item-2.png");
  background-position: top center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

@media (hover: hover) {
  .s1__tab-item:hover {
    color: #69421e;
    background: url("../images/s1/s1-tab-item-2.png");
    background-position: top center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
}

.s1__block {
  margin-top: 40px;
}

@media (max-width: 1199px) {
  .s1__block {
    margin-top: 15px;
  }
}

.s1__chart img {
  display: block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.s1__controller {
  position: absolute;
  top: 49%;
  left: -70px;
  z-index: 1;
}

@media (max-width: 1799px) {
  .s1__controller {
    left: -85px;
  }
}

@media (max-width: 1399px) {
  .s1__controller {
    top: 50%;
    left: -20px;
  }
}

@media (max-width: 1199px) {
  .s1__controller {
    position: static;
    top: auto;
    left: auto;
  }
}

.s1__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.s1__btn-item {
  width: 90px;
  height: 90px;
  border-radius: 10em;
  cursor: pointer;
}

@media (max-width: 1399px) {
  .s1__btn-item {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 767px) {
  .s1__btn-item {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .s1__btn-item {
    width: 30px;
    height: 30px;
  }
}

@media (hover: hover) {
  .s1__btn-item:hover {
    -webkit-animation: ani-scale 0.8s ease infinite;
            animation: ani-scale 0.8s ease infinite;
  }
}

.s1__btn-item.prev {
  background: url("../images/../vendor/fonts/prev.png");
  background-position: top right;
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-top: -10px;
}

@media (max-width: 1399px) {
  .s1__btn-item.prev {
    margin-top: 0;
  }
}

@media (max-width: 1199px) {
  .s1__btn-item.prev {
    position: absolute;
    top: 55%;
    left: 0;
    z-index: 1;
  }
}

@media (max-width: 767px) {
  .s1__btn-item.prev {
    top: calc( 64vw - 20px);
    left: 5px;
  }
}

@media (max-width: 480px) {
  .s1__btn-item.prev {
    top: calc( 70vw - 20px);
  }
}

@media (max-width: 374px) {
  .s1__btn-item.prev {
    top: calc( 78vw - 20px);
  }
}

.s1__btn-item.next {
  background: url("../images/../vendor/fonts/next.png");
  background-position: top right;
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-left: 70px;
}

@media (max-width: 1399px) {
  .s1__btn-item.next {
    margin-left: 30px;
  }
}

@media (max-width: 1199px) {
  .s1__btn-item.next {
    position: absolute;
    top: 55%;
    right: 0;
    z-index: 1;
  }
}

@media (max-width: 767px) {
  .s1__btn-item.next {
    top: calc( 64vw - 20px);
    right: 5px;
  }
}

@media (max-width: 480px) {
  .s1__btn-item.next {
    top: calc( 70vw - 20px);
  }
}

@media (max-width: 374px) {
  .s1__btn-item.next {
    top: calc( 78vw - 20px);
  }
}

.s1__page {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1.5em;
  letter-spacing: 0.2em;
  color: #333333;
  margin-left: 20px;
  margin-top: 10px;
}

@media (max-width: 1399px) {
  .s1__page {
    font-size: 1.25em;
    margin-left: 10px;
  }
}

@media (max-width: 1199px) {
  .s1__page {
    display: none;
  }
}

.s1__page-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.s1__page-item::before {
  display: inline-block;
  content: "/";
  font-size: 0.58333em;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
  margin-left: 5px;
  margin-right: 5px;
}

.s1__page-item:first-child::before {
  display: none;
}

.s2 {
  background: url("../images/s2/s2-bg.jpg");
  background-position: center top;
  background-size: auto;
  background-repeat: no-repeat;
  min-height: 950px;
}

@media (min-width: 1922px) {
  .s2 {
    background-size: 100% auto;
  }
}

@media (max-width: 1799px) {
  .s2 {
    min-height: auto;
    background-size: 1800px auto;
    padding-bottom: 40px;
  }
}

@media (max-width: 1599px) {
  .s2 {
    background-position: left calc( 50vw - 900px) top;
  }
}

@media (max-width: 1399px) {
  .s2 {
    background-position: left calc( 50vw - 940px) top;
  }
}

@media (max-width: 1199px) {
  .s2 {
    background: url("../images/s2/s2-bg-md_01.jpg"), url("../images/s2/s2-bg-md_02.jpg");
    background-position: center top,center top;
    background-size: auto,auto;
    background-repeat: no-repeat,repeat-y;
  }
}

@media (max-width: 480px) {
  .s2 {
    background-size: 900px auto,900px auto;
  }
}

.s2 .source {
  margin-top: 48px;
}

@media (max-width: 1199px) {
  .s2 .source {
    margin-top: 15px;
  }
}

.s2__wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media (max-width: 1199px) {
  .s2__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.s2__head {
  width: 790px;
  margin-right: -10px;
  padding-left: 14px;
  padding-top: 55px;
  position: relative;
}

@media (max-width: 1799px) {
  .s2__head {
    width: 640px;
    margin-right: 0;
    padding-left: 30px;
  }
}

@media (max-width: 1599px) {
  .s2__head {
    padding-left: 0;
    width: 580px;
  }
}

@media (max-width: 1399px) {
  .s2__head {
    width: 520px;
  }
}

@media (max-width: 1199px) {
  .s2__head {
    width: 100%;
  }
  .s2__head .s2__controller {
    display: none;
  }
}

@media (max-width: 767px) {
  .s2__head {
    text-align: center;
    padding-top: 60px;
  }
}

.s2__content {
  width: calc( 100% - 790px);
  padding-top: 72px;
  padding-left: 46px;
  padding-right: 35px;
  position: relative;
}

.s2__content .s2__controller {
  display: none;
}

@media (max-width: 1799px) {
  .s2__content {
    width: calc( 100% - 640px);
  }
}

@media (max-width: 1599px) {
  .s2__content {
    padding-left: 80px;
    padding-right: 45px;
    width: calc( 100% - 580px);
  }
}

@media (max-width: 1399px) {
  .s2__content {
    padding-left: 0;
    padding-right: 15px;
    width: calc( 100% - 520px);
  }
}

@media (max-width: 1199px) {
  .s2__content {
    width: 860px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .s2__content .s2__controller {
    display: block;
    height: 0;
  }
}

@media (max-width: 991px) {
  .s2__content {
    width: 720px;
  }
}

@media (max-width: 767px) {
  .s2__content {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.s2__title {
  background: url("../images/s2/s2-title.png");
  background-position: top right;
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 594px;
  height: 260px;
  margin-left: auto;
  margin-right: auto;
  text-indent: -9999px;
}

@media (max-width: 1799px) {
  .s2__title {
    width: 500px;
    height: 220px;
  }
}

@media (max-width: 1599px) {
  .s2__title {
    width: 400px;
    height: 176px;
    margin-left: 80px;
  }
}

@media (max-width: 1399px) {
  .s2__title {
    margin-left: 100px;
  }
}

@media (max-width: 1199px) {
  .s2__title {
    margin-left: auto;
  }
}

@media (max-width: 480px) {
  .s2__title {
    width: 82%;
    height: 32vw;
  }
}

.s2__icon {
  width: 514px;
  height: 334px;
  position: absolute;
  top: -110px;
  right: -60px;
  pointer-events: none;
}

@media (max-width: 1899px) {
  .s2__icon {
    right: 0;
    width: 450px;
  }
}

@media (max-width: 1799px) {
  .s2__icon {
    width: 340px;
    height: 240px;
    right: 0;
  }
}

@media (max-width: 1399px) {
  .s2__icon {
    width: 300px;
    height: 230px;
    top: -40px;
  }
}

@media (max-width: 1199px) {
  .s2__icon {
    width: 200px;
    height: 180px;
    top: -20px;
    left: calc( 50vw - 20px);
  }
}

@media (max-width: 480px) {
  .s2__icon {
    width: 40vw;
    height: 27vw;
    left: auto;
    right: 0;
    top: 10px;
  }
}

.s2__icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/s2/s2-title-icon-2.png");
  background-position: top left;
  background-size: auto;
  background-repeat: no-repeat;
  mix-blend-mode: screen;
}

@media (max-width: 1799px) {
  .s2__icon::before {
    background-size: 120% auto;
  }
}

@media (max-width: 1399px) {
  .s2__icon::before {
    background-size: 110% auto;
  }
}

.s2__icon::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/s2/s2-title-icon-1.png");
  background-position: top left;
  background-size: auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

@media (max-width: 1799px) {
  .s2__icon::after {
    background-size: 120% auto;
  }
}

@media (max-width: 1399px) {
  .s2__icon::after {
    background-size: 110% auto;
  }
}

.s2__tab {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc( 100% + 42px);
  margin-left: -28px;
  margin-right: -14px;
  margin-top: 26px;
}

@media (max-width: 1399px) {
  .s2__tab {
    margin-left: -14px;
  }
}

@media (max-width: 1199px) {
  .s2__tab {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  .s2__tab {
    width: 400px;
  }
}

@media (max-width: 480px) {
  .s2__tab {
    width: 100%;
  }
}

.s2__tab-item {
  width: 330px;
  height: 178px;
  cursor: pointer;
  text-indent: -9999px;
  margin-left: 14px;
  margin-right: 14px;
  margin-top: 28px;
  -webkit-box-shadow: 0 15px 22px rgba(0, 0, 0, 0.3);
          box-shadow: 0 15px 22px rgba(0, 0, 0, 0.3);
  border-radius: 10em;
}

@media (max-width: 1799px) {
  .s2__tab-item {
    width: 240px;
    height: 121px;
  }
}

@media (max-width: 1599px) {
  .s2__tab-item {
    width: 220px;
    height: 110px;
  }
}

@media (max-width: 1399px) {
  .s2__tab-item {
    width: 200px;
    height: 104px;
  }
}

@media (max-width: 1199px) {
  .s2__tab-item {
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .s2__tab-item {
    width: 170px;
    height: 91px;
    margin-left: 4px;
    margin-right: 4px;
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .s2__tab-item {
    width: calc( 50% - 8px);
    height: 23.4vw;
  }
}

.s2__tab-item:nth-child(1) {
  background: url("../images/s2/s2-btn-1-1.png");
  background-position: top right;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

@media (hover: hover) {
  .s2__tab-item:nth-child(1) {
    background-repeat: no-repeat;
  }
  .s2__tab-item:nth-child(1):hover {
    background: url("../images/s2/s2-btn-1-2.png");
    background-position: top right;
    background-size: 100% auto;
  }
}

.s2__tab-item:nth-child(1).s2__tab-item--active {
  background: url("../images/s2/s2-btn-1-2.png");
  background-position: top right;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.s2__tab-item:nth-child(2) {
  background: url("../images/s2/s2-btn-2-1.png");
  background-position: top right;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

@media (hover: hover) {
  .s2__tab-item:nth-child(2) {
    background-repeat: no-repeat;
  }
  .s2__tab-item:nth-child(2):hover {
    background: url("../images/s2/s2-btn-2-2.png");
    background-position: top right;
    background-size: 100% auto;
  }
}

.s2__tab-item:nth-child(2).s2__tab-item--active {
  background: url("../images/s2/s2-btn-2-2.png");
  background-position: top right;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.s2__tab-item:nth-child(3) {
  background: url("../images/s2/s2-btn-3-1.png");
  background-position: top right;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

@media (hover: hover) {
  .s2__tab-item:nth-child(3) {
    background-repeat: no-repeat;
  }
  .s2__tab-item:nth-child(3):hover {
    background: url("../images/s2/s2-btn-3-2.png");
    background-position: top right;
    background-size: 100% auto;
  }
}

.s2__tab-item:nth-child(3).s2__tab-item--active {
  background: url("../images/s2/s2-btn-3-2.png");
  background-position: top right;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.s2__tab-item:nth-child(4) {
  background: url("../images/s2/s2-btn-4-1.png");
  background-position: top right;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

@media (hover: hover) {
  .s2__tab-item:nth-child(4) {
    background-repeat: no-repeat;
  }
  .s2__tab-item:nth-child(4):hover {
    background: url("../images/s2/s2-btn-4-2.png");
    background-position: top right;
    background-size: 100% auto;
  }
}

.s2__tab-item:nth-child(4).s2__tab-item--active {
  background: url("../images/s2/s2-btn-4-2.png");
  background-position: top right;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

@media (min-width: 1200px) {
  .s2__tab-item:first-child {
    margin-left: 115px;
  }
  .s2__tab-item:first-child, .s2__tab-item:nth-child(2) {
    margin-top: 0;
  }
  .s2__tab-item:nth-child(3) {
    margin-left: 30px;
  }
}

@media (max-width: 767px) {
  .s2__tab-item:first-child, .s2__tab-item:nth-child(2) {
    margin-top: 0;
  }
}

.s2__item {
  padding-left: 5px;
  padding-right: 5px;
}

@media (max-width: 1199px) {
  .s2__item {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 767px) {
  .s2__item {
    padding-left: 45px;
    padding-right: 45px;
  }
}

@media (max-width: 480px) {
  .s2__item {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.s2__controller {
  position: absolute;
  bottom: 68px;
  left: 210px;
  z-index: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1799px) {
  .s2__controller {
    bottom: 88px;
    left: 180px;
  }
}

@media (max-width: 1599px) {
  .s2__controller {
    left: 150px;
  }
}

@media (max-width: 1399px) {
  .s2__controller {
    bottom: 120px;
    left: 210px;
  }
}

@media (max-width: 1199px) {
  .s2__controller {
    position: static;
    top: auto;
    left: auto;
  }
}

.s2__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.s2__btn-item {
  width: 90px;
  height: 90px;
  border-radius: 10em;
  cursor: pointer;
}

@media (max-width: 1399px) {
  .s2__btn-item {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 767px) {
  .s2__btn-item {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .s2__btn-item {
    width: 30px;
    height: 30px;
  }
}

@media (hover: hover) {
  .s2__btn-item:hover {
    -webkit-animation: ani-scale 0.8s ease infinite;
            animation: ani-scale 0.8s ease infinite;
  }
}

.s2__btn-item.prev {
  background: url("../images/../vendor/fonts/prev-white.png");
  background-position: top right;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

@media (max-width: 1399px) {
  .s2__btn-item.prev {
    margin-top: 0;
  }
}

@media (max-width: 1199px) {
  .s2__btn-item.prev {
    position: absolute;
    top: 46%;
    left: 0;
    z-index: 1;
  }
}

@media (max-width: 991px) {
  .s2__btn-item.prev {
    top: 43%;
  }
}

@media (max-width: 767px) {
  .s2__btn-item.prev {
    top: calc( 45vw - 20px);
    left: 5px;
  }
}

@media (max-width: 480px) {
  .s2__btn-item.prev {
    top: calc( 50vw - 20px);
    left: -10px;
  }
}

.s2__btn-item.next {
  background: url("../images/../vendor/fonts/next-white.png");
  background-position: top right;
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-left: 15px;
}

@media (max-width: 1199px) {
  .s2__btn-item.next {
    position: absolute;
    top: 46%;
    right: 0;
    z-index: 1;
  }
}

@media (max-width: 991px) {
  .s2__btn-item.next {
    top: 43%;
  }
}

@media (max-width: 767px) {
  .s2__btn-item.next {
    top: calc( 45vw - 20px);
    right: 5px;
  }
}

@media (max-width: 480px) {
  .s2__btn-item.next {
    top: calc( 50vw - 20px);
    right: -10px;
  }
}

.s2__page {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1.5em;
  letter-spacing: 0.2em;
  color: #ffffff;
  margin-left: 40px;
}

@media (max-width: 1399px) {
  .s2__page {
    font-size: 1.25em;
    margin-left: 10px;
  }
}

@media (max-width: 1199px) {
  .s2__page {
    display: none;
  }
}

.s2__page-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.s2__page-item::before {
  display: inline-block;
  content: "/";
  font-size: 0.58333em;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
  margin-left: 5px;
  margin-right: 5px;
}

.s2__page-item:first-child::before {
  display: none;
}

.videos {
  background: url("../images/videos/videos-bg.jpg");
  background-position: center top;
  background-size: auto;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}

@media (min-width: 1922px) {
  .videos {
    background-size: 100% auto;
  }
}

@media (max-width: 1599px) {
  .videos {
    padding-top: 70px;
    padding-bottom: 70px;
    background-size: cover;
  }
}

@media (max-width: 1199px) {
  .videos {
    background: url("../images/videos/videos-bg-md.jpg");
    background-position: center top;
    background-size: auto;
    background-repeat: no-repeat;
    padding-top: 250px;
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .videos {
    padding-top: 240px;
    background-size: 1200px auto;
    background-position: left top;
  }
}

@media (max-width: 480px) {
  .videos {
    padding-top: 55vw;
  }
}

.videos::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/videos/videos-man-1.png");
  background-position: left top;
  background-size: auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 1799px) {
  .videos::before {
    background-size: 1800px auto;
  }
}

@media (max-width: 1599px) {
  .videos::before {
    background-size: 1600px auto;
  }
}

@media (max-width: 1399px) {
  .videos::before {
    background-size: 1400px auto;
  }
}

@media (max-width: 1199px) {
  .videos::before {
    top: 20px;
    left: calc( 50% - 160px);
    width: 400px;
    height: 260px;
    background: url("../images/videos/videos-man-1-md.png");
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
}

@media (max-width: 767px) {
  .videos::before {
    width: 360px;
    height: 280px;
    top: 40px;
  }
}

@media (max-width: 480px) {
  .videos::before {
    top: 10vw;
    left: auto;
    right: 0;
    width: 80vw;
    height: 230px;
  }
}

.videos::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/videos/videos-man-2.png");
  background-position: left top;
  background-size: auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  mix-blend-mode: lighten;
  pointer-events: none;
}

@media (max-width: 1799px) {
  .videos::after {
    background-size: 1800px auto;
  }
}

@media (max-width: 1599px) {
  .videos::after {
    background-size: 1600px auto;
  }
}

@media (max-width: 1399px) {
  .videos::after {
    background-size: 1400px auto;
  }
}

@media (max-width: 1199px) {
  .videos::after {
    top: -100px;
    left: calc( 50% - 430px);
    width: 800px;
    height: 280px;
    background: url("../images/videos/videos-man-2-md.png");
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
}

@media (max-width: 480px) {
  .videos::after {
    width: 200vw;
    height: 70vw;
    top: -24vw;
    left: auto;
    right: -34vw;
  }
}

.videos__title-item {
  text-indent: -9999px;
}

.videos__title-item:first-child {
  width: 420px;
  height: 365px;
  background: url("../images/videos/videos-title-1.png");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: calc( 50% - 150px);
  left: 40px;
  text-indent: -9999px;
}

@media (max-width: 1799px) {
  .videos__title-item:first-child {
    top: calc( 50% - 120px);
    width: 360px;
    height: 300px;
  }
}

@media (max-width: 1599px) {
  .videos__title-item:first-child {
    width: 330px;
    height: 260px;
  }
}

@media (max-width: 1399px) {
  .videos__title-item:first-child {
    top: calc( 50% - 70px);
    width: 240px;
    height: 210px;
  }
}

@media (max-width: 1199px) {
  .videos__title-item:first-child {
    top: 40px;
    left: calc( 50% - 170px);
  }
}

@media (max-width: 480px) {
  .videos__title-item:first-child {
    width: 54%;
    height: 44vw;
    left: 14%;
  }
}

.videos__title-item:last-child {
  width: 420px;
  height: 365px;
  background: url("../images/videos/videos-title-2.png");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: calc( 50% - 150px);
  left: 40px;
  text-indent: -9999px;
  z-index: 3;
}

@media (max-width: 1799px) {
  .videos__title-item:last-child {
    top: calc( 50% - 120px);
    width: 360px;
    height: 300px;
  }
}

@media (max-width: 1599px) {
  .videos__title-item:last-child {
    width: 330px;
    height: 260px;
  }
}

@media (max-width: 1399px) {
  .videos__title-item:last-child {
    top: calc( 50% - 70px);
    width: 240px;
    height: 210px;
  }
}

@media (max-width: 1199px) {
  .videos__title-item:last-child {
    top: 40px;
    left: calc( 50% - 170px);
  }
}

@media (max-width: 480px) {
  .videos__title-item:last-child {
    width: 54%;
    height: 44vw;
    left: 14%;
  }
}

.videos__content {
  width: 1066px;
  margin-left: auto;
  margin-right: 0;
}

@media (max-width: 1799px) {
  .videos__content {
    width: 51vw;
  }
}

@media (max-width: 1599px) {
  .videos__content {
    width: 55vw;
  }
}

@media (max-width: 1399px) {
  .videos__content {
    width: 53vw;
  }
}

@media (max-width: 1199px) {
  .videos__content {
    width: 790px;
    margin-right: auto;
    position: relative;
    z-index: 3;
  }
}

@media (max-width: 991px) {
  .videos__content {
    width: 660px;
  }
}

@media (max-width: 767px) {
  .videos__content {
    width: 100%;
  }
}

.videos__body-item {
  background: #626262;
  height: 600px;
  display: none;
}

@media (max-width: 1799px) {
  .videos__body-item {
    height: 500px;
  }
}

@media (max-width: 1399px) {
  .videos__body-item {
    height: 360px;
  }
}

@media (max-width: 1199px) {
  .videos__body-item {
    height: 420px;
  }
}

@media (max-width: 991px) {
  .videos__body-item {
    height: 360px;
  }
}

@media (max-width: 767px) {
  .videos__body-item {
    height: 60vw;
  }
}

.videos__body-item iframe {
  width: 100%;
  height: 100%;
}

.videos__head {
  background: #333333;
  padding: 5px 3px 5px 220px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin-top: 22px;
  position: relative;
}

@media (max-width: 1399px) {
  .videos__head {
    padding-left: 186px;
  }
}

@media (max-width: 767px) {
  .videos__head {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-left: 5px;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .videos__head {
    padding-left: 2px;
    padding-right: 2px;
  }
}

.videos__head::before {
  content: "";
  display: inline-block;
  width: 211px;
  height: 60px;
  background: url("../images/videos/videos-head-title.png");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 5px;
  left: 5px;
}

@media (max-width: 1399px) {
  .videos__head::before {
    width: 180px;
    height: 52px;
  }
}

@media (max-width: 767px) {
  .videos__head::before {
    position: relative;
    top: auto;
    left: auto;
    width: calc( 33.33% - 4px);
    margin-left: 2px;
    margin-right: 2px;
    border-radius: 8px;
    background-size: cover;
    height: 8.6vw;
  }
}

.videos__head-item {
  background: -webkit-gradient(linear, left top, left bottom, from(#545454), to(#434343));
  background: linear-gradient(to bottom, #545454 0%, #434343 100%);
  font-size: 1.5em;
  color: #ffffff;
  height: 60px;
  width: calc( 20% - 4px);
  text-align: center;
  margin-left: 2px;
  margin-right: 2px;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 1599px) {
  .videos__head-item {
    font-size: 1.25em;
  }
}

@media (max-width: 1399px) {
  .videos__head-item {
    font-size: 1.125em;
    height: 52px;
  }
}

@media (max-width: 991px) {
  .videos__head-item {
    font-size: 1em;
  }
}

@media (max-width: 767px) {
  .videos__head-item {
    width: calc( 33.33% - 4px);
    border-radius: 8px;
    margin-top: 4px;
    height: 8.6vw;
    font-size: 3.4vw;
  }
  .videos__head-item:nth-child(1) {
    margin-top: 0;
  }
  .videos__head-item:nth-child(2) {
    margin-top: 0;
  }
}

.videos__head-item--active {
  background: -webkit-gradient(linear, left top, left bottom, from(#e8e8e8), to(#d4d4d4));
  background: linear-gradient(to bottom, #e8e8e8 0%, #d4d4d4 100%);
  color: #333333;
}

@media (hover: hover) {
  .videos__head-item:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#e8e8e8), to(#d4d4d4));
    background: linear-gradient(to bottom, #e8e8e8 0%, #d4d4d4 100%);
    color: #333333;
  }
}

.videos__head-item .highlight {
  display: inline-block;
  font-size: 1.5em;
  line-height: 0.6em;
  margin-left: 6px;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

@media (max-width: 767px) {
  .videos__head-item .highlight {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@media (min-width: 768px) {
  .videos__head-item:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
  }
  .videos__head-item:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }
}

.files {
  overflow: hidden;
  background: url("../images/files/files-bg.jpg");
  background-position: top center;
  background-size: auto;
  background-repeat: no-repeat;
  padding-top: 70px;
  padding-bottom: 20px;
  position: relative;
  min-height: 980px;
}

@media (min-width: 1922px) {
  .files {
    background-size: cover;
  }
}

@media (max-width: 1799px) {
  .files {
    background-size: cover;
    min-height: auto;
    padding-bottom: 60px;
  }
}

@media (max-width: 1199px) {
  .files {
    padding-top: 80px;
    background: url("../images/files/files-bg-md.jpg"), #1b3255;
    background-position: top center;
    background-size: auto;
    background-repeat: no-repeat;
  }
}

.files .container {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1200px) {
  .files .container {
    width: 960px;
  }
}

@media (min-width: 1400px) {
  .files .container {
    width: 1080px;
  }
}

@media (min-width: 1600px) {
  .files .container {
    width: 1300px;
  }
}

.files .source {
  margin-top: 25px;
  color: #ffffff;
}

.files__title {
  background: url("../images/files/files-title.png");
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 210px;
  height: 790px;
  position: absolute;
  top: 95px;
  right: 0;
  text-indent: -9999px;
}

@media (max-width: 1599px) {
  .files__title {
    width: 160px;
    height: 605px;
    top: 150px;
  }
}

@media (max-width: 1399px) {
  .files__title {
    width: 140px;
    height: 530px;
    top: calc( 50% - 220px);
  }
}

@media (max-width: 1199px) {
  .files__title {
    width: 360px;
    height: 86px;
    background: url("../images/files/files-title-md.png");
    background-position: top center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    position: relative;
    top: auto;
    right: auto;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .files__title {
    width: 78vw;
    height: 19vw;
  }
}

.files__head {
  width: 788px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1199px) {
  .files__head {
    width: 600px;
  }
}

@media (max-width: 991px) {
  .files__head {
    width: 550px;
  }
}

@media (max-width: 767px) {
  .files__head {
    width: calc( 100% - 100px);
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .files__head {
    width: calc( 100% - 80px);
  }
}

.files__head-item {
  padding-top: 40px;
  padding-left: 14px;
  padding-bottom: 24px;
}

@media (max-width: 767px) {
  .files__head-item {
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media (max-width: 480px) {
  .files__head-item {
    padding-top: 20px;
  }
}

.files .slick-prev {
  left: -104px;
}

@media (max-width: 1199px) {
  .files .slick-prev {
    left: -70px;
  }
}

@media (max-width: 767px) {
  .files .slick-prev {
    left: -50px;
  }
}

@media (max-width: 480px) {
  .files .slick-prev {
    left: -40px;
  }
}

.files .slick-next {
  right: -104px;
}

@media (max-width: 1199px) {
  .files .slick-next {
    right: -70px;
  }
}

@media (max-width: 767px) {
  .files .slick-next {
    right: -50px;
  }
}

@media (max-width: 480px) {
  .files .slick-next {
    right: -40px;
  }
}

@media (max-width: 1199px) {
  .files .slick-prev, .files .slick-next {
    width: 50px;
    height: 50px;
    bottom: 15px;
  }
}

@media (max-width: 767px) {
  .files .slick-prev, .files .slick-next {
    width: 40px;
    height: 40px;
    bottom: calc( 50% - 40px);
  }
}

@media (max-width: 480px) {
  .files .slick-prev, .files .slick-next {
    width: 30px;
    height: 30px;
  }
}

@media (hover: hover) {
  .files .slick-prev:hover::before, .files .slick-prev:hover::after, .files .slick-next:hover::before, .files .slick-next:hover::after {
    -webkit-animation: ani-scale 0.8s ease infinite;
            animation: ani-scale 0.8s ease infinite;
  }
}

.files__subtitle {
  position: relative;
  background: rgba(14, 43, 107, 0.8);
  font-size: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  padding-left: 130px;
}

@media (max-width: 1199px) {
  .files__subtitle {
    padding-left: 80px;
  }
}

@media (max-width: 767px) {
  .files__subtitle {
    padding-left: 60px;
  }
}

@media (max-width: 480px) {
  .files__subtitle {
    height: 15vw;
    padding-left: 0;
    padding-top: 10px;
  }
}

@media (max-width: 1199px) {
  .files__subtitle img {
    width: 420px;
  }
}

@media (max-width: 991px) {
  .files__subtitle img {
    width: 380px;
  }
}

@media (max-width: 767px) {
  .files__subtitle img {
    width: 55vw;
  }
}

@media (max-width: 480px) {
  .files__subtitle img {
    width: 60vw;
  }
}

.files__subtitle::before {
  content: "";
  display: block;
  width: calc( 100% - 20px);
  height: calc( 100% - 8px);
  border: 1px solid rgba(227, 248, 253, 0.2);
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 1;
  pointer-events: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 767px) {
  .files__subtitle::before {
    width: calc( 100% - 8px);
  }
}

.files__subtitle::after {
  content: "";
  display: block;
  background: url("../images/files/files-subtitle-icon.png");
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 160px;
  height: 142px;
  position: absolute;
  top: -40px;
  left: -14px;
  z-index: 1;
}

@media (max-width: 1199px) {
  .files__subtitle::after {
    top: -20px;
    width: 130px;
    height: 120px;
  }
}

@media (max-width: 767px) {
  .files__subtitle::after {
    width: 60px;
    height: 54px;
    top: calc( 50% - 27px);
    left: 10px;
  }
}

@media (max-width: 480px) {
  .files__subtitle::after {
    width: 40px;
    height: 40px;
    top: -20px;
    left: calc( 50% - 20px);
  }
}

.files__body {
  margin-top: 15px;
}

@media (max-width: 480px) {
  .files__body {
    width: calc( 100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
  }
}

.files__body-item {
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
}

.files__chart {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc( 100% + 30px);
  margin-left: -15px;
  margin-right: -15px;
}

@media (max-width: 767px) {
  .files__chart {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

.files__chart-item {
  width: calc( 50% - 30px);
  margin-left: 15px;
  margin-right: 15px;
}

@media (max-width: 767px) {
  .files__chart-item {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 15px;
  }
  .files__chart-item:first-child {
    margin-top: 0;
  }
}

.files__chart-btn {
  text-align: center;
  display: block;
  width: 100%;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

@media (max-width: 1199px) {
  .files__chart-btn {
    width: 430px;
  }
}

@media (max-width: 767px) {
  .files__chart-btn {
    max-width: 100%;
  }
}

@media (hover: hover) {
  .files__chart-btn:hover {
    opacity: 0.8;
  }
}

.download {
  background: url("../images/download/download-bg.png"), url("../images/download/download-man-1.png"), url("../images/download/download-man-2.png"), #040201;
  background-position: center center,center left,center right;
  background-size: 100% 100%,auto,auto;
  background-repeat: no-repeat,no-repeat;
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  .download {
    background: url("../images/download/download-bg.png"), url("../images/download/download-man-tb-1.png"), url("../images/download/download-man-tb-2.png"), #040201;
    background-position: center center,top left,top right;
    background-size: 110% 100%,auto,auto;
    background-repeat: no-repeat,no-repeat;
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .download {
    background-size: 160% 100%,180px auto,180px auto;
    padding-top: 80px;
  }
}

@media (max-width: 480px) {
  .download {
    background-size: 160% 100%,160px auto,160px auto;
  }
}

@media (max-width: 374px) {
  .download {
    background-size: 160% 100%,45vw auto,45vw auto;
  }
}

.download::before {
  content: "";
  display: block;
  width: 70%;
  height: 5px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(78, 68, 48, 0)), color-stop(50%, #75674a), to(rgba(78, 68, 48, 0)));
  background: linear-gradient(to right, rgba(78, 68, 48, 0) 0%, #75674a 50%, rgba(78, 68, 48, 0) 100%);
  -webkit-filter: blur(5px);
          filter: blur(5px);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  position: absolute;
  left: 15%;
  top: 0;
  z-index: 1;
  pointer-events: none;
}

.download::after {
  content: "";
  display: block;
  width: 70%;
  height: 5px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(78, 68, 48, 0)), color-stop(50%, #75674a), to(rgba(78, 68, 48, 0)));
  background: linear-gradient(to right, rgba(78, 68, 48, 0) 0%, #75674a 50%, rgba(78, 68, 48, 0) 100%);
  -webkit-filter: blur(5px);
          filter: blur(5px);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  position: absolute;
  left: 15%;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.download .container {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1600px) {
  .download .container {
    width: 1308px;
  }
}

.download__title {
  background: url("../images/download/download-title.png");
  background-position: top right;
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 264px;
  height: 66px;
  margin-left: auto;
  margin-right: auto;
  text-indent: -9999px;
  position: absolute;
  top: calc( 50% - 33px);
  left: calc( 50% - 132px);
}

@media (max-width: 1199px) {
  .download__title {
    width: 200px;
    height: 50px;
    top: calc( 50% - 25px);
    left: calc( 50% - 100px);
  }
}

@media (max-width: 991px) {
  .download__title {
    position: relative;
    top: auto;
    left: auto;
  }
}

.download__block {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 130px;
}

@media (max-width: 1199px) {
  .download__block {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 991px) {
  .download__block {
    padding-left: 0;
    padding-right: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 15px;
  }
}

.download__item {
  width: 506px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: center;
}

@media (max-width: 1399px) {
  .download__item {
    width: 35%;
  }
}

@media (max-width: 1199px) {
  .download__item {
    width: 38%;
  }
}

@media (max-width: 991px) {
  .download__item {
    width: 380px;
    margin-top: 15px;
  }
  .download__item:first-child {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .download__item {
    width: 100%;
  }
}

@media (hover: hover) {
  .download__item:hover {
    -webkit-animation: ani-scale 0.8s ease infinite;
            animation: ani-scale 0.8s ease infinite;
  }
}

.download__item-title {
  font-size: 1.75em;
  line-height: 52px;
  color: #333333;
  background: #ffffff;
  width: calc( 100% - 165px);
}

@media (max-width: 1399px) {
  .download__item-title {
    width: calc( 100% - 120px);
    font-size: 1.375em;
  }
}

@media (max-width: 480px) {
  .download__item-title {
    font-size: 1.125em;
    width: calc( 100% - 5em);
  }
}

.download__item-btn {
  font-size: 1.25em;
  line-height: 52px;
  color: #ffffff;
  background: #e2404a;
  width: 165px;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: background;
  transition-property: background;
}

@media (max-width: 1399px) {
  .download__item-btn {
    width: 120px;
    font-size: 1.125em;
  }
}

@media (max-width: 480px) {
  .download__item-btn {
    font-size: 1em;
    width: 5em;
  }
}

@media (hover: hover) {
  .download__item:hover .download__item-btn {
    background: #bd2932;
  }
}

.show--md {
  display: none;
}

@media (max-width: 1199px) {
  .show--md {
    display: block;
  }
}

.show--tb {
  display: none;
}

@media (max-width: 991px) {
  .show--tb {
    display: block;
  }
}

.show--sm {
  display: none;
}

@media (max-width: 767px) {
  .show--sm {
    display: block;
  }
}

@media (max-width: 1199px) {
  .hide--md {
    display: none;
  }
}

@media (max-width: 991px) {
  .hide--tb {
    display: none;
  }
}

@media (max-width: 767px) {
  .hide--sm {
    display: none;
  }
}

.red {
  color: #e71a0f;
}

#s1 {
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
}

@media (max-width: 991px) {
  #s1 {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
}

@media (max-width: 767px) {
  #s1 {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

#s2 {
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
}

@media (max-width: 991px) {
  #s2 {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
}

#videos {
  -webkit-transform: translateY(-80px);
          transform: translateY(-80px);
}

@media (max-width: 991px) {
  #videos {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
}

@media (max-width: 767px) {
  #videos {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

#files {
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
}

@media (max-width: 991px) {
  #files {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

@media (max-width: 767px) {
  #files {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}

.fixednav {
  display: none;
}

@media (max-width: 991px) {
  .fixednav {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1030;
    width: 100%;
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
    -webkit-transition-property: bottom;
    transition-property: bottom;
    background: #264680;
    padding: 15px 0;
  }
}

.fixednav__block {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.fixednav__item {
  width: 25%;
  font-size: 1.25em;
  font-weight: 700;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.fixednav__item::after {
  content: "";
  display: block;
  width: 40px;
  height: 10px;
  background: url("../images/common/navbar-link-icon-1.png");
  background-position: center center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: calc( 50% - 20px);
}

@media (max-width: 374px) {
  .fixednav__item::after {
    width: 30px;
    height: 8px;
    left: calc( 50% - 15px);
  }
}

@media (max-width: 767px) {
  .fixednav__item {
    font-size: 1em;
  }
}

@media (max-width: 374px) {
  .fixednav__item {
    font-size: 4vw;
  }
}

.fixednav__item:first-child::before {
  display: none;
}

.fixednav__item--active {
  text-shadow: 0 0 5px #ede5b6;
}

.fixednav__item--active::after {
  background: url("../images/common/navbar-link-icon-2.png");
  background-position: center center;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.source {
  font-size: 1em;
  font-weight: 700;
  color: #333333;
  line-height: 1.2;
  text-align: justify;
}

@media (max-width: 767px) {
  .source {
    font-size: 0.875em;
  }
}

.source--blue {
  color: #cddfff;
}

.source--red {
  color: #e71a0f;
}

.source--yellow {
  color: #edd69e;
}

.fixedbtn {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 999;
  width: 202px;
}

@media (max-width: 1799px) {
  .fixedbtn {
    width: 160px;
  }
}

@media (max-width: 1599px) {
  .fixedbtn {
    right: 0;
    width: 140px;
  }
}

@media (max-width: 1199px) {
  .fixedbtn {
    width: 120px;
    top: auto;
    bottom: 0;
  }
}

@media (max-width: 991px) {
  .fixedbtn {
    bottom: 70px;
  }
}

@media (max-width: 767px) {
  .fixedbtn {
    width: 110px;
  }
}

@media (max-width: 480px) {
  .fixedbtn {
    bottom: 50px;
  }
}

.fixedbtn__item {
  display: block;
  width: 100%;
  height: 168px;
  margin-top: -30px;
}

@media (max-width: 1799px) {
  .fixedbtn__item {
    height: 140px;
  }
}

@media (max-width: 1599px) {
  .fixedbtn__item {
    height: 130px;
  }
}

@media (max-width: 1199px) {
  .fixedbtn__item {
    height: 100px;
    margin-top: -20px;
  }
}

@media (max-width: 991px) {
  .fixedbtn__item {
    height: 90px;
    margin-top: -10px;
  }
}

.fixedbtn__item:first-child {
  margin-top: 0;
}

.fixedbtn__item--1 {
  background: url("../images/common/fixedbtn-item-1.png");
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.fixedbtn__item--1:hover {
  -webkit-animation: ani-scale 0.8s ease infinite;
          animation: ani-scale 0.8s ease infinite;
}

.fixedbtn__item--2 {
  background: url("../images/common/fixedbtn-item-2.png");
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.fixedbtn__item--2:hover {
  -webkit-animation: ani-scale 0.8s ease infinite;
          animation: ani-scale 0.8s ease infinite;
}
