body {
  font-size: 14px;
  line-height: 1.6;
  color: #000;
  background-color: #fff;
  min-height: calc(100vh - var(--vh-offset, 0px));
  font-family: "Gotham-Book", sans-serif;
}

a {
  text-decoration: none;
  color: #2B2B2B;
  transition: 0.3s;
}

a:hover {
  text-decoration: none;
}

a:focus {
  text-decoration: none;
}

dl, p, ul, li, h1, h2, h3, h4, h5, h6 {
  list-style: none;
  margin: 0;
  padding: 0;
}

dt {
  font-weight: normal;
}

dd {
  margin: 0;
}

img {
  display: block;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}

u {
  font-weight: 500;
}

img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}

.time02 {
  transition: all 0.2s ease-out 0s;
}

.time03 {
  transition: all 0.3s ease-out 0s;
}

.time05 {
  transition: all 0.5s;
}

.time1 {
  transition: all 1s;
}

.time2 {
  transition: all 2s;
}

.time3 {
  transition: all 3s;
}

.noTran {
  transition: none;
}

.img-scale {
  transition: 0.5s;
}

.img-scale:hover {
  transform: scale(1.05);
}

.ellipsis-multiline {
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  -moz-text-overflow: ellipsis;
  white-space: nowrap;
}

.minWidth {
  min-width: 1280px;
}

.fontFamilyA {
  font-family: "Gotham-Book-Italic", sans-serif !important;
}

.fontFamilyB {
  font-family: "Palatino-Bold-Italic", sans-serif !important;
}

.fontFamilyC {
  font-family: "Palatino-Italic", sans-serif !important;
}

@font-face {
  font-family: "Gotham-Book";
  font-weight: 600;
  src: url("./Gotham-Book.otf") format("trueType");
  font-display: swap;
}
@font-face {
  font-family: "Gotham-Book-Italic";
  font-weight: 600;
  src: url("./Gotham-Book-Italic.ttf") format("trueType");
  font-display: swap;
}
@font-face {
  font-family: "Palatino-Bold-Italic";
  src: url("./palr66w.ttf") format("trueType");
  font-display: swap;
}
@font-face {
  font-family: "Palatino-Italic";
  src: url("./Palatino-Italic.otf") format("trueType");
  font-display: swap;
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: #F8F8F8;
}

::-webkit-scrollbar-track {
  border-radius: 6px;
  background-color: #F8F8F8;
}

::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background-color: #C8C6C4;
}

.pageBtn {
  position: relative;
  min-width: 164px;
  height: 64px;
  padding: 10px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}

.pageBtn::before, .pageBtn::after {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  background-image: url(../images/page-sprites.png);
  background-repeat: no-repeat;
}

.pageBtn::before {
  left: 4px;
  top: 4px;
}

.pageBtn::after {
  right: 4px;
  bottom: 4px;
  background-position: -12px 0;
}

.pageBtn:hover {
  color: #fff;
  background-color: #000;
}

.pageBtn:hover::before {
  background-position: 0 -12px;
}

.pageBtn:hover::after {
  background-position: -12px -13px;
}

.pageBtn-a {
  background-color: #E50B18;
  color: #fff;
}

.pageBtn-a::before {
  background-position: 0 -12px;
}

.pageBtn-a::after {
  background-position: -12px -13px;
}

.pageBtn-a:hover {
  background-color: #FF0000;
}

.text-primary {
  color: #0093d1 !important;
}

.fade {
  transition: opacity 0.05s linear;
}

.modal.fade .modal-dialog {
  transition: transform 0.15s ease-out;
}

.loadingPage {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  right: 0;
  background-color: #0093d1;
  height: calc(100vh - var(--vh-offset, 0px));
}
.loadingPage .logo {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 122px;
  height: 50px;
  background-image: url(../images/logo-white.png);
  background-repeat: no-repeat;
  background-size: 100%;
  animation: 3s linear infinite logo-grow;
}

.hide.loadingPage {
  top: -100%;
  opacity: 0;
}
.hide.loadingPage .logo {
  display: none;
}

.pageWrap .pageContent {
  height: calc(100vh - var(--vh-offset, 0px));
}
.pageWrap .pageHead {
  height: 70px;
  left: 0;
  right: 0;
  top: 0;
  z-index: 5;
}
.pageWrap .pageHead h1 a {
  display: block;
  width: 61px;
  height: 25px;
  background-image: url(../images/logo.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}
.pageWrap .pageHead a {
  color: #666;
}
.pageWrap .pageHead a:hover {
  color: #0093d1;
}
.pageWrap .pageHead .line {
  height: 30px;
  border-color: #53585f !important;
}
.pageWrap .aniA {
  animation: 2s linear forwards 0.5s opactiy-show;
  opacity: 0;
}
.pageWrap .pageFoot {
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 5;
  opacity: 0;
}
.pageWrap .pageFoot a, .pageWrap .pageFoot .bi {
  display: block;
  line-height: 1;
}
.pageWrap .fullPageSwiper {
  height: 100%;
  width: 100%;
}
.pageWrap .fullPageSwiper .FsA {
  font-size: 1.1rem !important;
  font-family: "Palatino-Bold-Italic", sans-serif;
}
.pageWrap .fullPageSwiper .fullPageSwiper-slide {
  padding: 80px 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pageWrap .fullPageSwiper .fullPageSwiper-slide {
  opacity: 0;
  transition: all 0.6s ease-in-out;
}
.pageWrap .fullPageSwiper .fullPageSwiper-slide.swiper-slide-active {
  opacity: 1;
}
.pageWrap .fullPageSwiper .fullPageSwiper-pagination {
  right: 0;
  left: initial;
  background-color: #f1f1f1;
}
.pageWrap .fullPageSwiper .fullPageSwiper-pagination .swiper-pagination-progressbar-fill {
  background-color: #c8c6c4;
}
.pageWrap .fullPageSwiper .a li:last-child {
  margin-right: 0 !important;
}
.pageWrap .fullPageSwiper .a img {
  height: 55px;
}
.pageWrap .fullPageSwiper .a .aniB {
  animation: 2s linear forwards 1.5s opactiy-show;
  opacity: 0;
}
.pageWrap .fullPageSwiper .a .aniC {
  animation: 2s linear forwards 2.5s opactiy-show;
  opacity: 0;
}
.pageWrap .fullPageSwiper .b .pic {
  max-width: 850px;
}
.pageWrap .fullPageSwiper .c {
  padding: 80px 20px;
}
.pageWrap .fullPageSwiper .c .picSwiper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: initial;
}
.pageWrap .fullPageSwiper .c .picSwiper .swiper-wrapper {
  height: auto;
}
.pageWrap .fullPageSwiper .c .picSwiper .swiper-pagination-bullets {
  width: auto;
  height: 20px;
}
.pageWrap .fullPageSwiper .c .picSwiper .swiper-pagination-bullet {
  transition: all 0.3s ease-out 0s;
  width: 8px;
  height: 8px;
  margin: 0 10px;
  background: #a6aaa9;
  display: block;
  border-radius: 50%;
  opacity: 1;
}
.pageWrap .fullPageSwiper .c .picSwiper .swiper-pagination-bullet-active {
  background: #000 !important;
}
.pageWrap .fullPageSwiper .c .picSwiper .swiper-pagination-bullet:hover {
  background: #0093d1;
}
.pageWrap .fullPageSwiper .c .picSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  height: 300px;
}
.pageWrap .fullPageSwiper .c .picSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.pageWrap .fullPageSwiper .c .picSwiper .swiper-slide img.vertical {
  max-width: 250px;
}
.pageWrap .fullPageSwiper .c .picSwiper .swiper-slide img.horizontal {
  max-width: 800px;
}
.pageWrap .fullPageSwiper .c .picSwiper .swiper-slide img.square {
  max-width: 550px;
}
.pageWrap .fullPageSwiper .c .picSwiper .arrow {
  color: #000;
  margin: 0;
  width: auto;
  height: auto;
  opacity: 0;
}
.pageWrap .fullPageSwiper .c .picSwiper .swiper-button-next {
  opacity: 1;
}
.pageWrap .fullPageSwiper .c .picSwiper .arrow::after {
  font-size: 17px;
}
.pageWrap .fullPageSwiper .d .backTop {
  animation: 3s linear infinite logo-grow;
}
.pageWrap .pageContact {
  z-index: -10;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
}
.pageWrap .pageContact .mask {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.pageWrap .pageContact .content {
  background-color: #0093d1;
  right: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 700px;
  color: #fff;
}
.pageWrap .pageContact .content .close {
  height: 70px;
  display: flex;
  align-items: center;
}
.pageWrap .pageContact .content .box {
  min-height: calc(100vh - 6rem);
  overflow-y: auto;
}
.pageWrap .pageContact .content a {
  color: #fff;
}
.pageWrap .pageContact .content .text {
  margin-top: -70px;
}
.pageWrap .pageContact .content .text h2 {
  display: block;
  width: 61px;
  height: 25px;
  background-image: url(../images/logo-white.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}
.pageWrap .show.pageContact {
  z-index: 10;
  opacity: 1;
}
.pageWrap .show.pageContact .content {
  right: 0;
}

@media (min-width: 576px) {
  .pageWrap .fullPageSwiper .FsA {
    font-size: 25.5px !important;
  }
  .pageWrap .fullPageSwiper .a img {
    height: 100px;
  }
}
@media (min-width: 768px) {
  .pageWrap .fullPageSwiper .c .picSwiper .swiper-slide {
    height: 350px;
  }
  .pageWrap .fullPageSwiper .c .picSwiper .swiper-slide img.vertical {
    max-width: 350px;
  }
}
@media (min-width: 992px) {
  .loadingPage .logo {
    width: 248px;
    height: 98px;
  }
  .pageWrap .pageHead .contactText {
    font-size: 0.65rem;
  }
  .pageWrap .fullPageSwiper .c .picSwiper .swiper-slide {
    height: 400px;
  }
  .pageWrap .fullPageSwiper .c .picSwiper .swiper-slide img.vertical {
    max-width: 400px;
  }
}
@media (min-width: 1400px) {
  .pageWrap .fullPageSwiper .c .picSwiper .swiper-slide {
    height: 500px;
  }
  .pageWrap .fullPageSwiper .c .picSwiper .swiper-slide img.vertical {
    max-width: 450px;
  }
  .pageWrap .fullPageSwiper .c .picSwiper .swiper-slide img.horizontal {
    max-width: 900px;
  }
  .pageWrap .fullPageSwiper .c .picSwiper .swiper-slide img.square {
    max-width: 650px;
  }
}
@keyframes logo-grow {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
@keyframes opactiy-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */