@charset "UTF-8";

/*------------------------------------*\
    $CONTENTS
\*------------------------------------*/
/**
 * ALL
 * HEADER
 * BANNER
 * FOOTER
 * SIDEMENU
 * MAIN
 * ABOUT
 * GAME
 * SERVICE
 * PARTNERS
 * BUSINESS
 * RECRUIT
 * CONTACT
 * COMPETITION
 * PRIVACY
 **/
/*------------------------------------*\
    ALL
\*------------------------------------*/
html,
body {
  overflow-x: hidden;
  min-height: 1000px;
}

body {
  color: #666666;
  font-family: '微軟正黑體', 'Microsoft JhengHei', sans-serif;
  padding-top: 50px;
}

@media (min-width: 992px) {
  body {
    padding-top: 110px;
  }
}

a {
  display: inline-block;
  color: #666666;
  -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: #004c9f;
  outline: 0;
  text-decoration: none;
}

span {
  display: inline-block;
}

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

.container {
  max-width: 100%;
}

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

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

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

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

.navbar {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
}

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

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

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

.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: #004c9f;
  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: 34px;
}

.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;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.navbar-nav .nav-link {
  color: #0c2e58;
  font-size: 1.0625rem;
  font-weight: bold;
  letter-spacing: 0.05rem;
  padding: 1rem 0 !important;
}

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

.navbar-nav .nav-link svg {
  font-size: 1.5rem;
}

@media (min-width: 992px) {
  .navbar-nav .nav-item {
    position: relative;
  }

  .navbar-nav .nav-item::before {
    content: '';
    width: 25px;
    height: 1px;
    background-color: #004c9f;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transform: rotate(-60deg);
    -ms-transform: rotate(-60deg);
    transform: rotate(-60deg);
    left: -10px;
  }

  .navbar-nav .nav-item:first-child::before,
  .navbar-nav .nav-item:last-child::before {
    display: none;
  }

  .navbar-nav .nav-item:last-child .nav-link::before {
    display: none;
  }

  .navbar-nav .nav-link {
    line-height: 110px;
    padding: 0 0.4rem !important;
    position: relative;
  }

  .navbar-nav .nav-link::before {
    content: "";
    width: 55px;
    height: 5px;
    background: #004c9f;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-5px);
    -ms-transform: translateX(-50%) translateY(-5px);
    transform: translateX(-50%) translateY(-5px);
    -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-nav .nav-link:hover::before,
  .navbar-nav .nav-link:focus::before,
  .navbar-nav .nav-link.active::before {
    -webkit-transform: translateX(-50%) translateY(0);
    -ms-transform: translateX(-50%) translateY(0);
    transform: translateX(-50%) translateY(0);
  }
}

@media (min-width: 1200px) {
  .navbar-nav .nav-link {
    padding: 0 1.25rem !important;
  }
}

.navbar-nav .dropdown-menu {
  border-radius: 10px;
  background-color: rgba(0, 76, 159, 0.8);
  padding: 1rem 1.25rem;
  max-width: 10rem;
}

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

.navbar-nav .dropdown-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  background-color: transparent;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05rem;
  text-align: center;
  padding: 0.75rem 0;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus,
.navbar-nav .dropdown-item.active {
  background-color: transparent;
  color: white;
  font-weight: bold;
}

@media (min-width: 992px) {
  .navbar-nav .dropdown-menu {
    margin-top: 1.5rem;
  }

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

/*------------------------------------*\
    BANNER
\*------------------------------------*/
.banner {
  position: relative;
  z-index: 2;
}

.banner::before {
  content: '';
  width: 145px;
  height: 145px;
  background-image: url(../images/circle-b.png);
  position: absolute;
  right: 0;
  bottom: -30px;
  z-index: 1000;
  display: none;
}

@media (min-width: 576px) {
  .banner::before {
    display: block;
  }
}

@media (min-width: 992px) {
  .banner::before {
    right: 6rem;
  }
}

.banner>.container {
  max-width: 200%;
  width: 200%;
  margin: 0 -50%;
  padding: 0;
  text-align: center;
}

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

/*------------------------------------*\
    FOOTER
\*------------------------------------*/
.footer {
  background-color: #064d87;
  padding: 3.25rem 0;
}

.footer-info {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.footer-info .nav {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0.25rem;
}

.footer-info .nav li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #ffffff;
  font-size: 1.0625rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1rem;
  margin-bottom: 0.5rem;
  width: 100%;
}

.footer-info .nav li.add {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer-info .nav li.add a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: normal;
  position: relative;
  padding-right: 1rem;
  margin-right: 1rem;
  white-space: nowrap;
}

.footer-info .nav li.add a::after {
  content: '';
  width: 1px;
  height: 15px;
  background-color: rgba(226, 108, 61, 0.6);
  position: absolute;
  top: 0.25rem;
  right: 0;
  display: inline-block;
}

.footer-info .nav li.add a:hover,
.footer-info .nav li.add a:focus {
  color: white;
}

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

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

  .footer-info .nav li {
    margin-bottom: 0;
    padding-right: 1rem;
  }
}

.footer-copy {
  color: #cccccc;
  font-size: 12px;
  text-align: center;
}

.footer-copy a {
  color: #cccccc;
}

.footer-copy a:hover,
.footer-copy a:focus {
  color: #f03e30;
}

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

.footer-nav .nav {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  padding: 0;
  padding-left: 1rem;
}

.footer-nav a:hover,
.footer-nav a:focus {
  color: white;
}

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

/*------------------------------------*\
    SIDEMENU
\*------------------------------------*/
.sidemenu {
  position: fixed;
  top: 100px;
  right: 10px;
  z-index: 1050;
}

.sidemenu .nav li {
  margin-bottom: 1.5rem;
}

.sidemenu a {
  border-radius: 50%;
  background-color: #f03e30;
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1rem;
  width: 80px;
  height: 80px;
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sidemenu a img {
  width: 30px;
}

.sidemenu a span {
  padding-top: 0.125rem;
}

.sidemenu a:hover,
.sidemenu a:focus {
  background-color: #0c2e58;
}

@media (min-width: 768px) {
  .sidemenu {
    top: 200px;
    right: 30px;
  }
}

@media (min-width: 1200px) {
  .sidemenu {
    right: 120px;
  }

  .sidemenu a {
    width: 115px;
    height: 115px;
    font-size: 1.0625rem;
  }

  .sidemenu a img {
    width: auto;
  }

  .sidemenu a span {
    padding-top: 0.25rem;
  }
}

/*------------------------------------*\
    MAIN
\*------------------------------------*/
main {
  background: url(../images/bg.jpg) center bottom no-repeat #ffffff;
  padding: 3rem 0;
  position: relative;
}

main::before {
  content: '';
  width: 140px;
  height: 160px;
  background-image: url(../images/circle-r.png);
  position: absolute;
  left: 0;
  top: -80px;
  z-index: 1000;
  display: none;
}

@media (min-width: 576px) {
  main::before {
    display: block;
  }
}

@media (min-width: 992px) {
  main::before {
    left: 11rem;
  }
}

/* CONTENT */
.content h4 {
  color: #004d97;
  font-size: 1.3125rem;
  font-weight: bold;
  letter-spacing: 0.25rem;
  margin-bottom: 1.5rem;
}

.content p {
  font-size: 0.9375rem;
  text-align: justify;
  margin-bottom: 2rem;
}

.content p span {
  display: inline;
  color: #f03e30;
  font-weight: bold;
}

.content p b {
  color: #004d97;
}

.content hr {
  border-color: #868585;
  margin: 3rem 0;
}

@media (min-width: 576px) {
  .content p {
    line-height: 2rem;
    letter-spacing: 0.1rem;
    text-align: left;
  }
}

@media (min-width: 992px) {
  .content p.indent {
    padding-right: 6rem;
  }
}

/* PAGE-HEADER */
.page-header {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.page-header h1 {
  color: #383838;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.125rem;
  margin-bottom: 0;
}

.page-header h1 span {
  color: #004c9f;
  font-size: 1.75rem;
  letter-spacing: 0.25rem;
  display: block;
  margin-bottom: 0.5rem;
}

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

  .page-header h1 span {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
}

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

.page-header-secondary h1 {
  color: #ffffff;
}

.page-header-secondary h1 span {
  color: #ffffff;
}

.page-title {
  text-align: center;
}

.page-title h2 {
  color: #004d97;
  font-size: 1.75rem;
  font-weight: bold;
  letter-spacing: 0.5rem;
  padding-bottom: 1.5rem;
  margin-bottom: 3rem;
  position: relative;
}

.page-title h2::after {
  content: '';
  width: 50px;
  height: 4px;
  background-color: #004d97;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
}

@media (min-width: 576px) {
  .page-title h2 {
    font-size: 2.5rem;
  }
}

.page-title-secondary h2 {
  color: #004d97;
  font-size: 1.75rem;
  font-weight: bold;
  letter-spacing: 0.25rem;
  margin-bottom: 1.5rem;
}

.page-title-secondary h2 span {
  display: block;
  color: #9d9d9d;
  font-size: 0.9375rem;
  letter-spacing: 0.05rem;
  margin: 1.5rem 0;
}

@media (min-width: 992px) {
  .page-title-secondary h2 {
    font-size: 2.625rem;
  }
}

.page-title-secondary h3 {
  display: inline-block;
  background-color: #004d97;
  color: #ffffff;
  font-size: 1.0625rem;
  letter-spacing: 0.1rem;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
}

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

.form-row>.col,
.form-row>[class*=col-] {
  margin-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.form .col-form-label {
  height: 45px;
}

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

.form .form-control {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(154, 154, 154, 0.5);
  height: 45px;
}

.form .note .col-form-label {
  border-bottom: none;
}

.form .note .form-control {
  height: auto;
}

.form .code-wrap {
  margin-top: 1rem;
  text-align: left;
}

.form .btn {
  border: none;
  border-radius: 0;
  background-color: #004d97;
  color: #ffffff;
  width: 200px;
  height: 45px;
  line-height: 45px;
  padding: 0;
}

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

.form .btn:hover,
.form .btn:focus {
  background-color: #f03e30;
}

@media (min-width: 576px) {
  .form .col-form-label {
    border-bottom: 1px solid rgba(154, 154, 154, 0.5);
  }

  .form .code-wrap {
    margin-top: 0;
    text-align: right;
  }
}

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

/* MENU */
.menu {
  margin-top: -3.5rem;
  padding-top: 5rem;
  background-color: #f7f7f9;
  margin-bottom: 2rem;
}

.menu .nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.menu .nav li {
  width: 50%;
  position: relative;
}

.menu .nav li::before,
.menu .nav li::after {
  content: '';
  width: 1px;
  height: 25px;
  background-color: #666666;
  position: absolute;
  top: 5px;
}

.menu .nav li::before {
  left: 0;
}

.menu .nav li::after {
  right: 0;
}

.menu a {
  display: block;
  font-size: 1.3125rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.5rem;
  padding-bottom: 2rem;
  position: relative;
}

.menu a::after {
  content: '';
  width: 60px;
  height: 4px;
  background-color: #f7f7f9;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  -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;
}

.menu a:hover,
.menu a:focus,
.menu a.active {
  color: #004d97;
}

.menu a:hover::after,
.menu a:focus::after,
.menu a.active::after {
  background-color: #004d97;
}

@media (min-width: 576px) {
  .menu {
    padding-top: 3.5rem;
    margin-bottom: 4rem;
  }

  .menu .nav li {
    margin-bottom: 0;
  }

  .menu .nav li:first-child::after {
    display: none;
  }

  .menu .nav li::before,
  .menu .nav li::after {
    top: 10px;
  }

  .menu a {
    font-size: 1.8rem;
  }
}

@media (min-width: 768px) {

  .menu .nav li::before,
  .menu .nav li::after {
    height: 32px;
    top: 15px;
  }

  .menu a {
    font-size: 2.25rem;
  }
}

.menu-secondary>.container {
  position: relative;
}

.menu-secondary>.container::before,
.menu-secondary>.container::after {
  content: '';
  width: 1px;
  height: 20px;
  background-color: #727272;
  position: absolute;
  top: 8px;
  display: none;
}

.menu-secondary>.container::before {
  left: 0;
}

.menu-secondary>.container::after {
  right: 0;
}

.menu-secondary .row {
  margin-left: 0;
  margin-right: 0;
}

.menu-secondary .swiper-button-next,
.menu-secondary .swiper-button-prev {
  width: 50px;
  height: 50px;
  top: -8px;
  margin-top: 0;
}

.menu-secondary .swiper-button-next:focus,
.menu-secondary .swiper-button-prev:focus {
  outline: none;
}

.menu-secondary .swiper-button-next {
  background-image: url(../images/menu-next.svg);
  right: 0;
}

.menu-secondary .swiper-button-prev {
  background-image: url(../images/menu-prev.svg);
  left: 0;
}

.menu-secondary .menu-item {
  position: relative;
}

.menu-secondary .menu-item+.menu-item::before {
  content: '';
  width: 1px;
  height: 20px;
  background-color: #727272;
  position: absolute;
  left: 0;
  top: 8px;
}

.menu-secondary .menu-item:first-child::after,
.menu-secondary .menu-item:nth-child(2)::after,
.menu-secondary .menu-item:last-child::after {
  content: '';
  width: 1px;
  height: 20px;
  background-color: #727272;
  position: absolute;
  top: 8px;
}

.menu-secondary .menu-item:first-child::after {
  left: 0;
}

.menu-secondary .menu-item:nth-child(2)::after,
.menu-secondary .menu-item:last-child::after {
  right: 0;
}

.menu-secondary a {
  font-size: 1.3125rem;
  letter-spacing: 0.25rem;
}

@media (min-width: 576px) {
  .menu-secondary {
    padding-top: 5rem;
  }
}

@media (min-width: 992px) {
  .menu-secondary .menu-item:nth-child(2)::after {
    display: none;
  }
}

@media (min-width: 1280px) {

  .menu-secondary>.container::before,
  .menu-secondary>.container::after {
    display: inline-block;
  }

  .menu-secondary .row {
    margin-left: -15px;
    margin-right: -15px;
  }

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

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

  .menu-secondary .menu-item:first-child::after,
  .menu-secondary .menu-item:last-child::after {
    display: none;
  }
}

.myhd {
    border: none;
    border-radius: 25px;
    background-color: #004d97;
    color: #ffffff;
    font-size: 0.8125rem;
    line-height: 50px;
    letter-spacing: 0.25rem;
    width: 200px;
    height: 50px;
    vertical-align: middle;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* BUTTON */
.btn {
  border: none;
  border-radius: 25px;
  background-color: #004d97;
  color: #ffffff;
  font-size: 0.8125rem;
  line-height: 50px;
  letter-spacing: 0.25rem;
  width: 200px;
  height: 50px;
  vertical-align: middle;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.btn-wrap {
  text-align: center;
  margin-top: 2rem;
}

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

.btn span {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent #ffffff;
  margin-left: 0.5rem;
}

.hd-title {
    background-color: #f03e30;
}

.btn-secondary {
  background-color: #f03e30;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #0c2e58;
}

/* ANCHOR */
#advantage:target::before,
#ai:target::before,
#system:target::before,
#cause:target::before,
#contact:target::before {
  content: '';
  display: block;
  height: 50px;
}

@media (min-width: 992px) {

  #advantage:target::before,
  #ai:target::before,
  #system:target::before,
  #cause:target::before,
  #contact:target::before {
    height: 110px;
  }
}

/*------------------------------------*\
    ABOUT
\*------------------------------------*/
.about {
  background: url(../images/bg-03.jpg) center bottom no-repeat #ffffff;
  padding: 0 0 5rem;
}

.about-item {
  position: relative;
}

.about-pic {
  text-align: center;
  width: 100%;
}

.about-pic::before {
  content: '';
  width: 205px;
  height: 205px;
  border-radius: 50%;
  background-color: #004d97;
  position: absolute;
  left: 0;
  top: 0;
}

.about-pic::after {
  content: '';
  width: 180px;
  height: 180px;
  background: url(../images/circle-r-02.png);
  position: absolute;
  bottom: 65px;
  right: 20px;
  z-index: 3;
  display: none;
}

.about-pic img {
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

@media (min-width: 576px) {
  .about-pic::after {
    display: block;
  }
}

@media (min-width: 1200px) {
  .about-txt {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 65%;
    flex: 0 0 65%;
    max-width: 65%;
  }

  .about-txt .indent {
    padding-right: 13rem;
  }

  .about-pic {
    text-align: left;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    position: absolute;
    right: 0;
    top: 110px;
  }

  .about-pic::before {
    left: -25px;
    top: -10px;
  }

  .about-pic img {
    width: 470px;
  }
}

@media (min-width: 1280px) {
  .about-pic::before {
    top: -10px;
  }
}

.about-slogan {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  background-repeat: no-repeat;
  background-position: left bottom;
  min-height: 250px;
  margin-bottom: 2.5rem;
  position: relative;
}

.about-slogan::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 0 15px;
  border-color: #004d97 transparent transparent transparent;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -15px;
}

.about-slogan-txt {
  background-color: white;
  color: #004c9f;
  font-size: 1.3125rem;
  font-weight: bold;
  text-align: justify;
  line-height: 2.5rem;
  letter-spacing: 0.125rem;
  padding: 5rem 0;
}

.about-slogan-txt br {
  display: none;
}

@media (min-width: 576px) {
  .about-slogan {
    min-height: 380px;
  }

  .about-slogan-txt {
    background-color: rgba(255, 255, 255, 0.5);
    padding-top: 10rem;
    text-align: center;
  }

  .about-slogan-txt br {
    display: block;
  }
}

@media (min-width: 992px) {
  .about-slogan-txt {
    background-color: transparent;
    text-align: left;
    position: absolute;
    right: 0;
    bottom: -40px;
  }
}

@media (min-width: 1200px) {
  .about-slogan-txt {
    padding-left: 1rem !important;
  }
}

.about-idea-tit {
  color: #004c9f;
  font-size: 1.3125rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.25rem;
  margin-bottom: 3.5rem;
}

.about-idea-item {
  text-align: center;
  margin-bottom: 2rem;
}

.about-idea-txt {
  padding-top: 2.5rem;
}

.about-idea-txt h3 {
  color: #004c9f;
  font-size: 1.3125rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.25rem;
  margin-bottom: 1rem;
}

.about-idea-txt p {
  text-align: center;
  font-size: 1rem;
  line-height: 1.8rem;
}

@media (min-width: 576px) {
  .about-idea-txt p {
    letter-spacing: 0.05rem;
  }
}

@media (min-width: 992px) {
  .about-idea-txt {
    max-width: 260px;
    margin: 0 auto;
  }
}

.about-idea-wrap {
  background: url(../images/about-idea-bg.jpg) center bottom no-repeat #ffffff;
}

.about-idea-wrap .about-idea {
  border-bottom: 1px dashed #004d97;
  margin-bottom: 8rem;
}

.about-idea-wrap .about-idea-txt p {
  text-align: justify;
}

.about-idea-desc {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about-idea-desc-item {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about-idea-desc-pic {
  position: relative;
  margin-bottom: 3rem;
  max-width: 600px;
}

.about-idea-desc-pic::before {
  content: '';
  border-radius: 50%;
  background-color: #004d97;
  width: 300px;
  height: 300px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.about-idea-desc-pic::after {
  content: '';
  width: 200px;
  height: 170px;
  background: url(../images/index-about-circle-r.png);
  position: absolute;
  bottom: 40px;
  right: 5px;
  display: none;
  z-index: 4;
}

.about-idea-desc-pic img {
  border-radius: 50%;
  position: relative;
  z-index: 3;
}

@media (min-width: 576px) {
  .about-idea-desc-pic::before {
    width: 445px;
    height: 445px;
  }

  .about-idea-desc-pic::after {
    display: block;
  }
}

@media (min-width: 992px) {
  .about-idea-desc-txt {
    padding-left: 6rem;
  }

  .about-idea-desc-pic {
    margin-top: 0;
  }

  .about-idea-desc-pic::before {
    right: 30px;
  }

  .about-idea-desc-pic img {
    left: -20px;
  }
}

.about-history {
  position: relative;
}

.about-history::before {
  content: '';
  width: 1px;
  height: auto;
  background: url(../images/line.png) center center repeat-y;
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
}

.about-history-item {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 2rem;
}

.about-history-item:first-child .about-history-year span {
  background-color: #f03e30;
}

.about-history-year {
  text-align: left;
}

.about-history-year span {
  background-color: #004d97;
  border-radius: 50%;
  color: #ffffff;
  text-align: center;
  line-height: 90px;
  width: 90px;
  height: 90px;
}

.about-history-info {
  background-color: #f7f7f9;
  border-radius: 10px;
  padding: 1rem 1.5rem !important;
  position: relative;
  margin-top: 2rem;
}

.about-history-info::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  border-width: 0 10px 20px 10px;
  border-color: transparent transparent #f7f7f9 transparent;
  top: -20px;
  left: 25px;
}

.about-history-info .nav li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.25rem;
}

.about-history-info .nav li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #004d97;
  position: absolute;
  top: 8px;
  left: 0;
  margin-right: 1rem;
}

@media (min-width: 576px) {
  .about-history-info {
    margin-top: 0;
  }

  .about-history-info::before {
    border-width: 10px 20px 10px 0;
    border-color: transparent #f7f7f9 transparent transparent;
    top: 40px;
    left: -20px;
  }
}

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

  .about-history::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .about-history-item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .about-history-item:nth-child(even) .about-history-info::before {
    border-width: 10px 0 10px 20px;
    border-color: transparent transparent transparent #f7f7f9;
    left: auto;
    right: -20px;
  }

  .about-history-year {
    text-align: center;
  }
}

/*------------------------------------*\
    GAME
\*------------------------------------*/
.game {
  padding: 0 0 5rem;
}

.game-list {
  background: url(../images/game-list-bg.jpg) center bottom no-repeat #ffffff;
  padding: 3rem 0;
}

.game-list .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.game-list-group {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 300px;
  flex: 0 0 300px;
  max-width: 300px;
  max-height: 480px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 2rem;
  padding: 0;
  position: relative;
  z-index: 2;
}

.game-list-group::after {
  content: '';
  width: auto;
  height: auto;
  background-color: rgba(0, 77, 151, 0.3);
  border-radius: 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 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;
}

.game-list-group:hover::after,
.game-list-group:focus::after {
  top: 10px;
  bottom: -10px;
  left: 10px;
  right: -10px;
}

.game-list-group:nth-child(even) .game-list-txt h3 {
  color: #f03e30;
}

.game-list-item {
  background: url(../images/game-list-circle.png) 105% -10% no-repeat #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.game-list-item a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
}

.game-list-txt {
  text-align: center;
  padding: 3.5rem 0 2rem;
}

.game-list-txt h3 {
  color: #004d97;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.25rem;
  margin-bottom: 1rem;
}

.game-list-txt p {
  font-size: 0.9375rem;
  line-height: 1.75rem;
}

.game-list-pic img {
  border-radius: 50% 50% 0 0;
}

@media (min-width: 576px) {
  .game-list {
    padding: 6rem 0;
  }

  .game-list-group {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 360px;
    flex: 0 0 360px;
    max-width: 360px;
  }
}

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

.game-pic {
  margin-top: 2rem;
  text-align: center;
  position: relative;
}

.game-pic::before {
  content: '';
  width: 325px;
  height: 325px;
  border-radius: 50%;
  background-color: #004d97;
  position: absolute;
  left: -10px;
  bottom: 0;
}

.game-pic::after {
  content: '';
  width: 190px;
  height: 160px;
  background: url(../images/game-circle-r.png);
  position: absolute;
  top: 0;
  right: -10px;
  z-index: 3;
  display: none;
}

.game-pic img {
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

@media (min-width: 576px) {
  .game-pic::after {
    display: block;
  }
}

@media (min-width: 992px) {
  .game-pic {
    margin-top: 5rem;
  }
}

@media (min-width: 1200px) {
  .game-pic::before {
    left: -80px;
    bottom: -50px;
  }

  .game-pic::after {
    top: -20px;
    right: 10px;
  }
}

.game-txt {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.game-txt-group {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.game-item {
  background: #fcfcfc;
  background: -o-linear-gradient(top, #fcfcfc 0%, #fcfcfc 50%, #b5d5fa 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#fcfcfc), color-stop(50%, #fcfcfc), to(#b5d5fa));
  background: linear-gradient(to bottom, #fcfcfc 0%, #fcfcfc 50%, #b5d5fa 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfcfc', endColorstr='#b5d5fa', GradientType=0);
  margin: 2rem 0;
  padding: 2rem 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.game-item-txt p {
  margin-bottom: 0;
}

.game-item-txt .table th,
.game-item-txt .table td {
  border-top: none;
  color: #000000;
  font-size: 1.0625rem;
  letter-spacing: 0.25rem;
  padding: 0.25rem;
}

.game-item-txt .table tbody td:first-child {
  color: #004d97;
  font-weight: bold;
  white-space: nowrap;
}

@media (max-width: 575px) {
  .game-item-txt .table thead {
    display: none;
  }

  .game-item-txt .table tbody {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
  }

  .game-item-txt .table tbody tr {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .game-item-txt .table tbody th,
  .game-item-txt .table tbody td {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 1.25rem;
  }

  .game-item-txt .table tbody th::before,
  .game-item-txt .table tbody td::before {
    content: attr(data-content);
    color: #8b8b8b;
    font-weight: bold;
    white-space: nowrap;
    padding-right: 1rem;
  }
}

@media (min-width: 576px) {
  .game-item-txt .table thead th:last-child:last-child::after {
    content: '名稱';
  }
}

@media (min-width: 1200px) {

  .game-item-txt .table th,
  .game-item-txt .table td {
    padding: 0.125rem 1rem;
  }

  .game-item-txt .table thead th {
    padding: 1rem;
  }

  .game-item-txt .table thead th:first-child {
    padding-left: 3rem;
  }

  .game-item-txt .table tbody tr:first-child th,
  .game-item-txt .table tbody tr:first-child td {
    padding-top: 1.5rem;
  }

  .game-item-txt .table tbody td:first-child {
    padding-left: 3rem;
  }
}

.game-item-pic {
  text-align: center;
}

.game-item-note {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  margin-bottom: 2.5rem;
}

.game-item-note p {
  padding-left: 1rem;
}

@media (min-width: 992px) {
  .game-item {
    padding-left: 3rem;
    padding-right: 0;
  }

  .game-item-pic {
    text-align: right;
  }

  .game-item-secondary {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    padding-left: 0;
    padding-right: 3rem;
  }

  .game-item-secondary .game-item-pic {
    text-align: left;
  }
}

@media (min-width: 1200px) {
  .game-item-note p {
    padding-left: 6rem;
  }
}

.game-menu-group {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 300px;
  flex: 0 0 300px;
  max-width: 300px;
  max-height: 400px;
  margin: 2rem auto;
  padding: 0;
  position: relative;
}

.game-menu-group::after {
  content: '';
  width: auto;
  height: auto;
  background-color: rgba(0, 77, 151, 0.3);
  border-radius: 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 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;
}

.game-menu-group:hover::after,
.game-menu-group:focus::after {
  top: 10px;
  bottom: -10px;
  left: 10px;
  right: -10px;
}

.game-menu-item {
  background: url(../images/game-list-circle.png) right -10% no-repeat #ffffff;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  text-align: center;
  max-width: 300px;
  max-height: 400px;
  padding: 2rem 0 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.game-menu-item a {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
}

.game-menu-txt {
  padding-bottom: 2rem;
}

.game-menu-txt h3 {
  color: #004d97;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.25rem;
  margin-bottom: 1rem;
}

.game-menu-txt p {
  font-size: 0.9375rem;
  line-height: 1.75rem;
  text-align: center;
  margin-bottom: 0;
}

.game-menu-pic {
  position: relative;
  right: 0;
  bottom: 0;
}

.game-menu-pic img {
  border-radius: 50% 50% 0 0;
  width: 600px;
}

@media (min-width: 576px) {
  .game-menu-group {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 600px;
    flex: 0 0 600px;
    max-width: 600px;
    min-height: 250px;
  }

  .game-menu-item {
    background: url(../images/game-menu-circle.png) left 110% no-repeat #ffffff;
    text-align: left;
    padding: 0;
    max-width: 600px;
    min-height: 250px;
  }

  .game-menu-txt {
    padding: 2rem;
  }

  .game-menu-txt p {
    text-align: left;
  }

  .game-menu-pic {
    position: absolute;
    top: -20px;
    right: -80px;
    bottom: auto;
  }

  .game-menu-pic img {
    border-radius: 50%;
    width: 300px;
  }
}

@media (min-width: 1200px) {
  .game-menu-txt {
    padding: 3rem 4rem;
  }

  .game-menu-pic {
    top: -50px;
  }

  .game-menu-pic img {
    width: 400px;
  }
}

.game-view-content .game-item {
  border-top: 1px solid #878686;
  border-bottom: 1px solid #878686;
}

.game-view-content .game-item-pic {
  text-align: center;
}

@media (min-width: 992px) {
  .game-view-content .game-item {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 0 3rem;
    margin: 3.5rem 0;
  }

  .game-view-content .game-item-txt {
    padding: 3rem 0;
  }

  .game-view-content .game-item-pic {
    position: relative;
  }

  .game-view-content .game-item-pic img {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}

.game-team-title {
  text-align: center;
}

.game-team-title span {
  background-color: #f03e30;
  color: #ffffff;
  font-size: 1.3125rem;
  letter-spacing: 0.25rem;
  padding: 0.25rem 0.5rem;
}

@media (min-width: 1280px) {
  .game-team-content .game-item-txt {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 55%;
    flex: 0 0 55%;
    max-width: 55%;
  }

  .game-team-content .game-item-pic {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    max-width: 45%;
  }
}

.game-photo-item {
  margin-bottom: 3.5rem;
}

.game-photo-tit {
  background-color: #e8e9ec;
  color: #004d97;
  font-size: 1.3125rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.25rem;
  padding: 1rem;
}

.game-photo-content {
  border: 1px solid #004d97;
  border-top: none;
  padding: 1rem 0;
}

.game-photo-content img {
  padding: 1rem;
}

.game-photo-pic {
  text-align: center;
}

.game-photo-pic img+img {
  padding-top: 1.75rem;
}

@media (min-width: 576px) {
  .game-photo-content {
    padding: 2rem 1rem;
  }
}

@media (min-width: 1200px) {
  .game-photo-content {
    padding: 4rem 6.5rem;
  }

  .game-photo-pic {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%;
  }

  .game-photo-pic-secondary {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
  }
}

/*------------------------------------*\
    SERVICE
\*------------------------------------*/
.service {
  background: url(../images/bg-02.jpg) center bottom no-repeat #ffffff;
  padding: 0 0 5rem;
}

.service-item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 3rem;
  margin-left: 0;
  margin-right: 0;
}

.service-txt {
  text-align: center;
}

.service-txt h3 {
  color: #004d97;
  font-size: 1.3125rem;
  font-weight: bold;
  letter-spacing: 0.25rem;
  margin-bottom: 1.5rem;
}

.service-txt p {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  letter-spacing: 0.1rem;
  text-align: left;
  margin-bottom: 0;
}

.service-pic {
  text-align: center;
  margin-bottom: 1rem;
}
    .service-pic img {
        border: 3px solid #dddddd;
        border-radius: 50%;
    }

@media (min-width: 576px) {
  .service-txt {
    text-align: left;
  }

  .service-pic {
    margin-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .service-pic {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 28%;
    flex: 0 0 28%;
    max-width: 28%;
  }

  .service-txt {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 72%;
    flex: 0 0 72%;
    max-width: 72%;
  }
}

.service-locations-menu {
  border-bottom: 1px solid #004c9f;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.service-locations-menu .nav {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.service-locations-menu .nav li {
  padding: 0 1rem;
}

.service-locations-menu a {
  color: #004d97;
  font-size: 1.3125rem;
  font-weight: bold;
}

.service-locations-menu a:hover,
.service-locations-menu a:focus,
.service-locations-menu a.active {
  color: #f03e30;
}

.service-locations-tit {
  border-top: 1px solid #004c9f;
  color: #000000;
  font-size: 0.9375rem;
  font-weight: bold;
  text-align: center;
  padding-top: 1rem;
  margin-bottom: 1rem;
}

.service-locations-item {
  padding: 2rem;
}

.service-locations-item.swiper-slide {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  height: 200px !important;
}

.service-locations-item.swiper-slide-thumb-active {
  border: 1px solid #004d97;
}

.service-locations-txt h3 {
  color: #004d97;
  font-size: 1.0625rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.service-locations-txt p {
  margin-bottom: 0;
}

.service-locations-txt p span {
  width: 50px;
  padding-right: 1rem;
}

.service-locations-txt .add {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.service-locations-txt .add svg {
  color: #004d97;
  margin-top: 0.25rem;
  margin-right: 0.5rem;
}

.service-locations-txt .tel {
  padding-left: 1rem;
}

.service-locations .gallery-thumbs .swiper-button-next,
.service-locations .gallery-thumbs .swiper-button-prev {
  width: 50px;
  height: 50px;
}

.service-locations .gallery-thumbs .swiper-button-next {
  background-image: url(../images/menu-next.svg);
  right: -15px;
}

.service-locations .gallery-thumbs .swiper-button-prev {
  background-image: url(../images/menu-prev.svg);
  left: -15px;
}

.service-locations-pic {
  margin-top: 2rem;
}

.service-locations-pic iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.service-locations-page {
  border-bottom: 1px solid #004d97;
  margin-top: 1rem;
}

.service-locations-page .page-item {
  margin: 0 0.25rem;
}

.service-locations-page .page-item:first-child .page-link,
.service-locations-page .page-item:last-child .page-link {
  border: none;
}

.service-locations-page .page-link {
  border-radius: 50%;
  border: 1px solid #ffffff;
  color: #989898;
  text-align: center;
  line-height: 30px;
  width: 30px;
  height: 30px;
  padding: 0;
}

.service-locations-page .page-link:hover,
.service-locations-page .page-link:focus,
.service-locations-page .page-link.active {
  background-color: transparent;
  border: 1px solid #004d97;
  color: #004d97;
}

@media (min-width: 576px) {
  .service-locations-menu {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0.5rem;
  }
}

@media (min-width: 768px) {
  .service-locations .gallery-thumbs .swiper-wrapper {
    overflow-y: scroll;
    height: 640px;
  }

  .service-locations .gallery-thumbs .swiper-button-next,
  .service-locations .gallery-thumbs .swiper-button-prev {
    display: none;
  }

  .service-locations-pic {
    margin-top: 0;
    padding-left: 0;
  }

  .service-locations-pic iframe {
    min-height: 760px;
  }
}

@media (min-width: 992px) {
  .service-locations .gallery-thumbs .swiper-wrapper {
    height: 640px;
  }

  .service-locations-item.swiper-slide {
    height: 160px !important;
  }
}

@media (min-width: 1200px) {
  .service-locations-txt {
    padding: 0 4rem;
  }
}

/*------------------------------------*\
    PARTNERS
\*------------------------------------*/
.partners {
  padding: 0 0 5rem;
}

.partners .row {
  margin-left: 0;
  margin-right: 0;
}

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

.partners-item a {
  text-align: center;
}

.partners-item a::before {
  content: '';
  border: 5px solid #004d97;
  position: absolute;
  top: -15px;
  right: -15px;
  bottom: -15px;
  left: -15px;
  opacity: 0;
  -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;
}

.partners-item a:hover::before,
.partners-item a:focus::before {
  top: -5px;
  right: -5px;
  bottom: -5px;
  left: -5px;
  opacity: 1;
}

/*------------------------------------*\
    BUSINESS
\*------------------------------------*/
.business {
  background-color: #ffffff;
  padding: 3rem 0;
  position: relative;
  top: -3.5rem;
  margin-bottom: -3.5rem;
}

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

@media (min-width: 576px) {
  .business {
    background: url(../images/business-bg.jpg) center bottom no-repeat;
    background-size: cover;
  }
}

@media (min-width: 992px) {
  .business {
    padding: 8rem 0 3rem;
  }

  .business>.container {
    max-width: 1400px;
  }
}

.business-desc {
  text-align: center;
  margin: 2rem 0;
}

.business-desc p {
  text-align: justify;
  margin-bottom: 2rem;
}

.business-desc p span {
  display: inline;
  color: #004d97;
  font-weight: bold;
}

@media (min-width: 576px) {
  .business-desc {
    margin: 5rem 0;
  }

  .business-desc p {
    text-align: center;
  }
}

@media (min-width: 992px) {
  .business-desc {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .business-desc {
    padding: 0 5rem;
  }
}

.business-item {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 115px;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.business-txt {
  max-width: 280px;
  margin-top: 2rem;
}

.business-txt h3 {
  color: #004d97;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.25rem;
}

.business-txt p {
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  margin-bottom: 0;
}

.business-group-secondary .business-item-secondary {
  background: transparent;
  display: none;
}

.business-group-secondary .business-item-secondary .business-pic {
  text-align: center;
}

@media (min-width: 576px) {
  .business-item {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: url(../images/business-bg.png) 70% center no-repeat;
    text-align: left;
    width: 455px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }

  .business-txt {
    padding-left: 1rem !important;
  }

  .business-txt {
    margin-top: 0;
  }

  .business-group-secondary .business-item-secondary {
    display: block;
  }
}

@media (min-width: 992px) {
  .business-item {
    width: auto;
  }

  .business-txt {
    padding-left: 0 !important;
  }

  .business-group-secondary .business-item {
    background: url(../images/business-bg-02.png) 30% center no-repeat;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .business-group-secondary .business-pic {
    text-align: right;
  }

  .business-group-secondary .business-item-secondary {
    background: transparent;
    margin-right: 9rem;
  }

  .business-group-secondary .business-item-secondary .business-pic {
    text-align: right;
  }
}

@media (min-width: 1600px) {
  .business-item {
    background: url(../images/business-bg.png) right center no-repeat;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 455px;
  }

  .business-txt {
    padding-left: 2rem !important;
  }

  .business-group-primary .business-item {
    margin-left: 0;
    margin-right: auto;
  }

  .business-group-primary .business-item:nth-child(odd) {
    margin-left: 7rem;
  }

  .business-group-primary .business-item:nth-child(even) {
    margin-left: 4rem;
  }

  .business-group-primary .business-item:nth-child(3) {
    margin-left: 0;
  }

  .business-group-primary .business-item:nth-child(3) .business-pic {
    text-align: center;
  }

  .business-group-secondary .business-item {
    background: url(../images/business-bg-02.png) left center no-repeat;
    margin-left: auto;
    margin-right: 0;
  }

  .business-group-secondary .business-item:nth-child(odd) {
    margin-right: 7rem;
  }

  .business-group-secondary .business-item:nth-child(even) {
    margin-right: 4rem;
  }

  .business-group-secondary .business-item:nth-child(3) {
    margin-right: 0;
  }

  .business-group-secondary .business-item:nth-child(3) .business-pic {
    text-align: center;
  }

  .business-group-secondary .business-item-secondary {
    background: transparent;
  }
}

/*------------------------------------*\
    RECRUIT
\*------------------------------------*/
.recruit {
  padding: 3rem 0;
}

.recruit>section {
  padding: 2rem 0;
}

.recruit .page-title-secondary h2 {
  margin-bottom: 2rem;
}

.recruit .content p {
  font-size: 1rem;
}

.recruit-item {
  margin-bottom: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.recruit-txt {
  font-size: 1.0625rem;
  text-align: justify;
}

.recruit-system .page-title-secondary h2 {
  margin-bottom: 1rem;
}

.recruit-system-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.recruit-system-txt {
  padding-bottom: 3rem;
}

.recruit-system-txt p:last-child {
  margin-bottom: 0;
}

.recruit-system-pic {
  text-align: center;
}

@media (min-width: 992px) {
  .recruit-system-txt {
    padding-top: 3rem;
    padding-bottom: 0;
  }
}

@media (min-width: 1600px) {
  .recruit-system-txt {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 48%;
    flex: 0 0 48%;
    max-width: 48%;
  }

  .recruit-system-pic {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 52%;
    flex: 0 0 52%;
    max-width: 52%;
  }
}

.recruit-cause .content {
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.recruit-cause-item {
  text-align: center;
}

.recruit-cause-item+.recruit-cause-item {
  border-left: 1px dashed rgba(0, 0, 0, 0.25);
}

.recruit-cause-txt {
  margin-top: 2rem;
}

.recruit-cause-txt h3 {
  color: #004d97;
  font-size: 1.5625rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.recruit-cause-txt p {
  text-align: justify;
}

@media (min-width: 576px) {
  .recruit-cause-txt {
    margin-top: 5rem;
  }

  .recruit-cause-txt p {
    text-align: center;
  }
}

@media (min-width: 1200px) {
  .recruit-cause-txt {
    padding: 0 2.5rem;
  }
}

/*------------------------------------*\
    CONTACT
\*------------------------------------*/
.contact-info {
  border-bottom: 1px solid rgba(154, 154, 154, 0.5);
  font-size: 1.0625rem;
  line-height: 1.8rem;
  text-align: justify;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}

.contact .form .btn-wrap {
  margin-top: 0;
}

.contact .form .btn {
  font-size: 1.0625rem;
}

@media (min-width: 576px) {
  .contact-info {
    text-align: center;
  }
}

@media (min-width: 1200px) {
  .contact .container {
    max-width: 1024px;
    margin: 0 auto;
  }
}

/*------------------------------------*\
    COMPETITION
\*------------------------------------*/
.competition {
  padding-bottom: 0;
}

.competition-primary {
  background: url(../images/competition-bg.jpg) center bottom no-repeat #ffffff;
  padding-bottom: 4rem;
}

.competition .menu-item {
  margin-top: 0;
}

.competition .menu-item:nth-child(3),
.competition .menu-item:nth-child(4) {
  margin-top: 2rem;
}

.competition .page-title {
  text-align: center;
  margin-bottom: 3rem;
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 70px;
}

.competition .page-title h2 {
  letter-spacing: 0.2rem;
  padding-bottom: 0;
  margin-bottom: 0.5rem;
}

.competition .page-title h2::after {
  display: none;
}

.competition .page-title p {
  margin-bottom: 0;
}

.competition .page-title-awards {
  background: url(../images/awards-text.svg) center center no-repeat;
}

.competition .page-title-finals {
  background: url(../images/finals-text.svg) center center no-repeat;
}

.competition .game-item {
  border-top: none;
}

.competition-wrap {
  margin-left: 0;
  margin-right: 0;
}

.competition-item {
  border-left: 1px dashed rgba(0, 0, 0, 0.25);
  text-align: center;
  padding: 0 2rem;
  margin-bottom: 3rem;
}

.competition-item:last-child {
  border-right: 1px dashed rgba(0, 0, 0, 0.25);
}

.competition-txt {
  margin-top: 2rem;
}

.competition-txt h3 {
  color: #004d97;
  font-size: 1.0625rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.competition-txt p {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  color: #000000;
  font-size: 1.0625rem;
  font-weight: bold;
  line-height: 1.5rem;
  text-align: center;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.competition-txt p strong {
  font-size: 1.3125rem;
}

.competition-txt p span {
  display: block;
  color: #666666;
  font-size: 0.875rem;
  letter-spacing: normal;
}

.competition-txt p:last-child {
  border-bottom: none;
}

.competition-tabs .nav-item {
  width: 33.33%;
}

.competition-tabs .nav-link {
  border: none;
  border-radius: 0;
  background-color: #004d97;
  color: #ffffff;
  font-size: 1.3125rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.25rem;
}

.competition-tabs .nav-link:hover,
.competition-tabs .nav-link:focus,
.competition-tabs .nav-link.active {
  background-color: #f03e30;
  color: #ffffff;
}

.competition-tabs .tab-content {
  border-left: 1px dashed rgba(0, 0, 0, 0.25);
  border-right: 1px dashed rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  color: #000000;
  font-size: 1.0625rem;
  letter-spacing: 0.25rem;
  line-height: 1.5rem;
  margin-top: 2rem;
  padding: 2rem 1rem;
  position: relative;
}

.competition-tabs .tab-content::after {
  content: '';
  width: auto;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
}

.competition-tabs .tab-content .title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  color: #004d97;
  font-weight: bold;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.competition-tabs .tab-pane>.row {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.competition-tabs .tab-pane>.row>div {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .competition .menu-item {
    margin-top: 0;
  }

  .competition .menu-item:nth-child(3),
  .competition .menu-item:nth-child(4) {
    margin-top: 0;
  }

  .competition-tabs .tab-content {
    padding: 2rem 4rem 3rem;
  }
}

@media (min-width: 1200px) {
  .competition-item {
    padding: 0 6rem;
  }
}

.competition-secondary {
  background: url(../images/competition-bg-02.jpg) center bottom no-repeat #eeeff0;
  padding: 4.5rem 0;
}

.competition-secondary .page-title {
  margin-bottom: 4rem;
}

.competition-secondary .competition-awards .competition-item {
  border-left: none;
  padding: 0 2rem;
}

.competition-secondary .competition-awards .competition-item:last-child {
  border-right: none;
}

.competition-secondary .competition-awards .competition-txt {
  margin-top: 1.5rem;
}

.competition-secondary .competition-awards .competition-txt h3 {
  color: #f03e30;
  font-size: 1.5rem;
}

.competition-secondary .competition-awards .competition-txt p {
  border-bottom: none;
  font-weight: normal;
  padding-bottom: 1rem;
  margin-bottom: 0;
}

.competition-secondary .competition-awards .competition-txt span {
  border-radius: 25px;
  border: 1px solid #004d97;
  color: #000000;
  font-size: 1.0625rem;
  font-weight: bold;
  letter-spacing: 0.125rem;
  line-height: 30px;
  width: 65px;
  height: 30px;
}

.competition-third {
  background: url(../images/competition-bg-03.jpg) center bottom no-repeat #ffffff;
  padding-bottom: 4rem;
}

.competition-methods .page-title {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: left;
  margin-bottom: 1rem;
}

.competition-methods .page-title h2 {
  margin-bottom: 0;
}

.competition-methods-content {
  position: relative;
}

.competition-methods-content::before {
  content: '';
  width: 1px;
  height: auto;
  background-color: #004d97;
  position: absolute;
  top: 5px;
  bottom: 0;
  left: 17px;
}

.competition-methods-item {
  padding-left: 4rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.competition-methods-item::before {
  content: '';
  width: 35px;
  height: 35px;
  background-image: url(../images/competition-methods-icon.svg);
  position: absolute;
  top: 0.25rem;
  left: 1rem;
}

.competition-methods-pic {
  margin-bottom: 2rem;
}

.competition-methods-txt p {
  font-size: 1.0625rem;
}

.competition-methods-txt p.note {
  color: #004d97;
  padding-left: 2rem;
  position: relative;
}

.competition-methods-txt p.note::before {
  content: '';
  width: 25px;
  height: 25px;
  background-image: url(../images/competition-methods-icon-02.svg);
  position: absolute;
  top: 4px;
  left: 0;
}

.competition-methods-txt .btn-wrap {
  text-align: left;
  margin: 1rem 0 2rem;
}

.competition-methods-txt .btn-wrap .btn {
  width: 200px;
  height: auto;
  line-height: 1.5rem;
}

@media (min-width: 576px) {
  .competition-methods-txt .btn-wrap .btn {
    width: 310px;
    height: 50px;
    line-height: 50px;
  }
}

@media (min-width: 992px) {
  .competition-methods-item {
    padding-left: 6rem;
  }
}

.competition-award {
  padding-bottom: 6rem;
  margin-top: -2rem;
}

.competition-award .game-item {
  background: #ebecee;
  background: -o-linear-gradient(top, #ebecee 0%, #ebecee 50%, #b5d5fa 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#ebecee), color-stop(50%, #ebecee), to(#b5d5fa));
  background: linear-gradient(to bottom, #ebecee 0%, #ebecee 50%, #b5d5fa 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebecee', endColorstr='#b5d5fa', GradientType=0);
}

.competition-award .game-item .table thead th {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.competition-award-item {
  margin-bottom: 0.5rem;
}

.competition-teamwork .page-title {
  margin-bottom: 2rem;
}

.competition-teamwork .page-title p {
  line-height: 1.5rem;
}

.competition-teamwork .competition-wrap-secondary {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.competition-teamwork .competition-wrap-secondary .competition-item {
  padding: 1rem;
  margin-bottom: 0;
}

.competition-teamwork .competition-wrap-secondary .competition-txt {
  margin-top: 0;
}

.competition-teamwork .competition-wrap-secondary .competition-txt p {
  border-bottom: none;
  color: #666666;
  font-weight: normal;
  line-height: 2rem;
  padding-bottom: 0;
  margin-bottom: 0;
}

.competition-teamwork .competition-wrap-third {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.competition-teamwork .competition-wrap-third .competition-item {
  border: none;
}

@media (min-width: 576px) {
  .competition-award {
    padding-bottom: 6rem;
    margin-top: -4rem;
  }
}

@media (min-width: 1200px) {
  .competition-teamwork .competition-wrap .competition-item {
    padding: 1rem 3rem;
  }
}


/*------------------------------------*\
    PRIVACY
\*------------------------------------*/
.privacy h3 {
  color: #004d97;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.125rem;
  margin-bottom: 0.5rem;
}

.privacy h4 {
  color: #004d97;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.125rem;
  margin-bottom: 0.5rem;
}

.privacy p b {
  margin-right: 0.5rem;
}

@media (min-width: 576px) {
  .privacy h3 {
    font-size: 1.5rem;
    letter-spacing: 0.25rem;
  }

  .privacy h4 {
    font-size: 1.3125rem;
    letter-spacing: 0.25rem;
  }
}