*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  @font-face {
    font-family: 'lora';
    src: url(../font/Lora-Regular.ttf)  format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }

  body {
    margin: 0;
    font-family: 'lora';
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }

  hr {
    margin: 1rem 0;
    color: inherit;
    background-color: currentColor;
    border: 0;
    opacity: 0.25;
  }

  hr:not([size]) {
    height: 1px;
  }

  h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-family: "lora", serif;
    font-weight: 700;
    line-height: 1.2;
  }

  h1, .h1 {
    font-size: calc(1.375rem + 1.5vw);
  }

  @media (min-width: 1200px) {
    h1, .h1 {
      font-size: 2.5rem;
    }
  }

  h2, .h2 {
    font-size: calc(1.325rem + 0.9vw);
  }

  @media (min-width: 1200px) {
    h2, .h2 {
      font-size: 2rem;
    }
  }

  h3, .h3 {
    font-size: calc(1.3rem + 0.6vw);
  }

  @media (min-width: 1200px) {
    h3, .h3 {
      font-size: 1.75rem;
    }
  }

  h4, .h4 {
    font-size: calc(1.275rem + 0.3vw);
  }

  @media (min-width: 1200px) {
    h4, .h4 {
      font-size: 1.5rem;
    }
  }

  h5, .h5 {
    font-size: 1.25rem;
  }

  h6, .h6 {
    font-size: 1rem;
  }

  ol, ul {
    padding-left: 2rem;
  }

  ol, ul, dl {
    margin-top: 0;
    margin-bottom: 1rem;
  }

  p {
    margin-top: 0;
    margin-bottom: 1rem;
  }

  b,
  strong {
    font-weight: bolder;
  }

  small, .small {
    font-size: 0.8em;
  }

  .text-gray-500 {
    color: #a2a7ad;
  }

  a {
    color: #ff3f3f;
    text-decoration: none;
  }

  a:hover {
    color: #f20000;
  }

  a {
    display: inline-block;
  }

  a:not([href]):not([class]), a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
  }

  img,
  svg {
    vertical-align: middle;
  }

  label {
    display: inline-block;
  }

  button {
    border-radius: 0;
  }

  button:focus:not(:focus-visible) {
    outline: 0;
  }

  input,
  button,
  select,
  optgroup,
  textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
  }

  button,
  select {
    text-transform: none;
  }

  [role="button"] {
    cursor: pointer;
  }

  select {
    word-wrap: normal;
  }

  select:disabled {
    opacity: 1;
  }

  [list]::-webkit-calendar-picker-indicator {
    display: none;
  }

  button,
  [type="button"],
  [type="reset"],
  [type="submit"] {
    -webkit-appearance: button;
  }

  button:not(:disabled),
  [type="button"]:not(:disabled),
  [type="reset"]:not(:disabled),
  [type="submit"]:not(:disabled) {
    cursor: pointer;
  }

  ::-moz-focus-inner {
    padding: 0;
    border-style: none;
  }

  textarea {
    resize: vertical;
  }

  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }

  ::-webkit-color-swatch-wrapper {
    padding: 0;
  }

  ::-webkit-file-upload-button {
    font: inherit;
  }

  ::file-selector-button {
    font: inherit;
  }

  ::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
  }

  .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
  }

  .row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
  }

  .container{
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-right: auto;
    margin-left: auto;
  }

  @media (min-width: 576px) {
    .container {
      max-width: 540px;
    }
  }

  @media (min-width: 768px) {
    .container{
      max-width: 720px;
    }
  }

  @media (min-width: 992px) {
    .container{
      max-width: 960px;
    }
  }

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

  @media (min-width: 1400px) {
    .container{
      max-width: 1320px;
    }
  }

  .navbar > .container {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
  }

  .navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  @media (min-width: 992px) {
    .navbar-expand-lg {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
  }

  .py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .bg-white {
    --bs-bg-opacity: 1;
    background-color: #fff !important;
  }

  .text-center {
    text-align: center !important;
  }

  .navbar-brand {
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    white-space: nowrap;
  }

  .mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .navbar-light .navbar-brand {
    color: #ff3f3f;
  }

  .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
    color: #ff3f3f;
  }

  .mb-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-0 {
    margin-bottom: 0 !important;
  }

  .text-uppercase {
    text-transform: uppercase !important;
  }

  .text-gray {
    color: #aaa !important;
  }

  .text-uppercase {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    letter-spacing: 0.1em;
  }

  .text-sm {
    font-size: 0.875rem;
  }

  .bg-light {
    --bs-bg-opacity: 1;
    background-color: rgba(248,249,250,1) !important;
  }

  .border-gray {
    border-color: #eee !important;
  }

  .navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0;
    transition: box-shadow 0.15s ease-in-out;
  }

  .border-0 {
    border: 0 !important;
  }

  .navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
  }


  .navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23000' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  @media (min-width: 992px) {
    .navbar-expand-lg .navbar-toggler {
        display: none;
    }
  }

  .navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
  }

  .text-center {
    text-align: center !important;
  }

  .text-muted {
    --bs-text-opacity: 1;
    color: #6c757d !important;
  }

  .text-primary {
    --bs-text-opacity: 1;
    color: rgba(235,170,61,1) !important;
  }

  .text-white {
    --bs-text-opacity: 1;
    color: #fff !important;
  }

  .text-dark {
    --bs-text-opacity: 1;
    color: #000 !important;
  }

  @media (min-width: 992px) {
    .text-lg-start {
        text-align: left !important;
    }

    .text-lg-end {
      text-align: right !important;
    }
  }

  @media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
  }

  @media (max-width: 991px) {
    .navbar-expand-lg .navbar-collapse {
        display: none;
    }
  }

  @media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
    }
  }

  .navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
  }

  .px-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    font-weight: 400;
    color: #ff3f3f;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  }

  .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
  }

  @media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }
  }

  .navbar-light .navbar-nav .nav-link {
    color: rgba(0,0,0,0.75);
  }

  .nav-link:hover, .nav-link:focus {
    color: #c78415;
    text-decoration: none;
  }

  .navbar-light .navbar-nav .show > .nav-link, .navbar-light .navbar-nav .nav-link.active {
    color: #ff3f3f;
  }

  .navbar .nav-link.active {
    font-weight: 700;
  }

  .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
    color: #ff3f3f;
  }

  section {
    overflow: hidden;
  }

  .pt-5 {
    padding-top: 3rem !important;
  }

  .mb-5 {
    margin-bottom: 3rem !important;
  }

  @media (min-width: 576px) {
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .text-sm-start {
      text-align: left !important;
    }

    .text-sm-end {
      text-align: right !important;
    }
  }

  @media (min-width: 768px) {
    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333%;
    }

    .col-md-6 {
      flex: 0 0 auto;
      width: 50%;
    }
  }

  @media (min-width: 992px) {
    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66667%;
    }

    .col-lg-4 {
      flex: 0 0 auto;
      width: 33.33333%;
    }
    .col-lg-6 {
      flex: 0 0 auto;
      width: 50%;
    }
  }

  @media (min-width: 1200px) {
    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }
  }

  .img-fluid {
    width: 100%;
    height: auto;
  }

  .mb-4 {
    margin-bottom: 1.5rem !important;
  }

  .list-inline {
    padding-left: 0;
    list-style: none;
  }

  .list-inline-item {
    display: inline-block;
  }

  .align-middle {
    vertical-align: middle !important;
  }

  .me-0 {
    margin-right: 0 !important;
  }

  .list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
  }

  .fw-bold {
    font-weight: 700 !important;
  }

  .reset-anchor {
    color: inherit;
    border: none;
    background: none;
  }

  .mt-2 {
    margin-top: 0.5rem !important;
  }

  .reset-anchor:hover, .reset-anchor:focus {
    text-decoration: none;
  }

  .d-block {
    display: block !important;
  }

  .mb-1 {
    margin-bottom: 0.25rem !important;
  }

  .btn {
    display: inline-block;
    font-weight: 700;
    line-height: 1.5;
    color: #000;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    border-radius: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }

  .btn-link {
    font-weight: 700;
    color: #ff3f3f;
    text-decoration: none;
  }

  .btn:hover {
    color: #000;
    text-decoration: none;
  }

  .btn-link:hover {
    color: #c78415;
    text-decoration: underline;
  }

  .p-4 {
    padding: 1.5rem !important;
  }

  .g-2, .gy-2 {
    --bs-gutter-y: 0.5rem;
  }

  .btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
  }

  .btn-sm, .btn-group-sm > .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 0;
  }

  .me-2 {
    margin-right: 0.5rem !important;
  }

  .ms-2 {
    margin-left: 0.5rem !important;
  }

  @media (min-width: 576px) {
    .px-sm-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }
  }

  .px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }

  .form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #cccccc;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(153, 153, 153, 0.25);
  }

  .form-control-sm {
    min-height: calc(1.5em + 1rem + 2px);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 0;
  }

  .form-control::-moz-placeholder {
    color: #a2a7ad;
  }

  .form-control:-ms-input-placeholder {
    color: #a2a7ad;
  }

  .form-control::placeholder {
    color: #a2a7ad;
  }

  .form-control:disabled, .form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
  }

  .btn-dark {
    color: #fff;
    background-color: #000;
    border-color: #000;
    box-shadow: 0;
  }

  .w-100 {
    width: 100% !important;
  }

  .btn-dark:hover {
    color: #fff;
    background-color: black;
    border-color: black;
  }

  .list-unstyled {
    padding-left: 0;
    list-style: none;
  }

  .d-flex {
    display: flex !important;
  }

  .ms-3 {
    margin-left: 1rem !important;
  }

  .bg-dark {
    --bs-bg-opacity: 1;
    background-color: #000 !important;
  }

  .lead {
    font-size: 1.25rem;
    font-weight: 300;
  }
  .large{
    font-size: 3rem;
    font-weight: 700;
  }

  .list-check {
    list-style: none;
  }

  .list-check li {
    padding-left: 1rem;
    position: relative;
  }

  .list-check li::before {
    content: '鈭�';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: #ff3f3f;
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
  }

  .mb-3 {
    margin-bottom: 1rem !important;
  }

  .me-1 {
    margin-right: 0.25rem !important;
  }

  .social-link-share {
    padding: 0.45rem 1.2rem;
    color: #fff;
    background: #343a40;
    transition: all 0.3s;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .social-link-share:hover, .social-link-share:focus {
    text-decoration: none;
    color: #fff;
  }

  .g-3, .gy-3 {
    --bs-gutter-y: 1rem;
  }

  textarea.form-control {
    min-height: calc(1.5em + 1.4rem + 2px);
  }

  textarea {
    resize: vertical;
  }

  .border-bottom {
    border-bottom: 1px solid #dee2e6 !important;
  }

  .ms-auto {
    margin-left: auto !important;
  }

  @media (min-width: 992px) {
    .align-items-lg-center {
        align-items: center !important;
    }

    .mb-lg-0 {
      margin-bottom: 0 !important;
    }
  }

  .g-5, .gy-5 {
    --bs-gutter-y: 3rem;
  }

  .g-4, .gy-4 {
    --bs-gutter-y: 1.5rem;
  }


  section {
    padding: 6.25rem 0;
    overflow-x: hidden;
  }

  @media (max-width:991px){
    section {
      padding: 3rem 0 6.25rem;
    }
  }

  .align-items-center {
    align-items: center !important;
  }

  .justify-content-between {
    justify-content: space-between !important;
  }

  .justify-content-center {
    justify-content: center !important;
  }

  .pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
  }

  .page-link {
    position: relative;
    color: #343a40;
    background-color: transparent;
    border: 0 solid transparent;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    padding: 0 0;
    border-radius: 50rem !important;
      margin: 0 0.25rem;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .page-item:first-child .page-link {
    border-top-left-radius: 50rem;
    border-bottom-left-radius: 50rem;
  }

  .page-item:not(:first-child) .page-link {
    margin-left: 0;
  }

  .page-item.active .page-link {
    z-index: 3;
    color: #000;
    background-color: #e9ecef;
    border-color: transparent;
  }

  .page-link:hover {
    z-index: 2;
    color: #000;
    background-color: #e9ecef;
    border-color: transparent;
  }

  .card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0;
  }

  .card-body {
    flex: 1 1 auto;
    padding: 2rem 2rem;
  }

  .input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
  }

  .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu), .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .form-control:not(.form-control-sm):not(.form-control-lg) {
    font-size: 0.9rem;
  }

  .input-group > .form-control, .input-group > .form-select {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
  }
  .shadow-0 {
    box-shadow: none !important;
  }
  .ps-0 {
    padding-left: 0 !important;
  }

  .text-gray-700 {
    color: #495057;
  }

  .lh-1 {
    line-height: 1 !important;
  }

  .p-2 {
    padding: 0.5rem !important;
  }

  .text-gray-600 {
    color: #6c757d;
  }

  .text-reset {
    --bs-text-opacity: 1;
    color: inherit !important;
  }

  .fw-light {
    font-weight: 300 !important;
  }

  .me-4 {
    margin-right: 1.5rem !important;
  }

  .border-start {
    border-left: 1px solid #dee2e6 !important;
  }

  .border {
    border: 1px solid #dee2e6 !important;
  }

  figure {
    margin: 0 0 1rem;
  }

  .border-4 {
    border-width: 4px !important;
  }

  .px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .form-control:not(.form-control-sm):not(.form-control-lg) {
    font-size: 0.9rem;
  }

  .blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem;
  }

  .blockquote-footer {
    margin-top: -1rem;
    margin-bottom: 1rem;
    font-size: 0.8em;
    color: #6c757d;
  }

  .text-decoration-underline {
    text-decoration: underline !important;
  }

  .list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
  }

  .list-separated li {
    position: relative;
    margin-right: 0.5rem;
    padding-right: 0.5rem;
  }

  .list-separated li::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 0.8rem;
    background: #a2a7ad;
    display: block;
  }

  .list-separated li:last-of-type::after {
    display: none;
  }

  .tag {
    padding: 5px 25px;
    border: 1px solid #ddd;
    margin: 5px 0;
    color: #777;
    font-size: 0.75em;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
  }

  .tag:hover {
    background: #ff3f3f;
    color: #fff;
    border-color: #ff3f3f;
  }

  footer.footer {
    padding: 6.25rem 0;
  }

  nav{
    position: sticky !important;
    top: 0;
    z-index: 99;
  }

  .btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
  }

  .btn-secondary:hover {
    color: #fff;
    background-color: #5c636a;
    border-color: #565e64;
  }

















  .positionFixed {
    bottom: 0px;
    left: 50%;
    position: fixed;
    transform: translate(-50%, 0%);
    z-index: ff3f3f;
    width: 100%;
    background-color: #e4e4e4;
    display: flex;
    justify-content: center;
  }

  .ad-div {
    margin-bottom: 50px;
    width: 100%
  }

  .t_de {
    height: 0.2rem;
    max-width: 100%;
    line-height: 0.3rem;
    font-size: 0.6rem;
    padding: 0.5rem 0 1rem 0;
    box-sizing: border-box;
    color: #707070;
    text-align: center;
  }

  .grecaptcha-badge {
    visibility: hidden;
  }
  .positionFixed {
              bottom: 0px;
              left: 50%;
              position: fixed;
              transform: translate(-50%, 0%);
              z-index: 999;
              width: 100%;
              background-color: #e4e4e4;
              display: flex;
              justify-content: center;
          }
          .ad-div{
              margin-bottom: 50px;
              width: 100%
          }
          .t_de {
              height: 0.2rem;
              max-width: 100%;
              line-height: 0.3rem;
              font-size: 0.6rem;
              padding: 0.5rem 0 1rem 0;
              box-sizing: border-box;
              color: #707070;
              text-align: center;
          }
          .grecaptcha-badge { visibility: hidden; }
