@charset "UTF-8";
/******************************************************************************
 * Version 1.0 Release;
 * Copyright 2018
 ******************************************************************************/
@import url("https://fonts.googleapis.com/css2?family=Huninn&display=swap");
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  word-wrap: break-word;
  word-break: normal;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  line-height: 1;
  overflow-x: hidden;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
mark {
  background: #ff0;
  color: #000;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  max-width: 100%;
  background-color: transparent;
}

table > caption {
  height: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  width: 0;
}

input, select {
  vertical-align: middle;
}

/*==================== 表單元素 - 去除ios預設外觀 input ====================*/
input,
textarea,
button,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  margin: 0;
}

/*==================== 表單元素 - 去除ie預設外觀 select ====================*/
select::-ms-expand {
  display: none;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /*改寫iOS Safari中可點擊元素的高亮顏色*/
  font-size: initial;
}

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

a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/*去除focus outline-chrome預設*/
a:focus,
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: 0;
}

form {
  width: 100%;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: none;
  padding: 0;
  line-height: inherit;
  color: #333;
  overflow: hidden;
  width: 100%;
}

label {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  margin-bottom: 3px;
  font-weight: bold;
}

/*隱藏小箭頭*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  /*margin: 0;*/
}

input[type=search] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
}

input[type=radio],
input[type=checkbox] {
  margin-top: 1px \9 ;
  line-height: normal;
  vertical-align: baseline;
}

input[type=radio] {
  -webkit-appearance: radio;
  border-radius: 50%;
}

input[type=checkbox] {
  -webkit-appearance: checkbox;
}

input[type=range] {
  display: block;
  width: 100%;
}

/*file、radio、checkbox的focus設定*/
input[type=file]:focus,
input[type=radio]:focus,
input[type=checkbox]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/*placeholder*/
::-webkit-input-placeholder { /* WebKit browsers */
  color: #C4C4C4;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #C4C4C4;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #C4C4C4;
}

:-ms-input-placeholder { /* Internet Explorer 10+ */
  color: #C4C4C4;
}

/*額外新增*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*==================== 清單 ====================*/
ul,
ol {
  margin-top: 0;
  margin-bottom: 0.625em; /*10/16*/
  /* padding-left: 30px; */
}

/* 第二層崁套margin皆為0 */
ul > li > ul,
ul > li > ol,
ol > li > ol,
ol > li > ul {
  margin: 0;
  padding-left: 30px;
}

img {
  border: 0;
  margin: 0;
  vertical-align: middle;
  width: 100%;
  max-width: 100%;
  height: auto;
}

strong {
  font-weight: normal;
}

em {
  font-weight: normal;
  font-style: normal;
}

body {
  content: "xs";
}
@media (min-width: 768px) {
  body {
    content: "s";
  }
}
@media (min-width: 1280px) {
  body {
    content: "m";
  }
}
@media (min-width: 1440px) {
  body {
    content: "l";
  }
}
@media (min-width: 1560px) {
  body {
    content: "xl";
  }
}

::-moz-selection {
  color: #fff;
  background: #000;
}

::selection {
  color: #fff;
  background: #000;
}

.hide {
  display: none !important;
}
@media (min-width: 0) {
  .hide-xs {
    display: none !important;
  }
}
@media (min-width: 600px) {
  .hide-sm {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .hide-md {
    display: none !important;
  }
}
@media (min-width: 1280px) {
  .hide-lg {
    display: none !important;
  }
}
@media (min-width: 1440px) {
  .hide-xl {
    display: none !important;
  }
}
@media (min-width: 1560px) {
  .hide-xxl {
    display: none !important;
  }
}
@media (min-width: 1920px) {
  .hide-xxxl {
    display: none !important;
  }
}

.block {
  display: block !important;
}
@media (min-width: 0) {
  .block-xs {
    display: block !important;
  }
}
@media (min-width: 600px) {
  .block-sm {
    display: block !important;
  }
}
@media (min-width: 768px) {
  .block-md {
    display: block !important;
  }
}
@media (min-width: 1280px) {
  .block-lg {
    display: block !important;
  }
}
@media (min-width: 1440px) {
  .block-xl {
    display: block !important;
  }
}
@media (min-width: 1560px) {
  .block-xxl {
    display: block !important;
  }
}
@media (min-width: 1920px) {
  .block-xxxl {
    display: block !important;
  }
}

.inline {
  display: inline !important;
}
@media (min-width: 0) {
  .inline-xs {
    display: inline !important;
  }
}
@media (min-width: 600px) {
  .inline-sm {
    display: inline !important;
  }
}
@media (min-width: 768px) {
  .inline-md {
    display: inline !important;
  }
}
@media (min-width: 1280px) {
  .inline-lg {
    display: inline !important;
  }
}
@media (min-width: 1440px) {
  .inline-xl {
    display: inline !important;
  }
}
@media (min-width: 1560px) {
  .inline-xxl {
    display: inline !important;
  }
}
@media (min-width: 1920px) {
  .inline-xxxl {
    display: inline !important;
  }
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.clearfix:after {
  clear: both;
  content: " ";
  display: block;
  height: 0;
  line-height: 0;
}

.link-break {
  word-break: break-all;
}

.border {
  border: 1px solid #ddd;
}

.bg-gray {
  background: #f8f8f8;
}

.bg-primary {
  background: #D7000F;
  color: #fff;
}

.hover-mask {
  position: relative;
}
.hover-mask::before {
  content: "";
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #000;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 1;
}
.hover-mask:hover::before {
  opacity: 0.06;
}

/*iconfont*/
@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?t=20250213v1");
  src: url("../fonts/icomoon.eot?t=20250213v1") format("embedded-opentype"), url("../fonts/icomoon.ttf?t=20250213v1") format("truetype"), url("../fonts/icomoon.woff?t=20250213v1") format("woff"), url("../fonts/icomoon.svg?t=20250213v1") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  /*overflow: hidden;*/
  vertical-align: middle;
  /*i元素-目前專給icon使用*/
  font-size: 24px;
  position: relative;
  pointer-events: none;
}

.icon-line:before {
  content: "\e913";
}

.icon-arrow_down:before {
  content: "\e900";
}

.icon-email_outline:before {
  content: "\e901";
}

.icon-email:before {
  content: "\e902";
}

.icon-facebook_circle:before {
  content: "\e903";
}

.icon-linkedin_circle:before {
  content: "\e904";
}

.icon-location_outline:before {
  content: "\e905";
}

.icon-location:before {
  content: "\e906";
}

.icon-phone_outline:before {
  content: "\e907";
}

.icon-phone:before {
  content: "\e908";
}

.icon-youtube_circle:before {
  content: "\e909";
}

.icon-close:before {
  content: "\e90a";
}

.icon-check_circle:before {
  content: "\e90b";
}

.icon-check:before {
  content: "\e90c";
}

.icon-warning:before {
  content: "\e90d";
}

.icon-line_circle:before {
  content: "\e90e";
}

.icon-check2:before {
  content: "\e90f";
}

.icon-next:before {
  content: "\e910";
}

.icon-prev:before {
  content: "\e911";
}

.icon-instagram_circle:before {
  content: "\e912";
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 600px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xxxl,
.col-xxxl-auto, .col-xxxl-12, .col-xxxl-11, .col-xxxl-10, .col-xxxl-9, .col-xxxl-8, .col-xxxl-7, .col-xxxl-6, .col-xxxl-5, .col-xxxl-4, .col-xxxl-3, .col-xxxl-2, .col-xxxl-1, .col-xxl,
.col-xxl-auto, .col-xxl-12, .col-xxl-11, .col-xxl-10, .col-xxl-9, .col-xxl-8, .col-xxl-7, .col-xxl-6, .col-xxl-5, .col-xxl-4, .col-xxl-3, .col-xxl-2, .col-xxl-1, .col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.3333333333%;
          flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.6666666667%;
          flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333333333%;
          flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.6666666667%;
          flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.3333333333%;
          flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.6666666667%;
          flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.3333333333%;
          flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 91.6666666667%;
          flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.order-last {
  -webkit-box-ordinal-group: 14;
      -ms-flex-order: 13;
          order: 13;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
      -ms-flex-order: 11;
          order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
          order: 12;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

@media (min-width: 600px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-md-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-md-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-md-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-md-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-md-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-md-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-md-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1280px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1440px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1560px) {
  .col-xxl {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-xxl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xxl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xxl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xxl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xxl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xxl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xxl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xxl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xxl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xxl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xxl-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-xxl-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-xxl-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-xxl-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-xxl-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-xxl-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-xxl-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-xxl-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-xxl-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-xxl-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-xxl-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-xxl-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-xxl-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-xxl-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-xxl-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1920px) {
  .col-xxxl {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-xxxl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xxxl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xxxl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xxxl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxxl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xxxl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xxxl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxxl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xxxl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xxxl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxxl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xxxl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xxxl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xxxl-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-xxxl-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-xxxl-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-xxxl-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-xxxl-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-xxxl-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-xxxl-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-xxxl-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-xxxl-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-xxxl-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-xxxl-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-xxxl-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-xxxl-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-xxxl-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-xxxl-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-xxxl-0 {
    margin-left: 0;
  }
  .offset-xxxl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xxxl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xxxl-3 {
    margin-left: 25%;
  }
  .offset-xxxl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xxxl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xxxl-6 {
    margin-left: 50%;
  }
  .offset-xxxl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xxxl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xxxl-9 {
    margin-left: 75%;
  }
  .offset-xxxl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xxxl-11 {
    margin-left: 91.6666666667%;
  }
}
body {
  color: #6f574e;
  font: 100%/1.5 "Huninn", "-apple-system", BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Helvetica, Arial, "Hiragino Sans GB", "微軟正黑體", "Microsoft JhengHei", sans-serif;
  background: #fff;
  font-family: Huninn;
  font-weight: 400;
  font-style: normal;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 16px;
}

@media (max-width: 768px) {
  html {
    font-size: 18px;
  }
}
a {
  color: #6f574e;
  text-decoration: underline;
}
a:focus, a:active {
  color: inherit;
  text-decoration: none;
  outline: 0;
}
@media (min-width: 1280px) {
  a:hover {
    color: inherit;
    text-decoration: none;
    outline: 0;
  }
}

.heading1,
.heading2,
.heading3,
.heading4,
.heading5,
.heading6 {
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
  text-transform: none;
  color: #6f574e;
}

.heading1 {
  font-size: 30px;
  margin-bottom: 5px;
}
@media (min-width: 1280px) {
  .heading1 {
    font-size: 40px;
    margin-bottom: 10px;
  }
}

.heading2 {
  font-size: 16px;
  margin: 0 0 15px;
}

.heading6 {
  font-size: 1em;
}

.heading-desc {
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
}
@media (min-width: 1280px) {
  .heading-desc {
    margin-bottom: 40px;
  }
}

.page-paragraph {
  font-size: 14px;
  line-height: 1.7;
}

.time {
  font-size: 12px;
  color: #F5EEE9;
  font-weight: 300;
}

.text {
  font-size: 14px;
}

.text-bold {
  font-weight: bold;
}

.text-google2 {
  font-family: Huninn;
}

.text-primary {
  color: #6f574e;
}
.text-primary:hover, .text-primary:focus {
  color: #6f574e;
}

.text-secondary {
  color: #bb998a;
}
.text-secondary:hover, .text-secondary:focus {
  color: #bb998a;
}

.text-dark {
  color: #6f574e;
}
.text-dark:hover, .text-dark:focus {
  color: #6f574e;
}

.text-third {
  color: #888;
}

.text-fourth {
  color: #eee;
}

.text-success {
  color: #23C98D;
}
.text-success:hover, .text-success:focus {
  color: #23C98D;
}

.text-info {
  color: #666;
}
.text-info:hover, .text-info:focus {
  color: #666;
}

.text-warning {
  color: #D7000F;
}
.text-warning:hover, .text-warning:focus {
  color: #D7000F;
}

.btn-link {
  text-decoration: underline;
  background: transparent;
}
.btn-link:active {
  text-decoration: none;
}

.listtext {
  padding: 0 0 0 30px;
  line-height: 1.4;
}
.listtext--no {
  padding-left: 0;
  list-style-type: none;
}
.listtext--decimal-arc {
  counter-reset: counter;
}
.listtext--decimal-arc > .listtext__item {
  list-style: none;
  position: relative;
}
.listtext--decimal-arc > .listtext__item::before {
  counter-increment: counter;
  content: "(" counter(counter) ")";
  position: absolute;
  left: -1.5em;
}
.listtext--check > .listtext__item {
  position: relative;
}
.listtext--check > .listtext__item::before {
  content: "\e90b";
  font-family: "icomoon" !important;
  display: inline-block;
  position: absolute;
  left: -1.5em;
  color: #6f574e;
  top: -1px;
}
.listtext--dot > .listtext__item {
  position: relative;
}
.listtext--dot > .listtext__item::before {
  content: " ";
  display: inline-block;
  position: absolute;
  left: -1.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6f574e;
  top: 7px;
}
.listtext--cjk-arc {
  counter-reset: counter;
  padding-left: 1.5em;
}
.listtext--cjk-arc > .listtext__item {
  list-style: none;
  position: relative;
  padding-left: 0.3em;
}
.listtext--cjk-arc > .listtext__item::before {
  counter-increment: counter;
  content: "(" counter(counter, cjk-ideographic) ")";
  position: absolute;
  left: -1.5em;
}
.listtext__item {
  margin-bottom: 15px;
}
.listtext--disc > .listtext__item {
  list-style-type: disc;
}
.listtext--circle > .listtext__item {
  list-style-type: circle;
}
.listtext--square > .listtext__item {
  list-style-type: square;
}
.listtext--no > .listtext__item {
  list-style-type: none;
}
.listtext--decimal > .listtext__item {
  list-style-type: decimal;
}
.listtext--cjk > .listtext__item {
  list-style-type: cjk-ideographic;
}
.listtext--lowerlatin > .listtext__item {
  list-style-type: lower-latin;
}
.listtext__field {
  display: block;
  float: left;
  text-align: right;
  width: 90px;
}
.listtext__data {
  display: block;
  padding: 0 0 0 90px;
  word-break: break-all;
  word-wrap: break-word;
}

.listtext--gap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.listtext--gap > .listtext__item {
  margin-bottom: 0;
}
.listtext--gap > .listtext__item::marker {
  font-size: 24px;
}
.listtext--lg > .listtext__item {
  font-weight: bold;
}
.listtext--gap--sm > .listtext__item {
  margin-bottom: 5px;
}
.listtext__item * {
  font-weight: initial;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .listtext__item * {
    font-size: medium;
    font-weight: normal;
  }
}

.text-article {
  line-height: 1.625;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.text-article .listtext--cjk {
  padding-left: 3em;
}
.text-article .listtext--cjk2 {
  padding-left: 5em;
}
.text-article .listtext--disc {
  padding-left: 1.5em;
}
.text-article__heading {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 20px;
  color: #6f574e;
}
.text-article__heading--bg {
  font-size: 16px;
  background: #f8f8f8;
  padding: 0.625em;
}
.text-article__heading--black {
  color: inherit;
}
.text-article__heading--gap-sm {
  margin-bottom: 0.3333333333em;
}
.text-article__subheading {
  font-weight: bold;
  margin-bottom: 20px;
  color: #6f574e;
  font-size: 20px;
  line-height: 150%;
}
.text-article__paragraph {
  margin: 0 0 20px;
}
.text-article__paragraph--gap-top {
  margin-top: 2.15em;
}
.text-article__high {
  text-align: center;
  color: #D7000F;
}
.text-article__tips {
  text-align: right;
  color: #F5EEE9;
  font-size: 14px;
}
.text-article .listtext--cjk .listtext--lowerlatin {
  margin-top: 5px;
}
.text-article .listtext--cjk .listtext--lowerlatin .listtext--disc {
  margin-top: 5px;
}
.text-article .listtext--cjk .listtext--decimal {
  margin-top: 5px;
}

.note {
  font-size: 14px;
  margin-bottom: 10px;
}

.list-report {
  padding: 0;
  list-style: none;
}
.list-report__item {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
}
.list-report__item:last-child {
  margin-bottom: 0;
}
.list-report__item--all {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list-report__title {
  font-weight: bold;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #6f574e;
  float: none;
  width: 80px;
  text-align: left;
}
.list-report__item--all .list-report__title {
  float: none;
  width: 100%;
  text-align: left;
  margin-bottom: 10px;
}
.list-report__title::after {
  content: "：";
  display: inline;
}
.list-report__item--all .list-report__title::after {
  display: none;
}
.list-report__data {
  word-break: break-all;
  word-wrap: break-word;
}
@media (min-width: 768px) {
  .list-report__data {
    padding-left: 0;
  }
}
.list-report__item--all .list-report__data {
  padding-left: 0;
}

.btn {
  border: 1px solid transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-image: none;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  border-radius: 50px;
  font-weight: 400;
}
@media (min-width: 1280px) {
  .btn {
    -webkit-transition: 0.35s background cubic-bezier(0.165, 0.84, 0.44, 1), 0.35s border-color cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: 0.35s background cubic-bezier(0.165, 0.84, 0.44, 1), 0.35s border-color cubic-bezier(0.165, 0.84, 0.44, 1);
  }
}
.btn:focus, .btn:active {
  outline-offset: -2px;
  text-decoration: none;
}
.btn:active {
  background-image: none;
  outline: 0;
}
@media (min-width: 1280px) {
  .btn:hover {
    text-decoration: none;
  }
}
.btn--block {
  width: 100%;
}
.btn--inline {
  width: auto;
  display: inline-block;
}
.btn--default {
  color: #6f574e;
  background: #F5EEE9;
  border-color: #F5EEE9;
}
.btn--default:focus, .btn--default:active {
  color: #fff;
  background: #f19785;
  border-color: #f19785;
}
@media (min-width: 1280px) {
  .btn--default:hover {
    color: #fff;
    background: #f19785;
    border-color: #f19785;
  }
}
.btn--default[disabled], .btn--default.disabled:hover, .btn--default[disabled]:hover, .btn--default.disabled:focus, .btn--default[disabled]:focus {
  cursor: not-allowed;
  background: #C4C4C4;
  border-color: #C4C4C4;
  color: #fff;
}
.btn--primary {
  color: #F5EEE9;
  background: #6f574e;
  border-color: #6f574e;
}
.btn--primary:focus, .btn--primary:active {
  color: #F5EEE9;
  background: #f19785;
  border-color: #f19785;
}
@media (min-width: 1280px) {
  .btn--primary:hover {
    color: #F5EEE9;
    background: #f19785;
    border-color: #f19785;
  }
}
.btn--primary[disabled], .btn--primary.disabled:hover, .btn--primary[disabled]:hover, .btn--primary.disabled:focus, .btn--primary[disabled]:focus {
  cursor: not-allowed;
  background: #C4C4C4;
  border-color: #C4C4C4;
  color: #fff;
}
.btn--third {
  color: #6f574e;
  background: transparent;
  border-color: #6f574e;
}
.btn--third:focus, .btn--third:active {
  color: #fff;
  background: #222;
  border-color: #222;
}
@media (min-width: 1280px) {
  .btn--third:hover {
    color: #fff;
    background: #222;
    border-color: #222;
  }
}
.btn--third[disabled], .btn--third.disabled:hover, .btn--third[disabled]:hover, .btn--third.disabled:focus, .btn--third[disabled]:focus {
  cursor: not-allowed;
  background: transparent;
  border-color: #C4C4C4;
  color: #C4C4C4;
}
.btn--fourth {
  color: #fff;
  background: transparent;
  border-color: white;
}
.btn--fourth:focus, .btn--fourth:active {
  color: #fff;
  background: #222;
  border-color: #222;
}
@media (min-width: 1280px) {
  .btn--fourth:hover {
    color: #fff;
    background: #222;
    border-color: #222;
  }
}
.btn--fourth[disabled], .btn--fourth.disabled:hover, .btn--fourth[disabled]:hover, .btn--fourth.disabled:focus, .btn--fourth[disabled]:focus {
  cursor: not-allowed;
  background: transparent;
  border-color: #C4C4C4;
  color: #C4C4C4;
}
.btn--share {
  font-size: 14px;
  padding: 4px 4px 2px 2px;
  letter-spacing: 0;
  color: #343434;
  background: #eeedec;
  border-color: #eeedec;
}
.btn--share:focus, .btn--share:active {
  color: #fff;
  background: #222;
  border-color: #222;
}
@media (min-width: 1280px) {
  .btn--share:hover {
    color: #fff;
    background: #222;
    border-color: #222;
  }
}
.btn--transparent {
  color: #fff;
  background: transparent;
  border-color: #fff;
}
@media (min-width: 1280px) {
  .btn--transparent:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
  }
}
.btn--facebook {
  color: #fff;
  background: #3b5999;
  border-color: #3b5999;
}
.btn--facebook:focus, .btn--facebook:active {
  color: #fff;
  background: #2b4782;
  border-color: #2b4782;
}
@media (min-width: 1280px) {
  .btn--facebook:hover {
    color: #fff;
    background: #2b4782;
    border-color: #2b4782;
  }
}
.btn--line {
  color: #fff;
  background: #0CBB00;
  border-color: #0CBB00;
}
.btn--line:focus, .btn--line:active {
  color: #fff;
  background: #089601;
  border-color: #089601;
}
@media (min-width: 1280px) {
  .btn--line:hover {
    color: #fff;
    background: #089601;
    border-color: #089601;
  }
}
.btn--google {
  color: #fff;
  background: #dc4e41;
  border-color: #dc4e41;
}
.btn--google:focus, .btn--google:active {
  color: #fff;
  background: #c34236;
  border-color: #c34236;
}
@media (min-width: 1280px) {
  .btn--google:hover {
    color: #fff;
    background: #c34236;
    border-color: #c34236;
  }
}
.btn__icon {
  margin: 0 3px;
  font-size: 20px;
  margin-top: -5px;
}
.btn--xs {
  font-size: 14px;
  padding: 8px 6px 6px;
  max-height: 30px;
  min-width: 90px;
  font-weight: normal;
}
.btn--sm {
  max-height: 44px;
}
.btn--md {
  padding: 10px 50px;
  font-size: 24px;
  line-height: 1;
  height: 60px;
}
@media (min-width: 1280px) {
  .btn--md {
    font-size: 24px;
    height: 60px;
  }
}
.btn--lg {
  font-size: 24px;
  padding: 5px 65px;
  height: 68px;
  line-height: 1;
}
.btn--max-md {
  max-width: 183px;
}
@media (min-width: 1280px) {
  .btn--max-md {
    max-width: 213px;
  }
}

.btn-icon {
  display: block;
  color: #999;
}
.btn-icon:active {
  color: #222;
}

.icon-btn__icon {
  font-size: 16px;
}

.btnbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.btnbox--1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 150px;
  margin: 0 auto;
}

.btnboxs--2 {
  margin: 0 auto;
}
.btnboxs--2-full {
  max-width: none;
}
@media (min-width: 768px) {
  .btnboxs--3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 768px) {
  .btnboxs--3 .btn-md {
    width: calc(33.333% - 14px);
    max-width: 170px;
    margin-left: 5px;
    margin-right: 5px;
  }
}
@media (min-width: 768px) {
  .btnboxs--3 .btn-lg {
    width: calc(33.333% - 14px);
    max-width: 260px;
    margin-left: 5px;
    margin-right: 5px;
  }
}
.btnboxs .btn {
  width: calc(50% - 5px);
}
@media (min-width: 1280px) {
  .btnboxs .btn {
    width: calc(50% - 7px);
  }
}

.movie-box {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.movie-box iframe,
.movie-box object,
.movie-box embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.collapse__heading,
.collapse-sub__heading {
  position: relative;
}
.collapse__body,
.collapse-sub__body {
  -webkit-transition: max-height 0.25s ease-in-out;
  transition: max-height 0.25s ease-in-out;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
}
.collapse--half .collapse__body,
.collapse--half .collapse-sub__body {
  opacity: 1;
  max-height: 70px;
  position: relative;
}
@media (min-width: 1280px) {
  .collapse--half .collapse__body,
.collapse--half .collapse-sub__body {
    max-height: 2000px;
    opacity: 1;
  }
}
.collapse--half-2 .collapse__body,
.collapse--half-2 .collapse-sub__body {
  max-height: 115px;
}
@media (min-width: 1280px) {
  .collapse--half-2 .collapse__body,
.collapse--half-2 .collapse-sub__body {
    max-height: 2000px;
    opacity: 1;
  }
}
.collapse--half .collapse__body::after,
.collapse--half .collapse-sub__body::after {
  content: "";
  display: block;
  height: 40px;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0; /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#ffffff",GradientType=0 ); /* IE6-9 */
}
@media (min-width: 1280px) {
  .collapse--half .collapse__body::after,
.collapse--half .collapse-sub__body::after {
    display: none;
  }
}
.collapse--open.collapse--half .collapse__body::after,
.collapse--open.collapse--half .collapse-sub__body::after {
  display: none;
}
.collapse--open > .collapse__body, .collapse-sub--open > .collapse__body,
.collapse--open > .collapse-sub__body,
.collapse-sub--open > .collapse-sub__body {
  max-height: 2000px;
  opacity: 1;
}
.collapse__btn,
.collapse-sub__btn {
  display: block;
  text-decoration: none;
  color: #A0A0A0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.collapse__icon,
.collapse-sub__icon {
  position: absolute;
  top: 50%;
  right: 12px;
  font-size: 18px;
  color: #A0A0A0;
  margin-top: -0.5em;
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}
.collapse__more,
.collapse-sub__more {
  background: #ddd;
  display: block;
  height: 1px;
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  margin: 30px 0;
  text-align: center;
}
@media (min-width: 1280px) {
  .collapse__more,
.collapse-sub__more {
    display: none;
  }
}
.collapse--open .collapse__more,
.collapse--open .collapse-sub__more {
  display: none;
}
.collapse__more-inner,
.collapse-sub__more-inner {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.collapse__more-btn,
.collapse-sub__more-btn {
  text-decoration: none;
  background: #fff;
  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;
  border: 1px solid #ddd;
  padding: 8px 15px;
  position: relative;
  text-align: center;
  z-index: 1;
  top: -15px;
  color: #6f574e;
  border-radius: 10px;
}
.collapse__more-btn:focus, .collapse__more-btn:active,
.collapse-sub__more-btn:focus,
.collapse-sub__more-btn:active {
  background: #666;
  color: #fff;
}
@media (min-width: 1280px) {
  .collapse__more-btn:hover,
.collapse-sub__more-btn:hover {
    background: #666;
    color: #fff;
  }
}
.collapse__more-btn:active .collapse__more-icon, .collapse__more-btn:hover .collapse__more-icon,
.collapse-sub__more-btn:active .collapse__more-icon,
.collapse-sub__more-btn:hover .collapse__more-icon {
  color: #fff;
}
.collapse__more-iconbox,
.collapse-sub__more-iconbox {
  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;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #666;
  color: #fff;
  margin-left: 5px;
}
.collapse__more-icon,
.collapse-sub__more-icon {
  font-size: 14px;
  margin-left: 5px;
  color: #F5EEE9;
}

.collapse--open .collapse__icon,
.collapse-sub--open .collapse-sub__icon {
  top: 50%;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}

.collapse-sub__icon {
  right: 0;
  color: #666;
}

.tooltips {
  position: fixed;
  top: -100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.tooltips--active {
  opacity: 1;
  top: 0;
  bottom: 0;
  z-index: 1000;
}
.tooltips__info {
  color: #fff;
  height: 48px;
  line-height: 48px;
  margin: -24px 0 0 -150px;
  position: absolute;
  padding: 0 20px;
  top: -100%;
  left: 50%;
  width: 300px;
  -webkit-transition: top 0.5s ease 0.05s;
  transition: top 0.5s ease 0.05s;
  font-size: 16px;
  background: #535353;
}
.tooltips--active .tooltips__info {
  top: 50%;
}
.tooltips--error .tooltips__info {
  background: #ed0d0d;
}
.tooltips--success .tooltips__info {
  background: #12ad0e;
}
.tooltips__icon, .tooltips__text {
  display: inline-block;
  vertical-align: middle;
}
.tooltips__icon {
  font-size: 20px;
  margin: 0 8px 0 0;
}
.tooltips__text {
  letter-spacing: 0.1em;
}

.loading {
  position: relative;
  cursor: default;
}
.loading::before {
  position: fixed;
  content: "";
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: rgba(0, 0, 0, 0.1);
}
.loading::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  margin: -1.5em 0em 0em -1.5em;
  width: 2em;
  height: 2em;
  -webkit-animation: form-spin 0.4s linear;
  animation: form-spin 0.4s linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  border-radius: 500rem;
  border-color: #767676 rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1);
  border-style: solid;
  border-width: 0.2em;
  -webkit-box-shadow: 0px 0px 0px 1px transparent;
          box-shadow: 0px 0px 0px 1px transparent;
  visibility: visible;
  z-index: 101;
}

.load-more {
  text-align: center;
  margin-top: 20px;
  min-height: 30px;
  opacity: 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.load-more--active {
  opacity: 1;
}
.load-more__text {
  display: none;
  text-indent: 100%;
  white-space: nowrap;
  overflow: none;
}

@-webkit-keyframes form-spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes form-spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.lightbox {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: fixed;
  overflow-x: hidden;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.25s ease-in-out, opacity 0.2s linear;
  transition: all 0.25s ease-in-out, opacity 0.2s linear;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
}
.lightbox--active {
  opacity: 1;
  top: 0;
  bottom: 0;
  z-index: 1000;
  pointer-events: auto;
}
.lightbox__box {
  line-height: 1.4;
  position: relative;
  width: auto;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: -webkit-transform 0.1s ease-out;
  transition: -webkit-transform 0.1s ease-out;
  transition: transform 0.1s ease-out;
  transition: transform 0.1s ease-out, -webkit-transform 0.1s ease-out;
  margin: 10px auto;
  background: #fff;
  border-radius: 15px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
}
.lightbox__content {
  background-clip: padding-box;
  position: relative;
  margin-top: 100px;
}
@media (min-width: 1280px) {
  .lightbox__content {
    min-height: 225px;
  }
}
.lightbox__head {
  padding: 50px 20px 0;
}
@media (min-width: 1280px) {
  .lightbox__head {
    padding: 50px 30px 0;
  }
}
.lightbox__head--left {
  padding-left: 15px;
}
.lightbox--notitle .lightbox__head {
  border-bottom: none;
}
.lightbox__title {
  color: #6f574e;
  text-align: center;
  font-weight: bold;
  font-size: 26px;
  line-height: 138%;
}
@media (min-width: 1280px) {
  .lightbox__title {
    font-size: 34px;
    line-height: 129%;
  }
}
.lightbox--notitle .lightbox__title {
  display: none;
}
.lightbox__btn-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  text-decoration: none;
  position: absolute;
  right: -13px;
  top: -22px;
  color: #fff;
  background: #6f574e;
  z-index: 2;
  border-radius: 50%;
}
@media (min-width: 1280px) {
  .lightbox__btn-close {
    width: 50px;
    height: 50px;
    right: -25px;
    top: -15px;
  }
}
.lightbox__btn-close:focus, .lightbox__btn-close:active {
  background: #6f574e;
  color: #fff;
}
@media (min-width: 1280px) {
  .lightbox__btn-close:hover {
    background: #6f574e;
    color: #fff;
  }
}
.lightbox__close-icon {
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  font-size: 20px;
}
.lightbox__btn-close:hover .lightbox__close-icon {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.lightbox__body {
  padding: 25px 20px 25px;
}
@media (min-width: 1280px) {
  .lightbox__body {
    padding: 25px 30px 25px;
  }
}
.lightbox--notitle .lightbox__body {
  padding: 0 20px 25px;
}
.lightbox__body--scroll {
  max-height: 390px;
  overflow-y: auto;
  margin: 0 10px 10px 0;
  display: inline-block;
  padding-top: 0;
}
.lightbox__body--scroll::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.lightbox__body--scroll::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #9e9797;
}
.lightbox__body--scroll::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background: #bb998a;
}
.lightbox__body--center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.lightbox__footer {
  padding: 0 20px 50px;
}
@media (min-width: 768px) {
  .lightbox__footer {
    padding: 0 30px 50px;
  }
}
.lightbox__desc {
  line-height: 160%;
  text-align: center;
  overflow: hidden;
  font-size: 16px;
  font-weight: 400;
}
@media (min-width: 1280px) {
  .lightbox__desc {
    font-size: 22px;
    line-height: 136%;
  }
}
.lightbox--notitle .lightbox__desc {
  font-size: 22px;
}
.lightbox__btnbox {
  gap: 10px;
}
.lightbox__btn {
  padding: 8px 40px;
  min-height: 48px;
  font-size: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 150px;
          flex: 0 1 150px;
  line-height: 140%;
}
.lightbox .section {
  margin-bottom: 30px;
}
.lightbox .list-report__item {
  margin-bottom: 10px;
}

.lightbox--active .lightbox__box {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.lightbox--sm .lightbox__box {
  max-width: 320px;
}
@media (min-width: 1280px) {
  .lightbox--sm .lightbox__box {
    max-width: 420px;
  }
}

.lightbox--sm .lightbox__content {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 227px;
  min-height: 180px;
}

.lightbox--md .lightbox__box {
  max-width: 320px;
}
@media (min-width: 768px) {
  .lightbox--md .lightbox__box {
    max-width: 690px;
  }
}

.lightbox--lg .lightbox__box {
  max-width: 320px;
}
@media (min-width: 768px) {
  .lightbox--lg .lightbox__box {
    max-width: 720px;
  }
}

.lightbox--body-scroll .lightbox__box {
  -webkit-transform: translate(0, 100%);
          transform: translate(0, 100%);
}
.lightbox--body-scroll .lightbox__head {
  padding: 50px 20px 20px;
  position: relative;
}
@media (min-width: 1280px) {
  .lightbox--body-scroll .lightbox__head {
    padding: 50px 30px 20px;
  }
}
.lightbox--body-scroll .lightbox__head:after {
  content: "";
  display: block;
  height: 1px;
  background: #ddd;
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
}
@media (min-width: 1280px) {
  .lightbox--body-scroll .lightbox__head:after {
    left: 30px;
    right: 30px;
  }
}
.lightbox--body-scroll .lightbox__content {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .lightbox--body-scroll .lightbox__content {
    margin-top: 100px;
  }
}
.lightbox--body-scroll .lightbox__body {
  height: calc(100vh - 320px);
  overflow-y: auto;
}
@media (min-width: 1280px) {
  .lightbox--body-scroll .lightbox__body {
    height: 320px;
  }
}
.lightbox--body-scroll .lightbox__footer {
  padding-top: 20px;
}
@media (min-width: 1280px) {
  .lightbox--body-scroll .lightbox__footer {
    padding-top: 50px;
  }
}

.lightbox--body-scroll.lightbox--active .lightbox__box {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.iconlist {
  padding: 0 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 54px;
}
@media (min-width: 768px) {
  .iconlist {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
    gap: 60px;
  }
}
@media (min-width: 1280px) {
  .iconlist {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.iconlist__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  width: 308px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .iconlist__item {
    width: initial;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 44%;
            flex: 0 1 44%;
  }
}
@media (min-width: 1280px) {
  .iconlist__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 20%;
            flex: 0 1 20%;
    margin: 0;
    gap: 24px;
  }
}
@media (min-width: 1280px) {
  .iconlist__item:nth-child(even) {
    margin-top: 80px;
  }
}
.iconlist__imgbox {
  overflow: hidden;
  aspect-ratio: 1/1;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
  background: #f19785;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .iconlist__imgbox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 140px;
            flex: 0 0 140px;
  }
}
@media (min-width: 1440px) {
  .iconlist__imgbox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 225px;
            flex: 0 0 225px;
  }
}
.iconlist__img {
  max-width: 66px;
}
@media (min-width: 768px) {
  .iconlist__img {
    max-width: 130px;
  }
}
@media (min-width: 1440px) {
  .iconlist__img {
    max-width: 200px;
  }
}
.iconlist__infobox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 66px - 25px);
          flex: 0 0 calc(100% - 66px - 25px);
  text-align: center;
}
@media (min-width: 768px) {
  .iconlist__infobox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}
.iconlist__title {
  font-size: 20px;
  color: #f19785;
  font-weight: 400;
  line-height: 140%;
}
@media (min-width: 768px) {
  .iconlist__title {
    font-size: 24px;
  }
}
@media (min-width: 1440px) {
  .iconlist__title {
    font-size: 30px;
  }
}
@media (min-width: 1560px) {
  .iconlist__title {
    font-size: 32px;
  }
}
.iconlist__desc {
  font-size: 18px;
  line-height: 1.444;
}
@media (min-width: 1280px) {
  .iconlist__desc {
    font-size: 22px;
  }
}

.contactlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.contactlist.nav-wrap__contactlist {
  color: #999;
  font-size: 13px;
}
.contactlist__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contactlist__item:nth-child(1) {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.contactlist__field {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.contactlist__field-text {
  display: none;
}
.contactlist__field-icon {
  font-size: 20px;
  margin-right: 5px;
}
.nav-wrap__contactlist .contactlist__field-icon {
  font-size: 18px;
  margin-right: 10px;
}
.contactlist__link {
  text-decoration: none;
}
.contactlist__link:focus, .contactlist__link:active {
  text-decoration: underline;
}
@media (min-width: 1280px) {
  .contactlist__link:hover {
    text-decoration: underline;
  }
}
.nav-wrap__contactlist .contactlist__link {
  color: #999;
}
.contactlist__text {
  display: none;
}
.box-border {
  background: #fff;
  padding: 15px;
  border-radius: 20px;
}
@media (min-width: 1280px) {
  .box-border {
    padding: 40px 45px;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
}

.box {
  margin-bottom: 40px;
  position: relative;
}
@media (min-width: 1280px) {
  .box {
    margin-bottom: 100px;
  }
}
.box--bg {
  background: #fff;
  padding: 40px 20px;
  color: #6f574e;
}
@media (min-width: 1280px) {
  .box--bg {
    padding: 80px;
  }
}
.box__heading {
  text-align: center;
  padding: 18px 0;
  margin: -18px 0 0 0;
  position: relative;
}
@media (min-width: 1280px) {
  .box__heading {
    padding: 27px 0;
    margin: -18px 0 0 0;
  }
}
.box__heading--center {
  text-align: center;
}
.box__title {
  font-size: 18px;
  font-weight: bold;
  color: #6f574e;
}
@media (min-width: 1280px) {
  .box__title {
    font-size: 24px;
  }
}
.box__tool {
  position: absolute;
  right: 0;
  top: 5px;
}
@media (min-width: 1280px) {
  .box__tool {
    top: 17px;
  }
}
.box__heading-tips {
  color: #666;
  display: block;
  margin: 6px 0 2px;
}
.box__body {
  overflow: hidden;
}
@media (min-width: 768px) {
  .box__body--bg-md {
    background: #fff;
    padding: 35px 45px;
  }
}
.box__intro {
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 2em;
}
.box__intro--left {
  text-align: left;
}
.box__info {
  margin-top: 20px;
  text-align: center;
  margin-bottom: 5px;
}
.box__btnbox {
  margin-top: 30px;
}
.box__tips {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 20px;
}
.box__bottom-text {
  text-align: center;
  font-size: 14px;
  line-height: 1.7;
  margin-top: 20px;
}
.box__hr {
  background: #ddd;
  display: block;
  height: 1px;
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  margin: 25px 0;
  text-align: center;
}
.box__hr-text {
  color: #6f574e;
  background: #fff;
  display: inline-block;
  padding: 0 0.45em;
  position: relative;
  text-align: center;
  z-index: 1;
  top: -8px;
  font-weight: normal;
}
@media (min-width: 768px) {
  .box__hr-text {
    background: #fff;
  }
}
@media (min-width: 768px) {
  .box__step-headingbox {
    margin: 40px 0 35px;
  }
}
.box__step-heading-text {
  font-size: 18px;
  font-weight: bold;
}
.box__step-subheading-text {
  font-size: 14px;
  top: -10px;
}

.box-tab {
  padding-top: 90px;
}

.box-seperate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* @charset "UTF-8"; */
:root {
  /* 自行設定 */
  --f-offset: 30px; /* 偏移量 */
  --f-time: 1s; /* transition duration */
}

.js-animate--text span.js-animate__item {
  display: inline-block;
}

/* 漸入 FadeIn
==================================== */
.js-animate--fadein {
  opacity: 0;
}

.js-animate--fadein-up {
  opacity: 0;
  -webkit-transform: translate(0, -30px);
          transform: translate(0, -30px);
  /* transform: translate(0, calc( var(--f-offset) * -1)); */
}

.js-animate--fadein-down {
  opacity: 0;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
  /* transform: translate(0, var(--f-offset)); */
}

.js-animate--fadein-left {
  opacity: 0;
  -webkit-transform: translate(-30px, 0);
          transform: translate(-30px, 0);
  /* transform: translate(calc( var(--f-offset) * -1), 0); */
}

.js-animate--fadein-right {
  opacity: 0;
  -webkit-transform: translate(30px, 0);
          transform: translate(30px, 0);
  /* transform: translate(var(--f-offset), 0); */
}

/* 色塊進入 SolidIn
==================================== */
[class*=js-animate--solidin] {
  position: relative;
  opacity: 0;
  -webkit-transition: 1700ms cubic-bezier(0.165, 0.84, 0.44, 1) 0ms;
  transition: 1700ms cubic-bezier(0.165, 0.84, 0.44, 1) 0ms;
}

[class*=js-animate--solidin]::before,
[class*=js-animate--solidin]::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

[class*=js-animate--solidin]::before {
  background: #D7000F; /* 色塊顏色 */
  z-index: 1;
  -webkit-transition: 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  transition: 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

[class*=js-animate--solidin]::after {
  background: white; /* 父層背景顏色 */
  z-index: 2;
  -webkit-transition: 1.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 1.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.js-animate--solidin-up {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}

.js-animate--solidin-up::before,
.js-animate--solidin-up::after {
  -webkit-transform-origin: center top;
          transform-origin: center top;
}

.js-animate--solidin-down {
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}

.js-animate--solidin-down::before,
.js-animate--solidin-down::after {
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}

.js-animate--solidin-left {
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
}

.js-animate--solidin-left::before,
.js-animate--solidin-left::after {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.js-animate--solidin-right {
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
}

.js-animate--solidin-right::before,
.js-animate--solidin-right::after {
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

/* 遮罩overflow MaskIn
==================================== */
[class*=js-animate--maskin] {
  overflow: hidden;
}

.js-animate--maskin-up,
.js-animate--maskin-down {
  white-space: nowrap;
}

.js-animate--maskin-left .js-animate__item {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.js-animate--maskin-right .js-animate__item {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.js-animate--maskin-up .js-animate__item {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.js-animate--maskin-down .js-animate__item {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

/* 翻牌 FlipIn
==================================== */
.js-animate--flipin .js-animate__item {
  /* perspective: 100px; */
  display: inline-block;
  opacity: 0;
  -webkit-transform: perspective(100px) rotateY(-45deg);
          transform: perspective(100px) rotateY(-45deg);
}

/* Active 放後面覆蓋
==================================== */
.js-animate--active,
.js-animate--active .js-animate__item {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  /* transition: opacity 1s, transform 1s; */
  -webkit-transition-duration: 1s, 1s;
          transition-duration: 1s, 1s;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  /* transition: opacity var(--f-time), transform var(--f-time); */
}

.js-animate--solidin-up.js-animate--active::before,
.js-animate--solidin-up.js-animate--active::after,
.js-animate--solidin-down.js-animate--active::before,
.js-animate--solidin-down.js-animate--active::after {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.js-animate--solidin-left.js-animate--active::before,
.js-animate--solidin-left.js-animate--active::after,
.js-animate--solidin-right.js-animate--active::before,
.js-animate--solidin-right.js-animate--active::after {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

[class*=js-animate--maskin].js-animate--active .js-animate__item {
  -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
          transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

.js-animate--flipin.js-animate--active .js-animate__item {
  -webkit-transform: perspective(100px) rotateY(0);
          transform: perspective(100px) rotateY(0);
}

/* Delay & Duration
==================================== */
.animate-delay50 {
  -webkit-transition-delay: 0.05s;
          transition-delay: 0.05s;
}

.animate-delay100 {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.animate-delay150 {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.animate-delay200 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.animate-delay250 {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}

.animate-delay300 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.animate-delay400 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.animate-delay500 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.animate-delay600 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.animate-delay700 {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.animate-delay800 {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.animate-delay900 {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.animate-delay1000 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.animate-dur100,
.animate-dur100::before,
.animate-dur100::after {
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
}

.animate-dur200,
.animate-dur200::before,
.animate-dur200::after {
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.animate-dur300,
.animate-dur300::before,
.animate-dur300::after {
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.animate-dur400,
.animate-dur400::before,
.animate-dur400::after {
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

.animate-dur500,
.animate-dur500::before,
.animate-dur500::after {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.animate-dur1500,
.animate-dur1500::before,
.animate-dur1500::after {
  -webkit-transition-duration: 1.5s;
          transition-duration: 1.5s;
}

.animate-dur2000,
.animate-dur2000::before,
.animate-dur2000::after {
  -webkit-transition-duration: 2s;
          transition-duration: 2s;
}

@media (min-width: 768px) {
  .animate-delay100-md {
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
  }
  .animate-delay150-md {
    -webkit-transition-delay: 0.15s;
            transition-delay: 0.15s;
  }
  .animate-delay200-md {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .animate-delay250-md {
    -webkit-transition-delay: 0.25s;
            transition-delay: 0.25s;
  }
  .animate-delay300-md {
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
  }
  .animate-delay400-md {
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
  .animate-delay500-md {
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
  .animate-delay600-md {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .animate-delay700-md {
    -webkit-transition-delay: 0.7s;
            transition-delay: 0.7s;
  }
  .animate-delay800-md {
    -webkit-transition-delay: 0.8s;
            transition-delay: 0.8s;
  }
  .animate-delay900-md {
    -webkit-transition-delay: 0.9s;
            transition-delay: 0.9s;
  }
  .animate-delay1000-md {
    -webkit-transition-delay: 1s;
            transition-delay: 1s;
  }
}
@media (min-width: 1024px) {
  .animate-delay100-lg {
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
  }
  .animate-delay150-lg {
    -webkit-transition-delay: 0.15s;
            transition-delay: 0.15s;
  }
  .animate-delay200-lg {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .animate-delay250-lg {
    -webkit-transition-delay: 0.25s;
            transition-delay: 0.25s;
  }
  .animate-delay300-lg {
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
  }
  .animate-delay400-lg {
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
  .animate-delay500-lg {
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
  .animate-delay600-lg {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .animate-delay700-lg {
    -webkit-transition-delay: 0.7s;
            transition-delay: 0.7s;
  }
  .animate-delay800-lg {
    -webkit-transition-delay: 0.8s;
            transition-delay: 0.8s;
  }
  .animate-delay900-lg {
    -webkit-transition-delay: 0.9s;
            transition-delay: 0.9s;
  }
  .animate-delay1000-lg {
    -webkit-transition-delay: 1s;
            transition-delay: 1s;
  }
}
/* 動態 */
.js-fadein-up {
  opacity: 0;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.js-fadein-up--active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* 動態 */
.js-fadein-down {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.js-fadein-down--active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* 動態 */
.js-fadein-left {
  opacity: 0;
  -webkit-transform: translate(-50px, 0);
          transform: translate(-50px, 0);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.js-fadein-left--active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* 動態 */
.js-fadein-right {
  opacity: 0;
  -webkit-transform: translate(50px, 0);
          transform: translate(50px, 0);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.js-fadein-right--active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* 動態 */
.fadein-down {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: 2s all 1s;
  transition: 2s all 1s;
}

body.scroll-fixed {
  overflow: hidden;
}
body.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}

.wrap {
  position: relative;
  overflow: hidden;
}
@media (min-width: 1280px) {
  .wrap {
    min-height: 100%;
  }
}

.wrap__inner {
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
@media (min-width: 768px) {
  .wrap__inner {
    padding: 0 40px;
  }
}
@media (min-width: 1440px) {
  .wrap__inner {
    max-width: 1480px;
  }
}
@media (min-width: 1560px) {
  .wrap__inner {
    padding: 0;
  }
}
@media (min-width: 768px) {
  .wrap__inner--padding-sm {
    padding: 0 40px;
  }
}
@media (min-width: 768px) {
  .wrap__inner--no-padding {
    padding: 0;
  }
}
.wrap__inner--768 {
  max-width: 768px;
}
@media (min-width: 768px) {
  .wrap__inner--768 {
    padding: 0 15px;
  }
}
.wrap__inner--900 {
  max-width: 900px;
}
@media (min-width: 1280px) {
  .wrap__inner--900 {
    padding: 0;
  }
}
.wrap__inner--1220 {
  max-width: 1220px;
}
@media (min-width: 1280px) {
  .wrap__inner--1220 {
    padding: 0;
  }
}
.wrap__inner--1320 {
  max-width: 1320px;
}
.wrap__inner--full {
  max-width: 100%;
}

.no-padding-top {
  margin: -15px 0 0;
}
@media (min-width: 768px) {
  .no-padding-top {
    margin: -30px 0 0;
  }
}

.content {
  position: relative;
  padding: 0;
  min-height: 50vh;
  margin: 0 auto;
}
@media (min-width: 1280px) {
  .content {
    min-height: initial;
  }
}
.banner {
  position: relative;
  overflow: hidden;
  padding: 75px 0 0;
}
@media (min-width: 1280px) {
  .banner {
    padding: 25px 0 0;
  }
}
@media (min-width: 1560px) {
  .banner {
    padding: 132px 0 0;
  }
}
.banner:before {
  content: "";
  display: block;
  overflow: hidden;
  aspect-ratio: 375/45;
  background: url("../images/index/deco_banner_mobile.svg") center center no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
@media (min-width: 1280px) {
  .banner:before {
    aspect-ratio: 1920/251;
    background-image: url("../images/index/deco_banner_web.svg");
  }
}
.banner__inner {
  position: relative;
  height: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media (min-width: 1280px) {
  .banner__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1000px;
  }
}
@media (min-width: 1440px) {
  .banner__inner {
    max-width: 1230px;
  }
}
@media (min-width: 1560px) {
  .banner__inner {
    max-width: 1480px;
  }
}
.banner__imgbox {
  margin: 0 -20px;
}
@media (min-width: 768px) {
  .banner__imgbox {
    margin: 0 auto;
  }
}
@media (min-width: 1280px) {
  .banner__imgbox {
    margin: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 43.9189189189%;
            flex: 0 0 43.9189189189%;
  }
}
@media (min-width: 1560px) {
  .banner__imgbox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 56.8918918919%;
            flex: 0 0 56.8918918919%;
    margin-right: -5%;
  }
}
.banner__infobox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .banner__infobox {
    gap: 30px;
  }
}
@media (min-width: 1280px) {
  .banner__infobox {
    gap: 20px;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 47.2972972973%;
            flex: 0 1 47.2972972973%;
    padding-top: 30px;
  }
}
@media (min-width: 1440px) {
  .banner__infobox {
    gap: 30px;
    padding-top: 40px;
  }
}
@media (min-width: 1560px) {
  .banner__infobox {
    gap: 40px;
    padding-top: 60px;
  }
}
.banner__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.banner__title {
  font-size: 36px;
  font-weight: 400;
  line-height: 144.444%;
}
@media (min-width: 768px) {
  .banner__title {
    font-size: 60px;
    line-height: 140%;
  }
}
@media (min-width: 1280px) {
  .banner__title {
    font-size: 39px;
    line-height: 131.25%;
  }
}
@media (min-width: 1440px) {
  .banner__title {
    font-size: 49px;
  }
}
@media (min-width: 1560px) {
  .banner__title {
    font-size: 63px;
  }
}
.banner__subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  color: #bb998a;
}
@media (min-width: 768px) {
  .banner__subtitle {
    font-size: 24px;
    line-height: 100%;
  }
}
@media (min-width: 1280px) {
  .banner__subtitle {
    font-size: 22px;
  }
}
@media (min-width: 1440px) {
  .banner__subtitle {
    font-size: 28px;
  }
}
.banner__thirdtitle {
  font-size: 20px;
  line-height: 150%;
}
@media (min-width: 1280px) {
  .banner__thirdtitle {
    font-size: 30px;
    line-height: 160%;
  }
}
.banner__desc {
  font-size: 20px;
  line-height: 150%;
}
@media (min-width: 1280px) {
  .banner__desc {
    font-size: 28px;
    line-height: 140%;
  }
}
@media (min-width: 1280px) {
  .banner__btnbox {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.section {
  padding: 50px 0;
}
@media (min-width: 1280px) {
  .section {
    padding: 120px 0;
  }
}
@media (min-width: 1280px) {
  .section--gap-large {
    margin: 0 0 50px;
  }
}
.section--gray {
  padding: 25px 0;
  background: #f8f8f8;
}
@media (min-width: 1280px) {
  .section--gray {
    padding: 35px 0;
  }
}
.section__heading {
  margin: 0 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (min-width: 1280px) {
  .section__heading {
    text-align: center;
    margin-bottom: 120px;
  }
}
.section__title {
  font-size: 34px;
  line-height: 152.941%;
  font-weight: 400;
  color: #6f574e;
}
@media (min-width: 768px) {
  .section__title {
    font-size: 42px;
  }
}
@media (min-width: 1280px) {
  .section__title {
    font-size: 50px;
    line-height: 120%;
  }
}
.section__thirdtitle {
  font-weight: 400;
  font-size: 22px;
  line-height: 136.364%; /* 136.364% */
  color: #6f574e;
}
@media (min-width: 768px) {
  .section__thirdtitle {
    font-size: 26px;
  }
}
@media (min-width: 1280px) {
  .section__thirdtitle {
    font-size: 28px;
  }
}
.section__desc {
  font-weight: 400;
  font-size: 22px;
  line-height: 136.364%; /* 136.364% */
  color: #bb998a;
}
@media (min-width: 768px) {
  .section__desc {
    font-size: 26px;
  }
}
@media (min-width: 1280px) {
  .section__desc {
    font-size: 32px;
    line-height: 93.75%;
  }
}
.section__text {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.section__btn-loadmore {
  margin: 20px 0 0 0;
}
@media (min-width: 1280px) {
  .section__btn-loadmore {
    background: transparent;
    border: none;
    color: #6f574e;
    font-weight: normal;
    width: auto;
    margin: 0;
    position: absolute;
    right: 0;
    top: 5px;
    padding: 0;
  }
  .section__btn-loadmore:hover {
    background: transparent;
    border: none;
    color: #6f574e;
  }
}
.section__btn-loadmore-icon {
  font-size: 20px;
  display: none;
}
@media (min-width: 1280px) {
  .section__btn-loadmore-icon {
    display: inline-block;
    margin: -1px 0 0 5px;
  }
}
.section__btnbox {
  margin: 35px 0 0;
}
@media (min-width: 1280px) {
  .section__btnbox {
    margin-top: 50px;
  }
}
@media (min-width: 1280px) {
  .contact__box {
    background: #fff;
    border-radius: 24px;
    -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.16);
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.16);
    padding: 60px 109px;
  }
}
.contact__box-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin: 0 0 30px;
}
@media (min-width: 1280px) {
  .contact__box-heading {
    gap: 16px;
    text-align: center;
    margin: 0 0 30px;
  }
}
.contact__box-title {
  font-size: 34px;
  color: #6f574e;
  line-height: 129.412%; /*  */
}
@media (min-width: 1280px) {
  .contact__box-title {
    font-size: 50px;
    line-height: 140%;
  }
}
.contact__box-desc {
  font-size: 20px;
  line-height: 160%;
}
.section2-contact {
  padding: 120px 0;
  background-size: cover;
  color: #fff;
}
.section2-contact .section2__heading {
  margin: 0;
}
.section2-contact .section2__title {
  color: #fff;
  font-size: 24px;
  line-height: 158.333%;
}
@media (min-width: 1280px) {
  .section2-contact .section2__title {
    font-size: 36px;
    line-height: 122.222%;
  }
}
.section2-contact .section2__btn {
  height: 60px;
  font-size: 24px;
  padding: 10px 50px;
}

.main {
  width: 100%;
}
@media (min-width: 1280px) {
  .main {
    padding-left: calc(200px + 3.5%);
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.sidebar {
  display: none;
}
@media (min-width: 1280px) {
  .sidebar {
    display: block;
    float: left;
    width: 200px;
    position: sticky;
    top: 10px;
    z-index: 3;
  }
}