@charset "UTF-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, ar, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}

.hover:hover, .navbar__user-link:hover {
  text-decoration: underline;
}

body {
  font-family: "微軟正黑體", sans-serif;
  font-weight: 400;
  color: #222222;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
  height: 100%;
  background: #fff;
}
@media (max-width: 991px) {
  body {
    padding-top: 72px;
  }
}
@media (max-width: 767px) {
  body {
    padding-top: 60px;
  }
}

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

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

a {
  color: #528fd0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

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

a:active {
  outline: none;
}

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

.container {
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
    padding-right: 0px;
    padding-left: 0px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1150px;
  }
}
@media (min-width: 1400px) {
  .container {
    width: 1350px;
  }
}

.btn {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: none;
  padding: 19px;
  min-width: 220px;
  border-radius: 30px;
  cursor: pointer;
  display: inline-block;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.13);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.13);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.btn--blue {
  color: #fff;
  background: #528fd0;
}
.btn--gray {
  color: #fff;
  background: #bfbfbf;
}
.btn--white {
  border: 1px solid #528fd0;
  color: #528fd0;
  background: #fff;
}
.btn--sm {
  padding: 8px 17px;
  min-width: auto;
  margin-top: 2px;
  margin-bottom: 2px;
  font-size: 0.9375rem;
}
.btn--style2 {
  border-radius: 3px;
  padding: 8px 6px;
}
.btn:disabled, .btn [disabled] {
  cursor: not-allowed;
  background: #bfbfbf;
}
.btn:disabled:hover, .btn [disabled]:hover {
  opacity: 1;
}
.btn:hover {
  opacity: 0.8;
}
.btn__block {
  margin-top: 30px;
  text-align: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc(100% + 20px);
  margin-left: -10px;
  margin-right: -10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn__block .btn {
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .btn {
    min-width: 140px;
    padding: 16px;
  }
  .btn--sm {
    padding: 8px 17px;
    min-width: auto;
  }
  .btn__block {
    width: calc(100% + 10px);
    margin-left: -5px;
    margin-right: -5px;
  }
  .btn__block .btn {
    margin-left: 5px;
    margin-right: 5px;
  }
}

.form__label {
  font-size: 0.875rem;
  color: #000000;
  font-weight: 700;
  line-height: 40px;
  position: relative;
}
@media (max-width: 767px) {
  .form__label {
    line-height: 1.8;
  }
}
.form__label > span {
  position: absolute;
  right: -8px;
}
.form__input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  z-index: 1;
  padding: 0 15px;
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  background: #ffffff;
  border: 1px solid #dbdbdb;
  min-height: 40px;
  width: 100%;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.11) inset;
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.11) inset;
}
.form__input:disabled, .form__input [disabled] {
  background: #f6f6f6;
  cursor: not-allowed;
  -webkit-text-fill-color: #c0c0c0;
  opacity: 1;
}
.form__input:focus {
  border-color: #528fd0;
}
.form__input::-webkit-input-placeholder {
  color: #c0c0c0;
}
.form__input::-moz-placeholder {
  color: #c0c0c0;
}
.form__input:-ms-input-placeholder {
  color: #c0c0c0;
}
.form__input::-ms-input-placeholder {
  color: #c0c0c0;
}
.form__input::placeholder {
  color: #c0c0c0;
}
.form__selectBox {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
  border-radius: 4px;
}
.form__selectBox::before {
  content: " ";
  display: block;
  width: 11px;
  height: 6px;
  position: absolute;
  top: calc(50% - 4px);
  right: 12px;
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-image: url("../images/common/icon.png");
  background-position: 0 0;
}
.form__selectBox.gray {
  background: #f0f1f5;
}
.form__selectBox.gray select {
  color: #525252;
}
.form__selectBox + textarea {
  margin-top: -2px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.form__select {
  background: transparent;
  width: 100%;
  padding: 0 15px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #000000;
  border: 1px solid #dbdbdb;
  min-height: 40px;
  width: 100%;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.11) inset;
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.11) inset;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form__select::-ms-expand {
  display: none;
}
.form__select:disabled, .form__select [disabled] {
  cursor: not-allowed;
  -webkit-text-fill-color: #525252;
  opacity: 1;
}
.form__textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  z-index: 1;
  padding: 15px;
  width: 100%;
  resize: none;
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  background: #ffffff;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.11) inset;
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.11) inset;
}
.form__textarea:disabled, .form__textarea [disabled] {
  cursor: not-allowed;
  -webkit-text-fill-color: #000000;
  opacity: 1;
}
.form__textarea::-webkit-input-placeholder {
  color: #aeaeae;
}
.form__textarea::-moz-placeholder {
  color: #aeaeae;
}
.form__textarea:-ms-input-placeholder {
  color: #aeaeae;
}
.form__textarea::-ms-input-placeholder {
  color: #aeaeae;
}
.form__textarea::placeholder {
  color: #aeaeae;
}
.form__checkbox {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0;
  position: relative;
}
.form__checkbox .form__checkinput {
  opacity: 0;
  z-index: 3;
  position: relative;
  width: 18px;
  min-width: 18px;
  height: 18px;
  cursor: pointer;
  margin: 0;
}
.form__checkbox .form__checkinput:disabled + .form__checklabel {
  cursor: not-allowed;
}
.form__checkbox .form__checkinput:checked + .form__checklabel::after {
  content: "";
  display: block;
  width: 15px;
  height: 14px;
  position: absolute;
  left: 2px;
  top: calc(50% - 5px);
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-image: url("../images/common/icon.png");
  background-position: 0 -25px;
}
.form__checkbox .form__checklabel {
  position: relative;
  display: block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #222222;
  line-height: 1.2;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  min-width: 18px;
  height: 18px;
}
.form__checkbox .form__checklabel::before {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 18px;
  min-width: 18px;
  height: 18px;
  background: #f0f1f5;
  border: 1px solid #dbdbdb;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.11) inset;
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.11) inset;
}
.form__checkbox .form__checklabel span {
  margin-left: 7px;
}
.form__checkbox .form__checklabel a {
  color: #eeeeee;
  text-decoration: underline;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: color;
  transition-property: color;
}
.form__checkbox .form__checklabel a:hover {
  color: #eeeeee;
}
.form__uploadBox {
  position: relative;
}
.form__uploadBox input[type=file] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.form__uploadBox .form__upload {
  display: block;
  padding: 0 15px;
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  background: transparent;
  border: 1px solid #dbdbdb;
  min-height: 40px;
  width: 100%;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.11) inset;
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.11) inset;
  position: relative;
  cursor: pointer;
}
.form__uploadBox .form__uploadBtn {
  border-left: 1px solid #dbdbdb;
  display: inline-block;
  padding: 0 12px;
  cursor: pointer;
  font-size: 0.875rem;
  position: absolute;
  min-height: 38px;
  line-height: 38px;
  right: 0;
  z-index: -1;
  top: 0;
}
.form__dateBox {
  position: relative;
}
.form__dateBox .form__dateBtn {
  border-left: 1px solid #dbdbdb;
  display: inline-block;
  padding: 0 12px;
  cursor: pointer;
  font-size: 0.875rem;
  position: absolute;
  width: 38px;
  min-height: 38px;
  line-height: 38px;
  right: 0;
  z-index: 2;
  top: 0;
}
.form__dateBox .form__dateBtn::after {
  content: "";
  display: block;
  width: 21px;
  height: 20px;
  position: absolute;
  left: 7px;
  top: calc(50% - 9px);
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-image: url("../images/common/icon.png");
  background-position: -18px -24px;
}

.table {
  width: 100%;
}
.table--1 {
  border-collapse: collapse;
  border-top: 2px solid #525460;
  border-bottom: 1px solid #e2e2e2;
}
.table--1 td {
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
}
.table--1 .maintitle {
  background: #f8f9fc;
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
  padding: 20px;
}
@media (max-width: 991px) {
  .table--1 .maintitle {
    width: 100%;
  }
}
.table--1 .title {
  background: #f0f1f5;
  padding: 5px 15px;
  text-align: center;
}
.table--1 .content {
  padding: 10px 13px;
}
.table--1 .colspan {
  width: 50%;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (max-width: 991px) {
  .table--1 .title {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 767px) {
  .table--1 {
    display: block;
  }
  .table--1 tbody, .table--1 td {
    display: block;
  }
  .table--1 tr {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .table--1 tr:last-child td {
    border-bottom: none;
  }
  .table--1 .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: none;
    width: 110px;
  }
  .table--1 .content {
    width: calc(100% - 110px);
    border-bottom: none;
  }
  .table--1 .colspan {
    width: 100%;
  }
}
.table--2 {
  border-collapse: collapse;
  border-top: 2px solid #525460;
  border-bottom: 1px solid #e2e2e2;
  border-left: 1px solid #e2e2e2;
  font-size: 0.875rem;
}
.table--2 th, .table--2 td {
  padding: 15px 2px;
  border-right: 1px solid #e2e2e2;
  position: relative;
  text-align: center;
}
.table--2 th:after, .table--2 td:after {
  content: " ";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background: #ffffff;
}
.table--2 td {
  border-bottom: 1px solid #e2e2e2;
}
@media (max-width: 767px) {
  .table--2 td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
    border-bottom: 1px dashed #e2e2e2;
    padding: 8px 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .table--2 td::before {
    content: attr(data-title);
    display: inline-block;
    font-weight: 700;
    padding: 6px 0;
    width: 50%;
  }
  .table--2 td:last-child {
    border-bottom: 2px solid #e2e2e2;
  }
}
.table--2__head {
  background: #f0f1f5;
  font-weight: 700;
}
@media (max-width: 767px) {
  .table--2__head {
    display: none;
  }
}
.table--2__body tr:nth-child(even) {
  background-color: #f8f9fc;
}
.table--3 {
  border-collapse: collapse;
  font-size: 0.875rem;
  border-radius: 4px;
  overflow: hidden;
}
.table--3 th, .table--3 td {
  padding: 15px 2px;
  border-right: 1px solid #e2e2e2;
  position: relative;
  text-align: center;
}
.table--3 th:after, .table--3 td:after {
  content: " ";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background: #ffffff;
}
.table--3 td:first-child {
  border-left: 1px solid #e2e2e2;
}
@media (max-width: 767px) {
  .table--3 td:first-child {
    border-left: 0;
  }
}
@media (max-width: 767px) {
  .table--3 td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
    border-bottom: 1px dashed #e2e2e2 !important;
    padding: 8px 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    border-right: 0;
    border-top: 0;
    word-break: break-all;
  }
  .table--3 td::before {
    content: attr(data-title);
    display: inline-block;
    font-weight: 700;
    padding: 6px 0;
    width: 50%;
  }
  .table--3 td > span {
    width: 50%;
  }
  .table--3 td:last-child {
    border-bottom: 2px solid #e2e2e2;
  }
}
.table--3__head {
  background: #f8f9fc;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.11) inset;
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.11) inset;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border: 1px solid #dbdbdb;
}
@media (max-width: 767px) {
  .table--3__head {
    display: none;
  }
}
@media (max-width: 767px) {
  .table--3__body td:last-child {
    border-bottom: 0 !important;
  }
}
.table--3__body tr:nth-child(even) {
  background-color: #f8f9fc;
}
@media (max-width: 767px) {
  .table--3__body tr:first-child {
    border-top: 0;
  }
}
@media (max-width: 767px) {
  .table--3__body tr {
    border-top: 2px solid #e2e2e2;
  }
}

.header {
  background: #ffffff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1030;
}
@media (max-width: 991px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
}

.navbar {
  width: 100%;
  position: relative;
}
.navbar.active .navbar__body {
  top: 0;
}
.navbar__title {
  text-indent: -9999px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -99;
}
.navbar__head {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  padding: 0 18px;
  height: 72px;
}
@media (max-width: 991px) {
  .navbar__head {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  .navbar__head .navbar__user {
    display: none;
  }
}
@media (max-width: 767px) {
  .navbar__head {
    padding: 12px 14px;
    height: 60px;
  }
  .navbar__head::before {
    height: 60px;
  }
}
@media (max-width: 480px) {
  .navbar__head {
    padding: 13.5px;
  }
}

@media (max-width: 991px) {
  .navbar__logoNoneA {
    position: relative;
    z-index: 3;
  }
}

@media (max-width: 991px) {
  .navbar__logo {
    position: relative;
    z-index: 3;
  }
}
.navbar__logo-img {
  display: inline-block;
}
.navbar__logo-img img {
  width: 278px;
  display: block;
}
@media (max-width: 767px) {
  .navbar__logo-img img {
    width: 220px;
  }
}
@media (max-width: 480px) {
  .navbar__logo-img img {
    width: 200px;
  }
}
@media (max-width: 374px) {
  .navbar__logo-img img {
    width: 140px;
  }
}
@media (max-width: 315px) {
  .navbar__logo-img img {
    width: 100px;
  }
}
.navbar__logo-text {
  position: relative;
  font-size: 1.875rem;
  font-weight: 700;
  color: #4b4f54;
  letter-spacing: 0.05em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1em;
  margin-left: 24px;
  padding-left: 24px;
}
.navbar__logo-text .highlight {
  margin-left: 15px;
  color: #528fd0;
}
@media (max-width: 1199px) {
  .navbar__logo-text {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .navbar__logo-text {
    font-size: 1.125rem;
    letter-spacing: 0;
    line-height: 1.1;
    display: inline-block;
    margin-left: 10px;
    padding-left: 10px;
  }
  .navbar__logo-text .highlight {
    display: block;
    margin-left: 0;
  }
}
@media (max-width: 480px) {
  .navbar__logo-text {
    font-size: 0.875rem;
  }
}
@media (max-width: 315px) {
  .navbar__logo-text {
    font-size: 0.75rem;
  }
}
.navbar__logo-text::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 28px;
  background: #d4d4d4;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 1199px) {
  .navbar__logo-text::before {
    height: 24px;
  }
}
@media (max-width: 767px) {
  .navbar__logo-text::before {
    height: 38px;
  }
}
@media (max-width: 480px) {
  .navbar__logo-text::before {
    height: 32px;
  }
}
.navbar__user {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar__user-item {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #393939;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 260px;
  line-height: 1.3em;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 1.3em;
}
@media (max-width: 991px) {
  .navbar__user-item {
    color: #fff;
    max-width: calc(100% - 100px);
  }
}
.navbar__user-photo {
  width: 39px;
  height: 39px;
  border-radius: 39px;
  border: 2px solid #fff;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: 8px;
}
.navbar__user-photo img {
  display: block;
}
.navbar__user-link {
  margin-left: 10px;
}
@media (max-width: 991px) {
  .navbar__user-link {
    color: #fff;
    text-decoration: underline;
  }
}
.navbar__toggle {
  display: none;
}
@media (max-width: 991px) {
  .navbar__toggle {
    display: block;
    width: 24px;
    height: 19px;
    position: relative;
    z-index: 3;
  }
}
.navbar__toggle-item {
  width: 24px;
  height: 3px;
  background: #528fd0;
  margin-top: 5px;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: width, -webkit-transform;
  transition-property: width, -webkit-transform;
  transition-property: transform, width;
  transition-property: transform, width, -webkit-transform;
}
.navbar__toggle-item:first-child {
  margin-top: 0;
}
.navbar__body {
  opacity: 1;
  background: #d5e4f1;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.08);
}
.navbar__body .navbar__user {
  display: none;
}
@media (max-width: 991px) {
  .navbar__body {
    position: absolute;
    top: -999px;
    left: 0;
    z-index: 4;
    width: 100%;
    height: 100vh;
    background: #528fd0;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    padding-top: 80px;
    padding-bottom: 70px;
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
    -webkit-transition-property: top;
    transition-property: top;
  }
  .navbar__body .navbar__user {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 100%;
  }
}
.navbar__close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 30px;
  right: 15px;
  z-index: 1;
  display: none;
}
@media (max-width: 991px) {
  .navbar__close {
    display: block;
  }
}
.navbar__close-item {
  width: 30px;
  height: 3px;
  background: #fff;
}
.navbar__close-item:first-child {
  -webkit-transform: rotate(45deg) translate(15px, 12px);
          transform: rotate(45deg) translate(15px, 12px);
}
.navbar__close-item:last-child {
  -webkit-transform: rotate(-45deg) translate(-10px, 13px);
          transform: rotate(-45deg) translate(-10px, 13px);
}
.navbar__overlay {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 0;
  z-index: -999;
  opacity: 0;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.navbar__overlay::before {
  content: "";
  display: block;
  width: 22px;
  height: 14px;
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-image: url("../images/common/icon.png");
  background-position: -22px -7px;
  -webkit-transform: translate(30px, 40px);
          transform: translate(30px, 40px);
}
@media (max-width: 374px) {
  .navbar__overlay::before {
    -webkit-transform: translate(20px, 40px);
            transform: translate(20px, 40px);
  }
}
@media (max-width: 991px) {
  .navbar__overlay.active {
    z-index: 1;
    opacity: 1;
    height: 100vh;
  }
}

.menu {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc(100% + 60px);
  margin-left: -30px;
  margin-right: -30px;
  list-style: none;
}
@media (max-width: 1199px) {
  .menu {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media (max-width: 991px) {
  .menu {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.menu__item {
  position: relative;
  margin-left: 30px;
  margin-right: 30px;
}
@media (max-width: 1199px) {
  .menu__item {
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media (max-width: 991px) {
  .menu__item {
    margin-left: 0;
    position: static;
  }
  .menu__item.active .dropdown__menu {
    background: #528fd0;
    left: auto;
    right: 0;
    visibility: visible;
    opacity: 1;
  }
}
@media (min-width: 992px) {
  .menu__item:hover .dropdown__btn {
    color: #528fd0;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .menu__item:hover .dropdown__btn {
    background: #f6f6f6;
  }
}
@media (min-width: 992px) {
  .menu__item:hover .dropdown__btn::after {
    background-size: 50px 50px;
    background-repeat: no-repeat;
    background-image: url("../images/common/icon.png");
    background-position: -11px 0;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
@media (min-width: 992px) {
  .menu__item:hover .dropdown__menu {
    top: 54px;
    z-index: 1;
    visibility: visible;
    opacity: 1;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .menu__item:hover .dropdown__menu {
    background: #e1e1e1;
  }
}

.dropdown__btn {
  font-size: 1rem;
  font-weight: 700;
  color: #525252;
  position: relative;
  cursor: pointer;
  padding: 17px 20px 17px 0;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: color;
  transition-property: color;
}
@media (max-width: 991px) {
  .dropdown__btn {
    line-height: 1.2em;
    padding: 22px 55px 22px 30px;
    font-size: 1.125rem;
    color: #ffffff;
  }
}
.dropdown__btn::after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 6px;
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-image: url("../images/common/icon.png");
  background-position: 0 0;
  vertical-align: middle;
  position: absolute;
  top: calc(50% - 3px);
  right: 0;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
@media (max-width: 991px) {
  .dropdown__btn::after {
    right: 30px;
    top: calc(50% - 3px);
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease;
    -webkit-transition-duration: 0s;
            transition-duration: 0s;
    background-size: 50px 50px;
    background-repeat: no-repeat;
    background-image: url("../images/common/icon.png");
    background-position: -22px 0;
  }
}
.dropdown a.dropdown__btn {
  display: block;
  padding-right: 0;
}
.dropdown a.dropdown__btn::after {
  display: none;
}
.dropdown__menu {
  display: block;
  position: absolute;
  top: 100px;
  left: 0;
  z-index: -99;
  background: #fff;
  border: 1px solid #e6e3e3;
  -webkit-box-shadow: 0 4px rgba(0, 0, 0, 0.18);
          box-shadow: 0 4px rgba(0, 0, 0, 0.18);
  padding: 22px 20px 30px;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: top, opacity;
  transition-property: top, opacity;
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 991px) {
  .dropdown__menu {
    top: 0;
    left: auto;
    right: -999px;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    width: 80%;
    height: 100vh;
    border: none;
    box-shadow: none;
    padding: 30px 30px 90px 30px;
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease;
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
    -webkit-transition-property: right, opacity;
    transition-property: right, opacity;
    overflow-x: hidden;
    overflow-y: auto;
  }
}
.dropdown__menu-item {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #7a7f84;
  white-space: nowrap;
  display: block;
  margin-top: 15px;
}
@media (max-width: 991px) {
  .dropdown__menu-item {
    text-align: left;
    margin-top: 0;
    padding: 20px 0 10px 0;
    position: relative;
    font-size: 1.125rem;
    border-bottom: 1px solid #ffffff;
    color: white;
  }
  .dropdown__menu-item::after {
    content: "";
    display: inline-block;
    width: 11px;
    height: 7px;
    background-size: 50px 50px;
    background-repeat: no-repeat;
    background-image: url("../images/common/icon.png");
    background-position: 0 0;
    vertical-align: middle;
    position: absolute;
    top: 50%;
    right: 30px;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    font-size: 1.125rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .dropdown__menu-item::after {
    display: none;
  }
}
.dropdown__menu-item:first-child, .dropdown__menu-item:nth-child(2) {
  margin-top: 0;
}
@media (min-width: 992px) {
  .dropdown__menu-item:hover {
    color: #528fd0;
  }
}
.dropdown__menu-title {
  display: none;
  font-size: 1.375rem;
  font-weight: 700;
  color: #ffffff;
}
@media (max-width: 991px) {
  .dropdown__menu-title {
    display: block;
  }
}

@media (max-width: 767px) {
  .page4 .w-105, .page4 .w-128, .page4 .w-488 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .page4 .inline--flex {
    display: block;
  }
  .page4 .inline--flex .form__selectBox:last-child {
    margin-bottom: 0;
  }
  .page4 .inline--flex > * {
    margin-left: 0;
    margin-bottom: 10px;
  }
}

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

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

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

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

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

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

@media (max-width: 991px) and (min-width: 767px) {
  .scroll--ipad {
    overflow-x: auto;
  }
  .scroll--ipad > * {
    width: 200% !important;
  }
}

.scroll--y {
  overflow-y: auto;
  height: 500px;
  border: 1px solid #efefef;
  border-radius: 4px;
}

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

.ta--left {
  text-align: left !important;
}

.blue {
  color: #528fd0;
}

.red {
  color: #fa554b;
}

.wrap {
  padding-top: 50px;
  padding-bottom: 70px;
}

.w-auto {
  width: auto;
}

.w-105 {
  width: 105px;
}

.w-128 {
  width: 128px;
}

.w-200 {
  width: 200px;
}

.w-248 {
  width: 248px;
}

.w-488 {
  width: 488px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-20 {
  margin-left: 20px;
}

.mt-50 {
  margin-top: 50px;
}

.gotop {
  width: 60px;
  height: 60px;
  background: url("../images/common/gotop.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center top;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 999;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  display: none;
}
.gotop:hover {
  opacity: 0.8;
}

.pagination__result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 15px;
}
.pagination .result__text {
  color: #000000;
  font-size: 0.875rem;
  font-weight: 700;
}
.pagination__block {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .pagination__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.pagination__block ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .pagination__block ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.pagination__block ul li {
  list-style: none;
  border: 1px solid #ddd;
  border-right: 0;
}
.pagination__block ul li a {
  display: block;
  padding: 10px 12px;
  font-size: 0.875rem;
  color: #525252;
}
.pagination__block ul li.disabled a {
  color: #c0c0c0;
  cursor: not-allowed;
}
.pagination__block ul li.disabled:hover a {
  background: #ffffff;
  color: #c0c0c0;
}
.pagination__block ul li:hover a, .pagination__block ul li .active a {
  background: #528fd0;
  color: #ffffff;
}
.pagination__block ul li:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border: 1px solid #ddd;
}
.pagination__block ul li:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border: 1px solid #ddd;
}
.pagination__gotopage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 20px;
}
@media (max-width: 767px) {
  .pagination__gotopage {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: 0;
    margin-top: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.pagination__gotopage span {
  display: inline-block;
  margin: 0 10px;
}
@media (max-width: 767px) {
  .pagination__gotopage span {
    line-height: 1.4;
  }
}
.pagination__gotopage .form__input {
  width: 40px;
}