@charset "UTF-8";

/*------------------------------------*\
    $CONTENTS
\*------------------------------------*/
/**
 * ALL
 * HEADER
 * BANNER
 * FOOTER
 * MAIN
 * ABOUT
 * NEWS
 * PRODUCTS
 * BRANDS
 * CONTACT
 * RECRUITMENT
 * INQUIRY
 **/
/*------------------------------------*\
    ALL
\*------------------------------------*/
html,
body {
  overflow-x: hidden;
  min-height: 1000px;
}

body {
  color: #606060;
  font-family: '微軟正黑體', 'Microsoft JhengHei', sans-serif;
}

a {
  display: inline-block;
  color: #606060;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

a:hover,
a:focus {
  color: #bf0f23;
  outline: 0;
  text-decoration: none;
}

span {
  display: inline-block;
}

img {
  max-width: 100%;
  width: auto\9;
  /* ie8 */
}

.container {
  max-width: 100%;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
    padding: 0;
  }
}

#scrollUp {
  right: 5%;
  bottom: 15%;
}

/*------------------------------------*\
    HEADER
\*------------------------------------*/
header {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  position: relative;
  height: 50px;
}

header * {
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

header>.container {
  max-width: 100%;
}

@media (min-width: 992px) {
  header {
    height: auto;
  }
}

@media (min-width: 1440px) {
  header>.container {
    max-width: 1400px;
    padding: 0;
  }
}

.navbar {
  padding: 0;
}

.navbar-brand {
  margin-right: 0;
}

.navbar-brand img {
  width: 180px;
}

@media (min-width: 992px) {
  .navbar-brand img {
    width: 250px;
  }
}

@media (min-width: 1440px) {
  .navbar-brand img {
    width: auto;
  }
}

@media (min-width: 1800px) {
  .navbar-brand {
    position: fixed;
    left: 3rem;
  }
}

.navbar-toggler {
  border: none;
  width: 50px;
  height: 50px;
  padding: 5px;
  margin: 0;
  position: relative;
  top: 0;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  outline: none;
}

.navbar-toggler .icon-bar {
  display: block;
  background: #000000;
  text-align: center;
  width: 30px;
  height: 2px;
  position: absolute;
  right: 10px;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.navbar-toggler .icon-bar:nth-of-type(1) {
  top: 15px;
}

.navbar-toggler .icon-bar:nth-of-type(2) {
  top: 24px;
  opacity: 1;
}

.navbar-toggler .icon-bar:nth-of-type(3) {
  top: 33px;
}

.navbar-toggler.open .icon-bar {
  right: 6px;
}

.navbar-toggler.open .icon-bar:nth-of-type(1) {
  -webkit-transform-origin: 10% 10%;
  -ms-transform-origin: 10% 10%;
  transform-origin: 10% 10%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navbar-toggler.open .icon-bar:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.open .icon-bar:nth-of-type(3) {
  top: 33px;
  -webkit-transform-origin: 10% 90%;
  -ms-transform-origin: 10% 90%;
  transform-origin: 10% 90%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.navbar-collapse {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.navbar-nav .nav-link {
  color: #000000;
  font-size: 1.125rem;
  letter-spacing: 0.125rem;
  padding: 1rem 0 !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: #bf0f23;
}

@media (min-width: 992px) {
  .navbar-nav .nav-link {
    padding: 3rem 0 !important;
    margin: 0 0.5rem;
    position: relative;
  }

  .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 100%;
    bottom: 0;
    background: #bf0f23;
    height: 3px;
    -webkit-transition-property: right;
    -o-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus,
  .navbar-nav .nav-link.active {
    color: #000000;
  }

  .navbar-nav .nav-link:hover::before,
  .navbar-nav .nav-link:focus::before,
  .navbar-nav .nav-link.active::before {
    right: 0;
  }
}

@media (min-width: 1200px) {
  .navbar-nav .nav-link {
    margin: 0 1rem;
  }
}

@media (min-width: 1440px) {
  .navbar-nav .nav-link {
    margin: 0 1.25rem;
  }

  .navbar-nav .nav-item.lang .nav-link {
    position: relative;
  }

  .navbar-nav .nav-item.lang .nav-link::before {
    content: '';
    width: 1px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -1rem;
  }
}

@media (min-width: 1800px) {
  .navbar-nav .nav-item.nav-contact {
    position: fixed;
    right: 0;
  }

  .navbar-nav .nav-item.nav-contact .nav-link {
    background: url(../images/contact-arrow.svg) 92% center no-repeat #bf0f23;
    color: #ffffff;
    padding: 0.75rem 3rem 0.75rem 2.5rem !important;
    margin: 2rem 0;
  }

  .navbar-nav .nav-item.nav-contact .nav-link:hover,
  .navbar-nav .nav-item.nav-contact .nav-link:focus {
    background: url(../images/contact-arrow.svg) 92% center no-repeat #e30015;
  }
}

.navbar-nav .dropdown-menu {
  background-color: transparent;
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-bottom: 6px solid #bf0f23;
  margin-top: 0;
  max-width: 250px;
}

.navbar-nav .dropdown-menu li:last-child .dropdown-item {
  border-bottom: none;
}

.navbar-nav .dropdown-item {
  background-color: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  line-height: 1.5rem;
  letter-spacing: normal;
  text-align: left;
  padding: 0.5rem 0.15rem 0.5rem 0.15rem;
  white-space: normal;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus,
.navbar-nav .dropdown-item.active {
  color: #bf0f23;
  border-bottom: 1px solid #bf0f23;
}

.navbar-nav .dropdown-item svg {
  font-size: 0.5rem;
  margin-right: 0.5rem;
}

.navbar-nav .dropdown.search {
  margin: 1rem 0;
}

.navbar-nav .dropdown.search .dropdown-toggle {
  display: none;
}

.navbar-nav .dropdown.search .dropdown-menu {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #bf0f23;
  background-color: transparent;
  display: block;
  min-width: 230px;
  height: 40px;
  left: auto;
  right: 0;
  padding: 0 0.5rem;
}

.navbar-nav .dropdown.search form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-nav .dropdown.search form .form-control {
  width: 150px;
  height: 20px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #a1a1a1;
}

.navbar-nav .dropdown.search form svg {
  color: #bf0f23;
}

.navbar-nav .dropdown.search form .btn {
  background-color: transparent;
  min-width: auto;
  line-height: 40px;
  height: 40px;
}

.navbar-nav .dropdown-toggle.dropdown-item {
  position: relative;
}

.navbar-nav .dropdown-toggle.dropdown-item::after {
  content: '\f078';
  font-family: "Font Awesome 5 Free";
  font-size: 0.75rem;
  font-weight: 900;
  border: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0.5rem;
}

.navbar-nav .dropdown-toggle.active-dropdown~.dropdown-menu {
  border: 1px solid #bf0f23;
  padding: 0;
  min-width: 200px;
}

.navbar-nav .dropdown-toggle.active-dropdown~.dropdown-menu .dropdown-item {
  border-bottom: 1px solid #bf0f23;
  line-height: 1.5rem;
  width: auto;
  margin: 0;
  padding: 0.75rem 0.75rem 0.75rem 1.75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.navbar-nav .dropdown-toggle.active-dropdown~.dropdown-menu .dropdown-item::after {
  content: '●';
  font-size: 0.75rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0.5rem;
}

.navbar-nav .dropdown-toggle.active-dropdown~.dropdown-menu .dropdown-item:hover,
.navbar-nav .dropdown-toggle.active-dropdown~.dropdown-menu .dropdown-item:focus,
.navbar-nav .dropdown-toggle.active-dropdown~.dropdown-menu .dropdown-item.active {
  background-color: #bf0f23;
  color: #ffffff;
}

.navbar-nav .dropdown-toggle.active-dropdown~.dropdown-menu .dropdown-item svg {
  display: none;
}

@media (min-width: 992px) {
  .navbar-nav .dropdown-toggle::after {
    display: none;
  }

  .navbar-nav .dropdown-menu {
    border: none;
    border-bottom: 6px solid #bf0f23;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
    background-color: #ffffff;
    min-width: 250px;
    padding: 2.5rem 0;
    left: -50%;
  }

  .navbar-nav .dropdown-item {
    width: 200px;
    margin: 0 auto 0.5rem;
  }

  .navbar-nav .dropdown.lang .dropdown-toggle::after {
    display: inline-block;
  }

  .navbar-nav .dropdown.lang .dropdown-menu {
    min-width: 10rem;
    left: auto;
    right: 0;
    padding: 1rem 0 0;
  }

  .navbar-nav .dropdown.lang .dropdown-item {
    width: 100px;
  }

  .navbar-nav .dropdown.search {
    margin: 0;
  }

  .navbar-nav .dropdown.search .dropdown-toggle {
    display: inline-block;
  }

  .navbar-nav .dropdown.search .dropdown-menu {
    background-color: #ffffff;
    display: none;
  }

  .navbar-nav .dropdown.search .dropdown-menu.show {
    display: block;
  }

  .navbar-nav .dropdown-toggle.dropdown-item {
    position: relative;
  }

  .navbar-nav .dropdown-toggle.dropdown-item::after {
    display: inline-block;
    right: 0;
  }

  .navbar-nav .dropdown-toggle.dropdown-item~.dropdown-menu {
    top: auto;
    left: 250px !important;
  }
}

@media (min-width: 992px) {
  .header-active .nav-link {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}

@media (min-width: 1800px) {
  .header-active .nav-item.nav-contact .nav-link {
    margin: 1.25rem 0;
  }
}

/*------------------------------------*\
    BANNER
\*------------------------------------*/
.banner>.container {
  position: relative;
  max-width: 180%;
  width: 180%;
  margin: 0 -40%;
  padding: 0;
  text-align: center;
}

@media (min-width: 576px) {
  .banner>.container {
    max-width: 150%;
    width: 150%;
    margin: 0 -25%;
  }
}

@media (min-width: 1440px) {
  .banner>.container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
}

.banner h4 {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 50%;
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: 0.2rem;
}

.banner h4 span {
  display: block;
  font-size: 1.5rem;
  font-family: 'Roboto', sans-serif;
  padding-bottom: 0.5rem;
}

@media (min-width: 576px) {
  .banner h4 {
    top: 45%;
  }

  .banner h4 span {
    font-size: 2.75rem;
    padding-bottom: 0.75rem;
  }
}

@media (min-width: 992px) {
  .banner h4 {
    top: 55%;
  }
}

/*------------------------------------*\
    FOOTER
\*------------------------------------*/
footer {
  background-color: #4a4a4a;
  padding: 3.5rem 0;
  color: #ffffff;
}

footer a {
  color: #ffffff;
}

footer a:hover,
footer a:focus {
  color: #bf0f23;
}

footer>.container {
  max-width: 100%;
}

@media (min-width: 992px) {
  footer .row {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-start;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 1440px) {
  footer>.container {
    max-width: 1366px;
  }
}

footer .footer-logo {
  text-align: center;
}

footer .footer-info {
  font-size: 13px;
  text-align: center;
  padding: 1rem 0;
}

footer .footer-info .nav {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

footer .footer-info .nav li {
  letter-spacing: 0.05rem;
  padding-right: 1rem;
  padding-bottom: 0.5rem;
}

footer .footer-info .nav li:first-child {
  width: 100%;
}

footer .footer-info .nav li.copy {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: normal;
  padding-left: 0;
}

footer .footer-info .nav li.copy a {
  color: rgba(255, 255, 255, 0.5);
}

footer .footer-info .nav li.copy a:hover,
footer .footer-info .nav li.copy a:focus {
  color: #bf0f23;
}

footer .footer-nav {
  position: relative;
  padding-bottom: 0.75rem;
}

footer .footer-nav::after {
  content: '';
  width: auto;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.25);
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 0;
}

footer .footer-nav a {
  font-size: 0.9375rem;
  letter-spacing: 0.05rem;
  padding-left: 0.5rem;
}

footer .footer-nav .nav {
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

footer .footer-nav .nav li {
  padding-bottom: 0.5rem;
}

@media (min-width: 576px) {
  footer .footer-nav .nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

@media (min-width: 992px) {
  footer .footer-info {
    text-align: left;
    padding: 0;
  }

  footer .footer-info .nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  footer .footer-info .nav li {
    padding-bottom: 0;
  }

  footer .footer-nav {
    padding-left: 0;
  }

  footer .footer-nav .nav {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

@media (min-width: 1200px) {
  footer .footer-logo {
    text-align: left;
  }
}

@media (min-width: 1440px) {
  footer .footer-logo {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 20%;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding-right: 0;
    position: relative;
    bottom: 0;
  }

  footer .footer-info {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 35%;
    -ms-flex: 0 0 35%;
    flex: 0 0 35%;
    max-width: 35%;
    padding-left: 0;
    padding-right: 0;
  }

  footer .footer-info .nav li {
    padding-left: 0.5rem;
    padding-right: 0;
  }

  footer .footer-info .nav li:first-child {
    width: auto;
    padding-left: 0;
  }

  footer .footer-nav {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 45%;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    max-width: 45%;
    padding-right: 0;
  }

  footer .footer-nav::after {
    right: 0;
  }

  footer .footer-nav a {
    padding-left: 2rem;
  }
}

/*------------------------------------*\
    MAIN
\*------------------------------------*/
main {
  background: url(../images/bg.jpg) center top repeat;
  padding: 4.5rem 0;
}

/* PAGE-HEADER */
.page-header {
  margin-bottom: 5rem;
}

.page-header h1 {
  color: #000000;
  font-size: 1.125rem;
  text-align: center;
  letter-spacing: 0.3rem;
}

.page-header h1 span {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  padding-bottom: 0.75rem;
}

@media (min-width: 576px) {
  .page-header h1 span {
    font-size: 2.215rem;
  }
}

/* PAGINATION */
.pagination-wrap {
  margin-bottom: 5rem;
}

.pagination .page-item {
  padding: 0 0.5rem;
}

.pagination .page-item:first-child .page-link {
  background: url(../images/page-prev.svg) no-repeat;
}

.pagination .page-item:first-child .page-link:hover,
.pagination .page-item:first-child .page-link:focus {
  background: url(../images/page-prev-r.svg) no-repeat;
}

.pagination .page-item:last-child .page-link {
  background: url(../images/page-next.svg) no-repeat;
}

.pagination .page-item:last-child .page-link:hover,
.pagination .page-item:last-child .page-link:focus {
  background: url(../images/page-next-r.svg) no-repeat;
}

.pagination .page-link {
  background-color: transparent;
  border-radius: 0;
  border: none;
  color: #656565;
  width: 30px;
  height: 30px;
  line-height: 30px;
  padding: 0;
  text-align: center;
}

.pagination .page-link:hover,
.pagination .page-link:focus,
.pagination .page-link.active {
  color: #ffffff;
  background-color: #bf0f23;
}

@media (min-width: 576px) {
  .pagination .page {
    padding: 3rem 0;
  }

  .pagination .page-item {
    padding: 0 1rem;
  }
}

/* MENU */
.menu {
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  border-bottom: 3px solid rgba(0, 0, 0, 0.5);
  position: relative;
  padding: 1rem 0 0;
}

.menu .dropdown {
  margin-bottom: 1rem;
}

.menu .dropdown-toggle {
  border: none;
  background-color: #ffffff;
  color: #606060;
  text-align: left;
  white-space: normal;
  letter-spacing: normal;
  display: block;
  padding: 0.75rem 1.25rem 0.75rem 0.75rem;
  position: relative;
}

.menu .dropdown-toggle::before {
  content: '';
  width: 1px;
  height: 20px;
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}

.menu .dropdown-toggle::after {
  content: '\f078';
  font-family: "Font Awesome 5 Free";
  font-size: 0.75rem;
  font-weight: 900;
  border: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0.25rem;
}

.menu .dropdown-toggle svg {
  display: none;
}

.menu .dropdown-toggle span {
  display: none;
}

.menu .dropdown-toggle:hover,
.menu .dropdown-toggle:focus,
.menu .dropdown-toggle.active {
  background-color: #bf0f23;
  color: #ffffff;
}

.menu .dropdown-toggle:hover span,
.menu .dropdown-toggle:focus span,
.menu .dropdown-toggle.active span {
  display: block;
}

.menu .dropdown-toggle:hover img,
.menu .dropdown-toggle:focus img,
.menu .dropdown-toggle.active img {
  display: none;
}

.menu .dropdown-menu {
  background-color: #ffffff;
  border-radius: 0;
  border: 1px solid rgba(191, 15, 35, 0.25);
  top: 100% !important;
  right: 0;
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  margin-top: 0;
  padding: 0;
  min-width: auto;
  z-index: 1000;
}

.menu .dropdown-item {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(191, 15, 35, 0.25);
  color: #606060;
  font-size: 0.9375rem;
  white-space: normal;
  padding: 0.75rem 0.75rem 0.75rem 1.75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.menu .dropdown-item::after {
  content: '●';
  font-size: 0.75rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0.5rem;
}

.menu .dropdown-item:last-child {
  border-bottom: none;
}

.menu .dropdown-item svg {
  display: none;
  font-size: 0.5rem;
  margin-right: 0.5rem;
}

.menu .dropdown-item:hover,
.menu .dropdown-item:focus,
.menu .dropdown-item.active {
  background-color: #bf0f23;
  color: #ffffff;
}

.menu .swiper-container {
  overflow: visible;
  z-index: 1000;
}

.menu .swiper-button-prev,
.menu .swiper-button-next {
  width: 15px;
  height: 15px;
  margin-top: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1000;
}

.menu .swiper-button-prev {
  background: url(../images/prev.svg) no-repeat;
  left: -15px;
}

.menu .swiper-button-next {
  background: url(../images/next.svg) no-repeat;
  right: -15px;
}

/* SWIPE */
.swiper-pagination-bullet {
  border-radius: 0;
  background-color: #a5a5a5;
  width: 15px;
  height: 5px;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #bf0f23;
}

/* BUTTON　*/
.btn {
  border: none;
  border-radius: 0;
  background-color: #bf0f23;
  color: #ffffff;
  height: 45px;
  line-height: 45px;
  letter-spacing: 0.25rem;
  min-width: 200px;
  padding: 0;
}

.btn-wrap {
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  text-align: center;
  padding-top: 2rem;
  margin: 3rem 0 2rem;
}

.btn:hover,
.btn:focus {
  background-color: #e30015;
  color: #ffffff;
}

/* FORM */
.form-row {
  margin-right: -30px;
  margin-left: -30px;
  margin-bottom: 1rem;
}

.form-row>.col,
.form-row>[class*=col-] {
  padding-right: 30px;
  padding-left: 30px;
}

.form .col-form-label span {
  color: #bf0f23;
}

.form-control {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background-color: transparent;
}

.form-control:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(191, 15, 35, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(191, 15, 35, 0.25);
}

.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus,
.form-control:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px rgba(191, 15, 35, 0.2) inset;
  box-shadow: 0 0 0px 1000px rgba(191, 15, 35, 0.2) inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  -o-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #000000;
}

.form .code {
  padding-top: 1rem;
}

.form-btn {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (min-width: 576px) {
  .form .code {
    padding-top: 0;
    padding-left: 1rem;
  }
}

@media (min-width: 992px) {
  .form-btn {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

/* TABLE */
.table th,
.table td {
  width: 30%;
  color: #9f9f9f;
  text-align: center;
  vertical-align: middle;
}

.table thead th {
  background-color: #e3e3e3;
  font-size: 0.9375rem;
  padding: 0.5rem;
}

.table thead th:nth-child(2) {
  width: 40%;
}

.table tbody td {
  border-bottom: 1px solid #d9d9d9;
  padding: 1.5rem 0.5rem;
}

.table tbody td.name {
  color: #000000;
  letter-spacing: 0.1rem;
}

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

  .table tbody tr {
    display: block;
    width: 100%;
    border: 1px solid #d9d9d9;
    margin-bottom: 2rem;
  }

  .table tbody td {
    border-top: 1px solid #d9d9d9;
    border-bottom: none;
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    padding-left: 7.5rem;
    position: relative;
  }

  .table tbody td:first-child {
    border-top: none;
  }

  .table tbody td::before {
    content: attr(data-content);
    background-color: #e3e3e3;
    color: #9f9f9f;
    white-space: nowrap;
    width: 105px;
    padding: 0.5rem 0.75rem;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
}

/*------------------------------------*\
    ABOUT
\*------------------------------------*/
.about {
  padding-bottom: 0;
}

.about .swiper-slide {
  cursor: pointer;
}

.about .swiper-slide+.swiper-slide {
  position: relative;
}

.about .swiper-slide+.swiper-slide::before {
  content: '';
  width: 1px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}

.about .swiper-slide-thumb-active>span {
  background-color: #bf0f23;
}

.about .swiper-button-prev,
.about .swiper-button-next {
  width: 15px;
  height: 15px;
  top: auto;
  bottom: 4rem;
  margin-top: 0;
}

.about .swiper-button-prev {
  background: url(../images/contact-prev.svg) no-repeat;
  left: 0;
}

.about .swiper-button-next {
  background: url(../images/contact-next.svg) no-repeat;
  right: 0;
}

@media (min-width: 1280px) {

  .about .swiper-button-prev,
  .about .swiper-button-next {
    bottom: 2.5rem;
  }

  .about .swiper-button-prev {
    left: -30px;
  }

  .about .swiper-button-next {
    right: -30px;
  }
}

.about-view {
  padding-bottom: 5rem;
  position: relative;
}

.about-txt {
  padding-bottom: 2rem;
}

.about-txt h2 {
  color: #bf0f23;
  font-size: 1.375rem;
  font-weight: bold;
  letter-spacing: 0.125rem;
  margin-bottom: 3rem;
}

.about-txt h2 b {
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
}

.about-txt h2 span {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.2rem;
  padding: 1rem 0 0.5rem;
}

.about-txt p {
  font-size: 0.9375rem;
  letter-spacing: 0.05rem;
  line-height: 1.8rem;
}

.about-txt .nav {
  margin-top: 2.5rem;
}

.about-txt .nav li {
  text-align: center;
  width: 33.33%;
  padding: 0 0.25rem;
}

.about-txt .nav p {
  color: #a2a2a2;
  margin-top: 0.5rem;
}

@media (min-width: 576px) {
  .about-txt .nav li {
    width: auto;
    padding: 0 2rem;
  }
}

@media (min-width: 992px) {
  .about-txt {
    padding-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .about-txt {
    margin-top: 1rem;
    position: relative;
  }

  .about-txt::before {
    content: '';
    width: 30px;
    height: 2px;
    background-color: #bf0f23;
    position: absolute;
    top: 15px;
    left: -50px;
  }
}

@media (min-width: 1440px) {
  .about-view {
    padding-bottom: 10rem;
  }

  .about-pic {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding-right: 0;
  }

  .about #about:target .about-pic {
    top: 100px;
  }
}

@media (min-width: 1880px) {
  .about-view {
    margin-bottom: 20rem;
  }

  .about-pic {
    right: -375px;
    max-width: 1045px;
  }

  .about-txt {
    padding-right: 7rem;
  }
}

.about-history {
  padding-bottom: 4.5rem;
}

.about-history h2 {
  display: inline-block;
  color: #000000;
  font-size: 1.375rem;
  font-weight: bold;
  letter-spacing: 0.35rem;
  margin-bottom: 3rem;
  text-align: right;
}

.about-history h2 span {
  display: block;
  color: #000000;
  font-family: 'Roboto', sans-serif;
  font-size: 3rem;
  margin-bottom: 0.25rem;
}

.about-history-list {
  width: 100%;
}

.about-history-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1.5rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 55px;
  padding-bottom: 0.5rem;
}

.about-history-year {
  color: #000000;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  padding-left: 0;
}

.about-history-txt {
  font-size: 0.9375rem;
  padding-left: 0;
  padding-right: 0;
  vertical-align: middle;
}

@media (min-width: 992px) {
  .about-history h2 span {
    font-size: 4rem;
  }

  .about-history-txt {
    padding-left: 15px;
  }
}

@media (min-width: 1440px) {
  .about-history {
    position: relative;
  }
}

.about-core {
  padding-bottom: 3rem;
}

.about-core-item {
  margin-bottom: 2rem;
}

.about-core-pic img {
  border-radius: 5px;
}

.about-core-txt {
  text-align: center;
  padding-top: 1.5rem;
  letter-spacing: 0.1rem;
}

.about-core-txt h3 {
  color: #000000;
  font-size: 1.125rem;
  font-weight: bold;
}

.about-core-txt p {
  color: #808180;
  font-size: 0.9375rem;
}

.about-office-content {
  background-color: #ffffff;
  position: relative;
  margin: 5rem 0;
  padding: 2rem 1rem;
}

.about-office-title {
  display: block;
  -webkit-text-stroke: 0.5px #bf0f23;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 1.8rem;
  color: #bf0f23\0;
  opacity: 0.5\0;
  margin-bottom: 0.25rem;
  text-align: center;
  position: absolute;
  left: 0;
  top: -25px;
  padding: 0;
}

.about-office-subtitle {
  position: relative;
  margin-bottom: 2rem;
}

.about-office-subtitle svg {
  position: absolute;
  left: -1.5rem;
}

.about-office-subtitle h2 {
  color: #bf0f23;
  font-size: 1.125rem;
}

.about-office-txt {
  padding-bottom: 2rem;
}

.about-office-txt h3 {
  border-bottom: 1px solid #c5c5c5;
  color: #595757;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.8rem;
  letter-spacing: 0.1rem;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.about-office-txt h3 span {
  color: #231815;
  font-size: 1.125rem;
  padding-right: 0.25rem;
}

.about-office-txt p {
  font-size: 0.875rem;
  letter-spacing: 0.1rem;
  margin-bottom: 0.5rem;
}

.about-office-pic {
  text-align: center;
}

.about-office-dealer {
  border-top: 1px solid #bcbcbc;
  margin-top: 3rem;
  padding-top: 3rem;
}

.about-office-dealer .about-office-txt h3 {
  display: block;
}

.about-office-dealer .about-office-txt h3 span {
  display: block;
}

.about-office-dealer .about-office-txt h3 p {
  font-weight: normal;
  margin-bottom: 0;
}

@media (min-width: 576px) {
  .about-office-content {
    padding: 3rem;
  }
}

@media (min-width: 768px) {
  .about-office-title {
    font-size: 4rem;
    top: -50px;
  }
}

@media (min-width: 992px) {
  .about-office-pic {
    text-align: right;
  }
}

@media (min-width: 1200px) {
  .about-office-content {
    padding: 8rem 10rem;
  }
}

/*------------------------------------*\
    NEWS
\*------------------------------------*/
.news-item {
  margin-bottom: 3rem;
}

.news-pic a {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.news-pic a img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.news-pic a:hover img,
.news-pic a:focus img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.news-txt {
  -webkit-box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  padding: 2rem 1rem 0;
  position: relative;
  z-index: 2;
  margin-top: -6px;
}

.news-txt span {
  color: #bf0f23;
  font-size: 0.8125rem;
  letter-spacing: 0.125rem;
  margin-bottom: 0.5rem;
}

.news-txt h3 a {
  color: #000000;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.125rem;
  height: 20px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 1.5rem;
}

.news-txt h3 a:hover,
.news-txt h3 a:focus {
  color: #bf0f23;
}

.news-txt p {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  font-size: 0.875rem;
  line-height: 1.5rem;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
}

.news-btn {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.news-btn a {
  display: block;
  background: url(../images/view-b.svg) center center no-repeat #ffffff;
  height: 60px;
}

.news-btn a:hover,
.news-btn a:focus {
  background: url(../images/view.svg) center center no-repeat #bf0f23;
}

@media (min-width: 992px) {
  .news-item {
    margin-bottom: 7rem;
  }

  .news-txt {
    padding: 2rem 3rem 0;
  }
}

.news-view {
  background-color: #ffffff;
  padding: 2rem 1rem;
}

.news-view-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.news-view-title h2 {
  color: #000000;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
}

.news-view-title span {
  color: #bf0f23;
  letter-spacing: 0.125rem;
}

.news-view-content p {
  font-size: 0.9375rem;
  line-height: 1.75rem;
  letter-spacing: 0.1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 576px) {
  .news-view {
    padding: 2rem;
  }
}

@media (min-width: 768px) {
  .news-view {
    padding: 3rem;
  }
}

@media (min-width: 992px) {
  .news-view-title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .news-view-title h2 {
    margin-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .news-view {
    max-width: 1080px;
    margin: 0 auto;
    padding: 6.5rem 8.5rem;
  }
}

.news .btn-wrap {
  border-top: none;
}

/*------------------------------------*\
    PRODUCTS
\*------------------------------------*/
.products {
  background: url(../images/products-bg.jpg) center center repeat;
}

.products>.container {
  max-width: 100%;
  padding: 0 15px;
  overflow: hidden;
}

@media (min-width: 1280px) {
  .products>.container {
    max-width: 1200px;
  }
}

.products .page-header {
  margin-bottom: 3rem;
}

.products-list {
  min-height: 800px;
  padding: 3rem 0;
}

.products-item {
  margin-bottom: 3rem;
}

.products-pic a {
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.products-pic a::before {
  content: '';
  width: auto;
  height: 55px;
  background: url(../images/view.svg) center center no-repeat #bf0f23;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  opacity: 0;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.products-pic a:hover::before,
.products-pic a:focus::before {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.products-txt {
  text-align: center;
  padding: 0.75rem 0;
}

.products-txt h3 {
  margin-bottom: 0.25rem;
}

.products-txt h3 a {
  color: #000000;
  font-size: 1.125rem;
}

.products-txt h3 a:hover,
.products-txt h3 a:focus {
  color: #bf0f23;
}

.products-txt p {
  color: #818280;
  font-size: 0.9375rem;
}

@media (min-width: 1200px) {
  .products-list {
    padding: 7rem 3rem 0;
    margin-right: -20px;
    margin-left: -20px;
  }

  .products-item {
    padding-right: 20px;
    padding-left: 20px;
    margin-bottom: 4rem;
  }
}

.products-view {
  padding: 3rem 0 0;
}

.products-view .gallery-top {
  margin-bottom: 0;
  text-align: center;
}

.products-view .gallery-top .swiper-slide {
  border: 1px solid rgba(0, 0, 0, 0.125);
  cursor: pointer;
}

.products-view .gallery-thumbs {
  display: none;
}

.products-view .gallery-thumbs .swiper-slide {
  cursor: pointer;
}

.products-view .gallery-thumbs .swiper-slide img {
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.products-view .swiper-pagination {
  position: relative;
  right: 0;
  text-align: center;
  margin: 1rem 0;
}

.products-view .swiper-pagination-bullet {
  margin-right: 0.5rem;
}

.products-view-txt {
  padding-top: 2rem;
}

.products-view-txt h2 {
  color: #000000;
  font-size: 1.625rem;
  font-weight: bold;
  letter-spacing: 0.075rem;
  line-height: 2.75rem;
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.products-view-txt h2 span {
  display: block;
  font-size: 1rem;
  color: #606060;
  letter-spacing: 0.175rem;
}

.products-view-txt h2::before {
  content: '';
  width: 50px;
  height: 2px;
  background-color: #bf0f23;
  position: absolute;
  bottom: 0;
  left: 0;
}

.products-view-txt b {
  color: #000000;
}

.products-view-txt p {
  font-size: 0.9375rem;
  line-height: 1.8rem;
  letter-spacing: 0.05rem;
}

.products-view-txt ul {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
}

.products-view-txt ul li {
  line-height: 1.8rem;
  padding-bottom: 0.5rem;
}

.products-view-txt .btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: none;
  margin: 0;
  padding-top: 0;
  text-align: right;
}

.products-view-txt .btn-wrap a {
  background-color: transparent;
  border: 1px solid #bf0f23;
  color: #bf0f23;
  font-size: 0.875rem;
  text-align: center;
  letter-spacing: 0.1rem;
  line-height: 40px;
  min-width: 49%;
  height: 40px;
  padding: 0;
}

.products-view-txt .btn-wrap a:hover,
.products-view-txt .btn-wrap a:focus {
  background: #bf0f23;
  color: #ffffff;
}

.products-view-content {
  font-size: 0.9375rem;
  letter-spacing: 0.05rem;
  margin-top: 2.5rem;
}

.products-view-content h4 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  color: #000000;
  font-size: 0.9375rem;
  font-weight: bold;
  letter-spacing: 0.125rem;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.products-view-content ol {
  padding-left: 1.25rem;
}

.products-view-content ol li {
  padding-bottom: 0.5rem;
}

.products-view-content p {
  line-height: 1.8rem;
  margin-bottom: 0.75rem;
}

.products-view-contact {
  margin: 1rem 0;
}

@media (min-width: 576px) {
  .products-view .gallery-top {
    margin-bottom: 1rem;
  }

  .products-view .gallery-thumbs {
    display: block;
  }

  .products-view .swiper-pagination {
    display: none;
  }
}

@media (min-width: 992px) {
  .products-view-txt {
    padding-top: 0.5rem;
  }
}

@media (min-width: 1200px) {
  .products-view {
    padding: 7rem 7rem 0;
  }

  .products-view-pic {
    padding: 0;
    padding-left: 2rem;
    padding-right: 1.5rem;
  }

  .products-view-content {
    padding-left: 2rem;
  }
}

.search .page-header {
  margin-bottom: 5rem;
}

.search .products-list {
  padding-top: 0;
}

.search-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  letter-spacing: 0.1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
}

.search-title h3 {
  font-size: 1.125rem;
  margin-bottom: 0;
}

.search-title h3 span {
  color: #000000;
  font-size: 1.375rem;
  font-weight: bold;
  padding: 0 1rem;
}

.search-title p {
  margin-bottom: 0;
}

.search-title p span {
  color: #000000;
  font-weight: bold;
}

@media (min-width: 576px) {
  .search-title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

/*------------------------------------*\
    BRANDS
\*------------------------------------*/
.brands .menu .dropdown-toggle {
  padding: 0;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.brands .menu .dropdown-toggle:hover,
.brands .menu .dropdown-toggle:focus,
.brands .menu .dropdown-toggle.active {
  padding: 0.75rem;
}

/*------------------------------------*\
    CONTACT
\*------------------------------------*/
.contact-info {
  position: relative;
  padding-bottom: 3rem;
}

.contact-info iframe {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-info-txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem 1.5rem;
}

.contact-info-txt>span {
  background-color: #cecece;
  border-radius: 50%;
  color: #ffffff;
  text-align: center;
  line-height: 35px;
  width: 35px;
  height: 35px;
}

.contact-info-txt h3 {
  color: #000000;
  font-size: 1.125rem;
  font-weight: bold;
  padding: 0 1rem;
}

.contact-info-txt .nav {
  width: 100%;
  margin-top: 1rem;
}

.contact-info-txt .nav li+li {
  margin-top: 0.5rem;
}

.contact-info-txt .nav span {
  padding-right: 1rem;
}

@media (min-width: 576px) {
  .contact-info-txt {
    padding: 1rem;
  }
}

@media (min-width: 1200px) {
  .contact-info-txt {
    padding: 1.5rem 2rem;
  }

  .contact-info-txt .nav {
    width: auto;
    margin-top: 0;
  }
}

.contact-form {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  padding: 2rem 1rem;
  margin: 2rem 0;
}

.contact-form-title h2 {
  color: #808080;
  font-size: 1.375rem;
  font-weight: bold;
  letter-spacing: 0.5rem;
  padding-bottom: 1.75rem;
  margin-bottom: 2rem;
  position: relative;
}

.contact-form-title h2::before {
  content: '';
  width: 30px;
  height: 3px;
  background-color: #e5e5e5;
  position: absolute;
  left: 0;
  bottom: 0;
}

.contact-form-title h2 span {
  display: block;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  -webkit-text-stroke: 0.5px #dddddd;
  text-shadow: 0 0 5px #cccccc;
  letter-spacing: 0.2rem;
  margin-bottom: 0.5rem;
}

.contact-form-title p {
  font-size: 0.9375rem;
  line-height: 1.8rem;
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .contact-form {
    padding: 2rem 4rem;
  }

  .contact-form .form .content-wrap .col-form-label {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8%;
    -ms-flex: 0 0 8%;
    flex: 0 0 8%;
    max-width: 8%;
  }

  .contact-form .form .content-wrap .col-sm-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 92%;
    -ms-flex: 0 0 92%;
    flex: 0 0 92%;
    max-width: 92%;
  }
}

@media (min-width: 1200px) {
  .contact-form-title p {
    margin-top: 1rem;
    margin-bottom: 0;
  }
}

@media (min-width: 1440px) {
  .contact-form {
    padding: 3.5rem 6rem;
    margin: 2rem 0 4rem;
  }
}

/*------------------------------------*\
    RECRUITMENT
\*------------------------------------*/
.recruit-view {
  background-color: #ffffff;
  padding: 2rem 1rem;
}

.recruit-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  padding-bottom: 0.5rem;
  margin-bottom: 4rem;
}

.recruit-title h2 {
  color: #000000;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
}

.recruit-title h2 span {
  color: #bf0f23;
  font-size: 0.875rem;
  padding-left: 0.5rem;
}

.recruit-item {
  text-align: center;
  margin-bottom: 3rem;
}

.recruit-item p {
  font-size: 1.125rem;
  letter-spacing: 0.1rem;
  margin-top: 1rem;
  margin-bottom: 0;
}

.recruit-item p span {
  display: block;
  font-size: 0.9375rem;
}

.recruit-item:nth-child(2n) {
  border-left: 1px dashed #bf0f23;
}

@media (min-width: 576px) {
  .recruit-view {
    padding: 4rem 3rem;
  }

  .recruit-item {
    border-left: 1px dashed #bf0f23;
  }

  .recruit-item:nth-child(3n+1) {
    border-left: none;
  }
}

@media (min-width: 768px) {
  .recruit-item {
    border-left: none;
  }

  .recruit-item:nth-child(2n) {
    border-left: 1px dashed #bf0f23;
  }

  .recruit-item:nth-child(2),
  .recruit-item:nth-child(6),
  .recruit-item:nth-child(10) {
    border-right: 1px dashed #bf0f23;
  }
}

@media (min-width: 1440px) {
  .recruit>.container {
    max-width: 1300px;
  }

  .recruit-view {
    padding: 7rem 6rem;
    margin-bottom: 6rem;
  }
}

.recruit-info {
  padding: 2rem 0;
}

.recruit-info-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.recruit-info-title h2 {
  color: #cecece;
  font-size: 1.375rem;
  font-weight: bold;
  letter-spacing: 0.5rem;
}

.recruit-info-title h2 span {
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  -webkit-text-stroke: 0.5px #dddddd;
  text-shadow: 0 0 5px #cccccc;
  letter-spacing: 0.25rem;
  margin-bottom: 0.5rem;
  padding-right: 1rem;
}

.recruit-info-title p {
  font-size: 0.9375rem;
  margin-bottom: 1rem;
  padding-right: 1rem;
}

.recruit-info-title a {
  border: 1px solid #bf0f23;
  color: #bf0f23;
  font-size: 0.875rem;
  letter-spacing: 0.1rem;
  text-align: center;
  line-height: 40px;
  width: 130px;
  height: 40px;
}

.recruit-info-title a:hover,
.recruit-info-title a:focus {
  background-color: #bf0f23;
  color: #ffffff;
}

.recruit-info-title-txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.recruit-info-item {
  margin-bottom: 2rem;
  margin-left: 0;
  margin-right: 0;
}

.recruit-info-pic {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 0;
}

.recruit-info-txt {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
  min-height: 280px;
}

.recruit-info-txt h3 {
  color: #000000;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1rem;
  margin-bottom: 2rem;
}

.recruit-info-txt h3 span {
  display: block;
  color: #bf0f23;
  font-size: 0.8125rem;
  margin-top: 0.25rem;
}

.recruit-info-txt p {
  color: #666666;
  font-size: 0.875rem;
  line-height: 1.5rem;
}

@media (min-width: 576px) {
  .recruit-info {
    padding: 4rem 3rem;
  }
}

@media (min-width: 768px) {
  .recruit-info-txt h3 {
    text-align: left;
  }
}

@media (min-width: 1200px) {
  .recruit-info-title {
    padding-bottom: 0.5rem;
    text-align: left;
  }

  .recruit-info-title p {
    margin-bottom: 0;
  }

  .recruit-info-title-txt {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .recruit-info-txt h3 {
    text-align: center;
  }
}

@media (min-width: 1440px) {
  .recruit-info {
    padding: 0 6rem 6rem;
  }
}

/*------------------------------------*\
    INQUIRY
\*------------------------------------*/
.inquiry-list {
  margin-bottom: 3rem;
}

.inquiry-list img {
  border: 1px solid #dddddd;
  width: 200px;
}

.inquiry .contact-form-title h2 {
  font-size: 1.25rem;
  text-align: center;
}

.inquiry .contact-form-title h2::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (min-width: 1000px) {
  .navbar-nav .dropdown-toggle.active-dropdown~.dropdown-menu {
    min-width: 400px;
  }

  .navbar-nav .dropdown-toggle.active-dropdown~.dropdown-menu {
    overflow-y: scroll;
    max-height: 500px;
  }
}