:root {
  --header-h: 120px;
  --fluid-title: 3.3rem + 1vw;
  --fluid-txt: 15px + 1vw;
  --fluid-margin: 5px + 1vw;
  --ease: cubic-bezier(0.585, 0.040, 0.345, 1.015);
  --sb-track-color: #ffffff;
  --sb-thumb-color: #00263e;
  --sb-size: 7px;
  --swiper-pagination-bullet-horizontal-gap: 16px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-theme-color: #00263e;
}

/* color */
/* Font */
@media (max-width: 1366px) {
  :root {
    --fluid-txt: 14px + 1vw;
  }
}
@media (max-width: 1199px) {
  :root {
    --header-h: 80px;
    --fluid-title: 3rem + 1vw;
    --fluid-txt: 14px + 1vw;
  }
}
@media (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
  :root {
    --fluid-title: 2rem + 1vw;
    --fluid-txt: 13px + 1vw;
    --fluid-margin: 6px + 1vw;
  }
}
@media (max-width: 767px) {
  :root {
    --fluid-title: 1.2rem + 1vw;
    --header-h: 55px;
    --fluid-txt: 11px + 1vw;
    --fluid-margin: 2px + 1vw;
  }
  .hidden-xs {
    display: none !important;
  }
}
[data-scroll] {
  opacity: 0;
  will-change: opacity;
  -webkit-transition: opacity 1s ease 0.1s;
  transition: opacity 1s ease 0.1s;
}

[data-scroll=in] {
  opacity: 1;
}

/* Button */
@-webkit-keyframes whalet-ani {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes whalet-ani {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes whalet-ani-all {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes whalet-ani-all {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes process-ani {
  0% {
    background: rgba(0, 0, 0, 0.1);
  }
  100% {
    background: rgba(0, 0, 0, 0);
  }
}
@keyframes process-ani {
  0% {
    background: rgba(0, 0, 0, 0.1);
  }
  100% {
    background: rgba(0, 0, 0, 0);
  }
}
@-webkit-keyframes wave-ani {
  0% {
    height: 100%;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  100% {
    height: 80px;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes wave-ani {
  0% {
    height: 100%;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  100% {
    height: 80px;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@media (max-width: 767px) {
  @-webkit-keyframes wave-ani {
    0% {
      height: 100%;
      -webkit-transform: translateY(-50px);
              transform: translateY(-50px);
    }
    100% {
      height: 80px;
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
    }
  }
  @keyframes wave-ani {
    0% {
      height: 100%;
      -webkit-transform: translateY(-50px);
              transform: translateY(-50px);
    }
    100% {
      height: 80px;
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
    }
  }
}
.p-banner {
  position: relative;
  aspect-ratio: 1820/430;
  margin: 0 auto;
  width: calc(100% - 100px);
  z-index: 10;
  overflow: hidden;
}
.p-banner img {
  position: absolute;
  width: 100%;
  z-index: -1;
  border-radius: 20px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.p-banner .ban-title {
  width: 100%;
  color: #fff;
  text-align: center;
  aspect-ratio: 1820/430;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-banner .ban-title .h2 {
  text-transform: uppercase;
  font-size: 3.75rem;
  font-family: "Roboto";
  font-weight: bold;
  margin-bottom: 1rem;
}
.p-banner .ban-title .small {
  font-size: 22px;
  text-transform: uppercase;
}
.p-banner.is-view img {
  -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 1024px) {
  .p-banner {
    width: calc(100% - 4rem);
  }
  .p-banner .ban-title .h2 {
    font-size: 2.5rem;
  }
  .p-banner .ban-title .small {
    font-size: 1rem;
  }
}
@media (max-width: 991px) {
  .p-banner {
    aspect-ratio: 850/430;
  }
  .p-banner img {
    border-radius: 10px;
  }
  .p-banner .ban-title {
    aspect-ratio: 850/430;
  }
}
@media (max-width: 767px) {
  .p-banner {
    width: calc(100% - 2rem);
    top: 10px;
  }
  .p-banner .ban-title .h2 {
    font-size: 1.6rem;
  }
  .p-banner .ban-title .small {
    font-size: 0.9375rem;
  }
}
.pro-banner {
  aspect-ratio: 1820/600;
  position: relative;
  margin: 0 auto;
  width: calc(100% - 100px);
  z-index: 10;
  overflow: hidden;
}
.pro-banner img {
  width: 100%;
  border-radius: 20px;
}
.pro-banner .ban-title {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 0 calc((100% - 1400px) / 2);
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.pro-banner .ban-title .h2 {
  text-transform: uppercase;
  font-size: 3.75rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

#calibration .pro-banner {
  aspect-ratio: 1820/430;
}
#calibration .pro-banner .slick-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 2rem 0;
}
#calibration #landed .pro-banner {
  aspect-ratio: 1820/560;
}

@media screen and (max-width: 1365px) {
  #calibration #landed .pro-banner {
    aspect-ratio: 1300/700;
  }
}
@media screen and (max-width: 1024px) {
  .pro-banner {
    width: calc(100% - 4rem);
  }
  .pro-banner .ban-title {
    padding: 0 10%;
  }
  .pro-banner .ban-title .h2 {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 991px) {
  .pro-banner {
    aspect-ratio: 850/430;
  }
  .pro-banner img {
    border-radius: 10px;
  }
  .pro-banner .theme-wrap {
    line-height: 1.5;
  }
  .pro-banner .ban-title {
    padding: 0 4rem;
  }
  .pro-banner .ban-title .h2 {
    font-size: 1.6rem;
  }
  #calibration .pro-banner {
    aspect-ratio: 850/430;
  }
}
@media screen and (max-width: 767px) {
  .pro-banner .ban-title {
    padding: 0 2rem;
  }
  #calibration #landed .pro-banner {
    aspect-ratio: 700/920;
  }
}
.p-breadcrumb {
  padding: 0;
  display: block;
  font-size: 0.9375rem;
  text-align: right;
}
.p-breadcrumb > li {
  display: inline-block;
  position: relative;
  color: #999;
}
.p-breadcrumb > li > a {
  color: #666;
  -webkit-transition: color 0.5s var(--ease);
  transition: color 0.5s var(--ease);
}
.p-breadcrumb > li:not(:last-child):after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 5px;
  border-width: 1px;
  border-style: solid;
  border-color: transparent #aaaaaa #aaaaaa transparent;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin: 0 8px;
}
.p-breadcrumb > li:not(:last-child):first-child > a {
  color: #333;
}

@media (min-width: 992px) {
  .p-breadcrumb li a:hover {
    color: #000;
  }
}
@media (max-width: 1800px) {
  .p-breadcrumb {
    padding: 0 2rem;
  }
}
@media (max-width: 991px) {
  .p-breadcrumb {
    padding: 0 1rem;
    font-size: 0.9375rem;
  }
  .p-breadcrumb li:not(:last-child):after {
    margin: 0 5px;
  }
}
@media (max-width: 767px) {
  .p-breadcrumb {
    padding: 0;
    font-size: 0.875rem;
  }
}
/* Aside Nav */
.aside-nav {
  width: 100%;
  margin-bottom: 2rem;
}
.aside-nav ul {
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.aside-nav ul li a {
  display: block;
  background: #fff;
  border-radius: 23px;
  line-height: 46px;
  height: 46px;
  padding: 0 20px;
  color: #000;
  background: #e9e9e9;
}
.aside-nav ul li.current a {
  background: #DB582E;
  color: #fff;
}

#horizontal-style {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 3%;
}
#horizontal-style .aside-nav ul {
  gap: 0;
}
#horizontal-style .aside-nav ul li {
  width: 100%;
}
#horizontal-style .checkbox-style {
  cursor: pointer;
}
#horizontal-style .aside-nav {
  width: 275px;
}
#horizontal-style .aside-nav .aside-ti {
  text-align: left;
  line-height: 1;
  font-family: "Roboto";
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
}
#horizontal-style .aside-nav .aside-ti .red {
  color: #DB582E;
}
#horizontal-style .aside-nav .filter-ti {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.0625rem;
  font-weight: bold;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 50px;
  border-top: 1px solid #000;
  position: relative;
  padding-left: 30px;
}
#horizontal-style .aside-nav .filter-ti::before {
  position: absolute;
  left: 5px;
  top: 0px;
  content: url(../images/icon_filter.svg);
}
#horizontal-style .aside-nav .filter-ti .isotope-reset {
  border: 0;
  font-weight: normal;
  color: #888888;
  font-size: 0.9375rem;
  background: transparent;
}
#horizontal-style .cate-wrap .ul-list > li {
  border-top: 1px solid #e5e5e5;
  line-height: 30px;
  padding: 5px;
}
#horizontal-style .cate-wrap .ul-list > li .h3 {
  display: block;
  position: relative;
  font-weight: bold;
  color: #000000;
  padding-left: 25px;
  font-size: 1rem;
  margin: 1rem 0 0;
  line-height: 30px;
}
#horizontal-style .cate-wrap .ul-list > li .h3::before {
  content: "";
  width: 15px;
  height: 2px;
  background: #000;
  display: block;
  position: absolute;
  left: 0px;
  top: 15px;
}
#horizontal-style .cate-wrap .ul-list > li > ul {
  padding: 0.5rem 0 1rem;
}
#horizontal-style .cate-wrap .ul-list > li > ul > li {
  position: relative;
}
#horizontal-style .cate-wrap .ul-list > li > ul > li > a {
  color: #444444;
}
#horizontal-style .main-content {
  padding-left: 2%;
  width: calc(100% - 275px);
  padding-top: 0;
}

.main-content {
  padding-top: 2rem;
}

.pc .aside-nav .cate-wrap .ul-list > li:not(.current) a:hover {
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
  color: #fff;
  background: #DB582E;
}

@media (max-width: 1366px) {
  #horizontal-style .aside-nav {
    width: 200px;
  }
  #horizontal-style .main-content {
    padding-left: 1.5rem;
    width: calc(100% - 200px);
  }
}
@media (min-width: 992px) {
  .toggle {
    display: none;
  }
  .toggle:hover:after {
    background: #000;
    color: #fff;
  }
}
@media (max-width: 991px) {
  .aside-nav {
    padding: 0;
    z-index: 99;
    position: relative;
    width: 100%;
    margin: 1rem 0;
  }
  .aside-nav .cate-wrap {
    position: relative;
    z-index: 2;
  }
  .aside-nav .cate-wrap .ul-list {
    border-radius: 4px;
    overflow: hidden;
    width: 100%;
    position: absolute;
    display: none;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 99;
    border-top: 0;
    background: #fff;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }
  .aside-nav .cate-wrap .ul-list > li:not(:last-child) {
    border-bottom: 1px solid #efefef;
  }
  .aside-nav .cate-wrap .ul-list > li > a {
    border-radius: 0;
  }
  .aside-nav .cate-wrap .ul-list > li.current > a {
    color: #DB582E;
    background: #fff;
  }
  .aside-nav .toggle {
    width: 100%;
    margin: 0 auto;
    height: 45px;
    line-height: 45px;
    border-radius: 4px;
    padding: 0 45px 0 20px;
    cursor: pointer;
    position: relative;
    margin-bottom: 0;
    -webkit-transition: border-radius 0.3s;
    transition: border-radius 0.3s;
    background: #333;
    color: #fff;
    font-size: 0.9375rem;
  }
  .aside-nav .toggle:after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    text-align: center;
    width: 45px;
    line-height: 45px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    pointer-events: none;
    color: #fff;
    font-size: 0.8rem;
  }
  .aside-nav .toggle.on {
    background: #DB582E;
  }
  .aside-nav .toggle.on:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f106";
  }
  #horizontal-style {
    padding-top: 2rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #horizontal-style .aside-nav {
    position: relative;
    width: 100%;
  }
  #horizontal-style .aside-nav .aside-ti {
    font-size: 1.85rem;
  }
  #horizontal-style .aside-nav .filter-ti {
    padding-right: 50px;
  }
  #horizontal-style .aside-nav .pro-toggle {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    color: #000;
    width: unset;
    padding: 0;
    width: 30px;
    line-height: 30px;
    height: 30px;
    border-radius: 4px;
    background: #ddd;
  }
  #horizontal-style .aside-nav .pro-toggle:after {
    content: "\f107";
    color: #000;
    font-size: 1.125rem;
    width: 30px;
    line-height: 30px;
    height: 30px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
  }
  #horizontal-style .aside-nav .pro-toggle.on {
    background: #ededed;
  }
  #horizontal-style .aside-nav .pro-toggle.on::after {
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
  }
  #horizontal-style .aside-nav .pro-toggle.on + .ul-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
    width: 100%;
  }
  #horizontal-style .aside-nav .ul-list {
    display: noen;
  }
  #horizontal-style .aside-nav .ul-list > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
  }
  #horizontal-style .aside-nav .ul-list > li .h3 {
    margin-top: 5px;
  }
  #horizontal-style .aside-nav .ul-list > li > ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 15px;
    padding: 0;
  }
  #horizontal-style .main-content {
    width: 100%;
  }
  .main-content {
    padding-top: 1rem;
  }
}
@media (max-width: 767px) {
  #horizontal-style .aside-nav .ul-list {
    margin-bottom: 1rem;
  }
  #horizontal-style .aside-nav .ul-list > li {
    line-height: 20px;
  }
  #horizontal-style .aside-nav .ul-list > li .h3 {
    margin-top: 0;
  }
  #horizontal-style .aside-nav .ul-list > li > ul {
    gap: 10px;
    padding: 5px 0 10px 0;
  }
  #horizontal-style .checkbox-style {
    font-size: 0.9375rem;
    margin-bottom: 0;
  }
  #horizontal-style .checkbox-style span {
    top: 4px;
    left: 3px;
    width: 16px;
    height: 16px;
  }
  #horizontal-style .checkbox-style input:active i,
  #horizontal-style .checkbox-style input:checked + span i {
    margin: 6px 0 0 6px;
  }
  .main-content {
    padding-top: 0;
  }
}
.p-pager {
  text-align: center;
  margin: 5% 0;
  width: 100%;
}
.p-pager a {
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
  height: 42px;
  width: 42px;
  line-height: 40px;
  border-radius: 50%;
  color: #666;
  -webkit-transition: color 0.3s ease, background 0.3s ease, font-weight 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease, font-weight 0.3s ease;
}
.p-pager .start,
.p-pager .prev {
  height: 38px;
  width: 38px;
  position: relative;
  font-size: 0;
  border: 0;
  text-transform: uppercase;
}
.p-pager .start:before,
.p-pager .prev:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  left: 50%;
  margin-left: -5px;
  border-style: solid;
  border-color: #666;
  border-width: 2px 0 0 2px;
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
}
.p-pager .prev {
  margin-right: 1rem;
}
.p-pager .start:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 9px;
  width: 2px;
  height: 14px;
  background: #666;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.p-pager .end,
.p-pager .next {
  height: 38px;
  width: 38px;
  position: relative;
  font-size: 0;
  border: 0;
  text-transform: uppercase;
}
.p-pager .end:before,
.p-pager .next:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  right: 50%;
  margin-right: -5px;
  border-style: solid;
  border-color: #666;
  border-width: 0 2px 2px 0;
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
}
.p-pager .next {
  margin-left: 1rem;
}
.p-pager .end:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 9px;
  width: 2px;
  height: 14px;
  background: #666;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.p-pager .current {
  background: #DB582E;
  color: #fff;
}
.p-pager .disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pc .p-pager a:not(.current):hover {
  color: #DB582E;
}
.pc .p-pager .end:hover,
.pc .p-pager .next:hover,
.pc .p-pager .start:hover,
.pc .p-pager .prev:hover {
  background: #efefef;
}

@media (max-width: 767px) {
  .p-pager a {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 0.9375rem;
  }
  .p-pager .prev,
  .p-pager .next,
  .p-pager .end,
  .p-pager .start {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
  .p-pager .prev {
    margin-right: 0px;
  }
  .p-pager .next {
    margin-left: 0px;
  }
  .p-pager .prev::after,
  .p-pager .next::before {
    width: 10px;
  }
}
.text-edit {
  line-height: 2;
  color: #666666;
  margin: 20px 0;
}
.text-edit * {
  max-width: 100%;
  height: auto !important;
}

@media (max-width: 1199px) {
  .text-edit {
    line-height: 2.4;
  }
}
.system-info {
  text-align: center;
  margin: 0 auto;
  padding: 8vh 0;
  line-height: 2;
  letter-spacing: 2px;
}
.system-info i {
  font-size: 2.25rem;
  display: block;
  margin: 0 auto 2rem;
  display: block;
  position: relative;
  color: #002337;
}
.system-info .h3 {
  font-weight: bold;
}
.system-info .txt {
  margin: 0 auto;
  width: 400px;
  max-width: 100%;
  color: #555;
  font-size: 1.0625rem;
}

.page-share ul {
  font-size: 0;
  margin: 0 auto;
}
.page-share ul li {
  display: inline-block;
  margin: 0 10px 0 0;
  vertical-align: middle;
}
.page-share ul li a {
  display: block;
  vertical-align: middle;
  position: relative;
  line-height: 40px;
  width: 42px;
  height: 42px;
  font-size: 0;
  border-radius: 50%;
  margin: 0 auto;
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: color 0.3s var(--ease), background-color 0.3s var(--ease);
  transition: color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.page-share ul li a:before {
  content: "";
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  font-size: 1.125rem;
  line-height: 40px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}
.page-share ul li .fb:before {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
  content: "\f09a";
  color: #2542a8;
  font-size: 1.6rem;
}
.page-share ul li .line {
  background-image: url(../images/icon_line.svg);
  background-size: 25px auto;
}

.pc .page-share ul li .fb:hover {
  background-color: #0078d7;
}
.pc .page-share ul li .fb:hover::before {
  color: #fff;
}
.pc .page-share ul li .line:hover {
  background-image: url(../images/icon_line_w.svg);
  background-color: #00c300;
}

@media screen and (max-width: 767px) {
  .page-share ul li {
    margin: 0 3px 0 0;
  }
  .page-share ul li a {
    line-height: 34px;
    width: 36px;
    height: 36px;
    font-size: 0;
  }
  .page-share ul li a:before {
    font-size: 1rem;
    line-height: 34px;
    width: 36px;
    height: 36px;
  }
}
.hover-style {
  position: relative;
}
.hover-style::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  background: rgb(0, 0, 0);
}
.hover-style::after {
  content: "VIEW";
  display: block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 40px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 0.875rem;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: bottom 0.3s ease 0.1s, opacity 0.8s ease 0.3s;
  transition: bottom 0.3s ease 0.1s, opacity 0.8s ease 0.3s;
}

.hover-style:hover:before {
  opacity: 1;
}
.hover-style:hover:after {
  opacity: 1;
  bottom: 50%;
}

#product .list {
  display: block;
}
#product .box {
  padding: 10px;
  width: calc(25% - 20px);
  margin: 10px;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 15px rgba(0, 38, 62, 0.1);
          box-shadow: 0 0 15px rgba(0, 38, 62, 0.1);
}
#product .box .txt-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
#product .box .txt-box .h3 {
  display: block;
  text-align: center;
  width: 100%;
  margin: 0;
  line-height: 1.6rem;
  height: 3.2rem;
}
#product .box .txt-box .more,
#product .box .txt-box .btn-inquiry {
  width: 90px;
  height: 40px;
  line-height: 36px;
}
#product .top-wrap {
  padding: 0 0 3%;
}
#product .middle-wrap {
  background: #f3f3f3;
}
#product #search .aside-nav {
  margin: 1rem 0;
}
#product #search .box {
  width: calc(20% - 20px);
  display: inline-block;
}

@media screen and (max-width: 1366px) {
  #product .box {
    margin: 10px;
    width: calc(33.33% - 20px);
  }
}
@media screen and (max-width: 991px) {
  #product .pro-banner {
    aspect-ratio: 850/430;
  }
  #product .pro-banner img {
    border-radius: 10px;
  }
  #product .pro-banner .theme-wrap {
    line-height: 1.5;
  }
  #product .pro-banner .ban-title {
    padding: 0 4rem;
  }
  #product .pro-banner .ban-title .h2 {
    font-size: 1.6rem;
  }
  #product .main-content {
    width: 100%;
    padding: 0;
  }
  #product .list {
    width: 100%;
    margin: 0;
  }
  #product .box .txt-box .more,
  #product .box .txt-box .btn-inquiry {
    margin: 0;
    height: 36px;
    line-height: 32px;
    border-width: 1px;
    font-size: 0.8rem;
    width: calc(50% - 10px);
  }
  #product #search .box {
    width: calc(33.33% - 24px);
  }
}
@media screen and (max-width: 767px) {
  #product .box {
    margin: 7px;
    padding: 10px 10px 15px;
    width: calc(50% - 14px);
    border-radius: 5px;
  }
  #product .box .pic-box .tag {
    top: 10px;
    right: 10px;
  }
  #product .box .txt-box {
    gap: 5px;
  }
  #product .box .txt-box .h3 {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  #product .box .txt-box .more,
  #product .box .txt-box .btn-inquiry {
    width: 100%;
  }
  #product #search .aside-nav ul {
    gap: 8px;
  }
  #product #search .aside-nav ul li a {
    height: 30px;
    line-height: 30px;
    padding: 0 12px;
    font-size: 0.875rem;
  }
  #product #search .box {
    width: calc(50% - 16px);
  }
}
#product-view .page-wrap {
  padding-bottom: 0;
}
#product-view .top-wrap {
  position: relative;
  z-index: 2;
  padding: 0 50px;
}
#product-view .top-wrap .content-wrap {
  aspect-ratio: 1820/830;
  position: relative;
  padding: 5% calc((100% - 1400px) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
#product-view .top-wrap .content-wrap .bg-pic {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
#product-view .top-wrap .content-wrap .pic-box {
  position: relative;
  width: 550px;
  height: 550px;
  z-index: 1;
  line-height: 550px;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
}
#product-view .top-wrap .content-wrap .pic-box img {
  width: 500px;
  height: 500px;
  vertical-align: middle;
  line-height: 500px;
  display: inline-block;
}
#product-view .top-wrap .content-wrap .pic-box:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: -1;
}
#product-view .top-wrap .content-wrap .txt-box {
  width: calc(100% - 550px);
  color: #002337;
  padding-right: 5%;
  font-size: 1.25rem;
}
#product-view .top-wrap .content-wrap .txt-box .cat {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}
#product-view .top-wrap .content-wrap .txt-box .h1 {
  font-family: "Roboto";
  font-size: 3.6rem;
  font-weight: bold;
}
#product-view .top-wrap .content-wrap .txt-box .discontinued {
  position: absolute;
  left: 0;
  top: 0;
  letter-spacing: 3px;
  color: #fff;
  font-size: 1.35rem;
  width: 100%;
  line-height: 1.8;
  text-align: center;
  display: block;
  font-weight: 500;
  background: #890000;
}
#product-view .top-wrap .content-wrap .txt-box .txt {
  line-height: 2;
  margin: 1rem 0 1.5rem;
  font-size: 1.125rem;
}
#product-view .top-wrap .content-wrap .txt-box .btn-second,
#product-view .top-wrap .content-wrap .txt-box .btn-white {
  width: unset;
  padding: 0 40px;
  border-radius: 32px;
  height: 64px;
  line-height: 64px;
  font-size: 1rem;
  margin-right: 10px;
}
#product-view .top-wrap .content-wrap.left-pic-style {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
#product-view .top-wrap .content-wrap.left-pic-style .txt-box {
  padding: 0 0 0 5%;
}
#product-view .top-wrap .content-wrap.text-center-style {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#product-view .top-wrap .content-wrap.text-center-style .pic-box {
  display: none;
}
#product-view .top-wrap .content-wrap.text-center-style .txt-box {
  padding: 0;
  width: 60%;
}
#product-view #pro-view-download {
  position: relative;
  padding-bottom: 4%;
}
#product-view #pro-view-download .g-title {
  text-transform: uppercase;
}
#product-view #pro-view-download .list {
  gap: 1rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#product-view #pro-view-download .box {
  background: #d8dde5;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #222222;
  font-size: 1.125rem;
  display: flex;
  width: calc(25% - 1rem);
  padding: 3%;
  gap: 10px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#product-view #pro-view-download .box img {
  width: 55px;
  height: 55px;
  display: block;
}
#product-view #pro-view-download .box .aw {
  position: absolute;
  right: 5%;
  width: 28px;
  height: 28px;
  line-height: 28px;
  top: 3.5rem;
  font-size: 1rem;
  border-radius: 50%;
  background: #fff;
  text-align: center;
  cursor: pointer;
}
#product-view #pro-view-download .box .aw::after {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
}
#product-view #pro-view-download .box .open-list {
  display: none;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 1rem;
}
#product-view #pro-view-download .box .open-list > a {
  position: relative;
  padding: 8px 1rem;
  display: block;
  color: #333;
}
#product-view #pro-view-download .box .open-list > a:not(:last-child) {
  border-bottom: 1px solid #d8dde5;
}
#product-view #pro-view-download .box .open-list > a::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  position: absolute;
  right: 0;
  font-size: 0.9375rem;
  line-height: 28px;
  top: 8px;
  color: #DB582E;
  text-align: center;
}
#product-view #solutions {
  padding: 3% 0 4%;
}
#product-view #solutions .g-title {
  margin-bottom: 5px;
}
#product-view #solutions .txt {
  margin-bottom: 5%;
}
#product-view #solutions .solutions-slick {
  display: block;
  font-size: 0;
  text-align: center;
}
#product-view #solutions .slick-center {
  margin-top: 2rem;
}
#product-view #solutions .slick-slide > div {
  padding: 0 1rem;
}
#product-view #solutions .slick-slide > div .item {
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  aspect-ratio: 400/400;
  overflow: hidden;
}
#product-view #solutions .slick-slide > div .item img {
  width: 100%;
  height: 100%;
}
#product-view .tab {
  position: sticky;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 3%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0 2rem;
  width: 1300px;
  z-index: 80;
  background: rgb(233, 236, 241);
  top: 117px;
}
#product-view .tab li {
  z-index: 5;
  position: relative;
  padding: 0 1.5rem;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
#product-view .tab li a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
  padding: 20px 0;
  line-height: 1.5;
  color: #444444;
  text-align: center;
}
#product-view .tab li.current a {
  color: #DB582E;
}
#product-view .tab li.current a::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 100%;
  height: 4px;
  bottom: 0;
  background: #DB582E;
}
#product-view .tab li:first-child {
  display: none;
}
#product-view .tab li:first-child .h1 {
  font-size: 1.75rem;
  font-family: "Roboto";
  margin: 0;
  color: #002337;
}
#product-view .tab.fixed {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  width: 100%;
  padding: 0 calc((100% - 1300px) / 2);
}
#product-view .tab.fixed li:first-child {
  display: block;
}
#product-view .content {
  padding-bottom: 2rem;
}
#product-view .content .item {
  display: none;
}
#product-view .content .item.current {
  display: block;
}
#product-view .item .g-title {
  text-transform: uppercase;
  font-size: 2.85rem;
}
#product-view .item.current {
  display: block;
}
#product-view .item.video {
  background: #246BA7;
}
#product-view .bottom-wrap {
  padding: 3% 0 5%;
  background: url(../images/pro_view_bot_bg.jpg) #f3f3f3 center bottom no-repeat;
  background-size: 100%;
}
#product-view .bottom-wrap .flex-wrap {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#product-view .bottom-wrap .g-title {
  font-size: 2.5rem;
  margin: 0;
}
#product-view .bottom-wrap .left-box {
  position: relative;
  border-right: 1px solid #ccc;
  padding-right: 3rem;
}
#product-view .bottom-wrap .right-box {
  position: relative;
  padding-left: 3rem;
}
#product-view .bottom-wrap .slider-arrow {
  position: absolute;
  right: 3.5rem;
  top: 4%;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  width: 120px;
}
#product-view .bottom-wrap .slider-arrow .slick-arrow {
  background-color: #f3f3f3;
}
#product-view .related-slick,
#product-view .compatible-slick {
  padding: 4% 0;
}
#product-view .related-slick .box,
#product-view .compatible-slick .box {
  position: relative;
  font-size: 0;
  margin: 0;
}
#product-view .related-slick .box::after,
#product-view .compatible-slick .box::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  right: 10px;
  bottom: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 5px;
  z-index: -1;
}
#product-view .related-slick .box .pic-box,
#product-view .compatible-slick .box .pic-box {
  display: inline-block;
  vertical-align: middle;
  width: 30%;
  margin: 0;
  padding: 1rem;
}
#product-view .related-slick .box .txt-box,
#product-view .compatible-slick .box .txt-box {
  display: inline-block;
  vertical-align: middle;
  width: 70%;
  padding: 2rem;
}
#product-view .related-slick .box .txt-box .more,
#product-view .related-slick .box .txt-box .btn-inquiry,
#product-view .compatible-slick .box .txt-box .more,
#product-view .compatible-slick .box .txt-box .btn-inquiry {
  width: 90px;
  height: 40px;
  line-height: 36px;
}
#product-view .related-slick .box .txt-box .more,
#product-view .compatible-slick .box .txt-box .more {
  margin-right: 5px;
}

.pc #product-view .tab li:not(.current):hover a {
  color: #DB582E;
}
.pc #product-view #pro-view-download .box .open-list > a:hover {
  color: #DB582E;
}
.pc #product-view #pro-view-download .box .aw:hover {
  width: 40px;
  height: 40px;
  line-height: 40px;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  background: #002337;
}
.pc #product-view #pro-view-download .box .aw:hover::after {
  color: #fff;
}
.pc #product-view .bottom-wrap .slider-arrow .slick-arrow:hover {
  background-color: #002337;
}

@media (max-width: 1680px) {
  #product-view .top-wrap .content-wrap {
    padding: 8%;
  }
  #product-view .top-wrap .content-wrap .pic-box {
    height: 500px;
    width: 500px;
    line-height: 500px;
  }
  #product-view .top-wrap .content-wrap .pic-box img {
    width: 400px;
    height: 400px;
    line-height: 500px;
  }
  #product-view .top-wrap .content-wrap .txt-box {
    width: calc(100% - 500px);
  }
}
@media (max-width: 1366px) {
  #product-view .top-wrap {
    padding: 30px 50px;
  }
  #product-view .top-wrap .content-wrap .pic-box {
    height: 300px;
    width: 300px;
    line-height: 300px;
  }
  #product-view .top-wrap .content-wrap .pic-box img {
    width: 250px;
    height: 250px;
    line-height: 300px;
  }
  #product-view .top-wrap .content-wrap .txt-box {
    width: calc(100% - 300px);
  }
  #product-view .top-wrap .content-wrap .txt-box .h1 {
    font-size: 3rem;
  }
  #product-view .top-wrap .content-wrap .txt-box .btn-second,
  #product-view .top-wrap .content-wrap .txt-box .btn-white {
    width: unset;
    padding: 0 20px;
    border-radius: 20px;
    height: 40px;
    line-height: 40px;
    font-size: 0.9375rem;
  }
  #product-view .tab {
    width: 100%;
    padding: 0 2rem;
  }
  #product-view .tab .fixed {
    padding: 1rem 2rem;
  }
  #product-view #pro-view-download .content-wrap {
    font-size: 1rem;
  }
  #product-view #pro-view-download .content-wrap img {
    width: 40px;
    height: 40px;
  }
  #product-view #pro-view-download .content-wrap .aw {
    top: 2.5rem;
  }
}
@media (max-width: 1199px) {
  #product-view .top-wrap .content-wrap .txt-box .h1 {
    font-size: 2.5rem;
  }
  #product-view #pro-view-download .box {
    padding: 20px;
  }
  #product-view #pro-view-download .box .aw {
    top: 25px;
  }
  #product-view #pro-view-download .box .open-list > a {
    padding: 8px 5px;
  }
  #product-view .tab {
    top: 78px;
  }
  #product-view .tab li {
    padding: 0 1rem;
  }
  #product-view .bottom-wrap .g-title {
    font-size: 2rem;
  }
  #product-view .bottom-wrap .left-box {
    padding-right: 2rem;
  }
  #product-view .bottom-wrap .right-box {
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  #product-view .top-wrap {
    padding: 20px 20px 0;
  }
  #product-view .top-wrap .content-wrap {
    aspect-ratio: unset;
    padding: 8% 5%;
  }
  #product-view .top-wrap .content-wrap .pic-box {
    height: 250px;
    width: 250px;
    line-height: 250px;
  }
  #product-view .top-wrap .content-wrap .pic-box img {
    width: 200px;
    height: 200px;
    line-height: 250px;
  }
  #product-view .top-wrap .content-wrap .txt-box {
    width: calc(100% - 250px);
  }
  #product-view .top-wrap .content-wrap .txt-box .txt {
    margin: 1rem 0;
  }
  #product-view .top-wrap .content-wrap .txt-box .cat {
    font-size: 1rem;
  }
  #product-view .top-wrap .content-wrap.left-pic-style .txt-box {
    padding: 0;
  }
  #product-view .top-wrap .content-wrap.text-center-style .txt-box {
    width: 70%;
  }
  #product-view #pro-view-download .box {
    margin: 0;
    width: calc(50% - 1rem);
  }
  #product-view #pro-view-download .box .open-list {
    padding: 10px;
  }
  #product-view #solutions .solutions-slick .slick-slide > div {
    padding: 0 10px;
  }
  #product-view .tab {
    padding: 1rem 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #product-view .tab li {
    border: 0;
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
  #product-view .tab li a {
    white-space: nowrap;
    padding: 10px 0;
  }
  #product-view .tab li:first-child {
    margin-bottom: 10px;
  }
  #product-view .tab.fixed {
    padding: 1rem 0 0;
  }
  #product-view .tab.fixed li:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    text-align: center;
  }
  #product-view .item .g-title {
    font-size: 1.5rem;
  }
  #product-view .bottom-wrap {
    padding-top: 2rem;
  }
  #product-view .bottom-wrap .g-title {
    font-size: 1.65rem;
  }
  #product-view .bottom-wrap .left-box {
    padding-right: 10px;
  }
  #product-view .bottom-wrap .right-box {
    padding-left: 10px;
  }
  #product-view .bottom-wrap .slider-arrow {
    width: 100px;
    right: 1rem;
    top: 1rem;
  }
  #product-view .related-slick .box .txt-box,
  #product-view .compatible-slick .box .txt-box {
    border: 0;
    padding: 1rem 10px 1rem 15px;
  }
  #product-view .related-slick .box .txt-box .more,
  #product-view .related-slick .box .txt-box .btn-inquiry,
  #product-view .compatible-slick .box .txt-box .more,
  #product-view .compatible-slick .box .txt-box .btn-inquiry {
    font-size: 0.8rem;
    width: 80px;
    height: 35px;
    line-height: 31px;
  }
  #product-view .related-slick .box::after,
  #product-view .compatible-slick .box::after {
    left: 5px;
    top: 5px;
    right: 5px;
    bottom: 5px;
  }
}
@media (max-width: 767px) {
  #product-view .top-wrap {
    padding: 15px 20px 0;
  }
  #product-view .top-wrap .content-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 2rem;
  }
  #product-view .top-wrap .content-wrap .bg-pic {
    max-width: 150%;
  }
  #product-view .top-wrap .content-wrap .pic-box {
    height: 150px;
    width: 150px;
    line-height: 150px;
    margin: 0 auto 1rem;
  }
  #product-view .top-wrap .content-wrap .pic-box img {
    width: 100px;
    height: 100px;
    line-height: 150px;
  }
  #product-view .top-wrap .content-wrap .txt-box {
    width: 100%;
    padding: 0;
  }
  #product-view .top-wrap .content-wrap .txt-box .h1 {
    font-size: 1.5rem;
  }
  #product-view .top-wrap .content-wrap .txt-box .h1:has(.discontinued) {
    gap: 10px;
  }
  #product-view .top-wrap .content-wrap .txt-box .discontinued {
    font-size: 1.125rem;
    letter-spacing: 5px;
  }
  #product-view .top-wrap .content-wrap .txt-box .txt {
    font-size: 0.9375rem;
    line-height: 2;
  }
  #product-view .top-wrap .content-wrap .txt-box .btn-second,
  #product-view .top-wrap .content-wrap .txt-box .btn-white {
    padding: 0 20px;
    margin-right: 5px;
    font-size: 0.8rem;
  }
  #product-view .top-wrap .content-wrap.text-center-style .txt-box {
    width: 100%;
  }
  #product-view #pro-view-download {
    padding-bottom: 2rem;
  }
  #product-view #pro-view-download .box {
    font-size: 1.125rem;
    padding: 10px 2rem;
    width: calc(100% - 1rem);
  }
  #product-view #pro-view-download .box .aw {
    top: 15px;
    right: 10px;
  }
  #product-view #pro-view-download .box img {
    width: 35px;
    height: 35px;
  }
  #product-view #pro-view-download .box .open-list > a::after {
    right: 10px;
  }
  #product-view #solutions {
    padding: 2rem 0 3rem;
  }
  #product-view #solutions .slick-prev {
    left: -20px;
  }
  #product-view #solutions .slick-next {
    right: -20px;
  }
  #product-view .tab {
    top: 56px;
    padding: 1rem 0 0.5rem;
  }
  #product-view .tab li {
    padding: 0 10px;
  }
  #product-view .tab li a {
    font-weight: normal;
    padding: 5px 0;
  }
  #product-view .tab li:first-child .h1 {
    font-size: 1.5rem;
  }
  #product-view .tab li.current a::before {
    height: 3px;
  }
  #product-view .tab.fixed li:first-child {
    margin: 0;
  }
  #product-view .bottom-wrap .g-title {
    font-size: 1.35rem;
  }
  #product-view .bottom-wrap .left-box {
    width: 100%;
    padding-right: 0;
    padding-bottom: 1rem;
    border: 0;
  }
  #product-view .bottom-wrap .right-box {
    width: 100%;
    padding-left: 0;
  }
  #product-view .bottom-wrap .slider-arrow {
    width: 80px;
    right: 0;
  }
  #product-view .item.current {
    padding-top: 1.5rem;
  }
}
#news .list {
  margin: 0 1px;
}
#news .box {
  width: 33.33%;
  padding: 0 1rem 2rem;
}
#news .box .pic-box {
  border-radius: 10px;
}
#news .box .txt-box {
  padding: 1rem;
}
#news .box .txt-box .date {
  color: #DB582E;
}
#news .box .txt-box .des {
  -webkit-line-clamp: 3;
  height: 5.4rem;
}

@media (max-width: 1199px) {
  #news .box .txt-box .des {
    height: 3.6rem;
    -webkit-line-clamp: 2;
  }
}
@media (max-width: 991px) {
  #news .box {
    width: 50%;
    padding: 0 5px 1.5rem;
  }
  #news .box .txt-box {
    padding: 10px;
  }
}
@media (max-width: 767px) {
  #news .box {
    width: 100%;
    padding: 0 0 1rem;
  }
  #news .box .txt-box {
    padding: 0;
  }
}
#case .box {
  padding: 0;
  margin: 1rem 1rem 2rem;
  width: calc(33.33% - 2rem);
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#case .box .pic-box {
  border-radius: 10px;
}
#case .box .txt-box {
  padding: 1rem 1.5rem 2rem;
}

@media (max-width: 991px) {
  #case .box {
    margin: 10px 10px 20px;
    width: calc(50% - 20px);
  }
}
@media (max-width: 767px) {
  #case .box {
    margin: 5px 0 1.5rem;
    width: 100%;
  }
  #case .box .txt-box {
    padding: 0px 1rem 20px;
  }
}
#app .list {
  margin: 0 1px;
  gap: 1.5em;
}
#app .box {
  width: 100%;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid #ddd;
}
#app .box .pic-box {
  width: 350px;
  margin: 0;
  border-radius: 10px;
}
#app .box .pic-box img {
  width: 100%;
}
#app .box .txt-box {
  width: calc(100% - 350px);
  text-align: left;
  padding-left: 2rem;
  padding-top: 1rem;
}
#app .box .txt-box .des {
  margin-bottom: 1rem;
}
#app .box .txt-box .more {
  width: 130px;
  height: 40px;
  line-height: 36px;
}
#app #repair .h2 {
  font-size: 1.65rem;
  color: #002337;
}
#app #repair .list {
  border-top: 2px solid #DB582E;
  gap: 0;
  margin-bottom: 4%;
}
#app #repair .box {
  padding: 1rem;
}
#app #repair .txt-box {
  width: 100%;
  padding: 1rem 150px 0 0;
}
#app #repair .txt-box .more.btn-more {
  position: absolute;
  right: 0;
  bottom: 0px;
}

#blog .tag-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 0;
}
#blog .tag-wrap a {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0 10px;
  background: #efefef;
  color: #666666;
  height: 27px;
  line-height: 27px;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
  margin-bottom: 3px;
}
#blog .flex-wrap {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#blog .flex-wrap .left-box {
  width: 78%;
  padding-right: 2rem;
}
#blog .flex-wrap .right-box {
  width: 22%;
}
#blog .flex-wrap .right-box > div {
  background: #fff;
  margin-bottom: 2rem;
  border-radius: 10px;
  padding: 2rem;
}
#blog .flex-wrap .right-box > div .ti {
  font-weight: bold;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  display: block;
  color: #333;
}
#blog .flex-wrap .right-box > div .h4 {
  color: #DB582E;
  font-size: 1.25rem;
}
#blog .list {
  gap: 2rem;
}
#blog .box {
  border: 0;
  padding: 0;
  background: #fff;
  border-radius: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0;
}
#blog .box .txt-box {
  padding: 2rem 3rem 1rem;
}

.pc #app #blog .flex-wrap .tag-wrap a:hover {
  background: #002337;
  color: #fff;
}

@media (max-width: 1199px) {
  #app .list {
    gap: 1rem;
  }
  #app .box {
    padding: 0 0 1rem 0;
  }
  #app .box .pic-box {
    width: 30%;
  }
  #app .box .txt-box {
    width: 70%;
    padding-top: 0;
  }
  #app #blog .flex-wrap .left-box {
    padding-right: 1rem;
  }
  #app #blog .list {
    gap: 1rem;
  }
  #app #blog .box .pic-box {
    width: 42%;
  }
  #app #blog .box .txt-box {
    width: 58%;
    padding: 1.5rem 2rem 0;
  }
  #app #repair .txt-box {
    width: 100%;
  }
}
@media (max-width: 991px) {
  #app #blog .flex-wrap {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #app #blog .flex-wrap .left-box,
  #app #blog .flex-wrap .right-box {
    width: 100%;
    padding: 0;
  }
  #app #repair .h2 {
    font-size: 1.5rem;
  }
  #app #repair .box {
    padding: 5px;
  }
}
@media (max-width: 767px) {
  #app .list {
    gap: 10px;
  }
  #app .box {
    width: 100%;
    padding-bottom: 5px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #app .box .pic-box {
    width: 100%;
    margin-bottom: 5px;
  }
  #app .box .txt-box {
    width: 100%;
    padding-left: 0px;
  }
  #app .box .txt-box .more {
    display: none;
  }
  #app #blog .box .pic-box {
    width: 100%;
  }
  #app #blog .box .txt-box {
    width: 100%;
    padding: 1rem;
  }
  #app #repair .h2 {
    font-size: 1.35rem;
  }
  #app #repair .list {
    margin-bottom: 1.5rem;
  }
  #app #repair .box {
    padding: 10px;
  }
  #app #repair .txt-box {
    padding: 0;
  }
}
#news-view hr {
  width: 1250px;
  margin: 4% auto;
  max-width: 100%;
}
#news-view .btn-wrap-center {
  margin: 4% auto;
}
#news-view .contact-form {
  margin-top: 5%;
}
#news-view #app-view {
  padding-bottom: 0;
}
#news-view .form-box.form-product {
  padding-bottom: 21px;
  padding-top: 14px;
}
#news-view .form-box.form-product .select-style {
  width: calc((100% - 7px) / 2);
  background-color: #fff;
}
#news-view .form-box.form-product .item-product {
  height: 50px;
  line-height: 50px;
  margin-bottom: 0;
}
#news-view .h1 {
  font-weight: bold;
  font-family: "Roboto";
  color: #002337;
  line-height: 1.5;
  font-size: clamp(1.125rem, var(--fluid-title), 2.75rem);
  margin: 1rem 0 2rem;
  width: 100%;
}
#news-view .top-box {
  width: calc(100% - 100px);
  margin: 0 auto;
  border-radius: 20px;
  background: #f5f5f5;
  padding: 2rem;
  margin-bottom: 2%;
}
#news-view .top-box .p-breadcrumb {
  padding: 0;
}
#news-view .top-box .cat {
  height: 32px;
  line-height: 32px;
  border-radius: 2px;
  padding: 0 15px;
  color: #fff;
  display: inline-block;
  background: #DB582E;
  margin-right: 10px;
}
#news-view .top-box .date {
  display: inline-block;
  line-height: 32px;
  color: #DB582E;
}
#news-view .related-files {
  margin: 0 0 5%;
}
#news-view .recommended-wrap {
  padding: 0;
}
#news-view .recommended-wrap:has(.contact-form) {
  padding: 0 0 5%;
}
#news-view .recommended-wrap .list {
  display: block;
}
#news-view .recommended-wrap .list .slick-prev {
  left: -60px;
}
#news-view .recommended-wrap .list .slick-next {
  right: -60px;
}
#news-view .recommended-wrap .box {
  position: relative;
  padding: 1rem;
  overflow: hidden;
}
#news-view .recommended-wrap .box::after {
  content: "";
  top: 1rem;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  -webkit-box-shadow: 0 0 15px rgba(0, 38, 62, 0.1);
          box-shadow: 0 0 15px rgba(0, 38, 62, 0.1);
  background: #fff;
  border-radius: 15px;
  display: block;
  position: absolute;
  z-index: -1;
}
#news-view .recommended-wrap .pic-box {
  border-radius: 15px;
  overflow: hidden;
  padding: 1rem;
}
#news-view .recommended-wrap .txt-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  padding-bottom: 2rem;
}
#news-view .recommended-wrap .txt-box .h3 {
  padding: 0 1.5rem;
  ddisplay: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-align: center;
  width: 100%;
  margin: 0;
  line-height: 1.5rem;
  height: 3rem;
  overflow: hidden;
}
#news-view #blog .top-box .cat {
  background: transparent;
  color: #DB582E;
  border-bottom: 1px solid #DB582E;
  padding: 0;
  border-radius: 0;
}

@media (max-width: 1680px) {
  #news-view #blog .main-content .flex-wrap {
    padding: 0 5%;
  }
}
@media (max-width: 1366px) {
  #news-view .recommended-wrap .list .slick-prev {
    left: -1rem;
  }
  #news-view .recommended-wrap .list .slick-next {
    right: -1rem;
  }
}
@media (max-width: 1199px) {
  #news-view .top-box {
    width: calc(100% - 4rem);
    padding: 2rem;
  }
  #news-view .recommended-wrap .list .slick-prev {
    left: -2rem;
  }
  #news-view .recommended-wrap .list .slick-next {
    right: -2rem;
  }
  #news-view #blog .top-box .container-1300 {
    padding-right: 1.5rem;
  }
}
@media (max-width: 991px) {
  #news-view .top-box {
    padding: 2rem 1rem;
  }
  #news-view .top-box .h1 {
    margin: 1rem 0;
  }
  #news-view .related-files .more {
    width: 100px;
    font-size: 0.8rem;
    height: 30px;
    line-height: 26px;
    padding: 0 10px;
  }
  #news-view .recommended-wrap .box::after {
    top: 10px;
    bottom: 10px;
    right: 10px;
    left: 10px;
  }
  #news-view #blog .main-content .flex-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #news-view #blog .main-content .flex-wrap .left-box,
  #news-view #blog .main-content .flex-wrap .right-box {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 767px) {
  #news-view hr,
  #news-view .btn-wrap-center {
    margin: 2rem auto;
  }
  #news-view .form-box.form-product .item-product {
    height: 40px;
    line-height: 40px;
  }
  #news-view .top-box {
    padding: 1.5rem;
  }
  #news-view .top-box > * {
    padding: 0;
  }
  #news-view .top-box .h1 {
    font-size: 1.25rem;
    margin: 0.5rem 0 0;
  }
  #news-view .top-box .date,
  #news-view .top-box .cat {
    font-size: 0.8rem;
    height: 24px;
    line-height: 24px;
  }
  #news-view .top-box .cat {
    padding: 0 7px;
    margin-right: 8px;
  }
  #news-view .recommended-wrap {
    padding-bottom: 4rem;
  }
  #news-view .recommended-wrap .list .slick-prev {
    top: 40%;
    left: -1rem;
  }
  #news-view .recommended-wrap .list .slick-next {
    top: 40%;
    right: -1rem;
  }
  #news-view .recommended-wrap .box {
    padding-bottom: 1rem;
  }
  #news-view #blog .main-content .flex-wrap {
    padding: 0;
  }
}
#video .box {
  width: 33.33%;
  padding: 1rem;
  margin: 0;
}
#video .box .pic-box {
  border-radius: 10px;
}
#video .box .pic-box::before, #video .box .pic-box::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#video .box .pic-box::before {
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #DB582E;
  border-style: solid;
  z-index: 1;
}
#video .box .pic-box::after {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  z-index: 0;
}
#video .box .txt-box {
  padding: 1rem;
}
#video .box .txt-box .h3 {
  display: inline-block;
}

@media (max-width: 1199px) {
  #video .list {
    margin: 0 -10px;
  }
  #video .box {
    padding: 10px;
  }
}
@media (max-width: 991px) {
  #video .box {
    width: 50%;
  }
  #video .box .txt-box {
    padding: 10px 1rem;
  }
}
@media (max-width: 767px) {
  #video .list {
    margin: 0 1px;
  }
  #video .box {
    width: 100%;
    padding: 5px 0;
  }
  #video .box .txt-box {
    padding: 0 8px;
  }
}
#faq .main {
  padding-bottom: 3rem;
}

.faq-list {
  display: block;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  border-top: 2px solid #DB582E;
  counter-reset: faq;
}
.faq-list .item {
  position: relative;
  width: 100%;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  counter-increment: faq;
}
.faq-list .item .que {
  border-bottom: 1px solid #ddd;
  font-size: clamp(1rem, var(--fluid-txt), 1.19rem);
  font-weight: normal;
  position: relative;
  margin: 0;
  padding: 1.5rem 5rem;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 1.8rem;
}
.faq-list .item .que::before {
  content: "Q" counter(faq);
  width: 30px;
  height: 30px;
  font-size: 0.9375rem;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  font-size: clamp(0.9375rem, var(--fluid-txt), 1rem);
  position: absolute;
  left: 2rem;
  top: 1.5rem;
  color: #fff;
  background: #DB582E;
}
.faq-list .item .que::before .aw {
  position: absolute;
  right: 1.7rem;
  top: 1.5rem;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  display: block;
  width: 15px;
  height: 15px;
  border-style: solid;
  border-width: 2px;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  border-color: transparent #002337 #002337 transparent;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.faq-list .item .ans {
  border-top: 1px solid #ddd;
  position: relative;
  padding: 1.5rem 5rem;
  margin: 0;
  font-size: 1rem;
  color: #666666;
  line-height: 2rem;
  background: #f8f8f8;
  max-height: 8rem;
  overflow: hidden;
}
.faq-list .item .ans::before {
  content: "A";
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  font-size: clamp(0.9375rem, var(--fluid-txt), 1rem);
  position: absolute;
  left: 2em;
  top: 1.5rem;
  color: #fff;
  background: #002337;
}
.faq-list .item .txt {
  font-size: clamp(1rem, var(--fluid-txt), 1.0625rem);
}
.faq-list .item .txt * {
  max-width: 100%;
  height: auto !important;
}
.faq-list .item .btn-more {
  position: absolute;
  right: 0;
  bottom: 0px;
  cursor: pointer;
  background: #f8f8f8;
  color: #002337;
  border-radius: 3px;
  width: 100%;
  height: 2.5rem;
  line-height: 2.5rem;
  text-align: right;
  padding-right: 2rem;
}
.faq-list .item.open .ans {
  max-height: unset;
}
.faq-list .item.open .btn-more {
  background: #f8f8f8;
}

.pc #faq .faq-list .item .que:hover {
  color: #DB582E;
}

@media (max-width: 991px) {
  .faq-list .item .que {
    padding: 1.5rem 3.5rem;
    font-weight: normal;
  }
  .faq-list .item .que::before {
    left: 0.5rem;
  }
  .faq-list .item .que::before .aw {
    width: 10px;
    height: 10px;
    right: 1rem;
  }
  .faq-list .item .ans {
    padding: 1.5rem 1.5rem 1.5rem 3.5rem;
  }
  .faq-list .item .ans::before {
    left: 0.5rem;
  }
}
@media (max-width: 767px) {
  .faq-list .item .que {
    padding: 1rem 3rem;
  }
  .faq-list .item .que::before {
    top: 1rem;
  }
  .faq-list .item .ans {
    padding: 1rem 1rem 1rem 3rem;
    max-height: 7rem;
  }
  .faq-list .item .ans::before {
    top: 1rem;
  }
  .faq-list .item .ans .txt {
    font-size: 0.9375rem;
  }
  .faq-list .item .btn-more {
    padding-right: 1rem;
  }
}
#sitemap .list {
  gap: 3rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#sitemap .box {
  width: calc(25% - 3rem);
  margin: 0;
}
#sitemap .box a {
  display: block;
  color: #333;
}
#sitemap .box ul {
  line-height: 2;
  margin-bottom: 4rem;
}
#sitemap .box ul li {
  border-bottom: 1px solid #ddd;
}
#sitemap .box ul li a {
  position: relative;
  padding: 10px 0 10px 3rem;
}
#sitemap .box ul li a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  display: block;
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 22px;
  height: 22px;
  line-height: 22px;
  border-radius: 50%;
  background: #d8dde5;
  color: #002337;
  font-size: 8px;
  text-align: center;
}
#sitemap .box .title {
  display: block;
  font-size: clamp(1rem, var(--fluid-title), 1.88rem);
  border-bottom: 2px solid #DB582E;
  margin-bottom: 1rem;
  font-family: "Roboto";
  color: #002337;
  padding-bottom: 10px;
  line-height: 1;
}

@media (max-width: 1366px) {
  #sitemap .list {
    gap: 2rem;
  }
  #sitemap .box {
    width: calc(33.33% - 2rem);
  }
  #sitemap .box ul {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 991px) {
  #sitemap .box {
    width: calc(50% - 2rem);
  }
  #sitemap .box .title {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  #sitemap .list {
    gap: 10px;
  }
  #sitemap .box {
    width: 100%;
  }
  #sitemap .box ul {
    margin-bottom: 1.5rem;
  }
  #sitemap .box ul li a {
    font-size: 0.875rem;
    line-height: 1.5;
    padding-left: 1.5rem;
  }
  #sitemap .box ul li a::before {
    left: 0;
    top: 12px;
    width: 15px;
    height: 15px;
    line-height: 15px;
  }
}
#contact .page-wrap {
  padding-bottom: 0;
}
#contact .txt {
  line-height: 2;
  color: #666666;
  border-bottom: 2px solid #ddd;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
#contact .google-map {
  position: relative;
  z-index: 0;
}
#contact .google-map::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #000;
  z-index: -1;
}
#contact .google-map iframe {
  width: 100%;
  border: 0;
  aspect-ratio: 1920/600;
  opacity: 0.9;
}
#contact .google-map .info-box {
  background: #fff;
  padding: 3.5% 4%;
  border-radius: 10px;
  position: absolute;
  left: calc((100% - 1400px) / 2);
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 550px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  z-index: 5;
}
#contact .google-map .info-box .g-h3 {
  text-transform: unset;
}
#contact .google-map .info-box ul {
  line-height: 2;
  margin-bottom: 10px;
}
#contact .google-map .info-box ul li {
  padding-left: 30px;
  position: relative;
  margin: 0 0 5px 0;
}
#contact .google-map .info-box ul li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #002337;
  font-size: 1.25rem;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 33px;
}
#contact .google-map .info-box ul .head::before {
  content: "\f2bd";
}
#contact .google-map .info-box ul .mail::before {
  left: 4px;
  content: "\f0e0";
}
#contact .google-map .info-box ul .phone::before {
  width: 20px;
  height: 20px;
  background: #002337;
  border-radius: 50%;
  content: "\f879";
  color: #fff;
  font-size: 7px;
  line-height: 21px;
  text-align: center;
  top: 5px;
}
#contact .google-map .info-box ul .fax::before {
  content: "\f1ac";
}

@media (max-width: 1680px) {
  #contact .google-map iframe {
    aspect-ratio: 1920/800;
  }
  #contact .google-map .info-box {
    width: 33.33%;
    left: 5%;
  }
}
@media (max-width: 1366px) {
  #contact .google-map .info-box {
    padding: 2% 3%;
  }
}
@media (max-width: 991px) {
  #contact .google-map iframe {
    aspect-ratio: 900/500;
  }
  #contact .google-map .info-box {
    width: 40%;
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  #contact .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  #contact .google-map {
    padding-bottom: 50px;
    background: #fff;
  }
  #contact .google-map::after {
    display: none;
  }
  #contact .google-map iframe {
    opacity: 1;
  }
  #contact .google-map .info-box {
    padding: 2rem 1.5rem;
    width: 90%;
    margin: -30px auto 0;
    left: 0;
    top: 0;
    position: relative;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  #contact .google-map .info-box ul {
    font-size: 0.9375rem;
    line-height: 1.8rem;
  }
  #contact .google-map .info-box ul li {
    margin: 0 0 10px 0;
  }
}
#privacy .p-banner .ban-title .h2 {
  color: #002337;
}
#privacy .p-banner .ban-title .small {
  color: #DB582E;
}
#privacy .theme-blue-ti {
  font-size: 2.5rem;
  font-weight: normal;
  margin-bottom: 0;
}
#privacy .theme-blue-ti::before {
  height: 40px;
}
#privacy .theme-sub-title,
#privacy .theme-p {
  padding-left: 1.5rem;
}

@media (max-width: 767px) {
  #privacy .theme-blue-ti {
    font-size: 1.5rem;
  }
  #privacy .theme-blue-ti::before {
    height: 20px;
  }
}
#customer .list {
  gap: 2rem;
}
#customer .box {
  width: calc((100% - 6rem) / 4);
  margin: 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
#customer .box img {
  width: 100%;
}

@media (max-width: 1199px) {
  #customer .list {
    gap: 1.5rem;
  }
  #customer .box {
    width: calc((100% - 4.5rem) / 4);
  }
}
@media (max-width: 991px) {
  #customer .box {
    width: calc((100% - 3rem) / 3);
  }
}
@media (max-width: 767px) {
  #customer .list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1rem;
  }
  #customer .box {
    width: calc(50% - 0.5rem);
  }
}
#milestone .timeline-list {
  position: relative;
}
#milestone .timeline-list::before {
  content: "";
  width: 150px;
  height: 150px;
  display: block;
  margin: 2rem auto;
  border-radius: 50%;
  background: url(../images/logo_w.png) center center no-repeat #002337;
}
#milestone .timeline-list::after {
  content: "";
  left: 50%;
  display: block;
  width: 1px;
  height: 100%;
  background: #ddd;
  position: absolute;
  top: 150px;
  z-index: -1;
}
#milestone .milestone-box {
  position: relative;
  padding: 2rem 3rem;
  background: #fff;
  -webkit-box-shadow: 0 0 20px rgba(0, 38, 26, 0.15);
          box-shadow: 0 0 20px rgba(0, 38, 26, 0.15);
  border-radius: 10px;
  -webkit-transition: margin-top 0.5s 0.5s;
  transition: margin-top 0.5s 0.5s;
}
#milestone .milestone-box::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border-width: 10px 16px;
  border-style: solid;
}
#milestone .milestone-box::after {
  content: "";
  position: absolute;
  display: block;
  width: 14px;
  height: 14px;
  opacity: 0;
  border-radius: 50%;
  top: 70%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #DB582E;
  -webkit-transition: opacity 0.3s ease, top 0.5s 0.5s;
  transition: opacity 0.3s ease, top 0.5s 0.5s;
}
#milestone .milestone-box:nth-child(odd) {
  margin-left: calc(50% + 4rem);
}
#milestone .milestone-box:nth-child(odd)::before {
  left: -32px;
  border-color: transparent #fff transparent transparent;
}
#milestone .milestone-box:nth-child(odd)::after {
  left: calc(-4rem - 7px);
}
#milestone .milestone-box:nth-child(even) {
  margin-right: calc(50% + 4rem);
}
#milestone .milestone-box:nth-child(even)::before {
  right: -32px;
  border-color: transparent transparent transparent #fff;
}
#milestone .milestone-box:nth-child(even)::after {
  right: calc(-4rem - 7px);
}
#milestone .milestone-box .year {
  font-family: "Roboto";
  font-size: 2.5rem;
  color: #DB582E;
}
#milestone .milestone-box .txt {
  font-size: 1.13rem;
}
#milestone .milestone-box .txt .ul-list {
  line-height: 1.6rem;
  list-style: none;
  margin: 1rem 0 2rem;
  padding: 0;
}
#milestone .milestone-box .txt .ul-list > li {
  padding-left: 20px;
  margin-bottom: 10px;
  position: relative;
}
#milestone .milestone-box .txt .ul-list > li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00263e;
  position: absolute;
  left: 0;
  top: 12px;
}
#milestone .milestone-box.is-view:not(:first-child) {
  margin-top: -30px;
}
#milestone .milestone-box.is-view::before {
  opacity: 1;
}
#milestone .milestone-box.is-view::after {
  top: 50%;
  opacity: 1;
}

@media (max-width: 1199px) {
  #milestone .timeline-list .milestone-box {
    padding: 2rem 2rem 1.5rem;
  }
  #milestone .timeline-list .milestone-box:nth-child(odd) {
    margin-left: calc(50% + 1.5rem);
  }
  #milestone .timeline-list .milestone-box:nth-child(odd)::after {
    left: calc(-1.5rem - 7px);
  }
  #milestone .timeline-list .milestone-box:nth-child(even) {
    margin-right: calc(50% + 1.5rem);
  }
  #milestone .timeline-list .milestone-box:nth-child(even)::after {
    right: calc(-1.5rem - 7px);
  }
  #milestone .timeline-list .milestone-box .year {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  #milestone .timeline-list {
    padding-left: 2rem;
  }
  #milestone .timeline-list::before {
    width: 30px;
    height: 30px;
    background: #002337;
    margin: 0 0 0 -40px;
  }
  #milestone .timeline-list::after {
    left: 7px;
    top: 30px;
  }
  #milestone .timeline-list .milestone-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 10px;
    padding: 1.5rem 1.5rem 1rem;
    border: 0;
  }
  #milestone .timeline-list .milestone-box:nth-child(odd) {
    margin-left: 0;
  }
  #milestone .timeline-list .milestone-box:nth-child(even) {
    margin-right: 0;
  }
  #milestone .timeline-list .milestone-box:nth-child(even)::before {
    right: unset;
    left: -32px;
    border-color: transparent #fff transparent transparent;
  }
  #milestone .timeline-list .milestone-box:nth-child(even)::after {
    right: unset;
    left: calc(-1.5rem - 7px);
  }
  #milestone .timeline-list .milestone-box.is-view:not(:first-child), #milestone .timeline-list .milestone-box.is-view:nth-child(odd), #milestone .timeline-list .milestone-box.is-view:nth-child(even) {
    margin: 0 0 1rem 0;
  }
}
#distributor .map-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1200/600;
  background: url(../images/map.png) center center no-repeat;
  background-size: 100%;
}
#distributor .toggle {
  display: none;
  width: 100%;
}
#distributor .tab {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
#distributor .tab li {
  position: absolute;
  line-height: 1.5;
}
#distributor .tab li a {
  text-align: center;
  font-size: 1rem;
  text-transform: uppercase;
  color: #002337;
  font-family: "Roboto";
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}
#distributor .tab li a::before {
  content: "\f3c5";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: block;
}
#distributor .tab li.current a {
  color: #DB582E;
}
#distributor .tab li:nth-child(1) {
  opacity: 0;
  left: 15%;
  top: 34%;
}
#distributor .tab li:nth-child(2) {
  left: 56%;
  top: 44.5%;
}
#distributor .tab li:nth-child(3) {
  left: 85.5%;
  top: 39%;
}
#distributor .tab li:nth-child(4) {
  left: 82%;
  top: 40.5%;
}
#distributor .tab li:nth-child(5) {
  left: 76%;
  top: 44.5%;
}
#distributor .tab li:nth-child(6) {
  left: 80%;
  top: 48%;
}
#distributor .tab li:nth-child(7) {
  opacity: 0;
  left: 69%;
  top: 53%;
}
#distributor .tab li:nth-child(7) a::before {
  display: inline-block;
  margin-right: 5px;
}
#distributor .tab li:nth-child(8) {
  left: 70.5%;
  top: 57%;
}
#distributor .tab li:nth-child(8) a::before {
  display: none;
}
#distributor .tab li:nth-child(8) a::after {
  content: "\f3c5";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 5px;
}
#distributor .tab li:nth-child(9) {
  left: 48%;
  top: 32%;
}
#distributor .tab li:nth-child(10) {
  left: 18%;
  top: 49%;
}
#distributor .content {
  padding: 3% 0;
}
#distributor .content .item {
  width: 100%;
  padding: 1rem 0;
}
#distributor .content .slick-slide[data-slick-index="0"] .item {
  opacity: 0;
}
#distributor .content .box {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0 10px;
  width: calc(50% - 20px - 4px);
  background: #fff;
  border-radius: 15px;
  padding: 1.5rem 2rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
#distributor .content .box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  display: block;
  top: 0;
  left: 0;
  background: #DB582E;
}
#distributor .content .box .pic-box {
  display: inline-block;
  width: calc(25% - 4px);
  vertical-align: top;
}
#distributor .content .box .txt-box {
  display: inline-block;
  width: calc(75% - 4px);
  padding-left: 1rem;
  vertical-align: top;
}
#distributor .content .box .txt-box > * {
  margin: 0;
}
#distributor .content .box .txt-box .cat {
  color: #DB582E;
}
#distributor .content .box .txt-box .h3 {
  font-family: "Roboto";
  color: #002337;
  font-weight: normal;
  font-size: 1.25rem;
  max-height: unset;
  margin-bottom: 1rem;
}
#distributor .content .box .txt-box ul {
  line-height: 1.6;
  margin-bottom: 10px;
}
#distributor .content .box .txt-box ul li {
  padding-left: 30px;
  position: relative;
  margin: 0 0 5px 0;
}
#distributor .content .box .txt-box ul li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #002337;
  font-size: 1.25rem;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 33px;
}
#distributor .content .box .txt-box ul .head::before {
  content: "\f2bd";
}
#distributor .content .box .txt-box ul .mobile::before {
  left: 4px;
  content: "\f3cd";
}
#distributor .content .box .txt-box ul .phone::before {
  width: 20px;
  height: 20px;
  background: #002337;
  border-radius: 50%;
  content: "\f879";
  color: #fff;
  font-size: 7px;
  line-height: 21px;
  text-align: center;
  top: 5px;
}
#distributor .content .box .txt-box ul .fax::before {
  content: "\f1ac";
}
#distributor .content .box .txt-box .more {
  padding: 0 0 0 12px;
}
#distributor .content .box .txt-box .more::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.25rem;
  position: absolute;
  left: 46px;
  top: 6px;
  line-height: 33px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
#distributor .content .box .txt-box .more.web::before {
  content: "\f57d";
}
#distributor .content .box .txt-box .more.mail::before {
  content: "\f0e0";
}

.pc #distributor .tab li a:hover {
  color: #DB582E;
}
.pc #distributor .content .box .more:hover {
  color: #fff;
}
.pc #distributor .content .box .more:hover::before {
  color: #fff;
}

@media (max-width: 1440px) {
  #distributor .tab li a {
    font-size: 0.875rem;
    line-height: 1;
  }
}
@media (max-width: 1199px) {
  #distributor .content {
    padding: 2rem 0;
  }
  #distributor .content .item {
    width: 100%;
    padding: 1rem 0;
  }
  #distributor .content .box {
    padding: 2rem;
  }
  #distributor .content .box .pic-box {
    width: 150px;
  }
  #distributor .content .box .txt-box {
    width: calc(100% - 154px);
    padding-left: 1rem;
  }
  #distributor .content .box .txt-box .h3 {
    font-size: 1.2rem;
  }
}
@media (max-width: 991px) {
  #distributor .map-box {
    background: none;
    aspect-ratio: unset;
  }
  #distributor .toggle {
    display: block;
    text-transform: uppercase;
    width: 100%;
    margin: 0 auto;
    height: 45px;
    line-height: 45px;
    border-radius: 4px;
    padding: 0 45px 0 20px;
    cursor: pointer;
    position: relative;
    margin-bottom: 0;
    -webkit-transition: border-radius 0.3s;
    transition: border-radius 0.3s;
    background: #333;
    color: #fff;
    font-size: 0.9375rem;
  }
  #distributor .toggle:after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    text-align: center;
    width: 45px;
    line-height: 45px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    pointer-events: none;
    color: #fff;
    font-size: 0.8rem;
  }
  #distributor .toggle.on {
    background: #DB582E;
  }
  #distributor .toggle.on:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f106";
  }
  #distributor .tab {
    display: none;
    position: relative;
    background: #fff;
  }
  #distributor .tab li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: calc(50% - 4px);
    border-bottom: 1px solid #ddd;
  }
  #distributor .tab li:nth-child(1) {
    display: none;
  }
  #distributor .tab li:nth-child(2), #distributor .tab li:nth-child(3), #distributor .tab li:nth-child(4), #distributor .tab li:nth-child(5), #distributor .tab li:nth-child(6), #distributor .tab li:nth-child(7), #distributor .tab li:nth-child(8), #distributor .tab li:nth-child(9), #distributor .tab li:nth-child(10) {
    position: relative;
    left: unset;
    top: unset;
  }
  #distributor .tab li:nth-child(2) a, #distributor .tab li:nth-child(3) a, #distributor .tab li:nth-child(4) a, #distributor .tab li:nth-child(5) a, #distributor .tab li:nth-child(6) a, #distributor .tab li:nth-child(7) a, #distributor .tab li:nth-child(8) a, #distributor .tab li:nth-child(9) a, #distributor .tab li:nth-child(10) a {
    text-align: left;
    display: block;
    padding: 1rem 2rem;
  }
  #distributor .tab li:nth-child(2) a::before, #distributor .tab li:nth-child(2) a::after, #distributor .tab li:nth-child(3) a::before, #distributor .tab li:nth-child(3) a::after, #distributor .tab li:nth-child(4) a::before, #distributor .tab li:nth-child(4) a::after, #distributor .tab li:nth-child(5) a::before, #distributor .tab li:nth-child(5) a::after, #distributor .tab li:nth-child(6) a::before, #distributor .tab li:nth-child(6) a::after, #distributor .tab li:nth-child(7) a::before, #distributor .tab li:nth-child(7) a::after, #distributor .tab li:nth-child(8) a::before, #distributor .tab li:nth-child(8) a::after, #distributor .tab li:nth-child(9) a::before, #distributor .tab li:nth-child(9) a::after, #distributor .tab li:nth-child(10) a::before, #distributor .tab li:nth-child(10) a::after {
    display: none;
  }
  #distributor .content .box {
    width: 100%;
    margin: 0 0 1rem 0;
  }
}
@media (max-width: 767px) {
  #distributor .tab li {
    width: 100%;
  }
  #distributor .content {
    padding: 1rem 0;
  }
  #distributor .content .box .pic-box {
    display: block;
    width: 150px;
    margin: 0 auto 10px;
  }
  #distributor .content .box .txt-box {
    display: block;
    width: 100%;
    padding-left: 0;
  }
  #distributor .content .box .txt-box .more {
    width: calc(50% - 4px);
    padding-left: 50px;
  }
  #distributor .content .box .txt-box .more::before {
    left: 20px;
    top: 5px;
  }
}
#member .white-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 5% 10%;
  background: #fff;
  border-radius: 10px;
}
#member .g-h3 {
  font-weight: bold;
  text-align: center;
}
#member .txt {
  margin: 1rem 0;
}
#member .form-box {
  padding-left: 100px;
  border: 1px solid #dddddd;
}
#member #register .form-box {
  padding-left: 150px;
}
#member #register .checkbox-style {
  margin: 1rem 0;
  padding-left: 30px;
}
#member #register .checkbox-style input + span {
  border: 1px solid #DB582E;
  top: 0;
  width: 20px;
  height: 20px;
}
#member #register .checkbox-style i {
  margin: 8px 0 0 7px;
}
#member #register .checkbox-style .link {
  margin: 0;
}
#member .label-style {
  color: #888888;
}
#member .input-style {
  border: 0;
  height: 48px;
  line-height: 46px;
}
#member .input-style:focus {
  background: rgba(242, 242, 242, 0.9490196078);
}
#member .btn-wrap-center {
  margin: 2rem auto;
}
#member .btn-submit {
  width: 100%;
  border-radius: 0;
}
#member .link-txt {
  font-family: "Roboto";
  color: #666666;
}
#member .link-txt a {
  display: inline-block;
  margin: 0 0 1rem 0;
  color: #666666;
}
#member .link-txt .gap {
  width: 1px;
  height: 20px;
  background: #ccc;
  display: inline-block;
  vertical-align: middle;
  margin: 0 5%;
}
#member .link-txt .link {
  color: #DB582E;
  text-decoration: underline;
}
#member .g-table table tbody td {
  width: 15%;
}
#member .g-table table tbody td:nth-child(1) {
  width: 5%;
}
#member .g-table table tbody td:nth-child(3) {
  width: 50%;
  text-align: left;
}
#member .query-view {
  overflow: hidden;
  margin-bottom: 5%;
}
#member .query-view .ti {
  width: 100%;
  font-weight: bold;
  color: #002337;
  text-align: center;
  margin-bottom: 1rem;
}
#member .query-view > .flex-wrap {
  position: relative;
  width: 80%;
  border-radius: 3rem;
  overflow: hidden;
  margin: 0 auto 4%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#member .query-view > .flex-wrap::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  height: 100%;
  display: block;
  border-radius: 3rem;
  background: rgb(224, 89, 42);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(224, 89, 42)), color-stop(35%, rgb(224, 89, 42)), color-stop(50%, rgb(224, 118, 42)), color-stop(80%, rgb(250, 182, 136)), to(rgb(224, 89, 42)));
  background: linear-gradient(0deg, rgb(224, 89, 42) 0%, rgb(224, 89, 42) 35%, rgb(224, 118, 42) 50%, rgb(250, 182, 136) 80%, rgb(224, 89, 42) 100%);
  -webkit-animation: whalet-ani 2s linear 0.5s both;
          animation: whalet-ani 2s linear 0.5s both;
}
#member .query-view > .flex-wrap > span {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33%;
          flex: 0 0 33.33%;
  position: relative;
  text-align: center;
  padding: 12px;
  font-size: 1.25rem;
  color: #bbb;
  background: #f7f7f7;
}
#member .query-view > .flex-wrap > span:first-child {
  line-height: 56px;
}
#member .query-view > .flex-wrap > span:not(:last-child) {
  border-right: 2px solid #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#member .query-view > .flex-wrap > span:not(:last-child)::after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: 0 50%;
      -ms-transform-origin: 0 50%;
          transform-origin: 0 50%;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -3px;
  color: #ddd;
}
#member .query-view > .flex-wrap > span.pass, #member .query-view > .flex-wrap > span.current {
  color: #fff;
  -webkit-animation: process-ani 2s linear 0.5s both;
          animation: process-ani 2s linear 0.5s both;
}
#member .query-view .thead {
  width: 100%;
}
#member .query-view .thead .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0;
}
#member .query-view .thead .box .th {
  border-top: 4px solid #DB582E;
  vertical-align: middle;
  position: relative;
  padding: 1.5rem 2rem;
  font-size: 1.25rem;
  background: #002337;
  color: #DB582E;
  font-weight: bold;
}
#member .query-view .thead .box .th:nth-child(1) {
  width: calc(100% - 250px);
}
#member .query-view .thead .box .th:nth-child(2) {
  width: 250px;
}
#member .query-view .thead .box .th:before {
  content: attr(data-mtit);
  color: #fff;
  font-size: 1.125rem;
  display: inline-block;
  margin-right: 1rem;
}
#member .query-view .tbody {
  width: 100%;
  font-size: 1rem;
}
#member .query-view .box {
  font-size: 0;
  width: 100%;
  position: relative;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
#member .query-view .box .td {
  display: inline-block;
  vertical-align: middle;
  padding: 1.5rem 2rem;
  font-size: 1.25rem;
  line-height: 2rem;
  width: 50%;
  font-weight: bold;
  color: #002337;
  border-bottom: 1px solid #eeeeee;
}
#member .query-view .box .td:before {
  content: attr(data-mtit);
  font-weight: normal;
  font-style: unset;
  display: inline-block;
  font-size: 1.0625rem;
  color: #333;
  margin-right: 2rem;
}
#member .query-view .box .td:last-child {
  width: 100%;
}
#member .query-view .box .td.big {
  width: 100%;
}
#member .query-view .box .td.big table {
  width: 100%;
  font-weight: normal;
  font-size: 1rem;
  color: #555;
  line-height: 1.4;
  margin-top: 1rem;
}
#member .query-view .box .td.big table thead {
  border-bottom: 2px solid #ddd;
}
#member .query-view .box .td.big table tr:nth-child(even) {
  background: #f7f7f7;
}
#member .query-view .box .td.big table th, #member .query-view .box .td.big table td {
  padding: 1rem 20px;
  text-align: center;
}
#member .query-view .box .td.big table th:first-child, #member .query-view .box .td.big table td:first-child {
  text-align: left;
}
#member .query-view .box .td .text-top {
  display: inline-block;
  vertical-align: text-top;
}
#member .theme-btn-wrap-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  padding: 1rem 0;
}
#member .theme-btn {
  display: block;
  background: #fff;
  border-radius: 23px;
  line-height: 46px;
  height: 46px;
  padding: 0 20px;
  color: #000;
  background: #e9e9e9;
}
#member .theme-btn:hover {
  background: #e0592a;
  color: #fff;
}

.pc #member .link-txt a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  #member .query-view > .flex-wrap {
    width: 100%;
    border-radius: 1.5rem;
  }
  #member .query-view > .flex-wrap > span {
    font-size: 0.875rem;
    padding: 10px;
  }
  #member .query-view > .flex-wrap > span:first-child {
    line-height: 39px;
  }
  #member .query-view .thead .box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #member .query-view .thead .box .th {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }
  #member .query-view .thead .box .th:nth-child(1),
  #member .query-view .thead .box .th:nth-child(2) {
    width: 100%;
  }
  #member .query-view .thead .box .th:nth-child(2) {
    border: 0;
  }
  #member .query-view .tbody .box .td {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  #member .query-view .tbody .box .td::before {
    margin-right: 1rem;
  }
}
@media (max-width: 767px) {
  #member .white-box {
    padding: 2rem 1.5rem;
  }
  #member #register .checkbox-style {
    margin-bottom: 0;
  }
  #member .label-style {
    left: 12px;
    font-size: 0.875rem;
  }
  #member .form-box {
    padding-left: 80px;
  }
  #member .form-box.code .codeimg {
    bottom: 8px;
  }
  #member .link-txt a {
    margin-bottom: 10px;
  }
  #member .link-txt .gap {
    display: none;
  }
  #member .g-table table {
    width: 600px;
  }
  #member .g-table table td:nth-child(2) {
    width: 25%;
  }
  #member .g-table table td:nth-child(3) {
    width: 45%;
  }
  #member .query-view {
    margin-bottom: 2rem;
  }
  #member .query-view .ti {
    font-size: 1.25rem;
  }
  #member .query-view > .flex-wrap {
    border-radius: 0;
  }
  #member .query-view > .flex-wrap::before {
    display: none;
  }
  #member .query-view > .flex-wrap > span {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    border-radius: 1.5rem;
    position: relative;
  }
  #member .query-view > .flex-wrap > span:first-child {
    line-height: unset;
  }
  #member .query-view > .flex-wrap > span:not(:last-child) {
    margin-bottom: 5px;
  }
  #member .query-view > .flex-wrap > span:not(:last-child)::after {
    right: 10px;
    -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  #member .query-view > .flex-wrap > span.pass::before, #member .query-view > .flex-wrap > span.current::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 1.5rem;
    display: block;
    background: rgb(224, 89, 42);
    background: -webkit-gradient(linear, left bottom, left top, from(rgb(224, 89, 42)), color-stop(35%, rgb(224, 89, 42)), color-stop(50%, rgb(224, 118, 42)), color-stop(80%, rgb(250, 182, 136)), to(rgb(224, 89, 42)));
    background: linear-gradient(0deg, rgb(224, 89, 42) 0%, rgb(224, 89, 42) 35%, rgb(224, 118, 42) 50%, rgb(250, 182, 136) 80%, rgb(224, 89, 42) 100%);
    z-index: -1;
  }
  #member .query-view > .flex-wrap > span:nth-of-type(1).pass::before, #member .query-view > .flex-wrap > span:nth-of-type(1).current::before {
    -webkit-animation: whalet-ani-all 0.8s linear 0.3s both;
            animation: whalet-ani-all 0.8s linear 0.3s both;
  }
  #member .query-view > .flex-wrap > span:nth-of-type(2).pass::before, #member .query-view > .flex-wrap > span:nth-of-type(2).current::before {
    -webkit-animation: whalet-ani-all 0.8s linear 1.1s both;
            animation: whalet-ani-all 0.8s linear 1.1s both;
  }
  #member .query-view > .flex-wrap > span:nth-of-type(3).pass::before, #member .query-view > .flex-wrap > span:nth-of-type(3).current::before {
    -webkit-animation: whalet-ani-all 0.8s linear 1.9s both;
            animation: whalet-ani-all 0.8s linear 1.9s both;
  }
  #member .query-view .thead .box .th {
    padding: 1rem;
  }
  #member .query-view .thead .box .th::before {
    display: block;
    font-size: 0.8975rem;
  }
  #member .query-view .thead .box .th:nth-child(1) {
    padding-bottom: 5px;
  }
  #member .query-view .thead .box .th:nth-child(2) {
    padding-top: 5px;
  }
  #member .query-view .tbody .box .td {
    width: 100%;
    padding: 5px 1rem;
  }
  #member .query-view .tbody .box .td::before {
    font-size: 0.875rem;
    margin-right: 10px;
  }
  #member .query-view .tbody .box .td.big table {
    font-size: 0.9375rem;
    display: block;
  }
  #member .query-view .tbody .box .td.big table thead {
    display: none;
  }
  #member .query-view .tbody .box .td.big table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 1rem;
    background: #f7f7f7;
    margin-bottom: 10px;
  }
  #member .query-view .tbody .box .td.big table td {
    display: block;
    padding: 5px 10px;
    width: 100%;
    text-align: left;
  }
  #member .query-view .tbody .box .td.big table td::before {
    content: attr(data-mtit);
    display: inline-block;
    width: 65px;
    margin-right: 10px;
    color: #000;
  }
  #member .btn-wrap-center {
    margin-top: 10px;
  }
}
#calibration .page-wrap {
  padding-bottom: 0;
}
#calibration .g-h3.text-center {
  text-transform: unset;
  font-weight: normal;
}
#calibration .top-wrap {
  position: relative;
  z-index: 1;
}
#calibration .top-wrap section {
  padding: 5% 0;
}
#calibration .top-wrap section:nth-of-type(even) {
  background: #eceff4;
}
#calibration .top-wrap section:last-child {
  padding: 0;
}
#calibration .top-wrap section:last-child .g-h3,
#calibration .top-wrap section:last-child .theme-wrap {
  display: none;
}
#calibration .bot-wrap {
  position: relative;
  z-index: 0;
  padding: 4% 2rem 6%;
  background: url(../images/calibration_form_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
#calibration .white-box {
  padding: 3% 5%;
  background: #fff;
  border-radius: 10px;
}
#calibration .white-box.no-pt {
  padding-top: 0;
}
#calibration .white-box.no-pt .contact-form {
  border-top: 1px solid #002337;
  padding-top: 1rem;
}
#calibration .white-box .g-h3 {
  text-transform: uppercase;
}
#calibration .white-box .g-h3 ~ .contact-form {
  border-top: 1px solid #002337;
  padding-top: 1rem;
}

@media (max-width: 767px) {
  #calibration .top-wrap section {
    padding: 2rem 0;
  }
  #calibration .bot-wrap {
    padding: 2rem 1rem;
  }
  #calibration .white-box {
    padding: 2rem 1rem 0;
  }
}
#inquiry hr {
  border-top: 3px solid #002337;
  margin-bottom: 5%;
}
#inquiry .inquiry-style {
  margin-bottom: 5%;
}
#inquiry .contact-form .form-box {
  padding-left: 120px;
}
#inquiry .contact-form .inquiry-style .input-style {
  text-align: center;
  border: 1px solid #ccc;
}

@media (max-width: 991px) {
  #inquiry hr,
  #inquiry .inquiry-style {
    margin-bottom: 4rem;
  }
}
@media (max-width: 767px) {
  #inquiry hr {
    display: none;
  }
  #inquiry .contact-form .form-box {
    padding-left: 95px;
  }
  #inquiry .contact-form .label-style {
    width: 95px;
  }
}
@media (max-width: 767px) {
  #query .white-box .form-box {
    padding-left: 0;
  }
  #query .white-box .form-box .label-style {
    position: relative;
    width: 100%;
  }
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto !important;
}

#overview .hr {
  border-bottom: 1px solid #ddd;
  margin-bottom: 4%;
  padding-bottom: 4%;
}
#overview > div:last-child {
  border: 0;
}

.features__title {
  text-align: center;
}
.features__toggle {
  display: none;
}
.features__wrap {
  padding: 1.5rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background: rgb(233, 236, 241);
  border-radius: 20px;
}
.features__list {
  position: relative;
  z-index: 10;
  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-flex: 0;
      -ms-flex: 0 0 320px;
          flex: 0 0 320px;
  width: 320px;
  margin: 0;
  padding: 0 10px 0 5px;
  list-style: none;
}
.features__list .swiper-slide {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  padding: 0.5rem 40px 0.5rem 0.75rem;
  border-top: 1px solid #ddd;
  position: relative;
  font-size: 1.125rem;
  text-align: left;
  font-weight: normal;
  width: 100%;
  width: 330px;
  height: 100%;
  min-height: 80px;
  border: none;
  border-radius: 10px 0 0 10px;
  color: #002337;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background: transparent;
  -webkit-transition: none;
  transition: none;
}
.features__list .swiper-slide::after {
  content: "";
  display: none;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -14px;
  width: 28px;
  height: 28px;
  border-radius: 50px;
  background-color: #DB582E;
  background-repeat: no-repeat;
  background-size: 13px auto;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%23fff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m8.25 4.5 7.5 7.5-7.5 7.5' /%3E%3C/svg%3E%0A");
}
.features__list .swiper-slide:first-child {
  border: 0;
}
.features__list .swiper-slide img {
  width: 55px;
  height: 55px;
}
.features__list .swiper-slide.swiper-slide-thumb-active {
  border: 0;
  background: #fff;
}
.features__list .swiper-slide.swiper-slide-thumb-active::before {
  content: "";
  position: absolute;
  border-radius: 10px 0 0 10px;
  left: 0;
  top: 0;
  right: 7px;
  bottom: 0;
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
  z-index: -1;
}
.features__list .swiper-slide.swiper-slide-thumb-active::after {
  display: block;
}
.features__list .swiper-slide:not(.swiper-slide-thumb-active):hover {
  background: rgba(255, 255, 255, 0.5);
}
.features__list .swiper-slide:not(.swiper-slide-thumb-active):hover::after {
  display: block;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.group-swiper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 320px);
          flex: 0 0 calc(100% - 320px);
  width: calc(100% - 320px);
  background: #fff;
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
  border-radius: 3px 10px 10px 3px;
}
.group-swiper .swiper-slide {
  padding: 2rem 3rem;
  height: 1px;
}
.group-swiper .swiper-slide-active {
  height: auto;
}

@media (max-width: 1366px) {
  .features__list .swiper-slide {
    min-height: 60px;
    font-size: 1rem;
  }
  .features__list .swiper-slide img {
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 1200px) {
  .features__list {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .features__wrap .swiper-button-next,
  .features__wrap .swiper-button-prev {
    display: none;
  }
}
@media (max-width: 1199px) {
  .features__wrap {
    display: block;
    padding: 0;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
  }
  .features__wrap .swiper-button-next,
  .features__wrap .swiper-button-prev {
    top: 35px;
    z-index: 21;
    background: #e0592a;
    width: 35px;
    height: 35px;
    border-radius: 50%;
  }
  .features__wrap .swiper-button-next::after,
  .features__wrap .swiper-button-prev::after {
    font-size: 0.9375rem;
    color: #fff;
  }
  .features__list {
    padding: 0;
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    z-index: 20;
  }
  .features__list .swiper-slide {
    width: 100%;
    padding: 0.5rem 3.5rem;
  }
  .features__list .swiper-slide.swiper-slide-thumb-active {
    background: rgb(233, 236, 241);
  }
  .features__list .swiper-slide {
    border-radius: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .features__list .swiper-slide.swiper-slide-thumb-active {
    background: rgb(233, 236, 241);
    border-radius: 0;
  }
  .features__list .swiper-slide.swiper-slide-thumb-active::before {
    display: none;
    right: 0;
    border-radius: 0.5rem;
  }
  .features__list .swiper-slide.swiper-slide-thumb-active::after {
    right: 10px;
    display: none;
  }
  .group-swiper {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    border-radius: 0 0 10px 10px;
  }
}